# Loading the packages used in this file
library(tidyverse)
## Warning: package 'tidyr' was built under R version 4.3.2
## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
## ✔ dplyr 1.1.4 ✔ readr 2.1.5
## ✔ forcats 1.0.0 ✔ stringr 1.5.1
## ✔ ggplot2 3.4.4 ✔ tibble 3.2.1
## ✔ lubridate 1.9.3 ✔ tidyr 1.3.1
## ✔ purrr 1.0.2
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag() masks stats::lag()
## ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
library(dplyr)
library(tidyr)
library(ggplot2)
# Downloading the first url file and reading it into a variable called "mta_data"
url1= "https://raw.githubusercontent.com/ursulapodosenin/DAT-607/main/MTA_Daily_Ridership_Data__Beginning_2020_20240302.csv"
mta_data<- read.csv(url1)
# Renaming the columns of mta_data
new_col_name <- c("Date", "Total_Subway","Subway_Prepandemic_Percent", "Total_Bus", "Bus_Prepandemic_Percent", "LIRR_Total", "LIRR_Prepandemic_Percent", "Metro_North_Total", "Metro_North_Prepandemic_Percent","Access_A_Ride_Total", "Access_A_Ride_Prepandemic_Percent", "Bridges_And_Tunnels_Total", "Bridges_And_Tunnels_Prepandemic_Percent", "Staten_Island_Total", "Staten_Island_Prepandemic_Percent")
colnames(mta_data) <- new_col_name
# Replacing NA values with 0 to maintain consistency
mta_data[is.na(mta_data)] <- 0
# Creating a string with the date format being used
date_string <- "03/01/2020"
# Rearranging the date format using regex
rearranged_date <- sub("(\\d{2})/(\\d{2})/(\\d{4})", "\\3-\\1-\\2", date_string)
# Using a the rearranged_date function to rearrange date format using regex
rearrange_date <- function(date_string) {
rearranged_date <- sub("(\\d{2})/(\\d{2})/(\\d{4})", "\\3-\\1-\\2", date_string)
return(rearranged_date)}
# Converting the character values to date values
mta_data <- mta_data %>%
mutate(Date = rearrange_date(Date))
mta_data$Date<- as.Date(mta_data$Date)
# Summarizing the 2020, 2021, 2022 average ridership for Subway, Buses, LIRR and Metro-North
mta_data_2020<-mta_data[1:306, ]
mean(mta_data_2020$Total_Subway)
## [1] 1209467
mean(mta_data_2020$Total_Bus)
## [1] 481659.1
mean(mta_data_2020$LIRR_Total)
## [1] 57940.96
mean(mta_data_2020$Metro_North_Total)
## [1] 37544.84
mta_data_2021<-mta_data[307:671, ]
mean(mta_data_2021$Total_Subway)
## [1] 2081672
mean(mta_data_2021$Total_Bus)
## [1] 1045583
mean(mta_data_2021$LIRR_Total)
## [1] 96629.64
mean(mta_data_2021$Metro_North_Total)
## [1] 72497.83
mta_data_2022<-mta_data[672:1036, ]
mean(mta_data_2022$Total_Subway)
## [1] 2773989
mean(mta_data_2022$Total_Bus)
## [1] 1161498
mean(mta_data_2022$LIRR_Total)
## [1] 142462.4
mean(mta_data_2022$Metro_North_Total)
## [1] 126138.4
# Comparing the Subway and Buses and determine to see if more people took the Subway or Bus in 2020
sum(mta_data_2020$Total_Subway)- sum(mta_data_2020$Total_Bus)
## [1] 222709070
sum(mta_data_2020$Total_Subway)/sum(mta_data_2020$Total_Bus)
## [1] 2.511042
# Finding out which transportation had the highest and lowest ridership in 202
sum(mta_data_2020$Total_Subway)
## [1] 370096769
sum(mta_data_2020$Total_Bus)
## [1] 147387699
sum(mta_data_2020$LIRR_Total)
## [1] 17729934
sum(mta_data_2020$Access_A_Ride_Total)
## [1] 4441480
sum(mta_data_2020$Bridges_And_Tunnels_Total)
## [1] 206103009
sum(mta_data_2020$Metro_North_Total)
## [1] 11488722
sum(mta_data_2020$Staten_Island_Total)
## [1] 721917
#Subways had the highest ridership
# Downloading the first url file and reading it into a variable called "nobel_prize"
urlfile2= "https://raw.githubusercontent.com/ursulapodosenin/DAT-607/main/Nobel_Prizes.csv"
nobel_prize<- read.csv(urlfile2, header = TRUE, sep = ",")
nobel_prize
## awardYear category
## 1 2001 Economic Sciences
## 2 1975 Physics
## 3 2004 Chemistry
## 4 1982 Chemistry
## 5 1979 Physics
## 6 2019 Economic Sciences
## 7 2019 Peace
## 8 2009 Chemistry
## 9 2011 Physics
## 10 1939 Chemistry
## 11 1905 Chemistry
## 12 1928 Chemistry
## 13 1980 Peace
## 14 1999 Chemistry
## 15 2010 Chemistry
## 16 2019 Chemistry
## 17 2007 Peace
## 18 2000 Chemistry
## 19 1963 Physiology or Medicine
## 20 2000 Chemistry
## 21 1907 Physics
## 22 1957 Literature
## 23 1974 Physiology or Medicine
## 24 1921 Physics
## 25 2007 Physics
## 26 1902 Peace
## 27 1960 Peace
## 28 1952 Peace
## 29 1937 Physiology or Medicine
## 30 1910 Physiology or Medicine
## 31 1964 Physics
## 32 1970 Literature
## 33 2003 Physics
## 34 1912 Physiology or Medicine
## 35 1982 Peace
## 36 1969 Physiology or Medicine
## 37 1911 Peace
## 38 1994 Physiology or Medicine
## 39 1966 Physics
## 40 1913 Chemistry
## 41 2013 Literature
## 42 1979 Physiology or Medicine
## 43 1911 Physiology or Medicine
## 44 1907 Physiology or Medicine
## 45 1982 Peace
## 46 2012 Economic Sciences
## 47 1998 Economic Sciences
## 48 1947 Peace
## 49 1977 Peace
## 50 1921 Literature
## 51 1956 Physiology or Medicine
## 52 2010 Physics
## 53 1947 Literature
## 54 1965 Physiology or Medicine
## 55 1975 Peace
## 56 1963 Physiology or Medicine
## 57 1977 Physiology or Medicine
## 58 2006 Physiology or Medicine
## 59 2015 Economic Sciences
## 60 2003 Physics
## 61 1974 Physics
## 62 1978 Peace
## 63 1952 Chemistry
## 64 1922 Physiology or Medicine
## 65 2013 Chemistry
## 66 1926 Peace
## 67 1948 Chemistry
## 68 1978 Physics
## 69 2018 Physics
## 70 2015 Physics
## 71 1927 Physics
## 72 1929 Chemistry
## 73 1934 Peace
## 74 1959 Physiology or Medicine
## 75 1981 Physics
## 76 1945 Chemistry
## 77 2000 Physiology or Medicine
## 78 1920 Physiology or Medicine
## 79 1909 Peace
## 80 1991 Peace
## 81 2004 Chemistry
## 82 2015 Chemistry
## 83 2009 Peace
## 84 1983 Physiology or Medicine
## 85 2017 Physics
## 86 2005 Physiology or Medicine
## 87 2001 Chemistry
## 88 1976 Physiology or Medicine
## 89 1980 Physiology or Medicine
## 90 1975 Physics
## 91 2016 Economic Sciences
## 92 1982 Physiology or Medicine
## 93 2016 Chemistry
## 94 1947 Physiology or Medicine
## 95 1991 Physiology or Medicine
## 96 1905 Peace
## 97 1977 Economic Sciences
## 98 1994 Physics
## 99 1950 Literature
## 100 1976 Peace
## 101 1903 Literature
## 102 2016 Literature
## 103 1958 Literature
## 104 1973 Physics
## 105 2012 Chemistry
## 106 2011 Physics
## 107 2011 Physiology or Medicine
## 108 1984 Chemistry
## 109 1976 Physics
## 110 1927 Physics
## 111 1906 Physiology or Medicine
## 112 1989 Literature
## 113 1931 Chemistry
## 114 1947 Physiology or Medicine
## 115 1936 Physics
## 116 1919 Literature
## 117 1935 Peace
## 118 2001 Physics
## 119 1984 Physics
## 120 1996 Peace
## 121 1936 Peace
## 122 2009 Physiology or Medicine
## 123 1950 Physics
## 124 1984 Physiology or Medicine
## 125 1966 Physiology or Medicine
## 126 1920 Physics
## 127 1925 Peace
## 128 1917 Physics
## 129 1964 Physics
## 130 1987 Chemistry
## 131 2009 Physics
## 132 1928 Physiology or Medicine
## 133 1913 Physiology or Medicine
## 134 1957 Physics
## 135 1929 Physiology or Medicine
## 136 1972 Chemistry
## 137 1974 Physiology or Medicine
## 138 1921 Peace
## 139 1995 Physiology or Medicine
## 140 2010 Economic Sciences
## 141 2011 Economic Sciences
## 142 1997 Physics
## 143 1985 Literature
## 144 1994 Physics
## 145 1937 Physics
## 146 2003 Economic Sciences
## 147 1945 Peace
## 148 1938 Physiology or Medicine
## 149 2006 Physiology or Medicine
## 150 1980 Literature
## 151 1976 Physiology or Medicine
## 152 1961 Peace
## 153 2010 Economic Sciences
## 154 2011 Chemistry
## 155 1957 Physiology or Medicine
## 156 1998 Physics
## 157 2002 Economic Sciences
## 158 2000 Economic Sciences
## 159 1978 Physiology or Medicine
## 160 1997 Literature
## 161 1975 Physiology or Medicine
## 162 1981 Physiology or Medicine
## 163 2004 Physics
## 164 2016 Physics
## 165 2012 Physics
## 166 1996 Physics
## 167 1998 Peace
## 168 2018 Peace
## 169 1971 Physics
## 170 1969 Chemistry
## 171 1992 Literature
## 172 1984 Peace
## 173 1956 Physiology or Medicine
## 174 2019 Physics
## 175 1960 Physics
## 176 1987 Chemistry
## 177 2018 Physics
## 178 2007 Literature
## 179 1964 Chemistry
## 180 1996 Physics
## 181 1993 Economic Sciences
## 182 1986 Chemistry
## 183 1990 Physiology or Medicine
## 184 1952 Physics
## 185 1971 Physiology or Medicine
## 186 1932 Physiology or Medicine
## 187 1992 Physiology or Medicine
## 188 2006 Economic Sciences
## 189 1907 Chemistry
## 190 2014 Physiology or Medicine
## 191 1943 Physiology or Medicine
## 192 1995 Physiology or Medicine
## 193 1950 Physiology or Medicine
## 194 2004 Economic Sciences
## 195 1958 Physiology or Medicine
## 196 1947 Physics
## 197 1992 Physiology or Medicine
## 198 1951 Chemistry
## 199 1949 Physiology or Medicine
## 200 2010 Chemistry
## 201 1974 Peace
## 202 2004 Literature
## 203 1981 Literature
## 204 1990 Chemistry
## 205 1902 Peace
## 206 1986 Peace
## 207 1912 Peace
## 208 2009 Economic Sciences
## 209 2009 Physiology or Medicine
## 210 2011 Peace
## 211 1902 Chemistry
## 212 1901 Physiology or Medicine
## 213 1959 Physics
## 214 1946 Peace
## 215 1938 Physics
## 216 2014 Chemistry
## 217 2001 Physics
## 218 1995 Physiology or Medicine
## 219 2000 Physiology or Medicine
## 220 2007 Economic Sciences
## 221 1931 Literature
## 222 1954 Literature
## 223 1939 Physics
## 224 1908 Chemistry
## 225 1951 Physics
## 226 1907 Peace
## 227 1945 Physiology or Medicine
## 228 1973 Chemistry
## 229 1986 Physics
## 230 1991 Physiology or Medicine
## 231 1933 Physics
## 232 2019 Economic Sciences
## 233 2013 Economic Sciences
## 234 1936 Literature
## 235 1963 Physics
## 236 1975 Literature
## 237 2012 Peace
## 238 1974 Literature
## 239 2016 Physics
## 240 1995 Chemistry
## 241 1993 Peace
## 242 1952 Physics
## 243 1964 Physiology or Medicine
## 244 1909 Physics
## 245 1927 Peace
## 246 1998 Physiology or Medicine
## 247 2004 Economic Sciences
## 248 2018 Chemistry
## 249 1962 Physiology or Medicine
## 250 1922 Chemistry
## 251 1985 Economic Sciences
## 252 2013 Physics
## 253 1965 Physiology or Medicine
## 254 1952 Literature
## 255 2008 Physiology or Medicine
## 256 1929 Peace
## 257 2004 Physics
## 258 1939 Literature
## 259 1935 Chemistry
## 260 1904 Literature
## 261 1901 Peace
## 262 1954 Physiology or Medicine
## 263 1923 Physiology or Medicine
## 264 1995 Physics
## 265 1958 Chemistry
## 266 1921 Chemistry
## 267 1908 Peace
## 268 1922 Peace
## 269 1931 Chemistry
## 270 1974 Economic Sciences
## 271 1947 Peace
## 272 1953 Physics
## 273 1918 Chemistry
## 274 1953 Physiology or Medicine
## 275 1923 Chemistry
## 276 1982 Literature
## 277 1908 Physics
## 278 1945 Literature
## 279 2000 Literature
## 280 1992 Economic Sciences
## 281 1973 Chemistry
## 282 1961 Physiology or Medicine
## 283 1979 Chemistry
## 284 2001 Economic Sciences
## 285 1994 Chemistry
## 286 1958 Physiology or Medicine
## 287 1925 Literature
## 288 1953 Peace
## 289 1980 Physiology or Medicine
## 290 1943 Chemistry
## 291 1974 Physiology or Medicine
## 292 2009 Physics
## 293 2006 Physics
## 294 1988 Physiology or Medicine
## 295 1934 Physiology or Medicine
## 296 1982 Economic Sciences
## 297 2018 Chemistry
## 298 1937 Physics
## 299 1967 Chemistry
## 300 1934 Physiology or Medicine
## 301 1967 Physiology or Medicine
## 302 1992 Physics
## 303 1984 Physiology or Medicine
## 304 1958 Peace
## 305 1972 Physiology or Medicine
## 306 1983 Economic Sciences
## 307 2018 Physics
## 308 1999 Physics
## 309 1986 Physics
## 310 1939 Physiology or Medicine
## 311 2007 Chemistry
## 312 1971 Chemistry
## 313 1912 Literature
## 314 1988 Physiology or Medicine
## 315 1947 Physiology or Medicine
## 316 1963 Literature
## 317 1906 Literature
## 318 1963 Chemistry
## 319 1951 Chemistry
## 320 1979 Physiology or Medicine
## 321 2006 Peace
## 322 1926 Literature
## 323 2019 Physiology or Medicine
## 324 1909 Physics
## 325 1974 Economic Sciences
## 326 1999 Physiology or Medicine
## 327 1999 Literature
## 328 1912 Physics
## 329 1925 Physics
## 330 1926 Peace
## 331 2004 Physics
## 332 1968 Physiology or Medicine
## 333 2002 Physiology or Medicine
## 334 1955 Literature
## 335 1978 Physiology or Medicine
## 336 1970 Physics
## 337 1967 Physics
## 338 1930 Chemistry
## 339 1989 Physics
## 340 1953 Physiology or Medicine
## 341 1935 Physiology or Medicine
## 342 1929 Chemistry
## 343 2008 Physiology or Medicine
## 344 1934 Chemistry
## 345 1989 Physiology or Medicine
## 346 2005 Literature
## 347 1990 Economic Sciences
## 348 1974 Literature
## 349 1988 Chemistry
## 350 1913 Physics
## 351 1972 Literature
## 352 1986 Physics
## 353 1927 Chemistry
## 354 1902 Physics
## 355 1903 Physics
## 356 1927 Literature
## 357 1913 Peace
## 358 1906 Chemistry
## 359 1943 Physiology or Medicine
## 360 1917 Literature
## 361 1901 Peace
## 362 1973 Peace
## 363 1983 Chemistry
## 364 1990 Physics
## 365 1905 Literature
## 366 1985 Chemistry
## 367 1979 Chemistry
## 368 2000 Physics
## 369 1944 Physiology or Medicine
## 370 1978 Economic Sciences
## 371 1946 Literature
## 372 1946 Physiology or Medicine
## 373 1953 Chemistry
## 374 2009 Literature
## 375 2000 Chemistry
## 376 1949 Physics
## 377 2014 Physics
## 378 1921 Peace
## 379 1998 Physics
## 380 1975 Physiology or Medicine
## 381 1955 Physiology or Medicine
## 382 1958 Physics
## 383 1958 Physics
## 384 1908 Physiology or Medicine
## 385 1977 Chemistry
## 386 2002 Literature
## 387 1904 Peace
## 388 2007 Peace
## 389 2005 Peace
## 390 2017 Peace
## 391 1997 Peace
## 392 1917 Peace
## 393 1969 Peace
## 394 1985 Peace
## 395 1935 Chemistry
## 396 1932 Chemistry
## 397 2004 Chemistry
## 398 1978 Literature
## 399 2014 Physics
## 400 1944 Physics
## 401 1933 Literature
## 402 1904 Physiology or Medicine
## 403 1973 Physics
## 404 1961 Literature
## 405 1987 Physics
## 406 1963 Physics
## 407 2003 Literature
## 408 1989 Physiology or Medicine
## 409 2016 Physics
## 410 2005 Physiology or Medicine
## 411 1906 Physics
## 412 1922 Literature
## 413 2000 Physics
## 414 1988 Physics
## 415 2009 Physiology or Medicine
## 416 1901 Chemistry
## 417 2017 Chemistry
## 418 1965 Physiology or Medicine
## 419 1996 Economic Sciences
## 420 1946 Chemistry
## 421 1935 Physics
## 422 1980 Physics
## 423 1977 Economic Sciences
## 424 2013 Physiology or Medicine
## 425 1925 Physics
## 426 2000 Economic Sciences
## 427 1986 Economic Sciences
## 428 2018 Physiology or Medicine
## 429 2019 Physics
## 430 1975 Physics
## 431 1981 Economic Sciences
## 432 1962 Physiology or Medicine
## 433 1969 Economic Sciences
## 434 1931 Peace
## 435 1959 Chemistry
## 436 1984 Literature
## 437 1926 Physics
## 438 1980 Physiology or Medicine
## 439 2014 Economic Sciences
## 440 2008 Literature
## 441 1987 Chemistry
## 442 1964 Literature
## 443 2016 Chemistry
## 444 2017 Physiology or Medicine
## 445 1997 Chemistry
## 446 1990 Physics
## 447 1985 Chemistry
## 448 2002 Peace
## 449 2017 Chemistry
## 450 1997 Peace
## 451 1988 Chemistry
## 452 1910 Physics
## 453 1926 Physiology or Medicine
## 454 1919 Physics
## 455 1944 Literature
## 456 2002 Chemistry
## 457 2019 Chemistry
## 458 1956 Physics
## 459 1994 Economic Sciences
## 460 1962 Chemistry
## 461 2006 Physics
## 462 1986 Chemistry
## 463 1951 Physics
## 464 1975 Chemistry
## 465 2002 Physiology or Medicine
## 466 1997 Chemistry
## 467 1954 Physiology or Medicine
## 468 1994 Economic Sciences
## 469 1932 Literature
## 470 1946 Chemistry
## 471 1977 Physics
## 472 1998 Peace
## 473 2005 Physics
## 474 1923 Physiology or Medicine
## 475 2014 Physiology or Medicine
## 476 1998 Chemistry
## 477 1972 Economic Sciences
## 478 1946 Peace
## 479 1982 Physiology or Medicine
## 480 1962 Literature
## 481 1904 Literature
## 482 1996 Peace
## 483 1998 Literature
## 484 1987 Literature
## 485 1990 Physiology or Medicine
## 486 2001 Economic Sciences
## 487 1944 Physiology or Medicine
## 488 1993 Physics
## 489 1985 Physiology or Medicine
## 490 1995 Peace
## 491 1958 Physiology or Medicine
## 492 2016 Peace
## 493 1956 Literature
## 494 2011 Physiology or Medicine
## 495 1919 Physiology or Medicine
## 496 1965 Physics
## 497 1970 Physiology or Medicine
## 498 1927 Physiology or Medicine
## 499 1987 Physics
## 500 1981 Physics
## 501 2014 Peace
## 502 1917 Literature
## 503 1930 Physiology or Medicine
## 504 1973 Physiology or Medicine
## 505 1963 Chemistry
## 506 1993 Chemistry
## 507 2017 Literature
## 508 1967 Physiology or Medicine
## 509 1981 Chemistry
## 510 1982 Physics
## 511 1972 Economic Sciences
## 512 1994 Literature
## 513 2000 Peace
## 514 2017 Physics
## 515 1908 Peace
## 516 1985 Physics
## 517 1920 Literature
## 518 2001 Peace
## 519 2002 Chemistry
## 520 1964 Physiology or Medicine
## 521 1973 Physiology or Medicine
## 522 2010 Physics
## 523 1950 Chemistry
## 524 2002 Chemistry
## 525 1968 Chemistry
## 526 2013 Economic Sciences
## 527 1915 Physics
## 528 1980 Economic Sciences
## 529 1973 Peace
## 530 1963 Peace
## 531 1983 Peace
## 532 2001 Physiology or Medicine
## 533 1973 Physics
## 534 1920 Peace
## 535 1951 Peace
## 536 1988 Physics
## 537 1972 Physics
## 538 2007 Economic Sciences
## 539 1975 Economic Sciences
## 540 1939 Chemistry
## 541 1957 Peace
## 542 1962 Physics
## 543 2011 Peace
## 544 2004 Physiology or Medicine
## 545 1962 Peace
## 546 2010 Peace
## 547 2012 Economic Sciences
## 548 1949 Peace
## 549 1904 Physics
## 550 1957 Chemistry
## 551 1929 Physics
## 552 1998 Physiology or Medicine
## 553 1970 Physics
## 554 1907 Peace
## 555 2008 Physiology or Medicine
## 556 1927 Peace
## 557 1934 Literature
## 558 1968 Physics
## 559 1970 Chemistry
## 560 2019 Chemistry
## 561 1976 Peace
## 562 2008 Physics
## 563 2014 Peace
## 564 1967 Chemistry
## 565 1924 Physics
## 566 1963 Physics
## 567 1903 Physics
## 568 1995 Chemistry
## 569 2007 Physiology or Medicine
## 570 2010 Literature
## 571 1968 Physiology or Medicine
## 572 2008 Chemistry
## 573 2013 Chemistry
## 574 1995 Physics
## 575 1964 Peace
## 576 1994 Physiology or Medicine
## 577 1974 Physics
## 578 1999 Physics
## 579 2008 Peace
## 580 2002 Physics
## 581 1988 Economic Sciences
## 582 1911 Literature
## 583 1962 Physiology or Medicine
## 584 1954 Physics
## 585 1969 Physiology or Medicine
## 586 1962 Chemistry
## 587 1918 Physics
## 588 1951 Physiology or Medicine
## 589 1914 Physics
## 590 2014 Physiology or Medicine
## 591 1999 Peace
## 592 1961 Chemistry
## 593 1988 Physics
## 594 1978 Peace
## 595 1990 Economic Sciences
## 596 2019 Economic Sciences
## 597 2013 Chemistry
## 598 2017 Physiology or Medicine
## 599 1985 Physiology or Medicine
## 600 1993 Chemistry
## 601 2017 Physiology or Medicine
## 602 2019 Physics
## 603 1967 Literature
## 604 1990 Peace
## 605 1965 Literature
## 606 1976 Economic Sciences
## 607 2012 Literature
## 608 2005 Peace
## 609 1979 Peace
## 610 2006 Peace
## 611 1969 Physics
## 612 1997 Economic Sciences
## 613 2018 Peace
## 614 1991 Literature
## 615 1988 Literature
## 616 1938 Peace
## 617 1930 Peace
## 618 2015 Peace
## 619 1966 Literature
## 620 1993 Peace
## 621 1931 Peace
## 622 1981 Physics
## 623 1964 Physics
## 624 1922 Physics
## 625 1984 Physiology or Medicine
## 626 1903 Physiology or Medicine
## 627 1973 Physiology or Medicine
## 628 1956 Chemistry
## 629 1970 Peace
## 630 1989 Physics
## 631 1937 Chemistry
## 632 1990 Literature
## 633 1969 Chemistry
## 634 1979 Literature
## 635 1954 Peace
## 636 2018 Literature
## 637 2009 Economic Sciences
## 638 2016 Economic Sciences
## 639 2007 Physiology or Medicine
## 640 2013 Peace
## 641 2006 Literature
## 642 2008 Chemistry
## 643 1987 Peace
## 644 1950 Chemistry
## 645 1944 Chemistry
## 646 1936 Physiology or Medicine
## 647 1922 Physiology or Medicine
## 648 1943 Physics
## 649 1910 Chemistry
## 650 1931 Physiology or Medicine
## 651 1959 Physics
## 652 1928 Physics
## 653 1971 Literature
## 654 1951 Literature
## 655 1948 Physics
## 656 2014 Literature
## 657 1973 Literature
## 658 1970 Economic Sciences
## 659 1933 Physics
## 660 1980 Chemistry
## 661 2003 Physiology or Medicine
## 662 1997 Chemistry
## 663 1908 Physiology or Medicine
## 664 2000 Physiology or Medicine
## 665 1909 Peace
## 666 1910 Literature
## 667 1995 Chemistry
## 668 1974 Chemistry
## 669 1937 Chemistry
## 670 2008 Economic Sciences
## 671 2018 Economic Sciences
## 672 2015 Chemistry
## 673 1948 Physiology or Medicine
## 674 1912 Chemistry
## 675 1958 Physics
## 676 1938 Literature
## 677 1946 Physics
## 678 1910 Peace
## 679 2010 Economic Sciences
## 680 2003 Chemistry
## 681 1996 Physiology or Medicine
## 682 1936 Chemistry
## 683 2007 Physics
## 684 2019 Literature
## 685 2013 Physics
## 686 1960 Physiology or Medicine
## 687 1978 Chemistry
## 688 1966 Physiology or Medicine
## 689 1959 Peace
## 690 1950 Physiology or Medicine
## 691 1977 Physics
## 692 1905 Physics
## 693 1993 Physiology or Medicine
## 694 1903 Physics
## 695 1991 Physics
## 696 1902 Physics
## 697 1955 Physics
## 698 1995 Peace
## 699 1978 Physics
## 700 1913 Literature
## 701 1969 Economic Sciences
## 702 1967 Physiology or Medicine
## 703 2017 Physics
## 704 1950 Peace
## 705 2011 Physiology or Medicine
## 706 1903 Peace
## 707 2013 Physiology or Medicine
## 708 2002 Physics
## 709 1994 Economic Sciences
## 710 1975 Physiology or Medicine
## 711 1968 Peace
## 712 2002 Physics
## 713 2004 Physiology or Medicine
## 714 1996 Chemistry
## 715 1990 Physics
## 716 2010 Chemistry
## 717 2017 Economic Sciences
## 718 2017 Chemistry
## 719 1993 Physiology or Medicine
## 720 1938 Chemistry
## 721 1952 Chemistry
## 722 1965 Physics
## 723 1991 Chemistry
## 724 2005 Chemistry
## 725 1984 Economic Sciences
## 726 1915 Chemistry
## 727 1925 Chemistry
## 728 1992 Peace
## 729 1986 Physiology or Medicine
## 730 1981 Chemistry
## 731 1923 Physics
## 732 1998 Physics
## 733 1965 Chemistry
## 734 1914 Physiology or Medicine
## 735 1997 Economic Sciences
## 736 1996 Physics
## 737 1937 Peace
## 738 1995 Economic Sciences
## 739 1996 Chemistry
## 740 2003 Economic Sciences
## 741 1998 Physiology or Medicine
## 742 2010 Physiology or Medicine
## 743 2005 Chemistry
## 744 1961 Physics
## 745 1988 Chemistry
## 746 2005 Economic Sciences
## 747 2012 Chemistry
## 748 2013 Economic Sciences
## 749 1905 Physiology or Medicine
## 750 1987 Economic Sciences
## 751 1999 Economic Sciences
## 752 1966 Chemistry
## 753 1972 Physics
## 754 1993 Economic Sciences
## 755 1968 Physiology or Medicine
## 756 1978 Physics
## 757 2003 Chemistry
## 758 1972 Physiology or Medicine
## 759 2007 Economic Sciences
## 760 2006 Chemistry
## 761 1977 Physiology or Medicine
## 762 1937 Literature
## 763 1981 Physiology or Medicine
## 764 2008 Chemistry
## 765 1996 Physiology or Medicine
## 766 1915 Literature
## 767 1967 Chemistry
## 768 1991 Economic Sciences
## 769 1902 Physiology or Medicine
## 770 1977 Physiology or Medicine
## 771 2005 Physics
## 772 1908 Literature
## 773 1961 Physics
## 774 1992 Chemistry
## 775 1907 Literature
## 776 1993 Physics
## 777 2001 Chemistry
## 778 1960 Literature
## 779 1969 Physiology or Medicine
## 780 1959 Literature
## 781 1969 Literature
## 782 1976 Physics
## 783 1906 Physiology or Medicine
## 784 2015 Physiology or Medicine
## 785 1976 Literature
## 786 2011 Physics
## 787 1995 Literature
## 788 1974 Peace
## 789 1909 Literature
## 790 1952 Physiology or Medicine
## 791 2012 Physics
## 792 1959 Physiology or Medicine
## 793 1979 Physics
## 794 1994 Peace
## 795 2012 Physiology or Medicine
## 796 2003 Peace
## 797 1966 Literature
## 798 2014 Physics
## 799 1989 Chemistry
## 800 1928 Literature
## 801 1971 Economic Sciences
## 802 1984 Physics
## 803 1965 Physics
## 804 1930 Literature
## 805 1945 Physiology or Medicine
## 806 1979 Economic Sciences
## 807 1925 Peace
## 808 1970 Physiology or Medicine
## 809 1930 Physics
## 810 1932 Physiology or Medicine
## 811 1956 Chemistry
## 812 1960 Physiology or Medicine
## 813 1929 Physiology or Medicine
## 814 2018 Chemistry
## 815 1996 Chemistry
## 816 1936 Physiology or Medicine
## 817 1945 Physiology or Medicine
## 818 2016 Chemistry
## 819 1988 Physiology or Medicine
## 820 2012 Physiology or Medicine
## 821 1963 Physiology or Medicine
## 822 2007 Physiology or Medicine
## 823 1977 Physics
## 824 1933 Peace
## 825 2001 Physiology or Medicine
## 826 2019 Physiology or Medicine
## 827 2003 Physiology or Medicine
## 828 1947 Chemistry
## 829 1904 Chemistry
## 830 1972 Chemistry
## 831 1997 Physiology or Medicine
## 832 1986 Physiology or Medicine
## 833 2014 Chemistry
## 834 1997 Physics
## 835 1979 Physics
## 836 1983 Physics
## 837 1901 Literature
## 838 1982 Physiology or Medicine
## 839 1987 Physiology or Medicine
## 840 1903 Chemistry
## 841 2015 Literature
## 842 2002 Physiology or Medicine
## 843 1948 Literature
## 844 1950 Physiology or Medicine
## 845 2015 Physics
## 846 2018 Physiology or Medicine
## 847 2011 Peace
## 848 1989 Peace
## 849 1926 Chemistry
## 850 1909 Physiology or Medicine
## 851 1902 Literature
## 852 2005 Physics
## 853 1906 Peace
## 854 1914 Chemistry
## 855 1979 Economic Sciences
## 856 2009 Chemistry
## 857 2005 Economic Sciences
## 858 2013 Physiology or Medicine
## 859 1933 Physiology or Medicine
## 860 1954 Physiology or Medicine
## 861 2011 Economic Sciences
## 862 1929 Literature
## 863 1989 Chemistry
## 864 2001 Physiology or Medicine
## 865 1975 Economic Sciences
## 866 1911 Peace
## 867 2015 Chemistry
## 868 2011 Literature
## 869 1993 Literature
## 870 1981 Physiology or Medicine
## 871 2008 Physics
## 872 1989 Economic Sciences
## 873 1957 Physics
## 874 2015 Physiology or Medicine
## 875 1970 Physiology or Medicine
## 876 2001 Peace
## 877 1965 Peace
## 878 1988 Peace
## 879 2001 Literature
## 880 1980 Physics
## 881 2009 Chemistry
## 882 1916 Literature
## 883 2002 Economic Sciences
## 884 1977 Literature
## 885 1936 Physics
## 886 1912 Chemistry
## 887 1955 Chemistry
## 888 2003 Physics
## 889 1975 Chemistry
## 890 1980 Chemistry
## 891 1956 Physics
## 892 1949 Physiology or Medicine
## 893 1998 Chemistry
## 894 1954 Physics
## 895 1920 Chemistry
## 896 2004 Peace
## 897 1973 Economic Sciences
## 898 1946 Chemistry
## 899 1978 Physiology or Medicine
## 900 1956 Physiology or Medicine
## 901 1932 Physics
## 902 1901 Physics
## 903 1909 Chemistry
## 904 1911 Physics
## 905 1960 Chemistry
## 906 2009 Physics
## 907 1924 Physiology or Medicine
## 908 1983 Physics
## 909 1956 Physics
## 910 1915 Physics
## 911 1923 Literature
## 912 2015 Physiology or Medicine
## 913 2018 Economic Sciences
## 914 1997 Physics
## 915 2014 Chemistry
## 916 1949 Chemistry
## 917 1990 Economic Sciences
## 918 1949 Literature
## 919 2019 Physiology or Medicine
## 920 1983 Literature
## 921 1972 Chemistry
## 922 2001 Chemistry
## 923 1976 Chemistry
## 924 1934 Physiology or Medicine
## 925 1996 Economic Sciences
## 926 1955 Physics
## 927 1971 Peace
## 928 1953 Literature
## 929 1996 Literature
## 930 1924 Literature
## 931 1986 Literature
## 932 2001 Physics
## 933 1989 Physics
## 934 1945 Physics
## 935 1919 Peace
## 936 1994 Peace
## 937 1968 Literature
## 938 1994 Peace
## 939 2008 Physics
## 940 2016 Physiology or Medicine
## 941 1986 Chemistry
## 942 2005 Chemistry
## 943 2000 Physics
## 944 1980 Chemistry
## 945 1944 Peace
## 946 1972 Physics
## 947 1954 Chemistry
## 948 1911 Chemistry
## 949 1981 Peace
## 950 1963 Peace
## categoryFullName
## 1 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 2 The Nobel Prize in Physics
## 3 The Nobel Prize in Chemistry
## 4 The Nobel Prize in Chemistry
## 5 The Nobel Prize in Physics
## 6 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 7 The Nobel Peace Prize
## 8 The Nobel Prize in Chemistry
## 9 The Nobel Prize in Physics
## 10 The Nobel Prize in Chemistry
## 11 The Nobel Prize in Chemistry
## 12 The Nobel Prize in Chemistry
## 13 The Nobel Peace Prize
## 14 The Nobel Prize in Chemistry
## 15 The Nobel Prize in Chemistry
## 16 The Nobel Prize in Chemistry
## 17 The Nobel Peace Prize
## 18 The Nobel Prize in Chemistry
## 19 The Nobel Prize in Physiology or Medicine
## 20 The Nobel Prize in Chemistry
## 21 The Nobel Prize in Physics
## 22 The Nobel Prize in Literature
## 23 The Nobel Prize in Physiology or Medicine
## 24 The Nobel Prize in Physics
## 25 The Nobel Prize in Physics
## 26 The Nobel Peace Prize
## 27 The Nobel Peace Prize
## 28 The Nobel Peace Prize
## 29 The Nobel Prize in Physiology or Medicine
## 30 The Nobel Prize in Physiology or Medicine
## 31 The Nobel Prize in Physics
## 32 The Nobel Prize in Literature
## 33 The Nobel Prize in Physics
## 34 The Nobel Prize in Physiology or Medicine
## 35 The Nobel Peace Prize
## 36 The Nobel Prize in Physiology or Medicine
## 37 The Nobel Peace Prize
## 38 The Nobel Prize in Physiology or Medicine
## 39 The Nobel Prize in Physics
## 40 The Nobel Prize in Chemistry
## 41 The Nobel Prize in Literature
## 42 The Nobel Prize in Physiology or Medicine
## 43 The Nobel Prize in Physiology or Medicine
## 44 The Nobel Prize in Physiology or Medicine
## 45 The Nobel Peace Prize
## 46 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 47 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 48 The Nobel Peace Prize
## 49 The Nobel Peace Prize
## 50 The Nobel Prize in Literature
## 51 The Nobel Prize in Physiology or Medicine
## 52 The Nobel Prize in Physics
## 53 The Nobel Prize in Literature
## 54 The Nobel Prize in Physiology or Medicine
## 55 The Nobel Peace Prize
## 56 The Nobel Prize in Physiology or Medicine
## 57 The Nobel Prize in Physiology or Medicine
## 58 The Nobel Prize in Physiology or Medicine
## 59 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 60 The Nobel Prize in Physics
## 61 The Nobel Prize in Physics
## 62 The Nobel Peace Prize
## 63 The Nobel Prize in Chemistry
## 64 The Nobel Prize in Physiology or Medicine
## 65 The Nobel Prize in Chemistry
## 66 The Nobel Peace Prize
## 67 The Nobel Prize in Chemistry
## 68 The Nobel Prize in Physics
## 69 The Nobel Prize in Physics
## 70 The Nobel Prize in Physics
## 71 The Nobel Prize in Physics
## 72 The Nobel Prize in Chemistry
## 73 The Nobel Peace Prize
## 74 The Nobel Prize in Physiology or Medicine
## 75 The Nobel Prize in Physics
## 76 The Nobel Prize in Chemistry
## 77 The Nobel Prize in Physiology or Medicine
## 78 The Nobel Prize in Physiology or Medicine
## 79 The Nobel Peace Prize
## 80 The Nobel Peace Prize
## 81 The Nobel Prize in Chemistry
## 82 The Nobel Prize in Chemistry
## 83 The Nobel Peace Prize
## 84 The Nobel Prize in Physiology or Medicine
## 85 The Nobel Prize in Physics
## 86 The Nobel Prize in Physiology or Medicine
## 87 The Nobel Prize in Chemistry
## 88 The Nobel Prize in Physiology or Medicine
## 89 The Nobel Prize in Physiology or Medicine
## 90 The Nobel Prize in Physics
## 91 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 92 The Nobel Prize in Physiology or Medicine
## 93 The Nobel Prize in Chemistry
## 94 The Nobel Prize in Physiology or Medicine
## 95 The Nobel Prize in Physiology or Medicine
## 96 The Nobel Peace Prize
## 97 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 98 The Nobel Prize in Physics
## 99 The Nobel Prize in Literature
## 100 The Nobel Peace Prize
## 101 The Nobel Prize in Literature
## 102 The Nobel Prize in Literature
## 103 The Nobel Prize in Literature
## 104 The Nobel Prize in Physics
## 105 The Nobel Prize in Chemistry
## 106 The Nobel Prize in Physics
## 107 The Nobel Prize in Physiology or Medicine
## 108 The Nobel Prize in Chemistry
## 109 The Nobel Prize in Physics
## 110 The Nobel Prize in Physics
## 111 The Nobel Prize in Physiology or Medicine
## 112 The Nobel Prize in Literature
## 113 The Nobel Prize in Chemistry
## 114 The Nobel Prize in Physiology or Medicine
## 115 The Nobel Prize in Physics
## 116 The Nobel Prize in Literature
## 117 The Nobel Peace Prize
## 118 The Nobel Prize in Physics
## 119 The Nobel Prize in Physics
## 120 The Nobel Peace Prize
## 121 The Nobel Peace Prize
## 122 The Nobel Prize in Physiology or Medicine
## 123 The Nobel Prize in Physics
## 124 The Nobel Prize in Physiology or Medicine
## 125 The Nobel Prize in Physiology or Medicine
## 126 The Nobel Prize in Physics
## 127 The Nobel Peace Prize
## 128 The Nobel Prize in Physics
## 129 The Nobel Prize in Physics
## 130 The Nobel Prize in Chemistry
## 131 The Nobel Prize in Physics
## 132 The Nobel Prize in Physiology or Medicine
## 133 The Nobel Prize in Physiology or Medicine
## 134 The Nobel Prize in Physics
## 135 The Nobel Prize in Physiology or Medicine
## 136 The Nobel Prize in Chemistry
## 137 The Nobel Prize in Physiology or Medicine
## 138 The Nobel Peace Prize
## 139 The Nobel Prize in Physiology or Medicine
## 140 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 141 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 142 The Nobel Prize in Physics
## 143 The Nobel Prize in Literature
## 144 The Nobel Prize in Physics
## 145 The Nobel Prize in Physics
## 146 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 147 The Nobel Peace Prize
## 148 The Nobel Prize in Physiology or Medicine
## 149 The Nobel Prize in Physiology or Medicine
## 150 The Nobel Prize in Literature
## 151 The Nobel Prize in Physiology or Medicine
## 152 The Nobel Peace Prize
## 153 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 154 The Nobel Prize in Chemistry
## 155 The Nobel Prize in Physiology or Medicine
## 156 The Nobel Prize in Physics
## 157 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 158 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 159 The Nobel Prize in Physiology or Medicine
## 160 The Nobel Prize in Literature
## 161 The Nobel Prize in Physiology or Medicine
## 162 The Nobel Prize in Physiology or Medicine
## 163 The Nobel Prize in Physics
## 164 The Nobel Prize in Physics
## 165 The Nobel Prize in Physics
## 166 The Nobel Prize in Physics
## 167 The Nobel Peace Prize
## 168 The Nobel Peace Prize
## 169 The Nobel Prize in Physics
## 170 The Nobel Prize in Chemistry
## 171 The Nobel Prize in Literature
## 172 The Nobel Peace Prize
## 173 The Nobel Prize in Physiology or Medicine
## 174 The Nobel Prize in Physics
## 175 The Nobel Prize in Physics
## 176 The Nobel Prize in Chemistry
## 177 The Nobel Prize in Physics
## 178 The Nobel Prize in Literature
## 179 The Nobel Prize in Chemistry
## 180 The Nobel Prize in Physics
## 181 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 182 The Nobel Prize in Chemistry
## 183 The Nobel Prize in Physiology or Medicine
## 184 The Nobel Prize in Physics
## 185 The Nobel Prize in Physiology or Medicine
## 186 The Nobel Prize in Physiology or Medicine
## 187 The Nobel Prize in Physiology or Medicine
## 188 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 189 The Nobel Prize in Chemistry
## 190 The Nobel Prize in Physiology or Medicine
## 191 The Nobel Prize in Physiology or Medicine
## 192 The Nobel Prize in Physiology or Medicine
## 193 The Nobel Prize in Physiology or Medicine
## 194 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 195 The Nobel Prize in Physiology or Medicine
## 196 The Nobel Prize in Physics
## 197 The Nobel Prize in Physiology or Medicine
## 198 The Nobel Prize in Chemistry
## 199 The Nobel Prize in Physiology or Medicine
## 200 The Nobel Prize in Chemistry
## 201 The Nobel Peace Prize
## 202 The Nobel Prize in Literature
## 203 The Nobel Prize in Literature
## 204 The Nobel Prize in Chemistry
## 205 The Nobel Peace Prize
## 206 The Nobel Peace Prize
## 207 The Nobel Peace Prize
## 208 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 209 The Nobel Prize in Physiology or Medicine
## 210 The Nobel Peace Prize
## 211 The Nobel Prize in Chemistry
## 212 The Nobel Prize in Physiology or Medicine
## 213 The Nobel Prize in Physics
## 214 The Nobel Peace Prize
## 215 The Nobel Prize in Physics
## 216 The Nobel Prize in Chemistry
## 217 The Nobel Prize in Physics
## 218 The Nobel Prize in Physiology or Medicine
## 219 The Nobel Prize in Physiology or Medicine
## 220 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 221 The Nobel Prize in Literature
## 222 The Nobel Prize in Literature
## 223 The Nobel Prize in Physics
## 224 The Nobel Prize in Chemistry
## 225 The Nobel Prize in Physics
## 226 The Nobel Peace Prize
## 227 The Nobel Prize in Physiology or Medicine
## 228 The Nobel Prize in Chemistry
## 229 The Nobel Prize in Physics
## 230 The Nobel Prize in Physiology or Medicine
## 231 The Nobel Prize in Physics
## 232 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 233 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 234 The Nobel Prize in Literature
## 235 The Nobel Prize in Physics
## 236 The Nobel Prize in Literature
## 237 The Nobel Peace Prize
## 238 The Nobel Prize in Literature
## 239 The Nobel Prize in Physics
## 240 The Nobel Prize in Chemistry
## 241 The Nobel Peace Prize
## 242 The Nobel Prize in Physics
## 243 The Nobel Prize in Physiology or Medicine
## 244 The Nobel Prize in Physics
## 245 The Nobel Peace Prize
## 246 The Nobel Prize in Physiology or Medicine
## 247 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 248 The Nobel Prize in Chemistry
## 249 The Nobel Prize in Physiology or Medicine
## 250 The Nobel Prize in Chemistry
## 251 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 252 The Nobel Prize in Physics
## 253 The Nobel Prize in Physiology or Medicine
## 254 The Nobel Prize in Literature
## 255 The Nobel Prize in Physiology or Medicine
## 256 The Nobel Peace Prize
## 257 The Nobel Prize in Physics
## 258 The Nobel Prize in Literature
## 259 The Nobel Prize in Chemistry
## 260 The Nobel Prize in Literature
## 261 The Nobel Peace Prize
## 262 The Nobel Prize in Physiology or Medicine
## 263 The Nobel Prize in Physiology or Medicine
## 264 The Nobel Prize in Physics
## 265 The Nobel Prize in Chemistry
## 266 The Nobel Prize in Chemistry
## 267 The Nobel Peace Prize
## 268 The Nobel Peace Prize
## 269 The Nobel Prize in Chemistry
## 270 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 271 The Nobel Peace Prize
## 272 The Nobel Prize in Physics
## 273 The Nobel Prize in Chemistry
## 274 The Nobel Prize in Physiology or Medicine
## 275 The Nobel Prize in Chemistry
## 276 The Nobel Prize in Literature
## 277 The Nobel Prize in Physics
## 278 The Nobel Prize in Literature
## 279 The Nobel Prize in Literature
## 280 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 281 The Nobel Prize in Chemistry
## 282 The Nobel Prize in Physiology or Medicine
## 283 The Nobel Prize in Chemistry
## 284 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 285 The Nobel Prize in Chemistry
## 286 The Nobel Prize in Physiology or Medicine
## 287 The Nobel Prize in Literature
## 288 The Nobel Peace Prize
## 289 The Nobel Prize in Physiology or Medicine
## 290 The Nobel Prize in Chemistry
## 291 The Nobel Prize in Physiology or Medicine
## 292 The Nobel Prize in Physics
## 293 The Nobel Prize in Physics
## 294 The Nobel Prize in Physiology or Medicine
## 295 The Nobel Prize in Physiology or Medicine
## 296 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 297 The Nobel Prize in Chemistry
## 298 The Nobel Prize in Physics
## 299 The Nobel Prize in Chemistry
## 300 The Nobel Prize in Physiology or Medicine
## 301 The Nobel Prize in Physiology or Medicine
## 302 The Nobel Prize in Physics
## 303 The Nobel Prize in Physiology or Medicine
## 304 The Nobel Peace Prize
## 305 The Nobel Prize in Physiology or Medicine
## 306 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 307 The Nobel Prize in Physics
## 308 The Nobel Prize in Physics
## 309 The Nobel Prize in Physics
## 310 The Nobel Prize in Physiology or Medicine
## 311 The Nobel Prize in Chemistry
## 312 The Nobel Prize in Chemistry
## 313 The Nobel Prize in Literature
## 314 The Nobel Prize in Physiology or Medicine
## 315 The Nobel Prize in Physiology or Medicine
## 316 The Nobel Prize in Literature
## 317 The Nobel Prize in Literature
## 318 The Nobel Prize in Chemistry
## 319 The Nobel Prize in Chemistry
## 320 The Nobel Prize in Physiology or Medicine
## 321 The Nobel Peace Prize
## 322 The Nobel Prize in Literature
## 323 The Nobel Prize in Physiology or Medicine
## 324 The Nobel Prize in Physics
## 325 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 326 The Nobel Prize in Physiology or Medicine
## 327 The Nobel Prize in Literature
## 328 The Nobel Prize in Physics
## 329 The Nobel Prize in Physics
## 330 The Nobel Peace Prize
## 331 The Nobel Prize in Physics
## 332 The Nobel Prize in Physiology or Medicine
## 333 The Nobel Prize in Physiology or Medicine
## 334 The Nobel Prize in Literature
## 335 The Nobel Prize in Physiology or Medicine
## 336 The Nobel Prize in Physics
## 337 The Nobel Prize in Physics
## 338 The Nobel Prize in Chemistry
## 339 The Nobel Prize in Physics
## 340 The Nobel Prize in Physiology or Medicine
## 341 The Nobel Prize in Physiology or Medicine
## 342 The Nobel Prize in Chemistry
## 343 The Nobel Prize in Physiology or Medicine
## 344 The Nobel Prize in Chemistry
## 345 The Nobel Prize in Physiology or Medicine
## 346 The Nobel Prize in Literature
## 347 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 348 The Nobel Prize in Literature
## 349 The Nobel Prize in Chemistry
## 350 The Nobel Prize in Physics
## 351 The Nobel Prize in Literature
## 352 The Nobel Prize in Physics
## 353 The Nobel Prize in Chemistry
## 354 The Nobel Prize in Physics
## 355 The Nobel Prize in Physics
## 356 The Nobel Prize in Literature
## 357 The Nobel Peace Prize
## 358 The Nobel Prize in Chemistry
## 359 The Nobel Prize in Physiology or Medicine
## 360 The Nobel Prize in Literature
## 361 The Nobel Peace Prize
## 362 The Nobel Peace Prize
## 363 The Nobel Prize in Chemistry
## 364 The Nobel Prize in Physics
## 365 The Nobel Prize in Literature
## 366 The Nobel Prize in Chemistry
## 367 The Nobel Prize in Chemistry
## 368 The Nobel Prize in Physics
## 369 The Nobel Prize in Physiology or Medicine
## 370 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 371 The Nobel Prize in Literature
## 372 The Nobel Prize in Physiology or Medicine
## 373 The Nobel Prize in Chemistry
## 374 The Nobel Prize in Literature
## 375 The Nobel Prize in Chemistry
## 376 The Nobel Prize in Physics
## 377 The Nobel Prize in Physics
## 378 The Nobel Peace Prize
## 379 The Nobel Prize in Physics
## 380 The Nobel Prize in Physiology or Medicine
## 381 The Nobel Prize in Physiology or Medicine
## 382 The Nobel Prize in Physics
## 383 The Nobel Prize in Physics
## 384 The Nobel Prize in Physiology or Medicine
## 385 The Nobel Prize in Chemistry
## 386 The Nobel Prize in Literature
## 387 The Nobel Peace Prize
## 388 The Nobel Peace Prize
## 389 The Nobel Peace Prize
## 390 The Nobel Peace Prize
## 391 The Nobel Peace Prize
## 392 The Nobel Peace Prize
## 393 The Nobel Peace Prize
## 394 The Nobel Peace Prize
## 395 The Nobel Prize in Chemistry
## 396 The Nobel Prize in Chemistry
## 397 The Nobel Prize in Chemistry
## 398 The Nobel Prize in Literature
## 399 The Nobel Prize in Physics
## 400 The Nobel Prize in Physics
## 401 The Nobel Prize in Literature
## 402 The Nobel Prize in Physiology or Medicine
## 403 The Nobel Prize in Physics
## 404 The Nobel Prize in Literature
## 405 The Nobel Prize in Physics
## 406 The Nobel Prize in Physics
## 407 The Nobel Prize in Literature
## 408 The Nobel Prize in Physiology or Medicine
## 409 The Nobel Prize in Physics
## 410 The Nobel Prize in Physiology or Medicine
## 411 The Nobel Prize in Physics
## 412 The Nobel Prize in Literature
## 413 The Nobel Prize in Physics
## 414 The Nobel Prize in Physics
## 415 The Nobel Prize in Physiology or Medicine
## 416 The Nobel Prize in Chemistry
## 417 The Nobel Prize in Chemistry
## 418 The Nobel Prize in Physiology or Medicine
## 419 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 420 The Nobel Prize in Chemistry
## 421 The Nobel Prize in Physics
## 422 The Nobel Prize in Physics
## 423 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 424 The Nobel Prize in Physiology or Medicine
## 425 The Nobel Prize in Physics
## 426 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 427 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 428 The Nobel Prize in Physiology or Medicine
## 429 The Nobel Prize in Physics
## 430 The Nobel Prize in Physics
## 431 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 432 The Nobel Prize in Physiology or Medicine
## 433 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 434 The Nobel Peace Prize
## 435 The Nobel Prize in Chemistry
## 436 The Nobel Prize in Literature
## 437 The Nobel Prize in Physics
## 438 The Nobel Prize in Physiology or Medicine
## 439 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 440 The Nobel Prize in Literature
## 441 The Nobel Prize in Chemistry
## 442 The Nobel Prize in Literature
## 443 The Nobel Prize in Chemistry
## 444 The Nobel Prize in Physiology or Medicine
## 445 The Nobel Prize in Chemistry
## 446 The Nobel Prize in Physics
## 447 The Nobel Prize in Chemistry
## 448 The Nobel Peace Prize
## 449 The Nobel Prize in Chemistry
## 450 The Nobel Peace Prize
## 451 The Nobel Prize in Chemistry
## 452 The Nobel Prize in Physics
## 453 The Nobel Prize in Physiology or Medicine
## 454 The Nobel Prize in Physics
## 455 The Nobel Prize in Literature
## 456 The Nobel Prize in Chemistry
## 457 The Nobel Prize in Chemistry
## 458 The Nobel Prize in Physics
## 459 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 460 The Nobel Prize in Chemistry
## 461 The Nobel Prize in Physics
## 462 The Nobel Prize in Chemistry
## 463 The Nobel Prize in Physics
## 464 The Nobel Prize in Chemistry
## 465 The Nobel Prize in Physiology or Medicine
## 466 The Nobel Prize in Chemistry
## 467 The Nobel Prize in Physiology or Medicine
## 468 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 469 The Nobel Prize in Literature
## 470 The Nobel Prize in Chemistry
## 471 The Nobel Prize in Physics
## 472 The Nobel Peace Prize
## 473 The Nobel Prize in Physics
## 474 The Nobel Prize in Physiology or Medicine
## 475 The Nobel Prize in Physiology or Medicine
## 476 The Nobel Prize in Chemistry
## 477 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 478 The Nobel Peace Prize
## 479 The Nobel Prize in Physiology or Medicine
## 480 The Nobel Prize in Literature
## 481 The Nobel Prize in Literature
## 482 The Nobel Peace Prize
## 483 The Nobel Prize in Literature
## 484 The Nobel Prize in Literature
## 485 The Nobel Prize in Physiology or Medicine
## 486 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 487 The Nobel Prize in Physiology or Medicine
## 488 The Nobel Prize in Physics
## 489 The Nobel Prize in Physiology or Medicine
## 490 The Nobel Peace Prize
## 491 The Nobel Prize in Physiology or Medicine
## 492 The Nobel Peace Prize
## 493 The Nobel Prize in Literature
## 494 The Nobel Prize in Physiology or Medicine
## 495 The Nobel Prize in Physiology or Medicine
## 496 The Nobel Prize in Physics
## 497 The Nobel Prize in Physiology or Medicine
## 498 The Nobel Prize in Physiology or Medicine
## 499 The Nobel Prize in Physics
## 500 The Nobel Prize in Physics
## 501 The Nobel Peace Prize
## 502 The Nobel Prize in Literature
## 503 The Nobel Prize in Physiology or Medicine
## 504 The Nobel Prize in Physiology or Medicine
## 505 The Nobel Prize in Chemistry
## 506 The Nobel Prize in Chemistry
## 507 The Nobel Prize in Literature
## 508 The Nobel Prize in Physiology or Medicine
## 509 The Nobel Prize in Chemistry
## 510 The Nobel Prize in Physics
## 511 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 512 The Nobel Prize in Literature
## 513 The Nobel Peace Prize
## 514 The Nobel Prize in Physics
## 515 The Nobel Peace Prize
## 516 The Nobel Prize in Physics
## 517 The Nobel Prize in Literature
## 518 The Nobel Peace Prize
## 519 The Nobel Prize in Chemistry
## 520 The Nobel Prize in Physiology or Medicine
## 521 The Nobel Prize in Physiology or Medicine
## 522 The Nobel Prize in Physics
## 523 The Nobel Prize in Chemistry
## 524 The Nobel Prize in Chemistry
## 525 The Nobel Prize in Chemistry
## 526 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 527 The Nobel Prize in Physics
## 528 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 529 The Nobel Peace Prize
## 530 The Nobel Peace Prize
## 531 The Nobel Peace Prize
## 532 The Nobel Prize in Physiology or Medicine
## 533 The Nobel Prize in Physics
## 534 The Nobel Peace Prize
## 535 The Nobel Peace Prize
## 536 The Nobel Prize in Physics
## 537 The Nobel Prize in Physics
## 538 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 539 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 540 The Nobel Prize in Chemistry
## 541 The Nobel Peace Prize
## 542 The Nobel Prize in Physics
## 543 The Nobel Peace Prize
## 544 The Nobel Prize in Physiology or Medicine
## 545 The Nobel Peace Prize
## 546 The Nobel Peace Prize
## 547 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 548 The Nobel Peace Prize
## 549 The Nobel Prize in Physics
## 550 The Nobel Prize in Chemistry
## 551 The Nobel Prize in Physics
## 552 The Nobel Prize in Physiology or Medicine
## 553 The Nobel Prize in Physics
## 554 The Nobel Peace Prize
## 555 The Nobel Prize in Physiology or Medicine
## 556 The Nobel Peace Prize
## 557 The Nobel Prize in Literature
## 558 The Nobel Prize in Physics
## 559 The Nobel Prize in Chemistry
## 560 The Nobel Prize in Chemistry
## 561 The Nobel Peace Prize
## 562 The Nobel Prize in Physics
## 563 The Nobel Peace Prize
## 564 The Nobel Prize in Chemistry
## 565 The Nobel Prize in Physics
## 566 The Nobel Prize in Physics
## 567 The Nobel Prize in Physics
## 568 The Nobel Prize in Chemistry
## 569 The Nobel Prize in Physiology or Medicine
## 570 The Nobel Prize in Literature
## 571 The Nobel Prize in Physiology or Medicine
## 572 The Nobel Prize in Chemistry
## 573 The Nobel Prize in Chemistry
## 574 The Nobel Prize in Physics
## 575 The Nobel Peace Prize
## 576 The Nobel Prize in Physiology or Medicine
## 577 The Nobel Prize in Physics
## 578 The Nobel Prize in Physics
## 579 The Nobel Peace Prize
## 580 The Nobel Prize in Physics
## 581 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 582 The Nobel Prize in Literature
## 583 The Nobel Prize in Physiology or Medicine
## 584 The Nobel Prize in Physics
## 585 The Nobel Prize in Physiology or Medicine
## 586 The Nobel Prize in Chemistry
## 587 The Nobel Prize in Physics
## 588 The Nobel Prize in Physiology or Medicine
## 589 The Nobel Prize in Physics
## 590 The Nobel Prize in Physiology or Medicine
## 591 The Nobel Peace Prize
## 592 The Nobel Prize in Chemistry
## 593 The Nobel Prize in Physics
## 594 The Nobel Peace Prize
## 595 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 596 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 597 The Nobel Prize in Chemistry
## 598 The Nobel Prize in Physiology or Medicine
## 599 The Nobel Prize in Physiology or Medicine
## 600 The Nobel Prize in Chemistry
## 601 The Nobel Prize in Physiology or Medicine
## 602 The Nobel Prize in Physics
## 603 The Nobel Prize in Literature
## 604 The Nobel Peace Prize
## 605 The Nobel Prize in Literature
## 606 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 607 The Nobel Prize in Literature
## 608 The Nobel Peace Prize
## 609 The Nobel Peace Prize
## 610 The Nobel Peace Prize
## 611 The Nobel Prize in Physics
## 612 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 613 The Nobel Peace Prize
## 614 The Nobel Prize in Literature
## 615 The Nobel Prize in Literature
## 616 The Nobel Peace Prize
## 617 The Nobel Peace Prize
## 618 The Nobel Peace Prize
## 619 The Nobel Prize in Literature
## 620 The Nobel Peace Prize
## 621 The Nobel Peace Prize
## 622 The Nobel Prize in Physics
## 623 The Nobel Prize in Physics
## 624 The Nobel Prize in Physics
## 625 The Nobel Prize in Physiology or Medicine
## 626 The Nobel Prize in Physiology or Medicine
## 627 The Nobel Prize in Physiology or Medicine
## 628 The Nobel Prize in Chemistry
## 629 The Nobel Peace Prize
## 630 The Nobel Prize in Physics
## 631 The Nobel Prize in Chemistry
## 632 The Nobel Prize in Literature
## 633 The Nobel Prize in Chemistry
## 634 The Nobel Prize in Literature
## 635 The Nobel Peace Prize
## 636 The Nobel Prize in Literature
## 637 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 638 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 639 The Nobel Prize in Physiology or Medicine
## 640 The Nobel Peace Prize
## 641 The Nobel Prize in Literature
## 642 The Nobel Prize in Chemistry
## 643 The Nobel Peace Prize
## 644 The Nobel Prize in Chemistry
## 645 The Nobel Prize in Chemistry
## 646 The Nobel Prize in Physiology or Medicine
## 647 The Nobel Prize in Physiology or Medicine
## 648 The Nobel Prize in Physics
## 649 The Nobel Prize in Chemistry
## 650 The Nobel Prize in Physiology or Medicine
## 651 The Nobel Prize in Physics
## 652 The Nobel Prize in Physics
## 653 The Nobel Prize in Literature
## 654 The Nobel Prize in Literature
## 655 The Nobel Prize in Physics
## 656 The Nobel Prize in Literature
## 657 The Nobel Prize in Literature
## 658 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 659 The Nobel Prize in Physics
## 660 The Nobel Prize in Chemistry
## 661 The Nobel Prize in Physiology or Medicine
## 662 The Nobel Prize in Chemistry
## 663 The Nobel Prize in Physiology or Medicine
## 664 The Nobel Prize in Physiology or Medicine
## 665 The Nobel Peace Prize
## 666 The Nobel Prize in Literature
## 667 The Nobel Prize in Chemistry
## 668 The Nobel Prize in Chemistry
## 669 The Nobel Prize in Chemistry
## 670 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 671 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 672 The Nobel Prize in Chemistry
## 673 The Nobel Prize in Physiology or Medicine
## 674 The Nobel Prize in Chemistry
## 675 The Nobel Prize in Physics
## 676 The Nobel Prize in Literature
## 677 The Nobel Prize in Physics
## 678 The Nobel Peace Prize
## 679 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 680 The Nobel Prize in Chemistry
## 681 The Nobel Prize in Physiology or Medicine
## 682 The Nobel Prize in Chemistry
## 683 The Nobel Prize in Physics
## 684 The Nobel Prize in Literature
## 685 The Nobel Prize in Physics
## 686 The Nobel Prize in Physiology or Medicine
## 687 The Nobel Prize in Chemistry
## 688 The Nobel Prize in Physiology or Medicine
## 689 The Nobel Peace Prize
## 690 The Nobel Prize in Physiology or Medicine
## 691 The Nobel Prize in Physics
## 692 The Nobel Prize in Physics
## 693 The Nobel Prize in Physiology or Medicine
## 694 The Nobel Prize in Physics
## 695 The Nobel Prize in Physics
## 696 The Nobel Prize in Physics
## 697 The Nobel Prize in Physics
## 698 The Nobel Peace Prize
## 699 The Nobel Prize in Physics
## 700 The Nobel Prize in Literature
## 701 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 702 The Nobel Prize in Physiology or Medicine
## 703 The Nobel Prize in Physics
## 704 The Nobel Peace Prize
## 705 The Nobel Prize in Physiology or Medicine
## 706 The Nobel Peace Prize
## 707 The Nobel Prize in Physiology or Medicine
## 708 The Nobel Prize in Physics
## 709 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 710 The Nobel Prize in Physiology or Medicine
## 711 The Nobel Peace Prize
## 712 The Nobel Prize in Physics
## 713 The Nobel Prize in Physiology or Medicine
## 714 The Nobel Prize in Chemistry
## 715 The Nobel Prize in Physics
## 716 The Nobel Prize in Chemistry
## 717 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 718 The Nobel Prize in Chemistry
## 719 The Nobel Prize in Physiology or Medicine
## 720 The Nobel Prize in Chemistry
## 721 The Nobel Prize in Chemistry
## 722 The Nobel Prize in Physics
## 723 The Nobel Prize in Chemistry
## 724 The Nobel Prize in Chemistry
## 725 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 726 The Nobel Prize in Chemistry
## 727 The Nobel Prize in Chemistry
## 728 The Nobel Peace Prize
## 729 The Nobel Prize in Physiology or Medicine
## 730 The Nobel Prize in Chemistry
## 731 The Nobel Prize in Physics
## 732 The Nobel Prize in Physics
## 733 The Nobel Prize in Chemistry
## 734 The Nobel Prize in Physiology or Medicine
## 735 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 736 The Nobel Prize in Physics
## 737 The Nobel Peace Prize
## 738 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 739 The Nobel Prize in Chemistry
## 740 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 741 The Nobel Prize in Physiology or Medicine
## 742 The Nobel Prize in Physiology or Medicine
## 743 The Nobel Prize in Chemistry
## 744 The Nobel Prize in Physics
## 745 The Nobel Prize in Chemistry
## 746 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 747 The Nobel Prize in Chemistry
## 748 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 749 The Nobel Prize in Physiology or Medicine
## 750 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 751 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 752 The Nobel Prize in Chemistry
## 753 The Nobel Prize in Physics
## 754 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 755 The Nobel Prize in Physiology or Medicine
## 756 The Nobel Prize in Physics
## 757 The Nobel Prize in Chemistry
## 758 The Nobel Prize in Physiology or Medicine
## 759 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 760 The Nobel Prize in Chemistry
## 761 The Nobel Prize in Physiology or Medicine
## 762 The Nobel Prize in Literature
## 763 The Nobel Prize in Physiology or Medicine
## 764 The Nobel Prize in Chemistry
## 765 The Nobel Prize in Physiology or Medicine
## 766 The Nobel Prize in Literature
## 767 The Nobel Prize in Chemistry
## 768 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 769 The Nobel Prize in Physiology or Medicine
## 770 The Nobel Prize in Physiology or Medicine
## 771 The Nobel Prize in Physics
## 772 The Nobel Prize in Literature
## 773 The Nobel Prize in Physics
## 774 The Nobel Prize in Chemistry
## 775 The Nobel Prize in Literature
## 776 The Nobel Prize in Physics
## 777 The Nobel Prize in Chemistry
## 778 The Nobel Prize in Literature
## 779 The Nobel Prize in Physiology or Medicine
## 780 The Nobel Prize in Literature
## 781 The Nobel Prize in Literature
## 782 The Nobel Prize in Physics
## 783 The Nobel Prize in Physiology or Medicine
## 784 The Nobel Prize in Physiology or Medicine
## 785 The Nobel Prize in Literature
## 786 The Nobel Prize in Physics
## 787 The Nobel Prize in Literature
## 788 The Nobel Peace Prize
## 789 The Nobel Prize in Literature
## 790 The Nobel Prize in Physiology or Medicine
## 791 The Nobel Prize in Physics
## 792 The Nobel Prize in Physiology or Medicine
## 793 The Nobel Prize in Physics
## 794 The Nobel Peace Prize
## 795 The Nobel Prize in Physiology or Medicine
## 796 The Nobel Peace Prize
## 797 The Nobel Prize in Literature
## 798 The Nobel Prize in Physics
## 799 The Nobel Prize in Chemistry
## 800 The Nobel Prize in Literature
## 801 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 802 The Nobel Prize in Physics
## 803 The Nobel Prize in Physics
## 804 The Nobel Prize in Literature
## 805 The Nobel Prize in Physiology or Medicine
## 806 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 807 The Nobel Peace Prize
## 808 The Nobel Prize in Physiology or Medicine
## 809 The Nobel Prize in Physics
## 810 The Nobel Prize in Physiology or Medicine
## 811 The Nobel Prize in Chemistry
## 812 The Nobel Prize in Physiology or Medicine
## 813 The Nobel Prize in Physiology or Medicine
## 814 The Nobel Prize in Chemistry
## 815 The Nobel Prize in Chemistry
## 816 The Nobel Prize in Physiology or Medicine
## 817 The Nobel Prize in Physiology or Medicine
## 818 The Nobel Prize in Chemistry
## 819 The Nobel Prize in Physiology or Medicine
## 820 The Nobel Prize in Physiology or Medicine
## 821 The Nobel Prize in Physiology or Medicine
## 822 The Nobel Prize in Physiology or Medicine
## 823 The Nobel Prize in Physics
## 824 The Nobel Peace Prize
## 825 The Nobel Prize in Physiology or Medicine
## 826 The Nobel Prize in Physiology or Medicine
## 827 The Nobel Prize in Physiology or Medicine
## 828 The Nobel Prize in Chemistry
## 829 The Nobel Prize in Chemistry
## 830 The Nobel Prize in Chemistry
## 831 The Nobel Prize in Physiology or Medicine
## 832 The Nobel Prize in Physiology or Medicine
## 833 The Nobel Prize in Chemistry
## 834 The Nobel Prize in Physics
## 835 The Nobel Prize in Physics
## 836 The Nobel Prize in Physics
## 837 The Nobel Prize in Literature
## 838 The Nobel Prize in Physiology or Medicine
## 839 The Nobel Prize in Physiology or Medicine
## 840 The Nobel Prize in Chemistry
## 841 The Nobel Prize in Literature
## 842 The Nobel Prize in Physiology or Medicine
## 843 The Nobel Prize in Literature
## 844 The Nobel Prize in Physiology or Medicine
## 845 The Nobel Prize in Physics
## 846 The Nobel Prize in Physiology or Medicine
## 847 The Nobel Peace Prize
## 848 The Nobel Peace Prize
## 849 The Nobel Prize in Chemistry
## 850 The Nobel Prize in Physiology or Medicine
## 851 The Nobel Prize in Literature
## 852 The Nobel Prize in Physics
## 853 The Nobel Peace Prize
## 854 The Nobel Prize in Chemistry
## 855 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 856 The Nobel Prize in Chemistry
## 857 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 858 The Nobel Prize in Physiology or Medicine
## 859 The Nobel Prize in Physiology or Medicine
## 860 The Nobel Prize in Physiology or Medicine
## 861 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 862 The Nobel Prize in Literature
## 863 The Nobel Prize in Chemistry
## 864 The Nobel Prize in Physiology or Medicine
## 865 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 866 The Nobel Peace Prize
## 867 The Nobel Prize in Chemistry
## 868 The Nobel Prize in Literature
## 869 The Nobel Prize in Literature
## 870 The Nobel Prize in Physiology or Medicine
## 871 The Nobel Prize in Physics
## 872 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 873 The Nobel Prize in Physics
## 874 The Nobel Prize in Physiology or Medicine
## 875 The Nobel Prize in Physiology or Medicine
## 876 The Nobel Peace Prize
## 877 The Nobel Peace Prize
## 878 The Nobel Peace Prize
## 879 The Nobel Prize in Literature
## 880 The Nobel Prize in Physics
## 881 The Nobel Prize in Chemistry
## 882 The Nobel Prize in Literature
## 883 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 884 The Nobel Prize in Literature
## 885 The Nobel Prize in Physics
## 886 The Nobel Prize in Chemistry
## 887 The Nobel Prize in Chemistry
## 888 The Nobel Prize in Physics
## 889 The Nobel Prize in Chemistry
## 890 The Nobel Prize in Chemistry
## 891 The Nobel Prize in Physics
## 892 The Nobel Prize in Physiology or Medicine
## 893 The Nobel Prize in Chemistry
## 894 The Nobel Prize in Physics
## 895 The Nobel Prize in Chemistry
## 896 The Nobel Peace Prize
## 897 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 898 The Nobel Prize in Chemistry
## 899 The Nobel Prize in Physiology or Medicine
## 900 The Nobel Prize in Physiology or Medicine
## 901 The Nobel Prize in Physics
## 902 The Nobel Prize in Physics
## 903 The Nobel Prize in Chemistry
## 904 The Nobel Prize in Physics
## 905 The Nobel Prize in Chemistry
## 906 The Nobel Prize in Physics
## 907 The Nobel Prize in Physiology or Medicine
## 908 The Nobel Prize in Physics
## 909 The Nobel Prize in Physics
## 910 The Nobel Prize in Physics
## 911 The Nobel Prize in Literature
## 912 The Nobel Prize in Physiology or Medicine
## 913 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 914 The Nobel Prize in Physics
## 915 The Nobel Prize in Chemistry
## 916 The Nobel Prize in Chemistry
## 917 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 918 The Nobel Prize in Literature
## 919 The Nobel Prize in Physiology or Medicine
## 920 The Nobel Prize in Literature
## 921 The Nobel Prize in Chemistry
## 922 The Nobel Prize in Chemistry
## 923 The Nobel Prize in Chemistry
## 924 The Nobel Prize in Physiology or Medicine
## 925 The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel
## 926 The Nobel Prize in Physics
## 927 The Nobel Peace Prize
## 928 The Nobel Prize in Literature
## 929 The Nobel Prize in Literature
## 930 The Nobel Prize in Literature
## 931 The Nobel Prize in Literature
## 932 The Nobel Prize in Physics
## 933 The Nobel Prize in Physics
## 934 The Nobel Prize in Physics
## 935 The Nobel Peace Prize
## 936 The Nobel Peace Prize
## 937 The Nobel Prize in Literature
## 938 The Nobel Peace Prize
## 939 The Nobel Prize in Physics
## 940 The Nobel Prize in Physiology or Medicine
## 941 The Nobel Prize in Chemistry
## 942 The Nobel Prize in Chemistry
## 943 The Nobel Prize in Physics
## 944 The Nobel Prize in Chemistry
## 945 The Nobel Peace Prize
## 946 The Nobel Prize in Physics
## 947 The Nobel Prize in Chemistry
## 948 The Nobel Prize in Chemistry
## 949 The Nobel Peace Prize
## 950 The Nobel Peace Prize
## sortOrder portion prizeAmount prizeAmountAdjusted dateAwarded prizeStatus
## 1 2 1/3 10000000 12295082 2001-10-10 received
## 2 1 1/3 630000 3404179 1975-10-17 received
## 3 1 1/3 10000000 11762861 2004-10-06 received
## 4 1 1 1150000 3102518 1982-10-18 received
## 5 2 1/3 800000 2988048 1979-10-15 received
## 6 1 1/3 9000000 9000000 2019-10-14 received
## 7 1 1 9000000 9000000 2019-10-11 received
## 8 3 1/3 10000000 10958504 2009-10-07 received
## 9 3 1/4 10000000 10545557 2011-10-04 received
## 10 1 1/2 148822 4227898 received
## 11 1 1 138089 7615202 received
## 12 1 1 156939 4458494 received
## 13 1 1 880000 2889667 1980-10-27 received
## 14 1 1 7900000 10049186 1999-10-12 received
## 15 3 1/3 10000000 10819388 2010-10-06 received
## 16 3 1/3 9000000 9000000 2019-10-09 received
## 17 2 1/2 10000000 11301989 2007-10-12 received
## 18 1 1/3 9000000 11333109 2000-10-10 received
## 19 2 1/3 265000 2839286 received
## 20 2 1/3 9000000 11333109 2000-10-10 received
## 21 1 1 138796 7033581 received
## 22 1 1 208629 2697789 received
## 23 1 1/3 550000 3263449 received
## 24 1 1 121573 2532771 received
## 25 1 1/2 10000000 11301989 2007-10-09 received
## 26 2 1/2 141847 8059489 1902-12-10 received
## 27 1 1 225987 2664941 1961-10-23 received
## 28 1 1 171135 2546652 1953-10-30 received
## 29 1 1 158463 4716161 received
## 30 1 1 140703 7130220 received
## 31 3 1/4 273000 2828039 received
## 32 1 1 400000 3177966 1970-10-08 received
## 33 1 1/3 10000000 11807305 2003-10-07 received
## 34 1 1 140476 6753654 received
## 35 2 1/2 1150000 3102518 1982-10-13 received
## 36 2 1/3 375000 3181561 received
## 37 2 1/2 140695 7327865 1911-12-10 received
## 38 1 1/2 7000000 9249471 1994-10-10 received
## 39 1 1 300000 2784653 received
## 40 1 1 143010 6875481 received
## 41 1 1 8000000 8365867 2013-10-10 received
## 42 1 1/2 800000 2988048 1979-10-11 received
## 43 1 1 140695 7327865 received
## 44 1 1 138796 7033581 received
## 45 1 1/2 1150000 3102518 1982-10-13 received
## 46 1 1/2 8000000 8361204 2012-10-15 received
## 47 1 1 7600000 9713701 1998-10-14 received
## 48 2 1/2 146115 2914528 1947-10-30 received
## 49 1 1 700000 3080986 1977-10-10 received
## 50 1 1 121573 2532771 received
## 51 1 1/3 200123 2699501 received
## 52 1 1/2 10000000 10819388 2010-10-05 received
## 53 1 1 146115 2914528 received
## 54 2 1/3 282000 2782895 received
## 55 1 1 630000 3404179 1975-10-09 received
## 56 3 1/3 265000 2839286 received
## 57 2 1/4 700000 3080986 received
## 58 1 1/2 10000000 11552680 2006-10-02 received
## 59 1 1 8000000 8384572 2015-10-12 received
## 60 3 1/3 10000000 11807305 2003-10-07 received
## 61 2 1/2 550000 3263449 1974-10-15 received
## 62 1 1/2 725000 2898454 1978-10-27 received
## 63 1 1/2 171135 2546652 received
## 64 1 1/2 122483 3145967 received
## 65 3 1/3 8000000 8365867 2013-10-09 received
## 66 1 1/2 116960 3273134 1926-12-10 received
## 67 1 1 159773 3056881 received
## 68 2 1/4 725000 2898454 1978-10-17 received
## 69 1 1/2 9000000 9000000 2018-10-02 received
## 70 2 1/2 8000000 8384572 2015-10-06 received
## 71 1 1/2 126501 3593778 received
## 72 1 1/2 172760 4907955 received
## 73 1 1 162608 5167627 1934-12-10 received
## 74 2 1/2 220678 2704387 received
## 75 2 1/4 1000000 2929688 1981-10-19 received
## 76 1 1 121333 2499993 received
## 77 1 1/3 9000000 11333109 2000-10-09 received
## 78 1 1 134100 2394643 received
## 79 1 1/2 139800 7084459 1909-12-10 received
## 80 1 1 6000000 8673863 1991-10-14 received
## 81 2 1/3 10000000 11762861 2004-10-06 received
## 82 3 1/3 8000000 8384572 2015-10-07 received
## 83 1 1 10000000 10958504 2009-10-09 received
## 84 1 1 1500000 3715324 received
## 85 2 1/4 9000000 9176183 2017-10-03 received
## 86 1 1/2 10000000 11711430 2005-10-03 received
## 87 3 1/2 10000000 12295082 2001-10-10 received
## 88 1 1/2 681000 3342605 1976-10-14 received
## 89 1 1/3 880000 2889667 1980-10-10 received
## 90 2 1/3 630000 3404179 1975-10-17 received
## 91 2 1/2 8000000 8301051 2016-10-10 received
## 92 2 1/3 1150000 3102518 1982-10-11 received
## 93 3 1/3 8000000 8301051 2016-10-05 received
## 94 3 1/2 146115 2914528 received
## 95 2 1/2 6000000 8673863 received
## 96 1 1 138089 7615202 1905-12-10 received
## 97 1 1/2 700000 3080986 1977-10-14 received
## 98 1 1/2 7000000 9249471 1994-10-12 received
## 99 1 1 164304 3050198 received
## 100 1 1/2 681000 3342605 1977-10-10 received
## 101 1 1 141358 7795478 received
## 102 1 1 8000000 8301051 2016-10-13 received
## 103 1 1 214559 2646698 restricted
## 104 3 1/2 510000 3331882 1973-10-23 received
## 105 2 1/2 8000000 8361204 2012-10-10 received
## 106 2 1/4 10000000 10545557 2011-10-04 received
## 107 1 1/4 10000000 10545557 received
## 108 1 1 1650000 3782090 1984-10-17 received
## 109 1 1/2 681000 3342605 1976-10-18 received
## 110 2 1/2 126501 3593778 received
## 111 1 1/2 138536 7421571 received
## 112 1 1 3000000 5242311 received
## 113 1 1/2 173206 5238085 received
## 114 1 1/4 146115 2914528 received
## 115 2 1/2 159850 4913422 received
## 116 1 1 133127 2377268 received
## 117 1 1 159917 4997406 1936-11-24 received
## 118 3 1/3 10000000 12295082 2001-10-09 received
## 119 1 1/2 1650000 3782090 1984-10-17 received
## 120 1 1/2 7400000 9490424 1996-10-11 received
## 121 1 1 159850 4913422 1936-11-24 received
## 122 2 1/3 10000000 10958504 received
## 123 1 1 164304 3050198 received
## 124 3 1/3 1650000 3782090 received
## 125 2 1/2 300000 2784653 received
## 126 1 1 134100 2394643 received
## 127 2 1/2 118165 3211005 1926-12-10 received
## 128 1 1 133823 3920596 1918-11-12 received
## 129 1 1/2 273000 2828039 received
## 130 3 1/3 2175000 4274764 1987-10-14 received
## 131 1 1/2 10000000 10958504 2009-10-06 received
## 132 1 1 156939 4458494 received
## 133 1 1 143010 6875481 received
## 134 1 1/2 208629 2697789 received
## 135 1 1/2 172760 4907955 received
## 136 1 1/2 480000 3345725 received
## 137 2 1/3 550000 3263449 received
## 138 2 1/2 121573 2532771 1921-12-10 received
## 139 2 1/3 7200000 9278351 1995-10-09 received
## 140 3 1/3 10000000 10819388 2010-10-11 received
## 141 2 1/2 10000000 10545557 2011-10-10 received
## 142 2 1/3 7500000 9572839 1997-10-15 received
## 143 1 1 1800000 3843964 received
## 144 2 1/2 7000000 9249471 1994-10-12 received
## 145 1 1/2 158463 4716161 received
## 146 2 1/2 10000000 11807305 2003-10-08 received
## 147 1 1 121333 2499993 1945-11-12 received
## 148 1 1 155077 4543271 received
## 149 2 1/2 10000000 11552680 2006-10-02 received
## 150 1 1 880000 2889667 received
## 151 2 1/2 681000 3342605 1976-10-14 received
## 152 1 1 250233 2878447 1961-10-23 received
## 153 2 1/3 10000000 10819388 2010-10-11 received
## 154 1 1 10000000 10545557 2011-10-05 received
## 155 1 1 208629 2697789 received
## 156 3 1/3 7600000 9713701 1998-10-13 received
## 157 1 1/2 10000000 12034660 2002-10-09 received
## 158 2 1/2 9000000 11333109 2000-10-11 received
## 159 2 1/3 725000 2898454 received
## 160 1 1 7500000 9572839 received
## 161 1 1/3 630000 3404179 1975-10-16 received
## 162 2 1/4 1000000 2929688 1981-10-09 received
## 163 1 1/3 10000000 11762861 2004-10-05 received
## 164 1 1/2 8000000 8301051 2016-10-04 received
## 165 2 1/2 8000000 8361204 2012-10-09 received
## 166 1 1/3 7400000 9490424 1996-10-09 received
## 167 2 1/2 7600000 9713701 1998-10-16 received
## 168 1 1/2 9000000 9000000 2018-10-05 received
## 169 1 1 450000 3321850 received
## 170 1 1/2 375000 3181561 received
## 171 1 1 6500000 9184250 received
## 172 1 1 1650000 3782090 1984-10-05 received
## 173 3 1/3 200123 2699501 received
## 174 3 1/4 9000000 9000000 2019-10-08 received
## 175 1 1 225987 2664941 1960-11-03 received
## 176 1 1/3 2175000 4274764 1987-10-14 received
## 177 3 1/4 9000000 9000000 2018-10-02 received
## 178 1 1 10000000 11301989 2007-10-11 received
## 179 1 1 273000 2828039 received
## 180 2 1/3 7400000 9490424 1996-10-09 received
## 181 2 1/2 6700000 9044276 1993-10-12 received
## 182 1 1/3 2000000 4098361 1986-10-15 received
## 183 2 1/2 4000000 6329114 received
## 184 2 1/2 171135 2546652 received
## 185 1 1 450000 3321850 received
## 186 2 1/2 171753 5279293 received
## 187 1 1/2 6500000 9184250 received
## 188 1 1 10000000 11552680 2006-10-09 received
## 189 1 1 138796 7033581 received
## 190 3 1/4 8000000 8379888 received
## 191 2 1/2 123691 2520876 received
## 192 1 1/3 7200000 9278351 1995-10-09 received
## 193 1 1/3 164304 3050198 received
## 194 2 1/2 10000000 11762861 2004-10-11 received
## 195 2 1/4 214559 2646698 received
## 196 1 1 146115 2914528 received
## 197 2 1/2 6500000 9184250 received
## 198 1 1/2 167612 2686090 received
## 199 2 1/2 156290 2930438 received
## 200 2 1/3 10000000 10819388 2010-10-06 received
## 201 2 1/2 550000 3263449 1974-10-09 received
## 202 1 1 10000000 11762861 2004-10-07 received
## 203 1 1 1000000 2929688 received
## 204 1 1 4000000 6329114 1990-10-17 received
## 205 1 1/2 141847 8059489 1902-12-10 received
## 206 1 1 2000000 4098361 1986-10-14 received
## 207 1 1 140476 6753654 1913-12-10 received
## 208 1 1/2 10000000 10958504 2009-10-12 received
## 209 1 1/3 10000000 10958504 received
## 210 1 1/3 10000000 10545557 2011-10-07 received
## 211 1 1 141847 8059489 received
## 212 1 1 150782 8567159 received
## 213 1 1/2 220678 2704387 received
## 214 1 1/2 121524 2503929 1946-11-14 received
## 215 1 1 155077 4543271 received
## 216 1 1/3 8000000 8379888 2014-10-08 received
## 217 1 1/3 10000000 12295082 2001-10-09 received
## 218 3 1/3 7200000 9278351 1995-10-09 received
## 219 3 1/3 9000000 11333109 2000-10-09 received
## 220 2 1/3 10000000 11301989 2007-10-15 received
## 221 1 1 173206 5238085 received
## 222 1 1 181647 2640218 received
## 223 1 1 148822 4227898 received
## 224 1 1 139800 7084459 received
## 225 2 1/2 167612 2686090 received
## 226 1 1/2 138796 7033581 1907-12-10 received
## 227 2 1/3 121333 2499993 received
## 228 1 1/2 510000 3331882 1973-10-23 received
## 229 1 1/2 2000000 4098361 1986-10-15 received
## 230 1 1/2 6000000 8673863 received
## 231 1 1/2 170332 5413093 received
## 232 2 1/3 9000000 9000000 2019-10-14 received
## 233 1 1/3 8000000 8365867 2013-10-14 received
## 234 1 1 159850 4913422 received
## 235 1 1/2 265000 2839286 received
## 236 1 1 630000 3404179 1975-10-23 received
## 237 1 1 8000000 8361204 2012-10-12 received
## 238 1 1/2 550000 3263449 received
## 239 2 1/4 8000000 8301051 2016-10-04 received
## 240 3 1/3 7200000 9278351 1995-10-11 received
## 241 2 1/2 6700000 9044276 1993-10-15 received
## 242 1 1/2 171135 2546652 received
## 243 2 1/2 273000 2828039 received
## 244 2 1/2 139800 7084459 received
## 245 1 1/2 126501 3593778 1927-12-10 received
## 246 3 1/3 7600000 9713701 received
## 247 1 1/2 10000000 11762861 2004-10-11 received
## 248 1 1/2 9000000 9000000 2018-10-03 received
## 249 1 1/3 257220 2836985 received
## 250 1 1 122483 3145967 received
## 251 1 1 1800000 3843964 1985-10-15 received
## 252 1 1/2 8000000 8365867 2013-10-08 received
## 253 1 1/3 282000 2782895 received
## 254 1 1 171135 2546652 received
## 255 2 1/4 10000000 10926573 2008-10-06 received
## 256 1 1 172760 4907955 1930-12-10 received
## 257 3 1/3 10000000 11762861 2004-10-05 received
## 258 1 1 148822 4227898 received
## 259 1 1/2 159917 4997406 received
## 260 1 1/2 140859 7767960 received
## 261 2 1/2 150782 8567159 1901-12-10 received
## 262 3 1/3 181647 2640218 received
## 263 1 1/2 114935 3169164 received
## 264 2 1/2 7200000 9278351 1995-10-11 received
## 265 1 1 214559 2646698 received
## 266 1 1 121573 2532771 received
## 267 2 1/2 139800 7084459 1908-12-10 received
## 268 1 1 122483 3145967 1922-12-10 received
## 269 2 1/2 173206 5238085 received
## 270 2 1/2 550000 3263449 1974-10-09 received
## 271 1 1/2 146115 2914528 1947-10-30 received
## 272 1 1 175293 2567769 received
## 273 1 1 138198 2847486 received
## 274 2 1/2 175293 2567769 received
## 275 1 1 114935 3169164 received
## 276 1 1 1150000 3102518 received
## 277 1 1 139800 7084459 received
## 278 1 1 121333 2499993 received
## 279 1 1 9000000 11333109 2000-10-12 received
## 280 1 1 6500000 9184250 1992-10-13 received
## 281 2 1/2 510000 3331882 1973-10-23 received
## 282 1 1 250233 2878447 received
## 283 2 1/2 800000 2988048 1979-10-15 received
## 284 1 1/3 10000000 12295082 2001-10-10 received
## 285 1 1 7000000 9249471 1994-10-12 received
## 286 1 1/4 214559 2646698 received
## 287 1 1 118165 3211005 received
## 288 1 1 175293 2567769 1953-10-30 received
## 289 3 1/3 880000 2889667 1980-10-10 received
## 290 1 1 123691 2520876 received
## 291 3 1/3 550000 3263449 received
## 292 3 1/4 10000000 10958504 2009-10-06 received
## 293 2 1/2 10000000 11552680 2006-10-03 received
## 294 3 1/3 2500000 4645689 received
## 295 1 1/3 162608 5167627 received
## 296 1 1 1150000 3102518 1982-10-20 received
## 297 2 1/4 9000000 9000000 2018-10-03 received
## 298 2 1/2 158463 4716161 received
## 299 3 1/4 320000 2843602 received
## 300 2 1/3 162608 5167627 received
## 301 3 1/3 320000 2843602 received
## 302 1 1 6500000 9184250 1992-10-14 received
## 303 2 1/3 1650000 3782090 received
## 304 1 1 214559 2646698 1958-11-10 received
## 305 1 1/2 480000 3345725 received
## 306 1 1 1500000 3715324 1983-10-17 received
## 307 2 1/4 9000000 9000000 2018-10-02 received
## 308 1 1/2 7900000 10049186 1999-10-12 received
## 309 2 1/4 2000000 4098361 1986-10-15 received
## 310 1 1 148822 4227898 received
## 311 1 1 10000000 11301989 2007-10-10 received
## 312 1 1 450000 3321850 received
## 313 1 1 140476 6753654 received
## 314 2 1/3 2500000 4645689 received
## 315 2 1/4 146115 2914528 received
## 316 1 1 265000 2839286 received
## 317 1 1 138536 7421571 received
## 318 2 1/2 265000 2839286 received
## 319 2 1/2 167612 2686090 received
## 320 2 1/2 800000 2988048 1979-10-11 received
## 321 2 1/2 10000000 11552680 2006-10-13 received
## 322 1 1 116960 3273134 received
## 323 3 1/3 9000000 9000000 2019-10-07 received
## 324 1 1/2 139800 7084459 received
## 325 1 1/2 550000 3263449 1974-10-09 received
## 326 1 1 7900000 10049186 1999-10-11 received
## 327 1 1 7900000 10049186 received
## 328 1 1 140476 6753654 received
## 329 2 1/2 118165 3211005 received
## 330 2 1/2 116960 3273134 1926-12-10 received
## 331 2 1/3 10000000 11762861 2004-10-05 received
## 332 2 1/3 350000 3052326 received
## 333 2 1/3 10000000 12034660 2002-10-07 received
## 334 1 1 190214 2681588 1955-10-27 received
## 335 3 1/3 725000 2898454 received
## 336 1 1/2 400000 3177966 1970-10-27 received
## 337 1 1 320000 2843602 received
## 338 1 1 172947 5066807 received
## 339 2 1/4 3000000 5242311 1989-10-12 received
## 340 1 1/2 175293 2567769 received
## 341 1 1 159917 4997406 received
## 342 2 1/2 172760 4907955 received
## 343 1 1/2 10000000 10926573 2008-10-06 received
## 344 1 1 162608 5167627 received
## 345 2 1/2 3000000 5242311 1989-10-09 received
## 346 1 1 10000000 11711430 2005-10-13 received
## 347 1 1/3 4000000 6329114 1990-10-16 received
## 348 2 1/2 550000 3263449 received
## 349 3 1/3 2500000 4645689 1988-10-19 received
## 350 1 1 143010 6875481 received
## 351 1 1 480000 3345725 received
## 352 3 1/4 2000000 4098361 1986-10-15 received
## 353 1 1 126501 3593778 received
## 354 1 1/2 141847 8059489 received
## 355 1 1/2 141358 7795478 received
## 356 1 1 126501 3593778 received
## 357 1 1 143010 6875481 1913-12-10 received
## 358 1 1 138536 7421571 received
## 359 1 1/2 123691 2520876 received
## 360 2 1/2 133823 3920596 1917-11-08 received
## 361 1 1/2 150782 8567159 1901-12-10 received
## 362 1 1/2 510000 3331882 1973-10-17 received
## 363 1 1 1500000 3715324 1983-10-19 received
## 364 2 1/3 4000000 6329114 1990-10-17 received
## 365 1 1 138089 7615202 received
## 366 1 1/2 1800000 3843964 1985-10-15 received
## 367 1 1/2 800000 2988048 1979-10-15 received
## 368 2 1/4 9000000 11333109 2000-10-10 received
## 369 2 1/2 121841 2510460 received
## 370 1 1 725000 2898454 1978-10-16 received
## 371 1 1 121524 2503929 received
## 372 1 1 121524 2503929 received
## 373 1 1 175293 2567769 received
## 374 1 1 10000000 10958504 2009-10-08 received
## 375 3 1/3 9000000 11333109 2000-10-10 received
## 376 1 1 156290 2930438 received
## 377 2 1/3 8000000 8379888 2014-10-07 received
## 378 1 1/2 121573 2532771 1921-12-10 received
## 379 2 1/3 7600000 9713701 1998-10-13 received
## 380 3 1/3 630000 3404179 1975-10-16 received
## 381 1 1 190214 2681588 1955-10-20 received
## 382 3 1/3 214559 2646698 received
## 383 2 1/3 214559 2646698 received
## 384 1 1/2 139800 7084459 received
## 385 1 1 700000 3080986 1977-10-11 received
## 386 1 1 10000000 12034660 2002-10-10 received
## 387 1 1 140859 7767960 1904-12-10 received
## 388 1 1/2 10000000 11301989 2007-10-12 received
## 389 1 1/2 10000000 11711430 2005-10-07 received
## 390 1 1 9000000 9176183 2017-10-06 received
## 391 1 1/2 7500000 9572839 1997-10-10 received
## 392 1 1 133823 3920596 1917-12-10 received
## 393 1 1 375000 3181561 1969-10-20 received
## 394 1 1 1800000 3843964 1985-10-05 received
## 395 2 1/2 159917 4997406 received
## 396 1 1 171753 5279293 received
## 397 3 1/3 10000000 11762861 2004-10-06 received
## 398 1 1 725000 2898454 received
## 399 1 1/3 8000000 8379888 2014-10-07 received
## 400 1 1 121841 2510460 received
## 401 1 1 170332 5413093 received
## 402 1 1 140859 7767960 received
## 403 2 1/4 510000 3331882 1973-10-23 received
## 404 1 1 250233 2878447 received
## 405 1 1/2 2175000 4274764 1987-10-14 received
## 406 3 1/4 265000 2839286 received
## 407 1 1 10000000 11807305 2003-10-02 received
## 408 1 1/2 3000000 5242311 1989-10-09 received
## 409 3 1/4 8000000 8301051 2016-10-04 received
## 410 2 1/2 10000000 11711430 2005-10-03 received
## 411 1 1 138536 7421571 received
## 412 1 1 122483 3145967 received
## 413 3 1/2 9000000 11333109 2000-10-10 received
## 414 3 1/3 2500000 4645689 1988-10-19 received
## 415 3 1/3 10000000 10958504 received
## 416 1 1 150782 8567159 received
## 417 1 1/3 9000000 9176183 2017-10-04 received
## 418 3 1/3 282000 2782895 received
## 419 1 1/2 7400000 9490424 1996-10-08 received
## 420 1 1/2 121524 2503929 received
## 421 1 1 159917 4997406 received
## 422 1 1/2 880000 2889667 1980-10-12 received
## 423 2 1/2 700000 3080986 1977-10-14 received
## 424 1 1/3 8000000 8365867 received
## 425 1 1/2 118165 3211005 received
## 426 1 1/2 9000000 11333109 2000-10-11 received
## 427 1 1 2000000 4098361 1986-10-16 received
## 428 1 1/2 9000000 9000000 received
## 429 1 1/2 9000000 9000000 2019-10-08 received
## 430 3 1/3 630000 3404179 1975-10-17 received
## 431 1 1 1000000 2929688 1981-10-13 received
## 432 2 1/3 257220 2836985 received
## 433 2 1/2 375000 3181561 received
## 434 1 1/2 173206 5238085 1931-12-10 received
## 435 1 1 220678 2704387 received
## 436 1 1 1650000 3782090 received
## 437 1 1 116960 3273134 received
## 438 2 1/3 880000 2889667 1980-10-10 received
## 439 1 1 8000000 8379888 2014-10-13 received
## 440 1 1 10000000 10926573 2008-10-09 received
## 441 2 1/3 2175000 4274764 1987-10-14 received
## 442 1 1 273000 2828039 declined
## 443 1 1/3 8000000 8301051 2016-10-05 received
## 444 1 1/3 9000000 9176183 received
## 445 3 1/2 7500000 9572839 1997-10-15 received
## 446 1 1/3 4000000 6329114 1990-10-17 received
## 447 2 1/2 1800000 3843964 1985-10-15 received
## 448 1 1 10000000 12034660 2002-10-11 received
## 449 2 1/3 9000000 9176183 2017-10-04 received
## 450 2 1/2 7500000 9572839 1997-10-10 received
## 451 1 1/3 2500000 4645689 1988-10-19 received
## 452 1 1 140703 7130220 received
## 453 1 1 116960 3273134 received
## 454 1 1 133127 2377268 received
## 455 1 1 121841 2510460 received
## 456 1 1/4 10000000 12034660 2002-10-09 received
## 457 1 1/3 9000000 9000000 2019-10-09 received
## 458 2 1/3 200123 2699501 received
## 459 1 1/3 7000000 9249471 1994-10-11 received
## 460 2 1/2 257220 2836985 received
## 461 1 1/2 10000000 11552680 2006-10-03 received
## 462 3 1/3 2000000 4098361 1986-10-15 received
## 463 1 1/2 167612 2686090 received
## 464 1 1/2 630000 3404179 1975-10-17 received
## 465 3 1/3 10000000 12034660 2002-10-07 received
## 466 2 1/4 7500000 9572839 1997-10-15 received
## 467 1 1/3 181647 2640218 received
## 468 2 1/3 7000000 9249471 1994-10-11 received
## 469 1 1 171753 5279293 received
## 470 2 1/4 121524 2503929 received
## 471 3 1/3 700000 3080986 1977-10-11 received
## 472 1 1/2 7600000 9713701 1998-10-16 received
## 473 2 1/4 10000000 11711430 2005-10-04 received
## 474 2 1/2 114935 3169164 received
## 475 1 1/2 8000000 8379888 received
## 476 2 1/2 7600000 9713701 1998-10-13 received
## 477 1 1/2 480000 3345725 1972-10-25 received
## 478 2 1/2 121524 2503929 1946-11-14 received
## 479 3 1/3 1150000 3102518 1982-10-11 received
## 480 1 1 257220 2836985 received
## 481 2 1/2 140859 7767960 received
## 482 2 1/2 7400000 9490424 1996-10-11 received
## 483 1 1 7600000 9713701 received
## 484 1 1 2175000 4274764 received
## 485 1 1/2 4000000 6329114 received
## 486 3 1/3 10000000 12295082 2001-10-10 received
## 487 1 1/2 121841 2510460 received
## 488 2 1/2 6700000 9044276 1993-10-13 received
## 489 2 1/2 1800000 3843964 received
## 490 1 1/2 7200000 9278351 1995-10-13 received
## 491 3 1/2 214559 2646698 received
## 492 1 1 8000000 8301051 2016-10-07 received
## 493 1 1 200123 2699501 received
## 494 2 1/4 10000000 10545557 received
## 495 1 1 133127 2377268 received
## 496 2 1/3 282000 2782895 received
## 497 3 1/3 400000 3177966 1970-10-15 received
## 498 1 1 126501 3593778 received
## 499 2 1/2 2175000 4274764 1987-10-14 received
## 500 3 1/2 1000000 2929688 1981-10-19 received
## 501 1 1/2 8000000 8379888 2014-10-10 received
## 502 1 1/2 133823 3920596 1917-11-08 received
## 503 1 1 172947 5066807 received
## 504 1 1/3 510000 3331882 received
## 505 1 1/2 265000 2839286 received
## 506 1 1/2 6700000 9044276 1993-10-13 received
## 507 1 1 9000000 9176183 2017-10-05 received
## 508 2 1/3 320000 2843602 received
## 509 1 1/2 1000000 2929688 1981-10-19 received
## 510 1 1 1150000 3102518 1982-10-18 received
## 511 2 1/2 480000 3345725 1972-10-25 received
## 512 1 1 7000000 9249471 received
## 513 1 1 9000000 11333109 2000-10-13 received
## 514 3 1/4 9000000 9176183 2017-10-03 received
## 515 1 1/2 139800 7084459 1908-12-10 received
## 516 1 1 1800000 3843964 1985-10-16 received
## 517 1 1 134100 2394643 received
## 518 2 1/2 10000000 12295082 2001-10-12 received
## 519 2 1/4 10000000 12034660 2002-10-09 received
## 520 1 1/2 273000 2828039 received
## 521 2 1/3 510000 3331882 received
## 522 2 1/2 10000000 10819388 2010-10-05 received
## 523 2 1/2 164304 3050198 received
## 524 3 1/2 10000000 12034660 2002-10-09 received
## 525 1 1 350000 3052326 received
## 526 2 1/3 8000000 8365867 2013-10-14 received
## 527 2 1/2 149223 6217625 1915-11-12 received
## 528 1 1 880000 2889667 1980-10-15 received
## 529 2 1/2 510000 3331882 1973-10-17 declined
## 530 2 1/2 265000 2839286 1963-10-10 received
## 531 1 1 1500000 3715324 1983-10-05 received
## 532 1 1/3 10000000 12295082 2001-10-08 received
## 533 1 1/4 510000 3331882 1973-10-23 received
## 534 1 1 134100 2394643 1920-12-10 received
## 535 1 1 167612 2686090 received
## 536 1 1/3 2500000 4645689 1988-10-19 received
## 537 2 1/3 480000 3345725 received
## 538 1 1/3 10000000 11301989 2007-10-15 received
## 539 1 1/2 630000 3404179 1975-10-14 received
## 540 2 1/2 148822 4227898 received
## 541 1 1 208629 2697789 1957-10-03 received
## 542 1 1 257220 2836985 received
## 543 2 1/3 10000000 10545557 2011-10-07 received
## 544 2 1/2 10000000 11762861 2004-10-04 received
## 545 1 1 257220 2836985 1963-10-10 received
## 546 1 1 10000000 10819388 2010-10-08 received
## 547 2 1/2 8000000 8361204 2012-10-15 received
## 548 1 1 156290 2930438 1949-10-12 received
## 549 1 1 140859 7767960 received
## 550 1 1 208629 2697789 received
## 551 1 1 172760 4907955 received
## 552 2 1/3 7600000 9713701 received
## 553 2 1/2 400000 3177966 1970-10-27 received
## 554 2 1/2 138796 7033581 1907-12-10 received
## 555 3 1/4 10000000 10926573 2008-10-06 received
## 556 2 1/2 126501 3593778 1927-12-10 received
## 557 1 1 162608 5167627 received
## 558 1 1 350000 3052326 received
## 559 1 1 400000 3177966 1970-10-27 received
## 560 2 1/3 9000000 9000000 2019-10-09 received
## 561 2 1/2 681000 3342605 1977-10-10 received
## 562 2 1/4 10000000 10926573 2008-10-07 received
## 563 2 1/2 8000000 8379888 2014-10-10 received
## 564 1 1/2 320000 2843602 received
## 565 1 1 116719 3218355 received
## 566 2 1/4 265000 2839286 received
## 567 3 1/4 141358 7795478 received
## 568 2 1/3 7200000 9278351 1995-10-11 received
## 569 1 1/3 10000000 11301989 2007-10-08 received
## 570 1 1 10000000 10819388 2010-10-07 received
## 571 3 1/3 350000 3052326 received
## 572 2 1/3 10000000 10926573 2008-10-08 received
## 573 1 1/3 8000000 8365867 2013-10-09 received
## 574 1 1/2 7200000 9278351 1995-10-11 received
## 575 1 1 273000 2828039 1964-10-14 received
## 576 2 1/2 7000000 9249471 1994-10-10 received
## 577 1 1/2 550000 3263449 1974-10-15 received
## 578 2 1/2 7900000 10049186 1999-10-12 received
## 579 1 1 10000000 10926573 2008-10-10 received
## 580 2 1/4 10000000 12034660 2002-10-08 received
## 581 1 1 2500000 4645689 1988-10-18 received
## 582 1 1 140695 7327865 received
## 583 3 1/3 257220 2836985 received
## 584 1 1/2 181647 2640218 received
## 585 1 1/3 375000 3181561 received
## 586 1 1/2 257220 2836985 received
## 587 1 1 138198 2847486 received
## 588 1 1 167612 2686090 received
## 589 1 1 146900 7062500 1915-11-11 received
## 590 2 1/4 8000000 8379888 received
## 591 1 1 7900000 10049186 1999-10-15 received
## 592 1 1 250233 2878447 received
## 593 2 1/3 2500000 4645689 1988-10-19 received
## 594 2 1/2 725000 2898454 1978-10-27 received
## 595 2 1/3 4000000 6329114 1990-10-16 received
## 596 3 1/3 9000000 9000000 2019-10-14 received
## 597 2 1/3 8000000 8365867 2013-10-09 received
## 598 2 1/3 9000000 9176183 received
## 599 1 1/2 1800000 3843964 received
## 600 2 1/2 6700000 9044276 1993-10-13 received
## 601 3 1/3 9000000 9176183 received
## 602 2 1/4 9000000 9000000 2019-10-08 received
## 603 1 1 320000 2843602 received
## 604 1 1 4000000 6329114 1990-10-15 received
## 605 1 1 282000 2782895 received
## 606 1 1 681000 3342605 1976-10-14 received
## 607 1 1 8000000 8361204 2012-10-11 received
## 608 2 1/2 10000000 11711430 2005-10-07 received
## 609 1 1 800000 2988048 1979-10-27 received
## 610 1 1/2 10000000 11552680 2006-10-13 received
## 611 1 1 375000 3181561 received
## 612 2 1/2 7500000 9572839 1997-10-14 received
## 613 2 1/2 9000000 9000000 2018-10-05 received
## 614 1 1 6000000 8673863 received
## 615 1 1 2500000 4645689 received
## 616 1 1 155077 4543271 1938-11-17 received
## 617 1 1 172947 5066807 1930-12-10 received
## 618 1 1 8000000 8384572 2015-10-09 received
## 619 2 1/2 300000 2784653 received
## 620 1 1/2 6700000 9044276 1993-10-15 received
## 621 2 1/2 173206 5238085 1931-12-10 received
## 622 1 1/4 1000000 2929688 1981-10-19 received
## 623 2 1/4 273000 2828039 received
## 624 1 1 122483 3145967 received
## 625 1 1/3 1650000 3782090 received
## 626 1 1 141358 7795478 received
## 627 3 1/3 510000 3331882 received
## 628 2 1/2 200123 2699501 received
## 629 1 1 400000 3177966 1970-10-21 received
## 630 1 1/2 3000000 5242311 1989-10-12 received
## 631 1 1/2 158463 4716161 received
## 632 1 1 4000000 6329114 received
## 633 2 1/2 375000 3181561 received
## 634 1 1 800000 2988048 received
## 635 1 1 181647 2640218 1955-11-05 received
## 636 1 1 9000000 9000000 2019-10-10 received
## 637 2 1/2 10000000 10958504 2009-10-12 received
## 638 1 1/2 8000000 8301051 2016-10-10 received
## 639 3 1/3 10000000 11301989 2007-10-08 received
## 640 1 1 8000000 8365867 2013-10-11 received
## 641 1 1 10000000 11552680 2006-10-12 received
## 642 1 1/3 10000000 10926573 2008-10-08 received
## 643 1 1 2175000 4274764 1987-10-13 received
## 644 1 1/2 164304 3050198 received
## 645 1 1 121841 2510460 received
## 646 2 1/2 159850 4913422 received
## 647 2 1/2 122483 3145967 received
## 648 1 1 123691 2520876 received
## 649 1 1 140703 7130220 received
## 650 1 1 173206 5238085 received
## 651 2 1/2 220678 2704387 received
## 652 1 1 156939 4458494 received
## 653 1 1 450000 3321850 received
## 654 1 1 167612 2686090 received
## 655 1 1 159773 3056881 received
## 656 1 1 8000000 8379888 2014-10-09 received
## 657 1 1 510000 3331882 received
## 658 1 1 400000 3177966 1970-10-26 received
## 659 2 1/2 170332 5413093 received
## 660 1 1/2 880000 2889667 1980-10-14 received
## 661 1 1/2 10000000 11807305 2003-10-06 received
## 662 1 1/4 7500000 9572839 1997-10-15 received
## 663 2 1/2 139800 7084459 received
## 664 2 1/3 9000000 11333109 2000-10-09 received
## 665 2 1/2 139800 7084459 1909-12-10 received
## 666 1 1 140703 7130220 received
## 667 1 1/3 7200000 9278351 1995-10-11 received
## 668 1 1 550000 3263449 1974-10-15 received
## 669 2 1/2 158463 4716161 received
## 670 1 1 10000000 10926573 2008-10-13 received
## 671 2 1/2 9000000 9000000 received
## 672 2 1/3 8000000 8384572 2015-10-07 received
## 673 1 1 159773 3056881 received
## 674 2 1/2 140476 6753654 received
## 675 1 1/3 214559 2646698 received
## 676 1 1 155077 4543271 received
## 677 1 1 121524 2503929 received
## 678 1 1 140703 7130220 1910-12-10 received
## 679 1 1/3 10000000 10819388 2010-10-11 received
## 680 1 1/2 10000000 11807305 2003-10-08 received
## 681 1 1/2 7400000 9490424 1996-10-07 received
## 682 1 1 159850 4913422 received
## 683 2 1/2 10000000 11301989 2007-10-09 received
## 684 1 1 9000000 9000000 2019-10-10 received
## 685 2 1/2 8000000 8365867 2013-10-08 received
## 686 2 1/2 225987 2664941 1960-10-20 received
## 687 1 1 725000 2898454 1978-10-17 received
## 688 1 1/2 300000 2784653 received
## 689 1 1 220678 2704387 1959-11-05 received
## 690 3 1/3 164304 3050198 received
## 691 1 1/3 700000 3080986 1977-10-11 received
## 692 1 1 138089 7615202 received
## 693 2 1/2 6700000 9044276 1993-10-11 received
## 694 2 1/4 141358 7795478 received
## 695 1 1 6000000 8673863 1991-10-16 received
## 696 2 1/2 141847 8059489 received
## 697 2 1/2 190214 2681588 1955-11-02 received
## 698 2 1/2 7200000 9278351 1995-10-13 received
## 699 1 1/2 725000 2898454 1978-10-17 received
## 700 1 1 143010 6875481 received
## 701 1 1/2 375000 3181561 received
## 702 1 1/3 320000 2843602 received
## 703 1 1/2 9000000 9176183 2017-10-03 received
## 704 1 1 164304 3050198 1950-09-22 received
## 705 3 1/2 10000000 10545557 received
## 706 1 1 141358 7795478 1903-12-10 received
## 707 2 1/3 8000000 8365867 received
## 708 1 1/4 10000000 12034660 2002-10-08 received
## 709 3 1/3 7000000 9249471 1994-10-11 received
## 710 2 1/3 630000 3404179 1975-10-16 received
## 711 1 1 350000 3052326 1968-10-09 received
## 712 3 1/2 10000000 12034660 2002-10-08 received
## 713 1 1/2 10000000 11762861 2004-10-04 received
## 714 3 1/3 7400000 9490424 1996-10-09 received
## 715 3 1/3 4000000 6329114 1990-10-17 received
## 716 1 1/3 10000000 10819388 2010-10-06 received
## 717 1 1 9000000 9176183 2017-10-09 received
## 718 3 1/3 9000000 9176183 2017-10-04 received
## 719 1 1/2 6700000 9044276 1993-10-11 received
## 720 1 1 155077 4543271 received
## 721 2 1/2 171135 2546652 received
## 722 3 1/3 282000 2782895 received
## 723 1 1 6000000 8673863 received
## 724 3 1/3 10000000 11711430 2005-10-05 received
## 725 1 1 1650000 3782090 1984-10-18 received
## 726 1 1 149223 6217625 1915-11-11 received
## 727 1 1 118165 3211005 received
## 728 1 1 6500000 9184250 1992-10-16 received
## 729 2 1/2 2000000 4098361 received
## 730 2 1/2 1000000 2929688 1981-10-19 received
## 731 1 1 114935 3169164 received
## 732 1 1/3 7600000 9713701 1998-10-13 received
## 733 1 1 282000 2782895 received
## 734 1 1 146900 7062500 1915-10-29 received
## 735 1 1/2 7500000 9572839 1997-10-14 received
## 736 3 1/3 7400000 9490424 1996-10-09 received
## 737 1 1 158463 4716161 1937-11-18 received
## 738 1 1 7200000 9278351 1995-10-10 received
## 739 1 1/3 7400000 9490424 1996-10-09 received
## 740 1 1/2 10000000 11807305 2003-10-08 received
## 741 1 1/3 7600000 9713701 received
## 742 1 1 10000000 10819388 received
## 743 2 1/3 10000000 11711430 2005-10-05 received
## 744 1 1/2 250233 2878447 received
## 745 2 1/3 2500000 4645689 1988-10-19 received
## 746 1 1/2 10000000 11711430 2005-10-10 received
## 747 1 1/2 8000000 8361204 2012-10-10 received
## 748 3 1/3 8000000 8365867 2013-10-14 received
## 749 1 1 138089 7615202 received
## 750 1 1 2175000 4274764 1987-10-21 received
## 751 1 1 7900000 10049186 1999-10-13 received
## 752 1 1 300000 2784653 received
## 753 3 1/3 480000 3345725 received
## 754 1 1/2 6700000 9044276 1993-10-12 received
## 755 1 1/3 350000 3052326 received
## 756 3 1/4 725000 2898454 1978-10-17 received
## 757 2 1/2 10000000 11807305 2003-10-08 received
## 758 2 1/2 480000 3345725 received
## 759 3 1/3 10000000 11301989 2007-10-15 received
## 760 1 1 10000000 11552680 2006-10-04 received
## 761 1 1/4 700000 3080986 received
## 762 1 1 158463 4716161 received
## 763 1 1/2 1000000 2929688 1981-10-09 received
## 764 3 1/3 10000000 10926573 2008-10-08 received
## 765 2 1/2 7400000 9490424 1996-10-07 received
## 766 1 1 149223 6217625 1916-11-09 received
## 767 2 1/4 320000 2843602 received
## 768 1 1 6000000 8673863 1991-10-15 received
## 769 1 1 141847 8059489 received
## 770 3 1/2 700000 3080986 received
## 771 1 1/2 10000000 11711430 2005-10-04 received
## 772 1 1 139800 7084459 received
## 773 2 1/2 250233 2878447 received
## 774 1 1 6500000 9184250 1992-10-12 received
## 775 1 1 138796 7033581 received
## 776 1 1/2 6700000 9044276 1993-10-13 received
## 777 2 1/4 10000000 12295082 2001-10-10 received
## 778 1 1 225987 2664941 1960-10-26 received
## 779 3 1/3 375000 3181561 received
## 780 1 1 220678 2704387 received
## 781 1 1 375000 3181561 received
## 782 2 1/2 681000 3342605 1976-10-18 received
## 783 2 1/2 138536 7421571 received
## 784 2 1/4 8000000 8384572 received
## 785 1 1 681000 3342605 received
## 786 1 1/2 10000000 10545557 2011-10-04 received
## 787 1 1 7200000 9278351 received
## 788 1 1/2 550000 3263449 1974-10-09 received
## 789 1 1 139800 7084459 received
## 790 1 1 171135 2546652 received
## 791 1 1/2 8000000 8361204 2012-10-09 received
## 792 1 1/2 220678 2704387 received
## 793 1 1/3 800000 2988048 1979-10-15 received
## 794 2 1/3 7000000 9249471 1994-10-14 received
## 795 2 1/2 8000000 8361204 received
## 796 1 1 10000000 11807305 2003-10-10 received
## 797 1 1/2 300000 2784653 received
## 798 3 1/3 8000000 8379888 2014-10-07 received
## 799 1 1/2 3000000 5242311 1989-10-12 received
## 800 1 1 156939 4458494 received
## 801 1 1 450000 3321850 received
## 802 2 1/2 1650000 3782090 1984-10-17 received
## 803 1 1/3 282000 2782895 received
## 804 1 1 172947 5066807 received
## 805 1 1/3 121333 2499993 received
## 806 2 1/2 800000 2988048 1979-10-16 received
## 807 1 1/2 118165 3211005 1926-12-10 received
## 808 1 1/3 400000 3177966 1970-10-15 received
## 809 1 1 172947 5066807 received
## 810 1 1/2 171753 5279293 received
## 811 1 1/2 200123 2699501 received
## 812 1 1/2 225987 2664941 1960-10-20 received
## 813 2 1/2 172760 4907955 received
## 814 3 1/4 9000000 9000000 2018-10-03 received
## 815 2 1/3 7400000 9490424 1996-10-09 received
## 816 1 1/2 159850 4913422 received
## 817 3 1/3 121333 2499993 received
## 818 2 1/3 8000000 8301051 2016-10-05 received
## 819 1 1/3 2500000 4645689 received
## 820 1 1/2 8000000 8361204 received
## 821 1 1/3 265000 2839286 received
## 822 2 1/3 10000000 11301989 2007-10-08 received
## 823 2 1/3 700000 3080986 1977-10-11 received
## 824 1 1 170332 5413093 1934-12-10 received
## 825 3 1/3 10000000 12295082 2001-10-08 received
## 826 2 1/3 9000000 9000000 2019-10-07 received
## 827 2 1/2 10000000 11807305 2003-10-06 received
## 828 1 1 146115 2914528 received
## 829 1 1 140859 7767960 received
## 830 2 1/4 480000 3345725 received
## 831 1 1 7500000 9572839 1997-10-06 received
## 832 1 1/2 2000000 4098361 received
## 833 2 1/3 8000000 8379888 2014-10-08 received
## 834 1 1/3 7500000 9572839 1997-10-15 received
## 835 3 1/3 800000 2988048 1979-10-15 received
## 836 1 1/2 1500000 3715324 1983-10-19 received
## 837 1 1 150782 8567159 received
## 838 1 1/3 1150000 3102518 1982-10-11 received
## 839 1 1 2175000 4274764 received
## 840 1 1 141358 7795478 received
## 841 1 1 8000000 8384572 2015-10-08 received
## 842 1 1/3 10000000 12034660 2002-10-07 received
## 843 1 1 159773 3056881 received
## 844 2 1/3 164304 3050198 received
## 845 1 1/2 8000000 8384572 2015-10-06 received
## 846 2 1/2 9000000 9000000 received
## 847 3 1/3 10000000 10545557 2011-10-07 received
## 848 1 1 3000000 5242311 1989-10-05 received
## 849 1 1 116960 3273134 received
## 850 1 1 139800 7084459 received
## 851 1 1 141847 8059489 received
## 852 3 1/4 10000000 11711430 2005-10-04 received
## 853 1 1 138536 7421571 1906-12-10 received
## 854 1 1 146900 7062500 1915-11-11 received
## 855 1 1/2 800000 2988048 1979-10-16 received
## 856 2 1/3 10000000 10958504 2009-10-07 received
## 857 2 1/2 10000000 11711430 2005-10-10 received
## 858 3 1/3 8000000 8365867 received
## 859 1 1 170332 5413093 received
## 860 2 1/3 181647 2640218 received
## 861 1 1/2 10000000 10545557 2011-10-10 received
## 862 1 1 172760 4907955 received
## 863 2 1/2 3000000 5242311 1989-10-12 received
## 864 2 1/3 10000000 12295082 2001-10-08 received
## 865 2 1/2 630000 3404179 1975-10-14 received
## 866 1 1/2 140695 7327865 1911-12-10 received
## 867 1 1/3 8000000 8384572 2015-10-07 received
## 868 1 1 10000000 10545557 2011-10-06 received
## 869 1 1 6700000 9044276 received
## 870 3 1/4 1000000 2929688 1981-10-09 received
## 871 3 1/4 10000000 10926573 2008-10-07 received
## 872 1 1 3000000 5242311 1989-10-11 received
## 873 2 1/2 208629 2697789 received
## 874 3 1/2 8000000 8384572 received
## 875 2 1/3 400000 3177966 1970-10-15 received
## 876 1 1/2 10000000 12295082 2001-10-12 received
## 877 1 1 282000 2782895 1965-10-26 received
## 878 1 1 2500000 4645689 1988-09-29 received
## 879 1 1 10000000 12295082 2001-10-11 received
## 880 2 1/2 880000 2889667 1980-10-12 received
## 881 1 1/3 10000000 10958504 2009-10-07 received
## 882 1 1 131793 4845331 1916-11-09 received
## 883 2 1/2 10000000 12034660 2002-10-09 received
## 884 1 1 700000 3080986 received
## 885 1 1/2 159850 4913422 received
## 886 1 1/2 140476 6753654 received
## 887 1 1 190214 2681588 1955-11-02 received
## 888 2 1/3 10000000 11807305 2003-10-07 received
## 889 2 1/2 630000 3404179 1975-10-17 received
## 890 2 1/4 880000 2889667 1980-10-14 received
## 891 3 1/3 200123 2699501 received
## 892 1 1/2 156290 2930438 received
## 893 1 1/2 7600000 9713701 1998-10-13 received
## 894 2 1/2 181647 2640218 received
## 895 1 1 134100 2394643 received
## 896 1 1 10000000 11762861 2004-10-08 received
## 897 1 1 510000 3331882 1973-10-18 received
## 898 3 1/4 121524 2503929 received
## 899 1 1/3 725000 2898454 received
## 900 2 1/3 200123 2699501 received
## 901 1 1 171753 5279293 received
## 902 1 1 150782 8567159 received
## 903 1 1 139800 7084459 received
## 904 1 1 140695 7327865 received
## 905 1 1 225987 2664941 1960-11-03 received
## 906 2 1/4 10000000 10958504 2009-10-06 received
## 907 1 1 116719 3218355 received
## 908 2 1/2 1500000 3715324 1983-10-19 received
## 909 1 1/3 200123 2699501 received
## 910 1 1/2 149223 6217625 1915-11-12 received
## 911 1 1 114935 3169164 received
## 912 1 1/4 8000000 8384572 received
## 913 1 1/2 9000000 9000000 received
## 914 3 1/3 7500000 9572839 1997-10-15 received
## 915 3 1/3 8000000 8379888 2014-10-08 received
## 916 1 1 156290 2930438 received
## 917 3 1/3 4000000 6329114 1990-10-16 received
## 918 1 1 156290 2930438 received
## 919 1 1/3 9000000 9000000 2019-10-07 received
## 920 1 1 1500000 3715324 received
## 921 3 1/4 480000 3345725 received
## 922 1 1/4 10000000 12295082 2001-10-10 received
## 923 1 1 681000 3342605 1976-10-18 received
## 924 3 1/3 162608 5167627 received
## 925 2 1/2 7400000 9490424 1996-10-08 received
## 926 1 1/2 190214 2681588 1955-11-02 received
## 927 1 1 450000 3321850 1971-10-21 received
## 928 1 1 175293 2567769 received
## 929 1 1 7400000 9490424 received
## 930 1 1 116719 3218355 received
## 931 1 1 2000000 4098361 received
## 932 2 1/3 10000000 12295082 2001-10-09 received
## 933 3 1/4 3000000 5242311 1989-10-12 received
## 934 1 1 121333 2499993 received
## 935 1 1 133127 2377268 1920-12-10 received
## 936 1 1/3 7000000 9249471 1994-10-14 received
## 937 1 1 350000 3052326 received
## 938 3 1/3 7000000 9249471 1994-10-14 received
## 939 1 1/2 10000000 10926573 2008-10-07 received
## 940 1 1 8000000 8301051 received
## 941 2 1/3 2000000 4098361 1986-10-15 received
## 942 1 1/3 10000000 11711430 2005-10-05 received
## 943 1 1/4 9000000 11333109 2000-10-10 received
## 944 3 1/4 880000 2889667 1980-10-14 received
## 945 1 1 121841 2510460 1945-11-12 received
## 946 1 1/3 480000 3345725 received
## 947 1 1 181647 2640218 received
## 948 1 1 140695 7327865 received
## 949 1 1 1000000 2929688 1981-10-14 received
## 950 1 1/2 265000 2839286 1963-10-10 received
## motivation
## 1 for their analyses of markets with asymmetric information
## 2 for the discovery of the connection between collective motion and particle motion in atomic nuclei and the development of the theory of the structure of the atomic nucleus based on this connection
## 3 for the discovery of ubiquitin-mediated protein degradation
## 4 for his development of crystallographic electron microscopy and his structural elucidation of biologically important nucleic acid-protein complexes
## 5 for their contributions to the theory of the unified weak and electromagnetic interaction between elementary particles, including, inter alia, the prediction of the weak neutral current
## 6 for their experimental approach to alleviating global poverty
## 7 for his efforts to achieve peace and international cooperation, and in particular for his decisive initiative to resolve the border conflict with neighbouring Eritrea
## 8 for studies of the structure and function of the ribosome
## 9 for the discovery of the accelerating expansion of the Universe through observations of distant supernovae
## 10 for his work on sex hormones
## 11 in recognition of his services in the advancement of organic chemistry and the chemical industry, through his work on organic dyes and hydroaromatic compounds
## 12 for the services rendered through his research into the constitution of the sterols and their connection with the vitamins
## 13 for being a source of inspiration to repressed people, especially in Latin America
## 14 for his studies of the transition states of chemical reactions using femtosecond spectroscopy
## 15 for palladium-catalyzed cross couplings in organic synthesis
## 16 for the development of lithium-ion batteries
## 17 for their efforts to build up and disseminate greater knowledge about man-made climate change, and to lay the foundations for the measures that are needed to counteract such change
## 18 for the discovery and development of conductive polymers
## 19 for their discoveries concerning the ionic mechanisms involved in excitation and inhibition in the peripheral and central portions of the nerve cell membrane
## 20 for the discovery and development of conductive polymers
## 21 for his optical precision instruments and the spectroscopic and metrological investigations carried out with their aid
## 22 for his important literary production, which with clear-sighted earnestness illuminates the problems of the human conscience in our times
## 23 for their discoveries concerning the structural and functional organization of the cell
## 24 for his services to Theoretical Physics, and especially for his discovery of the law of the photoelectric effect
## 25 for the discovery of Giant Magnetoresistance
## 26 for his eminently practical administration of the Inter-Parliamentary Union
## 27 for his non-violent struggle against apartheid
## 28 for his altruism, reverence for life, and tireless humanitarian work which has helped making the idea of brotherhood between men and nations a living one
## 29 for his discoveries in connection with the biological combustion processes, with special reference to vitamin C and the catalysis of fumaric acid
## 30 in recognition of the contributions to our knowledge of cell chemistry made through his work on proteins, including the nucleic substances
## 31 for fundamental work in the field of quantum electronics, which has led to the construction of oscillators and amplifiers based on the maser-laser principle
## 32 for the ethical force with which he has pursued the indispensable traditions of Russian literature
## 33 for pioneering contributions to the theory of superconductors and superfluids
## 34 in recognition of his work on vascular suture and the transplantation of blood vessels and organs
## 35 for their work for disarmament and nuclear and weapon-free zones
## 36 for their discoveries concerning the replication mechanism and the genetic structure of viruses
## 37 for his effort to expose and fight what he considers to be the main cause of war, namely, the anarchy in international relations
## 38 for their discovery of G-proteins and the role of these proteins in signal transduction in cells
## 39 for the discovery and development of optical methods for studying Hertzian resonances in atoms
## 40 in recognition of his work on the linkage of atoms in molecules by which he has thrown new light on earlier investigations and opened up new fields of research especially in inorganic chemistry
## 41 master of the contemporary short story
## 42 for the development of computer assisted tomography
## 43 for his work on the dioptrics of the eye
## 44 in recognition of his work on the role played by protozoa in causing diseases
## 45 for their work for disarmament and nuclear and weapon-free zones
## 46 for the theory of stable allocations and the practice of market design
## 47 for his contributions to welfare economics
## 48 for their pioneering work in the international peace movement and compassionate effort to relieve human suffering, thereby promoting the fraternity between nations
## 49 for worldwide respect for human rights
## 50 in recognition of his brilliant literary achievements, characterized as they are by a nobility of style, a profound human sympathy, grace, and a true Gallic temperament
## 51 for their discoveries concerning heart catheterization and pathological changes in the circulatory system
## 52 for groundbreaking experiments regarding the two-dimensional material graphene
## 53 for his comprehensive and artistically significant writings, in which human problems and conditions have been presented with a fearless love of truth and keen psychological insight
## 54 for their discoveries concerning genetic control of enzyme and virus synthesis
## 55 for his struggle for human rights in the Soviet Union, for disarmament and cooperation between all nations
## 56 for their discoveries concerning the ionic mechanisms involved in excitation and inhibition in the peripheral and central portions of the nerve cell membrane
## 57 for their discoveries concerning the peptide hormone production of the brain
## 58 for their discovery of RNA interference - gene silencing by double-stranded RNA
## 59 for his analysis of consumption, poverty, and welfare
## 60 for pioneering contributions to the theory of superconductors and superfluids
## 61 for their pioneering research in radio astrophysics: Ryle for his observations and inventions, in particular of the aperture synthesis technique, and Hewish for his decisive role in the discovery of pulsars
## 62 for jointly having negotiated peace between Egypt and Israel in 1978
## 63 for their invention of partition chromatography
## 64 for his discovery relating to the production of heat in the muscle
## 65 for the development of multiscale models for complex chemical systems
## 66 for their crucial role in bringing about the Locarno Treaty
## 67 for his research on electrophoresis and adsorption analysis, especially for his discoveries concerning the complex nature of the serum proteins
## 68 for their discovery of cosmic microwave background radiation
## 69 for the optical tweezers and their application to biological systems
## 70 for the discovery of neutrino oscillations, which shows that neutrinos have mass
## 71 for his discovery of the effect named after him
## 72 for their investigations on the fermentation of sugar and fermentative enzymes
## 73 for his untiring struggle and his courageous efforts as Chairman of the League of Nations Disarmament Conference 1931-34
## 74 for their discovery of the mechanisms in the biological synthesis of ribonucleic acid and deoxyribonucleic acid
## 75 for their contribution to the development of laser spectroscopy
## 76 for his research and inventions in agricultural and nutrition chemistry, especially for his fodder preservation method
## 77 for their discoveries concerning signal transduction in the nervous system
## 78 for his discovery of the capillary motor regulating mechanism
## 79 for their prominent position in the international movement for peace and arbitration
## 80 for her non-violent struggle for democracy and human rights
## 81 for the discovery of ubiquitin-mediated protein degradation
## 82 for mechanistic studies of DNA repair
## 83 for his extraordinary efforts to strengthen international diplomacy and cooperation between peoples
## 84 for her discovery of mobile genetic elements
## 85 for decisive contributions to the LIGO detector and the observation of gravitational waves
## 86 for their discovery of the bacterium <i>Helicobacter pylori</i> and its role in gastritis and peptic ulcer disease
## 87 for his work on chirally catalysed oxidation reactions
## 88 for their discoveries concerning new mechanisms for the origin and dissemination of infectious diseases
## 89 for their discoveries concerning genetically determined structures on the cell surface that regulate immunological reactions
## 90 for the discovery of the connection between collective motion and particle motion in atomic nuclei and the development of the theory of the structure of the atomic nucleus based on this connection
## 91 for their contributions to contract theory
## 92 for their discoveries concerning prostaglandins and related biologically active substances
## 93 for the design and synthesis of molecular machines
## 94 for his discovery of the part played by the hormone of the anterior pituitary lobe in the metabolism of sugar
## 95 for their discoveries concerning the function of single ion channels in cells
## 96 for her audacity to oppose the horrors of war
## 97 for their pathbreaking contribution to the theory of international trade and international capital movements
## 98 for the development of neutron spectroscopy
## 99 in recognition of his varied and significant writings in which he champions humanitarian ideals and freedom of thought
## 100 for the courageous efforts in founding a movement to put an end to the violent conflict in Northern Ireland
## 101 as a tribute to his noble, magnificent and versatile poetry, which has always been distinguished by both the freshness of its inspiration and the rare purity of its spirit
## 102 for having created new poetic expressions within the great American song tradition
## 103 for his important achievement both in contemporary lyrical poetry and in the field of the great Russian epic tradition
## 104 for his theoretical predictions of the properties of a supercurrent through a tunnel barrier, in particular those phenomena which are generally known as the Josephson effects
## 105 for studies of G-protein-coupled receptors
## 106 for the discovery of the accelerating expansion of the Universe through observations of distant supernovae
## 107 for their discoveries concerning the activation of innate immunity
## 108 for his development of methodology for chemical synthesis on a solid matrix
## 109 for their pioneering work in the discovery of a heavy elementary particle of a new kind
## 110 for his method of making the paths of electrically charged particles visible by condensation of vapour
## 111 in recognition of their work on the structure of the nervous system
## 112 for a rich and intensive prose, which with restrained compassion forms a challenging vision of man's vulnerability
## 113 in recognition of their contributions to the invention and development of chemical high pressure methods
## 114 for their discovery of the course of the catalytic conversion of glycogen
## 115 for his discovery of the positron
## 116 in special appreciation of his epic, <I>Olympian Spring</I>
## 117 for his burning love for freedom of thought and expression and his valuable contribution to the cause of peace
## 118 for the achievement of Bose-Einstein condensation in dilute gases of alkali atoms, and for early fundamental studies of the properties of the condensates
## 119 for their decisive contributions to the large project, which led to the discovery of the field particles W and Z, communicators of weak interaction
## 120 for their work towards a just and peaceful solution to the conflict in East Timor
## 121 for his role as father of the Argentine Antiwar Pact of 1933, which he also used as a means to mediate peace between Paraguay and Bolivia in 1935
## 122 for the discovery of how chromosomes are protected by telomeres and the enzyme telomerase
## 123 for his development of the photographic method of studying nuclear processes and his discoveries regarding mesons made with this method
## 124 for theories concerning the specificity in development and control of the immune system and the discovery of the principle for production of monoclonal antibodies
## 125 for his discoveries concerning hormonal treatment of prostatic cancer
## 126 in recognition of the service he has rendered to precision measurements in Physics by his discovery of anomalies in nickel steel alloys
## 127 for his crucial role in bringing about the Dawes Plan
## 128 for his discovery of the characteristic Röntgen radiation of the elements
## 129 for fundamental work in the field of quantum electronics, which has led to the construction of oscillators and amplifiers based on the maser-laser principle
## 130 for their development and use of molecules with structure-specific interactions of high selectivity
## 131 for groundbreaking achievements concerning the transmission of light in fibers for optical communication
## 132 for his work on typhus
## 133 in recognition of his work on anaphylaxis
## 134 for their penetrating investigation of the so-called parity laws which has led to important discoveries regarding the elementary particles
## 135 for his discovery of the antineuritic vitamin
## 136 for his work on ribonuclease, especially concerning the connection between the amino acid sequence and the biologically active conformation
## 137 for their discoveries concerning the structural and functional organization of the cell
## 138 for their lifelong contributions to the cause of peace and organized internationalism
## 139 for their discoveries concerning the genetic control of early embryonic development
## 140 for their analysis of markets with search frictions
## 141 for their empirical research on cause and effect in the macroeconomy
## 142 for development of methods to cool and trap atoms with laser light
## 143 who in his novel combines the poet's and the painter's creativeness with a deepened awareness of time in the depiction of the human condition
## 144 for the development of the neutron diffraction technique
## 145 for their experimental discovery of the diffraction of electrons by crystals
## 146 for methods of analyzing economic time series with common trends (cointegration)
## 147 for his indefatigable work for international understanding and his pivotal role in establishing the United Nations
## 148 for the discovery of the role played by the sinus and aortic mechanisms in the regulation of respiration
## 149 for their discovery of RNA interference - gene silencing by double-stranded RNA
## 150 who with uncompromising clear-sightedness voices man's exposed condition in a world of severe conflicts
## 151 for their discoveries concerning new mechanisms for the origin and dissemination of infectious diseases
## 152 for developing the UN into an effective and constructive international organization, capable of giving life to the principles and aims expressed in the UN Charter
## 153 for their analysis of markets with search frictions
## 154 for the discovery of quasicrystals
## 155 for his discoveries relating to synthetic compounds that inhibit the action of certain body substances, and especially their action on the vascular system and the skeletal muscles
## 156 for their discovery of a new form of quantum fluid with fractionally charged excitations
## 157 for having integrated insights from psychological research into economic science, especially concerning human judgment and decision-making under uncertainty
## 158 for his development of theory and methods for analyzing discrete choice
## 159 for the discovery of restriction enzymes and their application to problems of molecular genetics
## 160 who emulates the jesters of the Middle Ages in scourging authority and upholding the dignity of the downtrodden
## 161 for their discoveries concerning the interaction between tumour viruses and the genetic material of the cell
## 162 for their discoveries concerning information processing in the visual system
## 163 for the discovery of asymptotic freedom in the theory of the strong interaction
## 164 for theoretical discoveries of topological phase transitions and topological phases of matter
## 165 for ground-breaking experimental methods that enable measuring and manipulation of individual quantum systems
## 166 for their discovery of superfluidity in helium-3
## 167 for their efforts to find a peaceful solution to the conflict in Northern Ireland
## 168 for their efforts to end the use of sexual violence as a weapon of war and armed conflict
## 169 for his invention and development of the holographic method
## 170 for their contributions to the development of the concept of conformation and its application in chemistry
## 171 for a poetic oeuvre of great luminosity, sustained by a historical vision, the outcome of a multicultural commitment
## 172 for his role as a unifying leader figure in the non-violent campaign to resolve the problem of apartheid in South Africa
## 173 for their discoveries concerning heart catheterization and pathological changes in the circulatory system
## 174 for the discovery of an exoplanet orbiting a solar-type star
## 175 for the invention of the bubble chamber
## 176 for their development and use of molecules with structure-specific interactions of high selectivity
## 177 for their method of generating high-intensity, ultra-short optical pulses
## 178 that epicist of the female experience, who with scepticism, fire and visionary power has subjected a divided civilisation to scrutiny
## 179 for her determinations by X-ray techniques of the structures of important biochemical substances
## 180 for their discovery of superfluidity in helium-3
## 181 for having renewed research in economic history by applying economic theory and quantitative methods in order to explain economic and institutional change
## 182 for their contributions concerning the dynamics of chemical elementary processes
## 183 for their discoveries concerning organ and cell transplantation in the treatment of human disease
## 184 for their development of new methods for nuclear magnetic precision measurements and discoveries in connection therewith
## 185 for his discoveries concerning the mechanisms of the action of hormones
## 186 for their discoveries regarding the functions of neurons
## 187 for their discoveries concerning reversible protein phosphorylation as a biological regulatory mechanism
## 188 for his analysis of intertemporal tradeoffs in macroeconomic policy
## 189 for his biochemical researches and his discovery of cell-free fermentation
## 190 for their discoveries of cells that constitute a positioning system in the brain
## 191 for his discovery of the chemical nature of vitamin K
## 192 for their discoveries concerning the genetic control of early embryonic development
## 193 for their discoveries relating to the hormones of the adrenal cortex, their structure and biological effects
## 194 for their contributions to dynamic macroeconomics: the time consistency of economic policy and the driving forces behind business cycles
## 195 for their discovery that genes act by regulating definite chemical events
## 196 for his investigations of the physics of the upper atmosphere especially for the discovery of the so-called Appleton layer
## 197 for their discoveries concerning reversible protein phosphorylation as a biological regulatory mechanism
## 198 for their discoveries in the chemistry of the transuranium elements
## 199 for his discovery of the therapeutic value of leucotomy in certain psychoses
## 200 for palladium-catalyzed cross couplings in organic synthesis
## 201 for his contribution to stabilize conditions in the Pacific rim area and for signing the Nuclear Non-Proliferation Treaty
## 202 for her musical flow of voices and counter-voices in novels and plays that with extraordinary linguistic zeal reveal the absurdity of society's clichés and their subjugating power
## 203 for writings marked by a broad outlook, a wealth of ideas and artistic power
## 204 for his development of the theory and methodology of organic synthesis
## 205 for his untiring and skilful directorship of the Bern Peace Bureau
## 206 for being a messenger to mankind: his message is one of peace, atonement and dignity
## 207 for bringing about better understanding between the countries of North and South America and initiating important arbitration agreements between the United States and other countries
## 208 for her analysis of economic governance, especially the commons
## 209 for the discovery of how chromosomes are protected by telomeres and the enzyme telomerase
## 210 for their non-violent struggle for the safety of women and for women\u0092s rights to full participation in peace-building work
## 211 in recognition of the extraordinary services he has rendered by his work on sugar and purine syntheses
## 212 for his work on serum therapy, especially its application against diphtheria, by which he has opened a new road in the domain of medical science and thereby placed in the hands of the physician a victorious weapon against illness and deaths
## 213 for their discovery of the antiproton
## 214 for her lifelong work for the cause of peace
## 215 for his demonstrations of the existence of new radioactive elements produced by neutron irradiation, and for his related discovery of nuclear reactions brought about by slow neutrons
## 216 for the development of super-resolved fluorescence microscopy
## 217 for the achievement of Bose-Einstein condensation in dilute gases of alkali atoms, and for early fundamental studies of the properties of the condensates
## 218 for their discoveries concerning the genetic control of early embryonic development
## 219 for their discoveries concerning signal transduction in the nervous system
## 220 for having laid the foundations of mechanism design theory
## 221 The poetry of Erik Axel Karlfeldt
## 222 for his mastery of the art of narrative, most recently demonstrated in <I>The Old Man and the Sea,</I> and for the influence that he has exerted on contemporary style
## 223 for the invention and development of the cyclotron and for results obtained with it, especially with regard to artificial radioactive elements
## 224 for his investigations into the disintegration of the elements, and the chemistry of radioactive substances
## 225 for their pioneer work on the transmutation of atomic nuclei by artificially accelerated atomic particles
## 226 for his work in the press and in peace meetings, both public and private, for an understanding between France and Italy
## 227 for the discovery of penicillin and its curative effect in various infectious diseases
## 228 for their pioneering work, performed independently, on the chemistry of the organometallic, so called sandwich compounds
## 229 for his fundamental work in electron optics, and for the design of the first electron microscope
## 230 for their discoveries concerning the function of single ion channels in cells
## 231 for the discovery of new productive forms of atomic theory
## 232 for their experimental approach to alleviating global poverty
## 233 for their empirical analysis of asset prices
## 234 for the power, honesty and deep-felt emotions of his dramatic works, which embody an original concept of tragedy
## 235 for his contributions to the theory of the atomic nucleus and the elementary particles, particularly through the discovery and application of fundamental symmetry principles
## 236 for his distinctive poetry which, with great artistic sensitivity, has interpreted human values under the sign of an outlook on life with no illusions
## 237 for over six decades contributed to the advancement of peace and reconciliation, democracy and human rights in Europe
## 238 for a narrative art, far-seeing in lands and ages, in the service of freedom
## 239 for theoretical discoveries of topological phase transitions and topological phases of matter
## 240 for their work in atmospheric chemistry, particularly concerning the formation and decomposition of ozone
## 241 for their work for the peaceful termination of the apartheid regime, and for laying the foundations for a new democratic South Africa
## 242 for their development of new methods for nuclear magnetic precision measurements and discoveries in connection therewith
## 243 for their discoveries concerning the mechanism and regulation of the cholesterol and fatty acid metabolism
## 244 in recognition of their contributions to the development of wireless telegraphy
## 245 for their contribution to the emergence in France and Germany of a public opinion which favours peaceful international cooperation
## 246 for their discoveries concerning nitric oxide as a signalling molecule in the cardiovascular system
## 247 for their contributions to dynamic macroeconomics: the time consistency of economic policy and the driving forces behind business cycles
## 248 for the directed evolution of enzymes
## 249 for their discoveries concerning the molecular structure of nucleic acids and its significance for information transfer in living material
## 250 for his discovery, by means of his mass spectrograph, of isotopes, in a large number of non-radioactive elements, and for his enunciation of the whole-number rule
## 251 for his pioneering analyses of saving and of financial markets
## 252 for the theoretical discovery of a mechanism that contributes to our understanding of the origin of mass of subatomic particles, and which recently was confirmed through the discovery of the predicted fundamental particle, by the ATLAS and CMS experiments at CERN's Large Hadron Collider
## 253 for their discoveries concerning genetic control of enzyme and virus synthesis
## 254 for the deep spiritual insight and the artistic intensity with which he has in his novels penetrated the drama of human life
## 255 for their discovery of human immunodeficiency virus
## 256 for his crucial role in bringing about the Briand-Kellogg Pact
## 257 for the discovery of asymptotic freedom in the theory of the strong interaction
## 258 for his deep understanding of his country's peasantry and the exquisite art with which he has portrayed their way of life and their relationship with Nature
## 259 in recognition of their synthesis of new radioactive elements
## 260 in recognition of the fresh originality and true inspiration of his poetic production, which faithfully reflects the natural scenery and native spirit of his people, and, in addition, his significant work as a Provençal philologist
## 261 for his lifelong work for international peace conferences, diplomacy and arbitration
## 262 for their discovery of the ability of poliomyelitis viruses to grow in cultures of various types of tissue
## 263 for the discovery of insulin
## 264 for the detection of the neutrino
## 265 for his work on the structure of proteins, especially that of insulin
## 266 for his contributions to our knowledge of the chemistry of radioactive substances, and his investigations into the origin and nature of isotopes
## 267 for their long time work for the cause of peace as politicians, peace society leaders, orators and authors
## 268 for his leading role in the repatriation of prisoners of war, in international relief work and as the League of Nations' High Commissioner for refugees
## 269 in recognition of their contributions to the invention and development of chemical high pressure methods
## 270 for their pioneering work in the theory of money and economic fluctuations and for their penetrating analysis of the interdependence of economic, social and institutional phenomena
## 271 for their pioneering work in the international peace movement and compassionate effort to relieve human suffering, thereby promoting the fraternity between nations
## 272 for his demonstration of the phase contrast method, especially for his invention of the phase contrast microscope
## 273 for the synthesis of ammonia from its elements
## 274 for his discovery of co-enzyme A and its importance for intermediary metabolism
## 275 for his invention of the method of micro-analysis of organic substances
## 276 for his novels and short stories, in which the fantastic and the realistic are combined in a richly composed world of imagination, reflecting a continent's life and conflicts
## 277 for his method of reproducing colours photographically based on the phenomenon of interference
## 278 for her lyric poetry which, inspired by powerful emotions, has made her name a symbol of the idealistic aspirations of the entire Latin American world
## 279 for an æuvre of universal validity, bitter insights and linguistic ingenuity, which has opened new paths for the Chinese novel and drama
## 280 for having extended the domain of microeconomic analysis to a wide range of human behaviour and interaction, including nonmarket behaviour
## 281 for their pioneering work, performed independently, on the chemistry of the organometallic, so called sandwich compounds
## 282 for his discoveries of the physical mechanism of stimulation within the cochlea
## 283 for their development of the use of boron- and phosphorus-containing compounds, respectively, into important reagents in organic synthesis
## 284 for their analyses of markets with asymmetric information
## 285 for his contribution to carbocation chemistry
## 286 for their discovery that genes act by regulating definite chemical events
## 287 for his work which is marked by both idealism and humanity, its stimulating satire often being infused with a singular poetic beauty
## 288 for proposing and supervising the plan for the economic recovery of Europe
## 289 for their discoveries concerning genetically determined structures on the cell surface that regulate immunological reactions
## 290 for his work on the use of isotopes as tracers in the study of chemical processes
## 291 for their discoveries concerning the structural and functional organization of the cell
## 292 for the invention of an imaging semiconductor circuit - the CCD sensor
## 293 for their discovery of the blackbody form and anisotropy of the cosmic microwave background radiation
## 294 for their discoveries of important principles for drug treatment
## 295 for their discoveries concerning liver therapy in cases of anaemia
## 296 for his seminal studies of industrial structures, functioning of markets and causes and effects of public regulation
## 297 for the phage display of peptides and antibodies
## 298 for their experimental discovery of the diffraction of electrons by crystals
## 299 for their studies of extremely fast chemical reactions, effected by disturbing the equilibrium by means of very short pulses of energy
## 300 for their discoveries concerning liver therapy in cases of anaemia
## 301 for their discoveries concerning the primary physiological and chemical visual processes in the eye
## 302 for his invention and development of particle detectors, in particular the multiwire proportional chamber
## 303 for theories concerning the specificity in development and control of the immune system and the discovery of the principle for production of monoclonal antibodies
## 304 for his efforts to help refugees to leave their camps and return to a life of freedom and dignity
## 305 for their discoveries concerning the chemical structure of antibodies
## 306 for having incorporated new analytical methods into economic theory and for his rigorous reformulation of the theory of general equilibrium
## 307 for their method of generating high-intensity, ultra-short optical pulses
## 308 for elucidating the quantum structure of electroweak interactions in physics
## 309 for their design of the scanning tunneling microscope
## 310 for the discovery of the antibacterial effects of prontosil
## 311 for his studies of chemical processes on solid surfaces
## 312 for his contributions to the knowledge of electronic structure and geometry of molecules, particularly free radicals
## 313 primarily in recognition of his fruitful, varied and outstanding production in the realm of dramatic art
## 314 for their discoveries of important principles for drug treatment
## 315 for their discovery of the course of the catalytic conversion of glycogen
## 316 for his eminent lyrical writing, inspired by a deep feeling for the Hellenic world of culture
## 317 not only in consideration of his deep learning and critical research, but above all as a tribute to the creative energy, freshness of style, and lyrical force which characterize his poetic masterpieces
## 318 for their discoveries in the field of the chemistry and technology of high polymers
## 319 for their discoveries in the chemistry of the transuranium elements
## 320 for the development of computer assisted tomography
## 321 for their efforts to create economic and social development from below
## 322 for her idealistically inspired writings which with plastic clarity picture the life on her native island and with depth and sympathy deal with human problems in general
## 323 for their discoveries of how cells sense and adapt to oxygen availability
## 324 in recognition of their contributions to the development of wireless telegraphy
## 325 for their pioneering work in the theory of money and economic fluctuations and for their penetrating analysis of the interdependence of economic, social and institutional phenomena
## 326 for the discovery that proteins have intrinsic signals that govern their transport and localization in the cell
## 327 whose frolicsome black fables portray the forgotten face of history
## 328 for his invention of automatic regulators for use in conjunction with gas accumulators for illuminating lighthouses and buoys
## 329 for their discovery of the laws governing the impact of an electron upon an atom
## 330 for their crucial role in bringing about the Locarno Treaty
## 331 for the discovery of asymptotic freedom in the theory of the strong interaction
## 332 for their interpretation of the genetic code and its function in protein synthesis
## 333 for their discoveries concerning genetic regulation of organ development and programmed cell death'
## 334 for his vivid epic power which has renewed the great narrative art of Iceland
## 335 for the discovery of restriction enzymes and their application to problems of molecular genetics
## 336 for fundamental work and discoveries in magnetohydro-dynamics with fruitful applications in different parts of plasma physics
## 337 for his contributions to the theory of nuclear reactions, especially his discoveries concerning the energy production in stars
## 338 for his researches into the constitution of haemin and chlorophyll and especially for his synthesis of haemin
## 339 for the development of the ion trap technique
## 340 for his discovery of the citric acid cycle
## 341 for his discovery of the organizer effect in embryonic development
## 342 for their investigations on the fermentation of sugar and fermentative enzymes
## 343 for his discovery of human papilloma viruses causing cervical cancer
## 344 for his discovery of heavy hydrogen
## 345 for their discovery of the cellular origin of retroviral oncogenes
## 346 who in his plays uncovers the precipice under everyday prattle and forces entry into oppression's closed rooms
## 347 for their pioneering work in the theory of financial economics
## 348 for writings that catch the dewdrop and reflect the cosmos
## 349 for the determination of the three-dimensional structure of a photosynthetic reaction centre
## 350 for his investigations on the properties of matter at low temperatures which led, inter alia, to the production of liquid helium
## 351 for his writing which through its combination of a broad perspective on his time and a sensitive skill in characterization has contributed to a renewal of German literature
## 352 for their design of the scanning tunneling microscope
## 353 for his investigations of the constitution of the bile acids and related substances
## 354 in recognition of the extraordinary service they rendered by their researches into the influence of magnetism upon radiation phenomena
## 355 in recognition of the extraordinary services he has rendered by his discovery of spontaneous radioactivity
## 356 in recognition of his rich and vitalizing ideas and the brilliant skill with which they have been presented
## 357 for his unparalleled contribution to the organization of peaceful internationalism
## 358 in recognition of the great services rendered by him in his investigation and isolation of the element fluorine, and for the adoption in the service of science of the electric furnace called after him
## 359 for his discovery of vitamin K
## 360 for his authentic descriptions of present-day life in Denmark
## 361 for his humanitarian efforts to help wounded soldiers and create international understanding
## 362 for jointly having negotiated a cease fire in Vietnam in 1973
## 363 for his work on the mechanisms of electron transfer reactions, especially in metal complexes
## 364 for their pioneering investigations concerning deep inelastic scattering of electrons on protons and bound neutrons, which have been of essential importance for the development of the quark model in particle physics
## 365 because of his outstanding merits as an epic writer
## 366 for their outstanding achievements in the development of direct methods for the determination of crystal structures
## 367 for their development of the use of boron- and phosphorus-containing compounds, respectively, into important reagents in organic synthesis
## 368 for developing semiconductor heterostructures used in high-speed- and opto-electronics
## 369 for their discoveries relating to the highly differentiated functions of single nerve fibres
## 370 for his pioneering research into the decision-making process within economic organizations
## 371 for his inspired writings which, while growing in boldness and penetration, exemplify the classical humanitarian ideals and high qualities of style
## 372 for the discovery of the production of mutations by means of X-ray irradiation
## 373 for his discoveries in the field of macromolecular chemistry
## 374 who, with the concentration of poetry and the frankness of prose, depicts the landscape of the dispossessed
## 375 for the discovery and development of conductive polymers
## 376 for his prediction of the existence of mesons on the basis of theoretical work on nuclear forces
## 377 for the invention of efficient blue light-emitting diodes which has enabled bright and energy-saving white light sources
## 378 for their lifelong contributions to the cause of peace and organized internationalism
## 379 for their discovery of a new form of quantum fluid with fractionally charged excitations
## 380 for their discoveries concerning the interaction between tumour viruses and the genetic material of the cell
## 381 for his discoveries concerning the nature and mode of action of oxidation enzymes
## 382 for the discovery and the interpretation of the Cherenkov effect
## 383 for the discovery and the interpretation of the Cherenkov effect
## 384 in recognition of their work on immunity
## 385 for his contributions to non-equilibrium thermodynamics, particularly the theory of dissipative structures
## 386 for writing that upholds the fragile experience of the individual against the barbaric arbitrariness of history
## 387 for its striving in public law to develop peaceful ties between nations and to make the laws of war more humane
## 388 for their efforts to build up and disseminate greater knowledge about man-made climate change, and to lay the foundations for the measures that are needed to counteract such change
## 389 for their efforts to prevent nuclear energy from being used for military purposes and to ensure that nuclear energy for peaceful purposes is used in the safest possible way
## 390 for its work to draw attention to the catastrophic humanitarian consequences of any use of nuclear weapons and for its ground-breaking efforts to achieve a treaty-based prohibition of such weapons
## 391 for their efforts to ban and remove anti-personnel landmines
## 392 for the efforts to take care of wounded soldiers and prisoners of war and their families
## 393 for creating international legislation insuring certain norms for working conditions in every country
## 394 for spreading authoritative information and by creating awareness of the catastrophic consequences of nuclear war
## 395 in recognition of their synthesis of new radioactive elements
## 396 for his discoveries and investigations in surface chemistry
## 397 for the discovery of ubiquitin-mediated protein degradation
## 398 for his impassioned narrative art which, with roots in a Polish-Jewish cultural tradition, brings universal human conditions to life
## 399 for the invention of efficient blue light-emitting diodes which has enabled bright and energy-saving white light sources
## 400 for his resonance method for recording the magnetic properties of atomic nuclei
## 401 for the strict artistry with which he has carried on the classical Russian traditions in prose writing
## 402 in recognition of his work on the physiology of digestion, through which knowledge on vital aspects of the subject has been transformed and enlarged
## 403 for their experimental discoveries regarding tunneling phenomena in semiconductors and superconductors, respectively
## 404 for the epic force with which he has traced themes and depicted human destinies drawn from the history of his country
## 405 for their important break-through in the discovery of superconductivity in ceramic materials
## 406 for their discoveries concerning nuclear shell structure
## 407 who in innumerable guises portrays the surprising involvement of the outsider
## 408 for their discovery of the cellular origin of retroviral oncogenes
## 409 for theoretical discoveries of topological phase transitions and topological phases of matter
## 410 for their discovery of the bacterium <i>Helicobacter pylori</i> and its role in gastritis and peptic ulcer disease
## 411 in recognition of the great merits of his theoretical and experimental investigations on the conduction of electricity by gases
## 412 for the happy manner in which he has continued the illustrious traditions of the Spanish drama
## 413 for his part in the invention of the integrated circuit
## 414 for the neutrino beam method and the demonstration of the doublet structure of the leptons through the discovery of the muon neutrino
## 415 for the discovery of how chromosomes are protected by telomeres and the enzyme telomerase
## 416 in recognition of the extraordinary services he has rendered by the discovery of the laws of chemical dynamics and osmotic pressure in solutions
## 417 for developing cryo-electron microscopy for the high-resolution structure determination of biomolecules in solution
## 418 for their discoveries concerning genetic control of enzyme and virus synthesis
## 419 for their fundamental contributions to the economic theory of incentives under asymmetric information
## 420 for his discovery that enzymes can be crystallized
## 421 for the discovery of the neutron
## 422 for the discovery of violations of fundamental symmetry principles in the decay of neutral K-mesons
## 423 for their pathbreaking contribution to the theory of international trade and international capital movements
## 424 for their discoveries of machinery regulating vesicle traffic, a major transport system in our cells
## 425 for their discovery of the laws governing the impact of an electron upon an atom
## 426 for his development of theory and methods for analyzing selective samples
## 427 for his development of the contractual and constitutional bases for the theory of economic and political decision-making
## 428 for their discovery of cancer therapy by inhibition of negative immune regulation
## 429 for theoretical discoveries in physical cosmology
## 430 for the discovery of the connection between collective motion and particle motion in atomic nuclei and the development of the theory of the structure of the atomic nucleus based on this connection
## 431 for his analysis of financial markets and their relations to expenditure decisions, employment, production and prices
## 432 for their discoveries concerning the molecular structure of nucleic acids and its significance for information transfer in living material
## 433 for having developed and applied dynamic models for the analysis of economic processes
## 434 for their assiduous effort to revive the ideal of peace and to rekindle the spirit of peace in their own nation and in the whole of mankind
## 435 for his discovery and development of the polarographic methods of analysis
## 436 for his poetry which endowed with freshness, sensuality and rich inventiveness provides a liberating image of the indomitable spirit and versatility of man
## 437 for his work on the discontinuous structure of matter, and especially for his discovery of sedimentation equilibrium
## 438 for their discoveries concerning genetically determined structures on the cell surface that regulate immunological reactions
## 439 for his analysis of market power and regulation
## 440 author of new departures, poetic adventure and sensual ecstasy, explorer of a humanity beyond and below the reigning civilization
## 441 for their development and use of molecules with structure-specific interactions of high selectivity
## 442 for his work which, rich in ideas and filled with the spirit of freedom and the quest for truth, has exerted a far-reaching influence on our age
## 443 for the design and synthesis of molecular machines
## 444 for their discoveries of molecular mechanisms controlling the circadian rhythm
## 445 for the first discovery of an ion-transporting enzyme, Na+, K+ -ATPase
## 446 for their pioneering investigations concerning deep inelastic scattering of electrons on protons and bound neutrons, which have been of essential importance for the development of the quark model in particle physics
## 447 for their outstanding achievements in the development of direct methods for the determination of crystal structures
## 448 for his decades of untiring effort to find peaceful solutions to international conflicts, to advance democracy and human rights, and to promote economic and social development
## 449 for developing cryo-electron microscopy for the high-resolution structure determination of biomolecules in solution
## 450 for their work for the banning and clearing of anti-personnel mines
## 451 for the determination of the three-dimensional structure of a photosynthetic reaction centre
## 452 for his work on the equation of state for gases and liquids
## 453 for his discovery of the Spiroptera carcinoma
## 454 for his discovery of the Doppler effect in canal rays and the splitting of spectral lines in electric fields
## 455 for the rare strength and fertility of his poetic imagination with which is combined an intellectual curiosity of wide scope and a bold, freshly creative style
## 456 for their development of soft desorption ionisation methods for mass spectrometric analyses of biological macromolecules
## 457 for the development of lithium-ion batteries
## 458 for their researches on semiconductors and their discovery of the transistor effect
## 459 for their pioneering analysis of equilibria in the theory of non-cooperative games
## 460 for their studies of the structures of globular proteins
## 461 for their discovery of the blackbody form and anisotropy of the cosmic microwave background radiation
## 462 for their contributions concerning the dynamics of chemical elementary processes
## 463 for their pioneer work on the transmutation of atomic nuclei by artificially accelerated atomic particles
## 464 for his work on the stereochemistry of enzyme-catalyzed reactions
## 465 for their discoveries concerning genetic regulation of organ development and programmed cell death'
## 466 for their elucidation of the enzymatic mechanism underlying the synthesis of adenosine triphosphate (ATP)
## 467 for their discovery of the ability of poliomyelitis viruses to grow in cultures of various types of tissue
## 468 for their pioneering analysis of equilibria in the theory of non-cooperative games
## 469 for his distinguished art of narration which takes its highest form in <I>The Forsyte Saga</I>
## 470 for their preparation of enzymes and virus proteins in a pure form
## 471 for their fundamental theoretical investigations of the electronic structure of magnetic and disordered systems
## 472 for their efforts to find a peaceful solution to the conflict in Northern Ireland
## 473 for their contributions to the development of laser-based precision spectroscopy, including the optical frequency comb technique
## 474 for the discovery of insulin
## 475 for their discoveries of cells that constitute a positioning system in the brain
## 476 for his development of computational methods in quantum chemistry
## 477 for their pioneering contributions to general economic equilibrium theory and welfare theory
## 478 for his contribution to the creation of a peace-promoting religious brotherhood across national boundaries
## 479 for their discoveries concerning prostaglandins and related biologically active substances
## 480 for his realistic and imaginative writings, combining as they do sympathetic humour and keen social perception
## 481 in recognition of the numerous and brilliant compositions which, in an individual and original manner, have revived the great traditions of the Spanish drama
## 482 for their work towards a just and peaceful solution to the conflict in East Timor
## 483 who with parables sustained by imagination, compassion and irony continually enables us once again to apprehend an elusory reality
## 484 for an all-embracing authorship, imbued with clarity of thought and poetic intensity
## 485 for their discoveries concerning organ and cell transplantation in the treatment of human disease
## 486 for their analyses of markets with asymmetric information
## 487 for their discoveries relating to the highly differentiated functions of single nerve fibres
## 488 for the discovery of a new type of pulsar, a discovery that has opened up new possibilities for the study of gravitation
## 489 for their discoveries concerning the regulation of cholesterol metabolism
## 490 for their efforts to diminish the part played by nuclear arms in international politics and, in the longer run, to eliminate such arms
## 491 for his discoveries concerning genetic recombination and the organization of the genetic material of bacteria
## 492 for his resolute efforts to bring the country\u0092's more than 50-year-long civil war to an end
## 493 for his lyrical poetry, which in Spanish language constitutes an example of high spirit and artistical purity
## 494 for their discoveries concerning the activation of innate immunity
## 495 for his discoveries relating to immunity
## 496 for their fundamental work in quantum electrodynamics, with deep-ploughing consequences for the physics of elementary particles
## 497 for their discoveries concerning the humoral transmitters in the nerve terminals and the mechanism for their storage, release and inactivation
## 498 for his discovery of the therapeutic value of malaria inoculation in the treatment of dementia paralytica
## 499 for their important break-through in the discovery of superconductivity in ceramic materials
## 500 for his contribution to the development of high-resolution electron spectroscopy
## 501 for their struggle against the suppression of children and young people and for the right of all children to education
## 502 for his varied and rich poetry, which is inspired by lofty ideals
## 503 for his discovery of human blood groups
## 504 for their discoveries concerning organization and elicitation of individual and social behaviour patterns
## 505 for their discoveries in the field of the chemistry and technology of high polymers
## 506 for his invention of the polymerase chain reaction (PCR) method
## 507 who, in novels of great emotional force, has uncovered the abyss beneath our illusory sense of connection with the world
## 508 for their discoveries concerning the primary physiological and chemical visual processes in the eye
## 509 for their theories, developed independently, concerning the course of chemical reactions
## 510 for his theory for critical phenomena in connection with phase transitions
## 511 for their pioneering contributions to general economic equilibrium theory and welfare theory
## 512 who with poetic force creates an imagined world, where life and myth condense to form a disconcerting picture of the human predicament today
## 513 for his work for democracy and human rights in South Korea and in East Asia in general, and for peace and reconciliation with North Korea in particular
## 514 for decisive contributions to the LIGO detector and the observation of gravitational waves
## 515 for their long time work for the cause of peace as politicians, peace society leaders, orators and authors
## 516 for the discovery of the quantized Hall effect
## 517 for his monumental work, <I>Growth of the Soil</I>
## 518 for their work for a better organized and more peaceful world
## 519 for their development of soft desorption ionisation methods for mass spectrometric analyses of biological macromolecules
## 520 for their discoveries concerning the mechanism and regulation of the cholesterol and fatty acid metabolism
## 521 for their discoveries concerning organization and elicitation of individual and social behaviour patterns
## 522 for groundbreaking experiments regarding the two-dimensional material graphene
## 523 for their discovery and development of the diene synthesis
## 524 for his development of nuclear magnetic resonance spectroscopy for determining the three-dimensional structure of biological macromolecules in solution
## 525 for the discovery of the reciprocal relations bearing his name, which are fundamental for the thermodynamics of irreversible processes
## 526 for their empirical analysis of asset prices
## 527 for their services in the analysis of crystal structure by means of X-rays
## 528 for the creation of econometric models and the application to the analysis of economic fluctuations and economic policies
## 529 for jointly having negotiated a cease fire in Vietnam in 1973
## 530 for promoting the principles of the Geneva Convention and cooperation with the UN
## 531 for non-violent struggle for free trade unions and human rights in Poland
## 532 for their discoveries of key regulators of the cell cycle
## 533 for their experimental discoveries regarding tunneling phenomena in semiconductors and superconductors, respectively
## 534 for his longstanding contribution to the cause of peace and justice and his prominent role in the establishment of the League of Nations
## 535 for having devoted his life to the fight against war through the promotion of social justice and brotherhood among men and nations
## 536 for the neutrino beam method and the demonstration of the doublet structure of the leptons through the discovery of the muon neutrino
## 537 for their jointly developed theory of superconductivity, usually called the BCS-theory
## 538 for having laid the foundations of mechanism design theory
## 539 for their contributions to the theory of optimum allocation of resources
## 540 for his work on polymethylenes and higher terpenes
## 541 for his crucial contribution to the deployment of a United Nations Emergency Force in the wake of the Suez Crisis
## 542 for his pioneering theories for condensed matter, especially liquid helium
## 543 for their non-violent struggle for the safety of women and for women\u0092s rights to full participation in peace-building work
## 544 for their discoveries of odorant receptors and the organization of the olfactory system
## 545 for his fight against the nuclear arms race between East and West
## 546 for his long and non-violent struggle for fundamental human rights in China
## 547 for the theory of stable allocations and the practice of market design
## 548 for his lifelong effort to conquer hunger and want, thereby helping to remove a major cause of military conflict and war
## 549 for his investigations of the densities of the most important gases and for his discovery of argon in connection with these studies
## 550 for his work on nucleotides and nucleotide co-enzymes
## 551 for his discovery of the wave nature of electrons
## 552 for their discoveries concerning nitric oxide as a signalling molecule in the cardiovascular system
## 553 for fundamental work and discoveries concerning antiferromagnetism and ferrimagnetism which have led to important applications in solid state physics
## 554 for his decisive influence upon the conduct and outcome of the Hague and Geneva Conferences
## 555 for their discovery of human immunodeficiency virus
## 556 for their contribution to the emergence in France and Germany of a public opinion which favours peaceful international cooperation
## 557 for his bold and ingenious revival of dramatic and scenic art
## 558 for his decisive contributions to elementary particle physics, in particular the discovery of a large number of resonance states, made possible through his development of the technique of using hydrogen bubble chamber and data analysis
## 559 for his discovery of sugar nucleotides and their role in the biosynthesis of carbohydrates
## 560 for the development of lithium-ion batteries
## 561 for the courageous efforts in founding a movement to put an end to the violent conflict in Northern Ireland
## 562 for the discovery of the origin of the broken symmetry which predicts the existence of at least three families of quarks in nature
## 563 for their struggle against the suppression of children and young people and for the right of all children to education
## 564 for their studies of extremely fast chemical reactions, effected by disturbing the equilibrium by means of very short pulses of energy
## 565 for his discoveries and research in the field of X-ray spectroscopy
## 566 for their discoveries concerning nuclear shell structure
## 567 in recognition of the extraordinary services they have rendered by their joint researches on the radiation phenomena discovered by Professor Henri Becquerel
## 568 for their work in atmospheric chemistry, particularly concerning the formation and decomposition of ozone
## 569 for their discoveries of principles for introducing specific gene modifications in mice by the use of embryonic stem cells
## 570 for his cartography of structures of power and his trenchant images of the individual's resistance, revolt, and defeat
## 571 for their interpretation of the genetic code and its function in protein synthesis
## 572 for the discovery and development of the green fluorescent protein, GFP
## 573 for the development of multiscale models for complex chemical systems
## 574 for the discovery of the tau lepton
## 575 for his non-violent struggle for civil rights for the Afro-American population
## 576 for their discovery of G-proteins and the role of these proteins in signal transduction in cells
## 577 for their pioneering research in radio astrophysics: Ryle for his observations and inventions, in particular of the aperture synthesis technique, and Hewish for his decisive role in the discovery of pulsars
## 578 for elucidating the quantum structure of electroweak interactions in physics
## 579 for his important efforts, on several continents and over more than three decades, to resolve international conflicts
## 580 for pioneering contributions to astrophysics, in particular for the detection of cosmic neutrinos
## 581 for his pioneering contributions to the theory of markets and efficient utilization of resources
## 582 in appreciation of his many-sided literary activities, and especially of his dramatic works, which are distinguished by a wealth of imagination and by a poetic fancy, which reveals, sometimes in the guise of a fairy tale, a deep inspiration, while in a mysterious way they appeal to the readers' own feelings and stimulate their imaginations
## 583 for their discoveries concerning the molecular structure of nucleic acids and its significance for information transfer in living material
## 584 for his fundamental research in quantum mechanics, especially for his statistical interpretation of the wavefunction
## 585 for their discoveries concerning the replication mechanism and the genetic structure of viruses
## 586 for their studies of the structures of globular proteins
## 587 in recognition of the services he rendered to the advancement of Physics by his discovery of energy quanta
## 588 for his discoveries concerning yellow fever and how to combat it
## 589 for his discovery of the diffraction of X-rays by crystals
## 590 for their discoveries of cells that constitute a positioning system in the brain
## 591 in recognition of the organisation'\u0092s pioneering humanitarian work on several continents
## 592 for his research on the carbon dioxide assimilation in plants
## 593 for the neutrino beam method and the demonstration of the doublet structure of the leptons through the discovery of the muon neutrino
## 594 for jointly having negotiated peace between Egypt and Israel in 1978
## 595 for their pioneering work in the theory of financial economics
## 596 for their experimental approach to alleviating global poverty
## 597 for the development of multiscale models for complex chemical systems
## 598 for their discoveries of molecular mechanisms controlling the circadian rhythm
## 599 for their discoveries concerning the regulation of cholesterol metabolism
## 600 for his fundamental contributions to the establishment of oligonucleotide-based, site-directed mutagenesis and its development for protein studies
## 601 for their discoveries of molecular mechanisms controlling the circadian rhythm
## 602 for the discovery of an exoplanet orbiting a solar-type star
## 603 for his vivid literary achievement, deep-rooted in the national traits and traditions of Indian peoples of Latin America
## 604 for the leading role he played in the radical changes in East-West relations
## 605 for the artistic power and integrity with which, in his epic of the Don, he has given expression to a historic phase in the life of the Russian people
## 606 for his achievements in the fields of consumption analysis, monetary history and theory and for his demonstration of the complexity of stabilization policy
## 607 who with hallucinatory realism merges folk tales, history and the contemporary
## 608 for their efforts to prevent nuclear energy from being used for military purposes and to ensure that nuclear energy for peaceful purposes is used in the safest possible way
## 609 for her work for bringing help to suffering humanity
## 610 for their efforts to create economic and social development from below
## 611 for his contributions and discoveries concerning the classification of elementary particles and their interactions
## 612 for a new method to determine the value of derivatives
## 613 for their efforts to end the use of sexual violence as a weapon of war and armed conflict
## 614 who through her magnificent epic writing has - in the words of Alfred Nobel - been of very great benefit to humanity
## 615 who, through works rich in nuance - now clear-sightedly realistic, now evocatively ambiguous - has formed an Arabian narrative art that applies to all mankind
## 616 for having carried on the work of Fridtjof Nansen to the benefit of refugees across Europe
## 617 for promoting Christian unity and helping create 'that new attitude of mind which is necessary if peace between nations is to become reality'
## 618 for its decisive contribution to the building of a pluralistic democracy in Tunisia in the wake of the Jasmine Revolution of 2011
## 619 for her outstanding lyrical and dramatic writing, which interprets Israel's destiny with touching strength
## 620 for their work for the peaceful termination of the apartheid regime, and for laying the foundations for a new democratic South Africa
## 621 for their assiduous effort to revive the ideal of peace and to rekindle the spirit of peace in their own nation and in the whole of mankind
## 622 for their contribution to the development of laser spectroscopy
## 623 for fundamental work in the field of quantum electronics, which has led to the construction of oscillators and amplifiers based on the maser-laser principle
## 624 for his services in the investigation of the structure of atoms and of the radiation emanating from them
## 625 for theories concerning the specificity in development and control of the immune system and the discovery of the principle for production of monoclonal antibodies
## 626 in recognition of his contribution to the treatment of diseases, especially lupus vulgaris, with concentrated light radiation, whereby he has opened a new avenue for medical science
## 627 for their discoveries concerning organization and elicitation of individual and social behaviour patterns
## 628 for their researches into the mechanism of chemical reactions
## 629 for having given a well-founded hope - the green revolution
## 630 for the invention of the separated oscillatory fields method and its use in the hydrogen maser and other atomic clocks
## 631 for his investigations on carbohydrates and vitamin C
## 632 for impassioned writing with wide horizons, characterized by sensuous intelligence and humanistic integrity
## 633 for their contributions to the development of the concept of conformation and its application in chemistry
## 634 for his poetry, which, against the background of Greek tradition, depicts with sensuous strength and intellectual clear-sightedness modern man's struggle for freedom and creativeness
## 635 for its efforts to heal the wounds of war by providing help and protection to refugees all over the world
## 636 for a narrative imagination that with encyclopedic passion represents the crossing of boundaries as a form of life
## 637 for his analysis of economic governance, especially the boundaries of the firm
## 638 for their contributions to contract theory
## 639 for their discoveries of principles for introducing specific gene modifications in mice by the use of embryonic stem cells
## 640 for its extensive efforts to eliminate chemical weapons
## 641 who in the quest for the melancholic soul of his native city has discovered new symbols for the clash and interlacing of cultures
## 642 for the discovery and development of the green fluorescent protein, GFP
## 643 for his work for lasting peace in Central America
## 644 for their discovery and development of the diene synthesis
## 645 for his discovery of the fission of heavy nuclei
## 646 for their discoveries relating to chemical transmission of nerve impulses
## 647 for his discovery of the fixed relationship between the consumption of oxygen and the metabolism of lactic acid in the muscle
## 648 for his contribution to the development of the molecular ray method and his discovery of the magnetic moment of the proton
## 649 in recognition of his services to organic chemistry and the chemical industry by his pioneer work in the field of alicyclic compounds
## 650 for his discovery of the nature and mode of action of the respiratory enzyme
## 651 for their discovery of the antiproton
## 652 for his work on the thermionic phenomenon and especially for the discovery of the law named after him
## 653 for a poetry that with the action of an elemental force brings alive a continent's destiny and dreams
## 654 for the artistic vigour and true independence of mind with which he endeavours in his poetry to find answers to the eternal questions confronting mankind
## 655 for his development of the Wilson cloud chamber method, and his discoveries therewith in the fields of nuclear physics and cosmic radiation
## 656 for the art of memory with which he has evoked the most ungraspable human destinies and\nuncovered the life-world of the occupation
## 657 for an epic and psychological narrative art which has introduced a new continent into literature
## 658 for the scientific work through which he has developed static and dynamic economic theory and actively contributed to raising the level of analysis in economic science
## 659 for the discovery of new productive forms of atomic theory
## 660 for his fundamental studies of the biochemistry of nucleic acids, with particular regard to recombinant-DNA
## 661 for their discoveries concerning magnetic resonance imaging
## 662 for their elucidation of the enzymatic mechanism underlying the synthesis of adenosine triphosphate (ATP)
## 663 in recognition of their work on immunity
## 664 for their discoveries concerning signal transduction in the nervous system
## 665 for their prominent position in the international movement for peace and arbitration
## 666 as a tribute to the consummate artistry, permeated with idealism, which he has demonstrated during his long productive career as a lyric poet, dramatist, novelist and writer of world-renowned short stories
## 667 for their work in atmospheric chemistry, particularly concerning the formation and decomposition of ozone
## 668 for his fundamental achievements, both theoretical and experimental, in the physical chemistry of the macromolecules
## 669 for his investigations on carotenoids, flavins and vitamins A and B2
## 670 for his analysis of trade patterns and location of economic activity
## 671 for integrating technological innovations into long-run macroeconomic analysis
## 672 for mechanistic studies of DNA repair
## 673 for his discovery of the high efficiency of DDT as a contact poison against several arthropods
## 674 for his method of hydrogenating organic compounds in the presence of finely disintegrated metals whereby the progress of organic chemistry has been greatly advanced in recent years
## 675 for the discovery and the interpretation of the Cherenkov effect
## 676 for her rich and truly epic descriptions of peasant life in China and for her biographical masterpieces
## 677 for the invention of an apparatus to produce extremely high pressures, and for the discoveries he made therewith in the field of high pressure physics
## 678 for acting as a link between the peace societies of the various countries, and helping them to organize the world rallies of the international peace movement
## 679 for their analysis of markets with search frictions
## 680 for the discovery of water channels
## 681 for their discoveries concerning the specificity of the cell mediated immune defence
## 682 for his contributions to our knowledge of molecular structure through his investigations on dipole moments and on the diffraction of X-rays and electrons in gases
## 683 for the discovery of Giant Magnetoresistance
## 684 for an influential work that with linguistic ingenuity has explored the periphery and the specificity of human experience
## 685 for the theoretical discovery of a mechanism that contributes to our understanding of the origin of mass of subatomic particles, and which recently was confirmed through the discovery of the predicted fundamental particle, by the ATLAS and CMS experiments at CERN's Large Hadron Collider
## 686 for discovery of acquired immunological tolerance
## 687 for his contribution to the understanding of biological energy transfer through the formulation of the chemiosmotic theory
## 688 for his discovery of tumour-inducing viruses
## 689 for his longstanding contribution to the cause of disarmament and peace
## 690 for their discoveries relating to the hormones of the adrenal cortex, their structure and biological effects
## 691 for their fundamental theoretical investigations of the electronic structure of magnetic and disordered systems
## 692 for his work on cathode rays
## 693 for their discoveries of split genes
## 694 in recognition of the extraordinary services they have rendered by their joint researches on the radiation phenomena discovered by Professor Henri Becquerel
## 695 for discovering that methods developed for studying order phenomena in simple systems can be generalized to more complex forms of matter, in particular to liquid crystals and polymers
## 696 in recognition of the extraordinary service they rendered by their researches into the influence of magnetism upon radiation phenomena
## 697 for his precision determination of the magnetic moment of the electron
## 698 for their efforts to diminish the part played by nuclear arms in international politics and, in the longer run, to eliminate such arms
## 699 for his basic inventions and discoveries in the area of low-temperature physics
## 700 because of his profoundly sensitive, fresh and beautiful verse, by which, with consummate skill, he has made his poetic thought, expressed in his own English words, a part of the literature of the West
## 701 for having developed and applied dynamic models for the analysis of economic processes
## 702 for their discoveries concerning the primary physiological and chemical visual processes in the eye
## 703 for decisive contributions to the LIGO detector and the observation of gravitational waves
## 704 for his work as mediator in Palestine in 1948-1949
## 705 for his discovery of the dendritic cell and its role in adaptive immunity
## 706 for his longstanding and devoted effort in favour of the ideas of peace and arbitration
## 707 for their discoveries of machinery regulating vesicle traffic, a major transport system in our cells
## 708 for pioneering contributions to astrophysics, in particular for the detection of cosmic neutrinos
## 709 for their pioneering analysis of equilibria in the theory of non-cooperative games
## 710 for their discoveries concerning the interaction between tumour viruses and the genetic material of the cell
## 711 for his struggle to ensure the rights of man as stipulated in the UN Declaration
## 712 for pioneering contributions to astrophysics, which have led to the discovery of cosmic X-ray sources
## 713 for their discoveries of odorant receptors and the organization of the olfactory system
## 714 for their discovery of fullerenes
## 715 for their pioneering investigations concerning deep inelastic scattering of electrons on protons and bound neutrons, which have been of essential importance for the development of the quark model in particle physics
## 716 for palladium-catalyzed cross couplings in organic synthesis
## 717 for his contributions to behavioural economics
## 718 for developing cryo-electron microscopy for the high-resolution structure determination of biomolecules in solution
## 719 for their discoveries of split genes
## 720 for his work on carotenoids and vitamins
## 721 for their invention of partition chromatography
## 722 for their fundamental work in quantum electrodynamics, with deep-ploughing consequences for the physics of elementary particles
## 723 for his contributions to the development of the methodology of high resolution nuclear magnetic resonance (NMR) spectroscopy
## 724 for the development of the metathesis method in organic synthesis
## 725 for having made fundamental contributions to the development of systems of national accounts and hence greatly improved the basis for empirical economic analysis
## 726 for his researches on plant pigments, especially chlorophyll
## 727 for his demonstration of the heterogenous nature of colloid solutions and for the methods he used, which have since become fundamental in modern colloid chemistry
## 728 for her struggle for social justice and ethno-cultural reconciliation based on respect for the rights of indigenous peoples
## 729 for their discoveries of growth factors
## 730 for their theories, developed independently, concerning the course of chemical reactions
## 731 for his work on the elementary charge of electricity and on the photoelectric effect
## 732 for their discovery of a new form of quantum fluid with fractionally charged excitations
## 733 for his outstanding achievements in the art of organic synthesis
## 734 for his work on the physiology and pathology of the vestibular apparatus
## 735 for a new method to determine the value of derivatives
## 736 for their discovery of superfluidity in helium-3
## 737 for his tireless effort in support of the League of Nations, disarmament and peace
## 738 for having developed and applied the hypothesis of rational expectations, and thereby having transformed macroeconomic analysis and deepened our understanding of economic policy
## 739 for their discovery of fullerenes
## 740 for methods of analyzing economic time series with time-varying volatility (ARCH)
## 741 for their discoveries concerning nitric oxide as a signalling molecule in the cardiovascular system
## 742 for the development of in vitro fertilization
## 743 for the development of the metathesis method in organic synthesis
## 744 for his pioneering studies of electron scattering in atomic nuclei and for his thereby achieved discoveries concerning the structure of the nucleons
## 745 for the determination of the three-dimensional structure of a photosynthetic reaction centre
## 746 for having enhanced our understanding of conflict and cooperation through game-theory analysis
## 747 for studies of G-protein-coupled receptors
## 748 for their empirical analysis of asset prices
## 749 for his investigations and discoveries in relation to tuberculosis
## 750 for his contributions to the theory of economic growth
## 751 for his analysis of monetary and fiscal policy under different exchange rate regimes and his analysis of optimum currency areas
## 752 for his fundamental work concerning chemical bonds and the electronic structure of molecules by the molecular orbital method
## 753 for their jointly developed theory of superconductivity, usually called the BCS-theory
## 754 for having renewed research in economic history by applying economic theory and quantitative methods in order to explain economic and institutional change
## 755 for their interpretation of the genetic code and its function in protein synthesis
## 756 for their discovery of cosmic microwave background radiation
## 757 for structural and mechanistic studies of ion channels
## 758 for their discoveries concerning the chemical structure of antibodies
## 759 for having laid the foundations of mechanism design theory
## 760 for his studies of the molecular basis of eukaryotic transcription
## 761 for their discoveries concerning the peptide hormone production of the brain
## 762 for the artistic power and truth with which he has depicted human conflict as well as some fundamental aspects of contemporary life in his novel-cycle <I>Les Thibault</I>
## 763 for his discoveries concerning the functional specialization of the cerebral hemispheres
## 764 for the discovery and development of the green fluorescent protein, GFP
## 765 for their discoveries concerning the specificity of the cell mediated immune defence
## 766 as a tribute to the lofty idealism of his literary production and to the sympathy and love of truth with which he has described different types of human beings
## 767 for their studies of extremely fast chemical reactions, effected by disturbing the equilibrium by means of very short pulses of energy
## 768 for his discovery and clarification of the significance of transaction costs and property rights for the institutional structure and functioning of the economy
## 769 for his work on malaria, by which he has shown how it enters the organism and thereby has laid the foundation for successful research on this disease and methods of combating it
## 770 for the development of radioimmunoassays of peptide hormones
## 771 for his contribution to the quantum theory of optical coherence
## 772 in recognition of his earnest search for truth, his penetrating power of thought, his wide range of vision, and the warmth and strength in presentation with which in his numerous works he has vindicated and developed an idealistic philosophy of life
## 773 for his researches concerning the resonance absorption of gamma radiation and his discovery in this connection of the effect which bears his name
## 774 for his contributions to the theory of electron transfer reactions in chemical systems
## 775 in consideration of the power of observation, originality of imagination, virility of ideas and remarkable talent for narration which characterize the creations of this world-famous author
## 776 for the discovery of a new type of pulsar, a discovery that has opened up new possibilities for the study of gravitation
## 777 for their work on chirally catalysed hydrogenation reactions
## 778 for the soaring flight and the evocative imagery of his poetry which in a visionary fashion reflects the conditions of our time
## 779 for their discoveries concerning the replication mechanism and the genetic structure of viruses
## 780 for his lyrical poetry, which with classical fire expresses the tragic experience of life in our own times
## 781 for his writing, which - in new forms for the novel and drama - in the destitution of modern man acquires its elevation
## 782 for their pioneering work in the discovery of a heavy elementary particle of a new kind
## 783 in recognition of their work on the structure of the nervous system
## 784 for their discoveries concerning a novel therapy against infections caused by roundworm parasites
## 785 for the human understanding and subtle analysis of contemporary culture that are combined in his work
## 786 for the discovery of the accelerating expansion of the Universe through observations of distant supernovae
## 787 for works of lyrical beauty and ethical depth, which exalt everyday miracles and the living past
## 788 for his efforts to secure and develop human rights throughout the world
## 789 in appreciation of the lofty idealism, vivid imagination and spiritual perception that characterize her writings
## 790 for his discovery of streptomycin, the first antibiotic effective against tuberculosis
## 791 for ground-breaking experimental methods that enable measuring and manipulation of individual quantum systems
## 792 for their discovery of the mechanisms in the biological synthesis of ribonucleic acid and deoxyribonucleic acid
## 793 for their contributions to the theory of the unified weak and electromagnetic interaction between elementary particles, including, inter alia, the prediction of the weak neutral current
## 794 for their efforts to create peace in the Middle East
## 795 for the discovery that mature cells can be reprogrammed to become pluripotent
## 796 for her efforts for democracy and human rights. She has focused especially on the struggle for the rights of women and children
## 797 for his profoundly characteristic narrative art with motifs from the life of the Jewish people
## 798 for the invention of efficient blue light-emitting diodes which has enabled bright and energy-saving white light sources
## 799 for their discovery of catalytic properties of RNA
## 800 principally for her powerful descriptions of Northern life during the Middle Ages
## 801 for his empirically founded interpretation of economic growth which has led to new and deepened insight into the economic and social structure and process of development
## 802 for their decisive contributions to the large project, which led to the discovery of the field particles W and Z, communicators of weak interaction
## 803 for their fundamental work in quantum electrodynamics, with deep-ploughing consequences for the physics of elementary particles
## 804 for his vigorous and graphic art of description and his ability to create, with wit and humour, new types of characters
## 805 for the discovery of penicillin and its curative effect in various infectious diseases
## 806 for their pioneering research into economic development research with particular consideration of the problems of developing countries
## 807 for his crucial role in bringing about the Locarno Treaty
## 808 for their discoveries concerning the humoral transmitters in the nerve terminals and the mechanism for their storage, release and inactivation
## 809 for his work on the scattering of light and for the discovery of the effect named after him
## 810 for their discoveries regarding the functions of neurons
## 811 for their researches into the mechanism of chemical reactions
## 812 for discovery of acquired immunological tolerance
## 813 for his discovery of the growth-stimulating vitamins
## 814 for the phage display of peptides and antibodies
## 815 for their discovery of fullerenes
## 816 for their discoveries relating to chemical transmission of nerve impulses
## 817 for the discovery of penicillin and its curative effect in various infectious diseases
## 818 for the design and synthesis of molecular machines
## 819 for their discoveries of important principles for drug treatment
## 820 for the discovery that mature cells can be reprogrammed to become pluripotent
## 821 for their discoveries concerning the ionic mechanisms involved in excitation and inhibition in the peripheral and central portions of the nerve cell membrane
## 822 for their discoveries of principles for introducing specific gene modifications in mice by the use of embryonic stem cells
## 823 for their fundamental theoretical investigations of the electronic structure of magnetic and disordered systems
## 824 for having exposed by his pen the illusion of war and presented a convincing plea for international cooperation and peace
## 825 for their discoveries of key regulators of the cell cycle
## 826 for their discoveries of how cells sense and adapt to oxygen availability
## 827 for their discoveries concerning magnetic resonance imaging
## 828 for his investigations on plant products of biological importance, especially the alkaloids
## 829 in recognition of his services in the discovery of the inert gaseous elements in air, and his determination of their place in the periodic system
## 830 for their contribution to the understanding of the connection between chemical structure and catalytic activity of the active centre of the ribonuclease molecule
## 831 for his discovery of Prions - a new biological principle of infection
## 832 for their discoveries of growth factors
## 833 for the development of super-resolved fluorescence microscopy
## 834 for development of methods to cool and trap atoms with laser light
## 835 for their contributions to the theory of the unified weak and electromagnetic interaction between elementary particles, including, inter alia, the prediction of the weak neutral current
## 836 for his theoretical studies of the physical processes of importance to the structure and evolution of the stars
## 837 in special recognition of his poetic composition, which gives evidence of lofty idealism, artistic perfection and a rare combination of the qualities of both heart and intellect
## 838 for their discoveries concerning prostaglandins and related biologically active substances
## 839 for his discovery of the genetic principle for generation of antibody diversity
## 840 in recognition of the extraordinary services he has rendered to the advancement of chemistry by his electrolytic theory of dissociation
## 841 for her polyphonic writings, a monument to suffering and courage in our time
## 842 for their discoveries concerning genetic regulation of organ development and programmed cell death'
## 843 for his outstanding, pioneer contribution to present-day poetry
## 844 for their discoveries relating to the hormones of the adrenal cortex, their structure and biological effects
## 845 for the discovery of neutrino oscillations, which shows that neutrinos have mass
## 846 for their discovery of cancer therapy by inhibition of negative immune regulation
## 847 for their non-violent struggle for the safety of women and for women\u0092s rights to full participation in peace-building work
## 848 for advocating peaceful solutions based upon tolerance and mutual respect in order to preserve the historical and cultural heritage of his people
## 849 for his work on disperse systems
## 850 for his work on the physiology, pathology and surgery of the thyroid gland
## 851 the greatest living master of the art of historical writing, with special reference to his monumental work, <I>A history of Rome</I>
## 852 for their contributions to the development of laser-based precision spectroscopy, including the optical frequency comb technique
## 853 for his role in bringing to an end the bloody war recently waged between two of the world's great powers, Japan and Russia
## 854 in recognition of his accurate determinations of the atomic weight of a large number of chemical elements
## 855 for their pioneering research into economic development research with particular consideration of the problems of developing countries
## 856 for studies of the structure and function of the ribosome
## 857 for having enhanced our understanding of conflict and cooperation through game-theory analysis
## 858 for their discoveries of machinery regulating vesicle traffic, a major transport system in our cells
## 859 for his discoveries concerning the role played by the chromosome in heredity
## 860 for their discovery of the ability of poliomyelitis viruses to grow in cultures of various types of tissue
## 861 for their empirical research on cause and effect in the macroeconomy
## 862 principally for his great novel, <I>Buddenbrooks</I>, which has won steadily increased recognition as one of the classic works of contemporary literature
## 863 for their discovery of catalytic properties of RNA
## 864 for their discoveries of key regulators of the cell cycle
## 865 for their contributions to the theory of optimum allocation of resources
## 866 for his role as co-founder of the Institut de droit international, initiator of the Conferences on International Private Law (Conférences de Droit international privé) at the Hague, and pioneer in the field of international legal relations
## 867 for mechanistic studies of DNA repair
## 868 because, through his condensed, translucent images, he gives us fresh access to reality
## 869 who in novels characterized by visionary force and poetic import, gives life to an essential aspect of American reality
## 870 for their discoveries concerning information processing in the visual system
## 871 for the discovery of the origin of the broken symmetry which predicts the existence of at least three families of quarks in nature
## 872 for his clarification of the probability theory foundations of econometrics and his analyses of simultaneous economic structures
## 873 for their penetrating investigation of the so-called parity laws which has led to important discoveries regarding the elementary particles
## 874 for her discoveries concerning a novel therapy against Malaria
## 875 for their discoveries concerning the humoral transmitters in the nerve terminals and the mechanism for their storage, release and inactivation
## 876 for their work for a better organized and more peaceful world
## 877 for its effort to enhance solidarity between nations and reduce the difference between rich and poor states
## 878 for preventing armed clashes and creating conditions for negotiations
## 879 for having united perceptive narrative and incorruptible scrutiny in works that compel us to see the presence of suppressed histories
## 880 for the discovery of violations of fundamental symmetry principles in the decay of neutral K-mesons
## 881 for studies of the structure and function of the ribosome
## 882 in recognition of his significance as the leading representative of a new era in our literature
## 883 for having established laboratory experiments as a tool in empirical economic analysis, especially in the study of alternative market mechanisms
## 884 for a creative poetic writing which illuminates man's condition in the cosmos and in present-day society, at the same time representing the great renewal of the traditions of Spanish poetry between the wars
## 885 for his discovery of cosmic radiation
## 886 for the discovery of the so-called Grignard reagent, which in recent years has greatly advanced the progress of organic chemistry
## 887 for his work on biochemically important sulphur compounds, especially for the first synthesis of a polypeptide hormone
## 888 for pioneering contributions to the theory of superconductors and superfluids
## 889 for his research into the stereochemistry of organic molecules and reactions
## 890 for their contributions concerning the determination of base sequences in nucleic acids
## 891 for their researches on semiconductors and their discovery of the transistor effect
## 892 for his discovery of the functional organization of the interbrain as a coordinator of the activities of the internal organs
## 893 for his development of the density-functional theory
## 894 for the coincidence method and his discoveries made therewith
## 895 in recognition of his work in thermochemistry
## 896 for her contribution to sustainable development, democracy and peace
## 897 for the development of the input-output method and for its application to important economic problems
## 898 for their preparation of enzymes and virus proteins in a pure form
## 899 for the discovery of restriction enzymes and their application to problems of molecular genetics
## 900 for their discoveries concerning heart catheterization and pathological changes in the circulatory system
## 901 for the creation of quantum mechanics, the application of which has, inter alia, led to the discovery of the allotropic forms of hydrogen
## 902 in recognition of the extraordinary services he has rendered by the discovery of the remarkable rays subsequently named after him
## 903 in recognition of his work on catalysis and for his investigations into the fundamental principles governing chemical equilibria and rates of reaction
## 904 for his discoveries regarding the laws governing the radiation of heat
## 905 for his method to use carbon-14 for age determination in archaeology, geology, geophysics, and other branches of science
## 906 for the invention of an imaging semiconductor circuit - the CCD sensor
## 907 for his discovery of the mechanism of the electrocardiogram
## 908 for his theoretical and experimental studies of the nuclear reactions of importance in the formation of the chemical elements in the universe
## 909 for their researches on semiconductors and their discovery of the transistor effect
## 910 for their services in the analysis of crystal structure by means of X-rays
## 911 for his always inspired poetry, which in a highly artistic form gives expression to the spirit of a whole nation
## 912 for their discoveries concerning a novel therapy against infections caused by roundworm parasites
## 913 for integrating climate change into long-run macroeconomic analysis
## 914 for development of methods to cool and trap atoms with laser light
## 915 for the development of super-resolved fluorescence microscopy
## 916 for his contributions in the field of chemical thermodynamics, particularly concerning the behaviour of substances at extremely low temperatures
## 917 for their pioneering work in the theory of financial economics
## 918 for his powerful and artistically unique contribution to the modern American novel
## 919 for their discoveries of how cells sense and adapt to oxygen availability
## 920 for his novels which, with the perspicuity of realistic narrative art and the diversity and universality of myth, illuminate the human condition in the world of today
## 921 for their contribution to the understanding of the connection between chemical structure and catalytic activity of the active centre of the ribonuclease molecule
## 922 for their work on chirally catalysed hydrogenation reactions
## 923 for his studies on the structure of boranes illuminating problems of chemical bonding
## 924 for their discoveries concerning liver therapy in cases of anaemia
## 925 for their fundamental contributions to the economic theory of incentives under asymmetric information
## 926 for his discoveries concerning the fine structure of the hydrogen spectrum
## 927 for paving the way for a meaningful dialogue between East and West
## 928 for his mastery of historical and biographical description as well as for brilliant oratory in defending exalted human values
## 929 for poetry that with ironic precision allows the historical and biological context to come to light in fragments of human reality
## 930 for his great national epic, <I>The Peasants</I>
## 931 who in a wide cultural perspective and with poetic overtones fashions the drama of existence
## 932 for the achievement of Bose-Einstein condensation in dilute gases of alkali atoms, and for early fundamental studies of the properties of the condensates
## 933 for the development of the ion trap technique
## 934 for the discovery of the Exclusion Principle, also called the Pauli Principle
## 935 for his role as founder of the League of Nations
## 936 for their efforts to create peace in the Middle East
## 937 for his narrative mastery, which with great sensibility expresses the essence of the Japanese mind
## 938 for their efforts to create peace in the Middle East
## 939 for the discovery of the mechanism of spontaneous broken symmetry in subatomic physics
## 940 for his discoveries of mechanisms for autophagy
## 941 for their contributions concerning the dynamics of chemical elementary processes
## 942 for the development of the metathesis method in organic synthesis
## 943 for developing semiconductor heterostructures used in high-speed- and opto-electronics
## 944 for their contributions concerning the determination of base sequences in nucleic acids
## 945 for the great work it has performed during the war on behalf of humanity
## 946 for their jointly developed theory of superconductivity, usually called the BCS-theory
## 947 for his research into the nature of the chemical bond and its application to the elucidation of the structure of complex substances
## 948 in recognition of her services to the advancement of chemistry by the discovery of the elements radium and polonium, by the isolation of radium and the study of the nature and compounds of this remarkable element
## 949 for promoting the fundamental rights of refugees
## 950 for promoting the principles of the Geneva Convention and cooperation with the UN
## categoryTopMotivation
## 1
## 2
## 3
## 4
## 5
## 6
## 7
## 8
## 9
## 10
## 11
## 12
## 13
## 14
## 15
## 16
## 17
## 18
## 19
## 20
## 21
## 22
## 23
## 24
## 25
## 26
## 27
## 28
## 29
## 30
## 31
## 32
## 33
## 34
## 35
## 36
## 37
## 38
## 39
## 40
## 41
## 42
## 43
## 44
## 45
## 46
## 47
## 48
## 49
## 50
## 51
## 52
## 53
## 54
## 55
## 56
## 57
## 58
## 59
## 60
## 61
## 62
## 63
## 64
## 65
## 66
## 67
## 68
## 69 for groundbreaking inventions in the field of laser physics
## 70
## 71
## 72
## 73
## 74
## 75
## 76
## 77
## 78
## 79
## 80
## 81
## 82
## 83
## 84
## 85
## 86
## 87
## 88
## 89
## 90
## 91
## 92
## 93
## 94
## 95
## 96
## 97
## 98 for pioneering contributions to the development of neutron scattering techniques for studies of condensed matter
## 99
## 100
## 101
## 102
## 103
## 104
## 105
## 106
## 107
## 108
## 109
## 110
## 111
## 112
## 113
## 114
## 115
## 116
## 117
## 118
## 119
## 120
## 121
## 122
## 123
## 124
## 125
## 126
## 127
## 128
## 129
## 130
## 131
## 132
## 133
## 134
## 135
## 136
## 137
## 138
## 139
## 140
## 141
## 142
## 143
## 144 for pioneering contributions to the development of neutron scattering techniques for studies of condensed matter
## 145
## 146
## 147
## 148
## 149
## 150
## 151
## 152
## 153
## 154
## 155
## 156
## 157
## 158
## 159
## 160
## 161
## 162
## 163
## 164
## 165
## 166
## 167
## 168
## 169
## 170
## 171
## 172
## 173
## 174 for contributions to our understanding of the evolution of the universe and Earth’s place in the cosmos
## 175
## 176
## 177 for groundbreaking inventions in the field of laser physics
## 178
## 179
## 180
## 181
## 182
## 183
## 184
## 185
## 186
## 187
## 188
## 189
## 190
## 191
## 192
## 193
## 194
## 195
## 196
## 197
## 198
## 199
## 200
## 201
## 202
## 203
## 204
## 205
## 206
## 207
## 208
## 209
## 210
## 211
## 212
## 213
## 214
## 215
## 216
## 217
## 218
## 219
## 220
## 221
## 222
## 223
## 224
## 225
## 226
## 227
## 228
## 229
## 230
## 231
## 232
## 233
## 234
## 235
## 236
## 237
## 238
## 239
## 240
## 241
## 242
## 243
## 244
## 245
## 246
## 247
## 248
## 249
## 250
## 251
## 252
## 253
## 254
## 255
## 256
## 257
## 258
## 259
## 260
## 261
## 262
## 263
## 264 for pioneering experimental contributions to lepton physics
## 265
## 266
## 267
## 268
## 269
## 270
## 271
## 272
## 273
## 274
## 275
## 276
## 277
## 278
## 279
## 280
## 281
## 282
## 283
## 284
## 285
## 286
## 287
## 288
## 289
## 290
## 291
## 292
## 293
## 294
## 295
## 296
## 297
## 298
## 299
## 300
## 301
## 302
## 303
## 304
## 305
## 306
## 307 for groundbreaking inventions in the field of laser physics
## 308
## 309
## 310
## 311
## 312
## 313
## 314
## 315
## 316
## 317
## 318
## 319
## 320
## 321
## 322
## 323
## 324
## 325
## 326
## 327
## 328
## 329
## 330
## 331
## 332
## 333
## 334
## 335
## 336
## 337
## 338
## 339
## 340
## 341
## 342
## 343
## 344
## 345
## 346
## 347
## 348
## 349
## 350
## 351
## 352
## 353
## 354
## 355
## 356
## 357
## 358
## 359
## 360
## 361
## 362
## 363
## 364
## 365
## 366
## 367
## 368 for basic work on information and communication technology
## 369
## 370
## 371
## 372
## 373
## 374
## 375
## 376
## 377
## 378
## 379
## 380
## 381
## 382
## 383
## 384
## 385
## 386
## 387
## 388
## 389
## 390
## 391
## 392
## 393
## 394
## 395
## 396
## 397
## 398
## 399
## 400
## 401
## 402
## 403
## 404
## 405
## 406
## 407
## 408
## 409
## 410
## 411
## 412
## 413 for basic work on information and communication technology
## 414
## 415
## 416
## 417
## 418
## 419
## 420
## 421
## 422
## 423
## 424
## 425
## 426
## 427
## 428
## 429 for contributions to our understanding of the evolution of the universe and Earth’s place in the cosmos
## 430
## 431
## 432
## 433
## 434
## 435
## 436
## 437
## 438
## 439
## 440
## 441
## 442
## 443
## 444
## 445
## 446
## 447
## 448
## 449
## 450
## 451
## 452
## 453
## 454
## 455
## 456 for the development of methods for identification and structure analyses of biological macromolecules
## 457
## 458
## 459
## 460
## 461
## 462
## 463
## 464
## 465
## 466
## 467
## 468
## 469
## 470
## 471
## 472
## 473
## 474
## 475
## 476
## 477
## 478
## 479
## 480
## 481
## 482
## 483
## 484
## 485
## 486
## 487
## 488
## 489
## 490
## 491
## 492
## 493
## 494
## 495
## 496
## 497
## 498
## 499
## 500
## 501
## 502
## 503
## 504
## 505
## 506 for contributions to the developments of methods within DNA-based chemistry
## 507
## 508
## 509
## 510
## 511
## 512
## 513
## 514
## 515
## 516
## 517
## 518
## 519 for the development of methods for identification and structure analyses of biological macromolecules
## 520
## 521
## 522
## 523
## 524 for the development of methods for identification and structure analyses of biological macromolecules
## 525
## 526
## 527
## 528
## 529
## 530
## 531
## 532
## 533
## 534
## 535
## 536
## 537
## 538
## 539
## 540
## 541
## 542
## 543
## 544
## 545
## 546
## 547
## 548
## 549
## 550
## 551
## 552
## 553
## 554
## 555
## 556
## 557
## 558
## 559
## 560
## 561
## 562
## 563
## 564
## 565
## 566
## 567
## 568
## 569
## 570
## 571
## 572
## 573
## 574 for pioneering experimental contributions to lepton physics
## 575
## 576
## 577
## 578
## 579
## 580
## 581
## 582
## 583
## 584
## 585
## 586
## 587
## 588
## 589
## 590
## 591
## 592
## 593
## 594
## 595
## 596
## 597
## 598
## 599
## 600 for contributions to the developments of methods within DNA-based chemistry
## 601
## 602 for contributions to our understanding of the evolution of the universe and Earth’s place in the cosmos
## 603
## 604
## 605
## 606
## 607
## 608
## 609
## 610
## 611
## 612
## 613
## 614
## 615
## 616
## 617
## 618
## 619
## 620
## 621
## 622
## 623
## 624
## 625
## 626
## 627
## 628
## 629
## 630
## 631
## 632
## 633
## 634
## 635
## 636
## 637
## 638
## 639
## 640
## 641
## 642
## 643
## 644
## 645
## 646
## 647
## 648
## 649
## 650
## 651
## 652
## 653
## 654
## 655
## 656
## 657
## 658
## 659
## 660
## 661
## 662
## 663
## 664
## 665
## 666
## 667
## 668
## 669
## 670
## 671
## 672
## 673
## 674
## 675
## 676
## 677
## 678
## 679
## 680 for discoveries concerning channels in cell membranes
## 681
## 682
## 683
## 684
## 685
## 686
## 687
## 688
## 689
## 690
## 691
## 692
## 693
## 694
## 695
## 696
## 697
## 698
## 699
## 700
## 701
## 702
## 703
## 704
## 705
## 706
## 707
## 708
## 709
## 710
## 711
## 712
## 713
## 714
## 715
## 716
## 717
## 718
## 719
## 720
## 721
## 722
## 723
## 724
## 725
## 726
## 727
## 728
## 729
## 730
## 731
## 732
## 733
## 734
## 735
## 736
## 737
## 738
## 739
## 740
## 741
## 742
## 743
## 744
## 745
## 746
## 747
## 748
## 749
## 750
## 751
## 752
## 753
## 754
## 755
## 756
## 757 for discoveries concerning channels in cell membranes
## 758
## 759
## 760
## 761
## 762
## 763
## 764
## 765
## 766
## 767
## 768
## 769
## 770
## 771
## 772
## 773
## 774
## 775
## 776
## 777
## 778
## 779
## 780
## 781
## 782
## 783
## 784
## 785
## 786
## 787
## 788
## 789
## 790
## 791
## 792
## 793
## 794
## 795
## 796
## 797
## 798
## 799
## 800
## 801
## 802
## 803
## 804
## 805
## 806
## 807
## 808
## 809
## 810
## 811
## 812
## 813
## 814
## 815
## 816
## 817
## 818
## 819
## 820
## 821
## 822
## 823
## 824
## 825
## 826
## 827
## 828
## 829
## 830
## 831
## 832
## 833
## 834
## 835
## 836
## 837
## 838
## 839
## 840
## 841
## 842
## 843
## 844
## 845
## 846
## 847
## 848
## 849
## 850
## 851
## 852
## 853
## 854
## 855
## 856
## 857
## 858
## 859
## 860
## 861
## 862
## 863
## 864
## 865
## 866
## 867
## 868
## 869
## 870
## 871
## 872
## 873
## 874
## 875
## 876
## 877
## 878
## 879
## 880
## 881
## 882
## 883
## 884
## 885
## 886
## 887
## 888
## 889
## 890
## 891
## 892
## 893
## 894
## 895
## 896
## 897
## 898
## 899
## 900
## 901
## 902
## 903
## 904
## 905
## 906
## 907
## 908
## 909
## 910
## 911
## 912
## 913
## 914
## 915
## 916
## 917
## 918
## 919
## 920
## 921
## 922
## 923
## 924
## 925
## 926
## 927
## 928
## 929
## 930
## 931
## 932
## 933
## 934
## 935
## 936
## 937
## 938
## 939
## 940
## 941
## 942
## 943 for basic work on information and communication technology
## 944
## 945
## 946
## 947
## 948
## 949
## 950
## award_link id
## 1 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2001 745
## 2 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1975 102
## 3 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2004 779
## 4 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1982 259
## 5 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1979 114
## 6 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2019 982
## 7 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2019 981
## 8 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2009 843
## 9 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2011 866
## 10 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1939 199
## 11 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1905 164
## 12 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1928 185
## 13 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1980 541
## 14 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1999 292
## 15 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2010 853
## 16 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2019 978
## 17 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2007 819
## 18 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2000 729
## 19 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1963 376
## 20 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2000 730
## 21 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1907 11
## 22 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1957 628
## 23 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1974 403
## 24 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1921 26
## 25 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2007 814
## 26 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1902 465
## 27 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1960 519
## 28 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1952 513
## 29 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1937 332
## 30 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1910 304
## 31 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1964 83
## 32 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1970 644
## 33 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2003 766
## 34 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1912 306
## 35 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1982 544
## 36 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1969 392
## 37 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1911 479
## 38 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1994 450
## 39 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1966 87
## 40 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1913 174
## 41 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/2013 892
## 42 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1979 417
## 43 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1911 305
## 44 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1907 300
## 45 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1982 543
## 46 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2012 882
## 47 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1998 719
## 48 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1947 509
## 49 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1977 537
## 50 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1921 590
## 51 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1956 360
## 52 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2010 849
## 53 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1947 618
## 54 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1965 381
## 55 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1975 534
## 56 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1963 377
## 57 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1977 412
## 58 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2006 802
## 59 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2015 926
## 60 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2003 768
## 61 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1974 101
## 62 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1978 538
## 63 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1952 214
## 64 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1922 311
## 65 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2013 891
## 66 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1926 490
## 67 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1948 208
## 68 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1978 111
## 69 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2018 960
## 70 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2015 920
## 71 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1927 33
## 72 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1929 186
## 73 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1934 499
## 74 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1959 368
## 75 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1981 119
## 76 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1945 203
## 77 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2000 722
## 78 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1920 310
## 79 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1909 475
## 80 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1991 553
## 81 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2004 780
## 82 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2015 923
## 83 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2009 845
## 84 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1983 428
## 85 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2017 942
## 86 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2005 789
## 87 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2001 743
## 88 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1976 409
## 89 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1980 419
## 90 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1975 103
## 91 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2016 936
## 92 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1982 426
## 93 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2016 933
## 94 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1947 345
## 95 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1991 445
## 96 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1905 468
## 97 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1977 689
## 98 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1994 145
## 99 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1950 621
## 100 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1976 535
## 101 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1903 572
## 102 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/2016 937
## 103 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1958 629
## 104 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1973 99
## 105 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2012 879
## 106 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2011 865
## 107 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2011 861
## 108 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1984 261
## 109 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1976 105
## 110 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1927 34
## 111 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1906 298
## 112 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1989 666
## 113 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1931 189
## 114 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1947 343
## 115 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1936 43
## 116 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1919 588
## 117 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1935 500
## 118 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2001 740
## 119 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1984 124
## 120 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1996 562
## 121 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1936 501
## 122 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2009 836
## 123 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1950 55
## 124 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1984 431
## 125 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1966 384
## 126 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1920 25
## 127 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1925 489
## 128 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1917 22
## 129 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1964 81
## 130 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1987 269
## 131 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2009 838
## 132 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1928 318
## 133 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1913 307
## 134 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1957 68
## 135 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1929 319
## 136 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1972 241
## 137 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1974 404
## 138 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1921 486
## 139 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1995 453
## 140 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2010 858
## 141 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2011 873
## 142 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1997 153
## 143 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1985 662
## 144 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1994 146
## 145 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1937 44
## 146 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2003 772
## 147 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1945 505
## 148 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1938 333
## 149 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2006 803
## 150 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1980 657
## 151 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1976 410
## 152 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1961 520
## 153 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2010 857
## 154 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2011 867
## 155 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1957 363
## 156 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1998 157
## 157 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2002 759
## 158 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2000 733
## 159 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1978 415
## 160 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1997 674
## 161 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1975 406
## 162 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1981 423
## 163 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2004 776
## 164 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2016 928
## 165 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2012 877
## 166 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1996 149
## 167 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1998 567
## 168 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2018 966
## 169 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1971 93
## 170 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1969 237
## 171 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1992 669
## 172 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1984 546
## 173 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1956 362
## 174 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2019 975
## 175 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1960 74
## 176 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1987 267
## 177 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2018 962
## 178 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/2007 817
## 179 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1964 230
## 180 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1996 150
## 181 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1993 710
## 182 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1986 264
## 183 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1990 443
## 184 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1952 59
## 185 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1971 397
## 186 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1932 324
## 187 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1992 446
## 188 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2006 807
## 189 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1907 166
## 190 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2014 905
## 191 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1943 336
## 192 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1995 452
## 193 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1950 349
## 194 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2004 787
## 195 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1958 365
## 196 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1947 52
## 197 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1992 447
## 198 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1951 212
## 199 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1949 348
## 200 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2010 852
## 201 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1974 533
## 202 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/2004 782
## 203 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1981 658
## 204 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1990 275
## 205 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1902 464
## 206 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1986 548
## 207 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1912 480
## 208 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2009 846
## 209 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2009 835
## 210 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2011 869
## 211 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1902 161
## 212 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1901 293
## 213 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1959 72
## 214 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1946 506
## 215 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1938 46
## 216 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2014 909
## 217 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2001 738
## 218 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1995 454
## 219 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2000 724
## 220 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2007 821
## 221 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1931 604
## 222 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1954 625
## 223 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1939 47
## 224 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1908 167
## 225 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1951 57
## 226 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1907 471
## 227 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1945 340
## 228 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1973 244
## 229 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1986 127
## 230 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1991 444
## 231 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1933 39
## 232 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2019 983
## 233 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2013 894
## 234 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1936 608
## 235 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1963 78
## 236 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1975 651
## 237 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2012 881
## 238 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1974 649
## 239 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2016 929
## 240 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1995 283
## 241 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1993 556
## 242 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1952 58
## 243 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1964 379
## 244 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1909 14
## 245 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1927 492
## 246 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1998 460
## 247 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2004 786
## 248 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2018 963
## 249 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1962 372
## 250 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1922 180
## 251 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1985 699
## 252 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2013 887
## 253 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1965 380
## 254 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1952 623
## 255 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2008 824
## 256 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1929 494
## 257 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2004 778
## 258 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1939 613
## 259 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1935 193
## 260 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1904 573
## 261 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1901 463
## 262 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1954 358
## 263 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1923 313
## 264 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1995 148
## 265 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1958 222
## 266 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1921 179
## 267 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1908 474
## 268 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1922 487
## 269 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1931 190
## 270 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1974 685
## 271 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1947 508
## 272 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1953 60
## 273 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1918 177
## 274 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1953 355
## 275 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1923 181
## 276 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1982 659
## 277 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1908 12
## 278 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1945 615
## 279 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/2000 734
## 280 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1992 708
## 281 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1973 245
## 282 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1961 371
## 283 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1979 253
## 284 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2001 744
## 285 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1994 280
## 286 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1958 364
## 287 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1925 596
## 288 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1953 514
## 289 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1980 421
## 290 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1943 201
## 291 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1974 405
## 292 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2009 840
## 293 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2006 805
## 294 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1988 439
## 295 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1934 326
## 296 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1982 696
## 297 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2018 964
## 298 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1937 45
## 299 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1967 235
## 300 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1934 327
## 301 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1967 387
## 302 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1992 142
## 303 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1984 430
## 304 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1958 517
## 305 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1972 398
## 306 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1983 697
## 307 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2018 961
## 308 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1999 158
## 309 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1986 128
## 310 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1939 334
## 311 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2007 816
## 312 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1971 240
## 313 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1912 582
## 314 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1988 438
## 315 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1947 344
## 316 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1963 635
## 317 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1906 576
## 318 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1963 229
## 319 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1951 213
## 320 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1979 418
## 321 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2006 810
## 322 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1926 597
## 323 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2019 972
## 324 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1909 13
## 325 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1974 684
## 326 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1999 461
## 327 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1999 676
## 328 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1912 17
## 329 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1925 31
## 330 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1926 491
## 331 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2004 777
## 332 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1968 389
## 333 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2002 751
## 334 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1955 626
## 335 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1978 416
## 336 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1970 91
## 337 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1967 88
## 338 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1930 188
## 339 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1989 136
## 340 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1953 354
## 341 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1935 329
## 342 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1929 187
## 343 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2008 823
## 344 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1934 192
## 345 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1989 441
## 346 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/2005 801
## 347 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1990 704
## 348 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1974 650
## 349 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1988 272
## 350 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1913 18
## 351 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1972 647
## 352 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1986 129
## 353 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1927 184
## 354 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1902 2
## 355 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1903 4
## 356 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1927 600
## 357 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1913 481
## 358 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1906 165
## 359 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1943 335
## 360 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1917 587
## 361 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1901 462
## 362 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1973 530
## 363 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1983 260
## 364 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1990 139
## 365 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1905 575
## 366 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1985 262
## 367 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1979 252
## 368 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2000 727
## 369 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1944 338
## 370 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1978 691
## 371 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1946 617
## 372 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1946 342
## 373 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1953 216
## 374 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/2009 844
## 375 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2000 731
## 376 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1949 54
## 377 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2014 907
## 378 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1921 485
## 379 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1998 156
## 380 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1975 408
## 381 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1955 359
## 382 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1958 71
## 383 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1958 721
## 384 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1908 301
## 385 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1977 250
## 386 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/2002 761
## 387 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1904 467
## 388 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2007 818
## 389 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2005 797
## 390 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2017 948
## 391 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1997 564
## 392 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1917 482
## 393 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1969 527
## 394 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1985 547
## 395 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1935 194
## 396 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1932 191
## 397 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2004 781
## 398 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1978 654
## 399 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2014 906
## 400 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1944 49
## 401 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1933 606
## 402 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1904 296
## 403 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1973 98
## 404 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1961 633
## 405 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1987 130
## 406 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1963 80
## 407 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/2003 763
## 408 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1989 440
## 409 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2016 930
## 410 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2005 790
## 411 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1906 10
## 412 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1922 592
## 413 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2000 728
## 414 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1988 134
## 415 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2009 837
## 416 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1901 160
## 417 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2017 944
## 418 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1965 382
## 419 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1996 715
## 420 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1946 204
## 421 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1935 41
## 422 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1980 116
## 423 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1977 690
## 424 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2013 884
## 425 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1925 30
## 426 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2000 732
## 427 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1986 700
## 428 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2018 958
## 429 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2019 973
## 430 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1975 104
## 431 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1981 695
## 432 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1962 373
## 433 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1969 678
## 434 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1931 496
## 435 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1959 223
## 436 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1984 661
## 437 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1926 32
## 438 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1980 420
## 439 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2014 915
## 440 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/2008 832
## 441 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1987 268
## 442 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1964 637
## 443 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2016 931
## 444 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2017 938
## 445 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1997 289
## 446 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1990 138
## 447 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1985 263
## 448 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2002 762
## 449 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2017 945
## 450 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1997 565
## 451 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1988 270
## 452 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1910 15
## 453 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1926 316
## 454 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1919 24
## 455 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1944 614
## 456 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2002 756
## 457 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2019 976
## 458 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1956 66
## 459 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1994 711
## 460 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1962 227
## 461 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2006 804
## 462 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1986 266
## 463 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1951 56
## 464 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1975 247
## 465 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2002 752
## 466 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1997 288
## 467 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1954 356
## 468 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1994 712
## 469 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1932 605
## 470 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1946 205
## 471 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1977 109
## 472 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1998 566
## 473 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2005 792
## 474 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1923 314
## 475 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2014 903
## 476 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1998 291
## 477 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1972 681
## 478 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1946 507
## 479 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1982 427
## 480 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1962 634
## 481 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1904 574
## 482 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1996 563
## 483 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1998 675
## 484 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1987 664
## 485 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1990 442
## 486 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2001 746
## 487 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1944 337
## 488 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1993 144
## 489 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1985 433
## 490 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1995 560
## 491 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1958 366
## 492 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2016 934
## 493 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1956 627
## 494 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2011 862
## 495 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1919 309
## 496 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1965 85
## 497 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1970 396
## 498 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1927 317
## 499 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1987 131
## 500 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1981 120
## 501 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2014 913
## 502 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1917 586
## 503 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1930 321
## 504 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1973 400
## 505 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1963 228
## 506 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1993 278
## 507 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/2017 947
## 508 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1967 386
## 509 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1981 257
## 510 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1982 121
## 511 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1972 682
## 512 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1994 671
## 513 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2000 725
## 514 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2017 943
## 515 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1908 473
## 516 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1985 126
## 517 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1920 589
## 518 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2001 749
## 519 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2002 757
## 520 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1964 378
## 521 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1973 401
## 522 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2010 850
## 523 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1950 211
## 524 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2002 758
## 525 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1968 236
## 526 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2013 895
## 527 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1915 21
## 528 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1980 694
## 529 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1973 531
## 530 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1963 523
## 531 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1983 545
## 532 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2001 735
## 533 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1973 97
## 534 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1920 484
## 535 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1951 512
## 536 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1988 132
## 537 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1972 95
## 538 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2007 820
## 539 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1975 686
## 540 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1939 200
## 541 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1957 516
## 542 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1962 77
## 543 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2011 870
## 544 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2004 775
## 545 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1962 217
## 546 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2010 855
## 547 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2012 883
## 548 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1949 510
## 549 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1904 8
## 550 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1957 221
## 551 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1929 36
## 552 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1998 459
## 553 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1970 92
## 554 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1907 472
## 555 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2008 825
## 556 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1927 493
## 557 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1934 607
## 558 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1968 89
## 559 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1970 239
## 560 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2019 977
## 561 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1976 536
## 562 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2008 827
## 563 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2014 914
## 564 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1967 233
## 565 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1924 29
## 566 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1963 79
## 567 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1903 6
## 568 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1995 282
## 569 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2007 811
## 570 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/2010 854
## 571 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1968 390
## 572 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2008 830
## 573 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2013 889
## 574 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1995 147
## 575 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1964 524
## 576 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1994 451
## 577 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1974 100
## 578 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1999 159
## 579 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2008 833
## 580 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2002 754
## 581 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1988 702
## 582 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1911 581
## 583 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1962 374
## 584 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1954 61
## 585 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1969 391
## 586 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1962 226
## 587 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1918 23
## 588 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1951 352
## 589 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1914 19
## 590 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2014 904
## 591 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1999 568
## 592 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1961 225
## 593 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1988 133
## 594 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1978 539
## 595 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1990 705
## 596 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2019 984
## 597 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2013 890
## 598 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2017 939
## 599 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1985 432
## 600 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1993 279
## 601 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2017 940
## 602 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2019 974
## 603 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1967 641
## 604 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1990 552
## 605 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1965 638
## 606 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1976 688
## 607 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/2012 880
## 608 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2005 798
## 609 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1979 540
## 610 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2006 809
## 611 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1969 90
## 612 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1997 718
## 613 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2018 967
## 614 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1991 668
## 615 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1988 665
## 616 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1938 503
## 617 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1930 495
## 618 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2015 925
## 619 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1966 640
## 620 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1993 555
## 621 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1931 497
## 622 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1981 118
## 623 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1964 82
## 624 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1922 27
## 625 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1984 429
## 626 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1903 295
## 627 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1973 402
## 628 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1956 220
## 629 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1970 528
## 630 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1989 135
## 631 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1937 196
## 632 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1990 667
## 633 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1969 238
## 634 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1979 655
## 635 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1954 515
## 636 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/2018 979
## 637 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2009 847
## 638 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2016 935
## 639 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2007 813
## 640 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2013 893
## 641 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/2006 808
## 642 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2008 829
## 643 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1987 549
## 644 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1950 210
## 645 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1944 202
## 646 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1936 331
## 647 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1922 312
## 648 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1943 48
## 649 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1910 169
## 650 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1931 322
## 651 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1959 73
## 652 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1928 35
## 653 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1971 645
## 654 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1951 622
## 655 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1948 53
## 656 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/2014 912
## 657 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1973 648
## 658 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1970 679
## 659 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1933 40
## 660 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1980 254
## 661 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2003 764
## 662 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1997 287
## 663 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1908 302
## 664 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2000 723
## 665 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1909 476
## 666 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1910 580
## 667 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1995 281
## 668 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1974 246
## 669 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1937 197
## 670 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2008 834
## 671 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2018 969
## 672 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2015 922
## 673 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1948 346
## 674 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1912 173
## 675 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1958 70
## 676 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1938 610
## 677 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1946 51
## 678 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1910 477
## 679 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2010 856
## 680 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2003 769
## 681 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1996 455
## 682 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1936 195
## 683 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2007 815
## 684 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/2019 980
## 685 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2013 888
## 686 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1960 370
## 687 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1978 251
## 688 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1966 383
## 689 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1959 518
## 690 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1950 351
## 691 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1977 107
## 692 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1905 9
## 693 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1993 449
## 694 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1903 5
## 695 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1991 141
## 696 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1902 3
## 697 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1955 64
## 698 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1995 561
## 699 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1978 110
## 700 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1913 583
## 701 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1969 677
## 702 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1967 385
## 703 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2017 941
## 704 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1950 511
## 705 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2011 863
## 706 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1903 466
## 707 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2013 885
## 708 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2002 753
## 709 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1994 713
## 710 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1975 407
## 711 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1968 526
## 712 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2002 755
## 713 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2004 774
## 714 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1996 286
## 715 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1990 140
## 716 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2010 851
## 717 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2017 949
## 718 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2017 946
## 719 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1993 448
## 720 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1938 198
## 721 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1952 215
## 722 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1965 86
## 723 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1991 276
## 724 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2005 796
## 725 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1984 698
## 726 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1915 176
## 727 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1925 182
## 728 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1992 554
## 729 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1986 435
## 730 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1981 258
## 731 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1923 28
## 732 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1998 155
## 733 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1965 231
## 734 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1914 308
## 735 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1997 717
## 736 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1996 151
## 737 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1937 502
## 738 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1995 714
## 739 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1996 284
## 740 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2003 771
## 741 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1998 458
## 742 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2010 848
## 743 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2005 795
## 744 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1961 75
## 745 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1988 271
## 746 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2005 799
## 747 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2012 878
## 748 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2013 896
## 749 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1905 297
## 750 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1987 701
## 751 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1999 720
## 752 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1966 232
## 753 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1972 96
## 754 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1993 709
## 755 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1968 388
## 756 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1978 112
## 757 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2003 770
## 758 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1972 399
## 759 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2007 822
## 760 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2006 806
## 761 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1977 411
## 762 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1937 609
## 763 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1981 422
## 764 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2008 831
## 765 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1996 456
## 766 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1915 584
## 767 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1967 234
## 768 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1991 707
## 769 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1902 294
## 770 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1977 413
## 771 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2005 791
## 772 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1908 578
## 773 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1961 76
## 774 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1992 277
## 775 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1907 577
## 776 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1993 143
## 777 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2001 742
## 778 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1960 631
## 779 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1969 393
## 780 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1959 630
## 781 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1969 643
## 782 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1976 106
## 783 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1906 299
## 784 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2015 917
## 785 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1976 652
## 786 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2011 864
## 787 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1995 672
## 788 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1974 532
## 789 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1909 579
## 790 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1952 353
## 791 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2012 876
## 792 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1959 367
## 793 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1979 113
## 794 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1994 558
## 795 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2012 875
## 796 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2003 773
## 797 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1966 639
## 798 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2014 908
## 799 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1989 273
## 800 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1928 601
## 801 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1971 680
## 802 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1984 125
## 803 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1965 84
## 804 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1930 603
## 805 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1945 339
## 806 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1979 693
## 807 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1925 488
## 808 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1970 394
## 809 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1930 37
## 810 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1932 323
## 811 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1956 219
## 812 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1960 369
## 813 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1929 320
## 814 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2018 965
## 815 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1996 285
## 816 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1936 330
## 817 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1945 341
## 818 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2016 932
## 819 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1988 437
## 820 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2012 874
## 821 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1963 375
## 822 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2007 812
## 823 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1977 108
## 824 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1933 498
## 825 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2001 737
## 826 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2019 971
## 827 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2003 765
## 828 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1947 207
## 829 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1904 163
## 830 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1972 242
## 831 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1997 457
## 832 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1986 434
## 833 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2014 910
## 834 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1997 152
## 835 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1979 115
## 836 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1983 122
## 837 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1901 569
## 838 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1982 425
## 839 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1987 436
## 840 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1903 162
## 841 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/2015 924
## 842 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2002 750
## 843 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1948 619
## 844 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1950 350
## 845 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2015 919
## 846 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2018 959
## 847 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2011 871
## 848 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1989 551
## 849 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1926 183
## 850 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1909 303
## 851 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1902 571
## 852 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2005 793
## 853 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1906 470
## 854 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1914 175
## 855 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1979 692
## 856 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2009 842
## 857 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2005 800
## 858 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2013 886
## 859 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1933 325
## 860 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1954 357
## 861 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2011 872
## 862 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1929 602
## 863 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1989 274
## 864 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2001 736
## 865 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1975 687
## 866 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1911 478
## 867 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2015 921
## 868 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/2011 868
## 869 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1993 670
## 870 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1981 424
## 871 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2008 828
## 872 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1989 703
## 873 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1957 69
## 874 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2015 918
## 875 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1970 395
## 876 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2001 748
## 877 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1965 525
## 878 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1988 550
## 879 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/2001 747
## 880 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1980 117
## 881 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2009 841
## 882 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1916 585
## 883 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2002 760
## 884 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1977 653
## 885 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1936 42
## 886 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1912 172
## 887 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1955 218
## 888 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2003 767
## 889 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1975 248
## 890 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1980 255
## 891 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1956 67
## 892 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1949 347
## 893 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1998 290
## 894 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1954 62
## 895 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1920 178
## 896 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/2004 783
## 897 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1973 683
## 898 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1946 206
## 899 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1978 414
## 900 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1956 361
## 901 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1932 38
## 902 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1901 1
## 903 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1909 168
## 904 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1911 16
## 905 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1960 224
## 906 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2009 839
## 907 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1924 315
## 908 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1983 123
## 909 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1956 65
## 910 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1915 20
## 911 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1923 593
## 912 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2015 916
## 913 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/2018 968
## 914 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1997 154
## 915 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2014 911
## 916 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1949 209
## 917 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1990 706
## 918 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1949 620
## 919 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2019 970
## 920 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1983 660
## 921 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1972 243
## 922 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2001 741
## 923 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1976 249
## 924 https://masterdataapi.nobelprize.org/2/nobelPrize/med/1934 328
## 925 https://masterdataapi.nobelprize.org/2/nobelPrize/eco/1996 716
## 926 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1955 63
## 927 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1971 529
## 928 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1953 624
## 929 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1996 673
## 930 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1924 594
## 931 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1986 663
## 932 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2001 739
## 933 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1989 137
## 934 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1945 50
## 935 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1919 483
## 936 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1994 557
## 937 https://masterdataapi.nobelprize.org/2/nobelPrize/lit/1968 642
## 938 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1994 559
## 939 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2008 826
## 940 https://masterdataapi.nobelprize.org/2/nobelPrize/med/2016 927
## 941 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1986 265
## 942 https://masterdataapi.nobelprize.org/2/nobelPrize/che/2005 794
## 943 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/2000 726
## 944 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1980 222
## 945 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1944 482
## 946 https://masterdataapi.nobelprize.org/2/nobelPrize/phy/1972 66
## 947 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1954 217
## 948 https://masterdataapi.nobelprize.org/2/nobelPrize/che/1911 6
## 949 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1981 515
## 950 https://masterdataapi.nobelprize.org/2/nobelPrize/pea/1963 482
## name
## 1 A. Michael Spence
## 2 Aage N. Bohr
## 3 Aaron Ciechanover
## 4 Aaron Klug
## 5 Abdus Salam
## 6 Abhijit Banerjee
## 7 Abiy Ahmed Ali
## 8 Ada E. Yonath
## 9 Adam G. Riess
## 10 Adolf Butenandt
## 11 Adolf von Baeyer
## 12 Adolf Windaus
## 13 Adolfo Pérez Esquivel
## 14 Ahmed Zewail
## 15 Akira Suzuki
## 16 Akira Yoshino
## 17 Al Gore
## 18 Alan Heeger
## 19 Alan Hodgkin
## 20 Alan MacDiarmid
## 21 Albert A. Michelson
## 22 Albert Camus
## 23 Albert Claude
## 24 Albert Einstein
## 25 Albert Fert
## 26 Albert Gobat
## 27 Albert Luthuli
## 28 Albert Schweitzer
## 29 Albert Szent-Györgyi
## 30 Albrecht Kossel
## 31 Aleksandr M. Prokhorov
## 32 Alexandr Solzhenitsyn
## 33 Alexei Abrikosov
## 34 Alexis Carrel
## 35 Alfonso García Robles
## 36 Alfred D. Hershey
## 37 Alfred Fried
## 38 Alfred G. Gilman
## 39 Alfred Kastler
## 40 Alfred Werner
## 41 Alice Munro
## 42 Allan M. Cormack
## 43 Allvar Gullstrand
## 44 Alphonse Laveran
## 45 Alva Myrdal
## 46 Alvin E. Roth
## 47 Amartya Sen
## 48 American Friends Service Committee
## 49 Amnesty International
## 50 Anatole France
## 51 André F. Cournand
## 52 Andre Geim
## 53 André Gide
## 54 André Lwoff
## 55 Andrei Sakharov
## 56 Andrew Huxley
## 57 Andrew V. Schally
## 58 Andrew Z. Fire
## 59 Angus Deaton
## 60 Anthony J. Leggett
## 61 Antony Hewish
## 62 Anwar al-Sadat
## 63 Archer J.P. Martin
## 64 Archibald V. Hill
## 65 Arieh Warshel
## 66 Aristide Briand
## 67 Arne Tiselius
## 68 Arno Penzias
## 69 Arthur Ashkin
## 70 Arthur B. McDonald
## 71 Arthur H. Compton
## 72 Arthur Harden
## 73 Arthur Henderson
## 74 Arthur Kornberg
## 75 Arthur L. Schawlow
## 76 Artturi Virtanen
## 77 Arvid Carlsson
## 78 August Krogh
## 79 Auguste Beernaert
## 80 Aung San Suu Kyi
## 81 Avram Hershko
## 82 Aziz Sancar
## 83 Barack H. Obama
## 84 Barbara McClintock
## 85 Barry C. Barish
## 86 Barry J. Marshall
## 87 Barry Sharpless
## 88 Baruch S. Blumberg
## 89 Baruj Benacerraf
## 90 Ben R. Mottelson
## 91 Bengt Holmström
## 92 Bengt I. Samuelsson
## 93 Bernard L. Feringa
## 94 Bernardo Houssay
## 95 Bert Sakmann
## 96 Bertha von Suttner
## 97 Bertil Ohlin
## 98 Bertram N. Brockhouse
## 99 Bertrand Russell
## 100 Betty Williams
## 101 Bjørnstjerne Bjørnson
## 102 Bob Dylan
## 103 Boris Pasternak
## 104 Brian D. Josephson
## 105 Brian Kobilka
## 106 Brian P. Schmidt
## 107 Bruce A. Beutler
## 108 Bruce Merrifield
## 109 Burton Richter
## 110 C.T.R. Wilson
## 111 Camillo Golgi
## 112 Camilo José Cela
## 113 Carl Bosch
## 114 Carl Cori
## 115 Carl D. Anderson
## 116 Carl Spitteler
## 117 Carl von Ossietzky
## 118 Carl Wieman
## 119 Carlo Rubbia
## 120 Carlos Filipe Ximenes Belo
## 121 Carlos Saavedra Lamas
## 122 Carol W. Greider
## 123 Cecil Powell
## 124 César Milstein
## 125 Charles B. Huggins
## 126 Charles Edouard Guillaume
## 127 Charles G. Dawes
## 128 Charles Glover Barkla
## 129 Charles H. Townes
## 130 Charles J. Pedersen
## 131 Charles K. Kao
## 132 Charles Nicolle
## 133 Charles Richet
## 134 Chen Ning Yang
## 135 Christiaan Eijkman
## 136 Christian Anfinsen
## 137 Christian de Duve
## 138 Christian Lange
## 139 Christiane Nüsslein-Volhard
## 140 Christopher A. Pissarides
## 141 Christopher A. Sims
## 142 Claude Cohen-Tannoudji
## 143 Claude Simon
## 144 Clifford G. Shull
## 145 Clinton Davisson
## 146 Clive W.J. Granger
## 147 Cordell Hull
## 148 Corneille Heymans
## 149 Craig C. Mello
## 150 Czeslaw Milosz
## 151 D. Carleton Gajdusek
## 152 Dag Hammarskjöld
## 153 Dale T. Mortensen
## 154 Dan Shechtman
## 155 Daniel Bovet
## 156 Daniel C. Tsui
## 157 Daniel Kahneman
## 158 Daniel L. McFadden
## 159 Daniel Nathans
## 160 Dario Fo
## 161 David Baltimore
## 162 David H. Hubel
## 163 David J. Gross
## 164 David J. Thouless
## 165 David J. Wineland
## 166 David M. Lee
## 167 David Trimble
## 168 Denis Mukwege
## 169 Dennis Gabor
## 170 Derek Barton
## 171 Derek Walcott
## 172 Desmond Tutu
## 173 Dickinson W. Richards
## 174 Didier Queloz
## 175 Donald A. Glaser
## 176 Donald J. Cram
## 177 Donna Strickland
## 178 Doris Lessing
## 179 Dorothy Crowfoot Hodgkin
## 180 Douglas D. Osheroff
## 181 Douglass C. North
## 182 Dudley R. Herschbach
## 183 E. Donnall Thomas
## 184 E. M. Purcell
## 185 Earl W. Sutherland, Jr.
## 186 Edgar Adrian
## 187 Edmond H. Fischer
## 188 Edmund S. Phelps
## 189 Eduard Buchner
## 190 Edvard I. Moser
## 191 Edward A. Doisy
## 192 Edward B. Lewis
## 193 Edward C. Kendall
## 194 Edward C. Prescott
## 195 Edward Tatum
## 196 Edward V. Appleton
## 197 Edwin G. Krebs
## 198 Edwin M. McMillan
## 199 Egas Moniz
## 200 Ei-ichi Negishi
## 201 Eisaku Sato
## 202 Elfriede Jelinek
## 203 Elias Canetti
## 204 Elias James Corey
## 205 Élie Ducommun
## 206 Elie Wiesel
## 207 Elihu Root
## 208 Elinor Ostrom
## 209 Elizabeth H. Blackburn
## 210 Ellen Johnson Sirleaf
## 211 Emil Fischer
## 212 Emil von Behring
## 213 Emilio Segrè
## 214 Emily Greene Balch
## 215 Enrico Fermi
## 216 Eric Betzig
## 217 Eric Cornell
## 218 Eric F. Wieschaus
## 219 Eric Kandel
## 220 Eric S. Maskin
## 221 Erik Axel Karlfeldt
## 222 Ernest Hemingway
## 223 Ernest Lawrence
## 224 Ernest Rutherford
## 225 Ernest T.S. Walton
## 226 Ernesto Teodoro Moneta
## 227 Ernst B. Chain
## 228 Ernst Otto Fischer
## 229 Ernst Ruska
## 230 Erwin Neher
## 231 Erwin Schrödinger
## 232 Esther Duflo
## 233 Eugene F. Fama
## 234 Eugene O'Neill
## 235 Eugene Wigner
## 236 Eugenio Montale
## 237 European Union (EU)
## 238 Eyvind Johnson
## 239 F. Duncan M. Haldane
## 240 F. Sherwood Rowland
## 241 F.W. de Klerk
## 242 Felix Bloch
## 243 Feodor Lynen
## 244 Ferdinand Braun
## 245 Ferdinand Buisson
## 246 Ferid Murad
## 247 Finn E. Kydland
## 248 Frances H. Arnold
## 249 Francis Crick
## 250 Francis W. Aston
## 251 Franco Modigliani
## 252 François Englert
## 253 François Jacob
## 254 François Mauriac
## 255 Françoise Barré-Sinoussi
## 256 Frank B. Kellogg
## 257 Frank Wilczek
## 258 Frans Eemil Sillanpää
## 259 Frédéric Joliot
## 260 Frédéric Mistral
## 261 Frédéric Passy
## 262 Frederick C. Robbins
## 263 Frederick G. Banting
## 264 Frederick Reines
## 265 Frederick Sanger
## 266 Frederick Soddy
## 267 Fredrik Bajer
## 268 Fridtjof Nansen
## 269 Friedrich Bergius
## 270 Friedrich von Hayek
## 271 Friends Service Council
## 272 Frits Zernike
## 273 Fritz Haber
## 274 Fritz Lipmann
## 275 Fritz Pregl
## 276 Gabriel García Márquez
## 277 Gabriel Lippmann
## 278 Gabriela Mistral
## 279 Gao Xingjian
## 280 Gary Becker
## 281 Geoffrey Wilkinson
## 282 Georg von Békésy
## 283 Georg Wittig
## 284 George A. Akerlof
## 285 George A. Olah
## 286 George Beadle
## 287 George Bernard Shaw
## 288 George C. Marshall
## 289 George D. Snell
## 290 George de Hevesy
## 291 George E. Palade
## 292 George E. Smith
## 293 George F. Smoot
## 294 George H. Hitchings
## 295 George H. Whipple
## 296 George J. Stigler
## 297 George P. Smith
## 298 George Paget Thomson
## 299 George Porter
## 300 George R. Minot
## 301 George Wald
## 302 Georges Charpak
## 303 Georges J.F. Köhler
## 304 Georges Pire
## 305 Gerald M. Edelman
## 306 Gerard Debreu
## 307 Gérard Mourou
## 308 Gerardus 't Hooft
## 309 Gerd Binnig
## 310 Gerhard Domagk
## 311 Gerhard Ertl
## 312 Gerhard Herzberg
## 313 Gerhart Hauptmann
## 314 Gertrude B. Elion
## 315 Gerty Cori
## 316 Giorgos Seferis
## 317 Giosuè Carducci
## 318 Giulio Natta
## 319 Glenn T. Seaborg
## 320 Godfrey N. Hounsfield
## 321 Grameen Bank
## 322 Grazia Deledda
## 323 Gregg L. Semenza
## 324 Guglielmo Marconi
## 325 Gunnar Myrdal
## 326 Günter Blobel
## 327 Günter Grass
## 328 Gustaf Dalén
## 329 Gustav Hertz
## 330 Gustav Stresemann
## 331 H. David Politzer
## 332 H. Gobind Khorana
## 333 H. Robert Horvitz
## 334 Halldór Laxness
## 335 Hamilton O. Smith
## 336 Hannes Alfvén
## 337 Hans Bethe
## 338 Hans Fischer
## 339 Hans G. Dehmelt
## 340 Hans Krebs
## 341 Hans Spemann
## 342 Hans von Euler-Chelpin
## 343 Harald zur Hausen
## 344 Harold C. Urey
## 345 Harold E. Varmus
## 346 Harold Pinter
## 347 Harry M. Markowitz
## 348 Harry Martinson
## 349 Hartmut Michel
## 350 Heike Kamerlingh Onnes
## 351 Heinrich Böll
## 352 Heinrich Rohrer
## 353 Heinrich Wieland
## 354 Hendrik A. Lorentz
## 355 Henri Becquerel
## 356 Henri Bergson
## 357 Henri La Fontaine
## 358 Henri Moissan
## 359 Henrik Dam
## 360 Henrik Pontoppidan
## 361 Henry Dunant
## 362 Henry Kissinger
## 363 Henry Taube
## 364 Henry W. Kendall
## 365 Henryk Sienkiewicz
## 366 Herbert A. Hauptman
## 367 Herbert C. Brown
## 368 Herbert Kroemer
## 369 Herbert S. Gasser
## 370 Herbert Simon
## 371 Hermann Hesse
## 372 Hermann J. Muller
## 373 Hermann Staudinger
## 374 Herta Müller
## 375 Hideki Shirakawa
## 376 Hideki Yukawa
## 377 Hiroshi Amano
## 378 Hjalmar Branting
## 379 Horst L. Störmer
## 380 Howard M. Temin
## 381 Hugo Theorell
## 382 Igor Y. Tamm
## 383 Il´ja M. Frank
## 384 Ilya Mechnikov
## 385 Ilya Prigogine
## 386 Imre Kertész
## 387 Institute of International Law
## 388 Intergovernmental Panel on Climate Change
## 389 International Atomic Energy Agency
## 390 International Campaign to Abolish Nuclear Weapons (ICAN)
## 391 International Campaign to Ban Landmines
## 392 International Committee of the Red Cross
## 393 International Labour Organization
## 394 International Physicians for the Prevention of Nuclear War
## 395 Irène Joliot-Curie
## 396 Irving Langmuir
## 397 Irwin Rose
## 398 Isaac Bashevis Singer
## 399 Isamu Akasaki
## 400 Isidor Isaac Rabi
## 401 Ivan Bunin
## 402 Ivan Pavlov
## 403 Ivar Giaever
## 404 Ivo Andric
## 405 J. Georg Bednorz
## 406 J. Hans D. Jensen
## 407 J. M. Coetzee
## 408 J. Michael Bishop
## 409 J. Michael Kosterlitz
## 410 J. Robin Warren
## 411 J.J. Thomson
## 412 Jacinto Benavente
## 413 Jack Kilby
## 414 Jack Steinberger
## 415 Jack W. Szostak
## 416 Jacobus H. van 't Hoff
## 417 Jacques Dubochet
## 418 Jacques Monod
## 419 James A. Mirrlees
## 420 James B. Sumner
## 421 James Chadwick
## 422 James Cronin
## 423 James E. Meade
## 424 James E. Rothman
## 425 James Franck
## 426 James J. Heckman
## 427 James M. Buchanan Jr.
## 428 James P. Allison
## 429 James Peebles
## 430 James Rainwater
## 431 James Tobin
## 432 James Watson
## 433 Jan Tinbergen
## 434 Jane Addams
## 435 Jaroslav Heyrovsky
## 436 Jaroslav Seifert
## 437 Jean Baptiste Perrin
## 438 Jean Dausset
## 439 Jean Tirole
## 440 Jean-Marie Gustave Le Clézio
## 441 Jean-Marie Lehn
## 442 Jean-Paul Sartre
## 443 Jean-Pierre Sauvage
## 444 Jeffrey C. Hall
## 445 Jens C. Skou
## 446 Jerome I. Friedman
## 447 Jerome Karle
## 448 Jimmy Carter
## 449 Joachim Frank
## 450 Jody Williams
## 451 Johann Deisenhofer
## 452 Johannes Diderik van der Waals
## 453 Johannes Fibiger
## 454 Johannes Stark
## 455 Johannes V. Jensen
## 456 John B. Fenn
## 457 John B. Goodenough
## 458 John Bardeen
## 459 John C. Harsanyi
## 460 John C. Kendrew
## 461 John C. Mather
## 462 John C. Polanyi
## 463 John Cockcroft
## 464 John Cornforth
## 465 John E. Sulston
## 466 John E. Walker
## 467 John F. Enders
## 468 John F. Nash Jr.
## 469 John Galsworthy
## 470 John H. Northrop
## 471 John H. van Vleck
## 472 John Hume
## 473 John L. Hall
## 474 John Macleod
## 475 John O'Keefe
## 476 John Pople
## 477 John R. Hicks
## 478 John R. Mott
## 479 John R. Vane
## 480 John Steinbeck
## 481 José Echegaray
## 482 José Ramos-Horta
## 483 José Saramago
## 484 Joseph Brodsky
## 485 Joseph E. Murray
## 486 Joseph E. Stiglitz
## 487 Joseph Erlanger
## 488 Joseph H. Taylor Jr.
## 489 Joseph L. Goldstein
## 490 Joseph Rotblat
## 491 Joshua Lederberg
## 492 Juan Manuel Santos
## 493 Juan Ramón Jiménez
## 494 Jules A. Hoffmann
## 495 Jules Bordet
## 496 Julian Schwinger
## 497 Julius Axelrod
## 498 Julius Wagner-Jauregg
## 499 K. Alex Müller
## 500 Kai M. Siegbahn
## 501 Kailash Satyarthi
## 502 Karl Gjellerup
## 503 Karl Landsteiner
## 504 Karl von Frisch
## 505 Karl Ziegler
## 506 Kary B. Mullis
## 507 Kazuo Ishiguro
## 508 Keffer Hartline
## 509 Kenichi Fukui
## 510 Kenneth G. Wilson
## 511 Kenneth J. Arrow
## 512 Kenzaburo Oe
## 513 Kim Dae-jung
## 514 Kip S. Thorne
## 515 Klas Pontus Arnoldson
## 516 Klaus von Klitzing
## 517 Knut Hamsun
## 518 Kofi Annan
## 519 Koichi Tanaka
## 520 Konrad Bloch
## 521 Konrad Lorenz
## 522 Konstantin Novoselov
## 523 Kurt Alder
## 524 Kurt Wüthrich
## 525 Lars Onsager
## 526 Lars Peter Hansen
## 527 Lawrence Bragg
## 528 Lawrence R. Klein
## 529 Le Duc Tho
## 530 League of Red Cross Societies
## 531 Lech Walesa
## 532 Leland Hartwell
## 533 Leo Esaki
## 534 Léon Bourgeois
## 535 Léon Jouhaux
## 536 Leon M. Lederman
## 537 Leon N. Cooper
## 538 Leonid Hurwicz
## 539 Leonid Vitaliyevich Kantorovich
## 540 Leopold Ruzicka
## 541 Lester Bowles Pearson
## 542 Lev Landau
## 543 Leymah Gbowee
## 544 Linda B. Buck
## 545 Linus Pauling
## 546 Liu Xiaobo
## 547 Lloyd S. Shapley
## 548 Lord Boyd Orr
## 549 Lord Rayleigh
## 550 Lord Todd
## 551 Louis de Broglie
## 552 Louis J. Ignarro
## 553 Louis Néel
## 554 Louis Renault
## 555 Luc Montagnier
## 556 Ludwig Quidde
## 557 Luigi Pirandello
## 558 Luis Alvarez
## 559 Luis Leloir
## 560 M. Stanley Whittingham
## 561 Mairead Corrigan
## 562 Makoto Kobayashi
## 563 Malala Yousafzai
## 564 Manfred Eigen
## 565 Manne Siegbahn
## 566 Maria Goeppert Mayer
## 567 Marie Curie
## 568 Mario J. Molina
## 569 Mario R. Capecchi
## 570 Mario Vargas Llosa
## 571 Marshall W. Nirenberg
## 572 Martin Chalfie
## 573 Martin Karplus
## 574 Martin L. Perl
## 575 Martin Luther King Jr.
## 576 Martin Rodbell
## 577 Martin Ryle
## 578 Martinus J.G. Veltman
## 579 Martti Ahtisaari
## 580 Masatoshi Koshiba
## 581 Maurice Allais
## 582 Maurice Maeterlinck
## 583 Maurice Wilkins
## 584 Max Born
## 585 Max Delbrück
## 586 Max F. Perutz
## 587 Max Planck
## 588 Max Theiler
## 589 Max von Laue
## 590 May-Britt Moser
## 591 Médecins Sans Frontières
## 592 Melvin Calvin
## 593 Melvin Schwartz
## 594 Menachem Begin
## 595 Merton H. Miller
## 596 Michael Kremer
## 597 Michael Levitt
## 598 Michael Rosbash
## 599 Michael S. Brown
## 600 Michael Smith
## 601 Michael W. Young
## 602 Michel Mayor
## 603 Miguel Angel Asturias
## 604 Mikhail Gorbachev
## 605 Mikhail Sholokhov
## 606 Milton Friedman
## 607 Mo Yan
## 608 Mohamed ElBaradei
## 609 Mother Teresa
## 610 Muhammad Yunus
## 611 Murray Gell-Mann
## 612 Myron Scholes
## 613 Nadia Murad
## 614 Nadine Gordimer
## 615 Naguib Mahfouz
## 616 Nansen International Office for Refugees
## 617 Nathan Söderblom
## 618 National Dialogue Quartet
## 619 Nelly Sachs
## 620 Nelson Mandela
## 621 Nicholas Murray Butler
## 622 Nicolaas Bloembergen
## 623 Nicolay G. Basov
## 624 Niels Bohr
## 625 Niels K. Jerne
## 626 Niels Ryberg Finsen
## 627 Nikolaas Tinbergen
## 628 Nikolay Semenov
## 629 Norman Borlaug
## 630 Norman F. Ramsey
## 631 Norman Haworth
## 632 Octavio Paz
## 633 Odd Hassel
## 634 Odysseus Elytis
## 635 Office of the United Nations High Commissioner for Refugees
## 636 Olga Tokarczuk
## 637 Oliver E. Williamson
## 638 Oliver Hart
## 639 Oliver Smithies
## 640 Organisation for the Prohibition of Chemical Weapons
## 641 Orhan Pamuk
## 642 Osamu Shimomura
## 643 Oscar Arias Sánchez
## 644 Otto Diels
## 645 Otto Hahn
## 646 Otto Loewi
## 647 Otto Meyerhof
## 648 Otto Stern
## 649 Otto Wallach
## 650 Otto Warburg
## 651 Owen Chamberlain
## 652 Owen Willans Richardson
## 653 Pablo Neruda
## 654 Pär Lagerkvist
## 655 Patrick M.S. Blackett
## 656 Patrick Modiano
## 657 Patrick White
## 658 Paul A. Samuelson
## 659 Paul A.M. Dirac
## 660 Paul Berg
## 661 Paul C. Lauterbur
## 662 Paul D. Boyer
## 663 Paul Ehrlich
## 664 Paul Greengard
## 665 Paul Henri d'Estournelles de Constant
## 666 Paul Heyse
## 667 Paul J. Crutzen
## 668 Paul J. Flory
## 669 Paul Karrer
## 670 Paul Krugman
## 671 Paul M. Romer
## 672 Paul Modrich
## 673 Paul Müller
## 674 Paul Sabatier
## 675 Pavel A. Cherenkov
## 676 Pearl Buck
## 677 Percy W. Bridgman
## 678 Permanent International Peace Bureau
## 679 Peter A. Diamond
## 680 Peter Agre
## 681 Peter C. Doherty
## 682 Peter Debye
## 683 Peter Grünberg
## 684 Peter Handke
## 685 Peter Higgs
## 686 Peter Medawar
## 687 Peter Mitchell
## 688 Peyton Rous
## 689 Philip Noel-Baker
## 690 Philip S. Hench
## 691 Philip W. Anderson
## 692 Philipp Lenard
## 693 Phillip A. Sharp
## 694 Pierre Curie
## 695 Pierre-Gilles de Gennes
## 696 Pieter Zeeman
## 697 Polykarp Kusch
## 698 Pugwash Conferences on Science and World Affairs
## 699 Pyotr Kapitsa
## 700 Rabindranath Tagore
## 701 Ragnar Frisch
## 702 Ragnar Granit
## 703 Rainer Weiss
## 704 Ralph Bunche
## 705 Ralph M. Steinman
## 706 Randal Cremer
## 707 Randy W. Schekman
## 708 Raymond Davis Jr.
## 709 Reinhard Selten
## 710 Renato Dulbecco
## 711 René Cassin
## 712 Riccardo Giacconi
## 713 Richard Axel
## 714 Richard E. Smalley
## 715 Richard E. Taylor
## 716 Richard F. Heck
## 717 Richard H. Thaler
## 718 Richard Henderson
## 719 Richard J. Roberts
## 720 Richard Kuhn
## 721 Richard L.M. Synge
## 722 Richard P. Feynman
## 723 Richard R. Ernst
## 724 Richard R. Schrock
## 725 Richard Stone
## 726 Richard Willstätter
## 727 Richard Zsigmondy
## 728 Rigoberta Menchú Tum
## 729 Rita Levi-Montalcini
## 730 Roald Hoffmann
## 731 Robert A. Millikan
## 732 Robert B. Laughlin
## 733 Robert B. Woodward
## 734 Robert Bárány
## 735 Robert C. Merton
## 736 Robert C. Richardson
## 737 Robert Cecil, Viscount Cecil of Chelwood
## 738 Robert E. Lucas Jr.
## 739 Robert F. Curl Jr.
## 740 Robert F. Engle III
## 741 Robert F. Furchgott
## 742 Robert G. Edwards
## 743 Robert H. Grubbs
## 744 Robert Hofstadter
## 745 Robert Huber
## 746 Robert J. Aumann
## 747 Robert J. Lefkowitz
## 748 Robert J. Shiller
## 749 Robert Koch
## 750 Robert M. Solow
## 751 Robert Mundell
## 752 Robert S. Mulliken
## 753 Robert Schrieffer
## 754 Robert W. Fogel
## 755 Robert W. Holley
## 756 Robert Woodrow Wilson
## 757 Roderick MacKinnon
## 758 Rodney R. Porter
## 759 Roger B. Myerson
## 760 Roger D. Kornberg
## 761 Roger Guillemin
## 762 Roger Martin du Gard
## 763 Roger W. Sperry
## 764 Roger Y. Tsien
## 765 Rolf M. Zinkernagel
## 766 Romain Rolland
## 767 Ronald G.W. Norrish
## 768 Ronald H. Coase
## 769 Ronald Ross
## 770 Rosalyn Yalow
## 771 Roy J. Glauber
## 772 Rudolf Eucken
## 773 Rudolf Mössbauer
## 774 Rudolph A. Marcus
## 775 Rudyard Kipling
## 776 Russell A. Hulse
## 777 Ryoji Noyori
## 778 Saint-John Perse
## 779 Salvador E. Luria
## 780 Salvatore Quasimodo
## 781 Samuel Beckett
## 782 Samuel C.C. Ting
## 783 Santiago Ramón y Cajal
## 784 Satoshi Ōmura
## 785 Saul Bellow
## 786 Saul Perlmutter
## 787 Seamus Heaney
## 788 Seán MacBride
## 789 Selma Lagerlöf
## 790 Selman A. Waksman
## 791 Serge Haroche
## 792 Severo Ochoa
## 793 Sheldon Glashow
## 794 Shimon Peres
## 795 Shinya Yamanaka
## 796 Shirin Ebadi
## 797 Shmuel Agnon
## 798 Shuji Nakamura
## 799 Sidney Altman
## 800 Sigrid Undset
## 801 Simon Kuznets
## 802 Simon van der Meer
## 803 Sin-Itiro Tomonaga
## 804 Sinclair Lewis
## 805 Sir Alexander Fleming
## 806 Sir Arthur Lewis
## 807 Sir Austen Chamberlain
## 808 Sir Bernard Katz
## 809 Sir Chandrasekhara Venkata Raman
## 810 Sir Charles Sherrington
## 811 Sir Cyril Hinshelwood
## 812 Sir Frank Macfarlane Burnet
## 813 Sir Frederick Hopkins
## 814 Sir Gregory P. Winter
## 815 Sir Harold Kroto
## 816 Sir Henry Dale
## 817 Sir Howard Florey
## 818 Sir J. Fraser Stoddart
## 819 Sir James W. Black
## 820 Sir John B. Gurdon
## 821 Sir John Eccles
## 822 Sir Martin J. Evans
## 823 Sir Nevill F. Mott
## 824 Sir Norman Angell
## 825 Sir Paul Nurse
## 826 Sir Peter J. Ratcliffe
## 827 Sir Peter Mansfield
## 828 Sir Robert Robinson
## 829 Sir William Ramsay
## 830 Stanford Moore
## 831 Stanley B. Prusiner
## 832 Stanley Cohen
## 833 Stefan W. Hell
## 834 Steven Chu
## 835 Steven Weinberg
## 836 Subramanyan Chandrasekhar
## 837 Sully Prudhomme
## 838 Sune K. Bergström
## 839 Susumu Tonegawa
## 840 Svante Arrhenius
## 841 Svetlana Alexievich
## 842 Sydney Brenner
## 843 T.S. Eliot
## 844 Tadeus Reichstein
## 845 Takaaki Kajita
## 846 Tasuku Honjo
## 847 Tawakkol Karman
## 848 The 14th Dalai Lama
## 849 The Svedberg
## 850 Theodor Kocher
## 851 Theodor Mommsen
## 852 Theodor W. Hänsch
## 853 Theodore Roosevelt
## 854 Theodore W. Richards
## 855 Theodore W. Schultz
## 856 Thomas A. Steitz
## 857 Thomas C. Schelling
## 858 Thomas C. Südhof
## 859 Thomas H. Morgan
## 860 Thomas H. Weller
## 861 Thomas J. Sargent
## 862 Thomas Mann
## 863 Thomas R. Cech
## 864 Tim Hunt
## 865 Tjalling C. Koopmans
## 866 Tobias Asser
## 867 Tomas Lindahl
## 868 Tomas Tranströmer
## 869 Toni Morrison
## 870 Torsten N. Wiesel
## 871 Toshihide Maskawa
## 872 Trygve Haavelmo
## 873 Tsung-Dao Lee
## 874 Tu Youyou
## 875 Ulf von Euler
## 876 United Nations
## 877 United Nations Children's Fund
## 878 United Nations Peacekeeping Forces
## 879 V. S. Naipaul
## 880 Val Fitch
## 881 Venkatraman Ramakrishnan
## 882 Verner von Heidenstam
## 883 Vernon L. Smith
## 884 Vicente Aleixandre
## 885 Victor F. Hess
## 886 Victor Grignard
## 887 Vincent du Vigneaud
## 888 Vitaly L. Ginzburg
## 889 Vladimir Prelog
## 890 Walter Gilbert
## 891 Walter H. Brattain
## 892 Walter Hess
## 893 Walter Kohn
## 894 Walther Bothe
## 895 Walther Nernst
## 896 Wangari Maathai
## 897 Wassily Leontief
## 898 Wendell M. Stanley
## 899 Werner Arber
## 900 Werner Forssmann
## 901 Werner Heisenberg
## 902 Wilhelm Conrad Röntgen
## 903 Wilhelm Ostwald
## 904 Wilhelm Wien
## 905 Willard F. Libby
## 906 Willard S. Boyle
## 907 Willem Einthoven
## 908 William A. Fowler
## 909 William B. Shockley
## 910 William Bragg
## 911 William Butler Yeats
## 912 William C. Campbell
## 913 William D. Nordhaus
## 914 William D. Phillips
## 915 William E. Moerner
## 916 William F. Giauque
## 917 William F. Sharpe
## 918 William Faulkner
## 919 William G. Kaelin Jr
## 920 William Golding
## 921 William H. Stein
## 922 William Knowles
## 923 William Lipscomb
## 924 William P. Murphy
## 925 William Vickrey
## 926 Willis E. Lamb
## 927 Willy Brandt
## 928 Winston Churchill
## 929 Wislawa Szymborska
## 930 Wladyslaw Reymont
## 931 Wole Soyinka
## 932 Wolfgang Ketterle
## 933 Wolfgang Paul
## 934 Wolfgang Pauli
## 935 Woodrow Wilson
## 936 Yasser Arafat
## 937 Yasunari Kawabata
## 938 Yitzhak Rabin
## 939 Yoichiro Nambu
## 940 Yoshinori Ohsumi
## 941 Yuan T. Lee
## 942 Yves Chauvin
## 943 Zhores Alferov
## 944 Frederick Sanger
## 945 International Committee of the Red Cross
## 946 John Bardeen
## 947 Linus Pauling
## 948 Marie Curie
## 949 Office of the United Nations High Commissioner for Refugees
## 950 International Committee of the Red Cross
## knownName givenName
## 1 A. Michael Spence A. Michael
## 2 Aage N. Bohr Aage N.
## 3 Aaron Ciechanover Aaron
## 4 Aaron Klug Aaron
## 5 Abdus Salam Abdus
## 6 Abhijit Banerjee Abhijit
## 7 Abiy Ahmed Ali Abiy
## 8 Ada E. Yonath Ada E.
## 9 Adam G. Riess Adam G.
## 10 Adolf Butenandt Adolf
## 11 Adolf von Baeyer Adolf
## 12 Adolf Windaus Adolf
## 13 Adolfo Pérez Esquivel Adolfo
## 14 Ahmed Zewail Ahmed
## 15 Akira Suzuki Akira
## 16 Akira Yoshino Akira
## 17 Al Gore Al
## 18 Alan Heeger Alan
## 19 Alan Hodgkin Alan
## 20 Alan MacDiarmid Alan
## 21 Albert A. Michelson Albert A.
## 22 Albert Camus Albert
## 23 Albert Claude Albert
## 24 Albert Einstein Albert
## 25 Albert Fert Albert
## 26 Albert Gobat Albert
## 27 Albert Luthuli Albert
## 28 Albert Schweitzer Albert
## 29 Albert Szent-Györgyi Albert
## 30 Albrecht Kossel Albrecht
## 31 Aleksandr M. Prokhorov Aleksandr M.
## 32 Alexandr Solzhenitsyn Alexandr
## 33 Alexei Abrikosov Alexei
## 34 Alexis Carrel Alexis
## 35 Alfonso García Robles Alfonso
## 36 Alfred D. Hershey Alfred D.
## 37 Alfred Fried Alfred
## 38 Alfred G. Gilman Alfred G.
## 39 Alfred Kastler Alfred
## 40 Alfred Werner Alfred
## 41 Alice Munro Alice
## 42 Allan M. Cormack Allan M.
## 43 Allvar Gullstrand Allvar
## 44 Alphonse Laveran Alphonse
## 45 Alva Myrdal Alva
## 46 Alvin E. Roth Alvin E.
## 47 Amartya Sen Amartya
## 48
## 49
## 50 Anatole France Anatole
## 51 André F. Cournand André F.
## 52 Andre Geim Andre
## 53 André Gide André
## 54 André Lwoff André
## 55 Andrei Sakharov Andrei
## 56 Andrew Huxley Andrew
## 57 Andrew V. Schally Andrew V.
## 58 Andrew Z. Fire Andrew Z.
## 59 Angus Deaton Angus
## 60 Anthony J. Leggett Anthony J.
## 61 Antony Hewish Antony
## 62 Anwar al-Sadat Anwar
## 63 Archer J.P. Martin Archer J.P.
## 64 Archibald V. Hill Archibald V.
## 65 Arieh Warshel Arieh
## 66 Aristide Briand Aristide
## 67 Arne Tiselius Arne
## 68 Arno Penzias Arno
## 69 Arthur Ashkin Arthur
## 70 Arthur B. McDonald Arthur B.
## 71 Arthur H. Compton Arthur H.
## 72 Arthur Harden Arthur
## 73 Arthur Henderson Arthur
## 74 Arthur Kornberg Arthur
## 75 Arthur L. Schawlow Arthur L.
## 76 Artturi Virtanen Artturi
## 77 Arvid Carlsson Arvid
## 78 August Krogh August
## 79 Auguste Beernaert Auguste
## 80 Aung San Suu Kyi Aung San Suu Kyi
## 81 Avram Hershko Avram
## 82 Aziz Sancar Aziz
## 83 Barack H. Obama Barack
## 84 Barbara McClintock Barbara
## 85 Barry C. Barish Barry C.
## 86 Barry J. Marshall Barry J.
## 87 Barry Sharpless Barry
## 88 Baruch S. Blumberg Baruch S.
## 89 Baruj Benacerraf Baruj
## 90 Ben R. Mottelson Ben R.
## 91 Bengt Holmström Bengt
## 92 Bengt I. Samuelsson Bengt I.
## 93 Bernard L. Feringa Bernard L.
## 94 Bernardo Houssay Bernardo
## 95 Bert Sakmann Bert
## 96 Bertha von Suttner Bertha
## 97 Bertil Ohlin Bertil
## 98 Bertram N. Brockhouse Bertram N.
## 99 Bertrand Russell Bertrand
## 100 Betty Williams Betty
## 101 Bjørnstjerne Bjørnson Bjørnstjerne
## 102 Bob Dylan Bob
## 103 Boris Pasternak Boris
## 104 Brian D. Josephson Brian D.
## 105 Brian Kobilka Brian
## 106 Brian P. Schmidt Brian P.
## 107 Bruce A. Beutler Bruce A.
## 108 Bruce Merrifield Bruce
## 109 Burton Richter Burton
## 110 C.T.R. Wilson C.T.R.
## 111 Camillo Golgi Camillo
## 112 Camilo José Cela Camilo José
## 113 Carl Bosch Carl
## 114 Carl Cori Carl
## 115 Carl D. Anderson Carl D.
## 116 Carl Spitteler Carl
## 117 Carl von Ossietzky Carl
## 118 Carl Wieman Carl
## 119 Carlo Rubbia Carlo
## 120 Carlos Filipe Ximenes Belo Carlos Filipe Ximenes
## 121 Carlos Saavedra Lamas Carlos
## 122 Carol W. Greider Carol W.
## 123 Cecil Powell Cecil
## 124 César Milstein César
## 125 Charles B. Huggins Charles B.
## 126 Charles Edouard Guillaume Charles Edouard
## 127 Charles G. Dawes Charles G.
## 128 Charles Glover Barkla Charles Glover
## 129 Charles H. Townes Charles H.
## 130 Charles J. Pedersen Charles J.
## 131 Charles K. Kao Charles K.
## 132 Charles Nicolle Charles
## 133 Charles Richet Charles
## 134 Chen Ning Yang Chen Ning
## 135 Christiaan Eijkman Christiaan
## 136 Christian Anfinsen Christian
## 137 Christian de Duve Christian
## 138 Christian Lange Christian
## 139 Christiane Nüsslein-Volhard Christiane
## 140 Christopher A. Pissarides Christopher A.
## 141 Christopher A. Sims Christopher A.
## 142 Claude Cohen-Tannoudji Claude
## 143 Claude Simon Claude
## 144 Clifford G. Shull Clifford G.
## 145 Clinton Davisson Clinton
## 146 Clive W.J. Granger Clive W.J.
## 147 Cordell Hull Cordell
## 148 Corneille Heymans Corneille
## 149 Craig C. Mello Craig C.
## 150 Czeslaw Milosz Czeslaw
## 151 D. Carleton Gajdusek D. Carleton
## 152 Dag Hammarskjöld Dag
## 153 Dale T. Mortensen Dale T.
## 154 Dan Shechtman Dan
## 155 Daniel Bovet Daniel
## 156 Daniel C. Tsui Daniel C.
## 157 Daniel Kahneman Daniel
## 158 Daniel L. McFadden Daniel L.
## 159 Daniel Nathans Daniel
## 160 Dario Fo Dario
## 161 David Baltimore David
## 162 David H. Hubel David H.
## 163 David J. Gross David J.
## 164 David J. Thouless David J.
## 165 David J. Wineland David J.
## 166 David M. Lee David M.
## 167 David Trimble David
## 168 Denis Mukwege Denis
## 169 Dennis Gabor Dennis
## 170 Derek Barton Derek
## 171 Derek Walcott Derek
## 172 Desmond Tutu Desmond
## 173 Dickinson W. Richards Dickinson W.
## 174 Didier Queloz Didier
## 175 Donald A. Glaser Donald A.
## 176 Donald J. Cram Donald J.
## 177 Donna Strickland Donna
## 178 Doris Lessing Doris
## 179 Dorothy Crowfoot Hodgkin Dorothy Crowfoot
## 180 Douglas D. Osheroff Douglas D.
## 181 Douglass C. North Douglass C.
## 182 Dudley R. Herschbach Dudley R.
## 183 E. Donnall Thomas E. Donnall
## 184 E. M. Purcell E. M.
## 185 Earl W. Sutherland, Jr. Earl W.
## 186 Edgar Adrian Edgar
## 187 Edmond H. Fischer Edmond H.
## 188 Edmund S. Phelps Edmund S.
## 189 Eduard Buchner Eduard
## 190 Edvard I. Moser Edvard I.
## 191 Edward A. Doisy Edward A.
## 192 Edward B. Lewis Edward B.
## 193 Edward C. Kendall Edward C.
## 194 Edward C. Prescott Edward C.
## 195 Edward Tatum Edward
## 196 Edward V. Appleton Edward V.
## 197 Edwin G. Krebs Edwin G.
## 198 Edwin M. McMillan Edwin M.
## 199 Egas Moniz Egas
## 200 Ei-ichi Negishi Ei-ichi
## 201 Eisaku Sato Eisaku
## 202 Elfriede Jelinek Elfriede
## 203 Elias Canetti Elias
## 204 Elias James Corey Elias James
## 205 Élie Ducommun Élie
## 206 Elie Wiesel Elie
## 207 Elihu Root Elihu
## 208 Elinor Ostrom Elinor
## 209 Elizabeth H. Blackburn Elizabeth H.
## 210 Ellen Johnson Sirleaf Ellen
## 211 Emil Fischer Emil
## 212 Emil von Behring Emil
## 213 Emilio Segrè Emilio
## 214 Emily Greene Balch Emily Greene
## 215 Enrico Fermi Enrico
## 216 Eric Betzig Eric
## 217 Eric Cornell Eric
## 218 Eric F. Wieschaus Eric F.
## 219 Eric Kandel Eric
## 220 Eric S. Maskin Eric S.
## 221 Erik Axel Karlfeldt Erik Axel
## 222 Ernest Hemingway Ernest
## 223 Ernest Lawrence Ernest
## 224 Ernest Rutherford Ernest
## 225 Ernest T.S. Walton Ernest T.S.
## 226 Ernesto Teodoro Moneta Ernesto Teodoro
## 227 Ernst B. Chain Ernst B.
## 228 Ernst Otto Fischer Ernst Otto
## 229 Ernst Ruska Ernst
## 230 Erwin Neher Erwin
## 231 Erwin Schrödinger Erwin
## 232 Esther Duflo Esther
## 233 Eugene F. Fama Eugene F.
## 234 Eugene O'Neill Eugene
## 235 Eugene Wigner Eugene
## 236 Eugenio Montale Eugenio
## 237
## 238 Eyvind Johnson Eyvind
## 239 F. Duncan M. Haldane F. Duncan M.
## 240 F. Sherwood Rowland F. Sherwood
## 241 F.W. de Klerk F.W.
## 242 Felix Bloch Felix
## 243 Feodor Lynen Feodor
## 244 Ferdinand Braun Ferdinand
## 245 Ferdinand Buisson Ferdinand
## 246 Ferid Murad Ferid
## 247 Finn E. Kydland Finn E.
## 248 Frances H. Arnold Frances H.
## 249 Francis Crick Francis
## 250 Francis W. Aston Francis W.
## 251 Franco Modigliani Franco
## 252 François Englert François
## 253 François Jacob François
## 254 François Mauriac François
## 255 Françoise Barré-Sinoussi Françoise
## 256 Frank B. Kellogg Frank B.
## 257 Frank Wilczek Frank
## 258 Frans Eemil Sillanpää Frans Eemil
## 259 Frédéric Joliot Frédéric
## 260 Frédéric Mistral Frédéric
## 261 Frédéric Passy Frédéric
## 262 Frederick C. Robbins Frederick C.
## 263 Frederick G. Banting Frederick G.
## 264 Frederick Reines Frederick
## 265 Frederick Sanger Frederick
## 266 Frederick Soddy Frederick
## 267 Fredrik Bajer Fredrik
## 268 Fridtjof Nansen Fridtjof
## 269 Friedrich Bergius Friedrich
## 270 Friedrich von Hayek Friedrich
## 271
## 272 Frits Zernike Frits
## 273 Fritz Haber Fritz
## 274 Fritz Lipmann Fritz
## 275 Fritz Pregl Fritz
## 276 Gabriel García Márquez Gabriel
## 277 Gabriel Lippmann Gabriel
## 278 Gabriela Mistral Gabriela
## 279 Gao Xingjian Xingjian
## 280 Gary Becker Gary
## 281 Geoffrey Wilkinson Geoffrey
## 282 Georg von Békésy Georg
## 283 Georg Wittig Georg
## 284 George A. Akerlof George A.
## 285 George A. Olah George A.
## 286 George Beadle George
## 287 George Bernard Shaw George Bernard
## 288 George C. Marshall George C.
## 289 George D. Snell George D.
## 290 George de Hevesy George
## 291 George E. Palade George E.
## 292 George E. Smith George E.
## 293 George F. Smoot George F.
## 294 George H. Hitchings George H.
## 295 George H. Whipple George H.
## 296 George J. Stigler George J.
## 297 George P. Smith George P.
## 298 George Paget Thomson George Paget
## 299 George Porter George
## 300 George R. Minot George R.
## 301 George Wald George
## 302 Georges Charpak Georges
## 303 Georges J.F. Köhler Georges J.F.
## 304 Georges Pire Georges
## 305 Gerald M. Edelman Gerald M.
## 306 Gerard Debreu Gerard
## 307 Gérard Mourou Gérard
## 308 Gerardus 't Hooft Gerardus
## 309 Gerd Binnig Gerd
## 310 Gerhard Domagk Gerhard
## 311 Gerhard Ertl Gerhard
## 312 Gerhard Herzberg Gerhard
## 313 Gerhart Hauptmann Gerhart
## 314 Gertrude B. Elion Gertrude B.
## 315 Gerty Cori Gerty
## 316 Giorgos Seferis Giorgos
## 317 Giosuè Carducci Giosuè
## 318 Giulio Natta Giulio
## 319 Glenn T. Seaborg Glenn T.
## 320 Godfrey N. Hounsfield Godfrey N.
## 321
## 322 Grazia Deledda Grazia
## 323 Gregg L. Semenza Gregg
## 324 Guglielmo Marconi Guglielmo
## 325 Gunnar Myrdal Gunnar
## 326 Günter Blobel Günter
## 327 Günter Grass Günter
## 328 Gustaf Dalén Gustaf
## 329 Gustav Hertz Gustav
## 330 Gustav Stresemann Gustav
## 331 H. David Politzer H. David
## 332 H. Gobind Khorana H. Gobind
## 333 H. Robert Horvitz H. Robert
## 334 Halldór Laxness Halldór
## 335 Hamilton O. Smith Hamilton O.
## 336 Hannes Alfvén Hannes
## 337 Hans Bethe Hans
## 338 Hans Fischer Hans
## 339 Hans G. Dehmelt Hans G.
## 340 Hans Krebs Hans
## 341 Hans Spemann Hans
## 342 Hans von Euler-Chelpin Hans
## 343 Harald zur Hausen Harald
## 344 Harold C. Urey Harold C.
## 345 Harold E. Varmus Harold E.
## 346 Harold Pinter Harold
## 347 Harry M. Markowitz Harry M.
## 348 Harry Martinson Harry
## 349 Hartmut Michel Hartmut
## 350 Heike Kamerlingh Onnes Heike
## 351 Heinrich Böll Heinrich
## 352 Heinrich Rohrer Heinrich
## 353 Heinrich Wieland Heinrich
## 354 Hendrik A. Lorentz Hendrik A.
## 355 Henri Becquerel Henri
## 356 Henri Bergson Henri
## 357 Henri La Fontaine Henri
## 358 Henri Moissan Henri
## 359 Henrik Dam Henrik
## 360 Henrik Pontoppidan Henrik
## 361 Henry Dunant Henry
## 362 Henry Kissinger Henry
## 363 Henry Taube Henry
## 364 Henry W. Kendall Henry W.
## 365 Henryk Sienkiewicz Henryk
## 366 Herbert A. Hauptman Herbert A.
## 367 Herbert C. Brown Herbert C.
## 368 Herbert Kroemer Herbert
## 369 Herbert S. Gasser Herbert S.
## 370 Herbert Simon Herbert
## 371 Hermann Hesse Hermann
## 372 Hermann J. Muller Hermann J.
## 373 Hermann Staudinger Hermann
## 374 Herta Müller Herta
## 375 Hideki Shirakawa Hideki
## 376 Hideki Yukawa Hideki
## 377 Hiroshi Amano Hiroshi
## 378 Hjalmar Branting Hjalmar
## 379 Horst L. Störmer Horst L.
## 380 Howard M. Temin Howard M.
## 381 Hugo Theorell Hugo
## 382 Igor Y. Tamm Igor Y.
## 383 Il´ja M. Frank Il´ja M.
## 384 Ilya Mechnikov Ilya
## 385 Ilya Prigogine Ilya
## 386 Imre Kertész Imre
## 387
## 388
## 389
## 390
## 391
## 392
## 393
## 394
## 395 Irène Joliot-Curie Irène
## 396 Irving Langmuir Irving
## 397 Irwin Rose Irwin
## 398 Isaac Bashevis Singer Isaac Bashevis
## 399 Isamu Akasaki Isamu
## 400 Isidor Isaac Rabi Isidor Isaac
## 401 Ivan Bunin Ivan
## 402 Ivan Pavlov Ivan
## 403 Ivar Giaever Ivar
## 404 Ivo Andric Ivo
## 405 J. Georg Bednorz J. Georg
## 406 J. Hans D. Jensen J. Hans D.
## 407 J. M. Coetzee J. M.
## 408 J. Michael Bishop J. Michael
## 409 J. Michael Kosterlitz J. Michael
## 410 J. Robin Warren J. Robin
## 411 J.J. Thomson J.J.
## 412 Jacinto Benavente Jacinto
## 413 Jack Kilby Jack
## 414 Jack Steinberger Jack
## 415 Jack W. Szostak Jack W.
## 416 Jacobus H. van 't Hoff Jacobus H.
## 417 Jacques Dubochet Jacques
## 418 Jacques Monod Jacques
## 419 James A. Mirrlees James A.
## 420 James B. Sumner James B.
## 421 James Chadwick James
## 422 James Cronin James
## 423 James E. Meade James E.
## 424 James E. Rothman James E.
## 425 James Franck James
## 426 James J. Heckman James J.
## 427 James M. Buchanan Jr. James M.
## 428 James P. Allison James P.
## 429 James Peebles James
## 430 James Rainwater James
## 431 James Tobin James
## 432 James Watson James
## 433 Jan Tinbergen Jan
## 434 Jane Addams Jane
## 435 Jaroslav Heyrovsky Jaroslav
## 436 Jaroslav Seifert Jaroslav
## 437 Jean Baptiste Perrin Jean Baptiste
## 438 Jean Dausset Jean
## 439 Jean Tirole Jean
## 440 Jean-Marie Gustave Le Clézio Jean-Marie Gustave
## 441 Jean-Marie Lehn Jean-Marie
## 442 Jean-Paul Sartre Jean-Paul
## 443 Jean-Pierre Sauvage Jean-Pierre
## 444 Jeffrey C. Hall Jeffrey C.
## 445 Jens C. Skou Jens C.
## 446 Jerome I. Friedman Jerome I.
## 447 Jerome Karle Jerome
## 448 Jimmy Carter Jimmy
## 449 Joachim Frank Joachim
## 450 Jody Williams Jody
## 451 Johann Deisenhofer Johann
## 452 Johannes Diderik van der Waals Johannes Diderik
## 453 Johannes Fibiger Johannes
## 454 Johannes Stark Johannes
## 455 Johannes V. Jensen Johannes V.
## 456 John B. Fenn John B.
## 457 John B. Goodenough John
## 458 John Bardeen John
## 459 John C. Harsanyi John C.
## 460 John C. Kendrew John C.
## 461 John C. Mather John C.
## 462 John C. Polanyi John C.
## 463 John Cockcroft John
## 464 John Cornforth John
## 465 John E. Sulston John E.
## 466 John E. Walker John E.
## 467 John F. Enders John F.
## 468 John F. Nash Jr. John F.
## 469 John Galsworthy John
## 470 John H. Northrop John H.
## 471 John H. van Vleck John H.
## 472 John Hume John
## 473 John L. Hall John L.
## 474 John Macleod John
## 475 John O'Keefe John
## 476 John Pople John
## 477 John R. Hicks John R.
## 478 John R. Mott John R.
## 479 John R. Vane John R.
## 480 John Steinbeck John
## 481 José Echegaray José
## 482 José Ramos-Horta José
## 483 José Saramago José
## 484 Joseph Brodsky Joseph
## 485 Joseph E. Murray Joseph E.
## 486 Joseph E. Stiglitz Joseph E.
## 487 Joseph Erlanger Joseph
## 488 Joseph H. Taylor Jr. Joseph H.
## 489 Joseph L. Goldstein Joseph L.
## 490 Joseph Rotblat Joseph
## 491 Joshua Lederberg Joshua
## 492 Juan Manuel Santos Juan Manuel
## 493 Juan Ramón Jiménez Juan Ramón
## 494 Jules A. Hoffmann Jules A.
## 495 Jules Bordet Jules
## 496 Julian Schwinger Julian
## 497 Julius Axelrod Julius
## 498 Julius Wagner-Jauregg Julius
## 499 K. Alex Müller K. Alex
## 500 Kai M. Siegbahn Kai M.
## 501 Kailash Satyarthi Kailash
## 502 Karl Gjellerup Karl
## 503 Karl Landsteiner Karl
## 504 Karl von Frisch Karl
## 505 Karl Ziegler Karl
## 506 Kary B. Mullis Kary B.
## 507 Kazuo Ishiguro Kazuo
## 508 Keffer Hartline Keffer
## 509 Kenichi Fukui Kenichi
## 510 Kenneth G. Wilson Kenneth G.
## 511 Kenneth J. Arrow Kenneth J.
## 512 Kenzaburo Oe Kenzaburo
## 513 Kim Dae-jung Kim
## 514 Kip S. Thorne Kip S.
## 515 Klas Pontus Arnoldson Klas Pontus
## 516 Klaus von Klitzing Klaus
## 517 Knut Hamsun Knut
## 518 Kofi Annan Kofi
## 519 Koichi Tanaka Koichi
## 520 Konrad Bloch Konrad
## 521 Konrad Lorenz Konrad
## 522 Konstantin Novoselov Konstantin
## 523 Kurt Alder Kurt
## 524 Kurt Wüthrich Kurt
## 525 Lars Onsager Lars
## 526 Lars Peter Hansen Lars Peter
## 527 Lawrence Bragg Lawrence
## 528 Lawrence R. Klein Lawrence R.
## 529 Le Duc Tho Le Duc Tho
## 530
## 531 Lech Walesa Lech
## 532 Leland Hartwell Leland
## 533 Leo Esaki Leo
## 534 Léon Bourgeois Léon
## 535 Léon Jouhaux Léon
## 536 Leon M. Lederman Leon M.
## 537 Leon N. Cooper Leon N.
## 538 Leonid Hurwicz Leonid
## 539 Leonid Vitaliyevich Kantorovich Leonid Vitaliyevich
## 540 Leopold Ruzicka Leopold
## 541 Lester Bowles Pearson Lester Bowles
## 542 Lev Landau Lev
## 543 Leymah Gbowee Leymah
## 544 Linda B. Buck Linda B.
## 545 Linus Pauling Linus
## 546 Liu Xiaobo Xiaobo
## 547 Lloyd S. Shapley Lloyd S.
## 548 Lord Boyd Orr John
## 549 Lord Rayleigh Lord
## 550 Lord Todd Lord
## 551 Louis de Broglie Louis
## 552 Louis J. Ignarro Louis J.
## 553 Louis Néel Louis
## 554 Louis Renault Louis
## 555 Luc Montagnier Luc
## 556 Ludwig Quidde Ludwig
## 557 Luigi Pirandello Luigi
## 558 Luis Alvarez Luis
## 559 Luis Leloir Luis
## 560 M. Stanley Whittingham M. Stanley
## 561 Mairead Corrigan Mairead
## 562 Makoto Kobayashi Makoto
## 563 Malala Yousafzai Malala
## 564 Manfred Eigen Manfred
## 565 Manne Siegbahn Manne
## 566 Maria Goeppert Mayer Maria
## 567 Marie Curie Marie
## 568 Mario J. Molina Mario J.
## 569 Mario R. Capecchi Mario R.
## 570 Mario Vargas Llosa Mario
## 571 Marshall W. Nirenberg Marshall W.
## 572 Martin Chalfie Martin
## 573 Martin Karplus Martin
## 574 Martin L. Perl Martin L.
## 575 Martin Luther King Jr. Martin Luther
## 576 Martin Rodbell Martin
## 577 Martin Ryle Martin
## 578 Martinus J.G. Veltman Martinus J.G.
## 579 Martti Ahtisaari Martti
## 580 Masatoshi Koshiba Masatoshi
## 581 Maurice Allais Maurice
## 582 Maurice Maeterlinck Maurice
## 583 Maurice Wilkins Maurice
## 584 Max Born Max
## 585 Max Delbrück Max
## 586 Max F. Perutz Max F.
## 587 Max Planck Max
## 588 Max Theiler Max
## 589 Max von Laue Max
## 590 May-Britt Moser May-Britt
## 591
## 592 Melvin Calvin Melvin
## 593 Melvin Schwartz Melvin
## 594 Menachem Begin Menachem
## 595 Merton H. Miller Merton H.
## 596 Michael Kremer Michael
## 597 Michael Levitt Michael
## 598 Michael Rosbash Michael
## 599 Michael S. Brown Michael S.
## 600 Michael Smith Michael
## 601 Michael W. Young Michael W.
## 602 Michel Mayor Michel
## 603 Miguel Angel Asturias Miguel Angel
## 604 Mikhail Gorbachev Mikhail
## 605 Mikhail Sholokhov Mikhail
## 606 Milton Friedman Milton
## 607 Mo Yan Mo
## 608 Mohamed ElBaradei Mohamed
## 609 Mother Teresa Anjezë Gonxhe
## 610 Muhammad Yunus Muhammad
## 611 Murray Gell-Mann Murray
## 612 Myron Scholes Myron
## 613 Nadia Murad Nadia
## 614 Nadine Gordimer Nadine
## 615 Naguib Mahfouz Naguib
## 616
## 617 Nathan Söderblom Nathan
## 618
## 619 Nelly Sachs Nelly
## 620 Nelson Mandela Nelson
## 621 Nicholas Murray Butler Nicholas Murray
## 622 Nicolaas Bloembergen Nicolaas
## 623 Nicolay G. Basov Nicolay G.
## 624 Niels Bohr Niels
## 625 Niels K. Jerne Niels K.
## 626 Niels Ryberg Finsen Niels Ryberg
## 627 Nikolaas Tinbergen Nikolaas
## 628 Nikolay Semenov Nikolay
## 629 Norman Borlaug Norman
## 630 Norman F. Ramsey Norman F.
## 631 Norman Haworth Norman
## 632 Octavio Paz Octavio
## 633 Odd Hassel Odd
## 634 Odysseus Elytis Odysseus
## 635
## 636 Olga Tokarczuk Olga
## 637 Oliver E. Williamson Oliver E.
## 638 Oliver Hart Oliver
## 639 Oliver Smithies Oliver
## 640
## 641 Orhan Pamuk Orhan
## 642 Osamu Shimomura Osamu
## 643 Oscar Arias Sánchez Oscar
## 644 Otto Diels Otto
## 645 Otto Hahn Otto
## 646 Otto Loewi Otto
## 647 Otto Meyerhof Otto
## 648 Otto Stern Otto
## 649 Otto Wallach Otto
## 650 Otto Warburg Otto
## 651 Owen Chamberlain Owen
## 652 Owen Willans Richardson Owen Willans
## 653 Pablo Neruda Pablo
## 654 Pär Lagerkvist Pär
## 655 Patrick M.S. Blackett Patrick M.S.
## 656 Patrick Modiano Patrick
## 657 Patrick White Patrick
## 658 Paul A. Samuelson Paul A.
## 659 Paul A.M. Dirac Paul A.M.
## 660 Paul Berg Paul
## 661 Paul C. Lauterbur Paul C.
## 662 Paul D. Boyer Paul D.
## 663 Paul Ehrlich Paul
## 664 Paul Greengard Paul
## 665 Paul Henri d'Estournelles de Constant Paul Henri
## 666 Paul Heyse Paul
## 667 Paul J. Crutzen Paul J.
## 668 Paul J. Flory Paul J.
## 669 Paul Karrer Paul
## 670 Paul Krugman Paul
## 671 Paul M. Romer Paul M.
## 672 Paul Modrich Paul
## 673 Paul Müller Paul
## 674 Paul Sabatier Paul
## 675 Pavel A. Cherenkov Pavel A.
## 676 Pearl Buck Pearl
## 677 Percy W. Bridgman Percy W.
## 678
## 679 Peter A. Diamond Peter A.
## 680 Peter Agre Peter
## 681 Peter C. Doherty Peter C.
## 682 Peter Debye Peter
## 683 Peter Grünberg Peter
## 684 Peter Handke Peter
## 685 Peter Higgs Peter
## 686 Peter Medawar Peter
## 687 Peter Mitchell Peter
## 688 Peyton Rous Peyton
## 689 Philip Noel-Baker Philip
## 690 Philip S. Hench Philip S.
## 691 Philip W. Anderson Philip W.
## 692 Philipp Lenard Philipp
## 693 Phillip A. Sharp Phillip A.
## 694 Pierre Curie Pierre
## 695 Pierre-Gilles de Gennes Pierre-Gilles
## 696 Pieter Zeeman Pieter
## 697 Polykarp Kusch Polykarp
## 698
## 699 Pyotr Kapitsa Pyotr
## 700 Rabindranath Tagore Rabindranath
## 701 Ragnar Frisch Ragnar
## 702 Ragnar Granit Ragnar
## 703 Rainer Weiss Rainer
## 704 Ralph Bunche Ralph
## 705 Ralph M. Steinman Ralph M.
## 706 Randal Cremer Randal
## 707 Randy W. Schekman Randy W.
## 708 Raymond Davis Jr. Raymond
## 709 Reinhard Selten Reinhard
## 710 Renato Dulbecco Renato
## 711 René Cassin René
## 712 Riccardo Giacconi Riccardo
## 713 Richard Axel Richard
## 714 Richard E. Smalley Richard E.
## 715 Richard E. Taylor Richard E.
## 716 Richard F. Heck Richard F.
## 717 Richard H. Thaler Richard H.
## 718 Richard Henderson Richard
## 719 Richard J. Roberts Richard J.
## 720 Richard Kuhn Richard
## 721 Richard L.M. Synge Richard L.M.
## 722 Richard P. Feynman Richard P.
## 723 Richard R. Ernst Richard R.
## 724 Richard R. Schrock Richard R.
## 725 Richard Stone Richard
## 726 Richard Willstätter Richard
## 727 Richard Zsigmondy Richard
## 728 Rigoberta Menchú Tum Rigoberta
## 729 Rita Levi-Montalcini Rita
## 730 Roald Hoffmann Roald
## 731 Robert A. Millikan Robert A.
## 732 Robert B. Laughlin Robert B.
## 733 Robert B. Woodward Robert B.
## 734 Robert Bárány Robert
## 735 Robert C. Merton Robert C.
## 736 Robert C. Richardson Robert C.
## 737 Robert Cecil, Viscount Cecil of Chelwood Robert
## 738 Robert E. Lucas Jr. Robert E.
## 739 Robert F. Curl Jr. Robert F.
## 740 Robert F. Engle III Robert F.
## 741 Robert F. Furchgott Robert F.
## 742 Robert G. Edwards Robert G.
## 743 Robert H. Grubbs Robert H.
## 744 Robert Hofstadter Robert
## 745 Robert Huber Robert
## 746 Robert J. Aumann Robert J.
## 747 Robert J. Lefkowitz Robert J.
## 748 Robert J. Shiller Robert J.
## 749 Robert Koch Robert
## 750 Robert M. Solow Robert M.
## 751 Robert Mundell Robert
## 752 Robert S. Mulliken Robert S.
## 753 Robert Schrieffer Robert
## 754 Robert W. Fogel Robert W.
## 755 Robert W. Holley Robert W.
## 756 Robert Woodrow Wilson Robert Woodrow
## 757 Roderick MacKinnon Roderick
## 758 Rodney R. Porter Rodney R.
## 759 Roger B. Myerson Roger B.
## 760 Roger D. Kornberg Roger D.
## 761 Roger Guillemin Roger
## 762 Roger Martin du Gard Roger
## 763 Roger W. Sperry Roger W.
## 764 Roger Y. Tsien Roger Y.
## 765 Rolf M. Zinkernagel Rolf M.
## 766 Romain Rolland Romain
## 767 Ronald G.W. Norrish Ronald G.W.
## 768 Ronald H. Coase Ronald H.
## 769 Ronald Ross Ronald
## 770 Rosalyn Yalow Rosalyn
## 771 Roy J. Glauber Roy J.
## 772 Rudolf Eucken Rudolf
## 773 Rudolf Mössbauer Rudolf
## 774 Rudolph A. Marcus Rudolph A.
## 775 Rudyard Kipling Rudyard
## 776 Russell A. Hulse Russell A.
## 777 Ryoji Noyori Ryoji
## 778 Saint-John Perse Saint-John
## 779 Salvador E. Luria Salvador E.
## 780 Salvatore Quasimodo Salvatore
## 781 Samuel Beckett Samuel
## 782 Samuel C.C. Ting Samuel C.C.
## 783 Santiago Ramón y Cajal Santiago
## 784 Satoshi Ōmura Satoshi
## 785 Saul Bellow Saul
## 786 Saul Perlmutter Saul
## 787 Seamus Heaney Seamus
## 788 Seán MacBride Seán
## 789 Selma Lagerlöf Selma
## 790 Selman A. Waksman Selman A.
## 791 Serge Haroche Serge
## 792 Severo Ochoa Severo
## 793 Sheldon Glashow Sheldon
## 794 Shimon Peres Shimon
## 795 Shinya Yamanaka Shinya
## 796 Shirin Ebadi Shirin
## 797 Shmuel Agnon Shmuel
## 798 Shuji Nakamura Shuji
## 799 Sidney Altman Sidney
## 800 Sigrid Undset Sigrid
## 801 Simon Kuznets Simon
## 802 Simon van der Meer Simon
## 803 Sin-Itiro Tomonaga Sin-Itiro
## 804 Sinclair Lewis Sinclair
## 805 Sir Alexander Fleming Sir Alexander
## 806 Sir Arthur Lewis Sir Arthur
## 807 Sir Austen Chamberlain Sir Austen
## 808 Sir Bernard Katz Sir Bernard
## 809 Sir Chandrasekhara Venkata Raman Sir Chandrasekhara Venkata
## 810 Sir Charles Sherrington Sir Charles
## 811 Sir Cyril Hinshelwood Sir Cyril
## 812 Sir Frank Macfarlane Burnet Sir Frank Macfarlane
## 813 Sir Frederick Hopkins Sir Frederick
## 814 Sir Gregory P. Winter Sir Gregory P.
## 815 Sir Harold Kroto Sir Harold
## 816 Sir Henry Dale Sir Henry
## 817 Sir Howard Florey Sir Howard
## 818 Sir J. Fraser Stoddart Sir J. Fraser
## 819 Sir James W. Black Sir James W.
## 820 Sir John B. Gurdon Sir John B.
## 821 Sir John Eccles Sir John
## 822 Sir Martin J. Evans Sir Martin J.
## 823 Sir Nevill F. Mott Sir Nevill F.
## 824 Sir Norman Angell Sir Norman
## 825 Sir Paul Nurse Sir Paul
## 826 Sir Peter J. Ratcliffe Peter
## 827 Sir Peter Mansfield Sir Peter
## 828 Sir Robert Robinson Sir Robert
## 829 Sir William Ramsay Sir William
## 830 Stanford Moore Stanford
## 831 Stanley B. Prusiner Stanley B.
## 832 Stanley Cohen Stanley
## 833 Stefan W. Hell Stefan W.
## 834 Steven Chu Steven
## 835 Steven Weinberg Steven
## 836 Subramanyan Chandrasekhar Subramanyan
## 837 Sully Prudhomme Sully
## 838 Sune K. Bergström Sune K.
## 839 Susumu Tonegawa Susumu
## 840 Svante Arrhenius Svante
## 841 Svetlana Alexievich Svetlana
## 842 Sydney Brenner Sydney
## 843 T.S. Eliot T.S.
## 844 Tadeus Reichstein Tadeus
## 845 Takaaki Kajita Takaaki
## 846 Tasuku Honjo Tasuku
## 847 Tawakkol Karman Tawakkol
## 848 The 14th Dalai Lama Lhamo
## 849 The Svedberg The
## 850 Theodor Kocher Theodor
## 851 Theodor Mommsen Theodor
## 852 Theodor W. Hänsch Theodor W.
## 853 Theodore Roosevelt Theodore
## 854 Theodore W. Richards Theodore W.
## 855 Theodore W. Schultz Theodore W.
## 856 Thomas A. Steitz Thomas A.
## 857 Thomas C. Schelling Thomas C.
## 858 Thomas C. Südhof Thomas C.
## 859 Thomas H. Morgan Thomas H.
## 860 Thomas H. Weller Thomas H.
## 861 Thomas J. Sargent Thomas J.
## 862 Thomas Mann Thomas
## 863 Thomas R. Cech Thomas R.
## 864 Tim Hunt Tim
## 865 Tjalling C. Koopmans Tjalling C.
## 866 Tobias Asser Tobias
## 867 Tomas Lindahl Tomas
## 868 Tomas Tranströmer Tomas
## 869 Toni Morrison Toni
## 870 Torsten N. Wiesel Torsten N.
## 871 Toshihide Maskawa Toshihide
## 872 Trygve Haavelmo Trygve
## 873 Tsung-Dao Lee Tsung-Dao
## 874 Tu Youyou Youyou
## 875 Ulf von Euler Ulf
## 876
## 877
## 878
## 879 V. S. Naipaul V. S.
## 880 Val Fitch Val
## 881 Venkatraman Ramakrishnan Venkatraman
## 882 Verner von Heidenstam Verner
## 883 Vernon L. Smith Vernon L.
## 884 Vicente Aleixandre Vicente
## 885 Victor F. Hess Victor F.
## 886 Victor Grignard Victor
## 887 Vincent du Vigneaud Vincent
## 888 Vitaly L. Ginzburg Vitaly L.
## 889 Vladimir Prelog Vladimir
## 890 Walter Gilbert Walter
## 891 Walter H. Brattain Walter H.
## 892 Walter Hess Walter
## 893 Walter Kohn Walter
## 894 Walther Bothe Walther
## 895 Walther Nernst Walther
## 896 Wangari Maathai Wangari
## 897 Wassily Leontief Wassily
## 898 Wendell M. Stanley Wendell M.
## 899 Werner Arber Werner
## 900 Werner Forssmann Werner
## 901 Werner Heisenberg Werner
## 902 Wilhelm Conrad Röntgen Wilhelm Conrad
## 903 Wilhelm Ostwald Wilhelm
## 904 Wilhelm Wien Wilhelm
## 905 Willard F. Libby Willard F.
## 906 Willard S. Boyle Willard S.
## 907 Willem Einthoven Willem
## 908 William A. Fowler William A.
## 909 William B. Shockley William B.
## 910 William Bragg William
## 911 William Butler Yeats William Butler
## 912 William C. Campbell William C.
## 913 William D. Nordhaus William D.
## 914 William D. Phillips William D.
## 915 William E. Moerner William E.
## 916 William F. Giauque William F.
## 917 William F. Sharpe William F.
## 918 William Faulkner William
## 919 William G. Kaelin Jr William
## 920 William Golding William
## 921 William H. Stein William H.
## 922 William Knowles William
## 923 William Lipscomb William
## 924 William P. Murphy William P.
## 925 William Vickrey William
## 926 Willis E. Lamb Willis E.
## 927 Willy Brandt Willy
## 928 Winston Churchill Winston
## 929 Wislawa Szymborska Wislawa
## 930 Wladyslaw Reymont Wladyslaw
## 931 Wole Soyinka Wole
## 932 Wolfgang Ketterle Wolfgang
## 933 Wolfgang Paul Wolfgang
## 934 Wolfgang Pauli Wolfgang
## 935 Woodrow Wilson Woodrow
## 936 Yasser Arafat Yasser
## 937 Yasunari Kawabata Yasunari
## 938 Yitzhak Rabin Yitzhak
## 939 Yoichiro Nambu Yoichiro
## 940 Yoshinori Ohsumi Yoshinori
## 941 Yuan T. Lee Yuan T.
## 942 Yves Chauvin Yves
## 943 Zhores Alferov Zhores
## 944 Frederick Sanger Frederick
## 945
## 946 John Bardeen John
## 947 Linus Pauling Linus
## 948 Marie Curie Marie
## 949
## 950
## familyName
## 1 Spence
## 2 Bohr
## 3 Ciechanover
## 4 Klug
## 5 Salam
## 6 Banerjee
## 7 Ahmed Ali
## 8 Yonath
## 9 Riess
## 10 Butenandt
## 11 von Baeyer
## 12 Windaus
## 13 Pérez Esquivel
## 14 Zewail
## 15 Suzuki
## 16 Yoshino
## 17 Gore
## 18 Heeger
## 19 Hodgkin
## 20 MacDiarmid
## 21 Michelson
## 22 Camus
## 23 Claude
## 24 Einstein
## 25 Fert
## 26 Gobat
## 27 Luthuli
## 28 Schweitzer
## 29 Szent-Györgyi
## 30 Kossel
## 31 Prokhorov
## 32 Solzhenitsyn
## 33 Abrikosov
## 34 Carrel
## 35 García Robles
## 36 Hershey
## 37 Fried
## 38 Gilman
## 39 Kastler
## 40 Werner
## 41 Munro
## 42 Cormack
## 43 Gullstrand
## 44 Laveran
## 45 Myrdal
## 46 Roth
## 47 Sen
## 48
## 49
## 50 France
## 51 Cournand
## 52 Geim
## 53 Gide
## 54 Lwoff
## 55 Sakharov
## 56 Huxley
## 57 Schally
## 58 Fire
## 59 Deaton
## 60 Leggett
## 61 Hewish
## 62 al-Sadat
## 63 Martin
## 64 Hill
## 65 Warshel
## 66 Briand
## 67 Tiselius
## 68 Penzias
## 69 Ashkin
## 70 McDonald
## 71 Compton
## 72 Harden
## 73 Henderson
## 74 Kornberg
## 75 Schawlow
## 76 Virtanen
## 77 Carlsson
## 78 Krogh
## 79 Beernaert
## 80
## 81 Hershko
## 82 Sancar
## 83 Obama
## 84 McClintock
## 85 Barish
## 86 Marshall
## 87 Sharpless
## 88 Blumberg
## 89 Benacerraf
## 90 Mottelson
## 91 Holmström
## 92 Samuelsson
## 93 Feringa
## 94 Houssay
## 95 Sakmann
## 96 von Suttner
## 97 Ohlin
## 98 Brockhouse
## 99 Russell
## 100 Williams
## 101 Bjørnson
## 102 Dylan
## 103 Pasternak
## 104 Josephson
## 105 Kobilka
## 106 Schmidt
## 107 Beutler
## 108 Merrifield
## 109 Richter
## 110 Wilson
## 111 Golgi
## 112 Cela
## 113 Bosch
## 114 Cori
## 115 Anderson
## 116 Spitteler
## 117 von Ossietzky
## 118 Wieman
## 119 Rubbia
## 120 Belo
## 121 Saavedra Lamas
## 122 Greider
## 123 Powell
## 124 Milstein
## 125 Huggins
## 126 Guillaume
## 127 Dawes
## 128 Barkla
## 129 Townes
## 130 Pedersen
## 131 Kao
## 132 Nicolle
## 133 Richet
## 134 Yang
## 135 Eijkman
## 136 Anfinsen
## 137 de Duve
## 138 Lange
## 139 Nüsslein-Volhard
## 140 Pissarides
## 141 Sims
## 142 Cohen-Tannoudji
## 143 Simon
## 144 Shull
## 145 Davisson
## 146 Granger
## 147 Hull
## 148 Heymans
## 149 Mello
## 150 Milosz
## 151 Gajdusek
## 152 Hammarskjöld
## 153 Mortensen
## 154 Shechtman
## 155 Bovet
## 156 Tsui
## 157 Kahneman
## 158 McFadden
## 159 Nathans
## 160 Fo
## 161 Baltimore
## 162 Hubel
## 163 Gross
## 164 Thouless
## 165 Wineland
## 166 Lee
## 167 Trimble
## 168 Mukwege
## 169 Gabor
## 170 Barton
## 171 Walcott
## 172 Tutu
## 173 Richards
## 174 Queloz
## 175 Glaser
## 176 Cram
## 177 Strickland
## 178 Lessing
## 179 Hodgkin
## 180 Osheroff
## 181 North
## 182 Herschbach
## 183 Thomas
## 184 Purcell
## 185 Sutherland, Jr.
## 186 Adrian
## 187 Fischer
## 188 Phelps
## 189 Buchner
## 190 Moser
## 191 Doisy
## 192 Lewis
## 193 Kendall
## 194 Prescott
## 195 Tatum
## 196 Appleton
## 197 Krebs
## 198 McMillan
## 199 Moniz
## 200 Negishi
## 201 Sato
## 202 Jelinek
## 203 Canetti
## 204 Corey
## 205 Ducommun
## 206 Wiesel
## 207 Root
## 208 Ostrom
## 209 Blackburn
## 210 Johnson Sirleaf
## 211 Fischer
## 212 von Behring
## 213 Segrè
## 214 Balch
## 215 Fermi
## 216 Betzig
## 217 Cornell
## 218 Wieschaus
## 219 Kandel
## 220 Maskin
## 221 Karlfeldt
## 222 Hemingway
## 223 Lawrence
## 224 Rutherford
## 225 Walton
## 226 Moneta
## 227 Chain
## 228 Fischer
## 229 Ruska
## 230 Neher
## 231 Schrödinger
## 232 Duflo
## 233 Fama
## 234 O'Neill
## 235 Wigner
## 236 Montale
## 237
## 238 Johnson
## 239 Haldane
## 240 Rowland
## 241 de Klerk
## 242 Bloch
## 243 Lynen
## 244 Braun
## 245 Buisson
## 246 Murad
## 247 Kydland
## 248 Arnold
## 249 Crick
## 250 Aston
## 251 Modigliani
## 252 Englert
## 253 Jacob
## 254 Mauriac
## 255 Barré-Sinoussi
## 256 Kellogg
## 257 Wilczek
## 258 Sillanpää
## 259 Joliot
## 260 Mistral
## 261 Passy
## 262 Robbins
## 263 Banting
## 264 Reines
## 265 Sanger
## 266 Soddy
## 267 Bajer
## 268 Nansen
## 269 Bergius
## 270 von Hayek
## 271
## 272 Zernike
## 273 Haber
## 274 Lipmann
## 275 Pregl
## 276 García Márquez
## 277 Lippmann
## 278 Mistral
## 279 Gao
## 280 Becker
## 281 Wilkinson
## 282 von Békésy
## 283 Wittig
## 284 Akerlof
## 285 Olah
## 286 Beadle
## 287 Shaw
## 288 Marshall
## 289 Snell
## 290 de Hevesy
## 291 Palade
## 292 Smith
## 293 Smoot
## 294 Hitchings
## 295 Whipple
## 296 Stigler
## 297 Smith
## 298 Thomson
## 299 Porter
## 300 Minot
## 301 Wald
## 302 Charpak
## 303 Köhler
## 304 Pire
## 305 Edelman
## 306 Debreu
## 307 Mourou
## 308 't Hooft
## 309 Binnig
## 310 Domagk
## 311 Ertl
## 312 Herzberg
## 313 Hauptmann
## 314 Elion
## 315 Cori
## 316 Seferis
## 317 Carducci
## 318 Natta
## 319 Seaborg
## 320 Hounsfield
## 321
## 322 Deledda
## 323 Semenza
## 324 Marconi
## 325 Myrdal
## 326 Blobel
## 327 Grass
## 328 Dalén
## 329 Hertz
## 330 Stresemann
## 331 Politzer
## 332 Khorana
## 333 Horvitz
## 334 Laxness
## 335 Smith
## 336 Alfvén
## 337 Bethe
## 338 Fischer
## 339 Dehmelt
## 340 Krebs
## 341 Spemann
## 342 von Euler-Chelpin
## 343 zur Hausen
## 344 Urey
## 345 Varmus
## 346 Pinter
## 347 Markowitz
## 348 Martinson
## 349 Michel
## 350 Kamerlingh Onnes
## 351 Böll
## 352 Rohrer
## 353 Wieland
## 354 Lorentz
## 355 Becquerel
## 356 Bergson
## 357 La Fontaine
## 358 Moissan
## 359 Dam
## 360 Pontoppidan
## 361 Dunant
## 362 Kissinger
## 363 Taube
## 364 Kendall
## 365 Sienkiewicz
## 366 Hauptman
## 367 Brown
## 368 Kroemer
## 369 Gasser
## 370 Simon
## 371 Hesse
## 372 Muller
## 373 Staudinger
## 374 Müller
## 375 Shirakawa
## 376 Yukawa
## 377 Amano
## 378 Branting
## 379 Störmer
## 380 Temin
## 381 Theorell
## 382 Tamm
## 383 Frank
## 384 Mechnikov
## 385 Prigogine
## 386 Kertész
## 387
## 388
## 389
## 390
## 391
## 392
## 393
## 394
## 395 Joliot-Curie
## 396 Langmuir
## 397 Rose
## 398 Singer
## 399 Akasaki
## 400 Rabi
## 401 Bunin
## 402 Pavlov
## 403 Giaever
## 404 Andric
## 405 Bednorz
## 406 Jensen
## 407 Coetzee
## 408 Bishop
## 409 Kosterlitz
## 410 Warren
## 411 Thomson
## 412 Benavente
## 413 Kilby
## 414 Steinberger
## 415 Szostak
## 416 van 't Hoff
## 417 Dubochet
## 418 Monod
## 419 Mirrlees
## 420 Sumner
## 421 Chadwick
## 422 Cronin
## 423 Meade
## 424 Rothman
## 425 Franck
## 426 Heckman
## 427 Buchanan Jr.
## 428 Allison
## 429 Peebles
## 430 Rainwater
## 431 Tobin
## 432 Watson
## 433 Tinbergen
## 434 Addams
## 435 Heyrovsky
## 436 Seifert
## 437 Perrin
## 438 Dausset
## 439 Tirole
## 440 Le Clézio
## 441 Lehn
## 442 Sartre
## 443 Sauvage
## 444 Hall
## 445 Skou
## 446 Friedman
## 447 Karle
## 448 Carter
## 449 Frank
## 450 Williams
## 451 Deisenhofer
## 452 van der Waals
## 453 Fibiger
## 454 Stark
## 455 Jensen
## 456 Fenn
## 457 Goodenough
## 458 Bardeen
## 459 Harsanyi
## 460 Kendrew
## 461 Mather
## 462 Polanyi
## 463 Cockcroft
## 464 Cornforth
## 465 Sulston
## 466 Walker
## 467 Enders
## 468 Nash Jr.
## 469 Galsworthy
## 470 Northrop
## 471 van Vleck
## 472 Hume
## 473 Hall
## 474 Macleod
## 475 O'Keefe
## 476 Pople
## 477 Hicks
## 478 Mott
## 479 Vane
## 480 Steinbeck
## 481 Echegaray
## 482 Ramos-Horta
## 483 Saramago
## 484 Brodsky
## 485 Murray
## 486 Stiglitz
## 487 Erlanger
## 488 Taylor Jr.
## 489 Goldstein
## 490 Rotblat
## 491 Lederberg
## 492 Santos
## 493 Jiménez
## 494 Hoffmann
## 495 Bordet
## 496 Schwinger
## 497 Axelrod
## 498 Wagner-Jauregg
## 499 Müller
## 500 Siegbahn
## 501 Satyarthi
## 502 Gjellerup
## 503 Landsteiner
## 504 von Frisch
## 505 Ziegler
## 506 Mullis
## 507 Ishiguro
## 508 Hartline
## 509 Fukui
## 510 Wilson
## 511 Arrow
## 512 Oe
## 513 Dae-jung
## 514 Thorne
## 515 Arnoldson
## 516 von Klitzing
## 517 Hamsun
## 518 Annan
## 519 Tanaka
## 520 Bloch
## 521 Lorenz
## 522 Novoselov
## 523 Alder
## 524 Wüthrich
## 525 Onsager
## 526 Hansen
## 527 Bragg
## 528 Klein
## 529
## 530
## 531 Walesa
## 532 Hartwell
## 533 Esaki
## 534 Bourgeois
## 535 Jouhaux
## 536 Lederman
## 537 Cooper
## 538 Hurwicz
## 539 Kantorovich
## 540 Ruzicka
## 541 Pearson
## 542 Landau
## 543 Gbowee
## 544 Buck
## 545 Pauling
## 546 Liu
## 547 Shapley
## 548 Boyd Orr
## 549 Rayleigh
## 550 Todd
## 551 de Broglie
## 552 Ignarro
## 553 Néel
## 554 Renault
## 555 Montagnier
## 556 Quidde
## 557 Pirandello
## 558 Alvarez
## 559 Leloir
## 560 Whittingham
## 561 Corrigan
## 562 Kobayashi
## 563 Yousafzai
## 564 Eigen
## 565 Siegbahn
## 566 Goeppert Mayer
## 567 Curie
## 568 Molina
## 569 Capecchi
## 570 Vargas Llosa
## 571 Nirenberg
## 572 Chalfie
## 573 Karplus
## 574 Perl
## 575 King Jr.
## 576 Rodbell
## 577 Ryle
## 578 Veltman
## 579 Ahtisaari
## 580 Koshiba
## 581 Allais
## 582 Maeterlinck
## 583 Wilkins
## 584 Born
## 585 Delbrück
## 586 Perutz
## 587 Planck
## 588 Theiler
## 589 von Laue
## 590 Moser
## 591
## 592 Calvin
## 593 Schwartz
## 594 Begin
## 595 Miller
## 596 Kremer
## 597 Levitt
## 598 Rosbash
## 599 Brown
## 600 Smith
## 601 Young
## 602 Mayor
## 603 Asturias
## 604 Gorbachev
## 605 Sholokhov
## 606 Friedman
## 607 Yan
## 608 ElBaradei
## 609 Bojaxhiu
## 610 Yunus
## 611 Gell-Mann
## 612 Scholes
## 613 Murad
## 614 Gordimer
## 615 Mahfouz
## 616
## 617 Söderblom
## 618
## 619 Sachs
## 620 Mandela
## 621 Butler
## 622 Bloembergen
## 623 Basov
## 624 Bohr
## 625 Jerne
## 626 Finsen
## 627 Tinbergen
## 628 Semenov
## 629 Borlaug
## 630 Ramsey
## 631 Haworth
## 632 Paz
## 633 Hassel
## 634 Elytis
## 635
## 636 Tokarczuk
## 637 Williamson
## 638 Hart
## 639 Smithies
## 640
## 641 Pamuk
## 642 Shimomura
## 643 Arias Sánchez
## 644 Diels
## 645 Hahn
## 646 Loewi
## 647 Meyerhof
## 648 Stern
## 649 Wallach
## 650 Warburg
## 651 Chamberlain
## 652 Richardson
## 653 Neruda
## 654 Lagerkvist
## 655 Blackett
## 656 Modiano
## 657 White
## 658 Samuelson
## 659 Dirac
## 660 Berg
## 661 Lauterbur
## 662 Boyer
## 663 Ehrlich
## 664 Greengard
## 665 d'Estournelles de Constant
## 666 Heyse
## 667 Crutzen
## 668 Flory
## 669 Karrer
## 670 Krugman
## 671 Romer
## 672 Modrich
## 673 Müller
## 674 Sabatier
## 675 Cherenkov
## 676 Buck
## 677 Bridgman
## 678
## 679 Diamond
## 680 Agre
## 681 Doherty
## 682 Debye
## 683 Grünberg
## 684 Handke
## 685 Higgs
## 686 Medawar
## 687 Mitchell
## 688 Rous
## 689 Noel-Baker
## 690 Hench
## 691 Anderson
## 692 Lenard
## 693 Sharp
## 694 Curie
## 695 de Gennes
## 696 Zeeman
## 697 Kusch
## 698
## 699 Kapitsa
## 700 Tagore
## 701 Frisch
## 702 Granit
## 703 Weiss
## 704 Bunche
## 705 Steinman
## 706 Cremer
## 707 Schekman
## 708 Davis Jr.
## 709 Selten
## 710 Dulbecco
## 711 Cassin
## 712 Giacconi
## 713 Axel
## 714 Smalley
## 715 Taylor
## 716 Heck
## 717 Thaler
## 718 Henderson
## 719 Roberts
## 720 Kuhn
## 721 Synge
## 722 Feynman
## 723 Ernst
## 724 Schrock
## 725 Stone
## 726 Willstätter
## 727 Zsigmondy
## 728 Menchú Tum
## 729 Levi-Montalcini
## 730 Hoffmann
## 731 Millikan
## 732 Laughlin
## 733 Woodward
## 734 Bárány
## 735 Merton
## 736 Richardson
## 737 Cecil
## 738 Lucas Jr.
## 739 Curl Jr.
## 740 Engle III
## 741 Furchgott
## 742 Edwards
## 743 Grubbs
## 744 Hofstadter
## 745 Huber
## 746 Aumann
## 747 Lefkowitz
## 748 Shiller
## 749 Koch
## 750 Solow
## 751 Mundell
## 752 Mulliken
## 753 Schrieffer
## 754 Fogel
## 755 Holley
## 756 Wilson
## 757 MacKinnon
## 758 Porter
## 759 Myerson
## 760 Kornberg
## 761 Guillemin
## 762 Martin du Gard
## 763 Sperry
## 764 Tsien
## 765 Zinkernagel
## 766 Rolland
## 767 Norrish
## 768 Coase
## 769 Ross
## 770 Yalow
## 771 Glauber
## 772 Eucken
## 773 Mössbauer
## 774 Marcus
## 775 Kipling
## 776 Hulse
## 777 Noyori
## 778 Perse
## 779 Luria
## 780 Quasimodo
## 781 Beckett
## 782 Ting
## 783 Ramón y Cajal
## 784 Ōmura
## 785 Bellow
## 786 Perlmutter
## 787 Heaney
## 788 MacBride
## 789 Lagerlöf
## 790 Waksman
## 791 Haroche
## 792 Ochoa
## 793 Glashow
## 794 Peres
## 795 Yamanaka
## 796 Ebadi
## 797 Agnon
## 798 Nakamura
## 799 Altman
## 800 Undset
## 801 Kuznets
## 802 van der Meer
## 803 Tomonaga
## 804 Lewis
## 805 Fleming
## 806 Lewis
## 807 Chamberlain
## 808 Katz
## 809 Raman
## 810 Sherrington
## 811 Hinshelwood
## 812 Burnet
## 813 Hopkins
## 814 Winter
## 815 Kroto
## 816 Dale
## 817 Florey
## 818 Stoddart
## 819 Black
## 820 Gurdon
## 821 Eccles
## 822 Evans
## 823 Mott
## 824 Angell
## 825 Nurse
## 826 Ratcliffe
## 827 Mansfield
## 828 Robinson
## 829 Ramsay
## 830 Moore
## 831 Prusiner
## 832 Cohen
## 833 Hell
## 834 Chu
## 835 Weinberg
## 836 Chandrasekhar
## 837 Prudhomme
## 838 Bergström
## 839 Tonegawa
## 840 Arrhenius
## 841 Alexievich
## 842 Brenner
## 843 Eliot
## 844 Reichstein
## 845 Kajita
## 846 Honjo
## 847 Karman
## 848 Thondup
## 849 Svedberg
## 850 Kocher
## 851 Mommsen
## 852 Hänsch
## 853 Roosevelt
## 854 Richards
## 855 Schultz
## 856 Steitz
## 857 Schelling
## 858 Südhof
## 859 Morgan
## 860 Weller
## 861 Sargent
## 862 Mann
## 863 Cech
## 864 Hunt
## 865 Koopmans
## 866 Asser
## 867 Lindahl
## 868 Tranströmer
## 869 Morrison
## 870 Wiesel
## 871 Maskawa
## 872 Haavelmo
## 873 Lee
## 874 Tu
## 875 von Euler
## 876
## 877
## 878
## 879 Naipaul
## 880 Fitch
## 881 Ramakrishnan
## 882 von Heidenstam
## 883 Smith
## 884 Aleixandre
## 885 Hess
## 886 Grignard
## 887 du Vigneaud
## 888 Ginzburg
## 889 Prelog
## 890 Gilbert
## 891 Brattain
## 892 Hess
## 893 Kohn
## 894 Bothe
## 895 Nernst
## 896 Maathai
## 897 Leontief
## 898 Stanley
## 899 Arber
## 900 Forssmann
## 901 Heisenberg
## 902 Röntgen
## 903 Ostwald
## 904 Wien
## 905 Libby
## 906 Boyle
## 907 Einthoven
## 908 Fowler
## 909 Shockley
## 910 Bragg
## 911 Yeats
## 912 Campbell
## 913 Nordhaus
## 914 Phillips
## 915 Moerner
## 916 Giauque
## 917 Sharpe
## 918 Faulkner
## 919 Kaelin
## 920 Golding
## 921 Stein
## 922 Knowles
## 923 Lipscomb
## 924 Murphy
## 925 Vickrey
## 926 Lamb
## 927 Brandt
## 928 Churchill
## 929 Szymborska
## 930 Reymont
## 931 Soyinka
## 932 Ketterle
## 933 Paul
## 934 Pauli
## 935 Wilson
## 936 Arafat
## 937 Kawabata
## 938 Rabin
## 939 Nambu
## 940 Ohsumi
## 941 Lee
## 942 Chauvin
## 943 Alferov
## 944 Sanger
## 945
## 946 Bardeen
## 947 Pauling
## 948 Curie
## 949
## 950
## fullName
## 1 A. Michael Spence
## 2 Aage Niels Bohr
## 3 Aaron Ciechanover
## 4 Aaron Klug
## 5 Abdus Salam
## 6 Abhijit Banerjee
## 7 Abiy Ahmed Ali
## 8 Ada E. Yonath
## 9 Adam G. Riess
## 10 Adolf Friedrich Johann Butenandt
## 11 Johann Friedrich Wilhelm Adolf von Baeyer
## 12 Adolf Otto Reinhold Windaus
## 13 Adolfo Pérez Esquivel
## 14 Ahmed H. Zewail
## 15 Akira Suzuki
## 16 Akira Yoshino
## 17 Albert Arnold (Al) Gore Jr.
## 18 Alan J. Heeger
## 19 Alan Lloyd Hodgkin
## 20 Alan G. MacDiarmid
## 21 Albert Abraham Michelson
## 22 Albert Camus
## 23 Albert Claude
## 24 Albert Einstein
## 25 Albert Fert
## 26 Charles Albert Gobat
## 27 Albert John Luthuli
## 28 Albert Schweitzer
## 29 Albert von Szent-Györgyi Nagyrápolt
## 30 Albrecht Kossel
## 31 Aleksandr Mikhailovich Prokhorov
## 32 Aleksandr Isayevich Solzhenitsyn
## 33 Alexei Alexeyevich Abrikosov
## 34 Alexis Carrel
## 35 Alfonso García Robles
## 36 Alfred D. Hershey
## 37 Alfred Hermann Fried
## 38 Alfred G. Gilman
## 39 Alfred Kastler
## 40 Alfred Werner
## 41 Alice Munro
## 42 Allan M. Cormack
## 43 Allvar Gullstrand
## 44 Charles Louis Alphonse Laveran
## 45 Alva Myrdal
## 46 Alvin E. Roth
## 47 Amartya Sen
## 48
## 49
## 50 Anatole France
## 51 André Frédéric Cournand
## 52 Andre Geim
## 53 André Paul Guillaume Gide
## 54 André Lwoff
## 55 Andrei Dmitrievich Sakharov
## 56 Andrew Fielding Huxley
## 57 Andrew V. Schally
## 58 Andrew Z. Fire
## 59 Angus Deaton
## 60 Anthony J. Leggett
## 61 Antony Hewish
## 62 Mohamed Anwar al-Sadat
## 63 Archer John Porter Martin
## 64 Archibald Vivian Hill
## 65 Arieh Warshel
## 66 Aristide Briand
## 67 Arne Wilhelm Kaurin Tiselius
## 68 Arno Allan Penzias
## 69 Arthur Ashkin
## 70 Arthur B. McDonald
## 71 Arthur Holly Compton
## 72 Arthur Harden
## 73 Arthur Henderson
## 74 Arthur Kornberg
## 75 Arthur Leonard Schawlow
## 76 Artturi Ilmari Virtanen
## 77 Arvid Carlsson
## 78 Schack August Steenberg Krogh
## 79 Auguste Marie François Beernaert
## 80 Aung San Suu Kyi
## 81 Avram Hershko
## 82 Aziz Sancar
## 83 Barack Hussein Obama
## 84 Barbara McClintock
## 85 Barry C. Barish
## 86 Barry J. Marshall
## 87 K. Barry Sharpless
## 88 Baruch S. Blumberg
## 89 Baruj Benacerraf
## 90 Ben Roy Mottelson
## 91 Bengt Holmström
## 92 Bengt I. Samuelsson
## 93 Bernard L. Feringa
## 94 Bernardo Alberto Houssay
## 95 Bert Sakmann
## 96 Baroness Bertha Sophie Felicita von Suttner, née Countess Kinsky von Chinic und Tettau
## 97 Bertil Ohlin
## 98 Bertram N. Brockhouse
## 99 Earl (Bertrand Arthur William) Russell
## 100 Elizabeth Williams
## 101 Bjørnstjerne Martinus Bjørnson
## 102 Bob Dylan
## 103 Boris Leonidovich Pasternak
## 104 Brian David Josephson
## 105 Brian K. Kobilka
## 106 Brian P. Schmidt
## 107 Bruce A. Beutler
## 108 Robert Bruce Merrifield
## 109 Burton Richter
## 110 Charles Thomson Rees Wilson
## 111 Camillo Golgi
## 112 Camilo José Cela
## 113 Carl Bosch
## 114 Carl Ferdinand Cori
## 115 Carl David Anderson
## 116 Carl Friedrich Georg Spitteler
## 117 Carl von Ossietzky
## 118 Carl E. Wieman
## 119 Carlo Rubbia
## 120 Carlos Filipe Ximenes Belo
## 121 Carlos Saavedra Lamas
## 122 Carol W. Greider
## 123 Cecil Frank Powell
## 124 César Milstein
## 125 Charles Brenton Huggins
## 126 Charles Edouard Guillaume
## 127 Charles Gates Dawes
## 128 Charles Glover Barkla
## 129 Charles Hard Townes
## 130 Charles J. Pedersen
## 131 Charles Kuen Kao
## 132 Charles Jules Henri Nicolle
## 133 Charles Robert Richet
## 134 Chen Ning Yang
## 135 Christiaan Eijkman
## 136 Christian B. Anfinsen
## 137 Christian de Duve
## 138 Christian Lous Lange
## 139 Christiane Nüsslein-Volhard
## 140 Christopher A. Pissarides
## 141 Christopher A. Sims
## 142 Claude Cohen-Tannoudji
## 143 Claude Simon
## 144 Clifford G. Shull
## 145 Clinton Joseph Davisson
## 146 Clive W.J. Granger
## 147 Cordell Hull
## 148 Corneille Jean François Heymans
## 149 Craig C. Mello
## 150 Czeslaw Milosz
## 151 D. Carleton Gajdusek
## 152 Dag Hjalmar Agne Carl Hammarskjöld
## 153 Dale T. Mortensen
## 154 Dan Shechtman
## 155 Daniel Bovet
## 156 Daniel C. Tsui
## 157 Daniel Kahneman
## 158 Daniel L. McFadden
## 159 Daniel Nathans
## 160 Dario Fo
## 161 David Baltimore
## 162 David H. Hubel
## 163 David J. Gross
## 164 David J. Thouless
## 165 David J. Wineland
## 166 David M. Lee
## 167 David Trimble
## 168 Denis Mukwege
## 169 Dennis Gabor
## 170 Derek H. R. Barton
## 171 Derek Walcott
## 172 Desmond Mpilo Tutu
## 173 Dickinson W. Richards
## 174 Didier Queloz
## 175 Donald Arthur Glaser
## 176 Donald J. Cram
## 177 Donna Strickland
## 178 Doris Lessing
## 179 Dorothy Crowfoot Hodgkin
## 180 Douglas D. Osheroff
## 181 Douglass C. North
## 182 Dudley R. Herschbach
## 183 E. Donnall Thomas
## 184 Edward Mills Purcell
## 185 Earl W. Sutherland, Jr.
## 186 Edgar Douglas Adrian
## 187 Edmond H. Fischer
## 188 Edmund S. Phelps
## 189 Eduard Buchner
## 190 Edvard I. Moser
## 191 Edward Adelbert Doisy
## 192 Edward B. Lewis
## 193 Edward Calvin Kendall
## 194 Edward C. Prescott
## 195 Edward Lawrie Tatum
## 196 Sir Edward Victor Appleton
## 197 Edwin G. Krebs
## 198 Edwin Mattison McMillan
## 199 Antonio Caetano de Abreu Freire Egas Moniz
## 200 Ei-ichi Negishi
## 201 Eisaku Sato
## 202 Elfriede Jelinek
## 203 Elias Canetti
## 204 Elias James Corey
## 205 Élie Ducommun
## 206 Elie Wiesel
## 207 Elihu Root
## 208 Elinor Ostrom
## 209 Elizabeth H. Blackburn
## 210 Ellen Johnson Sirleaf
## 211 Hermann Emil Fischer
## 212 Emil Adolf von Behring
## 213 Emilio Gino Segrè
## 214 Emily Greene Balch
## 215 Enrico Fermi
## 216 Eric Betzig
## 217 Eric A. Cornell
## 218 Eric F. Wieschaus
## 219 Eric R. Kandel
## 220 Eric S. Maskin
## 221 Erik Axel Karlfeldt
## 222 Ernest Miller Hemingway
## 223 Ernest Orlando Lawrence
## 224 Ernest Rutherford
## 225 Ernest Thomas Sinton Walton
## 226 Ernesto Teodoro Moneta
## 227 Ernst Boris Chain
## 228 Ernst Otto Fischer
## 229 Ernst Ruska
## 230 Erwin Neher
## 231 Erwin Schrödinger
## 232 Esther Duflo
## 233 Eugene F. Fama
## 234 Eugene Gladstone O'Neill
## 235 Eugene Paul Wigner
## 236 Eugenio Montale
## 237
## 238 Eyvind Johnson
## 239 F. Duncan M. Haldane
## 240 F. Sherwood Rowland
## 241 Frederik Willem de Klerk
## 242 Felix Bloch
## 243 Feodor Lynen
## 244 Karl Ferdinand Braun
## 245 Ferdinand Buisson
## 246 Ferid Murad
## 247 Finn E. Kydland
## 248 Frances H. Arnold
## 249 Francis Harry Compton Crick
## 250 Francis William Aston
## 251 Franco Modigliani
## 252 François Englert
## 253 François Jacob
## 254 François Mauriac
## 255 Françoise Barré-Sinoussi
## 256 Frank Billings Kellogg
## 257 Frank Wilczek
## 258 Frans Eemil Sillanpää
## 259 Frédéric Joliot
## 260 Frédéric Mistral
## 261 Frédéric Passy
## 262 Frederick Chapman Robbins
## 263 Frederick Grant Banting
## 264 Frederick Reines
## 265 Frederick Sanger
## 266 Frederick Soddy
## 267 Fredrik Bajer
## 268 Fridtjof Nansen
## 269 Friedrich Bergius
## 270 Friedrich August von Hayek
## 271
## 272 Frits Zernike
## 273 Fritz Haber
## 274 Fritz Albert Lipmann
## 275 Fritz Pregl
## 276 Gabriel García Márquez
## 277 Gabriel Lippmann
## 278 Gabriela Mistral
## 279 Gao Xingjian
## 280 Gary S. Becker
## 281 Geoffrey Wilkinson
## 282 Georg von Békésy
## 283 Georg Wittig
## 284 George A. Akerlof
## 285 George A. Olah
## 286 George Wells Beadle
## 287 George Bernard Shaw
## 288 George Catlett Marshall
## 289 George D. Snell
## 290 George de Hevesy
## 291 George E. Palade
## 292 George E. Smith
## 293 George F. Smoot
## 294 George H. Hitchings
## 295 George Hoyt Whipple
## 296 George J. Stigler
## 297 George P. Smith
## 298 George Paget Thomson
## 299 George Porter
## 300 George Richards Minot
## 301 George Wald
## 302 Georges Charpak
## 303 Georges J.F. Köhler
## 304 Georges Pire
## 305 Gerald M. Edelman
## 306 Gerard Debreu
## 307 Gérard Mourou
## 308 Gerardus 't Hooft
## 309 Gerd Binnig
## 310 Gerhard Domagk
## 311 Gerhard Ertl
## 312 Gerhard Herzberg
## 313 Gerhart Johann Robert Hauptmann
## 314 Gertrude B. Elion
## 315 Gerty Theresa Cori, née Radnitz
## 316 Giorgos Seferis
## 317 Giosuè Carducci
## 318 Giulio Natta
## 319 Glenn Theodore Seaborg
## 320 Godfrey N. Hounsfield
## 321
## 322 Grazia Deledda
## 323 Gregg L. Semenza
## 324 Guglielmo Marconi
## 325 Gunnar Myrdal
## 326 Günter Blobel
## 327 Günter Grass
## 328 Nils Gustaf Dalén
## 329 Gustav Ludwig Hertz
## 330 Gustav Stresemann
## 331 H. David Politzer
## 332 Har Gobind Khorana
## 333 H. Robert Horvitz
## 334 Halldór Kiljan Laxness
## 335 Hamilton O. Smith
## 336 Hannes Olof Gösta Alfvén
## 337 Hans Albrecht Bethe
## 338 Hans Fischer
## 339 Hans G. Dehmelt
## 340 Hans Adolf Krebs
## 341 Hans Spemann
## 342 Hans Karl August Simon von Euler-Chelpin
## 343 Harald zur Hausen
## 344 Harold Clayton Urey
## 345 Harold E. Varmus
## 346 Harold Pinter
## 347 Harry M. Markowitz
## 348 Harry Martinson
## 349 Hartmut Michel
## 350 Heike Kamerlingh Onnes
## 351 Heinrich Böll
## 352 Heinrich Rohrer
## 353 Heinrich Otto Wieland
## 354 Hendrik Antoon Lorentz
## 355 Antoine Henri Becquerel
## 356 Henri Bergson
## 357 Henri La Fontaine
## 358 Henri Moissan
## 359 Henrik Carl Peter Dam
## 360 Henrik Pontoppidan
## 361 Jean Henry Dunant
## 362 Henry Alfred Kissinger
## 363 Henry Taube
## 364 Henry W. Kendall
## 365 Henryk Sienkiewicz
## 366 Herbert A. Hauptman
## 367 Herbert C. Brown
## 368 Herbert Kroemer
## 369 Herbert Spencer Gasser
## 370 Herbert A. Simon
## 371 Hermann Hesse
## 372 Hermann Joseph Muller
## 373 Hermann Staudinger
## 374 Herta Müller
## 375 Hideki Shirakawa
## 376 Hideki Yukawa
## 377 Hiroshi Amano
## 378 Karl Hjalmar Branting
## 379 Horst L. Störmer
## 380 Howard Martin Temin
## 381 Axel Hugo Theodor Theorell
## 382 Igor Yevgenyevich Tamm
## 383 Il´ja Mikhailovich Frank
## 384 Ilya Ilyich Mechnikov
## 385 Ilya Romanovich Prigogine
## 386 Imre Kertész
## 387
## 388
## 389
## 390
## 391
## 392
## 393
## 394
## 395 Irène Joliot-Curie
## 396 Irving Langmuir
## 397 Irwin Rose
## 398 Isaac Bashevis Singer
## 399 Isamu Akasaki
## 400 Isidor Isaac Rabi
## 401 Ivan Alekseyevich Bunin
## 402 Ivan Petrovich Pavlov
## 403 Ivar Giaever
## 404 Ivo Andric
## 405 J. Georg Bednorz
## 406 J. Hans D. Jensen
## 407 John M. Coetzee
## 408 J. Michael Bishop
## 409 J. Michael Kosterlitz
## 410 J. Robin Warren
## 411 Joseph John Thomson
## 412 Jacinto Benavente
## 413 Jack S. Kilby
## 414 Jack Steinberger
## 415 Jack W. Szostak
## 416 Jacobus Henricus van 't Hoff
## 417 Jacques Dubochet
## 418 Jacques Monod
## 419 James A. Mirrlees
## 420 James Batcheller Sumner
## 421 James Chadwick
## 422 James Watson Cronin
## 423 James E. Meade
## 424 James E. Rothman
## 425 James Franck
## 426 James J. Heckman
## 427 James M. Buchanan Jr.
## 428 James P. Allison
## 429 James Peebles
## 430 Leo James Rainwater
## 431 James Tobin
## 432 James Dewey Watson
## 433 Jan Tinbergen
## 434 Jane Addams
## 435 Jaroslav Heyrovsky
## 436 Jaroslav Seifert
## 437 Jean Baptiste Perrin
## 438 Jean Dausset
## 439 Jean Tirole
## 440 Jean-Marie Gustave Le Clézio
## 441 Jean-Marie Lehn
## 442 Jean-Paul Sartre
## 443 Jean-Pierre Sauvage
## 444 Jeffrey C. Hall
## 445 Jens C. Skou
## 446 Jerome I. Friedman
## 447 Jerome Karle
## 448 James Earl Carter
## 449 Joachim Frank
## 450 Jody Williams
## 451 Johann Deisenhofer
## 452 Johannes Diderik van der Waals
## 453 Johannes Andreas Grib Fibiger
## 454 Johannes Stark
## 455 Johannes Vilhelm Jensen
## 456 John B. Fenn
## 457 John B. Goodenough
## 458 John Bardeen
## 459 John C. Harsanyi
## 460 John Cowdery Kendrew
## 461 John C. Mather
## 462 John C. Polanyi
## 463 Sir John Douglas Cockcroft
## 464 John Warcup Cornforth
## 465 John E. Sulston
## 466 John E. Walker
## 467 John Franklin Enders
## 468 John F. Nash Jr.
## 469 John Galsworthy
## 470 John Howard Northrop
## 471 John Hasbrouck van Vleck
## 472 John Hume
## 473 John L. Hall
## 474 John James Rickard Macleod
## 475 John O'Keefe
## 476 John A. Pople
## 477 John R. Hicks
## 478 John Raleigh Mott
## 479 John R. Vane
## 480 John Steinbeck
## 481 José Echegaray y Eizaguirre
## 482 José Ramos-Horta
## 483 José Saramago
## 484 Joseph Brodsky
## 485 Joseph E. Murray
## 486 Joseph E. Stiglitz
## 487 Joseph Erlanger
## 488 Joseph H. Taylor Jr.
## 489 Joseph L. Goldstein
## 490 Joseph Rotblat
## 491 Joshua Lederberg
## 492 Juan Manuel Santos
## 493 Juan Ramón Jiménez
## 494 Jules A. Hoffmann
## 495 Jules Bordet
## 496 Julian Schwinger
## 497 Julius Axelrod
## 498 Julius Wagner-Jauregg
## 499 K. Alexander Müller
## 500 Kai M. Siegbahn
## 501 Kailash Satyarthi
## 502 Karl Adolph Gjellerup
## 503 Karl Landsteiner
## 504 Karl von Frisch
## 505 Karl Ziegler
## 506 Kary B. Mullis
## 507 Kazuo Ishiguro
## 508 Haldan Keffer Hartline
## 509 Kenichi Fukui
## 510 Kenneth G. Wilson
## 511 Kenneth J. Arrow
## 512 Kenzaburo Oe
## 513 Kim Dae-jung
## 514 Kip S. Thorne
## 515 Klas Pontus Arnoldson
## 516 Klaus von Klitzing
## 517 Knut Pedersen Hamsun
## 518 Kofi Atta Annan
## 519 Koichi Tanaka
## 520 Konrad Bloch
## 521 Konrad Lorenz
## 522 Konstantin Novoselov
## 523 Kurt Alder
## 524 Kurt Wüthrich
## 525 Lars Onsager
## 526 Lars Peter Hansen
## 527 William Lawrence Bragg
## 528 Lawrence R. Klein
## 529 Le Duc Tho
## 530
## 531 Lech Walesa
## 532 Leland H. Hartwell
## 533 Leo Esaki
## 534 Léon Victor Auguste Bourgeois
## 535 Léon Jouhaux
## 536 Leon M. Lederman
## 537 Leon Neil Cooper
## 538 Leonid Hurwicz
## 539 Leonid Vitaliyevich Kantorovich
## 540 Leopold Ruzicka
## 541 Lester Bowles Pearson
## 542 Lev Davidovich Landau
## 543 Leymah Gbowee
## 544 Linda B. Buck
## 545 Linus Carl Pauling
## 546 Liu Xiaobo
## 547 Lloyd S. Shapley
## 548 John Boyd Orr, Baron Boyd-Orr of Brechin Mearn
## 549 Lord Rayleigh (John William Strutt)
## 550 Lord (Alexander R.) Todd
## 551 Prince Louis-Victor Pierre Raymond de Broglie
## 552 Louis J. Ignarro
## 553 Louis Eugène Félix Néel
## 554 Louis Renault
## 555 Luc Montagnier
## 556 Ludwig Quidde
## 557 Luigi Pirandello
## 558 Luis Walter Alvarez
## 559 Luis F. Leloir
## 560 M. Stanley Whittingham
## 561 Mairead Corrigan
## 562 Makoto Kobayashi
## 563 Malala Yousafzai
## 564 Manfred Eigen
## 565 Karl Manne Georg Siegbahn
## 566 Maria Goeppert Mayer
## 567 Marie Curie, née Sklodowska
## 568 Mario J. Molina
## 569 Mario R. Capecchi
## 570 Mario Vargas Llosa
## 571 Marshall W. Nirenberg
## 572 Martin Chalfie
## 573 Martin Karplus
## 574 Martin L. Perl
## 575 Martin Luther King Jr.
## 576 Martin Rodbell
## 577 Sir Martin Ryle
## 578 Martinus J.G. Veltman
## 579 Martti Ahtisaari
## 580 Masatoshi Koshiba
## 581 Maurice Allais
## 582 Count Maurice (Mooris) Polidore Marie Bernhard Maeterlinck
## 583 Maurice Hugh Frederick Wilkins
## 584 Max Born
## 585 Max Delbrück
## 586 Max Ferdinand Perutz
## 587 Max Karl Ernst Ludwig Planck
## 588 Max Theiler
## 589 Max von Laue
## 590 May-Britt Moser
## 591
## 592 Melvin Calvin
## 593 Melvin Schwartz
## 594 Menachem Begin
## 595 Merton H. Miller
## 596 Michael Kremer
## 597 Michael Levitt
## 598 Michael Rosbash
## 599 Michael S. Brown
## 600 Michael Smith
## 601 Michael W. Young
## 602 Michel Mayor
## 603 Miguel Angel Asturias
## 604 Mikhail Sergeyevich Gorbachev
## 605 Mikhail Aleksandrovich Sholokhov
## 606 Milton Friedman
## 607 Mo Yan
## 608 Mohamed ElBaradei
## 609 Mother Teresa
## 610 Muhammad Yunus
## 611 Murray Gell-Mann
## 612 Myron S. Scholes
## 613 Nadia Murad Basee Taha
## 614 Nadine Gordimer
## 615 Naguib Mahfouz
## 616
## 617 Lars Olof Jonathan (Nathan) Söderblom
## 618
## 619 Nelly Sachs
## 620 Nelson Rolihlahla Mandela
## 621 Nicholas Murray Butler
## 622 Nicolaas Bloembergen
## 623 Nicolay Gennadiyevich Basov
## 624 Niels Henrik David Bohr
## 625 Niels K. Jerne
## 626 Niels Ryberg Finsen
## 627 Nikolaas Tinbergen
## 628 Nikolay Nikolaevich Semenov
## 629 Norman Ernest Borlaug
## 630 Norman F. Ramsey
## 631 Walter Norman Haworth
## 632 Octavio Paz
## 633 Odd Hassel
## 634 Odysseus Elytis
## 635
## 636 Olga Tokarczuk
## 637 Oliver E. Williamson
## 638 Oliver Hart
## 639 Oliver Smithies
## 640
## 641 Orhan Pamuk
## 642 Osamu Shimomura
## 643 Oscar Arias Sánchez
## 644 Otto Paul Hermann Diels
## 645 Otto Hahn
## 646 Otto Loewi
## 647 Otto Fritz Meyerhof
## 648 Otto Stern
## 649 Otto Wallach
## 650 Otto Heinrich Warburg
## 651 Owen Chamberlain
## 652 Owen Willans Richardson
## 653 Pablo Neruda
## 654 Pär Fabian Lagerkvist
## 655 Patrick Maynard Stuart Blackett
## 656 Patrick Modiano
## 657 Patrick White
## 658 Paul A. Samuelson
## 659 Paul Adrien Maurice Dirac
## 660 Paul Berg
## 661 Paul C. Lauterbur
## 662 Paul D. Boyer
## 663 Paul Ehrlich
## 664 Paul Greengard
## 665 Paul Henri Benjamin Balluet d'Estournelles de Constant, Baron de Constant de Rebecque
## 666 Paul Johann Ludwig Heyse
## 667 Paul J. Crutzen
## 668 Paul J. Flory
## 669 Paul Karrer
## 670 Paul Krugman
## 671 Paul M. Romer
## 672 Paul Modrich
## 673 Paul Hermann Müller
## 674 Paul Sabatier
## 675 Pavel Alekseyevich Cherenkov
## 676 Pearl Buck
## 677 Percy Williams Bridgman
## 678
## 679 Peter A. Diamond
## 680 Peter Agre
## 681 Peter C. Doherty
## 682 Petrus (Peter) Josephus Wilhelmus Debye
## 683 Peter Grünberg
## 684 Peter Handke
## 685 Peter W. Higgs
## 686 Peter Brian Medawar
## 687 Peter D. Mitchell
## 688 Peyton Rous
## 689 Philip J. Noel-Baker
## 690 Philip Showalter Hench
## 691 Philip Warren Anderson
## 692 Philipp Eduard Anton von Lenard
## 693 Phillip A. Sharp
## 694 Pierre Curie
## 695 Pierre-Gilles de Gennes
## 696 Pieter Zeeman
## 697 Polykarp Kusch
## 698
## 699 Pyotr Leonidovich Kapitsa
## 700 Rabindranath Tagore
## 701 Ragnar Frisch
## 702 Ragnar Granit
## 703 Rainer Weiss
## 704 Ralph Bunche
## 705 Ralph M. Steinman
## 706 William Randal Cremer
## 707 Randy W. Schekman
## 708 Raymond Davis Jr.
## 709 Reinhard Selten
## 710 Renato Dulbecco
## 711 René Cassin
## 712 Riccardo Giacconi
## 713 Richard Axel
## 714 Richard E. Smalley
## 715 Richard E. Taylor
## 716 Richard F. Heck
## 717 Richard H. Thaler
## 718 Richard Henderson
## 719 Richard J. Roberts
## 720 Richard Kuhn
## 721 Richard Laurence Millington Synge
## 722 Richard P. Feynman
## 723 Richard R. Ernst
## 724 Richard R. Schrock
## 725 Richard Stone
## 726 Richard Martin Willstätter
## 727 Richard Adolf Zsigmondy
## 728 Rigoberta Menchú Tum
## 729 Rita Levi-Montalcini
## 730 Roald Hoffmann
## 731 Robert Andrews Millikan
## 732 Robert B. Laughlin
## 733 Robert Burns Woodward
## 734 Robert Bárány
## 735 Robert C. Merton
## 736 Robert C. Richardson
## 737 Edgar Algernon Robert Gascoyne-Cecil, 1st Viscount Cecil of Chelwood
## 738 Robert E. Lucas Jr.
## 739 Robert F. Curl Jr.
## 740 Robert F. Engle III
## 741 Robert F. Furchgott
## 742 Robert G. Edwards
## 743 Robert H. Grubbs
## 744 Robert Hofstadter
## 745 Robert Huber
## 746 Robert J. Aumann
## 747 Robert J. Lefkowitz
## 748 Robert J. Shiller
## 749 Robert Koch
## 750 Robert M. Solow
## 751 Robert A. Mundell
## 752 Robert S. Mulliken
## 753 John Robert Schrieffer
## 754 Robert W. Fogel
## 755 Robert W. Holley
## 756 Robert Woodrow Wilson
## 757 Roderick MacKinnon
## 758 Rodney R. Porter
## 759 Roger B. Myerson
## 760 Roger D. Kornberg
## 761 Roger Guillemin
## 762 Roger Martin du Gard
## 763 Roger W. Sperry
## 764 Roger Y. Tsien
## 765 Rolf M. Zinkernagel
## 766 Romain Rolland
## 767 Ronald George Wreyford Norrish
## 768 Ronald H. Coase
## 769 Ronald Ross
## 770 Rosalyn Yalow
## 771 Roy J. Glauber
## 772 Rudolf Christoph Eucken
## 773 Rudolf Ludwig Mössbauer
## 774 Rudolph A. Marcus
## 775 Rudyard Kipling
## 776 Russell A. Hulse
## 777 Ryoji Noyori
## 778 Saint-John Perse
## 779 Salvador E. Luria
## 780 Salvatore Quasimodo
## 781 Samuel Beckett
## 782 Samuel Chao Chung Ting
## 783 Santiago Ramón y Cajal
## 784 Satoshi Ōmura
## 785 Saul Bellow
## 786 Saul Perlmutter
## 787 Seamus Heaney
## 788 Seán MacBride
## 789 Selma Ottilia Lovisa Lagerlöf
## 790 Selman Abraham Waksman
## 791 Serge Haroche
## 792 Severo Ochoa
## 793 Sheldon Lee Glashow
## 794 Shimon Peres
## 795 Shinya Yamanaka
## 796 Shirin Ebadi
## 797 Shmuel Yosef Agnon
## 798 Shuji Nakamura
## 799 Sidney Altman
## 800 Sigrid Undset
## 801 Simon Kuznets
## 802 Simon van der Meer
## 803 Sin-Itiro Tomonaga
## 804 Sinclair Lewis
## 805 Sir Alexander Fleming
## 806 Sir Arthur Lewis
## 807 Sir Austen Chamberlain
## 808 Sir Bernard Katz
## 809 Sir Chandrasekhara Venkata Raman
## 810 Sir Charles Scott Sherrington
## 811 Sir Cyril Norman Hinshelwood
## 812 Sir Frank Macfarlane Burnet
## 813 Sir Frederick Gowland Hopkins
## 814 Sir Gregory P. Winter
## 815 Sir Harold W. Kroto
## 816 Sir Henry Hallett Dale
## 817 Sir Howard Walter Florey
## 818 Sir J. Fraser Stoddart
## 819 Sir James W. Black
## 820 Sir John B. Gurdon
## 821 Sir John Carew Eccles
## 822 Sir Martin J. Evans
## 823 Sir Nevill Francis Mott
## 824 Sir Norman Angell (Ralph Lane)
## 825 Sir Paul M. Nurse
## 826 Sir Peter J. Ratcliffe
## 827 Sir Peter Mansfield
## 828 Sir Robert Robinson
## 829 Sir William Ramsay
## 830 Stanford Moore
## 831 Stanley B. Prusiner
## 832 Stanley Cohen
## 833 Stefan W. Hell
## 834 Steven Chu
## 835 Steven Weinberg
## 836 Subramanyan Chandrasekhar
## 837 Sully Prudhomme
## 838 Sune K. Bergström
## 839 Susumu Tonegawa
## 840 Svante August Arrhenius
## 841 Svetlana Alexievich
## 842 Sydney Brenner
## 843 Thomas Stearns Eliot
## 844 Tadeus Reichstein
## 845 Takaaki Kajita
## 846 Tasuku Honjo
## 847 Tawakkol Karman
## 848 The 14th Dalai Lama (Tenzin Gyatso)
## 849 The (Theodor) Svedberg
## 850 Emil Theodor Kocher
## 851 Christian Matthias Theodor Mommsen
## 852 Theodor W. Hänsch
## 853 Theodore Roosevelt Jr
## 854 Theodore William Richards
## 855 Theodore W. Schultz
## 856 Thomas A. Steitz
## 857 Thomas C. Schelling
## 858 Thomas C. Südhof
## 859 Thomas Hunt Morgan
## 860 Thomas Huckle Weller
## 861 Thomas J. Sargent
## 862 Thomas Mann
## 863 Thomas R. Cech
## 864 Tim Hunt
## 865 Tjalling C. Koopmans
## 866 Tobias Michael Carel Asser
## 867 Tomas Lindahl
## 868 Tomas Tranströmer
## 869 Toni Morrison
## 870 Torsten N. Wiesel
## 871 Toshihide Maskawa
## 872 Trygve Haavelmo
## 873 Tsung-Dao (T.D.) Lee
## 874 Tu Youyou
## 875 Ulf von Euler
## 876
## 877
## 878
## 879 Sir Vidiadhar Surajprasad Naipaul
## 880 Val Logsdon Fitch
## 881 Venkatraman Ramakrishnan
## 882 Carl Gustaf Verner von Heidenstam
## 883 Vernon L. Smith
## 884 Vicente Aleixandre
## 885 Victor Franz Hess
## 886 Victor Grignard
## 887 Vincent du Vigneaud
## 888 Vitaly Lazarevich Ginzburg
## 889 Vladimir Prelog
## 890 Walter Gilbert
## 891 Walter Houser Brattain
## 892 Walter Rudolf Hess
## 893 Walter Kohn
## 894 Walther Bothe
## 895 Walther Hermann Nernst
## 896 Wangari Muta Maathai
## 897 Wassily Wassilyevich Leontief
## 898 Wendell Meredith Stanley
## 899 Werner Arber
## 900 Werner Forssmann
## 901 Werner Karl Heisenberg
## 902 Wilhelm Conrad Röntgen
## 903 Wilhelm Ostwald
## 904 Wilhelm Wien
## 905 Willard Frank Libby
## 906 Willard S. Boyle
## 907 Willem Einthoven
## 908 William Alfred Fowler
## 909 William Bradford Shockley
## 910 Sir William Henry Bragg
## 911 William Butler Yeats
## 912 William C. Campbell
## 913 William D. Nordhaus
## 914 William D. Phillips
## 915 William E. Moerner
## 916 William Francis Giauque
## 917 William F. Sharpe
## 918 William Faulkner
## 919 William G. Kaelin Jr
## 920 William Golding
## 921 William H. Stein
## 922 William S. Knowles
## 923 William N. Lipscomb
## 924 William Parry Murphy
## 925 William Vickrey
## 926 Willis Eugene Lamb
## 927 Willy Brandt
## 928 Sir Winston Leonard Spencer Churchill
## 929 Wislawa Szymborska
## 930 Wladyslaw Stanislaw Reymont
## 931 Wole Soyinka
## 932 Wolfgang Ketterle
## 933 Wolfgang Paul
## 934 Wolfgang Pauli
## 935 Thomas Woodrow Wilson
## 936 Yasser Arafat
## 937 Yasunari Kawabata
## 938 Yitzhak Rabin
## 939 Yoichiro Nambu
## 940 Yoshinori Ohsumi
## 941 Yuan T. Lee
## 942 Yves Chauvin
## 943 Zhores I. Alferov
## 944 Frederick Sanger
## 945
## 946 John Bardeen
## 947 Linus Carl Pauling
## 948 Marie Curie, née Sklodowska
## 949
## 950
## penName gender
## 1 male
## 2 male
## 3 male
## 4 male
## 5 male
## 6 male
## 7 male
## 8 female
## 9 male
## 10 male
## 11 male
## 12 male
## 13 male
## 14 male
## 15 male
## 16 male
## 17 male
## 18 male
## 19 male
## 20 male
## 21 male
## 22 male
## 23 male
## 24 male
## 25 male
## 26 male
## 27 male
## 28 male
## 29 male
## 30 male
## 31 male
## 32 male
## 33 male
## 34 male
## 35 male
## 36 male
## 37 male
## 38 male
## 39 male
## 40 male
## 41 female
## 42 male
## 43 male
## 44 male
## 45 female
## 46 male
## 47 male
## 48
## 49
## 50 (pen-name of Jacques Anatole Thibault) male
## 51 male
## 52 male
## 53 male
## 54 male
## 55 male
## 56 male
## 57 male
## 58 male
## 59 male
## 60 male
## 61 male
## 62 male
## 63 male
## 64 male
## 65 male
## 66 male
## 67 male
## 68 male
## 69 male
## 70 male
## 71 male
## 72 male
## 73 male
## 74 male
## 75 male
## 76 male
## 77 male
## 78 male
## 79 male
## 80 female
## 81 male
## 82 male
## 83 male
## 84 female
## 85 male
## 86 male
## 87 male
## 88 male
## 89 male
## 90 male
## 91 male
## 92 male
## 93 male
## 94 male
## 95 male
## 96 female
## 97 male
## 98 male
## 99 male
## 100 female
## 101 male
## 102 male
## 103 male
## 104 male
## 105 male
## 106 male
## 107 male
## 108 male
## 109 male
## 110 male
## 111 male
## 112 male
## 113 male
## 114 male
## 115 male
## 116 male
## 117 male
## 118 male
## 119 male
## 120 male
## 121 male
## 122 female
## 123 male
## 124 male
## 125 male
## 126 male
## 127 male
## 128 male
## 129 male
## 130 male
## 131 male
## 132 male
## 133 male
## 134 male
## 135 male
## 136 male
## 137 male
## 138 male
## 139 female
## 140 male
## 141 male
## 142 male
## 143 male
## 144 male
## 145 male
## 146 male
## 147 male
## 148 male
## 149 male
## 150 male
## 151 male
## 152 male
## 153 male
## 154 male
## 155 male
## 156 male
## 157 male
## 158 male
## 159 male
## 160 male
## 161 male
## 162 male
## 163 male
## 164 male
## 165 male
## 166 male
## 167 male
## 168 male
## 169 male
## 170 male
## 171 male
## 172 male
## 173 male
## 174 male
## 175 male
## 176 male
## 177 female
## 178 female
## 179 female
## 180 male
## 181 male
## 182 male
## 183 male
## 184 male
## 185 male
## 186 male
## 187 male
## 188 male
## 189 male
## 190 male
## 191 male
## 192 male
## 193 male
## 194 male
## 195 male
## 196 male
## 197 male
## 198 male
## 199 male
## 200 male
## 201 male
## 202 female
## 203 male
## 204 male
## 205 male
## 206 male
## 207 male
## 208 female
## 209 female
## 210 female
## 211 male
## 212 male
## 213 male
## 214 female
## 215 male
## 216 male
## 217 male
## 218 male
## 219 male
## 220 male
## 221 male
## 222 male
## 223 male
## 224 male
## 225 male
## 226 male
## 227 male
## 228 male
## 229 male
## 230 male
## 231 male
## 232 female
## 233 male
## 234 male
## 235 male
## 236 male
## 237
## 238 male
## 239 male
## 240 male
## 241 male
## 242 male
## 243 male
## 244 male
## 245 male
## 246 male
## 247 male
## 248 female
## 249 male
## 250 male
## 251 male
## 252 male
## 253 male
## 254 male
## 255 female
## 256 male
## 257 male
## 258 male
## 259 male
## 260 male
## 261 male
## 262 male
## 263 male
## 264 male
## 265 male
## 266 male
## 267 male
## 268 male
## 269 male
## 270 male
## 271
## 272 male
## 273 male
## 274 male
## 275 male
## 276 male
## 277 male
## 278 (pen-name of Lucila Godoy y Alcayaga) female
## 279 male
## 280 male
## 281 male
## 282 male
## 283 male
## 284 male
## 285 male
## 286 male
## 287 male
## 288 male
## 289 male
## 290 male
## 291 male
## 292 male
## 293 male
## 294 male
## 295 male
## 296 male
## 297 male
## 298 male
## 299 male
## 300 male
## 301 male
## 302 male
## 303 male
## 304 male
## 305 male
## 306 male
## 307 male
## 308 male
## 309 male
## 310 male
## 311 male
## 312 male
## 313 male
## 314 female
## 315 female
## 316 (pen-name of Giorgos Seferiadis) male
## 317 male
## 318 male
## 319 male
## 320 male
## 321
## 322 (pen-name of Grazia Madesani, née Deledda) female
## 323 male
## 324 male
## 325 male
## 326 male
## 327 male
## 328 male
## 329 male
## 330 male
## 331 male
## 332 male
## 333 male
## 334 male
## 335 male
## 336 male
## 337 male
## 338 male
## 339 male
## 340 male
## 341 male
## 342 male
## 343 male
## 344 male
## 345 male
## 346 male
## 347 male
## 348 male
## 349 male
## 350 male
## 351 male
## 352 male
## 353 male
## 354 male
## 355 male
## 356 male
## 357 male
## 358 male
## 359 male
## 360 male
## 361 male
## 362 male
## 363 male
## 364 male
## 365 male
## 366 male
## 367 male
## 368 male
## 369 male
## 370 male
## 371 male
## 372 male
## 373 male
## 374 female
## 375 male
## 376 male
## 377 male
## 378 male
## 379 male
## 380 male
## 381 male
## 382 male
## 383 male
## 384 male
## 385 male
## 386 male
## 387
## 388
## 389
## 390
## 391
## 392
## 393
## 394
## 395 female
## 396 male
## 397 male
## 398 male
## 399 male
## 400 male
## 401 male
## 402 male
## 403 male
## 404 male
## 405 male
## 406 male
## 407 male
## 408 male
## 409 male
## 410 male
## 411 male
## 412 male
## 413 male
## 414 male
## 415 male
## 416 male
## 417 male
## 418 male
## 419 male
## 420 male
## 421 male
## 422 male
## 423 male
## 424 male
## 425 male
## 426 male
## 427 male
## 428 male
## 429 male
## 430 male
## 431 male
## 432 male
## 433 male
## 434 female
## 435 male
## 436 male
## 437 male
## 438 male
## 439 male
## 440 male
## 441 male
## 442 male
## 443 male
## 444 male
## 445 male
## 446 male
## 447 male
## 448 male
## 449 male
## 450 female
## 451 male
## 452 male
## 453 male
## 454 male
## 455 male
## 456 male
## 457 male
## 458 male
## 459 male
## 460 male
## 461 male
## 462 male
## 463 male
## 464 male
## 465 male
## 466 male
## 467 male
## 468 male
## 469 male
## 470 male
## 471 male
## 472 male
## 473 male
## 474 male
## 475 male
## 476 male
## 477 male
## 478 male
## 479 male
## 480 male
## 481 male
## 482 male
## 483 male
## 484 male
## 485 male
## 486 male
## 487 male
## 488 male
## 489 male
## 490 male
## 491 male
## 492 male
## 493 male
## 494 male
## 495 male
## 496 male
## 497 male
## 498 male
## 499 male
## 500 male
## 501 male
## 502 male
## 503 male
## 504 male
## 505 male
## 506 male
## 507 male
## 508 male
## 509 male
## 510 male
## 511 male
## 512 male
## 513 male
## 514 male
## 515 male
## 516 male
## 517 male
## 518 male
## 519 male
## 520 male
## 521 male
## 522 male
## 523 male
## 524 male
## 525 male
## 526 male
## 527 male
## 528 male
## 529 male
## 530
## 531 male
## 532 male
## 533 male
## 534 male
## 535 male
## 536 male
## 537 male
## 538 male
## 539 male
## 540 male
## 541 male
## 542 male
## 543 female
## 544 female
## 545 male
## 546 male
## 547 male
## 548 male
## 549 male
## 550 male
## 551 male
## 552 male
## 553 male
## 554 male
## 555 male
## 556 male
## 557 male
## 558 male
## 559 male
## 560 male
## 561 female
## 562 male
## 563 female
## 564 male
## 565 male
## 566 female
## 567 female
## 568 male
## 569 male
## 570 male
## 571 male
## 572 male
## 573 male
## 574 male
## 575 male
## 576 male
## 577 male
## 578 male
## 579 male
## 580 male
## 581 male
## 582 male
## 583 male
## 584 male
## 585 male
## 586 male
## 587 male
## 588 male
## 589 male
## 590 female
## 591
## 592 male
## 593 male
## 594 male
## 595 male
## 596 male
## 597 male
## 598 male
## 599 male
## 600 male
## 601 male
## 602 male
## 603 male
## 604 male
## 605 male
## 606 male
## 607 (pen-name of Guan Moye) male
## 608 male
## 609 female
## 610 male
## 611 male
## 612 male
## 613 female
## 614 female
## 615 male
## 616
## 617 male
## 618
## 619 female
## 620 male
## 621 male
## 622 male
## 623 male
## 624 male
## 625 male
## 626 male
## 627 male
## 628 male
## 629 male
## 630 male
## 631 male
## 632 male
## 633 male
## 634 (pen-name of Odysseus Alepoudhelis) male
## 635
## 636 female
## 637 male
## 638 male
## 639 male
## 640
## 641 male
## 642 male
## 643 male
## 644 male
## 645 male
## 646 male
## 647 male
## 648 male
## 649 male
## 650 male
## 651 male
## 652 male
## 653 (pen-name of Neftalí Ricardo Reyes Basoalto) male
## 654 male
## 655 male
## 656 male
## 657 male
## 658 male
## 659 male
## 660 male
## 661 male
## 662 male
## 663 male
## 664 male
## 665 male
## 666 male
## 667 male
## 668 male
## 669 male
## 670 male
## 671 male
## 672 male
## 673 male
## 674 male
## 675 male
## 676 (pen-name of Pearl Walsh, née Sydenstricker) female
## 677 male
## 678
## 679 male
## 680 male
## 681 male
## 682 male
## 683 male
## 684 male
## 685 male
## 686 male
## 687 male
## 688 male
## 689 male
## 690 male
## 691 male
## 692 male
## 693 male
## 694 male
## 695 male
## 696 male
## 697 male
## 698
## 699 male
## 700 male
## 701 male
## 702 male
## 703 male
## 704 male
## 705 male
## 706 male
## 707 male
## 708 male
## 709 male
## 710 male
## 711 male
## 712 male
## 713 male
## 714 male
## 715 male
## 716 male
## 717 male
## 718 male
## 719 male
## 720 male
## 721 male
## 722 male
## 723 male
## 724 male
## 725 male
## 726 male
## 727 male
## 728 female
## 729 female
## 730 male
## 731 male
## 732 male
## 733 male
## 734 male
## 735 male
## 736 male
## 737 male
## 738 male
## 739 male
## 740 male
## 741 male
## 742 male
## 743 male
## 744 male
## 745 male
## 746 male
## 747 male
## 748 male
## 749 male
## 750 male
## 751 male
## 752 male
## 753 male
## 754 male
## 755 male
## 756 male
## 757 male
## 758 male
## 759 male
## 760 male
## 761 male
## 762 male
## 763 male
## 764 male
## 765 male
## 766 male
## 767 male
## 768 male
## 769 male
## 770 female
## 771 male
## 772 male
## 773 male
## 774 male
## 775 male
## 776 male
## 777 male
## 778 (pen-name of Alexis Léger) male
## 779 male
## 780 male
## 781 male
## 782 male
## 783 male
## 784 male
## 785 male
## 786 male
## 787 male
## 788 male
## 789 female
## 790 male
## 791 male
## 792 male
## 793 male
## 794 male
## 795 male
## 796 female
## 797 male
## 798 male
## 799 male
## 800 female
## 801 male
## 802 male
## 803 male
## 804 male
## 805 male
## 806 male
## 807 male
## 808 male
## 809 male
## 810 male
## 811 male
## 812 male
## 813 male
## 814 male
## 815 male
## 816 male
## 817 male
## 818 male
## 819 male
## 820 male
## 821 male
## 822 male
## 823 male
## 824 male
## 825 male
## 826 male
## 827 male
## 828 male
## 829 male
## 830 male
## 831 male
## 832 male
## 833 male
## 834 male
## 835 male
## 836 male
## 837 (pen-name of René François Armand Prudhomme) male
## 838 male
## 839 male
## 840 male
## 841 female
## 842 male
## 843 male
## 844 male
## 845 male
## 846 male
## 847 female
## 848 male
## 849 male
## 850 male
## 851 male
## 852 male
## 853 male
## 854 male
## 855 male
## 856 male
## 857 male
## 858 male
## 859 male
## 860 male
## 861 male
## 862 male
## 863 male
## 864 male
## 865 male
## 866 male
## 867 male
## 868 male
## 869 female
## 870 male
## 871 male
## 872 male
## 873 male
## 874 female
## 875 male
## 876
## 877
## 878
## 879 male
## 880 male
## 881 male
## 882 male
## 883 male
## 884 male
## 885 male
## 886 male
## 887 male
## 888 male
## 889 male
## 890 male
## 891 male
## 892 male
## 893 male
## 894 male
## 895 male
## 896 female
## 897 male
## 898 male
## 899 male
## 900 male
## 901 male
## 902 male
## 903 male
## 904 male
## 905 male
## 906 male
## 907 male
## 908 male
## 909 male
## 910 male
## 911 male
## 912 male
## 913 male
## 914 male
## 915 male
## 916 male
## 917 male
## 918 male
## 919 male
## 920 male
## 921 male
## 922 male
## 923 male
## 924 male
## 925 male
## 926 male
## 927 male
## 928 male
## 929 female
## 930 (pen-name of Rejment) male
## 931 male
## 932 male
## 933 male
## 934 male
## 935 male
## 936 male
## 937 male
## 938 male
## 939 male
## 940 male
## 941 male
## 942 male
## 943 male
## 944 male
## 945
## 946 male
## 947 male
## 948 female
## 949
## 950
## laureate_link birth_date
## 1 http://masterdataapi.nobelprize.org/2/laureate/745 1943-00-00
## 2 http://masterdataapi.nobelprize.org/2/laureate/102 1922-06-19
## 3 http://masterdataapi.nobelprize.org/2/laureate/779 1947-10-01
## 4 http://masterdataapi.nobelprize.org/2/laureate/259 1926-08-11
## 5 http://masterdataapi.nobelprize.org/2/laureate/114 1926-01-29
## 6 http://masterdataapi.nobelprize.org/2/laureate/982 1961-02-21
## 7 http://masterdataapi.nobelprize.org/2/laureate/981 1976-08-15
## 8 http://masterdataapi.nobelprize.org/2/laureate/843 1939-06-22
## 9 http://masterdataapi.nobelprize.org/2/laureate/866 1969-12-16
## 10 http://masterdataapi.nobelprize.org/2/laureate/199 1903-03-24
## 11 http://masterdataapi.nobelprize.org/2/laureate/164 1835-10-31
## 12 http://masterdataapi.nobelprize.org/2/laureate/185 1876-12-25
## 13 http://masterdataapi.nobelprize.org/2/laureate/541 1931-11-26
## 14 http://masterdataapi.nobelprize.org/2/laureate/292 1946-02-26
## 15 http://masterdataapi.nobelprize.org/2/laureate/853 1930-09-12
## 16 http://masterdataapi.nobelprize.org/2/laureate/978 1948-01-30
## 17 http://masterdataapi.nobelprize.org/2/laureate/819 1948-03-31
## 18 http://masterdataapi.nobelprize.org/2/laureate/729 1936-01-22
## 19 http://masterdataapi.nobelprize.org/2/laureate/376 1914-02-05
## 20 http://masterdataapi.nobelprize.org/2/laureate/730 1927-04-14
## 21 http://masterdataapi.nobelprize.org/2/laureate/11 1852-12-19
## 22 http://masterdataapi.nobelprize.org/2/laureate/628 1913-11-07
## 23 http://masterdataapi.nobelprize.org/2/laureate/403 1898-08-24
## 24 http://masterdataapi.nobelprize.org/2/laureate/26 1879-03-14
## 25 http://masterdataapi.nobelprize.org/2/laureate/814 1938-03-07
## 26 http://masterdataapi.nobelprize.org/2/laureate/465 1843-05-21
## 27 http://masterdataapi.nobelprize.org/2/laureate/519 1898-00-00
## 28 http://masterdataapi.nobelprize.org/2/laureate/513 1875-01-14
## 29 http://masterdataapi.nobelprize.org/2/laureate/332 1893-09-16
## 30 http://masterdataapi.nobelprize.org/2/laureate/304 1853-09-16
## 31 http://masterdataapi.nobelprize.org/2/laureate/83 1916-07-11
## 32 http://masterdataapi.nobelprize.org/2/laureate/644 1918-12-11
## 33 http://masterdataapi.nobelprize.org/2/laureate/766 1928-06-25
## 34 http://masterdataapi.nobelprize.org/2/laureate/306 1873-06-28
## 35 http://masterdataapi.nobelprize.org/2/laureate/544 1911-03-20
## 36 http://masterdataapi.nobelprize.org/2/laureate/392 1908-12-04
## 37 http://masterdataapi.nobelprize.org/2/laureate/479 1864-11-11
## 38 http://masterdataapi.nobelprize.org/2/laureate/450 1941-07-01
## 39 http://masterdataapi.nobelprize.org/2/laureate/87 1902-05-03
## 40 http://masterdataapi.nobelprize.org/2/laureate/174 1866-12-12
## 41 http://masterdataapi.nobelprize.org/2/laureate/892 1931-07-10
## 42 http://masterdataapi.nobelprize.org/2/laureate/417 1924-02-23
## 43 http://masterdataapi.nobelprize.org/2/laureate/305 1862-06-05
## 44 http://masterdataapi.nobelprize.org/2/laureate/300 1845-06-18
## 45 http://masterdataapi.nobelprize.org/2/laureate/543 1902-01-31
## 46 http://masterdataapi.nobelprize.org/2/laureate/882 1951-12-18
## 47 http://masterdataapi.nobelprize.org/2/laureate/719 1933-11-03
## 48 http://masterdataapi.nobelprize.org/2/laureate/509
## 49 http://masterdataapi.nobelprize.org/2/laureate/537
## 50 http://masterdataapi.nobelprize.org/2/laureate/590 1844-04-16
## 51 http://masterdataapi.nobelprize.org/2/laureate/360 1895-09-24
## 52 http://masterdataapi.nobelprize.org/2/laureate/849 1958-10-21
## 53 http://masterdataapi.nobelprize.org/2/laureate/618 1869-11-22
## 54 http://masterdataapi.nobelprize.org/2/laureate/381 1902-05-08
## 55 http://masterdataapi.nobelprize.org/2/laureate/534 1921-05-21
## 56 http://masterdataapi.nobelprize.org/2/laureate/377 1917-11-22
## 57 http://masterdataapi.nobelprize.org/2/laureate/412 1926-11-30
## 58 http://masterdataapi.nobelprize.org/2/laureate/802 1959-04-27
## 59 http://masterdataapi.nobelprize.org/2/laureate/926 1945-10-19
## 60 http://masterdataapi.nobelprize.org/2/laureate/768 1938-03-26
## 61 http://masterdataapi.nobelprize.org/2/laureate/101 1924-05-11
## 62 http://masterdataapi.nobelprize.org/2/laureate/538 1918-12-25
## 63 http://masterdataapi.nobelprize.org/2/laureate/214 1910-03-01
## 64 http://masterdataapi.nobelprize.org/2/laureate/311 1886-09-26
## 65 http://masterdataapi.nobelprize.org/2/laureate/891 1940-11-20
## 66 http://masterdataapi.nobelprize.org/2/laureate/490 1862-03-28
## 67 http://masterdataapi.nobelprize.org/2/laureate/208 1902-08-10
## 68 http://masterdataapi.nobelprize.org/2/laureate/111 1933-04-26
## 69 http://masterdataapi.nobelprize.org/2/laureate/960 1922-09-02
## 70 http://masterdataapi.nobelprize.org/2/laureate/920 1943-08-29
## 71 http://masterdataapi.nobelprize.org/2/laureate/33 1892-09-10
## 72 http://masterdataapi.nobelprize.org/2/laureate/186 1865-10-12
## 73 http://masterdataapi.nobelprize.org/2/laureate/499 1863-09-13
## 74 http://masterdataapi.nobelprize.org/2/laureate/368 1918-03-03
## 75 http://masterdataapi.nobelprize.org/2/laureate/119 1921-05-05
## 76 http://masterdataapi.nobelprize.org/2/laureate/203 1895-01-15
## 77 http://masterdataapi.nobelprize.org/2/laureate/722 1923-01-25
## 78 http://masterdataapi.nobelprize.org/2/laureate/310 1874-11-15
## 79 http://masterdataapi.nobelprize.org/2/laureate/475 1829-07-26
## 80 http://masterdataapi.nobelprize.org/2/laureate/553 1945-06-19
## 81 http://masterdataapi.nobelprize.org/2/laureate/780 1937-12-31
## 82 http://masterdataapi.nobelprize.org/2/laureate/923 1946-09-08
## 83 http://masterdataapi.nobelprize.org/2/laureate/845 1961-08-04
## 84 http://masterdataapi.nobelprize.org/2/laureate/428 1902-06-16
## 85 http://masterdataapi.nobelprize.org/2/laureate/942 1936-01-27
## 86 http://masterdataapi.nobelprize.org/2/laureate/789 1951-09-30
## 87 http://masterdataapi.nobelprize.org/2/laureate/743 1941-04-28
## 88 http://masterdataapi.nobelprize.org/2/laureate/409 1925-07-28
## 89 http://masterdataapi.nobelprize.org/2/laureate/419 1920-10-29
## 90 http://masterdataapi.nobelprize.org/2/laureate/103 1926-07-09
## 91 http://masterdataapi.nobelprize.org/2/laureate/936 1949-04-18
## 92 http://masterdataapi.nobelprize.org/2/laureate/426 1934-05-21
## 93 http://masterdataapi.nobelprize.org/2/laureate/933 1951-05-18
## 94 http://masterdataapi.nobelprize.org/2/laureate/345 1887-04-10
## 95 http://masterdataapi.nobelprize.org/2/laureate/445 1942-06-12
## 96 http://masterdataapi.nobelprize.org/2/laureate/468 1843-06-09
## 97 http://masterdataapi.nobelprize.org/2/laureate/689 1899-04-23
## 98 http://masterdataapi.nobelprize.org/2/laureate/145 1918-07-15
## 99 http://masterdataapi.nobelprize.org/2/laureate/621 1872-05-18
## 100 http://masterdataapi.nobelprize.org/2/laureate/535 1943-05-22
## 101 http://masterdataapi.nobelprize.org/2/laureate/572 1832-12-08
## 102 http://masterdataapi.nobelprize.org/2/laureate/937 1941-05-24
## 103 http://masterdataapi.nobelprize.org/2/laureate/629 1890-02-10
## 104 http://masterdataapi.nobelprize.org/2/laureate/99 1940-01-04
## 105 http://masterdataapi.nobelprize.org/2/laureate/879 1955-05-30
## 106 http://masterdataapi.nobelprize.org/2/laureate/865 1967-02-24
## 107 http://masterdataapi.nobelprize.org/2/laureate/861 1957-12-29
## 108 http://masterdataapi.nobelprize.org/2/laureate/261 1921-07-15
## 109 http://masterdataapi.nobelprize.org/2/laureate/105 1931-03-22
## 110 http://masterdataapi.nobelprize.org/2/laureate/34 1869-02-14
## 111 http://masterdataapi.nobelprize.org/2/laureate/298 1843-07-07
## 112 http://masterdataapi.nobelprize.org/2/laureate/666 1916-05-11
## 113 http://masterdataapi.nobelprize.org/2/laureate/189 1874-08-27
## 114 http://masterdataapi.nobelprize.org/2/laureate/343 1896-12-05
## 115 http://masterdataapi.nobelprize.org/2/laureate/43 1905-09-03
## 116 http://masterdataapi.nobelprize.org/2/laureate/588 1845-04-24
## 117 http://masterdataapi.nobelprize.org/2/laureate/500 1889-10-03
## 118 http://masterdataapi.nobelprize.org/2/laureate/740 1951-03-26
## 119 http://masterdataapi.nobelprize.org/2/laureate/124 1934-03-31
## 120 http://masterdataapi.nobelprize.org/2/laureate/562 1948-02-03
## 121 http://masterdataapi.nobelprize.org/2/laureate/501 1878-11-01
## 122 http://masterdataapi.nobelprize.org/2/laureate/836 1961-04-15
## 123 http://masterdataapi.nobelprize.org/2/laureate/55 1903-12-05
## 124 http://masterdataapi.nobelprize.org/2/laureate/431 1927-10-08
## 125 http://masterdataapi.nobelprize.org/2/laureate/384 1901-09-22
## 126 http://masterdataapi.nobelprize.org/2/laureate/25 1861-02-15
## 127 http://masterdataapi.nobelprize.org/2/laureate/489 1865-08-27
## 128 http://masterdataapi.nobelprize.org/2/laureate/22 1877-06-07
## 129 http://masterdataapi.nobelprize.org/2/laureate/81 1915-07-28
## 130 http://masterdataapi.nobelprize.org/2/laureate/269 1904-10-03
## 131 http://masterdataapi.nobelprize.org/2/laureate/838 1933-11-04
## 132 http://masterdataapi.nobelprize.org/2/laureate/318 1866-09-21
## 133 http://masterdataapi.nobelprize.org/2/laureate/307 1850-08-26
## 134 http://masterdataapi.nobelprize.org/2/laureate/68 1922-09-22
## 135 http://masterdataapi.nobelprize.org/2/laureate/319 1858-08-11
## 136 http://masterdataapi.nobelprize.org/2/laureate/241 1916-03-26
## 137 http://masterdataapi.nobelprize.org/2/laureate/404 1917-10-02
## 138 http://masterdataapi.nobelprize.org/2/laureate/486 1869-09-17
## 139 http://masterdataapi.nobelprize.org/2/laureate/453 1942-10-20
## 140 http://masterdataapi.nobelprize.org/2/laureate/858 1948-02-20
## 141 http://masterdataapi.nobelprize.org/2/laureate/873 1942-10-21
## 142 http://masterdataapi.nobelprize.org/2/laureate/153 1933-04-01
## 143 http://masterdataapi.nobelprize.org/2/laureate/662 1913-10-10
## 144 http://masterdataapi.nobelprize.org/2/laureate/146 1915-09-23
## 145 http://masterdataapi.nobelprize.org/2/laureate/44 1881-10-22
## 146 http://masterdataapi.nobelprize.org/2/laureate/772 1934-09-04
## 147 http://masterdataapi.nobelprize.org/2/laureate/505 1871-10-02
## 148 http://masterdataapi.nobelprize.org/2/laureate/333 1892-03-28
## 149 http://masterdataapi.nobelprize.org/2/laureate/803 1960-10-19
## 150 http://masterdataapi.nobelprize.org/2/laureate/657 1911-06-30
## 151 http://masterdataapi.nobelprize.org/2/laureate/410 1923-09-09
## 152 http://masterdataapi.nobelprize.org/2/laureate/520 1905-07-29
## 153 http://masterdataapi.nobelprize.org/2/laureate/857 1939-02-02
## 154 http://masterdataapi.nobelprize.org/2/laureate/867 1941-01-24
## 155 http://masterdataapi.nobelprize.org/2/laureate/363 1907-03-23
## 156 http://masterdataapi.nobelprize.org/2/laureate/157 1939-02-28
## 157 http://masterdataapi.nobelprize.org/2/laureate/759 1934-03-05
## 158 http://masterdataapi.nobelprize.org/2/laureate/733 1937-07-29
## 159 http://masterdataapi.nobelprize.org/2/laureate/415 1928-10-30
## 160 http://masterdataapi.nobelprize.org/2/laureate/674 1926-03-24
## 161 http://masterdataapi.nobelprize.org/2/laureate/406 1938-03-07
## 162 http://masterdataapi.nobelprize.org/2/laureate/423 1926-02-27
## 163 http://masterdataapi.nobelprize.org/2/laureate/776 1941-02-19
## 164 http://masterdataapi.nobelprize.org/2/laureate/928 1934-09-21
## 165 http://masterdataapi.nobelprize.org/2/laureate/877 1944-02-24
## 166 http://masterdataapi.nobelprize.org/2/laureate/149 1931-01-20
## 167 http://masterdataapi.nobelprize.org/2/laureate/567 1944-10-15
## 168 http://masterdataapi.nobelprize.org/2/laureate/966 1955-03-01
## 169 http://masterdataapi.nobelprize.org/2/laureate/93 1900-06-05
## 170 http://masterdataapi.nobelprize.org/2/laureate/237 1918-09-08
## 171 http://masterdataapi.nobelprize.org/2/laureate/669 1930-01-23
## 172 http://masterdataapi.nobelprize.org/2/laureate/546 1931-10-07
## 173 http://masterdataapi.nobelprize.org/2/laureate/362 1895-10-30
## 174 http://masterdataapi.nobelprize.org/2/laureate/975 1966-02-23
## 175 http://masterdataapi.nobelprize.org/2/laureate/74 1926-09-21
## 176 http://masterdataapi.nobelprize.org/2/laureate/267 1919-04-22
## 177 http://masterdataapi.nobelprize.org/2/laureate/962 1959-05-27
## 178 http://masterdataapi.nobelprize.org/2/laureate/817 1919-10-22
## 179 http://masterdataapi.nobelprize.org/2/laureate/230 1910-05-12
## 180 http://masterdataapi.nobelprize.org/2/laureate/150 1945-08-01
## 181 http://masterdataapi.nobelprize.org/2/laureate/710 1920-11-05
## 182 http://masterdataapi.nobelprize.org/2/laureate/264 1932-06-18
## 183 http://masterdataapi.nobelprize.org/2/laureate/443 1920-03-15
## 184 http://masterdataapi.nobelprize.org/2/laureate/59 1912-08-30
## 185 http://masterdataapi.nobelprize.org/2/laureate/397 1915-11-19
## 186 http://masterdataapi.nobelprize.org/2/laureate/324 1889-11-30
## 187 http://masterdataapi.nobelprize.org/2/laureate/446 1920-04-06
## 188 http://masterdataapi.nobelprize.org/2/laureate/807 1933-07-26
## 189 http://masterdataapi.nobelprize.org/2/laureate/166 1860-05-20
## 190 http://masterdataapi.nobelprize.org/2/laureate/905 1962-04-27
## 191 http://masterdataapi.nobelprize.org/2/laureate/336 1893-11-13
## 192 http://masterdataapi.nobelprize.org/2/laureate/452 1918-05-20
## 193 http://masterdataapi.nobelprize.org/2/laureate/349 1886-03-08
## 194 http://masterdataapi.nobelprize.org/2/laureate/787 1940-12-26
## 195 http://masterdataapi.nobelprize.org/2/laureate/365 1909-12-14
## 196 http://masterdataapi.nobelprize.org/2/laureate/52 1892-09-06
## 197 http://masterdataapi.nobelprize.org/2/laureate/447 1918-06-06
## 198 http://masterdataapi.nobelprize.org/2/laureate/212 1907-09-18
## 199 http://masterdataapi.nobelprize.org/2/laureate/348 1874-11-29
## 200 http://masterdataapi.nobelprize.org/2/laureate/852 1935-07-14
## 201 http://masterdataapi.nobelprize.org/2/laureate/533 1901-03-27
## 202 http://masterdataapi.nobelprize.org/2/laureate/782 1946-10-20
## 203 http://masterdataapi.nobelprize.org/2/laureate/658 1905-07-25
## 204 http://masterdataapi.nobelprize.org/2/laureate/275 1928-07-12
## 205 http://masterdataapi.nobelprize.org/2/laureate/464 1833-02-19
## 206 http://masterdataapi.nobelprize.org/2/laureate/548 1928-09-30
## 207 http://masterdataapi.nobelprize.org/2/laureate/480 1845-02-15
## 208 http://masterdataapi.nobelprize.org/2/laureate/846 1933-08-07
## 209 http://masterdataapi.nobelprize.org/2/laureate/835 1948-11-26
## 210 http://masterdataapi.nobelprize.org/2/laureate/869 1938-10-29
## 211 http://masterdataapi.nobelprize.org/2/laureate/161 1852-10-09
## 212 http://masterdataapi.nobelprize.org/2/laureate/293 1854-03-15
## 213 http://masterdataapi.nobelprize.org/2/laureate/72 1905-02-01
## 214 http://masterdataapi.nobelprize.org/2/laureate/506 1867-01-08
## 215 http://masterdataapi.nobelprize.org/2/laureate/46 1901-09-29
## 216 http://masterdataapi.nobelprize.org/2/laureate/909 1960-01-13
## 217 http://masterdataapi.nobelprize.org/2/laureate/738 1961-12-19
## 218 http://masterdataapi.nobelprize.org/2/laureate/454 1947-06-08
## 219 http://masterdataapi.nobelprize.org/2/laureate/724 1929-11-07
## 220 http://masterdataapi.nobelprize.org/2/laureate/821 1950-12-12
## 221 http://masterdataapi.nobelprize.org/2/laureate/604 1864-07-20
## 222 http://masterdataapi.nobelprize.org/2/laureate/625 1899-07-21
## 223 http://masterdataapi.nobelprize.org/2/laureate/47 1901-08-08
## 224 http://masterdataapi.nobelprize.org/2/laureate/167 1871-08-30
## 225 http://masterdataapi.nobelprize.org/2/laureate/57 1903-10-06
## 226 http://masterdataapi.nobelprize.org/2/laureate/471 1833-09-20
## 227 http://masterdataapi.nobelprize.org/2/laureate/340 1906-06-19
## 228 http://masterdataapi.nobelprize.org/2/laureate/244 1918-11-10
## 229 http://masterdataapi.nobelprize.org/2/laureate/127 1906-12-25
## 230 http://masterdataapi.nobelprize.org/2/laureate/444 1944-03-20
## 231 http://masterdataapi.nobelprize.org/2/laureate/39 1887-08-12
## 232 http://masterdataapi.nobelprize.org/2/laureate/983 1972-10-25
## 233 http://masterdataapi.nobelprize.org/2/laureate/894 1939-02-14
## 234 http://masterdataapi.nobelprize.org/2/laureate/608 1888-10-16
## 235 http://masterdataapi.nobelprize.org/2/laureate/78 1902-11-17
## 236 http://masterdataapi.nobelprize.org/2/laureate/651 1896-10-12
## 237 http://masterdataapi.nobelprize.org/2/laureate/881
## 238 http://masterdataapi.nobelprize.org/2/laureate/649 1900-07-29
## 239 http://masterdataapi.nobelprize.org/2/laureate/929 1951-09-14
## 240 http://masterdataapi.nobelprize.org/2/laureate/283 1927-06-28
## 241 http://masterdataapi.nobelprize.org/2/laureate/556 1936-03-18
## 242 http://masterdataapi.nobelprize.org/2/laureate/58 1905-10-23
## 243 http://masterdataapi.nobelprize.org/2/laureate/379 1911-04-06
## 244 http://masterdataapi.nobelprize.org/2/laureate/14 1850-06-06
## 245 http://masterdataapi.nobelprize.org/2/laureate/492 1841-12-20
## 246 http://masterdataapi.nobelprize.org/2/laureate/460 1936-09-14
## 247 http://masterdataapi.nobelprize.org/2/laureate/786 1943-12-01
## 248 http://masterdataapi.nobelprize.org/2/laureate/963 1956-07-25
## 249 http://masterdataapi.nobelprize.org/2/laureate/372 1916-06-08
## 250 http://masterdataapi.nobelprize.org/2/laureate/180 1877-09-01
## 251 http://masterdataapi.nobelprize.org/2/laureate/699 1918-06-18
## 252 http://masterdataapi.nobelprize.org/2/laureate/887 1932-11-06
## 253 http://masterdataapi.nobelprize.org/2/laureate/380 1920-06-17
## 254 http://masterdataapi.nobelprize.org/2/laureate/623 1885-10-11
## 255 http://masterdataapi.nobelprize.org/2/laureate/824 1947-07-30
## 256 http://masterdataapi.nobelprize.org/2/laureate/494 1856-12-22
## 257 http://masterdataapi.nobelprize.org/2/laureate/778 1951-05-15
## 258 http://masterdataapi.nobelprize.org/2/laureate/613 1888-09-16
## 259 http://masterdataapi.nobelprize.org/2/laureate/193 1900-03-19
## 260 http://masterdataapi.nobelprize.org/2/laureate/573 1830-09-08
## 261 http://masterdataapi.nobelprize.org/2/laureate/463 1822-05-20
## 262 http://masterdataapi.nobelprize.org/2/laureate/358 1916-08-25
## 263 http://masterdataapi.nobelprize.org/2/laureate/313 1891-11-14
## 264 http://masterdataapi.nobelprize.org/2/laureate/148 1918-03-16
## 265 http://masterdataapi.nobelprize.org/2/laureate/222 1918-08-13
## 266 http://masterdataapi.nobelprize.org/2/laureate/179 1877-09-02
## 267 http://masterdataapi.nobelprize.org/2/laureate/474 1837-04-21
## 268 http://masterdataapi.nobelprize.org/2/laureate/487 1861-10-10
## 269 http://masterdataapi.nobelprize.org/2/laureate/190 1884-10-11
## 270 http://masterdataapi.nobelprize.org/2/laureate/685 1899-05-08
## 271 http://masterdataapi.nobelprize.org/2/laureate/508
## 272 http://masterdataapi.nobelprize.org/2/laureate/60 1888-07-16
## 273 http://masterdataapi.nobelprize.org/2/laureate/177 1868-12-09
## 274 http://masterdataapi.nobelprize.org/2/laureate/355 1899-06-12
## 275 http://masterdataapi.nobelprize.org/2/laureate/181 1869-09-03
## 276 http://masterdataapi.nobelprize.org/2/laureate/659 1927-03-06
## 277 http://masterdataapi.nobelprize.org/2/laureate/12 1845-08-16
## 278 http://masterdataapi.nobelprize.org/2/laureate/615 1889-04-07
## 279 http://masterdataapi.nobelprize.org/2/laureate/734 1940-01-04
## 280 http://masterdataapi.nobelprize.org/2/laureate/708 1930-12-02
## 281 http://masterdataapi.nobelprize.org/2/laureate/245 1921-07-14
## 282 http://masterdataapi.nobelprize.org/2/laureate/371 1899-06-03
## 283 http://masterdataapi.nobelprize.org/2/laureate/253 1897-06-16
## 284 http://masterdataapi.nobelprize.org/2/laureate/744 1940-06-17
## 285 http://masterdataapi.nobelprize.org/2/laureate/280 1927-05-22
## 286 http://masterdataapi.nobelprize.org/2/laureate/364 1903-10-22
## 287 http://masterdataapi.nobelprize.org/2/laureate/596 1856-07-26
## 288 http://masterdataapi.nobelprize.org/2/laureate/514 1880-12-31
## 289 http://masterdataapi.nobelprize.org/2/laureate/421 1903-12-19
## 290 http://masterdataapi.nobelprize.org/2/laureate/201 1885-08-01
## 291 http://masterdataapi.nobelprize.org/2/laureate/405 1912-11-19
## 292 http://masterdataapi.nobelprize.org/2/laureate/840 1930-05-10
## 293 http://masterdataapi.nobelprize.org/2/laureate/805 1945-02-20
## 294 http://masterdataapi.nobelprize.org/2/laureate/439 1905-04-18
## 295 http://masterdataapi.nobelprize.org/2/laureate/326 1878-08-28
## 296 http://masterdataapi.nobelprize.org/2/laureate/696 1911-01-17
## 297 http://masterdataapi.nobelprize.org/2/laureate/964 1941-03-10
## 298 http://masterdataapi.nobelprize.org/2/laureate/45 1892-05-03
## 299 http://masterdataapi.nobelprize.org/2/laureate/235 1920-12-06
## 300 http://masterdataapi.nobelprize.org/2/laureate/327 1885-12-02
## 301 http://masterdataapi.nobelprize.org/2/laureate/387 1906-11-18
## 302 http://masterdataapi.nobelprize.org/2/laureate/142 1924-08-01
## 303 http://masterdataapi.nobelprize.org/2/laureate/430 1946-04-17
## 304 http://masterdataapi.nobelprize.org/2/laureate/517 1910-02-10
## 305 http://masterdataapi.nobelprize.org/2/laureate/398 1929-07-01
## 306 http://masterdataapi.nobelprize.org/2/laureate/697 1921-07-04
## 307 http://masterdataapi.nobelprize.org/2/laureate/961 1944-06-22
## 308 http://masterdataapi.nobelprize.org/2/laureate/158 1946-07-05
## 309 http://masterdataapi.nobelprize.org/2/laureate/128 1947-07-20
## 310 http://masterdataapi.nobelprize.org/2/laureate/334 1895-10-30
## 311 http://masterdataapi.nobelprize.org/2/laureate/816 1936-10-10
## 312 http://masterdataapi.nobelprize.org/2/laureate/240 1904-12-25
## 313 http://masterdataapi.nobelprize.org/2/laureate/582 1862-11-15
## 314 http://masterdataapi.nobelprize.org/2/laureate/438 1918-01-23
## 315 http://masterdataapi.nobelprize.org/2/laureate/344 1896-08-15
## 316 http://masterdataapi.nobelprize.org/2/laureate/635 1900-03-13
## 317 http://masterdataapi.nobelprize.org/2/laureate/576 1835-07-27
## 318 http://masterdataapi.nobelprize.org/2/laureate/229 1903-02-26
## 319 http://masterdataapi.nobelprize.org/2/laureate/213 1912-04-19
## 320 http://masterdataapi.nobelprize.org/2/laureate/418 1919-08-28
## 321 http://masterdataapi.nobelprize.org/2/laureate/810
## 322 http://masterdataapi.nobelprize.org/2/laureate/597 1871-09-27
## 323 http://masterdataapi.nobelprize.org/2/laureate/972 1956-07-12
## 324 http://masterdataapi.nobelprize.org/2/laureate/13 1874-04-25
## 325 http://masterdataapi.nobelprize.org/2/laureate/684 1898-12-06
## 326 http://masterdataapi.nobelprize.org/2/laureate/461 1936-05-21
## 327 http://masterdataapi.nobelprize.org/2/laureate/676 1927-10-16
## 328 http://masterdataapi.nobelprize.org/2/laureate/17 1869-11-30
## 329 http://masterdataapi.nobelprize.org/2/laureate/31 1887-07-22
## 330 http://masterdataapi.nobelprize.org/2/laureate/491 1878-05-10
## 331 http://masterdataapi.nobelprize.org/2/laureate/777 1949-08-31
## 332 http://masterdataapi.nobelprize.org/2/laureate/389 1922-01-09
## 333 http://masterdataapi.nobelprize.org/2/laureate/751 1947-05-08
## 334 http://masterdataapi.nobelprize.org/2/laureate/626 1902-04-23
## 335 http://masterdataapi.nobelprize.org/2/laureate/416 1931-08-23
## 336 http://masterdataapi.nobelprize.org/2/laureate/91 1908-05-30
## 337 http://masterdataapi.nobelprize.org/2/laureate/88 1906-07-02
## 338 http://masterdataapi.nobelprize.org/2/laureate/188 1881-07-27
## 339 http://masterdataapi.nobelprize.org/2/laureate/136 1922-09-09
## 340 http://masterdataapi.nobelprize.org/2/laureate/354 1900-08-25
## 341 http://masterdataapi.nobelprize.org/2/laureate/329 1869-06-27
## 342 http://masterdataapi.nobelprize.org/2/laureate/187 1873-02-15
## 343 http://masterdataapi.nobelprize.org/2/laureate/823 1936-03-11
## 344 http://masterdataapi.nobelprize.org/2/laureate/192 1893-04-29
## 345 http://masterdataapi.nobelprize.org/2/laureate/441 1939-12-18
## 346 http://masterdataapi.nobelprize.org/2/laureate/801 1930-10-10
## 347 http://masterdataapi.nobelprize.org/2/laureate/704 1927-08-24
## 348 http://masterdataapi.nobelprize.org/2/laureate/650 1904-05-06
## 349 http://masterdataapi.nobelprize.org/2/laureate/272 1948-07-18
## 350 http://masterdataapi.nobelprize.org/2/laureate/18 1853-09-21
## 351 http://masterdataapi.nobelprize.org/2/laureate/647 1917-12-21
## 352 http://masterdataapi.nobelprize.org/2/laureate/129 1933-06-06
## 353 http://masterdataapi.nobelprize.org/2/laureate/184 1877-06-04
## 354 http://masterdataapi.nobelprize.org/2/laureate/2 1853-07-18
## 355 http://masterdataapi.nobelprize.org/2/laureate/4 1852-12-15
## 356 http://masterdataapi.nobelprize.org/2/laureate/600 1859-10-18
## 357 http://masterdataapi.nobelprize.org/2/laureate/481 1854-04-22
## 358 http://masterdataapi.nobelprize.org/2/laureate/165 1852-09-28
## 359 http://masterdataapi.nobelprize.org/2/laureate/335 1895-02-21
## 360 http://masterdataapi.nobelprize.org/2/laureate/587 1857-07-24
## 361 http://masterdataapi.nobelprize.org/2/laureate/462 1828-05-08
## 362 http://masterdataapi.nobelprize.org/2/laureate/530 1923-05-27
## 363 http://masterdataapi.nobelprize.org/2/laureate/260 1915-11-30
## 364 http://masterdataapi.nobelprize.org/2/laureate/139 1926-12-09
## 365 http://masterdataapi.nobelprize.org/2/laureate/575 1846-05-05
## 366 http://masterdataapi.nobelprize.org/2/laureate/262 1917-02-14
## 367 http://masterdataapi.nobelprize.org/2/laureate/252 1912-05-22
## 368 http://masterdataapi.nobelprize.org/2/laureate/727 1928-08-25
## 369 http://masterdataapi.nobelprize.org/2/laureate/338 1888-07-05
## 370 http://masterdataapi.nobelprize.org/2/laureate/691 1916-06-15
## 371 http://masterdataapi.nobelprize.org/2/laureate/617 1877-07-02
## 372 http://masterdataapi.nobelprize.org/2/laureate/342 1890-12-21
## 373 http://masterdataapi.nobelprize.org/2/laureate/216 1881-03-23
## 374 http://masterdataapi.nobelprize.org/2/laureate/844 1953-08-17
## 375 http://masterdataapi.nobelprize.org/2/laureate/731 1936-08-20
## 376 http://masterdataapi.nobelprize.org/2/laureate/54 1907-01-23
## 377 http://masterdataapi.nobelprize.org/2/laureate/907 1960-09-11
## 378 http://masterdataapi.nobelprize.org/2/laureate/485 1860-11-23
## 379 http://masterdataapi.nobelprize.org/2/laureate/156 1949-04-06
## 380 http://masterdataapi.nobelprize.org/2/laureate/408 1934-12-10
## 381 http://masterdataapi.nobelprize.org/2/laureate/359 1903-07-06
## 382 http://masterdataapi.nobelprize.org/2/laureate/71 1895-07-08
## 383 http://masterdataapi.nobelprize.org/2/laureate/721 1908-10-23
## 384 http://masterdataapi.nobelprize.org/2/laureate/301 1845-05-15
## 385 http://masterdataapi.nobelprize.org/2/laureate/250 1917-01-25
## 386 http://masterdataapi.nobelprize.org/2/laureate/761 1929-11-09
## 387 http://masterdataapi.nobelprize.org/2/laureate/467
## 388 http://masterdataapi.nobelprize.org/2/laureate/818
## 389 http://masterdataapi.nobelprize.org/2/laureate/797
## 390 http://masterdataapi.nobelprize.org/2/laureate/948
## 391 http://masterdataapi.nobelprize.org/2/laureate/564
## 392 http://masterdataapi.nobelprize.org/2/laureate/482
## 393 http://masterdataapi.nobelprize.org/2/laureate/527
## 394 http://masterdataapi.nobelprize.org/2/laureate/547
## 395 http://masterdataapi.nobelprize.org/2/laureate/194 1897-09-12
## 396 http://masterdataapi.nobelprize.org/2/laureate/191 1881-01-31
## 397 http://masterdataapi.nobelprize.org/2/laureate/781 1926-07-16
## 398 http://masterdataapi.nobelprize.org/2/laureate/654 1904-07-14
## 399 http://masterdataapi.nobelprize.org/2/laureate/906 1929-01-30
## 400 http://masterdataapi.nobelprize.org/2/laureate/49 1898-07-29
## 401 http://masterdataapi.nobelprize.org/2/laureate/606 1870-10-22
## 402 http://masterdataapi.nobelprize.org/2/laureate/296 1849-09-14
## 403 http://masterdataapi.nobelprize.org/2/laureate/98 1929-04-05
## 404 http://masterdataapi.nobelprize.org/2/laureate/633 1892-10-10
## 405 http://masterdataapi.nobelprize.org/2/laureate/130 1950-05-16
## 406 http://masterdataapi.nobelprize.org/2/laureate/80 1907-06-25
## 407 http://masterdataapi.nobelprize.org/2/laureate/763 1940-02-09
## 408 http://masterdataapi.nobelprize.org/2/laureate/440 1936-02-22
## 409 http://masterdataapi.nobelprize.org/2/laureate/930 1943-06-22
## 410 http://masterdataapi.nobelprize.org/2/laureate/790 1937-06-11
## 411 http://masterdataapi.nobelprize.org/2/laureate/10 1856-12-18
## 412 http://masterdataapi.nobelprize.org/2/laureate/592 1866-08-12
## 413 http://masterdataapi.nobelprize.org/2/laureate/728 1923-11-08
## 414 http://masterdataapi.nobelprize.org/2/laureate/134 1921-05-25
## 415 http://masterdataapi.nobelprize.org/2/laureate/837 1952-11-09
## 416 http://masterdataapi.nobelprize.org/2/laureate/160 1852-08-30
## 417 http://masterdataapi.nobelprize.org/2/laureate/944 1942-06-08
## 418 http://masterdataapi.nobelprize.org/2/laureate/382 1910-02-09
## 419 http://masterdataapi.nobelprize.org/2/laureate/715 1936-07-05
## 420 http://masterdataapi.nobelprize.org/2/laureate/204 1887-11-19
## 421 http://masterdataapi.nobelprize.org/2/laureate/41 1891-10-20
## 422 http://masterdataapi.nobelprize.org/2/laureate/116 1931-09-29
## 423 http://masterdataapi.nobelprize.org/2/laureate/690 1907-06-23
## 424 http://masterdataapi.nobelprize.org/2/laureate/884 1950-11-03
## 425 http://masterdataapi.nobelprize.org/2/laureate/30 1882-08-26
## 426 http://masterdataapi.nobelprize.org/2/laureate/732 1944-04-19
## 427 http://masterdataapi.nobelprize.org/2/laureate/700 1919-10-03
## 428 http://masterdataapi.nobelprize.org/2/laureate/958 1948-08-07
## 429 http://masterdataapi.nobelprize.org/2/laureate/973 1935-04-25
## 430 http://masterdataapi.nobelprize.org/2/laureate/104 1917-12-09
## 431 http://masterdataapi.nobelprize.org/2/laureate/695 1918-03-05
## 432 http://masterdataapi.nobelprize.org/2/laureate/373 1928-04-06
## 433 http://masterdataapi.nobelprize.org/2/laureate/678 1903-04-12
## 434 http://masterdataapi.nobelprize.org/2/laureate/496 1860-09-06
## 435 http://masterdataapi.nobelprize.org/2/laureate/223 1890-12-20
## 436 http://masterdataapi.nobelprize.org/2/laureate/661 1901-09-23
## 437 http://masterdataapi.nobelprize.org/2/laureate/32 1870-09-30
## 438 http://masterdataapi.nobelprize.org/2/laureate/420 1916-10-19
## 439 http://masterdataapi.nobelprize.org/2/laureate/915 1953-08-09
## 440 http://masterdataapi.nobelprize.org/2/laureate/832 1940-04-13
## 441 http://masterdataapi.nobelprize.org/2/laureate/268 1939-09-30
## 442 http://masterdataapi.nobelprize.org/2/laureate/637 1905-06-21
## 443 http://masterdataapi.nobelprize.org/2/laureate/931 1944-10-21
## 444 http://masterdataapi.nobelprize.org/2/laureate/938 1945-05-03
## 445 http://masterdataapi.nobelprize.org/2/laureate/289 1918-10-08
## 446 http://masterdataapi.nobelprize.org/2/laureate/138 1930-03-28
## 447 http://masterdataapi.nobelprize.org/2/laureate/263 1918-06-18
## 448 http://masterdataapi.nobelprize.org/2/laureate/762 1924-10-01
## 449 http://masterdataapi.nobelprize.org/2/laureate/945 1940-09-12
## 450 http://masterdataapi.nobelprize.org/2/laureate/565 1950-10-09
## 451 http://masterdataapi.nobelprize.org/2/laureate/270 1943-09-30
## 452 http://masterdataapi.nobelprize.org/2/laureate/15 1837-11-23
## 453 http://masterdataapi.nobelprize.org/2/laureate/316 1867-04-23
## 454 http://masterdataapi.nobelprize.org/2/laureate/24 1874-04-15
## 455 http://masterdataapi.nobelprize.org/2/laureate/614 1873-01-20
## 456 http://masterdataapi.nobelprize.org/2/laureate/756 1917-06-15
## 457 http://masterdataapi.nobelprize.org/2/laureate/976 1922-07-25
## 458 http://masterdataapi.nobelprize.org/2/laureate/66 1908-05-23
## 459 http://masterdataapi.nobelprize.org/2/laureate/711 1920-05-29
## 460 http://masterdataapi.nobelprize.org/2/laureate/227 1917-03-24
## 461 http://masterdataapi.nobelprize.org/2/laureate/804 1946-08-07
## 462 http://masterdataapi.nobelprize.org/2/laureate/266 1929-01-23
## 463 http://masterdataapi.nobelprize.org/2/laureate/56 1897-05-27
## 464 http://masterdataapi.nobelprize.org/2/laureate/247 1917-09-07
## 465 http://masterdataapi.nobelprize.org/2/laureate/752 1942-03-27
## 466 http://masterdataapi.nobelprize.org/2/laureate/288 1941-01-07
## 467 http://masterdataapi.nobelprize.org/2/laureate/356 1897-02-10
## 468 http://masterdataapi.nobelprize.org/2/laureate/712 1928-06-13
## 469 http://masterdataapi.nobelprize.org/2/laureate/605 1867-08-14
## 470 http://masterdataapi.nobelprize.org/2/laureate/205 1891-07-05
## 471 http://masterdataapi.nobelprize.org/2/laureate/109 1899-03-13
## 472 http://masterdataapi.nobelprize.org/2/laureate/566 1937-01-18
## 473 http://masterdataapi.nobelprize.org/2/laureate/792 1934-08-21
## 474 http://masterdataapi.nobelprize.org/2/laureate/314 1876-09-06
## 475 http://masterdataapi.nobelprize.org/2/laureate/903 1939-11-18
## 476 http://masterdataapi.nobelprize.org/2/laureate/291 1925-10-31
## 477 http://masterdataapi.nobelprize.org/2/laureate/681 1904-04-08
## 478 http://masterdataapi.nobelprize.org/2/laureate/507 1865-05-25
## 479 http://masterdataapi.nobelprize.org/2/laureate/427 1927-03-29
## 480 http://masterdataapi.nobelprize.org/2/laureate/634 1902-02-27
## 481 http://masterdataapi.nobelprize.org/2/laureate/574 1832-04-19
## 482 http://masterdataapi.nobelprize.org/2/laureate/563 1949-12-26
## 483 http://masterdataapi.nobelprize.org/2/laureate/675 1922-11-16
## 484 http://masterdataapi.nobelprize.org/2/laureate/664 1940-05-24
## 485 http://masterdataapi.nobelprize.org/2/laureate/442 1919-04-01
## 486 http://masterdataapi.nobelprize.org/2/laureate/746 1943-02-09
## 487 http://masterdataapi.nobelprize.org/2/laureate/337 1874-01-05
## 488 http://masterdataapi.nobelprize.org/2/laureate/144 1941-03-29
## 489 http://masterdataapi.nobelprize.org/2/laureate/433 1940-04-18
## 490 http://masterdataapi.nobelprize.org/2/laureate/560 1908-11-04
## 491 http://masterdataapi.nobelprize.org/2/laureate/366 1925-05-23
## 492 http://masterdataapi.nobelprize.org/2/laureate/934 1951-08-10
## 493 http://masterdataapi.nobelprize.org/2/laureate/627 1881-12-24
## 494 http://masterdataapi.nobelprize.org/2/laureate/862 1941-08-02
## 495 http://masterdataapi.nobelprize.org/2/laureate/309 1870-06-13
## 496 http://masterdataapi.nobelprize.org/2/laureate/85 1918-02-12
## 497 http://masterdataapi.nobelprize.org/2/laureate/396 1912-05-30
## 498 http://masterdataapi.nobelprize.org/2/laureate/317 1857-03-07
## 499 http://masterdataapi.nobelprize.org/2/laureate/131 1927-04-20
## 500 http://masterdataapi.nobelprize.org/2/laureate/120 1918-04-20
## 501 http://masterdataapi.nobelprize.org/2/laureate/913 1954-01-11
## 502 http://masterdataapi.nobelprize.org/2/laureate/586 1857-06-02
## 503 http://masterdataapi.nobelprize.org/2/laureate/321 1868-06-14
## 504 http://masterdataapi.nobelprize.org/2/laureate/400 1886-11-20
## 505 http://masterdataapi.nobelprize.org/2/laureate/228 1898-11-26
## 506 http://masterdataapi.nobelprize.org/2/laureate/278 1944-12-28
## 507 http://masterdataapi.nobelprize.org/2/laureate/947 1954-11-08
## 508 http://masterdataapi.nobelprize.org/2/laureate/386 1903-12-22
## 509 http://masterdataapi.nobelprize.org/2/laureate/257 1918-10-04
## 510 http://masterdataapi.nobelprize.org/2/laureate/121 1936-06-08
## 511 http://masterdataapi.nobelprize.org/2/laureate/682 1921-08-23
## 512 http://masterdataapi.nobelprize.org/2/laureate/671 1935-01-31
## 513 http://masterdataapi.nobelprize.org/2/laureate/725 1925-12-03
## 514 http://masterdataapi.nobelprize.org/2/laureate/943 1940-06-01
## 515 http://masterdataapi.nobelprize.org/2/laureate/473 1844-10-27
## 516 http://masterdataapi.nobelprize.org/2/laureate/126 1943-06-28
## 517 http://masterdataapi.nobelprize.org/2/laureate/589 1859-08-04
## 518 http://masterdataapi.nobelprize.org/2/laureate/749 1938-04-08
## 519 http://masterdataapi.nobelprize.org/2/laureate/757 1959-08-03
## 520 http://masterdataapi.nobelprize.org/2/laureate/378 1912-01-21
## 521 http://masterdataapi.nobelprize.org/2/laureate/401 1903-11-07
## 522 http://masterdataapi.nobelprize.org/2/laureate/850 1974-08-23
## 523 http://masterdataapi.nobelprize.org/2/laureate/211 1902-07-10
## 524 http://masterdataapi.nobelprize.org/2/laureate/758 1938-10-04
## 525 http://masterdataapi.nobelprize.org/2/laureate/236 1903-11-27
## 526 http://masterdataapi.nobelprize.org/2/laureate/895 1952-10-26
## 527 http://masterdataapi.nobelprize.org/2/laureate/21 1890-03-31
## 528 http://masterdataapi.nobelprize.org/2/laureate/694 1920-09-14
## 529 http://masterdataapi.nobelprize.org/2/laureate/531 1911-10-14
## 530 http://masterdataapi.nobelprize.org/2/laureate/523
## 531 http://masterdataapi.nobelprize.org/2/laureate/545 1943-09-29
## 532 http://masterdataapi.nobelprize.org/2/laureate/735 1939-10-30
## 533 http://masterdataapi.nobelprize.org/2/laureate/97 1925-03-12
## 534 http://masterdataapi.nobelprize.org/2/laureate/484 1851-05-21
## 535 http://masterdataapi.nobelprize.org/2/laureate/512 1879-07-01
## 536 http://masterdataapi.nobelprize.org/2/laureate/132 1922-07-15
## 537 http://masterdataapi.nobelprize.org/2/laureate/95 1930-02-28
## 538 http://masterdataapi.nobelprize.org/2/laureate/820 1917-08-21
## 539 http://masterdataapi.nobelprize.org/2/laureate/686 1912-01-19
## 540 http://masterdataapi.nobelprize.org/2/laureate/200 1887-09-13
## 541 http://masterdataapi.nobelprize.org/2/laureate/516 1897-04-23
## 542 http://masterdataapi.nobelprize.org/2/laureate/77 1908-01-22
## 543 http://masterdataapi.nobelprize.org/2/laureate/870 1972-02-01
## 544 http://masterdataapi.nobelprize.org/2/laureate/775 1947-01-29
## 545 http://masterdataapi.nobelprize.org/2/laureate/217 1901-02-28
## 546 http://masterdataapi.nobelprize.org/2/laureate/855 1955-12-28
## 547 http://masterdataapi.nobelprize.org/2/laureate/883 1923-06-02
## 548 http://masterdataapi.nobelprize.org/2/laureate/510 1880-09-23
## 549 http://masterdataapi.nobelprize.org/2/laureate/8 1842-11-12
## 550 http://masterdataapi.nobelprize.org/2/laureate/221 1907-10-02
## 551 http://masterdataapi.nobelprize.org/2/laureate/36 1892-08-15
## 552 http://masterdataapi.nobelprize.org/2/laureate/459 1941-05-31
## 553 http://masterdataapi.nobelprize.org/2/laureate/92 1904-11-22
## 554 http://masterdataapi.nobelprize.org/2/laureate/472 1843-05-21
## 555 http://masterdataapi.nobelprize.org/2/laureate/825 1932-08-18
## 556 http://masterdataapi.nobelprize.org/2/laureate/493 1858-03-23
## 557 http://masterdataapi.nobelprize.org/2/laureate/607 1867-06-28
## 558 http://masterdataapi.nobelprize.org/2/laureate/89 1911-06-13
## 559 http://masterdataapi.nobelprize.org/2/laureate/239 1906-09-06
## 560 http://masterdataapi.nobelprize.org/2/laureate/977 1941-12-22
## 561 http://masterdataapi.nobelprize.org/2/laureate/536 1944-01-27
## 562 http://masterdataapi.nobelprize.org/2/laureate/827 1944-04-07
## 563 http://masterdataapi.nobelprize.org/2/laureate/914 1997-07-12
## 564 http://masterdataapi.nobelprize.org/2/laureate/233 1927-05-09
## 565 http://masterdataapi.nobelprize.org/2/laureate/29 1886-12-03
## 566 http://masterdataapi.nobelprize.org/2/laureate/79 1906-06-28
## 567 http://masterdataapi.nobelprize.org/2/laureate/6 1867-11-07
## 568 http://masterdataapi.nobelprize.org/2/laureate/282 1943-03-19
## 569 http://masterdataapi.nobelprize.org/2/laureate/811 1937-10-06
## 570 http://masterdataapi.nobelprize.org/2/laureate/854 1936-03-28
## 571 http://masterdataapi.nobelprize.org/2/laureate/390 1927-04-10
## 572 http://masterdataapi.nobelprize.org/2/laureate/830 1947-01-15
## 573 http://masterdataapi.nobelprize.org/2/laureate/889 1930-03-15
## 574 http://masterdataapi.nobelprize.org/2/laureate/147 1927-06-24
## 575 http://masterdataapi.nobelprize.org/2/laureate/524 1929-01-15
## 576 http://masterdataapi.nobelprize.org/2/laureate/451 1925-12-01
## 577 http://masterdataapi.nobelprize.org/2/laureate/100 1918-09-27
## 578 http://masterdataapi.nobelprize.org/2/laureate/159 1931-06-27
## 579 http://masterdataapi.nobelprize.org/2/laureate/833 1937-06-23
## 580 http://masterdataapi.nobelprize.org/2/laureate/754 1926-09-19
## 581 http://masterdataapi.nobelprize.org/2/laureate/702 1911-05-31
## 582 http://masterdataapi.nobelprize.org/2/laureate/581 1862-08-29
## 583 http://masterdataapi.nobelprize.org/2/laureate/374 1916-12-15
## 584 http://masterdataapi.nobelprize.org/2/laureate/61 1882-12-11
## 585 http://masterdataapi.nobelprize.org/2/laureate/391 1906-09-04
## 586 http://masterdataapi.nobelprize.org/2/laureate/226 1914-05-19
## 587 http://masterdataapi.nobelprize.org/2/laureate/23 1858-04-23
## 588 http://masterdataapi.nobelprize.org/2/laureate/352 1899-01-30
## 589 http://masterdataapi.nobelprize.org/2/laureate/19 1879-10-09
## 590 http://masterdataapi.nobelprize.org/2/laureate/904 1963-01-04
## 591 http://masterdataapi.nobelprize.org/2/laureate/568
## 592 http://masterdataapi.nobelprize.org/2/laureate/225 1911-04-08
## 593 http://masterdataapi.nobelprize.org/2/laureate/133 1932-11-02
## 594 http://masterdataapi.nobelprize.org/2/laureate/539 1913-08-16
## 595 http://masterdataapi.nobelprize.org/2/laureate/705 1923-05-16
## 596 http://masterdataapi.nobelprize.org/2/laureate/984 1964-11-12
## 597 http://masterdataapi.nobelprize.org/2/laureate/890 1947-05-09
## 598 http://masterdataapi.nobelprize.org/2/laureate/939 1944-03-07
## 599 http://masterdataapi.nobelprize.org/2/laureate/432 1941-04-13
## 600 http://masterdataapi.nobelprize.org/2/laureate/279 1932-04-26
## 601 http://masterdataapi.nobelprize.org/2/laureate/940 1949-03-28
## 602 http://masterdataapi.nobelprize.org/2/laureate/974 1942-01-12
## 603 http://masterdataapi.nobelprize.org/2/laureate/641 1899-10-19
## 604 http://masterdataapi.nobelprize.org/2/laureate/552 1931-03-02
## 605 http://masterdataapi.nobelprize.org/2/laureate/638 1905-05-24
## 606 http://masterdataapi.nobelprize.org/2/laureate/688 1912-07-31
## 607 http://masterdataapi.nobelprize.org/2/laureate/880 1955-02-02
## 608 http://masterdataapi.nobelprize.org/2/laureate/798 1942-06-17
## 609 http://masterdataapi.nobelprize.org/2/laureate/540 1910-08-26
## 610 http://masterdataapi.nobelprize.org/2/laureate/809 1940-06-28
## 611 http://masterdataapi.nobelprize.org/2/laureate/90 1929-09-15
## 612 http://masterdataapi.nobelprize.org/2/laureate/718 1941-07-01
## 613 http://masterdataapi.nobelprize.org/2/laureate/967 1993-00-00
## 614 http://masterdataapi.nobelprize.org/2/laureate/668 1923-11-20
## 615 http://masterdataapi.nobelprize.org/2/laureate/665 1911-12-11
## 616 http://masterdataapi.nobelprize.org/2/laureate/503
## 617 http://masterdataapi.nobelprize.org/2/laureate/495 1866-01-15
## 618 http://masterdataapi.nobelprize.org/2/laureate/925
## 619 http://masterdataapi.nobelprize.org/2/laureate/640 1891-12-10
## 620 http://masterdataapi.nobelprize.org/2/laureate/555 1918-07-18
## 621 http://masterdataapi.nobelprize.org/2/laureate/497 1862-04-02
## 622 http://masterdataapi.nobelprize.org/2/laureate/118 1920-03-11
## 623 http://masterdataapi.nobelprize.org/2/laureate/82 1922-12-14
## 624 http://masterdataapi.nobelprize.org/2/laureate/27 1885-10-07
## 625 http://masterdataapi.nobelprize.org/2/laureate/429 1911-12-23
## 626 http://masterdataapi.nobelprize.org/2/laureate/295 1860-12-15
## 627 http://masterdataapi.nobelprize.org/2/laureate/402 1907-04-15
## 628 http://masterdataapi.nobelprize.org/2/laureate/220 1896-04-03
## 629 http://masterdataapi.nobelprize.org/2/laureate/528 1914-03-25
## 630 http://masterdataapi.nobelprize.org/2/laureate/135 1915-08-27
## 631 http://masterdataapi.nobelprize.org/2/laureate/196 1883-03-19
## 632 http://masterdataapi.nobelprize.org/2/laureate/667 1914-03-31
## 633 http://masterdataapi.nobelprize.org/2/laureate/238 1897-05-17
## 634 http://masterdataapi.nobelprize.org/2/laureate/655 1911-11-02
## 635 http://masterdataapi.nobelprize.org/2/laureate/515
## 636 http://masterdataapi.nobelprize.org/2/laureate/979 1962-01-29
## 637 http://masterdataapi.nobelprize.org/2/laureate/847 1932-09-27
## 638 http://masterdataapi.nobelprize.org/2/laureate/935 1948-10-09
## 639 http://masterdataapi.nobelprize.org/2/laureate/813 1925-06-23
## 640 http://masterdataapi.nobelprize.org/2/laureate/893
## 641 http://masterdataapi.nobelprize.org/2/laureate/808 1952-06-07
## 642 http://masterdataapi.nobelprize.org/2/laureate/829 1928-08-27
## 643 http://masterdataapi.nobelprize.org/2/laureate/549 1940-09-13
## 644 http://masterdataapi.nobelprize.org/2/laureate/210 1876-01-23
## 645 http://masterdataapi.nobelprize.org/2/laureate/202 1879-03-08
## 646 http://masterdataapi.nobelprize.org/2/laureate/331 1873-06-03
## 647 http://masterdataapi.nobelprize.org/2/laureate/312 1884-04-12
## 648 http://masterdataapi.nobelprize.org/2/laureate/48 1888-02-17
## 649 http://masterdataapi.nobelprize.org/2/laureate/169 1847-03-27
## 650 http://masterdataapi.nobelprize.org/2/laureate/322 1883-10-08
## 651 http://masterdataapi.nobelprize.org/2/laureate/73 1920-07-10
## 652 http://masterdataapi.nobelprize.org/2/laureate/35 1879-04-26
## 653 http://masterdataapi.nobelprize.org/2/laureate/645 1904-07-12
## 654 http://masterdataapi.nobelprize.org/2/laureate/622 1891-05-23
## 655 http://masterdataapi.nobelprize.org/2/laureate/53 1897-11-18
## 656 http://masterdataapi.nobelprize.org/2/laureate/912 1945-07-30
## 657 http://masterdataapi.nobelprize.org/2/laureate/648 1912-05-28
## 658 http://masterdataapi.nobelprize.org/2/laureate/679 1915-05-15
## 659 http://masterdataapi.nobelprize.org/2/laureate/40 1902-08-08
## 660 http://masterdataapi.nobelprize.org/2/laureate/254 1926-06-30
## 661 http://masterdataapi.nobelprize.org/2/laureate/764 1929-05-06
## 662 http://masterdataapi.nobelprize.org/2/laureate/287 1918-07-31
## 663 http://masterdataapi.nobelprize.org/2/laureate/302 1854-03-14
## 664 http://masterdataapi.nobelprize.org/2/laureate/723 1925-12-11
## 665 http://masterdataapi.nobelprize.org/2/laureate/476 1852-11-22
## 666 http://masterdataapi.nobelprize.org/2/laureate/580 1830-03-15
## 667 http://masterdataapi.nobelprize.org/2/laureate/281 1933-12-03
## 668 http://masterdataapi.nobelprize.org/2/laureate/246 1910-06-19
## 669 http://masterdataapi.nobelprize.org/2/laureate/197 1889-04-21
## 670 http://masterdataapi.nobelprize.org/2/laureate/834 1953-02-28
## 671 http://masterdataapi.nobelprize.org/2/laureate/969 1955-00-00
## 672 http://masterdataapi.nobelprize.org/2/laureate/922 1946-06-13
## 673 http://masterdataapi.nobelprize.org/2/laureate/346 1899-01-12
## 674 http://masterdataapi.nobelprize.org/2/laureate/173 1854-11-05
## 675 http://masterdataapi.nobelprize.org/2/laureate/70 1904-07-28
## 676 http://masterdataapi.nobelprize.org/2/laureate/610 1892-06-26
## 677 http://masterdataapi.nobelprize.org/2/laureate/51 1882-04-21
## 678 http://masterdataapi.nobelprize.org/2/laureate/477
## 679 http://masterdataapi.nobelprize.org/2/laureate/856 1940-04-29
## 680 http://masterdataapi.nobelprize.org/2/laureate/769 1949-01-30
## 681 http://masterdataapi.nobelprize.org/2/laureate/455 1940-10-15
## 682 http://masterdataapi.nobelprize.org/2/laureate/195 1884-03-24
## 683 http://masterdataapi.nobelprize.org/2/laureate/815 1939-05-18
## 684 http://masterdataapi.nobelprize.org/2/laureate/980 1942-12-06
## 685 http://masterdataapi.nobelprize.org/2/laureate/888 1929-05-29
## 686 http://masterdataapi.nobelprize.org/2/laureate/370 1915-02-28
## 687 http://masterdataapi.nobelprize.org/2/laureate/251 1920-09-29
## 688 http://masterdataapi.nobelprize.org/2/laureate/383 1879-10-05
## 689 http://masterdataapi.nobelprize.org/2/laureate/518 1889-11-01
## 690 http://masterdataapi.nobelprize.org/2/laureate/351 1896-02-28
## 691 http://masterdataapi.nobelprize.org/2/laureate/107 1923-12-13
## 692 http://masterdataapi.nobelprize.org/2/laureate/9 1862-06-07
## 693 http://masterdataapi.nobelprize.org/2/laureate/449 1944-06-06
## 694 http://masterdataapi.nobelprize.org/2/laureate/5 1859-05-15
## 695 http://masterdataapi.nobelprize.org/2/laureate/141 1932-10-24
## 696 http://masterdataapi.nobelprize.org/2/laureate/3 1865-05-25
## 697 http://masterdataapi.nobelprize.org/2/laureate/64 1911-01-26
## 698 http://masterdataapi.nobelprize.org/2/laureate/561
## 699 http://masterdataapi.nobelprize.org/2/laureate/110 1894-07-09
## 700 http://masterdataapi.nobelprize.org/2/laureate/583 1861-05-07
## 701 http://masterdataapi.nobelprize.org/2/laureate/677 1895-03-03
## 702 http://masterdataapi.nobelprize.org/2/laureate/385 1900-10-30
## 703 http://masterdataapi.nobelprize.org/2/laureate/941 1932-09-29
## 704 http://masterdataapi.nobelprize.org/2/laureate/511 1904-08-07
## 705 http://masterdataapi.nobelprize.org/2/laureate/863 1943-01-14
## 706 http://masterdataapi.nobelprize.org/2/laureate/466 1828-03-18
## 707 http://masterdataapi.nobelprize.org/2/laureate/885 1948-12-30
## 708 http://masterdataapi.nobelprize.org/2/laureate/753 1914-10-14
## 709 http://masterdataapi.nobelprize.org/2/laureate/713 1930-10-05
## 710 http://masterdataapi.nobelprize.org/2/laureate/407 1914-02-22
## 711 http://masterdataapi.nobelprize.org/2/laureate/526 1887-10-05
## 712 http://masterdataapi.nobelprize.org/2/laureate/755 1931-10-06
## 713 http://masterdataapi.nobelprize.org/2/laureate/774 1946-07-02
## 714 http://masterdataapi.nobelprize.org/2/laureate/286 1943-06-06
## 715 http://masterdataapi.nobelprize.org/2/laureate/140 1929-11-02
## 716 http://masterdataapi.nobelprize.org/2/laureate/851 1931-08-15
## 717 http://masterdataapi.nobelprize.org/2/laureate/949 1945-09-12
## 718 http://masterdataapi.nobelprize.org/2/laureate/946 1945-07-19
## 719 http://masterdataapi.nobelprize.org/2/laureate/448 1943-09-06
## 720 http://masterdataapi.nobelprize.org/2/laureate/198 1900-12-03
## 721 http://masterdataapi.nobelprize.org/2/laureate/215 1914-10-28
## 722 http://masterdataapi.nobelprize.org/2/laureate/86 1918-05-11
## 723 http://masterdataapi.nobelprize.org/2/laureate/276 1933-08-14
## 724 http://masterdataapi.nobelprize.org/2/laureate/796 1945-01-04
## 725 http://masterdataapi.nobelprize.org/2/laureate/698 1913-08-30
## 726 http://masterdataapi.nobelprize.org/2/laureate/176 1872-08-13
## 727 http://masterdataapi.nobelprize.org/2/laureate/182 1865-04-01
## 728 http://masterdataapi.nobelprize.org/2/laureate/554 1959-01-09
## 729 http://masterdataapi.nobelprize.org/2/laureate/435 1909-04-22
## 730 http://masterdataapi.nobelprize.org/2/laureate/258 1937-07-18
## 731 http://masterdataapi.nobelprize.org/2/laureate/28 1868-03-22
## 732 http://masterdataapi.nobelprize.org/2/laureate/155 1950-11-01
## 733 http://masterdataapi.nobelprize.org/2/laureate/231 1917-04-10
## 734 http://masterdataapi.nobelprize.org/2/laureate/308 1876-04-22
## 735 http://masterdataapi.nobelprize.org/2/laureate/717 1944-07-31
## 736 http://masterdataapi.nobelprize.org/2/laureate/151 1937-06-26
## 737 http://masterdataapi.nobelprize.org/2/laureate/502 1864-09-14
## 738 http://masterdataapi.nobelprize.org/2/laureate/714 1937-09-15
## 739 http://masterdataapi.nobelprize.org/2/laureate/284 1933-08-23
## 740 http://masterdataapi.nobelprize.org/2/laureate/771 1942-11-10
## 741 http://masterdataapi.nobelprize.org/2/laureate/458 1916-06-04
## 742 http://masterdataapi.nobelprize.org/2/laureate/848 1925-09-27
## 743 http://masterdataapi.nobelprize.org/2/laureate/795 1942-02-27
## 744 http://masterdataapi.nobelprize.org/2/laureate/75 1915-02-05
## 745 http://masterdataapi.nobelprize.org/2/laureate/271 1937-02-20
## 746 http://masterdataapi.nobelprize.org/2/laureate/799 1930-06-08
## 747 http://masterdataapi.nobelprize.org/2/laureate/878 1943-04-15
## 748 http://masterdataapi.nobelprize.org/2/laureate/896 1946-03-29
## 749 http://masterdataapi.nobelprize.org/2/laureate/297 1843-12-11
## 750 http://masterdataapi.nobelprize.org/2/laureate/701 1924-08-23
## 751 http://masterdataapi.nobelprize.org/2/laureate/720 1932-10-24
## 752 http://masterdataapi.nobelprize.org/2/laureate/232 1896-06-07
## 753 http://masterdataapi.nobelprize.org/2/laureate/96 1931-05-31
## 754 http://masterdataapi.nobelprize.org/2/laureate/709 1927-07-01
## 755 http://masterdataapi.nobelprize.org/2/laureate/388 1922-01-28
## 756 http://masterdataapi.nobelprize.org/2/laureate/112 1936-01-10
## 757 http://masterdataapi.nobelprize.org/2/laureate/770 1956-02-19
## 758 http://masterdataapi.nobelprize.org/2/laureate/399 1917-10-08
## 759 http://masterdataapi.nobelprize.org/2/laureate/822 1951-03-29
## 760 http://masterdataapi.nobelprize.org/2/laureate/806 1947-04-24
## 761 http://masterdataapi.nobelprize.org/2/laureate/411 1924-01-11
## 762 http://masterdataapi.nobelprize.org/2/laureate/609 1881-03-23
## 763 http://masterdataapi.nobelprize.org/2/laureate/422 1913-08-20
## 764 http://masterdataapi.nobelprize.org/2/laureate/831 1952-02-01
## 765 http://masterdataapi.nobelprize.org/2/laureate/456 1944-01-06
## 766 http://masterdataapi.nobelprize.org/2/laureate/584 1866-01-29
## 767 http://masterdataapi.nobelprize.org/2/laureate/234 1897-11-09
## 768 http://masterdataapi.nobelprize.org/2/laureate/707 1910-12-29
## 769 http://masterdataapi.nobelprize.org/2/laureate/294 1857-05-13
## 770 http://masterdataapi.nobelprize.org/2/laureate/413 1921-07-19
## 771 http://masterdataapi.nobelprize.org/2/laureate/791 1925-09-01
## 772 http://masterdataapi.nobelprize.org/2/laureate/578 1846-01-05
## 773 http://masterdataapi.nobelprize.org/2/laureate/76 1929-01-31
## 774 http://masterdataapi.nobelprize.org/2/laureate/277 1923-07-21
## 775 http://masterdataapi.nobelprize.org/2/laureate/577 1865-12-30
## 776 http://masterdataapi.nobelprize.org/2/laureate/143 1950-11-28
## 777 http://masterdataapi.nobelprize.org/2/laureate/742 1938-09-03
## 778 http://masterdataapi.nobelprize.org/2/laureate/631 1887-05-31
## 779 http://masterdataapi.nobelprize.org/2/laureate/393 1912-08-13
## 780 http://masterdataapi.nobelprize.org/2/laureate/630 1901-08-20
## 781 http://masterdataapi.nobelprize.org/2/laureate/643 1906-04-13
## 782 http://masterdataapi.nobelprize.org/2/laureate/106 1936-01-27
## 783 http://masterdataapi.nobelprize.org/2/laureate/299 1852-05-01
## 784 http://masterdataapi.nobelprize.org/2/laureate/917 1935-07-12
## 785 http://masterdataapi.nobelprize.org/2/laureate/652 1915-06-10
## 786 http://masterdataapi.nobelprize.org/2/laureate/864 1959-00-00
## 787 http://masterdataapi.nobelprize.org/2/laureate/672 1939-04-13
## 788 http://masterdataapi.nobelprize.org/2/laureate/532 1904-01-26
## 789 http://masterdataapi.nobelprize.org/2/laureate/579 1858-11-20
## 790 http://masterdataapi.nobelprize.org/2/laureate/353 1888-07-22
## 791 http://masterdataapi.nobelprize.org/2/laureate/876 1944-09-11
## 792 http://masterdataapi.nobelprize.org/2/laureate/367 1905-09-24
## 793 http://masterdataapi.nobelprize.org/2/laureate/113 1932-12-05
## 794 http://masterdataapi.nobelprize.org/2/laureate/558 1923-08-16
## 795 http://masterdataapi.nobelprize.org/2/laureate/875 1962-09-04
## 796 http://masterdataapi.nobelprize.org/2/laureate/773 1947-06-21
## 797 http://masterdataapi.nobelprize.org/2/laureate/639 1888-07-17
## 798 http://masterdataapi.nobelprize.org/2/laureate/908 1954-05-22
## 799 http://masterdataapi.nobelprize.org/2/laureate/273 1939-05-07
## 800 http://masterdataapi.nobelprize.org/2/laureate/601 1882-05-20
## 801 http://masterdataapi.nobelprize.org/2/laureate/680 1901-04-30
## 802 http://masterdataapi.nobelprize.org/2/laureate/125 1925-11-24
## 803 http://masterdataapi.nobelprize.org/2/laureate/84 1906-03-31
## 804 http://masterdataapi.nobelprize.org/2/laureate/603 1885-02-07
## 805 http://masterdataapi.nobelprize.org/2/laureate/339 1881-08-06
## 806 http://masterdataapi.nobelprize.org/2/laureate/693 1915-01-23
## 807 http://masterdataapi.nobelprize.org/2/laureate/488 1863-10-16
## 808 http://masterdataapi.nobelprize.org/2/laureate/394 1911-03-26
## 809 http://masterdataapi.nobelprize.org/2/laureate/37 1888-11-07
## 810 http://masterdataapi.nobelprize.org/2/laureate/323 1857-11-27
## 811 http://masterdataapi.nobelprize.org/2/laureate/219 1897-05-19
## 812 http://masterdataapi.nobelprize.org/2/laureate/369 1899-09-03
## 813 http://masterdataapi.nobelprize.org/2/laureate/320 1861-06-20
## 814 http://masterdataapi.nobelprize.org/2/laureate/965 1951-04-14
## 815 http://masterdataapi.nobelprize.org/2/laureate/285 1939-10-07
## 816 http://masterdataapi.nobelprize.org/2/laureate/330 1875-06-09
## 817 http://masterdataapi.nobelprize.org/2/laureate/341 1898-09-24
## 818 http://masterdataapi.nobelprize.org/2/laureate/932 1942-05-24
## 819 http://masterdataapi.nobelprize.org/2/laureate/437 1924-06-14
## 820 http://masterdataapi.nobelprize.org/2/laureate/874 1933-10-02
## 821 http://masterdataapi.nobelprize.org/2/laureate/375 1903-01-27
## 822 http://masterdataapi.nobelprize.org/2/laureate/812 1941-01-01
## 823 http://masterdataapi.nobelprize.org/2/laureate/108 1905-09-30
## 824 http://masterdataapi.nobelprize.org/2/laureate/498 1872-12-26
## 825 http://masterdataapi.nobelprize.org/2/laureate/737 1949-01-25
## 826 http://masterdataapi.nobelprize.org/2/laureate/971 1954-05-14
## 827 http://masterdataapi.nobelprize.org/2/laureate/765 1933-10-09
## 828 http://masterdataapi.nobelprize.org/2/laureate/207 1886-09-13
## 829 http://masterdataapi.nobelprize.org/2/laureate/163 1852-10-02
## 830 http://masterdataapi.nobelprize.org/2/laureate/242 1913-09-04
## 831 http://masterdataapi.nobelprize.org/2/laureate/457 1942-05-28
## 832 http://masterdataapi.nobelprize.org/2/laureate/434 1922-11-17
## 833 http://masterdataapi.nobelprize.org/2/laureate/910 1962-12-23
## 834 http://masterdataapi.nobelprize.org/2/laureate/152 1948-02-28
## 835 http://masterdataapi.nobelprize.org/2/laureate/115 1933-05-03
## 836 http://masterdataapi.nobelprize.org/2/laureate/122 1910-10-19
## 837 http://masterdataapi.nobelprize.org/2/laureate/569 1839-03-16
## 838 http://masterdataapi.nobelprize.org/2/laureate/425 1916-01-10
## 839 http://masterdataapi.nobelprize.org/2/laureate/436 1939-09-05
## 840 http://masterdataapi.nobelprize.org/2/laureate/162 1859-02-19
## 841 http://masterdataapi.nobelprize.org/2/laureate/924 1948-05-31
## 842 http://masterdataapi.nobelprize.org/2/laureate/750 1927-01-13
## 843 http://masterdataapi.nobelprize.org/2/laureate/619 1888-09-26
## 844 http://masterdataapi.nobelprize.org/2/laureate/350 1897-07-20
## 845 http://masterdataapi.nobelprize.org/2/laureate/919 1959-03-09
## 846 http://masterdataapi.nobelprize.org/2/laureate/959 1942-01-27
## 847 http://masterdataapi.nobelprize.org/2/laureate/871 1979-02-07
## 848 http://masterdataapi.nobelprize.org/2/laureate/551 1935-07-06
## 849 http://masterdataapi.nobelprize.org/2/laureate/183 1884-08-30
## 850 http://masterdataapi.nobelprize.org/2/laureate/303 1841-08-25
## 851 http://masterdataapi.nobelprize.org/2/laureate/571 1817-11-30
## 852 http://masterdataapi.nobelprize.org/2/laureate/793 1941-10-30
## 853 http://masterdataapi.nobelprize.org/2/laureate/470 1858-10-27
## 854 http://masterdataapi.nobelprize.org/2/laureate/175 1868-01-31
## 855 http://masterdataapi.nobelprize.org/2/laureate/692 1902-04-30
## 856 http://masterdataapi.nobelprize.org/2/laureate/842 1940-08-23
## 857 http://masterdataapi.nobelprize.org/2/laureate/800 1921-04-14
## 858 http://masterdataapi.nobelprize.org/2/laureate/886 1955-12-22
## 859 http://masterdataapi.nobelprize.org/2/laureate/325 1866-09-25
## 860 http://masterdataapi.nobelprize.org/2/laureate/357 1915-06-15
## 861 http://masterdataapi.nobelprize.org/2/laureate/872 1943-07-19
## 862 http://masterdataapi.nobelprize.org/2/laureate/602 1875-06-06
## 863 http://masterdataapi.nobelprize.org/2/laureate/274 1947-12-08
## 864 http://masterdataapi.nobelprize.org/2/laureate/736 1943-02-19
## 865 http://masterdataapi.nobelprize.org/2/laureate/687 1910-08-28
## 866 http://masterdataapi.nobelprize.org/2/laureate/478 1838-04-28
## 867 http://masterdataapi.nobelprize.org/2/laureate/921 1938-01-28
## 868 http://masterdataapi.nobelprize.org/2/laureate/868 1931-04-15
## 869 http://masterdataapi.nobelprize.org/2/laureate/670 1931-02-18
## 870 http://masterdataapi.nobelprize.org/2/laureate/424 1924-06-03
## 871 http://masterdataapi.nobelprize.org/2/laureate/828 1940-02-07
## 872 http://masterdataapi.nobelprize.org/2/laureate/703 1911-12-13
## 873 http://masterdataapi.nobelprize.org/2/laureate/69 1926-11-24
## 874 http://masterdataapi.nobelprize.org/2/laureate/918 1930-12-30
## 875 http://masterdataapi.nobelprize.org/2/laureate/395 1905-02-07
## 876 http://masterdataapi.nobelprize.org/2/laureate/748
## 877 http://masterdataapi.nobelprize.org/2/laureate/525
## 878 http://masterdataapi.nobelprize.org/2/laureate/550
## 879 http://masterdataapi.nobelprize.org/2/laureate/747 1932-08-17
## 880 http://masterdataapi.nobelprize.org/2/laureate/117 1923-03-10
## 881 http://masterdataapi.nobelprize.org/2/laureate/841 1952-00-00
## 882 http://masterdataapi.nobelprize.org/2/laureate/585 1859-07-06
## 883 http://masterdataapi.nobelprize.org/2/laureate/760 1927-01-01
## 884 http://masterdataapi.nobelprize.org/2/laureate/653 1898-04-26
## 885 http://masterdataapi.nobelprize.org/2/laureate/42 1883-06-24
## 886 http://masterdataapi.nobelprize.org/2/laureate/172 1871-05-06
## 887 http://masterdataapi.nobelprize.org/2/laureate/218 1901-05-18
## 888 http://masterdataapi.nobelprize.org/2/laureate/767 1916-10-04
## 889 http://masterdataapi.nobelprize.org/2/laureate/248 1906-07-23
## 890 http://masterdataapi.nobelprize.org/2/laureate/255 1932-03-21
## 891 http://masterdataapi.nobelprize.org/2/laureate/67 1902-02-10
## 892 http://masterdataapi.nobelprize.org/2/laureate/347 1881-03-17
## 893 http://masterdataapi.nobelprize.org/2/laureate/290 1923-03-09
## 894 http://masterdataapi.nobelprize.org/2/laureate/62 1891-01-08
## 895 http://masterdataapi.nobelprize.org/2/laureate/178 1864-06-25
## 896 http://masterdataapi.nobelprize.org/2/laureate/783 1940-04-01
## 897 http://masterdataapi.nobelprize.org/2/laureate/683 1906-08-05
## 898 http://masterdataapi.nobelprize.org/2/laureate/206 1904-08-16
## 899 http://masterdataapi.nobelprize.org/2/laureate/414 1929-06-03
## 900 http://masterdataapi.nobelprize.org/2/laureate/361 1904-08-29
## 901 http://masterdataapi.nobelprize.org/2/laureate/38 1901-12-05
## 902 http://masterdataapi.nobelprize.org/2/laureate/1 1845-03-27
## 903 http://masterdataapi.nobelprize.org/2/laureate/168 1853-09-02
## 904 http://masterdataapi.nobelprize.org/2/laureate/16 1864-01-13
## 905 http://masterdataapi.nobelprize.org/2/laureate/224 1908-12-17
## 906 http://masterdataapi.nobelprize.org/2/laureate/839 1924-08-19
## 907 http://masterdataapi.nobelprize.org/2/laureate/315 1860-05-21
## 908 http://masterdataapi.nobelprize.org/2/laureate/123 1911-08-09
## 909 http://masterdataapi.nobelprize.org/2/laureate/65 1910-02-13
## 910 http://masterdataapi.nobelprize.org/2/laureate/20 1862-07-02
## 911 http://masterdataapi.nobelprize.org/2/laureate/593 1865-06-13
## 912 http://masterdataapi.nobelprize.org/2/laureate/916 1930-06-28
## 913 http://masterdataapi.nobelprize.org/2/laureate/968 1941-05-31
## 914 http://masterdataapi.nobelprize.org/2/laureate/154 1948-11-05
## 915 http://masterdataapi.nobelprize.org/2/laureate/911 1953-06-24
## 916 http://masterdataapi.nobelprize.org/2/laureate/209 1895-05-12
## 917 http://masterdataapi.nobelprize.org/2/laureate/706 1934-06-16
## 918 http://masterdataapi.nobelprize.org/2/laureate/620 1897-09-25
## 919 http://masterdataapi.nobelprize.org/2/laureate/970 1957-11-23
## 920 http://masterdataapi.nobelprize.org/2/laureate/660 1911-09-19
## 921 http://masterdataapi.nobelprize.org/2/laureate/243 1911-06-25
## 922 http://masterdataapi.nobelprize.org/2/laureate/741 1917-06-01
## 923 http://masterdataapi.nobelprize.org/2/laureate/249 1919-12-09
## 924 http://masterdataapi.nobelprize.org/2/laureate/328 1892-02-06
## 925 http://masterdataapi.nobelprize.org/2/laureate/716 1914-06-21
## 926 http://masterdataapi.nobelprize.org/2/laureate/63 1913-07-12
## 927 http://masterdataapi.nobelprize.org/2/laureate/529 1913-12-18
## 928 http://masterdataapi.nobelprize.org/2/laureate/624 1874-11-30
## 929 http://masterdataapi.nobelprize.org/2/laureate/673 1923-07-02
## 930 http://masterdataapi.nobelprize.org/2/laureate/594 1867-05-07
## 931 http://masterdataapi.nobelprize.org/2/laureate/663 1934-07-13
## 932 http://masterdataapi.nobelprize.org/2/laureate/739 1957-10-21
## 933 http://masterdataapi.nobelprize.org/2/laureate/137 1913-08-10
## 934 http://masterdataapi.nobelprize.org/2/laureate/50 1900-04-25
## 935 http://masterdataapi.nobelprize.org/2/laureate/483 1856-12-28
## 936 http://masterdataapi.nobelprize.org/2/laureate/557 1929-08-24
## 937 http://masterdataapi.nobelprize.org/2/laureate/642 1899-06-11
## 938 http://masterdataapi.nobelprize.org/2/laureate/559 1922-03-01
## 939 http://masterdataapi.nobelprize.org/2/laureate/826 1921-01-18
## 940 http://masterdataapi.nobelprize.org/2/laureate/927 1945-02-09
## 941 http://masterdataapi.nobelprize.org/2/laureate/265 1936-11-19
## 942 http://masterdataapi.nobelprize.org/2/laureate/794 1930-10-10
## 943 http://masterdataapi.nobelprize.org/2/laureate/726 1930-03-15
## 944 http://masterdataapi.nobelprize.org/2/laureate/222 1918-08-13
## 945 http://masterdataapi.nobelprize.org/2/laureate/482
## 946 http://masterdataapi.nobelprize.org/2/laureate/66 1908-05-23
## 947 http://masterdataapi.nobelprize.org/2/laureate/217 1901-02-28
## 948 http://masterdataapi.nobelprize.org/2/laureate/6 1867-11-07
## 949 http://masterdataapi.nobelprize.org/2/laureate/515
## 950 http://masterdataapi.nobelprize.org/2/laureate/482
## birth_city birth_cityNow birth_continent
## 1 Montclair, NJ Montclair, NJ North America
## 2 Copenhagen Copenhagen Europe
## 3 Haifa Haifa Asia
## 4 Zelvas Zelvas Europe
## 5 Jhang Maghiāna Jhang Maghiāna Asia
## 6 Mumbai Mumbai Asia
## 7 Beshasha Beshasha Africa
## 8 Jerusalem Jerusalem Asia
## 9 Washington, DC Washington, DC North America
## 10 Bremerhaven-Lehe Bremerhaven-Lehe Europe
## 11 Berlin Berlin Europe
## 12 Berlin Berlin Europe
## 13 Buenos Aires Buenos Aires South America
## 14 Damanhur Damanhur Africa
## 15 Mukawa Mukawa Asia
## 16 Suita Suita Asia
## 17 Washington, DC Washington, DC North America
## 18 Sioux City, IA Sioux City, IA North America
## 19 Banbury Banbury Europe
## 20 Masterton Masterton Oceania
## 21 Strelno Strzelno Europe
## 22 Mondovi Mondovi Africa
## 23 Longlier Longlier Europe
## 24 Ulm Ulm Europe
## 25 Carcassonne Carcassonne Europe
## 26 Tramelan Tramelan Europe
## 27 Bulawayo Bulawayo Africa
## 28 Kaysersberg Kaysersberg Europe
## 29 Budapest Budapest Europe
## 30 Rostock Rostock Europe
## 31 Atherton Atherton Oceania
## 32 Kislovodsk Kislovodsk Europe
## 33 Moscow Moscow Europe
## 34 Sainte-Foy-lès-Lyon Sainte-Foy-lès-Lyon Europe
## 35 Zamora Zamora North America
## 36 Owosso, MI Owosso, MI North America
## 37 Vienna Vienna Europe
## 38 New Haven, CT New Haven, CT North America
## 39 Guebwiller Guebwiller Europe
## 40 Mulhouse Mulhouse Europe
## 41 Wingham Wingham North America
## 42 Johannesburg Johannesburg Africa
## 43 Landskrona Landskrona Europe
## 44 Paris Paris Europe
## 45 Uppsala Uppsala Europe
## 46 New York, NY New York, NY North America
## 47 Santiniketan Santiniketan Asia
## 48
## 49
## 50 Paris Paris Europe
## 51 Paris Paris Europe
## 52 Sochi Sochi Europe
## 53 Paris Paris Europe
## 54 Ainay-le-Château Ainay-le-Château Europe
## 55 Moscow Moscow Europe
## 56 Hampstead Hampstead Europe
## 57 Wilno Vilnius Europe
## 58 Stanford, CA Stanford, CA North America
## 59 Edinburgh Edinburgh Europe
## 60 London London Europe
## 61 Fowey Fowey Europe
## 62 Mit Abu al-Kawm Mit Abu al-Kawm Africa
## 63 London London Europe
## 64 Bristol Bristol Europe
## 65 Kibbutz Sde-Nahum Kibbutz Sde-Nahum Asia
## 66 Nantes Nantes Europe
## 67 Stockholm Stockholm Europe
## 68 Munich Munich Europe
## 69 New York, NY New York, NY North America
## 70 Sydney Sydney North America
## 71 Wooster, OH Wooster, OH North America
## 72 Manchester Manchester Europe
## 73 Glasgow Glasgow Europe
## 74 Brooklyn, NY Brooklyn, NY North America
## 75 Mount Verno, NY Mount Verno, NY North America
## 76 Helsinki Helsinki Europe
## 77 Uppsala Uppsala Europe
## 78 Grenå Grenå Europe
## 79 Ostend Ostend Europe
## 80 Rangoon Yangon Asia
## 81 Karcag Karcag Europe
## 82 Savur Savur Asia
## 83 Honolulu, HI Honolulu, HI North America
## 84 Hartford, CT Hartford, CT North America
## 85 Omaha, NE Omaha, NE North America
## 86 Kalgoorlie Kalgoorlie Oceania
## 87 Philadelphia, PA Philadelphia, PA North America
## 88 New York, NY New York, NY North America
## 89 Caracas Caracas South America
## 90 Chicago, IL Chicago, IL North America
## 91 Helsinki Helsinki Europe
## 92 Halmstad Halmstad Europe
## 93 Barger-Compascuum Barger-Compascuum Europe
## 94 Buenos Aires Buenos Aires South America
## 95 Stuttgart Stuttgart Europe
## 96 Prague Prague Europe
## 97 Klippan Klippan Europe
## 98 Lethbridge, Alberta Lethbridge, Alberta North America
## 99 Trelleck Trelleck Europe
## 100 Belfast Belfast Europe
## 101 Kvikne Kvikne Europe
## 102 Duluth, MN Duluth, MN North America
## 103 Moscow Moscow Europe
## 104 Cardiff Cardiff Europe
## 105 Little Falls, MN Little Falls, MN North America
## 106 Missoula, MT Missoula, MT North America
## 107 Chicago, IL Chicago, IL North America
## 108 Fort Worth, TX Fort Worth, TX North America
## 109 Brooklyn, NY Brooklyn, NY North America
## 110 Glencorse Glencorse Europe
## 111 Corteno Corteno Europe
## 112 Iria Flavia Iria Flavia Europe
## 113 Cologne Cologne Europe
## 114 Prague Prague Europe
## 115 New York, NY New York, NY North America
## 116 Liestal Liestal Europe
## 117 Hamburg Hamburg Europe
## 118 Corvallis, OR Corvallis, OR North America
## 119 Gorizia Gorizia Europe
## 120 Wailacama Wailacama Oceania
## 121 Buenos Aires Buenos Aires South America
## 122 San Diego, CA San Diego, CA North America
## 123 Tonbridge Tonbridge Europe
## 124 Bahia Blanca Bahia Blanca South America
## 125 Halifax Halifax North America
## 126 Fleurier Fleurier Europe
## 127 Marietta, OH Marietta, OH North America
## 128 Widnes Widnes Europe
## 129 Greenville, SC Greenville, SC North America
## 130 Pusan Pusan Asia
## 131 Shanghai Shanghai Asia
## 132 Rouen Rouen Europe
## 133 Paris Paris Europe
## 134 Hofei, Anhwei Hofei, Anhwei Asia
## 135 Nijkerk Nijkerk Europe
## 136 Monessen, PA Monessen, PA North America
## 137 Thames Ditton Thames Ditton Europe
## 138 Stavanger Stavanger Europe
## 139 Magdeburg Magdeburg Europe
## 140 Nicosia Nicosia Europe
## 141 Washington, DC Washington, DC North America
## 142 Constantine Constantine Africa
## 143 Tananarive Antananarivo Africa
## 144 Pittsburgh, PA Pittsburgh, PA North America
## 145 Bloomington, IL Bloomington, IL North America
## 146 Swansea Swansea Europe
## 147 Olympus, TN Olympus, TN North America
## 148 Ghent Ghent Europe
## 149 New Haven, CT New Haven, CT North America
## 150 Śeteniai Śeteniai Europe
## 151 Yonkers, NY Yonkers, NY North America
## 152 Jönköping Jönköping Europe
## 153 Enterprise, OR Enterprise, OR North America
## 154 Tel Aviv Tel Aviv Asia
## 155 Neuchâtel Neuchâtel Europe
## 156 Henan Henan Asia
## 157 Tel Aviv Tel Aviv Asia
## 158 Raleigh, NC Raleigh, NC North America
## 159 Wilmington, DE Wilmington, DE North America
## 160 Leggiuno-Sangiano Leggiuno-Sangiano Europe
## 161 New York, NY New York, NY North America
## 162 Windsor, ON Windsor, ON North America
## 163 Washington, DC Washington, DC North America
## 164 Bearsden Bearsden Europe
## 165 Milwaukee, WI Milwaukee, WI North America
## 166 Rye, NY Rye, NY North America
## 167 Belfast Belfast Europe
## 168 Bukavu Bukavu Africa
## 169 Budapest Budapest Europe
## 170 Gravesend Gravesend Europe
## 171 Castries Castries North America
## 172 Klerksdorp Klerksdorp Africa
## 173 Orange, NJ Orange, NJ North America
## 174 Geneva Geneva Europe
## 175 Cleveland, OH Cleveland, OH North America
## 176 Chester, VT Chester, VT North America
## 177 Guelph Guelph North America
## 178 Kermanshah Kermanshah Asia
## 179 Cairo Cairo Africa
## 180 Aberdeen, WA Aberdeen, WA North America
## 181 Cambridge, MA Cambridge, MA North America
## 182 San José, CA San José, CA North America
## 183 Mart, TX Mart, TX North America
## 184 Taylorville, IL Taylorville, IL North America
## 185 Burlingame, KS Burlingame, KS North America
## 186 London London Europe
## 187 Shanghai Shanghai Asia
## 188 Evanston, IL Evanston, IL North America
## 189 Munich Munich Europe
## 190 Ålesund Ålesund Europe
## 191 Hume, IL Hume, IL North America
## 192 Wilkes-Barre, PA Wilkes-Barre, PA North America
## 193 South Norwalk, CT South Norwalk, CT North America
## 194 Glens Falls, NY Glens Falls, NY North America
## 195 Boulder, CO Boulder, CO North America
## 196 Bradford Bradford Europe
## 197 Lansing, IA Lansing, IA North America
## 198 Redondo Beach, CA Redondo Beach, CA North America
## 199 Avanca Avanca Europe
## 200 Changchun Changchun Asia
## 201 Tabuse Tabuse Asia
## 202 Mürzzuschlag Mürzzuschlag Europe
## 203 Ruse Ruse Europe
## 204 Methuen, MA Methuen, MA North America
## 205 Geneva Geneva Europe
## 206 Sighet Sighet Europe
## 207 Clinton, NY Clinton, NY North America
## 208 Los Angeles, CA Los Angeles, CA North America
## 209 Hobart, Tasmania Hobart, Tasmania Oceania
## 210 Monrovia Monrovia Africa
## 211 Euskirchen Euskirchen Europe
## 212 Hansdorf Lawice Europe
## 213 Tivoli Tivoli Europe
## 214 Jamaica Plain, MA Boston, MA North America
## 215 Rome Rome Europe
## 216 Ann Arbor, MI Ann Arbor, MI North America
## 217 Palo Alto, CA Palo Alto, CA North America
## 218 South Bend, IN South Bend, IN North America
## 219 Vienna Vienna Europe
## 220 New York, NY New York, NY North America
## 221 Karlbo Karlbo Europe
## 222 Oak Park, IL Oak Park, IL North America
## 223 Canton, SD Canton, SD North America
## 224 Nelson Nelson Oceania
## 225 Dungarvan Dungarvan Europe
## 226 Milan Milan Europe
## 227 Berlin Berlin Europe
## 228 Munich Munich Europe
## 229 Heidelberg Heidelberg Europe
## 230 Landsberg Landsberg Europe
## 231 Vienna Vienna Europe
## 232 Paris Paris Europe
## 233 Boston, MA Boston, MA North America
## 234 New York, NY New York, NY North America
## 235 Budapest Budapest Europe
## 236 Genoa Genoa Europe
## 237
## 238 Svartbjörnsbyn Svartbjörnsbyn Europe
## 239 London London Europe
## 240 Delaware, OH Delaware, OH North America
## 241 Johannesburg Johannesburg Africa
## 242 Zurich Zurich Europe
## 243 Munich Munich Europe
## 244 Fulda Fulda Europe
## 245 Paris Paris Europe
## 246 Whiting, IN Whiting, IN North America
## 247 Gjesdal Gjesdal Europe
## 248 Pittsburgh, PA Pittsburgh, PA North America
## 249 Northampton Northampton Europe
## 250 Harborne Harborne Europe
## 251 Rome Rome Europe
## 252 Etterbeek Etterbeek Europe
## 253 Nancy Nancy Europe
## 254 Bordeaux Bordeaux Europe
## 255 Paris Paris Europe
## 256 Potsdam, NY Potsdam, NY North America
## 257 New York, NY New York, NY North America
## 258 Hämeenkyrö Hämeenkyrö Europe
## 259 Paris Paris Europe
## 260 Maillane Maillane Europe
## 261 Paris Paris Europe
## 262 Auburn, AL Auburn, AL North America
## 263 Alliston Alliston North America
## 264 Paterson, NJ Paterson, NJ North America
## 265 Rendcombe Rendcombe Europe
## 266 Eastbourne Eastbourne Europe
## 267 Næstved Næstved Europe
## 268 Kristiania Oslo Europe
## 269 Goldschmieden, near Breslau Goldschmieden, near Breslau Europe
## 270 Vienna Vienna Europe
## 271
## 272 Amsterdam Amsterdam Europe
## 273 Breslau Wroclaw Europe
## 274 Koenigsberg Kaliningrad Europe
## 275 Laibach Ljubljana Europe
## 276 Aracataca Aracataca South America
## 277 Hollerich Hollerich Europe
## 278 Vicuña Vicuña South America
## 279 Ganzhou Ganzhou Asia
## 280 Pottsville, PA Pottsville, PA North America
## 281 Todmorden Todmorden Europe
## 282 Budapest Budapest Europe
## 283 Berlin Berlin Europe
## 284 New Haven, CT New Haven, CT North America
## 285 Budapest Budapest Europe
## 286 Wahoo, NE Wahoo, NE North America
## 287 Dublin Dublin Europe
## 288 Uniontown, PA Uniontown, PA North America
## 289 Bradford, MA Bradford, MA North America
## 290 Budapest Budapest Europe
## 291 Lasi Lasi Europe
## 292 White Plains, NY White Plains, NY North America
## 293 Yukon, FL Yukon, FL North America
## 294 Hoquiam, WA Hoquiam, WA North America
## 295 Ashland, NH Ashland, NH North America
## 296 Renton, WA Renton, WA North America
## 297 Norwalk, CT Norwalk, CT North America
## 298 Cambridge Cambridge Europe
## 299 Stainforth Stainforth Europe
## 300 Boston, MA Boston, MA North America
## 301 New York, NY New York, NY North America
## 302 Dabrovica Dabrovica Europe
## 303 Munich Munich Europe
## 304 Dinant Dinant Europe
## 305 New York, NY New York, NY North America
## 306 Calais Calais Europe
## 307 Albertville Albertville Europe
## 308 Den Helder Den Helder Europe
## 309 Frankfurt-on-the-Main Frankfurt-on-the-Main Europe
## 310 Lagow Lagow Europe
## 311 Bad Cannstatt Bad Cannstatt Europe
## 312 Hamburg Hamburg Europe
## 313 Bad Salzbrunn Bad Salzbrunn Europe
## 314 New York, NY New York, NY North America
## 315 Prague Prague Europe
## 316 Smyrna Izmir Asia
## 317 Val di Castello Val di Castello Europe
## 318 Imperia Imperia Europe
## 319 Ishpeming, MI Ishpeming, MI North America
## 320 Newark Newark Europe
## 321
## 322 Nuoro, Sardinia Nuoro, Sardinia Europe
## 323 New York, NY New York, NY North America
## 324 Bologna Bologna Europe
## 325 Skattungbyn Skattungbyn Europe
## 326 Waltersdorf Niegoslawice Europe
## 327 Danzig Gdansk Europe
## 328 Stenstorp Stenstorp Europe
## 329 Hamburg Hamburg Europe
## 330 Berlin Berlin Europe
## 331 New York, NY New York, NY North America
## 332 Raipur Raipur Asia
## 333 Chicago, IL Chicago, IL North America
## 334 Reykjavik Reykjavik Europe
## 335 New York, NY New York, NY North America
## 336 Norrköping Norrköping Europe
## 337 Strasbourg Strasbourg Europe
## 338 Hoechst Hoechst Europe
## 339 Görlitz Görlitz Europe
## 340 Hildesheim Hildesheim Europe
## 341 Stuttgart Stuttgart Europe
## 342 Augsburg Augsburg Europe
## 343 Gelsenkirchen Gelsenkirchen Europe
## 344 Walkerton, IN Walkerton, IN North America
## 345 Oceanside, NY Oceanside, NY North America
## 346 London London Europe
## 347 Chicago, IL Chicago, IL North America
## 348 Jämshög Jämshög Europe
## 349 Ludwigsburg Ludwigsburg Europe
## 350 Groningen Groningen Europe
## 351 Cologne Cologne Europe
## 352 Buchs Buchs Europe
## 353 Pforzheim Pforzheim Europe
## 354 Arnhem Arnhem Europe
## 355 Paris Paris Europe
## 356 Paris Paris Europe
## 357 Brussels Brussels Europe
## 358 Paris Paris Europe
## 359 Copenhagen Copenhagen Europe
## 360 Fredericia Fredericia Europe
## 361 Geneva Geneva Europe
## 362 Fürth Fürth Europe
## 363 Neudorf Neudorf North America
## 364 Boston, MA Boston, MA North America
## 365 Wola Okrzejska Wola Okrzejska Europe
## 366 New York, NY New York, NY North America
## 367 London London Europe
## 368 Weimar Weimar Europe
## 369 Platteville, WI Platteville, WI North America
## 370 Milwaukee, WI Milwaukee, WI North America
## 371 Calw Calw Europe
## 372 New York, NY New York, NY North America
## 373 Worms Worms Europe
## 374 Nitzkydorf, Banat Nitzkydorf, Banat Europe
## 375 Tokyo Tokyo Asia
## 376 Tokyo Tokyo Asia
## 377 Hamamatsu Hamamatsu Asia
## 378 Stockholm Stockholm Europe
## 379 Frankfurt-on-the-Main Frankfurt-on-the-Main Europe
## 380 Philadelphia, PA Philadelphia, PA North America
## 381 Linköping Linköping Europe
## 382 Vladivostok Vladivostok Europe
## 383 Leningrad St. Petersburg Europe
## 384 Kharkov Kharkiv Europe
## 385 Moscow Moscow Europe
## 386 Budapest Budapest Europe
## 387
## 388
## 389
## 390
## 391
## 392
## 393
## 394
## 395 Paris Paris Europe
## 396 Brooklyn, NY Brooklyn, NY North America
## 397 Brooklyn, NY Brooklyn, NY North America
## 398 Leoncin Leoncin Europe
## 399 Chiran Chiran Asia
## 400 Rymanow Rymanow Europe
## 401 Voronezh Voronezh Europe
## 402 Ryazan Ryazan Europe
## 403 Bergen Bergen Europe
## 404 Dolac Dolac Europe
## 405 Neuenkirchen Neuenkirchen Europe
## 406 Hamburg Hamburg Europe
## 407 Cape Town Cape Town Africa
## 408 York, PA York, PA North America
## 409 Aberdeen Aberdeen Europe
## 410 Adelaide Adelaide Oceania
## 411 Cheetham Hill Cheetham Hill Europe
## 412 Madrid Madrid Europe
## 413 Jefferson City, MO Jefferson City, MO North America
## 414 Bad Kissingen Bad Kissingen Europe
## 415 London London Europe
## 416 Rotterdam Rotterdam Europe
## 417 Aigle Aigle Europe
## 418 Paris Paris Europe
## 419 Minnigaff Minnigaff Europe
## 420 Canton, MA Canton, MA North America
## 421 Manchester Manchester Europe
## 422 Chicago, IL Chicago, IL North America
## 423 Swanage Swanage Europe
## 424 Haverhill, MA Haverhill, MA North America
## 425 Hamburg Hamburg Europe
## 426 Chicago, IL Chicago, IL North America
## 427 Murfreesboro, TN Murfreesboro, TN North America
## 428 Alice, TX Alice, TX North America
## 429 Winnipeg Winnipeg North America
## 430 Council, ID Council, ID North America
## 431 Champaign, IL Champaign, IL North America
## 432 Chicago, IL Chicago, IL North America
## 433 the Hague the Hague Europe
## 434 Cedarville, IL Cedarville, IL North America
## 435 Prague Prague Europe
## 436 Prague Prague Europe
## 437 Lille Lille Europe
## 438 Toulouse Toulouse Europe
## 439 Troyes Troyes Europe
## 440 Nice Nice Europe
## 441 Rosheim Rosheim Europe
## 442 Paris Paris Europe
## 443 Paris Paris Europe
## 444 New York, NY New York, NY North America
## 445 Lemvig Lemvig Europe
## 446 Chicago, IL Chicago, IL North America
## 447 New York, NY New York, NY North America
## 448 Plains, GA Plains, GA North America
## 449 Siegen Siegen Europe
## 450 Putney, VT Putney, VT North America
## 451 Zusamaltheim Zusamaltheim Europe
## 452 Leiden Leiden Europe
## 453 Silkeborg Silkeborg Europe
## 454 Schickenhof Schickenhof Europe
## 455 Farsø Farsø Europe
## 456 New York, NY New York, NY North America
## 457 Jena Jena Europe
## 458 Madison, WI Madison, WI North America
## 459 Budapest Budapest Europe
## 460 Oxford Oxford Europe
## 461 Roanoke, VA Roanoke, VA North America
## 462 Berlin Berlin Europe
## 463 Todmorden Todmorden Europe
## 464 Sydney Sydney Oceania
## 465 Cambridge Cambridge Europe
## 466 Halifax Halifax Europe
## 467 West Hartford, CT West Hartford, CT North America
## 468 Bluefield, WV Bluefield, WV North America
## 469 Kingston Hill Kingston Hill Europe
## 470 Yonkers, NY Yonkers, NY North America
## 471 Middletown, CT Middletown, CT North America
## 472 Londonderry Londonderry Europe
## 473 Denver, CO Denver, CO North America
## 474 Cluny Cluny Europe
## 475 New York, NY New York, NY North America
## 476 Burnham-on-Sea Burnham-on-Sea Europe
## 477 Warwick Warwick Europe
## 478 Livingston Manor, NY Livingston Manor, NY North America
## 479 Tardebigg Tardebigg Europe
## 480 Salinas, CA Salinas, CA North America
## 481 Madrid Madrid Europe
## 482 Dili Dili Oceania
## 483 Azinhaga Azinhaga Europe
## 484 Leningrad St. Petersburg Europe
## 485 Milford, MA Milford, MA North America
## 486 Gary, IN Gary, IN North America
## 487 San Francisco, CA San Francisco, CA North America
## 488 Philadelphia, PA Philadelphia, PA North America
## 489 Sumter, SC Sumter, SC North America
## 490 Warsaw Warsaw Europe
## 491 Montclair, NJ Montclair, NJ North America
## 492 Bogotá Bogotá South America
## 493 Moguer Moguer Europe
## 494 Echternach Echternach Europe
## 495 Soignies Soignies Europe
## 496 New York, NY New York, NY North America
## 497 New York, NY New York, NY North America
## 498 Wels Wels Europe
## 499 Basel Basel Europe
## 500 Lund Lund Europe
## 501 Vidisha Vidisha Asia
## 502 Roholte Roholte Europe
## 503 Vienna Vienna Europe
## 504 Vienna Vienna Europe
## 505 Helsa Helsa Europe
## 506 Lenoir, NC Lenoir, NC North America
## 507 Nagasaki Nagasaki Asia
## 508 Bloomsburg, PA Bloomsburg, PA North America
## 509 Nara Nara Asia
## 510 Waltham, MA Waltham, MA North America
## 511 New York, NY New York, NY North America
## 512 Uchiko Uchiko Asia
## 513 Mokpo Mokpo Asia
## 514 Logan, UT Logan, UT North America
## 515 Gothenburg Gothenburg Europe
## 516 Schroda Schroda Europe
## 517 Lom Lom Europe
## 518 Kumasi Kumasi Africa
## 519 Toyama City Toyama City Asia
## 520 Neisse Nysa Europe
## 521 Vienna Vienna Europe
## 522 Nizhny Tagil Nizhny Tagil Europe
## 523 Königshütte Chorzów Europe
## 524 Aarberg Aarberg Europe
## 525 Kristiania Oslo Europe
## 526 Urbana, IL Urbana, IL North America
## 527 Adelaide Adelaide Oceania
## 528 Omaha, NE Omaha, NE North America
## 529 Nam Ha province Nam Ha province Asia
## 530
## 531 Popowo Popowo Europe
## 532 Los Angeles, CA Los Angeles, CA North America
## 533 Osaka Osaka Asia
## 534 Paris Paris Europe
## 535 Paris Paris Europe
## 536 New York, NY New York, NY North America
## 537 New York, NY New York, NY North America
## 538 Moscow Moscow Europe
## 539 St. Petersburg St. Petersburg Europe
## 540 Vukovar Vukovar Europe
## 541 Toronto Toronto North America
## 542 Baku Baku Asia
## 543 Monrovia Monrovia Africa
## 544 Seattle, WA Seattle, WA North America
## 545 Portland, OR Portland, OR North America
## 546 Changchun Changchun Asia
## 547 Cambridge, MA Cambridge, MA North America
## 548 Kilmaurs Kilmaurs Europe
## 549 Langford Grove, Maldon, Essex Langford Grove, Maldon, Essex Europe
## 550 Glasgow Glasgow Europe
## 551 Dieppe Dieppe Europe
## 552 Brooklyn, NY Brooklyn, NY North America
## 553 Lyon Lyon Europe
## 554 Autun Autun Europe
## 555 Chabris Chabris Europe
## 556 Bremen Bremen Europe
## 557 Agrigento, Sicily Agrigento, Sicily Europe
## 558 San Francisco, CA San Francisco, CA North America
## 559 Paris Paris Europe
## 560 Europe
## 561 Belfast Belfast Europe
## 562 Nagoya Nagoya Asia
## 563 Mingora Mingora Asia
## 564 Bochum Bochum Europe
## 565 Örebro Örebro Europe
## 566 Kattowitz Katowice Europe
## 567 Warsaw Warsaw Europe
## 568 Mexico City Mexico City North America
## 569 Verona Verona Europe
## 570 Arequipa Arequipa South America
## 571 New York, NY New York, NY North America
## 572 Chicago, IL Chicago, IL North America
## 573 Vienna Vienna Europe
## 574 New York, NY New York, NY North America
## 575 Atlanta, GA Atlanta, GA North America
## 576 Baltimore, MD Baltimore, MD North America
## 577 Brighton Brighton Europe
## 578 Waalwijk Waalwijk Europe
## 579 Viipuri Vyborg Europe
## 580 Toyohashi Toyohashi Asia
## 581 Paris Paris Europe
## 582 Ghent Ghent Europe
## 583 Pongaroa Pongaroa Oceania
## 584 Breslau Wroclaw Europe
## 585 Berlin Berlin Europe
## 586 Vienna Vienna Europe
## 587 Kiel Kiel Europe
## 588 Pretoria Pretoria Africa
## 589 Pfaffendorf Pfaffendorf Europe
## 590 Fosnavåg Fosnavåg Europe
## 591
## 592 St. Paul, MN St. Paul, MN North America
## 593 New York, NY New York, NY North America
## 594 Brest Litovsk Brest Litovsk Europe
## 595 Boston, MA Boston, MA North America
## 596 New York, NY New York, NY North America
## 597 Pretoria Pretoria Africa
## 598 Kansas City, MO Kansas City, MO North America
## 599 New York, NY New York, NY North America
## 600 Blackpool Blackpool Europe
## 601 Miami, FL Miami, FL North America
## 602 Lausanne Lausanne Europe
## 603 Guatemala City Guatemala City North America
## 604 Privolnoye Privolnoye Europe
## 605 Veshenskaya Veshenskaya Europe
## 606 Brooklyn, NY Brooklyn, NY North America
## 607 Gaomi Gaomi Asia
## 608 Cairo Cairo Africa
## 609 Uskup Skopje Europe
## 610 Chittagong Chittagong Asia
## 611 New York, NY New York, NY North America
## 612 Timmins, ON Timmins, ON North America
## 613 Kojo Kojo Asia
## 614 Springs Springs Africa
## 615 Cairo Cairo Africa
## 616
## 617 Trönö Trönö Europe
## 618
## 619 Berlin Berlin Europe
## 620 Qunu Qunu Africa
## 621 Elizabeth, NJ Elizabeth, NJ North America
## 622 Dordrecht Dordrecht Europe
## 623 Usman Usman Europe
## 624 Copenhagen Copenhagen Europe
## 625 London London Europe
## 626 Thorshavn Thorshavn Europe
## 627 the Hague the Hague Europe
## 628 Saratov Saratov Europe
## 629 Cresco, IA Cresco, IA North America
## 630 Washington, DC Washington, DC North America
## 631 Chorley Chorley Europe
## 632 Mexico City Mexico City North America
## 633 Kristiania Oslo Europe
## 634 Iráklion Iráklion Europe
## 635
## 636 Sulechów Sulechów Europe
## 637 Superior, WI Superior, WI North America
## 638 London London Europe
## 639 Halifax Halifax Europe
## 640
## 641 Istanbul Istanbul Asia
## 642 Kyoto Kyoto Asia
## 643 Heredia Heredia North America
## 644 Hamburg Hamburg Europe
## 645 Frankfurt-on-the-Main Frankfurt-on-the-Main Europe
## 646 Frankfurt-on-the-Main Frankfurt-on-the-Main Europe
## 647 Hanover Hanover Europe
## 648 Sorau Zory Europe
## 649 Koenigsberg Kaliningrad Europe
## 650 Freiburg im Breisgau Freiburg im Breisgau Europe
## 651 San Francisco, CA San Francisco, CA North America
## 652 Dewsbury Dewsbury Europe
## 653 Parral Parral South America
## 654 Växjö Växjö Europe
## 655 London London Europe
## 656 Paris Paris Europe
## 657 London London Europe
## 658 Gary, IN Gary, IN North America
## 659 Bristol Bristol Europe
## 660 New York, NY New York, NY North America
## 661 Sidney, OH Sidney, OH North America
## 662 Provo, UT Provo, UT North America
## 663 Strehlen Strzelin Europe
## 664 New York, NY New York, NY North America
## 665 La Flèche La Flèche Europe
## 666 Berlin Berlin Europe
## 667 Amsterdam Amsterdam Europe
## 668 Sterling, IL Sterling, IL North America
## 669 Moscow Moscow Europe
## 670 New York, NY New York, NY North America
## 671 Denver, CO Denver, CO North America
## 672 Raton, NM Raton, NM North America
## 673 Olten Olten Europe
## 674 Carcassonne Carcassonne Europe
## 675 Novaya Chigla Novaya Chigla Europe
## 676 Hillsboro, WV Hillsboro, WV North America
## 677 Cambridge, MA Cambridge, MA North America
## 678
## 679 New York, NY New York, NY North America
## 680 Northfield, MN Northfield, MN North America
## 681 Brisbane Brisbane Oceania
## 682 Maastricht Maastricht Europe
## 683 Plzen Plzen Europe
## 684 Griffen Griffen Europe
## 685 Newcastle upon Tyne Newcastle upon Tyne Europe
## 686 Rio de Janeiro Rio de Janeiro South America
## 687 Mitcham Mitcham Europe
## 688 Baltimore, MD Baltimore, MD North America
## 689 London London Europe
## 690 Pittsburgh, PA Pittsburgh, PA North America
## 691 Indianapolis, IN Indianapolis, IN North America
## 692 Pressburg Bratislava Europe
## 693 Falmouth, KY Falmouth, KY North America
## 694 Paris Paris Europe
## 695 Paris Paris Europe
## 696 Zonnemaire Zonnemaire Europe
## 697 Blankenburg Blankenburg Europe
## 698
## 699 Kronshtadt Kronshtadt Europe
## 700 Calcutta Calcutta Asia
## 701 Oslo Oslo Europe
## 702 Helsinki Helsinki Europe
## 703 Berlin Berlin Europe
## 704 Detroit, MI Detroit, MI North America
## 705 Montreal Montreal North America
## 706 Fareham Fareham Europe
## 707 St. Paul, MN St. Paul, MN North America
## 708 Washington, DC Washington, DC North America
## 709 Breslau Wroclaw Europe
## 710 Catanzaro Catanzaro Europe
## 711 Bayonne Bayonne Europe
## 712 Genoa Genoa Europe
## 713 New York, NY New York, NY North America
## 714 Akron, OH Akron, OH North America
## 715 Medicine Hat, Alberta Medicine Hat, Alberta North America
## 716 Springfield, MA Springfield, MA North America
## 717 East Orange, NJ East Orange, NJ North America
## 718 Edinburgh Edinburgh Europe
## 719 Derby Derby Europe
## 720 Vienna Vienna Europe
## 721 Liverpool Liverpool Europe
## 722 New York, NY New York, NY North America
## 723 Winterthur Winterthur Europe
## 724 Berne, IN Berne, IN North America
## 725 London London Europe
## 726 Karlsruhe Karlsruhe Europe
## 727 Vienna Vienna Europe
## 728 Aldea Chimel Aldea Chimel North America
## 729 Turin Turin Europe
## 730 Zloczov Zloczov Europe
## 731 Morrison, IL Morrison, IL North America
## 732 Visalia, CA Visalia, CA North America
## 733 Boston, MA Boston, MA North America
## 734 Vienna Vienna Europe
## 735 New York, NY New York, NY North America
## 736 Washington, DC Washington, DC North America
## 737 London London Europe
## 738 Yakima, WA Yakima, WA North America
## 739 Alice, TX Alice, TX North America
## 740 Syracuse, NY Syracuse, NY North America
## 741 Charleston, SC Charleston, SC North America
## 742 Batley Batley Europe
## 743 Possum Trot, KY Possum Trot, KY North America
## 744 New York, NY New York, NY North America
## 745 Munich Munich Europe
## 746 Frankfurt-on-the-Main Frankfurt-on-the-Main Europe
## 747 New York, NY New York, NY North America
## 748 Detroit, MI Detroit, MI North America
## 749 Clausthal Clausthal-Zellerfeld Europe
## 750 Brooklyn, NY Brooklyn, NY North America
## 751 Kingston, ON Kingston, ON North America
## 752 Newburyport, MA Newburyport, MA North America
## 753 Oak Park, IL Oak Park, IL North America
## 754 New York, NY New York, NY North America
## 755 Urbana, IL Urbana, IL North America
## 756 Houston, TX Houston, TX North America
## 757 Burlington, MA Burlington, MA North America
## 758 Newton-le-Willows Newton-le-Willows Europe
## 759 Boston, MA Boston, MA North America
## 760 St. Louis, MO St. Louis, MO North America
## 761 Dijon Dijon Europe
## 762 Neuilly-sur-Seine Neuilly-sur-Seine Europe
## 763 Hartford, CT Hartford, CT North America
## 764 New York, NY New York, NY North America
## 765 Basel Basel Europe
## 766 Clamecy Clamecy Europe
## 767 Cambridge Cambridge Europe
## 768 Willesden Willesden Europe
## 769 Almora Almora Asia
## 770 New York, NY New York, NY North America
## 771 New York, NY New York, NY North America
## 772 Aurich Aurich Europe
## 773 Munich Munich Europe
## 774 Montreal Montreal North America
## 775 Bombay Bombay Asia
## 776 New York, NY New York, NY North America
## 777 Kobe Kobe Asia
## 778 Pointe-à-Pitre Pointe-à-Pitre North America
## 779 Torino Torino Europe
## 780 Modica Modica Europe
## 781 Dublin Dublin Europe
## 782 Ann Arbor, MI Ann Arbor, MI North America
## 783 Petilla de Aragón Petilla de Aragón Europe
## 784 Yamanashi Prefecture Yamanashi Prefecture Asia
## 785 Montreal Montreal North America
## 786 Champaign-Urbana, IL Champaign-Urbana, IL North America
## 787 Casteldàwson Casteldàwson Europe
## 788 Paris Paris Europe
## 789 Mårbacka Mårbacka Europe
## 790 Priluka Nova Pryluka Europe
## 791 Casablanca Casablanca Africa
## 792 Luarca Luarca Europe
## 793 New York, NY New York, NY North America
## 794 Vishneva Vishneva Europe
## 795 Osaka Osaka Asia
## 796 Hamadan Hamadan Asia
## 797 Buczacz Buchach Europe
## 798 Ikata Ikata Asia
## 799 Montreal Montreal North America
## 800 Kalundborg Kalundborg Europe
## 801 Pinsk Pinsk Europe
## 802 the Hague the Hague Europe
## 803 Kyoto Kyoto Asia
## 804 Sauk Centre, MN Sauk Centre, MN North America
## 805 Lochfield Lochfield Europe
## 806 Castries Castries North America
## 807 Birmingham Birmingham Europe
## 808 Leipzig Leipzig Europe
## 809 Tiruchirappalli Tiruchirappalli Asia
## 810 London London Europe
## 811 London London Europe
## 812 Traralgon Traralgon Oceania
## 813 Eastbourne Eastbourne Europe
## 814 Leicester Leicester Europe
## 815 Wisbech Wisbech Europe
## 816 London London Europe
## 817 Adelaide Adelaide Oceania
## 818 Edinburgh Edinburgh Europe
## 819 Uddingston Uddingston Europe
## 820 Dippenhall Dippenhall Europe
## 821 Melbourne Melbourne Oceania
## 822 Stroud Stroud Europe
## 823 Leeds Leeds Europe
## 824 Holbeach Holbeach Europe
## 825 Norwich Norwich Europe
## 826 Lancashire Lancashire Europe
## 827 London London Europe
## 828 Rufford, near Chesterfield Rufford, near Chesterfield Europe
## 829 Glasgow Glasgow Europe
## 830 Chicago, IL Chicago, IL North America
## 831 Des Moines, IA Des Moines, IA North America
## 832 Brooklyn, NY Brooklyn, NY North America
## 833 Arad Arad Europe
## 834 St. Louis, MO St. Louis, MO North America
## 835 New York, NY New York, NY North America
## 836 Lahore Lahore Asia
## 837 Paris Paris Europe
## 838 Stockholm Stockholm Europe
## 839 Nagoya Nagoya Asia
## 840 Vik Vik Europe
## 841 Ivano-Frankivsk Ivano-Frankivsk Europe
## 842 Germiston Germiston Africa
## 843 St. Louis, MO St. Louis, MO North America
## 844 Wloclawek Wloclawek Europe
## 845 Higashimatsuyama Higashimatsuyama Asia
## 846 Kyoto Kyoto Asia
## 847 Ta'izz Ta'izz Asia
## 848 Taktser Taktser Asia
## 849 Fleräng Fleräng Europe
## 850 Bern Bern Europe
## 851 Garding Garding Europe
## 852 Heidelberg Heidelberg Europe
## 853 New York, NY New York, NY North America
## 854 Germantown, PA Germantown, PA North America
## 855 Arlington, SD Arlington, SD North America
## 856 Milwaukee, WI Milwaukee, WI North America
## 857 Oakland, CA Oakland, CA North America
## 858 Göttingen Göttingen Europe
## 859 Lexington, KY Lexington, KY North America
## 860 Ann Arbor, MI Ann Arbor, MI North America
## 861 Pasadena, CA Pasadena, CA North America
## 862 Lübeck Lübeck Europe
## 863 Chicago, IL Chicago, IL North America
## 864 Neston Neston Europe
## 865 's Graveland 's Graveland Europe
## 866 Amsterdam Amsterdam Europe
## 867 Stockholm Stockholm Europe
## 868 Stockholm Stockholm Europe
## 869 Lorain, OH Lorain, OH North America
## 870 Uppsala Uppsala Europe
## 871 Nagoya Nagoya Asia
## 872 Skedsmo Skedsmo Europe
## 873 Shanghai Shanghai Asia
## 874 Zhejiang Ningbo Zhejiang Ningbo Asia
## 875 Stockholm Stockholm Europe
## 876
## 877
## 878
## 879 Chaguanas Chaguanas North America
## 880 Merriman, NE Merriman, NE North America
## 881 Chidambaram, Tamil Nadu Chidambaram, Tamil Nadu Asia
## 882 Olshammar Olshammar Europe
## 883 Wichita, KS Wichita, KS North America
## 884 Sevilla Sevilla Europe
## 885 Peggau Peggau Europe
## 886 Cherbourg Cherbourg Europe
## 887 Chicago, IL Chicago, IL North America
## 888 Moscow Moscow Europe
## 889 Sarajevo Sarajevo Europe
## 890 Boston, MA Boston, MA North America
## 891 Amoy Amoy Asia
## 892 Frauenfeld Frauenfeld Europe
## 893 Vienna Vienna Europe
## 894 Oranienburg Oranienburg Europe
## 895 Briesen Briesen Europe
## 896 Nyeri Nyeri Africa
## 897 St. Petersburg St. Petersburg Europe
## 898 Ridgeville, IN Ridgeville, IN North America
## 899 Gränichen Gränichen Europe
## 900 Berlin Berlin Europe
## 901 Würzburg Würzburg Europe
## 902 Lennep Remscheid Europe
## 903 Riga Riga Europe
## 904 Gaffken Parusnoye Europe
## 905 Grand Valley, CO Grand Valley, CO North America
## 906 Amherst, NS Amherst, NS North America
## 907 Semarang Semarang Asia
## 908 Pittsburgh, PA Pittsburgh, PA North America
## 909 London London Europe
## 910 Wigton Wigton Europe
## 911 Dublin Dublin Europe
## 912 Ramelton Ramelton Europe
## 913 Albuquerque, NM Albuquerque, NM North America
## 914 Wilkes-Barre, PA Wilkes-Barre, PA North America
## 915 Pleasanton, CA Pleasanton, CA North America
## 916 Niagara Falls Niagara Falls North America
## 917 Boston, MA Boston, MA North America
## 918 New Albany, MS New Albany, MS North America
## 919 New York, NY New York, NY North America
## 920 St. Columb Minor St. Columb Minor Europe
## 921 New York, NY New York, NY North America
## 922 Taunton, MA Taunton, MA North America
## 923 Cleveland, OH Cleveland, OH North America
## 924 Stoughton, WI Stoughton, WI North America
## 925 Victoria, BC Victoria, BC North America
## 926 Los Angeles, CA Los Angeles, CA North America
## 927 Lübeck Lübeck Europe
## 928 Woodstock Woodstock Europe
## 929 Bnin Kórnik Europe
## 930 Kobiele Wielkie Kobiele Wielkie Europe
## 931 Abeokuta Abeokuta Africa
## 932 Heidelberg Heidelberg Europe
## 933 Lorenzkirch Lorenzkirch Europe
## 934 Vienna Vienna Europe
## 935 Staunton, VA Staunton, VA North America
## 936 Cairo Cairo Africa
## 937 Osaka Osaka Asia
## 938 Jerusalem Jerusalem Asia
## 939 Tokyo Tokyo Asia
## 940 Fukuoka Fukuoka Asia
## 941 Hsinchu Hsinchu Asia
## 942 Menin Menin Europe
## 943 Vitebsk, Belorussia Vitebsk, Belorussia Europe
## 944 Rendcombe Rendcombe Europe
## 945
## 946 Madison, WI Madison, WI North America
## 947 Portland, OR Portland, OR North America
## 948 Warsaw Warsaw Europe
## 949
## 950
## birth_country birth_countryNow
## 1 USA USA
## 2 Denmark Denmark
## 3 British Protectorate of Palestine Israel
## 4 Lithuania Lithuania
## 5 India Pakistan
## 6 India India
## 7 Ethiopia Ethiopia
## 8 British Mandate of Palestine Israel
## 9 USA USA
## 10 Germany Germany
## 11 Prussia Germany
## 12 Germany Germany
## 13 Argentina Argentina
## 14 Egypt Egypt
## 15 Japan Japan
## 16 Japan Japan
## 17 USA USA
## 18 USA USA
## 19 United Kingdom United Kingdom
## 20 New Zealand New Zealand
## 21 Prussia Poland
## 22 French Algeria Algeria
## 23 Belgium Belgium
## 24 Germany Germany
## 25 France France
## 26 Switzerland Switzerland
## 27 Southern Rhodesia Zimbabwe
## 28 Germany France
## 29 Austria-Hungary Hungary
## 30 Mecklenburg Germany
## 31 Australia Australia
## 32 Russia Russia
## 33 USSR Russia
## 34 France France
## 35 Mexico Mexico
## 36 USA USA
## 37 Austria Austria
## 38 USA USA
## 39 Germany France
## 40 France France
## 41 Canada Canada
## 42 South Africa South Africa
## 43 Sweden Sweden
## 44 France France
## 45 Sweden Sweden
## 46 USA USA
## 47 India India
## 48
## 49
## 50 France France
## 51 France France
## 52 Russia Russia
## 53 France France
## 54 France France
## 55 Russia Russia
## 56 United Kingdom United Kingdom
## 57 Poland Lithuania
## 58 USA USA
## 59 Scotland Scotland
## 60 United Kingdom United Kingdom
## 61 United Kingdom United Kingdom
## 62 Egypt Egypt
## 63 United Kingdom United Kingdom
## 64 United Kingdom United Kingdom
## 65 British Mandate of Palestine Israel
## 66 France France
## 67 Sweden Sweden
## 68 Germany Germany
## 69 USA USA
## 70 Canada Canada
## 71 USA USA
## 72 United Kingdom United Kingdom
## 73 Scotland Scotland
## 74 USA USA
## 75 USA USA
## 76 Russian Empire Finland
## 77 Sweden Sweden
## 78 Denmark Denmark
## 79 Belgium Belgium
## 80 Burma Myanmar
## 81 Hungary Hungary
## 82 Turkey Turkey
## 83 USA USA
## 84 USA USA
## 85 USA USA
## 86 Australia Australia
## 87 USA USA
## 88 USA USA
## 89 Venezuela Venezuela
## 90 USA USA
## 91 Finland Finland
## 92 Sweden Sweden
## 93 the Netherlands the Netherlands
## 94 Argentina Argentina
## 95 Germany Germany
## 96 Austrian Empire Czech Republic
## 97 Sweden Sweden
## 98 Canada Canada
## 99 United Kingdom United Kingdom
## 100 Northern Ireland Northern Ireland
## 101 Norway Norway
## 102 USA USA
## 103 Russia Russia
## 104 United Kingdom United Kingdom
## 105 USA USA
## 106 USA USA
## 107 USA USA
## 108 USA USA
## 109 USA USA
## 110 Scotland Scotland
## 111 Italy Italy
## 112 Spain Spain
## 113 Germany Germany
## 114 Austria-Hungary Czech Republic
## 115 USA USA
## 116 Switzerland Switzerland
## 117 Germany Germany
## 118 USA USA
## 119 Italy Italy
## 120 East Timor East Timor
## 121 Argentina Argentina
## 122 USA USA
## 123 United Kingdom United Kingdom
## 124 Argentina Argentina
## 125 Canada Canada
## 126 Switzerland Switzerland
## 127 USA USA
## 128 United Kingdom United Kingdom
## 129 USA USA
## 130 Korea South Korea
## 131 China China
## 132 France France
## 133 France France
## 134 China China
## 135 the Netherlands the Netherlands
## 136 USA USA
## 137 United Kingdom United Kingdom
## 138 Norway Norway
## 139 Germany Germany
## 140 Cyprus Cyprus
## 141 USA USA
## 142 French Algeria Algeria
## 143 Madagascar Madagascar
## 144 USA USA
## 145 USA USA
## 146 United Kingdom United Kingdom
## 147 USA USA
## 148 Belgium Belgium
## 149 USA USA
## 150 Russian Empire Lithuania
## 151 USA USA
## 152 Sweden Sweden
## 153 USA USA
## 154 British Mandate of Palestine Israel
## 155 Switzerland Switzerland
## 156 China China
## 157 British Mandate of Palestine Israel
## 158 USA USA
## 159 USA USA
## 160 Italy Italy
## 161 USA USA
## 162 Canada Canada
## 163 USA USA
## 164 United Kingdom United Kingdom
## 165 USA USA
## 166 USA USA
## 167 Northern Ireland Northern Ireland
## 168 Belgian Congo Democratic Republic of the Congo
## 169 Hungary Hungary
## 170 United Kingdom United Kingdom
## 171 Saint Lucia Saint Lucia
## 172 South Africa South Africa
## 173 USA USA
## 174 Switzerland Switzerland
## 175 USA USA
## 176 USA USA
## 177 Canada Canada
## 178 Persia Iran
## 179 Egypt Egypt
## 180 USA USA
## 181 USA USA
## 182 USA USA
## 183 USA USA
## 184 USA USA
## 185 USA USA
## 186 United Kingdom United Kingdom
## 187 China China
## 188 USA USA
## 189 Bavaria Germany
## 190 Norway Norway
## 191 USA USA
## 192 USA USA
## 193 USA USA
## 194 USA USA
## 195 USA USA
## 196 United Kingdom United Kingdom
## 197 USA USA
## 198 USA USA
## 199 Portugal Portugal
## 200 China China
## 201 Japan Japan
## 202 Austria Austria
## 203 Bulgaria Bulgaria
## 204 USA USA
## 205 Switzerland Switzerland
## 206 Romania Romania
## 207 USA USA
## 208 USA USA
## 209 Australia Australia
## 210 Liberia Liberia
## 211 Prussia Germany
## 212 Prussia Poland
## 213 Italy Italy
## 214 USA USA
## 215 Italy Italy
## 216 USA USA
## 217 USA USA
## 218 USA USA
## 219 Austria Austria
## 220 USA USA
## 221 Sweden Sweden
## 222 USA USA
## 223 USA USA
## 224 New Zealand New Zealand
## 225 Ireland Ireland
## 226 Austrian Empire Italy
## 227 Germany Germany
## 228 Germany Germany
## 229 Germany Germany
## 230 Germany Germany
## 231 Austria Austria
## 232 France France
## 233 USA USA
## 234 USA USA
## 235 Austria-Hungary Hungary
## 236 Italy Italy
## 237
## 238 Sweden Sweden
## 239 United Kingdom United Kingdom
## 240 USA USA
## 241 South Africa South Africa
## 242 Switzerland Switzerland
## 243 Germany Germany
## 244 Hesse-Kassel Germany
## 245 France France
## 246 USA USA
## 247 Norway Norway
## 248 USA USA
## 249 United Kingdom United Kingdom
## 250 United Kingdom United Kingdom
## 251 Italy Italy
## 252 Belgium Belgium
## 253 France France
## 254 France France
## 255 France France
## 256 USA USA
## 257 USA USA
## 258 Russian Empire Finland
## 259 France France
## 260 France France
## 261 France France
## 262 USA USA
## 263 Canada Canada
## 264 USA USA
## 265 United Kingdom United Kingdom
## 266 United Kingdom United Kingdom
## 267 Denmark Denmark
## 268 Norway Norway
## 269 Germany Poland
## 270 Austria Austria
## 271
## 272 the Netherlands the Netherlands
## 273 Prussia Poland
## 274 Germany Russia
## 275 Austria-Hungary Slovenia
## 276 Colombia Colombia
## 277 Luxembourg Luxembourg
## 278 Chile Chile
## 279 China China
## 280 USA USA
## 281 United Kingdom United Kingdom
## 282 Hungary Hungary
## 283 Germany Germany
## 284 USA USA
## 285 Hungary Hungary
## 286 USA USA
## 287 Ireland Ireland
## 288 USA USA
## 289 USA USA
## 290 Austria-Hungary Hungary
## 291 Romania Romania
## 292 USA USA
## 293 USA USA
## 294 USA USA
## 295 USA USA
## 296 USA USA
## 297 USA USA
## 298 United Kingdom United Kingdom
## 299 United Kingdom United Kingdom
## 300 USA USA
## 301 USA USA
## 302 Poland Poland
## 303 Germany Germany
## 304 Belgium Belgium
## 305 USA USA
## 306 France France
## 307 France France
## 308 the Netherlands the Netherlands
## 309 West Germany Germany
## 310 Germany Poland
## 311 Germany Germany
## 312 Germany Germany
## 313 Prussia Poland
## 314 USA USA
## 315 Austria-Hungary Czech Republic
## 316 Ottoman Empire Turkey
## 317 Tuscany Italy
## 318 Italy Italy
## 319 USA USA
## 320 United Kingdom United Kingdom
## 321
## 322 Italy Italy
## 323 USA USA
## 324 Italy Italy
## 325 Sweden Sweden
## 326 Germany Poland
## 327 Free City of Danzig Poland
## 328 Sweden Sweden
## 329 Germany Germany
## 330 Germany Germany
## 331 USA USA
## 332 India India
## 333 USA USA
## 334 Iceland Iceland
## 335 USA USA
## 336 Sweden Sweden
## 337 Germany France
## 338 Germany Germany
## 339 Prussia Germany
## 340 Germany Germany
## 341 Württemberg Germany
## 342 Germany Germany
## 343 Germany Germany
## 344 USA USA
## 345 USA USA
## 346 United Kingdom United Kingdom
## 347 USA USA
## 348 Sweden Sweden
## 349 West Germany Germany
## 350 the Netherlands the Netherlands
## 351 Germany Germany
## 352 Switzerland Switzerland
## 353 Germany Germany
## 354 the Netherlands the Netherlands
## 355 France France
## 356 France France
## 357 Belgium Belgium
## 358 France France
## 359 Denmark Denmark
## 360 Denmark Denmark
## 361 Switzerland Switzerland
## 362 Germany Germany
## 363 Canada Canada
## 364 USA USA
## 365 Poland Poland
## 366 USA USA
## 367 United Kingdom United Kingdom
## 368 Germany Germany
## 369 USA USA
## 370 USA USA
## 371 Germany Germany
## 372 USA USA
## 373 Germany Germany
## 374 Romania Romania
## 375 Japan Japan
## 376 Japan Japan
## 377 Japan Japan
## 378 Sweden Sweden
## 379 West Germany Germany
## 380 USA USA
## 381 Sweden Sweden
## 382 Russia Russia
## 383 Russia Russia
## 384 Russian Empire Ukraine
## 385 Russia Russia
## 386 Hungary Hungary
## 387
## 388
## 389
## 390
## 391
## 392
## 393
## 394
## 395 France France
## 396 USA USA
## 397 USA USA
## 398 Russian Empire Poland
## 399 Japan Japan
## 400 Austria-Hungary Poland
## 401 Russia Russia
## 402 Russia Russia
## 403 Norway Norway
## 404 Bosnia Bosnia and Herzegovina
## 405 West Germany Germany
## 406 Germany Germany
## 407 South Africa South Africa
## 408 USA USA
## 409 United Kingdom United Kingdom
## 410 Australia Australia
## 411 United Kingdom United Kingdom
## 412 Spain Spain
## 413 USA USA
## 414 Germany Germany
## 415 United Kingdom United Kingdom
## 416 the Netherlands the Netherlands
## 417 Switzerland Switzerland
## 418 France France
## 419 Scotland Scotland
## 420 USA USA
## 421 United Kingdom United Kingdom
## 422 USA USA
## 423 United Kingdom United Kingdom
## 424 USA USA
## 425 Germany Germany
## 426 USA USA
## 427 USA USA
## 428 USA USA
## 429 Canada Canada
## 430 USA USA
## 431 USA USA
## 432 USA USA
## 433 the Netherlands the Netherlands
## 434 USA USA
## 435 Austria-Hungary Czech Republic
## 436 Austria-Hungary Czech Republic
## 437 France France
## 438 France France
## 439 France France
## 440 France France
## 441 France France
## 442 France France
## 443 France France
## 444 USA USA
## 445 Denmark Denmark
## 446 USA USA
## 447 USA USA
## 448 USA USA
## 449 Germany Germany
## 450 USA USA
## 451 Germany Germany
## 452 the Netherlands the Netherlands
## 453 Denmark Denmark
## 454 Germany Germany
## 455 Denmark Denmark
## 456 USA USA
## 457 Germany Germany
## 458 USA USA
## 459 Hungary Hungary
## 460 United Kingdom United Kingdom
## 461 USA USA
## 462 Germany Germany
## 463 United Kingdom United Kingdom
## 464 Australia Australia
## 465 United Kingdom United Kingdom
## 466 United Kingdom United Kingdom
## 467 USA USA
## 468 USA USA
## 469 United Kingdom United Kingdom
## 470 USA USA
## 471 USA USA
## 472 Northern Ireland Northern Ireland
## 473 USA USA
## 474 Scotland Scotland
## 475 USA USA
## 476 United Kingdom United Kingdom
## 477 United Kingdom United Kingdom
## 478 USA USA
## 479 United Kingdom United Kingdom
## 480 USA USA
## 481 Spain Spain
## 482 East Timor East Timor
## 483 Portugal Portugal
## 484 USSR Russia
## 485 USA USA
## 486 USA USA
## 487 USA USA
## 488 USA USA
## 489 USA USA
## 490 Russian Empire Poland
## 491 USA USA
## 492 Colombia Colombia
## 493 Spain Spain
## 494 Luxembourg Luxembourg
## 495 Belgium Belgium
## 496 USA USA
## 497 USA USA
## 498 Austria Austria
## 499 Switzerland Switzerland
## 500 Sweden Sweden
## 501 India India
## 502 Denmark Denmark
## 503 Austrian Empire Austria
## 504 Austria Austria
## 505 Germany Germany
## 506 USA USA
## 507 Japan Japan
## 508 USA USA
## 509 Japan Japan
## 510 USA USA
## 511 USA USA
## 512 Japan Japan
## 513 Korea South Korea
## 514 USA USA
## 515 Sweden Sweden
## 516 German-occupied Poland Poland
## 517 Norway Norway
## 518 Gold Coast Ghana
## 519 Japan Japan
## 520 Germany Poland
## 521 Austria Austria
## 522 Russia Russia
## 523 Prussia Poland
## 524 Switzerland Switzerland
## 525 Norway Norway
## 526 USA USA
## 527 Australia Australia
## 528 USA USA
## 529 Vietnam Vietnam
## 530
## 531 Poland Poland
## 532 USA USA
## 533 Japan Japan
## 534 France France
## 535 France France
## 536 USA USA
## 537 USA USA
## 538 Russia Russia
## 539 Russian Empire Russia
## 540 Austria-Hungary Croatia
## 541 Canada Canada
## 542 Russian Empire Azerbaijan
## 543 Liberia Liberia
## 544 USA USA
## 545 USA USA
## 546 China China
## 547 USA USA
## 548 Scotland Scotland
## 549 United Kingdom United Kingdom
## 550 Scotland Scotland
## 551 France France
## 552 USA USA
## 553 France France
## 554 France France
## 555 France France
## 556 Germany Germany
## 557 Italy Italy
## 558 USA USA
## 559 France France
## 560 United Kingdom United Kingdom
## 561 Northern Ireland Northern Ireland
## 562 Japan Japan
## 563 Pakistan Pakistan
## 564 Germany Germany
## 565 Sweden Sweden
## 566 Germany Poland
## 567 Russian Empire Poland
## 568 Mexico Mexico
## 569 Italy Italy
## 570 Peru Peru
## 571 USA USA
## 572 USA USA
## 573 Austria Austria
## 574 USA USA
## 575 USA USA
## 576 USA USA
## 577 United Kingdom United Kingdom
## 578 the Netherlands the Netherlands
## 579 Finland Finland
## 580 Japan Japan
## 581 France France
## 582 Belgium Belgium
## 583 New Zealand New Zealand
## 584 Germany Poland
## 585 Germany Germany
## 586 Austria Austria
## 587 Schleswig Germany
## 588 South Africa South Africa
## 589 Germany Germany
## 590 Norway Norway
## 591
## 592 USA USA
## 593 USA USA
## 594 Russian Empire Belarus
## 595 USA USA
## 596 USA USA
## 597 South Africa South Africa
## 598 USA USA
## 599 USA USA
## 600 United Kingdom United Kingdom
## 601 USA USA
## 602 Switzerland Switzerland
## 603 Guatemala Guatemala
## 604 USSR Russia
## 605 Russia Russia
## 606 USA USA
## 607 China China
## 608 Egypt Egypt
## 609 Ottoman Empire North Macedonia
## 610 British India Bangladesh
## 611 USA USA
## 612 Canada Canada
## 613 Iraq Iraq
## 614 South Africa South Africa
## 615 Egypt Egypt
## 616
## 617 Sweden Sweden
## 618
## 619 Germany Germany
## 620 South Africa South Africa
## 621 USA USA
## 622 the Netherlands the Netherlands
## 623 USSR Russia
## 624 Denmark Denmark
## 625 United Kingdom United Kingdom
## 626 Faroe Islands (Denmark) Faroe Islands (Denmark)
## 627 the Netherlands the Netherlands
## 628 Russia Russia
## 629 USA USA
## 630 USA USA
## 631 United Kingdom United Kingdom
## 632 Mexico Mexico
## 633 Norway Norway
## 634 Crete Greece
## 635
## 636 Poland Poland
## 637 USA USA
## 638 United Kingdom United Kingdom
## 639 United Kingdom United Kingdom
## 640
## 641 Turkey Turkey
## 642 Japan Japan
## 643 Costa Rica Costa Rica
## 644 Germany Germany
## 645 Germany Germany
## 646 Germany Germany
## 647 Germany Germany
## 648 Germany Poland
## 649 Germany Russia
## 650 Germany Germany
## 651 USA USA
## 652 United Kingdom United Kingdom
## 653 Chile Chile
## 654 Sweden Sweden
## 655 United Kingdom United Kingdom
## 656 France France
## 657 United Kingdom United Kingdom
## 658 USA USA
## 659 United Kingdom United Kingdom
## 660 USA USA
## 661 USA USA
## 662 USA USA
## 663 Prussia Poland
## 664 USA USA
## 665 France France
## 666 Prussia Germany
## 667 the Netherlands the Netherlands
## 668 USA USA
## 669 Russia Russia
## 670 USA USA
## 671 USA USA
## 672 USA USA
## 673 Switzerland Switzerland
## 674 France France
## 675 Russia Russia
## 676 USA USA
## 677 USA USA
## 678
## 679 USA USA
## 680 USA USA
## 681 Australia Australia
## 682 the Netherlands the Netherlands
## 683 Czechoslovakia Czech Republic
## 684 Austria Austria
## 685 United Kingdom United Kingdom
## 686 Brazil Brazil
## 687 United Kingdom United Kingdom
## 688 USA USA
## 689 United Kingdom United Kingdom
## 690 USA USA
## 691 USA USA
## 692 Hungary Slovakia
## 693 USA USA
## 694 France France
## 695 France France
## 696 the Netherlands the Netherlands
## 697 Germany Germany
## 698
## 699 Russian Empire Russia
## 700 India India
## 701 Norway Norway
## 702 Russian Empire Finland
## 703 Germany Germany
## 704 USA USA
## 705 Canada Canada
## 706 United Kingdom United Kingdom
## 707 USA USA
## 708 USA USA
## 709 Germany Poland
## 710 Italy Italy
## 711 France France
## 712 Italy Italy
## 713 USA USA
## 714 USA USA
## 715 Canada Canada
## 716 USA USA
## 717 USA USA
## 718 Scotland Scotland
## 719 United Kingdom United Kingdom
## 720 Austria-Hungary Austria
## 721 United Kingdom United Kingdom
## 722 USA USA
## 723 Switzerland Switzerland
## 724 USA USA
## 725 United Kingdom United Kingdom
## 726 Germany Germany
## 727 Austrian Empire Austria
## 728 Guatemala Guatemala
## 729 Italy Italy
## 730 Poland Ukraine
## 731 USA USA
## 732 USA USA
## 733 USA USA
## 734 Austria Austria
## 735 USA USA
## 736 USA USA
## 737 United Kingdom United Kingdom
## 738 USA USA
## 739 USA USA
## 740 USA USA
## 741 USA USA
## 742 United Kingdom United Kingdom
## 743 USA USA
## 744 USA USA
## 745 Germany Germany
## 746 Germany Germany
## 747 USA USA
## 748 USA USA
## 749 Germany Germany
## 750 USA USA
## 751 Canada Canada
## 752 USA USA
## 753 USA USA
## 754 USA USA
## 755 USA USA
## 756 USA USA
## 757 USA USA
## 758 United Kingdom United Kingdom
## 759 USA USA
## 760 USA USA
## 761 France France
## 762 France France
## 763 USA USA
## 764 USA USA
## 765 Switzerland Switzerland
## 766 France France
## 767 United Kingdom United Kingdom
## 768 United Kingdom United Kingdom
## 769 India India
## 770 USA USA
## 771 USA USA
## 772 East Friesland Germany
## 773 Germany Germany
## 774 Canada Canada
## 775 British India India
## 776 USA USA
## 777 Japan Japan
## 778 Guadeloupe Island Guadeloupe Island
## 779 Italy Italy
## 780 Italy Italy
## 781 Ireland Ireland
## 782 USA USA
## 783 Spain Spain
## 784 Japan Japan
## 785 Canada Canada
## 786 USA USA
## 787 Northern Ireland Northern Ireland
## 788 France France
## 789 Sweden Sweden
## 790 Russian Empire Ukraine
## 791 Morocco Morocco
## 792 Spain Spain
## 793 USA USA
## 794 Poland Belarus
## 795 Japan Japan
## 796 Iran Iran
## 797 Austria-Hungary Ukraine
## 798 Japan Japan
## 799 Canada Canada
## 800 Denmark Denmark
## 801 Russian Empire Belarus
## 802 the Netherlands the Netherlands
## 803 Japan Japan
## 804 USA USA
## 805 Scotland Scotland
## 806 British West Indies Saint Lucia
## 807 United Kingdom United Kingdom
## 808 Germany Germany
## 809 India India
## 810 United Kingdom United Kingdom
## 811 United Kingdom United Kingdom
## 812 Australia Australia
## 813 United Kingdom United Kingdom
## 814 United Kingdom United Kingdom
## 815 United Kingdom United Kingdom
## 816 United Kingdom United Kingdom
## 817 Australia Australia
## 818 United Kingdom United Kingdom
## 819 Scotland Scotland
## 820 United Kingdom United Kingdom
## 821 Australia Australia
## 822 United Kingdom United Kingdom
## 823 United Kingdom United Kingdom
## 824 United Kingdom United Kingdom
## 825 United Kingdom United Kingdom
## 826 United Kingdom United Kingdom
## 827 United Kingdom United Kingdom
## 828 United Kingdom United Kingdom
## 829 Scotland Scotland
## 830 USA USA
## 831 USA USA
## 832 USA USA
## 833 Romania Romania
## 834 USA USA
## 835 USA USA
## 836 India Pakistan
## 837 France France
## 838 Sweden Sweden
## 839 Japan Japan
## 840 Sweden Sweden
## 841 Ukraine Ukraine
## 842 South Africa South Africa
## 843 USA USA
## 844 Poland Poland
## 845 Japan Japan
## 846 Japan Japan
## 847 Yemen Yemen
## 848 Tibet China
## 849 Sweden Sweden
## 850 Switzerland Switzerland
## 851 Schleswig Germany
## 852 Germany Germany
## 853 USA USA
## 854 USA USA
## 855 USA USA
## 856 USA USA
## 857 USA USA
## 858 Germany Germany
## 859 USA USA
## 860 USA USA
## 861 USA USA
## 862 Germany Germany
## 863 USA USA
## 864 United Kingdom United Kingdom
## 865 the Netherlands the Netherlands
## 866 the Netherlands the Netherlands
## 867 Sweden Sweden
## 868 Sweden Sweden
## 869 USA USA
## 870 Sweden Sweden
## 871 Japan Japan
## 872 Norway Norway
## 873 China China
## 874 China China
## 875 Sweden Sweden
## 876
## 877
## 878
## 879 Trinidad and Tobago Trinidad and Tobago
## 880 USA USA
## 881 India India
## 882 Sweden Sweden
## 883 USA USA
## 884 Spain Spain
## 885 Austria Austria
## 886 France France
## 887 USA USA
## 888 Russia Russia
## 889 Austria-Hungary Bosnia and Herzegovina
## 890 USA USA
## 891 China China
## 892 Switzerland Switzerland
## 893 Austria Austria
## 894 Germany Germany
## 895 Prussia Germany
## 896 Kenya Kenya
## 897 Russia Russia
## 898 USA USA
## 899 Switzerland Switzerland
## 900 Germany Germany
## 901 Germany Germany
## 902 Prussia Germany
## 903 Russian Empire Latvia
## 904 Prussia Russia
## 905 USA USA
## 906 Canada Canada
## 907 Java, Dutch East Indies Indonesia
## 908 USA USA
## 909 United Kingdom United Kingdom
## 910 United Kingdom United Kingdom
## 911 Ireland Ireland
## 912 Ireland Ireland
## 913 USA USA
## 914 USA USA
## 915 USA USA
## 916 Canada Canada
## 917 USA USA
## 918 USA USA
## 919 USA USA
## 920 United Kingdom United Kingdom
## 921 USA USA
## 922 USA USA
## 923 USA USA
## 924 USA USA
## 925 Canada Canada
## 926 USA USA
## 927 Germany Germany
## 928 United Kingdom United Kingdom
## 929 Poland Poland
## 930 Russian Empire Poland
## 931 Nigeria Nigeria
## 932 West Germany Germany
## 933 Germany Germany
## 934 Austria Austria
## 935 USA USA
## 936 Egypt Egypt
## 937 Japan Japan
## 938 British Mandate of Palestine Israel
## 939 Japan Japan
## 940 Japan Japan
## 941 Taiwan Taiwan
## 942 Belgium Belgium
## 943 USSR Belarus
## 944 United Kingdom United Kingdom
## 945
## 946 USA USA
## 947 USA USA
## 948 Russian Empire Poland
## 949
## 950
## birth_locationString death_date
## 1 Montclair, NJ, USA
## 2 Copenhagen, Denmark 2009-09-08
## 3 Haifa, British Protectorate of Palestine (now Israel)
## 4 Zelvas, Lithuania 2018-11-20
## 5 Jhang Maghiāna, India (now Pakistan) 1996-11-21
## 6 Mumbai, India
## 7 Beshasha, Ethiopia
## 8 Jerusalem, British Mandate of Palestine (now Israel)
## 9 Washington, DC, USA
## 10 Bremerhaven-Lehe, Germany 1995-01-18
## 11 Berlin, Prussia (now Germany) 1917-08-20
## 12 Berlin, Germany 1959-06-09
## 13 Buenos Aires, Argentina
## 14 Damanhur, Egypt 2016-08-02
## 15 Mukawa, Japan
## 16 Suita, Japan
## 17 Washington, DC, USA
## 18 Sioux City, IA, USA
## 19 Banbury, United Kingdom 1998-12-20
## 20 Masterton, New Zealand 2007-02-07
## 21 Strelno, Prussia (now Strzelno, Poland) 1931-05-09
## 22 Mondovi, French Algeria (now Algeria) 1960-01-04
## 23 Longlier, Belgium 1983-05-22
## 24 Ulm, Germany 1955-04-18
## 25 Carcassonne, France
## 26 Tramelan, Switzerland 1914-03-16
## 27 Bulawayo, Southern Rhodesia (now Zimbabwe) 1967-07-21
## 28 Kaysersberg, Germany (now France) 1965-09-04
## 29 Budapest, Austria-Hungary (now Hungary) 1986-10-22
## 30 Rostock, Mecklenburg (now Germany) 1927-07-05
## 31 Atherton, Australia 2002-01-08
## 32 Kislovodsk, Russia 2008-08-03
## 33 Moscow, USSR (now Russia) 2017-03-29
## 34 Sainte-Foy-lès-Lyon, France 1944-11-05
## 35 Zamora, Mexico 1991-09-02
## 36 Owosso, MI, USA 1997-05-22
## 37 Vienna, Austria 1921-05-05
## 38 New Haven, CT, USA 2015-12-23
## 39 Guebwiller, Germany (now France) 1984-01-07
## 40 Mulhouse, France 1919-11-15
## 41 Wingham, Canada
## 42 Johannesburg, South Africa 1998-05-07
## 43 Landskrona, Sweden 1930-07-28
## 44 Paris, France 1922-05-18
## 45 Uppsala, Sweden 1986-02-01
## 46 New York, NY, USA
## 47 Santiniketan, India
## 48
## 49
## 50 Paris, France 1924-10-12
## 51 Paris, France 1988-02-19
## 52 Sochi, Russia
## 53 Paris, France 1951-02-19
## 54 Ainay-le-Château, France 1994-09-30
## 55 Moscow, Russia 1989-12-14
## 56 Hampstead, United Kingdom 2012-05-30
## 57 Wilno, Poland (now Vilnius, Lithuania)
## 58 Stanford, CA, USA
## 59 Edinburgh, Scotland
## 60 London, United Kingdom
## 61 Fowey, United Kingdom
## 62 Mit Abu al-Kawm, Egypt 1981-10-06
## 63 London, United Kingdom 2002-07-28
## 64 Bristol, United Kingdom 1977-06-03
## 65 Kibbutz Sde-Nahum, British Mandate of Palestine (now Israel)
## 66 Nantes, France 1932-03-07
## 67 Stockholm, Sweden 1971-10-29
## 68 Munich, Germany
## 69 New York, NY, USA
## 70 Sydney, Canada
## 71 Wooster, OH, USA 1962-03-15
## 72 Manchester, United Kingdom 1940-06-17
## 73 Glasgow, Scotland 1935-10-20
## 74 Brooklyn, NY, USA 2007-10-26
## 75 Mount Verno, NY, USA 1999-04-28
## 76 Helsinki, Russian Empire (now Finland) 1973-11-11
## 77 Uppsala, Sweden 2018-06-29
## 78 Grenå, Denmark 1949-09-13
## 79 Ostend, Belgium 1912-10-06
## 80 Rangoon, Burma (now Yangon, Myanmar)
## 81 Karcag, Hungary
## 82 Savur, Turkey
## 83 Honolulu, HI, USA
## 84 Hartford, CT, USA 1992-09-02
## 85 Omaha, NE, USA
## 86 Kalgoorlie, Australia
## 87 Philadelphia, PA, USA
## 88 New York, NY, USA 2011-04-05
## 89 Caracas, Venezuela 2011-08-02
## 90 Chicago, IL, USA
## 91 Helsinki, Finland
## 92 Halmstad, Sweden
## 93 Barger-Compascuum, the Netherlands
## 94 Buenos Aires, Argentina 1971-09-21
## 95 Stuttgart, Germany
## 96 Prague, Austrian Empire (now Czech Republic) 1914-06-21
## 97 Klippan, Sweden 1979-08-03
## 98 Lethbridge, Alberta, Canada 2003-10-13
## 99 Trelleck, United Kingdom 1970-02-02
## 100 Belfast, Northern Ireland 2020-03-17
## 101 Kvikne, Norway 1910-04-26
## 102 Duluth, MN, USA
## 103 Moscow, Russia 1960-05-30
## 104 Cardiff, United Kingdom
## 105 Little Falls, MN, USA
## 106 Missoula, MT, USA
## 107 Chicago, IL, USA
## 108 Fort Worth, TX, USA 2006-05-14
## 109 Brooklyn, NY, USA 2018-07-18
## 110 Glencorse, Scotland 1959-11-15
## 111 Corteno, Italy 1926-01-21
## 112 Iria Flavia, Spain 2002-01-17
## 113 Cologne, Germany 1940-04-26
## 114 Prague, Austria-Hungary (now Czech Republic) 1984-10-20
## 115 New York, NY, USA 1991-01-11
## 116 Liestal, Switzerland 1924-12-29
## 117 Hamburg, Germany 1938-05-04
## 118 Corvallis, OR, USA
## 119 Gorizia, Italy
## 120 Wailacama, East Timor
## 121 Buenos Aires, Argentina 1959-05-05
## 122 San Diego, CA, USA
## 123 Tonbridge, United Kingdom 1969-08-09
## 124 Bahia Blanca, Argentina 2002-03-24
## 125 Halifax, Canada 1997-01-12
## 126 Fleurier, Switzerland 1938-06-13
## 127 Marietta, OH, USA 1951-04-23
## 128 Widnes, United Kingdom 1944-10-23
## 129 Greenville, SC, USA 2015-01-27
## 130 Pusan, Korea (now South Korea) 1989-10-26
## 131 Shanghai, China 2018-09-23
## 132 Rouen, France 1936-02-28
## 133 Paris, France 1935-12-04
## 134 Hofei, Anhwei, China
## 135 Nijkerk, the Netherlands 1930-11-05
## 136 Monessen, PA, USA 1995-05-14
## 137 Thames Ditton, United Kingdom 2013-05-04
## 138 Stavanger, Norway 1938-12-11
## 139 Magdeburg, Germany
## 140 Nicosia, Cyprus
## 141 Washington, DC, USA
## 142 Constantine, French Algeria (now Algeria)
## 143 Tananarive (now Antananarivo), Madagascar 2005-07-06
## 144 Pittsburgh, PA, USA 2001-03-31
## 145 Bloomington, IL, USA 1958-02-01
## 146 Swansea, United Kingdom 2009-05-27
## 147 Olympus, TN, USA 1955-07-23
## 148 Ghent, Belgium 1968-07-18
## 149 New Haven, CT, USA
## 150 Śeteniai, Russian Empire (now Lithuania) 2004-08-14
## 151 Yonkers, NY, USA 2008-12-12
## 152 Jönköping, Sweden 1961-09-18
## 153 Enterprise, OR, USA 2014-01-09
## 154 Tel Aviv, British Mandate of Palestine (now Israel)
## 155 Neuchâtel, Switzerland 1992-04-08
## 156 Henan, China
## 157 Tel Aviv, British Mandate of Palestine (now Israel)
## 158 Raleigh, NC, USA
## 159 Wilmington, DE, USA 1999-11-16
## 160 Leggiuno-Sangiano, Italy 2016-10-13
## 161 New York, NY, USA
## 162 Windsor, ON, Canada 2013-09-22
## 163 Washington, DC, USA
## 164 Bearsden, United Kingdom 2019-04-06
## 165 Milwaukee, WI, USA
## 166 Rye, NY, USA
## 167 Belfast, Northern Ireland
## 168 Bukavu, Belgian Congo (now Democratic Republic of the Congo)
## 169 Budapest, Hungary 1979-02-08
## 170 Gravesend, United Kingdom 1998-03-16
## 171 Castries, Saint Lucia 2017-03-17
## 172 Klerksdorp, South Africa
## 173 Orange, NJ, USA 1973-02-23
## 174 Geneva, Switzerland
## 175 Cleveland, OH, USA 2013-02-28
## 176 Chester, VT, USA 2001-06-17
## 177 Guelph, Canada
## 178 Kermanshah, Persia (now Iran) 2013-11-17
## 179 Cairo, Egypt 1994-07-29
## 180 Aberdeen, WA, USA
## 181 Cambridge, MA, USA 2015-11-23
## 182 San José, CA, USA
## 183 Mart, TX, USA 2012-10-20
## 184 Taylorville, IL, USA 1997-03-07
## 185 Burlingame, KS, USA 1974-03-09
## 186 London, United Kingdom 1977-08-08
## 187 Shanghai, China
## 188 Evanston, IL, USA
## 189 Munich, Bavaria (now Germany) 1917-08-13
## 190 Ålesund, Norway
## 191 Hume, IL, USA 1986-10-23
## 192 Wilkes-Barre, PA, USA 2004-07-21
## 193 South Norwalk, CT, USA 1972-05-04
## 194 Glens Falls, NY, USA
## 195 Boulder, CO, USA 1975-11-05
## 196 Bradford, United Kingdom 1965-04-21
## 197 Lansing, IA, USA 2009-12-21
## 198 Redondo Beach, CA, USA 1991-09-07
## 199 Avanca, Portugal 1955-12-13
## 200 Changchun, China
## 201 Tabuse, Japan 1975-06-03
## 202 Mürzzuschlag, Austria
## 203 Ruse, Bulgaria 1994-08-14
## 204 Methuen, MA, USA
## 205 Geneva, Switzerland 1906-12-07
## 206 Sighet, Romania 2016-07-02
## 207 Clinton, NY, USA 1937-02-07
## 208 Los Angeles, CA, USA 2012-06-12
## 209 Hobart, Tasmania, Australia
## 210 Monrovia, Liberia
## 211 Euskirchen, Prussia (now Germany) 1919-07-15
## 212 Hansdorf, Prussia (now Lawice, Poland) 1917-03-31
## 213 Tivoli, Italy 1989-04-22
## 214 Jamaica Plain, MA (now Boston, MA), USA 1961-01-09
## 215 Rome, Italy 1954-11-28
## 216 Ann Arbor, MI, USA
## 217 Palo Alto, CA, USA
## 218 South Bend, IN, USA
## 219 Vienna, Austria
## 220 New York, NY, USA
## 221 Karlbo, Sweden 1931-04-08
## 222 Oak Park, IL, USA 1961-07-02
## 223 Canton, SD, USA 1958-08-27
## 224 Nelson, New Zealand 1937-10-19
## 225 Dungarvan, Ireland 1995-06-25
## 226 Milan, Austrian Empire (now Italy) 1918-02-10
## 227 Berlin, Germany 1979-08-12
## 228 Munich, Germany 2007-07-23
## 229 Heidelberg, Germany 1988-05-27
## 230 Landsberg, Germany
## 231 Vienna, Austria 1961-01-04
## 232 Paris, France
## 233 Boston, MA, USA
## 234 New York, NY, USA 1953-11-27
## 235 Budapest, Austria-Hungary (now Hungary) 1995-01-01
## 236 Genoa, Italy 1981-09-12
## 237
## 238 Svartbjörnsbyn, Sweden 1976-08-25
## 239 London, United Kingdom
## 240 Delaware, OH, USA 2012-03-10
## 241 Johannesburg, South Africa
## 242 Zurich, Switzerland 1983-09-10
## 243 Munich, Germany 1979-08-06
## 244 Fulda, Hesse-Kassel (now Germany) 1918-04-20
## 245 Paris, France 1932-02-16
## 246 Whiting, IN, USA
## 247 Gjesdal, Norway
## 248 Pittsburgh, PA, USA
## 249 Northampton, United Kingdom 2004-07-28
## 250 Harborne, United Kingdom 1945-11-20
## 251 Rome, Italy 2003-09-25
## 252 Etterbeek, Belgium
## 253 Nancy, France 2013-04-19
## 254 Bordeaux, France 1970-09-01
## 255 Paris, France
## 256 Potsdam, NY, USA 1937-12-21
## 257 New York, NY, USA
## 258 Hämeenkyrö, Russian Empire (now Finland) 1964-06-03
## 259 Paris, France 1958-08-14
## 260 Maillane, France 1914-03-25
## 261 Paris, France 1912-06-12
## 262 Auburn, AL, USA 2003-08-04
## 263 Alliston, Canada 1941-02-21
## 264 Paterson, NJ, USA 1998-08-26
## 265 Rendcombe, United Kingdom 2013-11-19
## 266 Eastbourne, United Kingdom 1956-09-22
## 267 Næstved, Denmark 1922-01-22
## 268 Kristiania (now Oslo), Norway 1930-05-13
## 269 Goldschmieden, near Breslau, Germany (now Poland) 1949-03-30
## 270 Vienna, Austria 1992-03-23
## 271
## 272 Amsterdam, the Netherlands 1966-03-10
## 273 Breslau, Prussia (now Wroclaw, Poland) 1934-01-29
## 274 Koenigsberg, Germany (now Kaliningrad, Russia) 1986-07-24
## 275 Laibach, Austria-Hungary (now Ljubljana, Slovenia) 1930-12-13
## 276 Aracataca, Colombia 2014-04-17
## 277 Hollerich, Luxembourg 1921-07-13
## 278 Vicuña, Chile 1957-01-10
## 279 Ganzhou, China
## 280 Pottsville, PA, USA 2014-05-03
## 281 Todmorden, United Kingdom 1996-09-26
## 282 Budapest, Hungary 1972-06-13
## 283 Berlin, Germany 1987-08-26
## 284 New Haven, CT, USA
## 285 Budapest, Hungary 2017-03-08
## 286 Wahoo, NE, USA 1989-06-09
## 287 Dublin, Ireland 1950-11-02
## 288 Uniontown, PA, USA 1959-10-16
## 289 Bradford, MA, USA 1996-06-06
## 290 Budapest, Austria-Hungary (now Hungary) 1966-07-05
## 291 Lasi, Romania 2008-10-07
## 292 White Plains, NY, USA
## 293 Yukon, FL, USA
## 294 Hoquiam, WA, USA 1998-02-27
## 295 Ashland, NH, USA 1976-02-01
## 296 Renton, WA, USA 1991-12-01
## 297 Norwalk, CT, USA
## 298 Cambridge, United Kingdom 1975-09-10
## 299 Stainforth, United Kingdom 2002-08-31
## 300 Boston, MA, USA 1950-02-25
## 301 New York, NY, USA 1997-04-12
## 302 Dabrovica, Poland 2010-09-29
## 303 Munich, Germany 1995-03-01
## 304 Dinant, Belgium 1969-01-30
## 305 New York, NY, USA 2014-05-17
## 306 Calais, France 2004-12-31
## 307 Albertville, France
## 308 Den Helder, the Netherlands
## 309 Frankfurt-on-the-Main, West Germany (now Germany)
## 310 Lagow, Germany (now Poland) 1964-04-24
## 311 Bad Cannstatt, Germany
## 312 Hamburg, Germany 1999-03-03
## 313 Bad Salzbrunn, Prussia (now Poland) 1946-06-06
## 314 New York, NY, USA 1999-02-21
## 315 Prague, Austria-Hungary (now Czech Republic) 1957-10-26
## 316 Smyrna, Ottoman Empire (now Izmir, Turkey) 1971-09-20
## 317 Val di Castello, Tuscany (now Italy) 1907-02-16
## 318 Imperia, Italy 1979-05-02
## 319 Ishpeming, MI, USA 1999-02-25
## 320 Newark, United Kingdom 2004-08-12
## 321
## 322 Nuoro, Sardinia, Italy 1936-08-15
## 323 New York, NY, USA
## 324 Bologna, Italy 1937-07-20
## 325 Skattungbyn, Sweden 1987-05-17
## 326 Waltersdorf, Germany (now Niegoslawice, Poland) 2018-02-18
## 327 Danzig, Free City of Danzig (now Gdansk, Poland) 2015-04-13
## 328 Stenstorp, Sweden 1937-12-09
## 329 Hamburg, Germany 1975-10-30
## 330 Berlin, Germany 1929-10-03
## 331 New York, NY, USA
## 332 Raipur, India 2011-11-09
## 333 Chicago, IL, USA
## 334 Reykjavik, Iceland 1998-02-08
## 335 New York, NY, USA
## 336 Norrköping, Sweden 1995-04-02
## 337 Strasbourg, Germany (now France) 2005-03-06
## 338 Hoechst, Germany 1945-03-31
## 339 Görlitz, Prussia (now Germany) 2017-03-07
## 340 Hildesheim, Germany 1981-11-22
## 341 Stuttgart, Württemberg (now Germany) 1941-09-12
## 342 Augsburg, Germany 1964-11-06
## 343 Gelsenkirchen, Germany
## 344 Walkerton, IN, USA 1981-01-05
## 345 Oceanside, NY, USA
## 346 London, United Kingdom 2008-12-24
## 347 Chicago, IL, USA
## 348 Jämshög, Sweden 1978-02-11
## 349 Ludwigsburg, West Germany (now Germany)
## 350 Groningen, the Netherlands 1926-02-21
## 351 Cologne, Germany 1985-07-16
## 352 Buchs, Switzerland 2013-05-16
## 353 Pforzheim, Germany 1957-08-05
## 354 Arnhem, the Netherlands 1928-02-04
## 355 Paris, France 1908-08-25
## 356 Paris, France 1941-01-04
## 357 Brussels, Belgium 1943-05-14
## 358 Paris, France 1907-02-20
## 359 Copenhagen, Denmark 1976-04-17
## 360 Fredericia, Denmark 1943-08-21
## 361 Geneva, Switzerland 1910-10-30
## 362 Fürth, Germany
## 363 Neudorf, Canada 2005-11-16
## 364 Boston, MA, USA 1999-02-15
## 365 Wola Okrzejska, Poland 1916-11-15
## 366 New York, NY, USA 2011-10-23
## 367 London, United Kingdom 2004-12-19
## 368 Weimar, Germany
## 369 Platteville, WI, USA 1963-05-11
## 370 Milwaukee, WI, USA 2001-02-09
## 371 Calw, Germany 1962-08-09
## 372 New York, NY, USA 1967-04-05
## 373 Worms, Germany 1965-09-08
## 374 Nitzkydorf, Banat, Romania
## 375 Tokyo, Japan
## 376 Tokyo, Japan 1981-09-08
## 377 Hamamatsu, Japan
## 378 Stockholm, Sweden 1925-02-24
## 379 Frankfurt-on-the-Main, West Germany (now Germany)
## 380 Philadelphia, PA, USA 1994-02-09
## 381 Linköping, Sweden 1982-08-15
## 382 Vladivostok, Russia 1971-04-12
## 383 Leningrad (now St. Petersburg), Russia 1990-06-22
## 384 Kharkov, Russian Empire (now Kharkiv, Ukraine) 1916-07-15
## 385 Moscow, Russia 2003-05-28
## 386 Budapest, Hungary 2016-03-31
## 387
## 388
## 389
## 390
## 391
## 392
## 393
## 394
## 395 Paris, France 1956-03-17
## 396 Brooklyn, NY, USA 1957-08-16
## 397 Brooklyn, NY, USA 2015-06-03
## 398 Leoncin, Russian Empire (now Poland) 1991-07-24
## 399 Chiran, Japan
## 400 Rymanow, Austria-Hungary (now Poland) 1988-01-11
## 401 Voronezh, Russia 1953-11-08
## 402 Ryazan, Russia 1936-02-27
## 403 Bergen, Norway
## 404 Dolac, Bosnia (now Bosnia and Herzegovina) 1975-03-13
## 405 Neuenkirchen, West Germany (now Germany)
## 406 Hamburg, Germany 1973-02-11
## 407 Cape Town, South Africa
## 408 York, PA, USA
## 409 Aberdeen, United Kingdom
## 410 Adelaide, Australia
## 411 Cheetham Hill, United Kingdom 1940-08-30
## 412 Madrid, Spain 1954-07-14
## 413 Jefferson City, MO, USA 2005-06-20
## 414 Bad Kissingen, Germany
## 415 London, United Kingdom
## 416 Rotterdam, the Netherlands 1911-03-01
## 417 Aigle, Switzerland
## 418 Paris, France 1976-05-31
## 419 Minnigaff, Scotland 2018-08-29
## 420 Canton, MA, USA 1955-08-12
## 421 Manchester, United Kingdom 1974-07-24
## 422 Chicago, IL, USA 2016-08-25
## 423 Swanage, United Kingdom 1995-12-22
## 424 Haverhill, MA, USA
## 425 Hamburg, Germany 1964-05-21
## 426 Chicago, IL, USA
## 427 Murfreesboro, TN, USA 2013-01-09
## 428 Alice, TX, USA
## 429 Winnipeg, Canada
## 430 Council, ID, USA 1986-03-31
## 431 Champaign, IL, USA 2002-03-11
## 432 Chicago, IL, USA
## 433 the Hague, the Netherlands 1994-06-09
## 434 Cedarville, IL, USA 1935-05-21
## 435 Prague, Austria-Hungary (now Czech Republic) 1967-03-27
## 436 Prague, Austria-Hungary (now Czech Republic) 1986-01-10
## 437 Lille, France 1942-04-17
## 438 Toulouse, France 2009-06-06
## 439 Troyes, France
## 440 Nice, France
## 441 Rosheim, France
## 442 Paris, France 1980-04-15
## 443 Paris, France
## 444 New York, NY, USA
## 445 Lemvig, Denmark 2018-05-28
## 446 Chicago, IL, USA
## 447 New York, NY, USA 2013-06-06
## 448 Plains, GA, USA
## 449 Siegen, Germany
## 450 Putney, VT, USA
## 451 Zusamaltheim, Germany
## 452 Leiden, the Netherlands 1923-03-08
## 453 Silkeborg, Denmark 1928-01-30
## 454 Schickenhof, Germany 1957-06-21
## 455 Farsø, Denmark 1950-11-25
## 456 New York, NY, USA 2010-12-10
## 457 Jena, Germany
## 458 Madison, WI, USA 1991-01-30
## 459 Budapest, Hungary 2000-08-09
## 460 Oxford, United Kingdom 1997-08-23
## 461 Roanoke, VA, USA
## 462 Berlin, Germany
## 463 Todmorden, United Kingdom 1967-09-18
## 464 Sydney, Australia 2013-12-08
## 465 Cambridge, United Kingdom 2018-03-06
## 466 Halifax, United Kingdom
## 467 West Hartford, CT, USA 1985-09-08
## 468 Bluefield, WV, USA 2015-05-23
## 469 Kingston Hill, United Kingdom 1933-01-31
## 470 Yonkers, NY, USA 1987-05-27
## 471 Middletown, CT, USA 1980-10-27
## 472 Londonderry, Northern Ireland
## 473 Denver, CO, USA
## 474 Cluny, Scotland 1935-03-16
## 475 New York, NY, USA
## 476 Burnham-on-Sea, United Kingdom 2004-03-15
## 477 Warwick, United Kingdom 1989-05-20
## 478 Livingston Manor, NY, USA 1955-01-31
## 479 Tardebigg, United Kingdom 2004-11-19
## 480 Salinas, CA, USA 1968-12-20
## 481 Madrid, Spain 1916-09-04
## 482 Dili, East Timor
## 483 Azinhaga, Portugal 2010-06-18
## 484 Leningrad, USSR (now St. Petersburg, Russia) 1996-01-28
## 485 Milford, MA, USA 2012-11-26
## 486 Gary, IN, USA
## 487 San Francisco, CA, USA 1965-12-05
## 488 Philadelphia, PA, USA
## 489 Sumter, SC, USA
## 490 Warsaw, Russian Empire (now Poland) 2005-08-31
## 491 Montclair, NJ, USA 2008-02-02
## 492 Bogotá, Colombia
## 493 Moguer, Spain 1958-05-29
## 494 Echternach, Luxembourg
## 495 Soignies, Belgium 1961-04-06
## 496 New York, NY, USA 1994-07-16
## 497 New York, NY, USA 2004-12-29
## 498 Wels, Austria 1940-09-27
## 499 Basel, Switzerland
## 500 Lund, Sweden 2007-07-20
## 501 Vidisha, India
## 502 Roholte, Denmark 1919-10-11
## 503 Vienna, Austrian Empire (now Austria) 1943-06-26
## 504 Vienna, Austria 1982-06-12
## 505 Helsa, Germany 1973-08-12
## 506 Lenoir, NC, USA 2019-08-07
## 507 Nagasaki, Japan
## 508 Bloomsburg, PA, USA 1983-03-17
## 509 Nara, Japan 1998-01-09
## 510 Waltham, MA, USA 2013-06-15
## 511 New York, NY, USA 2017-02-21
## 512 Uchiko, Japan
## 513 Mokpo, Korea (now South Korea) 2009-08-18
## 514 Logan, UT, USA
## 515 Gothenburg, Sweden 1916-02-20
## 516 Schroda, German-occupied Poland (now Poland)
## 517 Lom, Norway 1952-02-19
## 518 Kumasi, Gold Coast (now Ghana) 2018-08-18
## 519 Toyama City, Japan
## 520 Neisse, Germany (now Nysa, Poland) 2000-10-15
## 521 Vienna, Austria 1989-02-27
## 522 Nizhny Tagil, Russia
## 523 Königshütte, Prussia (now Chorzów, Poland) 1958-06-20
## 524 Aarberg, Switzerland
## 525 Kristiania (now Oslo), Norway 1976-10-05
## 526 Urbana, IL, USA
## 527 Adelaide, Australia 1971-07-01
## 528 Omaha, NE, USA 2013-10-20
## 529 Nam Ha province, Vietnam 1990-10-13
## 530
## 531 Popowo, Poland
## 532 Los Angeles, CA, USA
## 533 Osaka, Japan
## 534 Paris, France 1925-09-29
## 535 Paris, France 1954-04-28
## 536 New York, NY, USA 2018-10-03
## 537 New York, NY, USA
## 538 Moscow, Russia 2008-06-24
## 539 St. Petersburg, Russian Empire (now Russia) 1986-04-07
## 540 Vukovar, Austria-Hungary (now Croatia) 1976-09-26
## 541 Toronto, Canada 1972-12-27
## 542 Baku, Russian Empire (now Azerbaijan) 1968-04-01
## 543 Monrovia, Liberia
## 544 Seattle, WA, USA
## 545 Portland, OR, USA 1994-08-19
## 546 Changchun, China 2017-07-13
## 547 Cambridge, MA, USA 2016-03-12
## 548 Kilmaurs, Scotland 1971-06-25
## 549 Langford Grove, Maldon, Essex, United Kingdom 1919-06-30
## 550 Glasgow, Scotland 1997-01-10
## 551 Dieppe, France 1987-03-19
## 552 Brooklyn, NY, USA
## 553 Lyon, France 2000-11-17
## 554 Autun, France 1918-02-08
## 555 Chabris, France
## 556 Bremen, Germany 1941-03-04
## 557 Agrigento, Sicily, Italy 1936-12-10
## 558 San Francisco, CA, USA 1988-09-01
## 559 Paris, France 1987-12-02
## 560 United Kingdom
## 561 Belfast, Northern Ireland
## 562 Nagoya, Japan
## 563 Mingora, Pakistan
## 564 Bochum, Germany 2019-02-06
## 565 Örebro, Sweden 1978-09-26
## 566 Kattowitz, Germany (now Katowice, Poland) 1972-02-20
## 567 Warsaw, Russian Empire (now Poland) 1934-07-04
## 568 Mexico City, Mexico
## 569 Verona, Italy
## 570 Arequipa, Peru
## 571 New York, NY, USA 2010-01-15
## 572 Chicago, IL, USA
## 573 Vienna, Austria
## 574 New York, NY, USA 2014-09-30
## 575 Atlanta, GA, USA 1968-04-04
## 576 Baltimore, MD, USA 1998-12-07
## 577 Brighton, United Kingdom 1984-10-14
## 578 Waalwijk, the Netherlands
## 579 Viipuri (now Vyborg), Finland
## 580 Toyohashi, Japan
## 581 Paris, France 2010-10-09
## 582 Ghent, Belgium 1949-05-06
## 583 Pongaroa, New Zealand 2004-10-05
## 584 Breslau, Germany (now Wroclaw, Poland) 1970-01-05
## 585 Berlin, Germany 1981-03-09
## 586 Vienna, Austria 2002-02-06
## 587 Kiel, Schleswig (now Germany) 1947-10-04
## 588 Pretoria, South Africa 1972-08-11
## 589 Pfaffendorf, Germany 1960-04-23
## 590 Fosnavåg, Norway
## 591
## 592 St. Paul, MN, USA 1997-01-08
## 593 New York, NY, USA 2006-08-28
## 594 Brest Litovsk, Russian Empire (now Belarus) 1992-03-09
## 595 Boston, MA, USA 2000-06-03
## 596 New York, NY, USA
## 597 Pretoria, South Africa
## 598 Kansas City, MO, USA
## 599 New York, NY, USA
## 600 Blackpool, United Kingdom 2000-10-04
## 601 Miami, FL, USA
## 602 Lausanne, Switzerland
## 603 Guatemala City, Guatemala 1974-06-09
## 604 Privolnoye, USSR (now Russia)
## 605 Veshenskaya, Russia 1984-02-21
## 606 Brooklyn, NY, USA 2006-11-16
## 607 Gaomi, China
## 608 Cairo, Egypt
## 609 Uskup, Ottoman Empire (now Skopje, North Macedonia) 1997-09-05
## 610 Chittagong, British India (now Bangladesh)
## 611 New York, NY, USA 2019-05-24
## 612 Timmins, ON, Canada
## 613 Kojo, Iraq
## 614 Springs, South Africa 2014-07-13
## 615 Cairo, Egypt 2006-08-30
## 616
## 617 Trönö, Sweden 1931-07-12
## 618
## 619 Berlin, Germany 1970-05-12
## 620 Qunu, South Africa 2013-12-05
## 621 Elizabeth, NJ, USA 1947-12-07
## 622 Dordrecht, the Netherlands 2017-09-05
## 623 Usman, USSR (now Russia) 2001-07-01
## 624 Copenhagen, Denmark 1962-11-18
## 625 London, United Kingdom 1994-10-07
## 626 Thorshavn, Faroe Islands (Denmark) 1904-09-24
## 627 the Hague, the Netherlands 1988-12-21
## 628 Saratov, Russia 1986-09-25
## 629 Cresco, IA, USA 2009-09-12
## 630 Washington, DC, USA 2011-11-04
## 631 Chorley, United Kingdom 1950-03-19
## 632 Mexico City, Mexico 1998-04-19
## 633 Kristiania (now Oslo), Norway 1981-05-11
## 634 Iráklion, Crete (now Greece) 1996-03-18
## 635
## 636 Sulechów, Poland
## 637 Superior, WI, USA
## 638 London, United Kingdom
## 639 Halifax, United Kingdom 2017-01-10
## 640
## 641 Istanbul, Turkey
## 642 Kyoto, Japan 2018-10-19
## 643 Heredia, Costa Rica
## 644 Hamburg, Germany 1954-03-07
## 645 Frankfurt-on-the-Main, Germany 1968-07-28
## 646 Frankfurt-on-the-Main, Germany 1961-12-25
## 647 Hanover, Germany 1951-10-06
## 648 Sorau, Germany (now Zory, Poland) 1969-08-17
## 649 Koenigsberg, Germany (now Kaliningrad, Russia) 1931-02-26
## 650 Freiburg im Breisgau, Germany 1970-08-01
## 651 San Francisco, CA, USA 2006-02-28
## 652 Dewsbury, United Kingdom 1959-02-15
## 653 Parral, Chile 1973-09-23
## 654 Växjö, Sweden 1974-07-11
## 655 London, United Kingdom 1974-07-13
## 656 Paris, France
## 657 London, United Kingdom 1990-09-30
## 658 Gary, IN, USA 2009-12-13
## 659 Bristol, United Kingdom 1984-10-20
## 660 New York, NY, USA
## 661 Sidney, OH, USA 2007-03-27
## 662 Provo, UT, USA 2018-06-02
## 663 Strehlen, Prussia (now Strzelin, Poland) 1915-08-20
## 664 New York, NY, USA 2019-04-13
## 665 La Flèche, France 1924-05-15
## 666 Berlin, Prussia (now Germany) 1914-04-02
## 667 Amsterdam, the Netherlands
## 668 Sterling, IL, USA 1985-09-08
## 669 Moscow, Russia 1971-06-18
## 670 New York, NY, USA
## 671 Denver, CO, USA
## 672 Raton, NM, USA
## 673 Olten, Switzerland 1965-10-12
## 674 Carcassonne, France 1941-08-14
## 675 Novaya Chigla, Russia 1990-01-06
## 676 Hillsboro, WV, USA 1973-03-06
## 677 Cambridge, MA, USA 1961-08-20
## 678
## 679 New York, NY, USA
## 680 Northfield, MN, USA
## 681 Brisbane, Australia
## 682 Maastricht, the Netherlands 1966-11-02
## 683 Plzen, Czechoslovakia (now Czech Republic) 2018-04-09
## 684 Griffen, Austria
## 685 Newcastle upon Tyne, United Kingdom
## 686 Rio de Janeiro, Brazil 1987-10-02
## 687 Mitcham, United Kingdom 1992-04-10
## 688 Baltimore, MD, USA 1970-02-16
## 689 London, United Kingdom 1982-10-08
## 690 Pittsburgh, PA, USA 1965-03-30
## 691 Indianapolis, IN, USA 2020-03-29
## 692 Pressburg, Hungary (now Bratislava, Slovakia) 1947-05-20
## 693 Falmouth, KY, USA
## 694 Paris, France 1906-04-19
## 695 Paris, France 2007-05-18
## 696 Zonnemaire, the Netherlands 1943-10-09
## 697 Blankenburg, Germany 1993-03-20
## 698
## 699 Kronshtadt, Russian Empire (now Russia) 1984-04-08
## 700 Calcutta, India 1941-08-07
## 701 Oslo, Norway 1973-01-31
## 702 Helsinki, Russian Empire (now Finland) 1991-03-12
## 703 Berlin, Germany
## 704 Detroit, MI, USA 1971-12-09
## 705 Montreal, Canada 2011-09-30
## 706 Fareham, United Kingdom 1908-07-22
## 707 St. Paul, MN, USA
## 708 Washington, DC, USA 2006-05-31
## 709 Breslau, Germany (now Wroclaw, Poland) 2016-08-23
## 710 Catanzaro, Italy 2012-02-19
## 711 Bayonne, France 1976-02-20
## 712 Genoa, Italy 2018-12-16
## 713 New York, NY, USA
## 714 Akron, OH, USA 2005-10-28
## 715 Medicine Hat, Alberta, Canada 2018-02-22
## 716 Springfield, MA, USA 2015-10-09
## 717 East Orange, NJ, USA
## 718 Edinburgh, Scotland
## 719 Derby, United Kingdom
## 720 Vienna, Austria-Hungary (now Austria) 1967-07-31
## 721 Liverpool, United Kingdom 1994-08-18
## 722 New York, NY, USA 1988-02-15
## 723 Winterthur, Switzerland
## 724 Berne, IN, USA
## 725 London, United Kingdom 1991-12-06
## 726 Karlsruhe, Germany 1942-08-03
## 727 Vienna, Austrian Empire (now Austria) 1929-09-24
## 728 Aldea Chimel, Guatemala
## 729 Turin, Italy 2012-12-30
## 730 Zloczov, Poland (now Ukraine)
## 731 Morrison, IL, USA 1953-12-19
## 732 Visalia, CA, USA
## 733 Boston, MA, USA 1979-07-08
## 734 Vienna, Austria 1936-04-08
## 735 New York, NY, USA
## 736 Washington, DC, USA 2013-02-19
## 737 London, United Kingdom 1958-11-24
## 738 Yakima, WA, USA
## 739 Alice, TX, USA
## 740 Syracuse, NY, USA
## 741 Charleston, SC, USA 2009-05-19
## 742 Batley, United Kingdom 2013-04-10
## 743 Possum Trot, KY, USA
## 744 New York, NY, USA 1990-11-17
## 745 Munich, Germany
## 746 Frankfurt-on-the-Main, Germany
## 747 New York, NY, USA
## 748 Detroit, MI, USA
## 749 Clausthal (now Clausthal-Zellerfeld), Germany 1910-05-27
## 750 Brooklyn, NY, USA
## 751 Kingston, ON, Canada
## 752 Newburyport, MA, USA 1986-10-31
## 753 Oak Park, IL, USA 2019-07-27
## 754 New York, NY, USA 2013-06-11
## 755 Urbana, IL, USA 1993-02-11
## 756 Houston, TX, USA
## 757 Burlington, MA, USA
## 758 Newton-le-Willows, United Kingdom 1985-09-06
## 759 Boston, MA, USA
## 760 St. Louis, MO, USA
## 761 Dijon, France
## 762 Neuilly-sur-Seine, France 1958-08-22
## 763 Hartford, CT, USA 1994-04-17
## 764 New York, NY, USA 2016-08-24
## 765 Basel, Switzerland
## 766 Clamecy, France 1944-12-30
## 767 Cambridge, United Kingdom 1978-06-07
## 768 Willesden, United Kingdom 2013-09-02
## 769 Almora, India 1932-09-16
## 770 New York, NY, USA 2011-05-30
## 771 New York, NY, USA 2018-12-26
## 772 Aurich, East Friesland (now Germany) 1926-09-14
## 773 Munich, Germany 2011-09-14
## 774 Montreal, Canada
## 775 Bombay, British India (now India) 1936-01-18
## 776 New York, NY, USA
## 777 Kobe, Japan
## 778 Pointe-à-Pitre, Guadeloupe Island 1975-09-20
## 779 Torino, Italy 1991-02-06
## 780 Modica, Italy 1968-06-14
## 781 Dublin, Ireland 1989-12-22
## 782 Ann Arbor, MI, USA
## 783 Petilla de Aragón, Spain 1934-10-17
## 784 Yamanashi Prefecture, Japan
## 785 Montreal, Canada 2005-04-05
## 786 Champaign-Urbana, IL, USA
## 787 Casteldàwson, Northern Ireland 2013-08-30
## 788 Paris, France 1988-01-15
## 789 Mårbacka, Sweden 1940-03-16
## 790 Priluka, Russian Empire (now Nova Pryluka, Ukraine) 1973-08-16
## 791 Casablanca, Morocco
## 792 Luarca, Spain 1993-11-01
## 793 New York, NY, USA
## 794 Vishneva, Poland (now Belarus) 2016-09-28
## 795 Osaka, Japan
## 796 Hamadan, Iran
## 797 Buczacz, Austria-Hungary (now Buchach, Ukraine) 1970-02-17
## 798 Ikata, Japan
## 799 Montreal, Canada
## 800 Kalundborg, Denmark 1949-06-10
## 801 Pinsk, Russian Empire (now Belarus) 1985-07-08
## 802 the Hague, the Netherlands 2011-03-04
## 803 Kyoto, Japan 1979-07-08
## 804 Sauk Centre, MN, USA 1951-01-10
## 805 Lochfield, Scotland 1955-03-11
## 806 Castries, British West Indies (now Saint Lucia) 1991-06-15
## 807 Birmingham, United Kingdom 1937-03-16
## 808 Leipzig, Germany 2003-04-20
## 809 Tiruchirappalli, India 1970-11-21
## 810 London, United Kingdom 1952-03-04
## 811 London, United Kingdom 1967-10-09
## 812 Traralgon, Australia 1985-08-31
## 813 Eastbourne, United Kingdom 1947-05-16
## 814 Leicester, United Kingdom
## 815 Wisbech, United Kingdom 2016-04-30
## 816 London, United Kingdom 1968-07-23
## 817 Adelaide, Australia 1968-02-21
## 818 Edinburgh, United Kingdom
## 819 Uddingston, Scotland 2010-03-21
## 820 Dippenhall, United Kingdom
## 821 Melbourne, Australia 1997-05-02
## 822 Stroud, United Kingdom
## 823 Leeds, United Kingdom 1996-08-08
## 824 Holbeach, United Kingdom 1967-10-07
## 825 Norwich, United Kingdom
## 826 Lancashire, United Kingdom
## 827 London, United Kingdom 2017-02-08
## 828 Rufford, near Chesterfield, United Kingdom 1975-02-08
## 829 Glasgow, Scotland 1916-07-23
## 830 Chicago, IL, USA 1982-08-23
## 831 Des Moines, IA, USA
## 832 Brooklyn, NY, USA 2020-02-05
## 833 Arad, Romania
## 834 St. Louis, MO, USA
## 835 New York, NY, USA
## 836 Lahore, India (now Pakistan) 1995-08-21
## 837 Paris, France 1907-09-07
## 838 Stockholm, Sweden 2004-08-15
## 839 Nagoya, Japan
## 840 Vik, Sweden 1927-10-02
## 841 Ivano-Frankivsk, Ukraine
## 842 Germiston, South Africa 2019-04-05
## 843 St. Louis, MO, USA 1965-01-04
## 844 Wloclawek, Poland 1996-08-01
## 845 Higashimatsuyama, Japan
## 846 Kyoto, Japan
## 847 Ta'izz, Yemen
## 848 Taktser, Tibet (now China)
## 849 Fleräng, Sweden 1971-02-25
## 850 Bern, Switzerland 1917-07-27
## 851 Garding, Schleswig (now Germany) 1903-11-01
## 852 Heidelberg, Germany
## 853 New York, NY, USA 1919-01-06
## 854 Germantown, PA, USA 1928-04-02
## 855 Arlington, SD, USA 1998-02-26
## 856 Milwaukee, WI, USA 2018-08-23
## 857 Oakland, CA, USA 2016-12-13
## 858 Göttingen, Germany
## 859 Lexington, KY, USA 1945-12-04
## 860 Ann Arbor, MI, USA 2008-08-23
## 861 Pasadena, CA, USA
## 862 Lübeck, Germany 1955-08-12
## 863 Chicago, IL, USA
## 864 Neston, United Kingdom
## 865 's Graveland, the Netherlands 1985-02-26
## 866 Amsterdam, the Netherlands 1913-07-29
## 867 Stockholm, Sweden
## 868 Stockholm, Sweden 2015-03-26
## 869 Lorain, OH, USA 2019-08-05
## 870 Uppsala, Sweden
## 871 Nagoya, Japan
## 872 Skedsmo, Norway 1999-07-26
## 873 Shanghai, China
## 874 Zhejiang Ningbo, China
## 875 Stockholm, Sweden 1983-03-09
## 876
## 877
## 878
## 879 Chaguanas, Trinidad and Tobago 2018-08-11
## 880 Merriman, NE, USA 2015-02-05
## 881 Chidambaram, Tamil Nadu, India
## 882 Olshammar, Sweden 1940-05-20
## 883 Wichita, KS, USA
## 884 Sevilla, Spain 1984-12-14
## 885 Peggau, Austria 1964-12-17
## 886 Cherbourg, France 1935-12-13
## 887 Chicago, IL, USA 1978-12-11
## 888 Moscow, Russia 2009-11-08
## 889 Sarajevo, Austria-Hungary (now Bosnia and Herzegovina) 1998-01-07
## 890 Boston, MA, USA
## 891 Amoy, China 1987-10-13
## 892 Frauenfeld, Switzerland 1973-08-12
## 893 Vienna, Austria 2016-04-19
## 894 Oranienburg, Germany 1957-02-08
## 895 Briesen, Prussia (now Germany) 1941-11-18
## 896 Nyeri, Kenya 2011-09-25
## 897 St. Petersburg, Russia 1999-02-05
## 898 Ridgeville, IN, USA 1971-06-15
## 899 Gränichen, Switzerland
## 900 Berlin, Germany 1979-06-01
## 901 Würzburg, Germany 1976-02-01
## 902 Lennep, Prussia (now Remscheid, Germany) 1923-02-10
## 903 Riga, Russian Empire (now Latvia) 1932-04-04
## 904 Gaffken, Prussia (now Parusnoye, Russia) 1928-08-30
## 905 Grand Valley, CO, USA 1980-09-08
## 906 Amherst, NS, Canada 2011-05-07
## 907 Semarang, Java, Dutch East Indies (now Indonesia) 1927-09-29
## 908 Pittsburgh, PA, USA 1995-03-14
## 909 London, United Kingdom 1989-08-12
## 910 Wigton, United Kingdom 1942-03-12
## 911 Dublin, Ireland 1939-01-28
## 912 Ramelton, Ireland
## 913 Albuquerque, NM, USA
## 914 Wilkes-Barre, PA, USA
## 915 Pleasanton, CA, USA
## 916 Niagara Falls, Canada 1982-03-28
## 917 Boston, MA, USA
## 918 New Albany, MS, USA 1962-07-06
## 919 New York, NY, USA
## 920 St. Columb Minor, United Kingdom 1993-06-19
## 921 New York, NY, USA 1980-02-02
## 922 Taunton, MA, USA 2012-06-13
## 923 Cleveland, OH, USA 2011-04-14
## 924 Stoughton, WI, USA 1987-10-09
## 925 Victoria, BC, Canada 1996-10-11
## 926 Los Angeles, CA, USA 2008-05-15
## 927 Lübeck, Germany 1992-10-08
## 928 Woodstock, United Kingdom 1965-01-24
## 929 Bnin (now Kórnik), Poland 2012-02-01
## 930 Kobiele Wielkie, Russian Empire (now Poland) 1925-12-05
## 931 Abeokuta, Nigeria
## 932 Heidelberg, West Germany (now Germany)
## 933 Lorenzkirch, Germany 1993-12-07
## 934 Vienna, Austria 1958-12-15
## 935 Staunton, VA, USA 1924-02-03
## 936 Cairo, Egypt 2004-11-11
## 937 Osaka, Japan 1972-04-16
## 938 Jerusalem, British Mandate of Palestine (now Israel) 1995-11-04
## 939 Tokyo, Japan 2015-07-05
## 940 Fukuoka, Japan
## 941 Hsinchu, Taiwan
## 942 Menin, Belgium 2015-01-27
## 943 Vitebsk, Belorussia, USSR (now Belarus) 2019-03-01
## 944 Rendcombe, United Kingdom 2013-11-19
## 945
## 946 Madison, WI, USA 1991-01-30
## 947 Portland, OR, USA 1994-08-19
## 948 Warsaw, Russian Empire (now Poland) 1934-07-04
## 949
## 950
## death_city death_cityNow
## 1
## 2 Copenhagen Copenhagen
## 3
## 4
## 5 Oxford Oxford
## 6
## 7
## 8
## 9
## 10 Munich Munich
## 11 Starnberg Starnberg
## 12 Göttingen Göttingen
## 13
## 14 Pasadena, CA Pasadena, CA
## 15
## 16
## 17
## 18
## 19 Cambridge Cambridge
## 20 Drexel Hill, PA Drexel Hill, PA
## 21 Pasadena, CA Pasadena, CA
## 22 Sens Sens
## 23 Brussels Brussels
## 24 Princeton, NJ Princeton, NJ
## 25
## 26 Bern Bern
## 27 Stanger Stanger
## 28 Lambaréné Lambaréné
## 29 Woods Hole, MA Woods Hole, MA
## 30 Heidelberg Heidelberg
## 31 Moscow Moscow
## 32 Troitse-Lykovo Troitse-Lykovo
## 33
## 34 Paris Paris
## 35 Mexico City Mexico City
## 36 Syosset, NY Syosset, NY
## 37 Vienna Vienna
## 38 Dallas, TX Dallas, TX
## 39 Bandol Bandol
## 40 Zurich Zurich
## 41
## 42 Winchester, MA Winchester, MA
## 43 Stockholm Stockholm
## 44 Paris Paris
## 45 Stockholm Stockholm
## 46
## 47
## 48
## 49
## 50 Saint-Cyr-sur-Loire Saint-Cyr-sur-Loire
## 51 Great Barrington, MA Great Barrington, MA
## 52
## 53 Paris Paris
## 54 Paris Paris
## 55 Moscow Moscow
## 56 Grantchester Grantchester
## 57
## 58
## 59
## 60
## 61
## 62 Cairo Cairo
## 63 Llangarron Llangarron
## 64 Cambridge Cambridge
## 65
## 66 Paris Paris
## 67 Uppsala Uppsala
## 68
## 69
## 70
## 71 Berkeley, CA Berkeley, CA
## 72 Bourne Bourne
## 73 London London
## 74 Stanford, CA Stanford, CA
## 75 Palo Alto, CA Palo Alto, CA
## 76 Helsinki Helsinki
## 77 Gothenburg Gothenburg
## 78 Copenhagen Copenhagen
## 79 Lucerne Lucerne
## 80
## 81
## 82
## 83
## 84 Huntington, NY Huntington, NY
## 85
## 86
## 87
## 88 Moffett Field, CA Moffett Field, CA
## 89 Boston, MA Boston, MA
## 90
## 91
## 92
## 93
## 94 Buenos Aires Buenos Aires
## 95
## 96 Vienna Vienna
## 97 Vålådalen Vålådalen
## 98 Hamilton, Ontario Hamilton, Ontario
## 99 Penrhyndeudraeth Penrhyndeudraeth
## 100 Belfast Belfast
## 101 Paris Paris
## 102
## 103 Peredelkino Peredelkino
## 104
## 105
## 106
## 107
## 108 Cresskill, NJ Cresskill, NJ
## 109 Stanford, CA Stanford, CA
## 110 Carlops Carlops
## 111 Pavia Pavia
## 112 Madrid Madrid
## 113 Heidelberg Heidelberg
## 114 Cambridge, MA Cambridge, MA
## 115 San Marino, CA San Marino, CA
## 116 Lucerne Lucerne
## 117 Berlin Berlin
## 118
## 119
## 120
## 121 Buenos Aires Buenos Aires
## 122
## 123
## 124 Cambridge Cambridge
## 125 Chicago, IL Chicago, IL
## 126 Sèvres Sèvres
## 127 Evanston, IL Evanston, IL
## 128 Edinburgh Edinburgh
## 129 Berkeley, CA Berkeley, CA
## 130 Salem, NJ Salem, NJ
## 131 Hong Kong Hong Kong
## 132 Tunis Tunis
## 133 Paris Paris
## 134
## 135 Utrecht Utrecht
## 136 Randallstown, MD Randallstown, MD
## 137 Nethen Nethen
## 138 Oslo Oslo
## 139
## 140
## 141
## 142
## 143 Paris Paris
## 144 Medford, MA Medford, MA
## 145 Charlottesville, VA Charlottesville, VA
## 146 San Diego, CA San Diego, CA
## 147 Bethesda, MD Bethesda, MD
## 148 Knokke Knokke
## 149
## 150 Kraków Kraków
## 151 Tromsø Tromsø
## 152 Ndola Ndola
## 153 Wilmette, IL Wilmette, IL
## 154
## 155 Rome Rome
## 156
## 157
## 158
## 159 Baltimore, MD Baltimore, MD
## 160 Milan Milan
## 161
## 162 Lincoln, MA Lincoln, MA
## 163
## 164 Cambridge Cambridge
## 165
## 166
## 167
## 168
## 169 London London
## 170 College Station, TX College Station, TX
## 171 Gros-Islet Gros-Islet
## 172
## 173 Lakeville, CT Lakeville, CT
## 174
## 175 Berkeley, CA Berkeley, CA
## 176 Palm Desert, CA Palm Desert, CA
## 177
## 178 London London
## 179 Shipston-on-Stour Shipston-on-Stour
## 180
## 181 Benzonia, MI Benzonia, MI
## 182
## 183 Seattle, WA Seattle, WA
## 184 Cambridge, MA Cambridge, MA
## 185 Miami, FL Miami, FL
## 186 Cambridge Cambridge
## 187
## 188
## 189 Focsani Focsani
## 190
## 191 St. Louis, MO St. Louis, MO
## 192 Pasadena, CA Pasadena, CA
## 193 Princeton, NJ Princeton, NJ
## 194
## 195 New York, NY New York, NY
## 196 Edinburgh Edinburgh
## 197 Seattle, WA Seattle, WA
## 198 El Cerrito, CA El Cerrito, CA
## 199 Lisbon Lisbon
## 200
## 201 Tokyo Tokyo
## 202
## 203 Zurich Zurich
## 204
## 205 Bern Bern
## 206 New York, NY New York, NY
## 207 New York, NY New York, NY
## 208 Bloomington, IN Bloomington, IN
## 209
## 210
## 211 Berlin Berlin
## 212 Marburg Marburg
## 213 Lafayette, CA Lafayette, CA
## 214 Cambridge, MA Cambridge, MA
## 215 Chicago, IL Chicago, IL
## 216
## 217
## 218
## 219
## 220
## 221 Stockholm Stockholm
## 222 Ketchum, ID Ketchum, ID
## 223 Palo Alto, CA Palo Alto, CA
## 224 Cambridge Cambridge
## 225 Belfast Belfast
## 226 Milan Milan
## 227 Mulrany Mulrany
## 228 Munich Munich
## 229 West Berlin West Berlin
## 230
## 231 Vienna Vienna
## 232
## 233
## 234 Boston, MA Boston, MA
## 235 Princeton, NJ Princeton, NJ
## 236 Milan Milan
## 237
## 238 Stockholm Stockholm
## 239
## 240 Corona del Mar, CA Corona del Mar, CA
## 241
## 242 Zurich Zurich
## 243 Munich Munich
## 244 Brooklyn, NY Brooklyn, NY
## 245 Thieuloy-Saint-Antoine Thieuloy-Saint-Antoine
## 246
## 247
## 248
## 249 San Diego, CA San Diego, CA
## 250 Cambridge Cambridge
## 251 Cambridge, MA Cambridge, MA
## 252
## 253 Paris Paris
## 254 Paris Paris
## 255
## 256 St. Paul, MN St. Paul, MN
## 257
## 258 Helsinki Helsinki
## 259 Paris Paris
## 260 Maillane Maillane
## 261 Paris Paris
## 262 Cleveland, OH Cleveland, OH
## 263 Newfoundland Newfoundland
## 264 Orange, CA Orange, CA
## 265 Cambridge Cambridge
## 266 Brighton Brighton
## 267 Copenhagen Copenhagen
## 268 Oslo Oslo
## 269 Buenos Aires Buenos Aires
## 270 Freiburg Freiburg
## 271
## 272 Groningen Groningen
## 273 Basel Basel
## 274 Poughkeepsie, NY Poughkeepsie, NY
## 275 Graz Graz
## 276 Mexico City Mexico City
## 277
## 278 Hempstead, NY Hempstead, NY
## 279
## 280 Chicago, IL Chicago, IL
## 281 London London
## 282 Honolulu, HI Honolulu, HI
## 283 Heidelberg Heidelberg
## 284
## 285 Los Angeles, CA Los Angeles, CA
## 286 Pomona, CA Pomona, CA
## 287 Ayot St. Lawrence Ayot St. Lawrence
## 288 Washington, DC Washington, DC
## 289 Bar Harbor, ME Bar Harbor, ME
## 290 Freiburg im Breisgau Freiburg im Breisgau
## 291 Del Mar, CA Del Mar, CA
## 292
## 293
## 294 Chapel Hill, NC Chapel Hill, NC
## 295 Rochester, NY Rochester, NY
## 296 Chicago, IL Chicago, IL
## 297
## 298 Cambridge Cambridge
## 299 Canterbury Canterbury
## 300 Brookline, MA Brookline, MA
## 301 Cambridge, MA Cambridge, MA
## 302 Paris Paris
## 303 Freiburg im Breisgau Freiburg im Breisgau
## 304 Leuven Leuven
## 305 La Jolla, CA La Jolla, CA
## 306 Paris Paris
## 307
## 308
## 309
## 310 Burgberg Burgberg
## 311
## 312 Ottawa Ottawa
## 313 Agnetendorf Jagniatków
## 314 Chapel Hill, NC Chapel Hill, NC
## 315 St. Louis, MO St. Louis, MO
## 316 Athens Athens
## 317 Bologna Bologna
## 318 Bergamo Bergamo
## 319 Lafayette, CA Lafayette, CA
## 320 Kingston upon Thames Kingston upon Thames
## 321
## 322 Rome Rome
## 323
## 324 Rome Rome
## 325 Stockholm Stockholm
## 326 New York, NY New York, NY
## 327 Lübeck Lübeck
## 328 Stockholm Stockholm
## 329 Berlin Berlin
## 330 Berlin Berlin
## 331
## 332 Concord, MA Concord, MA
## 333
## 334 Reykjavik Reykjavik
## 335
## 336 Djursholm Djursholm
## 337 Ithaca, NY Ithaca, NY
## 338 Munich Munich
## 339 Seattle, WA Seattle, WA
## 340 Oxford Oxford
## 341 Freiburg im Breisgau Freiburg im Breisgau
## 342 Stockholm Stockholm
## 343
## 344 La Jolla, CA La Jolla, CA
## 345
## 346 London London
## 347
## 348 Stockholm Stockholm
## 349
## 350 Leiden Leiden
## 351 Bornheim-Merten Bornheim-Merten
## 352 Wollerau Wollerau
## 353 Munich Munich
## 354
## 355
## 356 Paris Paris
## 357 Brussels Brussels
## 358 Paris Paris
## 359 Copenhagen Copenhagen
## 360 Ordrup Ordrup
## 361 Heiden Heiden
## 362
## 363 Stanford, CA Stanford, CA
## 364 Wakulla Springs State Park, FL Wakulla Springs State Park, FL
## 365 Vevey Vevey
## 366 Buffalo, NY Buffalo, NY
## 367 Lafayette, IN Lafayette, IN
## 368
## 369 New York, NY New York, NY
## 370 Pittsburgh, PA Pittsburgh, PA
## 371 Montagnola Montagnola
## 372 Indianapolis, IN Indianapolis, IN
## 373 Freiburg im Breisgau Freiburg im Breisgau
## 374
## 375
## 376 Kyoto Kyoto
## 377
## 378 Stockholm Stockholm
## 379
## 380 Madison, WI Madison, WI
## 381 Stockholm Stockholm
## 382 Moscow Moscow
## 383 Moscow Moscow
## 384 Paris Paris
## 385 Brussels Brussels
## 386 Budapest Budapest
## 387
## 388
## 389
## 390
## 391
## 392
## 393
## 394
## 395 Paris Paris
## 396 Falmouth, MA Falmouth, MA
## 397 Deerfield, MA Deerfield, MA
## 398 Surfside, FL Surfside, FL
## 399
## 400 New York, NY New York, NY
## 401 Paris Paris
## 402 Leningrad Leningrad
## 403
## 404 Belgrade Belgrade
## 405
## 406 Heidelberg Heidelberg
## 407
## 408
## 409
## 410
## 411 Cambridge Cambridge
## 412 Madrid Madrid
## 413 Dallas, TX Dallas, TX
## 414
## 415
## 416 Berlin Berlin
## 417
## 418 Cannes Cannes
## 419 Cambridge Cambridge
## 420 Buffalo, NY Buffalo, NY
## 421 Cambridge Cambridge
## 422 St. Paul, MN St. Paul, MN
## 423 Cambridge Cambridge
## 424
## 425 Göttingen Göttingen
## 426
## 427 Blacksburg, VA Blacksburg, VA
## 428
## 429
## 430 Yonkers, NY Yonkers, NY
## 431 New Haven, CT New Haven, CT
## 432
## 433 the Hague the Hague
## 434 Chicago, IL Chicago, IL
## 435 Prague Prague
## 436 Prague Prague
## 437 New York, NY New York, NY
## 438 Palma, Majorca Palma, Majorca
## 439
## 440
## 441
## 442 Paris Paris
## 443
## 444
## 445 Aarhus Aarhus
## 446
## 447
## 448
## 449
## 450
## 451
## 452 Amsterdam Amsterdam
## 453 Copenhagen Copenhagen
## 454 Traunstein Traunstein
## 455 Copenhagen Copenhagen
## 456 Richmond, VA Richmond, VA
## 457
## 458 Boston, MA Boston, MA
## 459 Berkeley, CA Berkeley, CA
## 460 Cambridge Cambridge
## 461
## 462
## 463 Cambridge Cambridge
## 464
## 465
## 466
## 467 Waterford, CT Waterford, CT
## 468 New Jersey, NJ New Jersey, NJ
## 469 London London
## 470 Wickenberg, AZ Wickenberg, AZ
## 471 Cambridge, MA Cambridge, MA
## 472
## 473
## 474 Aberdeen Aberdeen
## 475
## 476 Chicago, IL Chicago, IL
## 477 Blockley Blockley
## 478
## 479 Farnborough Farnborough
## 480 New York, NY New York, NY
## 481 Madrid Madrid
## 482
## 483 Lanzarote Lanzarote
## 484 New York, NY New York, NY
## 485 Boston, MA Boston, MA
## 486
## 487 St. Louis, MO St. Louis, MO
## 488
## 489
## 490 London London
## 491 New York, NY New York, NY
## 492
## 493 San Juan San Juan
## 494
## 495 Brussels Brussels
## 496 Los Angeles, CA Los Angeles, CA
## 497 Rockville, MD Rockville, MD
## 498 Vienna Vienna
## 499
## 500 Ängelholm Ängelholm
## 501
## 502 Klotzsche Klotzsche
## 503 New York, NY New York, NY
## 504 Munich Munich
## 505 Mülheim Mülheim
## 506 Newport Beach, CA Newport Beach, CA
## 507
## 508 Fallston, MD Fallston, MD
## 509 Kyoto Kyoto
## 510 Saco, ME Saco, ME
## 511 Palo Alto, CA Palo Alto, CA
## 512
## 513
## 514
## 515 Stockholm Stockholm
## 516
## 517 Grimstad Grimstad
## 518 Bern Bern
## 519
## 520 Burlington, MA Burlington, MA
## 521 Vienna Vienna
## 522
## 523 Cologne Cologne
## 524
## 525 Coral Gables, FL Coral Gables, FL
## 526
## 527 Ipswich Ipswich
## 528 Gladwyne, PA Gladwyne, PA
## 529 Hanoi Hanoi
## 530
## 531
## 532
## 533
## 534 Épernay Épernay
## 535 Paris Paris
## 536 Rexburg, ID Rexburg, ID
## 537
## 538 Minneapolis, MN Minneapolis, MN
## 539 Moscow Moscow
## 540 Zurich Zurich
## 541 Ottawa Ottawa
## 542 Moscow Moscow
## 543
## 544
## 545 Big Sur, CA Big Sur, CA
## 546 Shenyang Shenyang
## 547 Tucson, AZ Tucson, AZ
## 548 Edzell Edzell
## 549
## 550 Cambridge Cambridge
## 551 Paris Paris
## 552
## 553 Brive-Corrèze Brive-Corrèze
## 554 Barbizon Barbizon
## 555
## 556 Geneva Geneva
## 557 Rome Rome
## 558 Berkeley, CA Berkeley, CA
## 559 Buenos Aires Buenos Aires
## 560
## 561
## 562
## 563
## 564 Göttingen Göttingen
## 565 Stockholm Stockholm
## 566 San Diego, CA San Diego, CA
## 567 Sallanches Sallanches
## 568
## 569
## 570
## 571 New York, NY New York, NY
## 572
## 573
## 574 Palo Alto, CA Palo Alto, CA
## 575 Memphis, TN Memphis, TN
## 576 Chapel Hill, NC Chapel Hill, NC
## 577 Cambridge Cambridge
## 578
## 579
## 580
## 581 Paris Paris
## 582 Nice Nice
## 583 London London
## 584 Göttingen Göttingen
## 585 Pasadena, CA Pasadena, CA
## 586 Cambridge Cambridge
## 587 Göttingen Göttingen
## 588 New Haven, CT New Haven, CT
## 589 Berlin Berlin
## 590
## 591
## 592 Berkeley, CA Berkeley, CA
## 593 Twin Falls, ID Twin Falls, ID
## 594 Tel Aviv Tel Aviv
## 595 Chicago, IL Chicago, IL
## 596
## 597
## 598
## 599
## 600 Vancouver Vancouver
## 601
## 602
## 603 Madrid Madrid
## 604
## 605 Veshenskaya Veshenskaya
## 606 San Francisco, CA San Francisco, CA
## 607
## 608
## 609 Calcutta Calcutta
## 610
## 611 Santa Fe, NM Santa Fe, NM
## 612
## 613
## 614 Johannesburg Johannesburg
## 615 Cairo Cairo
## 616
## 617 Uppsala Uppsala
## 618
## 619 Stockholm Stockholm
## 620 Johannesburg Johannesburg
## 621 New York, NY New York, NY
## 622 Tucson, AZ Tucson, AZ
## 623 Moscow Moscow
## 624 Copenhagen Copenhagen
## 625 Castillon-du-Gard Castillon-du-Gard
## 626 Copenhagen Copenhagen
## 627 Oxford Oxford
## 628 Moscow Moscow
## 629 Dallas, TX Dallas, TX
## 630 Wayland, MA Wayland, MA
## 631 Birmingham Birmingham
## 632 Mexico City Mexico City
## 633 Oslo Oslo
## 634 Athens Athens
## 635
## 636
## 637
## 638
## 639 Chapel Hill, NC Chapel Hill, NC
## 640
## 641
## 642 Nagasaki Nagasaki
## 643
## 644 Kiel Kiel
## 645 Göttingen Göttingen
## 646 New York, NY New York, NY
## 647 Philadelphia, PA Philadelphia, PA
## 648 Berkeley, CA Berkeley, CA
## 649 Göttingen Göttingen
## 650 West Berlin West Berlin
## 651 Berkeley, CA Berkeley, CA
## 652 Alton Alton
## 653 Santiago Santiago
## 654 Stockholm Stockholm
## 655 London London
## 656
## 657 Sydney Sydney
## 658 Belmont, MA Belmont, MA
## 659 Tallahassee, FL Tallahassee, FL
## 660
## 661 Urbana, IL Urbana, IL
## 662 Los Angeles, CA Los Angeles, CA
## 663 Bad Homburg vor der Höhe Bad Homburg vor der Höhe
## 664 New York, NY New York, NY
## 665 Paris Paris
## 666 Munich Munich
## 667
## 668 Big Sur, CA Big Sur, CA
## 669 Zurich Zurich
## 670
## 671
## 672
## 673 Basel Basel
## 674 Toulouse Toulouse
## 675
## 676 Danby, VT Danby, VT
## 677 Randolph, NH Randolph, NH
## 678
## 679
## 680
## 681
## 682 Ithaca, NY Ithaca, NY
## 683 Jülich Jülich
## 684
## 685
## 686 London London
## 687 Bodmin Bodmin
## 688 New York, NY New York, NY
## 689 London London
## 690 Ocho Rios Ocho Rios
## 691 Princeton, NJ Princeton, NJ
## 692 Messelhausen Messelhausen
## 693
## 694 Paris Paris
## 695 Orsay Orsay
## 696 Amsterdam Amsterdam
## 697 Dallas, TX Dallas, TX
## 698
## 699 Moscow Moscow
## 700 Calcutta Calcutta
## 701 Oslo Oslo
## 702 Stockholm Stockholm
## 703
## 704 New York, NY New York, NY
## 705
## 706 London London
## 707
## 708 Blue Point, NY Blue Point, NY
## 709 Poznan Poznan
## 710 La Jolla, CA La Jolla, CA
## 711 Paris Paris
## 712 La Jolla, CA La Jolla, CA
## 713
## 714 Houston, TX Houston, TX
## 715 Stanford, CA Stanford, CA
## 716 Manila Manila
## 717
## 718
## 719
## 720 Heidelberg Heidelberg
## 721 Norwich Norwich
## 722 Los Angeles, CA Los Angeles, CA
## 723
## 724
## 725 Cambridge Cambridge
## 726 Locarno Locarno
## 727 Göttingen Göttingen
## 728
## 729 Rome Rome
## 730
## 731 San Marino, CA San Marino, CA
## 732
## 733 Cambridge, MA Cambridge, MA
## 734 Uppsala Uppsala
## 735
## 736 Ithaca, NY Ithaca, NY
## 737 Tunbridge Wells Tunbridge Wells
## 738
## 739
## 740
## 741 Seattle, WA Seattle, WA
## 742 Cambridge Cambridge
## 743
## 744 Stanford, CA Stanford, CA
## 745
## 746
## 747
## 748
## 749 Baden-Baden Baden-Baden
## 750
## 751
## 752 Arlington, VA Arlington, VA
## 753 Tallahassee, FL Tallahassee, FL
## 754 Oak Lawn, IL Oak Lawn, IL
## 755 Los Gatos, CA Los Gatos, CA
## 756
## 757
## 758 Winchester Winchester
## 759
## 760
## 761
## 762 Bellême Bellême
## 763 Pasadena, CA Pasadena, CA
## 764 Eugene, OR Eugene, OR
## 765
## 766 Vézelay Vézelay
## 767 Cambridge Cambridge
## 768 Chicago, IL Chicago, IL
## 769 Putney Heath Putney Heath
## 770 New York, NY New York, NY
## 771 Newton, MA Newton, MA
## 772 Jena Jena
## 773
## 774
## 775 London London
## 776
## 777
## 778 Presqu'île-de-Giens Presqu'île-de-Giens
## 779 Lexington, MA Lexington, MA
## 780 Naples Naples
## 781 Paris Paris
## 782
## 783 Madrid Madrid
## 784
## 785 Brookline, MA Brookline, MA
## 786
## 787 Dublin Dublin
## 788 Dublin Dublin
## 789 Mårbacka Mårbacka
## 790 Hyannis, MA Hyannis, MA
## 791
## 792 Madrid Madrid
## 793
## 794 Tel Aviv Tel Aviv
## 795
## 796
## 797 Rehovot Rehovot
## 798
## 799
## 800 Lillehammer Lillehammer
## 801 Cambridge, MA Cambridge, MA
## 802 Geneva Geneva
## 803 Tokyo Tokyo
## 804 Rome Rome
## 805 London London
## 806 Bridgetown Bridgetown
## 807 London London
## 808 London London
## 809 Bangalore Bangalore
## 810 Eastbourne Eastbourne
## 811 London London
## 812 Melbourne Melbourne
## 813 Cambridge Cambridge
## 814
## 815 Lewes, East Sussex Lewes, East Sussex
## 816 Cambridge Cambridge
## 817 Oxford Oxford
## 818
## 819
## 820
## 821 Contra Contra
## 822
## 823 Milton Keynes Milton Keynes
## 824 Croydon Croydon
## 825
## 826
## 827
## 828 Great Missenden Great Missenden
## 829 High Wycombe High Wycombe
## 830 New York, NY New York, NY
## 831
## 832 Nashville, TN Nashville, TN
## 833
## 834
## 835
## 836 Chicago, IL Chicago, IL
## 837 Châtenay Châtenay
## 838 Stockholm Stockholm
## 839
## 840 Stockholm Stockholm
## 841
## 842
## 843 London London
## 844 Basel Basel
## 845
## 846
## 847
## 848
## 849 Örebro Örebro
## 850 Bern Bern
## 851 Charlottenburg Charlottenburg
## 852
## 853 Oyster Bay, NY Oyster Bay, NY
## 854 Cambridge, MA Cambridge, MA
## 855 Evanston, IL Evanston, IL
## 856 Branford, CT Branford, CT
## 857 Bethesda, MD Bethesda, MD
## 858
## 859 Pasadena, CA Pasadena, CA
## 860 Needham, MA Needham, MA
## 861
## 862 Zurich Zurich
## 863
## 864
## 865 New Haven, CT New Haven, CT
## 866 the Hague the Hague
## 867
## 868 Stockholm Stockholm
## 869 New York, NY New York, NY
## 870
## 871
## 872 Oslo Oslo
## 873
## 874
## 875 Stockholm Stockholm
## 876
## 877
## 878
## 879 London London
## 880 Princeton, NJ Princeton, NJ
## 881
## 882 Övralid Övralid
## 883
## 884 Madrid Madrid
## 885 Mount Verno, NY Mount Verno, NY
## 886 Lyon Lyon
## 887 White Plains, NY White Plains, NY
## 888
## 889 Zurich Zurich
## 890
## 891 Seattle, WA Seattle, WA
## 892 Ascona Ascona
## 893 Santa Barbara, CA Santa Barbara, CA
## 894 Heidelberg Heidelberg
## 895 Muskau Muskau
## 896 Nairobi Nairobi
## 897 New York, NY New York, NY
## 898 Salamanca Salamanca
## 899
## 900 Schopfheim Schopfheim
## 901 Munich Munich
## 902 Munich Munich
## 903 Leipzig Leipzig
## 904 Munich Munich
## 905 Los Angeles, CA Los Angeles, CA
## 906 Truro, NS Truro, NS
## 907 Leiden Leiden
## 908 Pasadena, CA Pasadena, CA
## 909 Palo Alto, CA Palo Alto, CA
## 910 London London
## 911 Roquebrune-Cap-Martin Roquebrune-Cap-Martin
## 912
## 913
## 914
## 915
## 916 Berkeley, CA Berkeley, CA
## 917
## 918 Byhalia, MS Byhalia, MS
## 919
## 920 Perranarworthal Perranarworthal
## 921 New York, NY New York, NY
## 922 Chesterfield, MO Chesterfield, MO
## 923 Cambridge, MA Cambridge, MA
## 924 Brookline, MA Brookline, MA
## 925 Harrison, NY Harrison, NY
## 926 Tucson, AZ Tucson, AZ
## 927 Unkel Unkel
## 928 London London
## 929 Kraków Kraków
## 930 Warsaw Warsaw
## 931
## 932
## 933 Bonn Bonn
## 934 Zurich Zurich
## 935 Washington, DC Washington, DC
## 936 Paris Paris
## 937 Zushi Zushi
## 938 Tel Aviv Tel Aviv
## 939 Osaka Osaka
## 940
## 941
## 942 Tours Tours
## 943 St. Petersburg St. Petersburg
## 944 Cambridge Cambridge
## 945
## 946 Boston, MA Boston, MA
## 947 Big Sur, CA Big Sur, CA
## 948 Sallanches Sallanches
## 949
## 950
## death_continent death_country death_countryNow
## 1
## 2 Europe Denmark Denmark
## 3
## 4
## 5 Europe United Kingdom United Kingdom
## 6
## 7
## 8
## 9
## 10 Europe Germany Germany
## 11 Europe Germany Germany
## 12 Europe West Germany Germany
## 13
## 14 North America USA USA
## 15
## 16
## 17
## 18
## 19 Europe United Kingdom United Kingdom
## 20 North America USA USA
## 21 North America USA USA
## 22 Europe France France
## 23 Europe Belgium Belgium
## 24 North America USA USA
## 25
## 26 Europe Switzerland Switzerland
## 27 Africa South Africa South Africa
## 28 Africa Gabon Gabon
## 29 North America USA USA
## 30 Europe Germany Germany
## 31 Europe Russia Russia
## 32 Europe Russia Russia
## 33
## 34 Europe France France
## 35 North America Mexico Mexico
## 36 North America USA USA
## 37 Europe Austria Austria
## 38 North America USA USA
## 39 Europe France France
## 40 Europe Switzerland Switzerland
## 41
## 42 North America USA USA
## 43 Europe Sweden Sweden
## 44 Europe France France
## 45 Europe Sweden Sweden
## 46
## 47
## 48
## 49
## 50 Europe France France
## 51 North America USA USA
## 52
## 53 Europe France France
## 54 Europe France France
## 55 Europe USSR Russia
## 56 Europe United Kingdom United Kingdom
## 57
## 58
## 59
## 60
## 61
## 62 Africa Egypt Egypt
## 63 Europe United Kingdom United Kingdom
## 64 Europe United Kingdom United Kingdom
## 65
## 66 Europe France France
## 67 Europe Sweden Sweden
## 68
## 69
## 70
## 71 North America USA USA
## 72 Europe United Kingdom United Kingdom
## 73 Europe United Kingdom United Kingdom
## 74 North America USA USA
## 75 North America USA USA
## 76 Europe Finland Finland
## 77 Europe Sweden Sweden
## 78 Europe Denmark Denmark
## 79 Europe Switzerland Switzerland
## 80
## 81
## 82
## 83
## 84 North America USA USA
## 85
## 86
## 87
## 88 North America USA USA
## 89 North America USA USA
## 90
## 91
## 92
## 93
## 94 South America Argentina Argentina
## 95
## 96 Europe Austria Austria
## 97 Europe Sweden Sweden
## 98 North America Canada Canada
## 99 Europe United Kingdom United Kingdom
## 100 Europe Northern Ireland Northern Ireland
## 101 Europe France France
## 102
## 103 Europe Russia Russia
## 104
## 105
## 106
## 107
## 108 North America USA USA
## 109 North America USA USA
## 110 Europe Scotland Scotland
## 111 Europe Italy Italy
## 112 Europe Spain Spain
## 113 Europe Germany Germany
## 114 North America USA USA
## 115 North America USA USA
## 116 Europe Switzerland Switzerland
## 117 Europe Germany Germany
## 118
## 119
## 120
## 121 South America Argentina Argentina
## 122
## 123 Europe Italy Italy
## 124 Europe United Kingdom United Kingdom
## 125 North America USA USA
## 126 Europe France France
## 127 North America USA USA
## 128 Europe Scotland Scotland
## 129 North America USA USA
## 130 North America USA USA
## 131
## 132 Africa Tunisia Tunisia
## 133 Europe France France
## 134
## 135 Europe the Netherlands the Netherlands
## 136 North America USA USA
## 137 Europe Belgium Belgium
## 138 Europe Norway Norway
## 139
## 140
## 141
## 142
## 143 Europe France France
## 144 North America USA USA
## 145 North America USA USA
## 146 North America USA USA
## 147 North America USA USA
## 148 Europe Belgium Belgium
## 149
## 150 Europe Poland Poland
## 151 Europe Norway Norway
## 152 Africa Northern Rhodesia Zambia
## 153 North America USA USA
## 154
## 155 Europe Italy Italy
## 156
## 157
## 158
## 159 North America USA USA
## 160 Europe Italy Italy
## 161
## 162 North America USA USA
## 163
## 164 Europe United Kingdom United Kingdom
## 165
## 166
## 167
## 168
## 169 Europe United Kingdom United Kingdom
## 170 North America USA USA
## 171 North America Saint Lucia Saint Lucia
## 172
## 173 North America USA USA
## 174
## 175 North America USA USA
## 176 North America USA USA
## 177
## 178 Europe United Kingdom United Kingdom
## 179 Europe United Kingdom United Kingdom
## 180
## 181 North America USA USA
## 182
## 183 North America USA USA
## 184 North America USA USA
## 185 North America USA USA
## 186 Europe United Kingdom United Kingdom
## 187
## 188
## 189 Europe Romania Romania
## 190
## 191 North America USA USA
## 192 North America USA USA
## 193 North America USA USA
## 194
## 195 North America USA USA
## 196 Europe Scotland Scotland
## 197 North America USA USA
## 198 North America USA USA
## 199 Europe Portugal Portugal
## 200
## 201 Asia Japan Japan
## 202
## 203 Europe Switzerland Switzerland
## 204
## 205 Europe Switzerland Switzerland
## 206 North America USA USA
## 207 North America USA USA
## 208 North America USA USA
## 209
## 210
## 211 Europe Germany Germany
## 212 Europe Germany Germany
## 213 North America USA USA
## 214 North America USA USA
## 215 North America USA USA
## 216
## 217
## 218
## 219
## 220
## 221 Europe Sweden Sweden
## 222 North America USA USA
## 223 North America USA USA
## 224 Europe United Kingdom United Kingdom
## 225 Europe Northern Ireland Northern Ireland
## 226 Europe Italy Italy
## 227 Europe Ireland Ireland
## 228 Europe Germany Germany
## 229 Europe Germany Germany
## 230
## 231 Europe Austria Austria
## 232
## 233
## 234 North America USA USA
## 235 North America USA USA
## 236 Europe Italy Italy
## 237
## 238 Europe Sweden Sweden
## 239
## 240 North America USA USA
## 241
## 242 Europe Switzerland Switzerland
## 243 Europe Germany Germany
## 244 North America USA USA
## 245 Europe France France
## 246
## 247
## 248
## 249 North America USA USA
## 250 Europe United Kingdom United Kingdom
## 251 North America USA USA
## 252
## 253 Europe France France
## 254 Europe France France
## 255
## 256 North America USA USA
## 257
## 258 Europe Finland Finland
## 259 Europe France France
## 260 Europe France France
## 261 Europe France France
## 262 North America USA USA
## 263 North America Canada Canada
## 264 North America USA USA
## 265 Europe United Kingdom United Kingdom
## 266 Europe United Kingdom United Kingdom
## 267 Europe Denmark Denmark
## 268 Europe Norway Norway
## 269 South America Argentina Argentina
## 270 Europe Germany Germany
## 271
## 272 Europe the Netherlands the Netherlands
## 273 Europe Switzerland Switzerland
## 274 North America USA USA
## 275 Europe Austria Austria
## 276 North America Mexico Mexico
## 277
## 278 North America USA USA
## 279
## 280 North America USA USA
## 281 Europe United Kingdom United Kingdom
## 282 North America USA USA
## 283 Europe West Germany Germany
## 284
## 285 North America USA USA
## 286 North America USA USA
## 287 Europe United Kingdom United Kingdom
## 288 North America USA USA
## 289 North America USA USA
## 290 Europe West Germany Germany
## 291 North America USA USA
## 292
## 293
## 294 North America USA USA
## 295 North America USA USA
## 296 North America USA USA
## 297
## 298 Europe United Kingdom United Kingdom
## 299 Europe United Kingdom United Kingdom
## 300 North America USA USA
## 301 North America USA USA
## 302 Europe France France
## 303 Europe Germany Germany
## 304 Europe Belgium Belgium
## 305 North America USA USA
## 306 Europe France France
## 307
## 308
## 309
## 310 Europe West Germany Germany
## 311
## 312 North America Canada Canada
## 313 Europe Germany Poland
## 314 North America USA USA
## 315 North America USA USA
## 316 Europe Greece Greece
## 317 Europe Italy Italy
## 318 Europe Italy Italy
## 319 North America USA USA
## 320 Europe United Kingdom United Kingdom
## 321
## 322 Europe Italy Italy
## 323
## 324 Europe Italy Italy
## 325 Europe Sweden Sweden
## 326 North America USA USA
## 327 Europe Germany Germany
## 328 Europe Sweden Sweden
## 329 Europe East Germany Germany
## 330 Europe Germany Germany
## 331
## 332 North America USA USA
## 333
## 334 Europe Iceland Iceland
## 335
## 336 Europe Sweden Sweden
## 337 North America USA USA
## 338 Europe Germany Germany
## 339 North America USA USA
## 340 Europe United Kingdom United Kingdom
## 341 Europe Germany Germany
## 342 Europe Sweden Sweden
## 343
## 344 North America USA USA
## 345
## 346 Europe United Kingdom United Kingdom
## 347
## 348 Europe Sweden Sweden
## 349
## 350 Europe the Netherlands the Netherlands
## 351 Europe West Germany Germany
## 352 Europe Switzerland Switzerland
## 353 Europe West Germany Germany
## 354 Europe the Netherlands the Netherlands
## 355 Europe France France
## 356 Europe France France
## 357 Europe Belgium Belgium
## 358 Europe France France
## 359 Europe Denmark Denmark
## 360 Europe Denmark Denmark
## 361 Europe Switzerland Switzerland
## 362
## 363 North America USA USA
## 364 North America USA USA
## 365 Europe Switzerland Switzerland
## 366 North America USA USA
## 367 North America USA USA
## 368
## 369 North America USA USA
## 370 North America USA USA
## 371 Europe Switzerland Switzerland
## 372 North America USA USA
## 373 Europe West Germany Germany
## 374
## 375
## 376 Asia Japan Japan
## 377
## 378 Europe Sweden Sweden
## 379
## 380 North America USA USA
## 381 Europe Sweden Sweden
## 382 Europe USSR Russia
## 383 Europe USSR Russia
## 384 Europe France France
## 385 Europe Belgium Belgium
## 386 Europe Hungary Hungary
## 387
## 388
## 389
## 390
## 391
## 392
## 393
## 394
## 395 Europe France France
## 396 North America USA USA
## 397 North America USA USA
## 398 North America USA USA
## 399
## 400 North America USA USA
## 401 Europe France France
## 402 Europe Russia Russia
## 403
## 404 Europe Yugoslavia Serbia
## 405
## 406 Europe West Germany Germany
## 407
## 408
## 409
## 410
## 411 Europe United Kingdom United Kingdom
## 412 Europe Spain Spain
## 413 North America USA USA
## 414
## 415
## 416 Europe Germany Germany
## 417
## 418 Europe France France
## 419 Europe United Kingdom United Kingdom
## 420 North America USA USA
## 421 Europe United Kingdom United Kingdom
## 422 North America USA USA
## 423 Europe United Kingdom United Kingdom
## 424
## 425 Europe West Germany Germany
## 426
## 427 North America USA USA
## 428
## 429
## 430 North America USA USA
## 431 North America USA USA
## 432
## 433 Europe the Netherlands the Netherlands
## 434 North America USA USA
## 435 Europe Czechoslovakia Czech Republic
## 436 Europe Czechoslovakia Czech Republic
## 437 North America USA USA
## 438 Europe Spain Spain
## 439
## 440
## 441
## 442 Europe France France
## 443
## 444
## 445 Europe Denmark Denmark
## 446
## 447
## 448
## 449
## 450
## 451
## 452 Europe the Netherlands the Netherlands
## 453 Europe Denmark Denmark
## 454 Europe West Germany Germany
## 455 Europe Denmark Denmark
## 456 North America USA USA
## 457
## 458 North America USA USA
## 459 North America USA USA
## 460 Europe United Kingdom United Kingdom
## 461
## 462
## 463 Europe United Kingdom United Kingdom
## 464
## 465
## 466
## 467 North America USA USA
## 468 North America USA USA
## 469 Europe United Kingdom United Kingdom
## 470 North America USA USA
## 471 North America USA USA
## 472
## 473
## 474 Europe Scotland Scotland
## 475
## 476 North America USA USA
## 477 Europe United Kingdom United Kingdom
## 478 North America USA USA
## 479 Europe United Kingdom United Kingdom
## 480 North America USA USA
## 481 Europe Spain Spain
## 482
## 483 Europe Spain Spain
## 484 North America USA USA
## 485 North America USA USA
## 486
## 487 North America USA USA
## 488
## 489
## 490 Europe United Kingdom United Kingdom
## 491 North America USA USA
## 492
## 493 North America Puerto Rico Puerto Rico
## 494
## 495 Europe Belgium Belgium
## 496 North America USA USA
## 497 North America USA USA
## 498 Europe Austria Austria
## 499
## 500 Europe Sweden Sweden
## 501
## 502 Europe Germany Germany
## 503 North America USA USA
## 504 Europe West Germany Germany
## 505 Europe West Germany Germany
## 506 North America USA USA
## 507
## 508 North America USA USA
## 509 Asia Japan Japan
## 510 North America USA USA
## 511 North America USA USA
## 512
## 513
## 514
## 515 Europe Sweden Sweden
## 516
## 517 Europe Norway Norway
## 518 Europe Switzerland Switzerland
## 519
## 520 North America USA USA
## 521 Europe Austria Austria
## 522
## 523 Europe West Germany Germany
## 524
## 525 North America USA USA
## 526
## 527 Europe United Kingdom United Kingdom
## 528 North America USA USA
## 529 Asia Vietnam Vietnam
## 530
## 531
## 532
## 533
## 534 Europe France France
## 535 Europe France France
## 536 North America USA USA
## 537
## 538 North America USA USA
## 539 Europe USSR Russia
## 540 Europe Switzerland Switzerland
## 541 North America Canada Canada
## 542 Europe USSR Russia
## 543
## 544
## 545 North America USA USA
## 546 Asia China China
## 547 North America USA USA
## 548 Europe Scotland Scotland
## 549 Europe United Kingdom United Kingdom
## 550 Europe United Kingdom United Kingdom
## 551 Europe France France
## 552
## 553 Europe France France
## 554 Europe France France
## 555
## 556 Europe Switzerland Switzerland
## 557 Europe Italy Italy
## 558 North America USA USA
## 559 South America Argentina Argentina
## 560
## 561
## 562
## 563
## 564 Europe Germany Germany
## 565 Europe Sweden Sweden
## 566 North America USA USA
## 567 Europe France France
## 568
## 569
## 570
## 571 North America USA USA
## 572
## 573
## 574 North America USA USA
## 575 North America USA USA
## 576 North America USA USA
## 577 Europe United Kingdom United Kingdom
## 578
## 579
## 580
## 581 Europe France France
## 582 Europe France France
## 583 Europe United Kingdom United Kingdom
## 584 Europe West Germany Germany
## 585 North America USA USA
## 586 Europe United Kingdom United Kingdom
## 587 Europe West Germany Germany
## 588 North America USA USA
## 589 Europe West Germany Germany
## 590
## 591
## 592 North America USA USA
## 593 North America USA USA
## 594 Asia Israel Israel
## 595 North America USA USA
## 596
## 597
## 598
## 599
## 600 North America Canada Canada
## 601
## 602
## 603 Europe Spain Spain
## 604
## 605 Europe USSR Russia
## 606 North America USA USA
## 607
## 608
## 609 Asia India India
## 610
## 611 North America USA USA
## 612
## 613
## 614 Africa South Africa South Africa
## 615 Africa Egypt Egypt
## 616
## 617 Europe Sweden Sweden
## 618
## 619 Europe Sweden Sweden
## 620 Africa South Africa South Africa
## 621 North America USA USA
## 622 North America USA USA
## 623 Europe Russia Russia
## 624 Europe Denmark Denmark
## 625 Europe France France
## 626 Europe Denmark Denmark
## 627 Europe United Kingdom United Kingdom
## 628 Europe USSR Russia
## 629 North America USA USA
## 630 North America USA USA
## 631 Europe United Kingdom United Kingdom
## 632 North America Mexico Mexico
## 633 Europe Norway Norway
## 634 Europe Greece Greece
## 635
## 636
## 637
## 638
## 639 North America USA USA
## 640
## 641
## 642 Asia Japan Japan
## 643
## 644 Europe West Germany Germany
## 645 Europe West Germany Germany
## 646 North America USA USA
## 647 North America USA USA
## 648 North America USA USA
## 649 Europe Germany Germany
## 650 Europe West Germany Germany
## 651 North America USA USA
## 652 Europe United Kingdom United Kingdom
## 653 South America Chile Chile
## 654 Europe Sweden Sweden
## 655 Europe United Kingdom United Kingdom
## 656
## 657 Oceania Australia Australia
## 658 North America USA USA
## 659 North America USA USA
## 660
## 661 North America USA USA
## 662 North America USA USA
## 663 Europe Germany Germany
## 664 North America USA USA
## 665 Europe France France
## 666 Europe Germany Germany
## 667
## 668 North America USA USA
## 669 Europe Switzerland Switzerland
## 670
## 671
## 672
## 673 Europe Switzerland Switzerland
## 674 Europe France France
## 675 Europe USSR Russia
## 676 North America USA USA
## 677 North America USA USA
## 678
## 679
## 680
## 681
## 682 North America USA USA
## 683 Europe Germany Germany
## 684
## 685
## 686 Europe United Kingdom United Kingdom
## 687 Europe United Kingdom United Kingdom
## 688 North America USA USA
## 689 Europe United Kingdom United Kingdom
## 690 North America Jamaica Jamaica
## 691 North America USA USA
## 692 Europe Germany Germany
## 693
## 694 Europe France France
## 695 Europe France France
## 696 Europe the Netherlands the Netherlands
## 697 North America USA USA
## 698
## 699 Europe USSR Russia
## 700 Asia India India
## 701 Europe Norway Norway
## 702 Europe Sweden Sweden
## 703
## 704 North America USA USA
## 705
## 706 Europe United Kingdom United Kingdom
## 707
## 708 North America USA USA
## 709 Europe Poland Poland
## 710 North America USA USA
## 711 Europe France France
## 712 North America USA USA
## 713
## 714 North America USA USA
## 715 North America USA USA
## 716 Asia Philippines Philippines
## 717
## 718
## 719
## 720 Europe West Germany Germany
## 721 Europe United Kingdom United Kingdom
## 722 North America USA USA
## 723
## 724
## 725 Europe United Kingdom United Kingdom
## 726 Europe Switzerland Switzerland
## 727 Europe Germany Germany
## 728
## 729 Europe Italy Italy
## 730
## 731 North America USA USA
## 732
## 733 North America USA USA
## 734 Europe Sweden Sweden
## 735
## 736 North America USA USA
## 737 Europe United Kingdom United Kingdom
## 738
## 739
## 740
## 741 North America USA USA
## 742 Europe United Kingdom United Kingdom
## 743
## 744 North America USA USA
## 745
## 746
## 747
## 748
## 749 Europe Germany Germany
## 750
## 751
## 752 North America USA USA
## 753 North America USA USA
## 754 North America USA USA
## 755 North America USA USA
## 756
## 757
## 758 Europe United Kingdom United Kingdom
## 759
## 760
## 761
## 762 Europe France France
## 763 North America USA USA
## 764 North America USA USA
## 765
## 766 Europe France France
## 767 Europe United Kingdom United Kingdom
## 768 North America USA USA
## 769 Europe United Kingdom United Kingdom
## 770 North America USA USA
## 771 North America USA USA
## 772 Europe Germany Germany
## 773
## 774
## 775 Europe United Kingdom United Kingdom
## 776
## 777
## 778 Europe France France
## 779 North America USA USA
## 780 Europe Italy Italy
## 781 Europe France France
## 782
## 783 Europe Spain Spain
## 784
## 785 North America USA USA
## 786
## 787 Europe Ireland Ireland
## 788 Europe Ireland Ireland
## 789 Europe Sweden Sweden
## 790 North America USA USA
## 791
## 792 Europe Spain Spain
## 793
## 794 Asia Israel Israel
## 795
## 796
## 797 Asia Israel Israel
## 798
## 799
## 800 Europe Norway Norway
## 801 North America USA USA
## 802 Europe Switzerland Switzerland
## 803 Asia Japan Japan
## 804 Europe Italy Italy
## 805 Europe United Kingdom United Kingdom
## 806 North America Barbados Barbados
## 807 Europe United Kingdom United Kingdom
## 808 Europe United Kingdom United Kingdom
## 809 Asia India India
## 810 Europe United Kingdom United Kingdom
## 811 Europe United Kingdom United Kingdom
## 812 Oceania Australia Australia
## 813 Europe United Kingdom United Kingdom
## 814
## 815 Europe United Kingdom United Kingdom
## 816 Europe United Kingdom United Kingdom
## 817 Europe United Kingdom United Kingdom
## 818
## 819
## 820
## 821 Europe Switzerland Switzerland
## 822
## 823 Europe United Kingdom United Kingdom
## 824 Europe United Kingdom United Kingdom
## 825
## 826
## 827
## 828 Europe United Kingdom United Kingdom
## 829 Europe United Kingdom United Kingdom
## 830 North America USA USA
## 831
## 832 North America USA USA
## 833
## 834
## 835
## 836 North America USA USA
## 837 Europe France France
## 838 Europe Sweden Sweden
## 839
## 840 Europe Sweden Sweden
## 841
## 842 Asia Singapore Singapore
## 843 Europe United Kingdom United Kingdom
## 844 Europe Switzerland Switzerland
## 845
## 846
## 847
## 848
## 849 Europe Sweden Sweden
## 850 Europe Switzerland Switzerland
## 851 Europe Germany Germany
## 852
## 853 North America USA USA
## 854 North America USA USA
## 855 North America USA USA
## 856 North America USA USA
## 857 North America USA USA
## 858
## 859 North America USA USA
## 860 North America USA USA
## 861
## 862 Europe Switzerland Switzerland
## 863
## 864
## 865 North America USA USA
## 866 Europe the Netherlands the Netherlands
## 867
## 868 Europe Sweden Sweden
## 869 North America USA USA
## 870
## 871
## 872 Europe Norway Norway
## 873
## 874
## 875 Europe Sweden Sweden
## 876
## 877
## 878
## 879 Europe United Kingdom United Kingdom
## 880 North America USA USA
## 881
## 882 Europe Sweden Sweden
## 883
## 884 Europe Spain Spain
## 885 North America USA USA
## 886 Europe France France
## 887 North America USA USA
## 888
## 889 Europe Switzerland Switzerland
## 890
## 891 North America USA USA
## 892 Europe Switzerland Switzerland
## 893 North America USA USA
## 894 Europe West Germany Germany
## 895 Europe Germany Germany
## 896 Africa Kenya Kenya
## 897 North America USA USA
## 898 Europe Spain Spain
## 899
## 900 Europe West Germany Germany
## 901 Europe West Germany Germany
## 902 Europe Germany Germany
## 903 Europe Germany Germany
## 904 Europe Germany Germany
## 905 North America USA USA
## 906 North America Canada Canada
## 907 Europe the Netherlands the Netherlands
## 908 North America USA USA
## 909 North America USA USA
## 910 Europe United Kingdom United Kingdom
## 911 Europe France France
## 912
## 913
## 914
## 915
## 916 North America USA USA
## 917
## 918 North America USA USA
## 919
## 920 Europe United Kingdom United Kingdom
## 921 North America USA USA
## 922 North America USA USA
## 923 North America USA USA
## 924 North America USA USA
## 925 North America USA USA
## 926 North America USA USA
## 927 Europe Germany Germany
## 928 Europe United Kingdom United Kingdom
## 929 Europe Poland Poland
## 930 Europe Poland Poland
## 931
## 932
## 933 Europe Germany Germany
## 934 Europe Switzerland Switzerland
## 935 North America USA USA
## 936 Europe France France
## 937 Asia Japan Japan
## 938 Asia Israel Israel
## 939 Asia Japan Japan
## 940
## 941
## 942 Europe France France
## 943 Europe Russia Russia
## 944 Europe United Kingdom United Kingdom
## 945
## 946 North America USA USA
## 947 North America USA USA
## 948 Europe France France
## 949
## 950
## death_locationString
## 1
## 2 Copenhagen, Denmark
## 3
## 4 N/A
## 5 Oxford, United Kingdom
## 6
## 7
## 8
## 9
## 10 Munich, Germany
## 11 Starnberg, Germany
## 12 Göttingen, West Germany (now Germany)
## 13
## 14 Pasadena, CA, USA
## 15
## 16
## 17
## 18
## 19 Cambridge, United Kingdom
## 20 Drexel Hill, PA, USA
## 21 Pasadena, CA, USA
## 22 Sens, France
## 23 Brussels, Belgium
## 24 Princeton, NJ, USA
## 25
## 26 Bern, Switzerland
## 27 Stanger, South Africa
## 28 Lambaréné, Gabon
## 29 Woods Hole, MA, USA
## 30 Heidelberg, Germany
## 31 Moscow, Russia
## 32 Troitse-Lykovo, Russia
## 33 N/A
## 34 Paris, France
## 35 Mexico City, Mexico
## 36 Syosset, NY, USA
## 37 Vienna, Austria
## 38 Dallas, TX, USA
## 39 Bandol, France
## 40 Zurich, Switzerland
## 41
## 42 Winchester, MA, USA
## 43 Stockholm, Sweden
## 44 Paris, France
## 45 Stockholm, Sweden
## 46
## 47
## 48
## 49
## 50 Saint-Cyr-sur-Loire, France
## 51 Great Barrington, MA, USA
## 52
## 53 Paris, France
## 54 Paris, France
## 55 Moscow, USSR (now Russia)
## 56 Grantchester, United Kingdom
## 57
## 58
## 59
## 60
## 61
## 62 Cairo, Egypt
## 63 Llangarron, United Kingdom
## 64 Cambridge, United Kingdom
## 65
## 66 Paris, France
## 67 Uppsala, Sweden
## 68
## 69
## 70
## 71 Berkeley, CA, USA
## 72 Bourne, United Kingdom
## 73 London, United Kingdom
## 74 Stanford, CA, USA
## 75 Palo Alto, CA, USA
## 76 Helsinki, Finland
## 77 Gothenburg, Sweden
## 78 Copenhagen, Denmark
## 79 Lucerne, Switzerland
## 80
## 81
## 82
## 83
## 84 Huntington, NY, USA
## 85
## 86
## 87
## 88 Moffett Field, CA, USA
## 89 Boston, MA, USA
## 90
## 91
## 92
## 93
## 94 Buenos Aires, Argentina
## 95
## 96 Vienna, Austria
## 97 Vålådalen, Sweden
## 98 Hamilton, Ontario, Canada
## 99 Penrhyndeudraeth, United Kingdom
## 100 Belfast, Northern Ireland
## 101 Paris, France
## 102
## 103 Peredelkino, Russia
## 104
## 105
## 106
## 107
## 108 Cresskill, NJ, USA
## 109 Stanford, CA, USA
## 110 Carlops, Scotland
## 111 Pavia, Italy
## 112 Madrid, Spain
## 113 Heidelberg, Germany
## 114 Cambridge, MA, USA
## 115 San Marino, CA, USA
## 116 Lucerne, Switzerland
## 117 Berlin, Germany
## 118
## 119
## 120
## 121 Buenos Aires, Argentina
## 122
## 123 Italy
## 124 Cambridge, United Kingdom
## 125 Chicago, IL, USA
## 126 Sèvres, France
## 127 Evanston, IL, USA
## 128 Edinburgh, Scotland
## 129 Berkeley, CA, USA
## 130 Salem, NJ, USA
## 131 Hong Kong, N/A
## 132 Tunis, Tunisia
## 133 Paris, France
## 134
## 135 Utrecht, the Netherlands
## 136 Randallstown, MD, USA
## 137 Nethen, Belgium
## 138 Oslo, Norway
## 139
## 140
## 141
## 142
## 143 Paris, France
## 144 Medford, MA, USA
## 145 Charlottesville, VA, USA
## 146 San Diego, CA, USA
## 147 Bethesda, MD, USA
## 148 Knokke, Belgium
## 149
## 150 Kraków, Poland
## 151 Tromsø, Norway
## 152 Ndola, Northern Rhodesia (now Zambia)
## 153 Wilmette, IL, USA
## 154
## 155 Rome, Italy
## 156
## 157
## 158
## 159 Baltimore, MD, USA
## 160 Milan, Italy
## 161
## 162 Lincoln, MA, USA
## 163
## 164 Cambridge, United Kingdom
## 165
## 166
## 167
## 168
## 169 London, United Kingdom
## 170 College Station, TX, USA
## 171 Gros-Islet, Saint Lucia
## 172
## 173 Lakeville, CT, USA
## 174
## 175 Berkeley, CA, USA
## 176 Palm Desert, CA, USA
## 177
## 178 London, United Kingdom
## 179 Shipston-on-Stour, United Kingdom
## 180
## 181 Benzonia, MI, USA
## 182
## 183 Seattle, WA, USA
## 184 Cambridge, MA, USA
## 185 Miami, FL, USA
## 186 Cambridge, United Kingdom
## 187
## 188
## 189 Focsani, Romania
## 190
## 191 St. Louis, MO, USA
## 192 Pasadena, CA, USA
## 193 Princeton, NJ, USA
## 194
## 195 New York, NY, USA
## 196 Edinburgh, Scotland
## 197 Seattle, WA, USA
## 198 El Cerrito, CA, USA
## 199 Lisbon, Portugal
## 200
## 201 Tokyo, Japan
## 202
## 203 Zurich, Switzerland
## 204
## 205 Bern, Switzerland
## 206 New York, NY, USA
## 207 New York, NY, USA
## 208 Bloomington, IN, USA
## 209
## 210
## 211 Berlin, Germany
## 212 Marburg, Germany
## 213 Lafayette, CA, USA
## 214 Cambridge, MA, USA
## 215 Chicago, IL, USA
## 216
## 217
## 218
## 219
## 220
## 221 Stockholm, Sweden
## 222 Ketchum, ID, USA
## 223 Palo Alto, CA, USA
## 224 Cambridge, United Kingdom
## 225 Belfast, Northern Ireland
## 226 Milan, Italy
## 227 Mulrany, Ireland
## 228 Munich, Germany
## 229 West Berlin, Germany
## 230
## 231 Vienna, Austria
## 232
## 233
## 234 Boston, MA, USA
## 235 Princeton, NJ, USA
## 236 Milan, Italy
## 237
## 238 Stockholm, Sweden
## 239
## 240 Corona del Mar, CA, USA
## 241
## 242 Zurich, Switzerland
## 243 Munich, Germany
## 244 Brooklyn, NY, USA
## 245 Thieuloy-Saint-Antoine, France
## 246
## 247
## 248
## 249 San Diego, CA, USA
## 250 Cambridge, United Kingdom
## 251 Cambridge, MA, USA
## 252
## 253 Paris, France
## 254 Paris, France
## 255
## 256 St. Paul, MN, USA
## 257
## 258 Helsinki, Finland
## 259 Paris, France
## 260 Maillane, France
## 261 Paris, France
## 262 Cleveland, OH, USA
## 263 Newfoundland, Canada
## 264 Orange, CA, USA
## 265 Cambridge, United Kingdom
## 266 Brighton, United Kingdom
## 267 Copenhagen, Denmark
## 268 Oslo, Norway
## 269 Buenos Aires, Argentina
## 270 Freiburg, Germany
## 271
## 272 Groningen, the Netherlands
## 273 Basel, Switzerland
## 274 Poughkeepsie, NY, USA
## 275 Graz, Austria
## 276 Mexico City, Mexico
## 277 N/A
## 278 Hempstead, NY, USA
## 279
## 280 Chicago, IL, USA
## 281 London, United Kingdom
## 282 Honolulu, HI, USA
## 283 Heidelberg, West Germany (now Germany)
## 284
## 285 Los Angeles, CA, USA
## 286 Pomona, CA, USA
## 287 Ayot St. Lawrence, United Kingdom
## 288 Washington, DC, USA
## 289 Bar Harbor, ME, USA
## 290 Freiburg im Breisgau, West Germany (now Germany)
## 291 Del Mar, CA, USA
## 292
## 293
## 294 Chapel Hill, NC, USA
## 295 Rochester, NY, USA
## 296 Chicago, IL, USA
## 297
## 298 Cambridge, United Kingdom
## 299 Canterbury, United Kingdom
## 300 Brookline, MA, USA
## 301 Cambridge, MA, USA
## 302 Paris, France
## 303 Freiburg im Breisgau, Germany
## 304 Leuven, Belgium
## 305 La Jolla, CA, USA
## 306 Paris, France
## 307
## 308
## 309
## 310 Burgberg, West Germany (now Germany)
## 311
## 312 Ottawa, Canada
## 313 Agnetendorf, Germany (now Jagniatków, Poland)
## 314 Chapel Hill, NC, USA
## 315 St. Louis, MO, USA
## 316 Athens, Greece
## 317 Bologna, Italy
## 318 Bergamo, Italy
## 319 Lafayette, CA, USA
## 320 Kingston upon Thames, United Kingdom
## 321
## 322 Rome, Italy
## 323
## 324 Rome, Italy
## 325 Stockholm, Sweden
## 326 New York, NY, USA
## 327 Lübeck, Germany
## 328 Stockholm, Sweden
## 329 Berlin, East Germany (now Germany)
## 330 Berlin, Germany
## 331
## 332 Concord, MA, USA
## 333
## 334 Reykjavik, Iceland
## 335
## 336 Djursholm, Sweden
## 337 Ithaca, NY, USA
## 338 Munich, Germany
## 339 Seattle, WA, USA
## 340 Oxford, United Kingdom
## 341 Freiburg im Breisgau, Germany
## 342 Stockholm, Sweden
## 343
## 344 La Jolla, CA, USA
## 345
## 346 London, United Kingdom
## 347
## 348 Stockholm, Sweden
## 349
## 350 Leiden, the Netherlands
## 351 Bornheim-Merten, West Germany (now Germany)
## 352 Wollerau, Switzerland
## 353 Munich, West Germany (now Germany)
## 354 the Netherlands
## 355 France
## 356 Paris, France
## 357 Brussels, Belgium
## 358 Paris, France
## 359 Copenhagen, Denmark
## 360 Ordrup, Denmark
## 361 Heiden, Switzerland
## 362
## 363 Stanford, CA, USA
## 364 Wakulla Springs State Park, FL, USA
## 365 Vevey, Switzerland
## 366 Buffalo, NY, USA
## 367 Lafayette, IN, USA
## 368
## 369 New York, NY, USA
## 370 Pittsburgh, PA, USA
## 371 Montagnola, Switzerland
## 372 Indianapolis, IN, USA
## 373 Freiburg im Breisgau, West Germany (now Germany)
## 374
## 375
## 376 Kyoto, Japan
## 377
## 378 Stockholm, Sweden
## 379
## 380 Madison, WI, USA
## 381 Stockholm, Sweden
## 382 Moscow, USSR (now Russia)
## 383 Moscow, USSR (now Russia)
## 384 Paris, France
## 385 Brussels, Belgium
## 386 Budapest, Hungary
## 387
## 388
## 389
## 390
## 391
## 392
## 393
## 394
## 395 Paris, France
## 396 Falmouth, MA, USA
## 397 Deerfield, MA, USA
## 398 Surfside, FL, USA
## 399
## 400 New York, NY, USA
## 401 Paris, France
## 402 Leningrad, Russia
## 403
## 404 Belgrade, Yugoslavia (now Serbia)
## 405
## 406 Heidelberg, West Germany (now Germany)
## 407
## 408
## 409
## 410
## 411 Cambridge, United Kingdom
## 412 Madrid, Spain
## 413 Dallas, TX, USA
## 414
## 415
## 416 Berlin, Germany
## 417
## 418 Cannes, France
## 419 Cambridge, United Kingdom
## 420 Buffalo, NY, USA
## 421 Cambridge, United Kingdom
## 422 St. Paul, MN, USA
## 423 Cambridge, United Kingdom
## 424
## 425 Göttingen, West Germany (now Germany)
## 426
## 427 Blacksburg, VA, USA
## 428
## 429
## 430 Yonkers, NY, USA
## 431 New Haven, CT, USA
## 432
## 433 the Hague, the Netherlands
## 434 Chicago, IL, USA
## 435 Prague, Czechoslovakia (now Czech Republic)
## 436 Prague, Czechoslovakia (now Czech Republic)
## 437 New York, NY, USA
## 438 Palma, Majorca, Spain
## 439
## 440
## 441
## 442 Paris, France
## 443
## 444
## 445 Aarhus, Denmark
## 446
## 447 N/A
## 448
## 449
## 450
## 451
## 452 Amsterdam, the Netherlands
## 453 Copenhagen, Denmark
## 454 Traunstein, West Germany (now Germany)
## 455 Copenhagen, Denmark
## 456 Richmond, VA, USA
## 457
## 458 Boston, MA, USA
## 459 Berkeley, CA, USA
## 460 Cambridge, United Kingdom
## 461
## 462
## 463 Cambridge, United Kingdom
## 464 N/A
## 465 N/A
## 466
## 467 Waterford, CT, USA
## 468 New Jersey, NJ, USA
## 469 London, United Kingdom
## 470 Wickenberg, AZ, USA
## 471 Cambridge, MA, USA
## 472
## 473
## 474 Aberdeen, Scotland
## 475
## 476 Chicago, IL, USA
## 477 Blockley, United Kingdom
## 478 USA
## 479 Farnborough, United Kingdom
## 480 New York, NY, USA
## 481 Madrid, Spain
## 482
## 483 Lanzarote, Spain
## 484 New York, NY, USA
## 485 Boston, MA, USA
## 486
## 487 St. Louis, MO, USA
## 488
## 489
## 490 London, United Kingdom
## 491 New York, NY, USA
## 492
## 493 San Juan, Puerto Rico
## 494
## 495 Brussels, Belgium
## 496 Los Angeles, CA, USA
## 497 Rockville, MD, USA
## 498 Vienna, Austria
## 499
## 500 Ängelholm, Sweden
## 501
## 502 Klotzsche, Germany
## 503 New York, NY, USA
## 504 Munich, West Germany (now Germany)
## 505 Mülheim, West Germany (now Germany)
## 506 Newport Beach, CA, USA
## 507
## 508 Fallston, MD, USA
## 509 Kyoto, Japan
## 510 Saco, ME, USA
## 511 Palo Alto, CA, USA
## 512
## 513 N/A
## 514
## 515 Stockholm, Sweden
## 516
## 517 Grimstad, Norway
## 518 Bern, Switzerland
## 519
## 520 Burlington, MA, USA
## 521 Vienna, Austria
## 522
## 523 Cologne, West Germany (now Germany)
## 524
## 525 Coral Gables, FL, USA
## 526
## 527 Ipswich, United Kingdom
## 528 Gladwyne, PA, USA
## 529 Hanoi, Vietnam
## 530
## 531
## 532
## 533
## 534 Épernay, France
## 535 Paris, France
## 536 Rexburg, ID, USA
## 537
## 538 Minneapolis, MN, USA
## 539 Moscow, USSR (now Russia)
## 540 Zurich, Switzerland
## 541 Ottawa, Canada
## 542 Moscow, USSR (now Russia)
## 543
## 544
## 545 Big Sur, CA, USA
## 546 Shenyang, China
## 547 Tucson, AZ, USA
## 548 Edzell, Scotland
## 549 United Kingdom
## 550 Cambridge, United Kingdom
## 551 Paris, France
## 552
## 553 Brive-Corrèze, France
## 554 Barbizon, France
## 555
## 556 Geneva, Switzerland
## 557 Rome, Italy
## 558 Berkeley, CA, USA
## 559 Buenos Aires, Argentina
## 560
## 561
## 562
## 563
## 564 Göttingen, Germany
## 565 Stockholm, Sweden
## 566 San Diego, CA, USA
## 567 Sallanches, France
## 568
## 569
## 570
## 571 New York, NY, USA
## 572
## 573
## 574 Palo Alto, CA, USA
## 575 Memphis, TN, USA
## 576 Chapel Hill, NC, USA
## 577 Cambridge, United Kingdom
## 578
## 579
## 580
## 581 Paris, France
## 582 Nice, France
## 583 London, United Kingdom
## 584 Göttingen, West Germany (now Germany)
## 585 Pasadena, CA, USA
## 586 Cambridge, United Kingdom
## 587 Göttingen, West Germany (now Germany)
## 588 New Haven, CT, USA
## 589 Berlin, West Germany (now Germany)
## 590
## 591
## 592 Berkeley, CA, USA
## 593 Twin Falls, ID, USA
## 594 Tel Aviv, Israel
## 595 Chicago, IL, USA
## 596
## 597
## 598
## 599
## 600 Vancouver, Canada
## 601
## 602
## 603 Madrid, Spain
## 604
## 605 Veshenskaya, USSR (now Russia)
## 606 San Francisco, CA, USA
## 607
## 608
## 609 Calcutta, India
## 610
## 611 Santa Fe, NM, USA
## 612
## 613
## 614 Johannesburg, South Africa
## 615 Cairo, Egypt
## 616
## 617 Uppsala, Sweden
## 618
## 619 Stockholm, Sweden
## 620 Johannesburg, South Africa
## 621 New York, NY, USA
## 622 Tucson, AZ, USA
## 623 Moscow, Russia
## 624 Copenhagen, Denmark
## 625 Castillon-du-Gard, France
## 626 Copenhagen, Denmark
## 627 Oxford, United Kingdom
## 628 Moscow, USSR (now Russia)
## 629 Dallas, TX, USA
## 630 Wayland, MA, USA
## 631 Birmingham, United Kingdom
## 632 Mexico City, Mexico
## 633 Oslo, Norway
## 634 Athens, Greece
## 635
## 636
## 637
## 638
## 639 Chapel Hill, NC, USA
## 640
## 641
## 642 Nagasaki, Japan
## 643
## 644 Kiel, West Germany (now Germany)
## 645 Göttingen, West Germany (now Germany)
## 646 New York, NY, USA
## 647 Philadelphia, PA, USA
## 648 Berkeley, CA, USA
## 649 Göttingen, Germany
## 650 West Berlin, West Germany (now Germany)
## 651 Berkeley, CA, USA
## 652 Alton, United Kingdom
## 653 Santiago, Chile
## 654 Stockholm, Sweden
## 655 London, United Kingdom
## 656
## 657 Sydney, Australia
## 658 Belmont, MA, USA
## 659 Tallahassee, FL, USA
## 660
## 661 Urbana, IL, USA
## 662 Los Angeles, CA, USA
## 663 Bad Homburg vor der Höhe, Germany
## 664 New York, NY, USA
## 665 Paris, France
## 666 Munich, Germany
## 667
## 668 Big Sur, CA, USA
## 669 Zurich, Switzerland
## 670
## 671
## 672
## 673 Basel, Switzerland
## 674 Toulouse, France
## 675 USSR (now Russia)
## 676 Danby, VT, USA
## 677 Randolph, NH, USA
## 678
## 679
## 680
## 681
## 682 Ithaca, NY, USA
## 683 Jülich, Germany
## 684
## 685
## 686 London, United Kingdom
## 687 Bodmin, United Kingdom
## 688 New York, NY, USA
## 689 London, United Kingdom
## 690 Ocho Rios, Jamaica
## 691 Princeton, NJ, USA
## 692 Messelhausen, Germany
## 693
## 694 Paris, France
## 695 Orsay, France
## 696 Amsterdam, the Netherlands
## 697 Dallas, TX, USA
## 698
## 699 Moscow, USSR (now Russia)
## 700 Calcutta, India
## 701 Oslo, Norway
## 702 Stockholm, Sweden
## 703
## 704 New York, NY, USA
## 705 N/A
## 706 London, United Kingdom
## 707
## 708 Blue Point, NY, USA
## 709 Poznan, Poland
## 710 La Jolla, CA, USA
## 711 Paris, France
## 712 La Jolla, CA, USA
## 713
## 714 Houston, TX, USA
## 715 Stanford, CA, USA
## 716 Manila, Philippines
## 717
## 718
## 719
## 720 Heidelberg, West Germany (now Germany)
## 721 Norwich, United Kingdom
## 722 Los Angeles, CA, USA
## 723
## 724
## 725 Cambridge, United Kingdom
## 726 Locarno, Switzerland
## 727 Göttingen, Germany
## 728
## 729 Rome, Italy
## 730
## 731 San Marino, CA, USA
## 732
## 733 Cambridge, MA, USA
## 734 Uppsala, Sweden
## 735
## 736 Ithaca, NY, USA
## 737 Tunbridge Wells, United Kingdom
## 738
## 739
## 740
## 741 Seattle, WA, USA
## 742 Cambridge, United Kingdom
## 743
## 744 Stanford, CA, USA
## 745
## 746
## 747
## 748
## 749 Baden-Baden, Germany
## 750
## 751
## 752 Arlington, VA, USA
## 753 Tallahassee, FL, USA
## 754 Oak Lawn, IL, USA
## 755 Los Gatos, CA, USA
## 756
## 757
## 758 Winchester, United Kingdom
## 759
## 760
## 761
## 762 Bellême, France
## 763 Pasadena, CA, USA
## 764 Eugene, OR, USA
## 765
## 766 Vézelay, France
## 767 Cambridge, United Kingdom
## 768 Chicago, IL, USA
## 769 Putney Heath, United Kingdom
## 770 New York, NY, USA
## 771 Newton, MA, USA
## 772 Jena, Germany
## 773 N/A
## 774
## 775 London, United Kingdom
## 776
## 777
## 778 Presqu'île-de-Giens, France
## 779 Lexington, MA, USA
## 780 Naples, Italy
## 781 Paris, France
## 782
## 783 Madrid, Spain
## 784
## 785 Brookline, MA, USA
## 786
## 787 Dublin, Ireland
## 788 Dublin, Ireland
## 789 Mårbacka, Sweden
## 790 Hyannis, MA, USA
## 791
## 792 Madrid, Spain
## 793
## 794 Tel Aviv, Israel
## 795
## 796
## 797 Rehovot, Israel
## 798
## 799
## 800 Lillehammer, Norway
## 801 Cambridge, MA, USA
## 802 Geneva, Switzerland
## 803 Tokyo, Japan
## 804 Rome, Italy
## 805 London, United Kingdom
## 806 Bridgetown, Barbados
## 807 London, United Kingdom
## 808 London, United Kingdom
## 809 Bangalore, India
## 810 Eastbourne, United Kingdom
## 811 London, United Kingdom
## 812 Melbourne, Australia
## 813 Cambridge, United Kingdom
## 814
## 815 Lewes, East Sussex, United Kingdom
## 816 Cambridge, United Kingdom
## 817 Oxford, United Kingdom
## 818
## 819 N/A
## 820
## 821 Contra, Switzerland
## 822
## 823 Milton Keynes, United Kingdom
## 824 Croydon, United Kingdom
## 825
## 826
## 827 N/A
## 828 Great Missenden, United Kingdom
## 829 High Wycombe, United Kingdom
## 830 New York, NY, USA
## 831
## 832 Nashville, TN, USA
## 833
## 834
## 835
## 836 Chicago, IL, USA
## 837 Châtenay, France
## 838 Stockholm, Sweden
## 839
## 840 Stockholm, Sweden
## 841
## 842 Singapore
## 843 London, United Kingdom
## 844 Basel, Switzerland
## 845
## 846
## 847
## 848
## 849 Örebro, Sweden
## 850 Bern, Switzerland
## 851 Charlottenburg, Germany
## 852
## 853 Oyster Bay, NY, USA
## 854 Cambridge, MA, USA
## 855 Evanston, IL, USA
## 856 Branford, CT, USA
## 857 Bethesda, MD, USA
## 858
## 859 Pasadena, CA, USA
## 860 Needham, MA, USA
## 861
## 862 Zurich, Switzerland
## 863
## 864
## 865 New Haven, CT, USA
## 866 the Hague, the Netherlands
## 867
## 868 Stockholm, Sweden
## 869 New York, NY, USA
## 870
## 871
## 872 Oslo, Norway
## 873
## 874
## 875 Stockholm, Sweden
## 876
## 877
## 878
## 879 London, United Kingdom
## 880 Princeton, NJ, USA
## 881
## 882 Övralid, Sweden
## 883
## 884 Madrid, Spain
## 885 Mount Verno, NY, USA
## 886 Lyon, France
## 887 White Plains, NY, USA
## 888 N/A
## 889 Zurich, Switzerland
## 890
## 891 Seattle, WA, USA
## 892 Ascona, Switzerland
## 893 Santa Barbara, CA, USA
## 894 Heidelberg, West Germany (now Germany)
## 895 Muskau, Germany
## 896 Nairobi, Kenya
## 897 New York, NY, USA
## 898 Salamanca, Spain
## 899
## 900 Schopfheim, West Germany (now Germany)
## 901 Munich, West Germany (now Germany)
## 902 Munich, Germany
## 903 Leipzig, Germany
## 904 Munich, Germany
## 905 Los Angeles, CA, USA
## 906 Truro, NS, Canada
## 907 Leiden, the Netherlands
## 908 Pasadena, CA, USA
## 909 Palo Alto, CA, USA
## 910 London, United Kingdom
## 911 Roquebrune-Cap-Martin, France
## 912
## 913
## 914
## 915
## 916 Berkeley, CA, USA
## 917
## 918 Byhalia, MS, USA
## 919
## 920 Perranarworthal, United Kingdom
## 921 New York, NY, USA
## 922 Chesterfield, MO, USA
## 923 Cambridge, MA, USA
## 924 Brookline, MA, USA
## 925 Harrison, NY, USA
## 926 Tucson, AZ, USA
## 927 Unkel, Germany
## 928 London, United Kingdom
## 929 Kraków, Poland
## 930 Warsaw, Poland
## 931
## 932
## 933 Bonn, Germany
## 934 Zurich, Switzerland
## 935 Washington, DC, USA
## 936 Paris, France
## 937 Zushi, Japan
## 938 Tel Aviv, Israel
## 939 Osaka, Japan
## 940
## 941
## 942 Tours, France
## 943 St. Petersburg, Russia
## 944 Cambridge, United Kingdom
## 945
## 946 Boston, MA, USA
## 947 Big Sur, CA, USA
## 948 Sallanches, France
## 949
## 950
## orgName
## 1
## 2
## 3
## 4
## 5
## 6
## 7
## 8
## 9
## 10
## 11
## 12
## 13
## 14
## 15
## 16
## 17
## 18
## 19
## 20
## 21
## 22
## 23
## 24
## 25
## 26
## 27
## 28
## 29
## 30
## 31
## 32
## 33
## 34
## 35
## 36
## 37
## 38
## 39
## 40
## 41
## 42
## 43
## 44
## 45
## 46
## 47
## 48 American Friends Service Committee
## 49 Amnesty International
## 50
## 51
## 52
## 53
## 54
## 55
## 56
## 57
## 58
## 59
## 60
## 61
## 62
## 63
## 64
## 65
## 66
## 67
## 68
## 69
## 70
## 71
## 72
## 73
## 74
## 75
## 76
## 77
## 78
## 79
## 80
## 81
## 82
## 83
## 84
## 85
## 86
## 87
## 88
## 89
## 90
## 91
## 92
## 93
## 94
## 95
## 96
## 97
## 98
## 99
## 100
## 101
## 102
## 103
## 104
## 105
## 106
## 107
## 108
## 109
## 110
## 111
## 112
## 113
## 114
## 115
## 116
## 117
## 118
## 119
## 120
## 121
## 122
## 123
## 124
## 125
## 126
## 127
## 128
## 129
## 130
## 131
## 132
## 133
## 134
## 135
## 136
## 137
## 138
## 139
## 140
## 141
## 142
## 143
## 144
## 145
## 146
## 147
## 148
## 149
## 150
## 151
## 152
## 153
## 154
## 155
## 156
## 157
## 158
## 159
## 160
## 161
## 162
## 163
## 164
## 165
## 166
## 167
## 168
## 169
## 170
## 171
## 172
## 173
## 174
## 175
## 176
## 177
## 178
## 179
## 180
## 181
## 182
## 183
## 184
## 185
## 186
## 187
## 188
## 189
## 190
## 191
## 192
## 193
## 194
## 195
## 196
## 197
## 198
## 199
## 200
## 201
## 202
## 203
## 204
## 205
## 206
## 207
## 208
## 209
## 210
## 211
## 212
## 213
## 214
## 215
## 216
## 217
## 218
## 219
## 220
## 221
## 222
## 223
## 224
## 225
## 226
## 227
## 228
## 229
## 230
## 231
## 232
## 233
## 234
## 235
## 236
## 237 European Union (EU)
## 238
## 239
## 240
## 241
## 242
## 243
## 244
## 245
## 246
## 247
## 248
## 249
## 250
## 251
## 252
## 253
## 254
## 255
## 256
## 257
## 258
## 259
## 260
## 261
## 262
## 263
## 264
## 265
## 266
## 267
## 268
## 269
## 270
## 271 Friends Service Council
## 272
## 273
## 274
## 275
## 276
## 277
## 278
## 279
## 280
## 281
## 282
## 283
## 284
## 285
## 286
## 287
## 288
## 289
## 290
## 291
## 292
## 293
## 294
## 295
## 296
## 297
## 298
## 299
## 300
## 301
## 302
## 303
## 304
## 305
## 306
## 307
## 308
## 309
## 310
## 311
## 312
## 313
## 314
## 315
## 316
## 317
## 318
## 319
## 320
## 321 Grameen Bank
## 322
## 323
## 324
## 325
## 326
## 327
## 328
## 329
## 330
## 331
## 332
## 333
## 334
## 335
## 336
## 337
## 338
## 339
## 340
## 341
## 342
## 343
## 344
## 345
## 346
## 347
## 348
## 349
## 350
## 351
## 352
## 353
## 354
## 355
## 356
## 357
## 358
## 359
## 360
## 361
## 362
## 363
## 364
## 365
## 366
## 367
## 368
## 369
## 370
## 371
## 372
## 373
## 374
## 375
## 376
## 377
## 378
## 379
## 380
## 381
## 382
## 383
## 384
## 385
## 386
## 387 Institute of International Law
## 388 Intergovernmental Panel on Climate Change
## 389 International Atomic Energy Agency
## 390 International Campaign to Abolish Nuclear Weapons (ICAN)
## 391 International Campaign to Ban Landmines
## 392 International Committee of the Red Cross
## 393 International Labour Organization
## 394 International Physicians for the Prevention of Nuclear War
## 395
## 396
## 397
## 398
## 399
## 400
## 401
## 402
## 403
## 404
## 405
## 406
## 407
## 408
## 409
## 410
## 411
## 412
## 413
## 414
## 415
## 416
## 417
## 418
## 419
## 420
## 421
## 422
## 423
## 424
## 425
## 426
## 427
## 428
## 429
## 430
## 431
## 432
## 433
## 434
## 435
## 436
## 437
## 438
## 439
## 440
## 441
## 442
## 443
## 444
## 445
## 446
## 447
## 448
## 449
## 450
## 451
## 452
## 453
## 454
## 455
## 456
## 457
## 458
## 459
## 460
## 461
## 462
## 463
## 464
## 465
## 466
## 467
## 468
## 469
## 470
## 471
## 472
## 473
## 474
## 475
## 476
## 477
## 478
## 479
## 480
## 481
## 482
## 483
## 484
## 485
## 486
## 487
## 488
## 489
## 490
## 491
## 492
## 493
## 494
## 495
## 496
## 497
## 498
## 499
## 500
## 501
## 502
## 503
## 504
## 505
## 506
## 507
## 508
## 509
## 510
## 511
## 512
## 513
## 514
## 515
## 516
## 517
## 518
## 519
## 520
## 521
## 522
## 523
## 524
## 525
## 526
## 527
## 528
## 529
## 530 League of Red Cross Societies
## 531
## 532
## 533
## 534
## 535
## 536
## 537
## 538
## 539
## 540
## 541
## 542
## 543
## 544
## 545
## 546
## 547
## 548
## 549
## 550
## 551
## 552
## 553
## 554
## 555
## 556
## 557
## 558
## 559
## 560
## 561
## 562
## 563
## 564
## 565
## 566
## 567
## 568
## 569
## 570
## 571
## 572
## 573
## 574
## 575
## 576
## 577
## 578
## 579
## 580
## 581
## 582
## 583
## 584
## 585
## 586
## 587
## 588
## 589
## 590
## 591 Médecins Sans Frontières
## 592
## 593
## 594
## 595
## 596
## 597
## 598
## 599
## 600
## 601
## 602
## 603
## 604
## 605
## 606
## 607
## 608
## 609
## 610
## 611
## 612
## 613
## 614
## 615
## 616 Nansen International Office for Refugees
## 617
## 618 National Dialogue Quartet
## 619
## 620
## 621
## 622
## 623
## 624
## 625
## 626
## 627
## 628
## 629
## 630
## 631
## 632
## 633
## 634
## 635 Office of the United Nations High Commissioner for Refugees
## 636
## 637
## 638
## 639
## 640 Organisation for the Prohibition of Chemical Weapons
## 641
## 642
## 643
## 644
## 645
## 646
## 647
## 648
## 649
## 650
## 651
## 652
## 653
## 654
## 655
## 656
## 657
## 658
## 659
## 660
## 661
## 662
## 663
## 664
## 665
## 666
## 667
## 668
## 669
## 670
## 671
## 672
## 673
## 674
## 675
## 676
## 677
## 678 Permanent International Peace Bureau
## 679
## 680
## 681
## 682
## 683
## 684
## 685
## 686
## 687
## 688
## 689
## 690
## 691
## 692
## 693
## 694
## 695
## 696
## 697
## 698 Pugwash Conferences on Science and World Affairs
## 699
## 700
## 701
## 702
## 703
## 704
## 705
## 706
## 707
## 708
## 709
## 710
## 711
## 712
## 713
## 714
## 715
## 716
## 717
## 718
## 719
## 720
## 721
## 722
## 723
## 724
## 725
## 726
## 727
## 728
## 729
## 730
## 731
## 732
## 733
## 734
## 735
## 736
## 737
## 738
## 739
## 740
## 741
## 742
## 743
## 744
## 745
## 746
## 747
## 748
## 749
## 750
## 751
## 752
## 753
## 754
## 755
## 756
## 757
## 758
## 759
## 760
## 761
## 762
## 763
## 764
## 765
## 766
## 767
## 768
## 769
## 770
## 771
## 772
## 773
## 774
## 775
## 776
## 777
## 778
## 779
## 780
## 781
## 782
## 783
## 784
## 785
## 786
## 787
## 788
## 789
## 790
## 791
## 792
## 793
## 794
## 795
## 796
## 797
## 798
## 799
## 800
## 801
## 802
## 803
## 804
## 805
## 806
## 807
## 808
## 809
## 810
## 811
## 812
## 813
## 814
## 815
## 816
## 817
## 818
## 819
## 820
## 821
## 822
## 823
## 824
## 825
## 826
## 827
## 828
## 829
## 830
## 831
## 832
## 833
## 834
## 835
## 836
## 837
## 838
## 839
## 840
## 841
## 842
## 843
## 844
## 845
## 846
## 847
## 848
## 849
## 850
## 851
## 852
## 853
## 854
## 855
## 856
## 857
## 858
## 859
## 860
## 861
## 862
## 863
## 864
## 865
## 866
## 867
## 868
## 869
## 870
## 871
## 872
## 873
## 874
## 875
## 876 United Nations
## 877 United Nations Children's Fund
## 878 United Nations Peacekeeping Forces
## 879
## 880
## 881
## 882
## 883
## 884
## 885
## 886
## 887
## 888
## 889
## 890
## 891
## 892
## 893
## 894
## 895
## 896
## 897
## 898
## 899
## 900
## 901
## 902
## 903
## 904
## 905
## 906
## 907
## 908
## 909
## 910
## 911
## 912
## 913
## 914
## 915
## 916
## 917
## 918
## 919
## 920
## 921
## 922
## 923
## 924
## 925
## 926
## 927
## 928
## 929
## 930
## 931
## 932
## 933
## 934
## 935
## 936
## 937
## 938
## 939
## 940
## 941
## 942
## 943
## 944
## 945 International Committee of the Red Cross
## 946
## 947
## 948
## 949 Office of the United Nations High Commissioner for Refugees
## 950 International Committee of the Red Cross
## nativeName
## 1
## 2
## 3
## 4
## 5
## 6
## 7
## 8
## 9
## 10
## 11
## 12
## 13
## 14
## 15
## 16
## 17
## 18
## 19
## 20
## 21
## 22
## 23
## 24
## 25
## 26
## 27
## 28
## 29
## 30
## 31
## 32
## 33
## 34
## 35
## 36
## 37
## 38
## 39
## 40
## 41
## 42
## 43
## 44
## 45
## 46
## 47
## 48 American Friends Service Committee (The Quakers)
## 49 Amnesty International
## 50
## 51
## 52
## 53
## 54
## 55
## 56
## 57
## 58
## 59
## 60
## 61
## 62
## 63
## 64
## 65
## 66
## 67
## 68
## 69
## 70
## 71
## 72
## 73
## 74
## 75
## 76
## 77
## 78
## 79
## 80
## 81
## 82
## 83
## 84
## 85
## 86
## 87
## 88
## 89
## 90
## 91
## 92
## 93
## 94
## 95
## 96
## 97
## 98
## 99
## 100
## 101
## 102
## 103
## 104
## 105
## 106
## 107
## 108
## 109
## 110
## 111
## 112
## 113
## 114
## 115
## 116
## 117
## 118
## 119
## 120
## 121
## 122
## 123
## 124
## 125
## 126
## 127
## 128
## 129
## 130
## 131
## 132
## 133
## 134
## 135
## 136
## 137
## 138
## 139
## 140
## 141
## 142
## 143
## 144
## 145
## 146
## 147
## 148
## 149
## 150
## 151
## 152
## 153
## 154
## 155
## 156
## 157
## 158
## 159
## 160
## 161
## 162
## 163
## 164
## 165
## 166
## 167
## 168
## 169
## 170
## 171
## 172
## 173
## 174
## 175
## 176
## 177
## 178
## 179
## 180
## 181
## 182
## 183
## 184
## 185
## 186
## 187
## 188
## 189
## 190
## 191
## 192
## 193
## 194
## 195
## 196
## 197
## 198
## 199
## 200
## 201
## 202
## 203
## 204
## 205
## 206
## 207
## 208
## 209
## 210
## 211
## 212
## 213
## 214
## 215
## 216
## 217
## 218
## 219
## 220
## 221
## 222
## 223
## 224
## 225
## 226
## 227
## 228
## 229
## 230
## 231
## 232
## 233
## 234
## 235
## 236
## 237 European Union (EU)
## 238
## 239
## 240
## 241
## 242
## 243
## 244
## 245
## 246
## 247
## 248
## 249
## 250
## 251
## 252
## 253
## 254
## 255
## 256
## 257
## 258
## 259
## 260
## 261
## 262
## 263
## 264
## 265
## 266
## 267
## 268
## 269
## 270
## 271 Friends Service Council (The Quakers)
## 272
## 273
## 274
## 275
## 276
## 277
## 278
## 279
## 280
## 281
## 282
## 283
## 284
## 285
## 286
## 287
## 288
## 289
## 290
## 291
## 292
## 293
## 294
## 295
## 296
## 297
## 298
## 299
## 300
## 301
## 302
## 303
## 304
## 305
## 306
## 307
## 308
## 309
## 310
## 311
## 312
## 313
## 314
## 315
## 316
## 317
## 318
## 319
## 320
## 321 Grameen Bank
## 322
## 323
## 324
## 325
## 326
## 327
## 328
## 329
## 330
## 331
## 332
## 333
## 334
## 335
## 336
## 337
## 338
## 339
## 340
## 341
## 342
## 343
## 344
## 345
## 346
## 347
## 348
## 349
## 350
## 351
## 352
## 353
## 354
## 355
## 356
## 357
## 358
## 359
## 360
## 361
## 362
## 363
## 364
## 365
## 366
## 367
## 368
## 369
## 370
## 371
## 372
## 373
## 374
## 375
## 376
## 377
## 378
## 379
## 380
## 381
## 382
## 383
## 384
## 385
## 386
## 387 Institut de droit international
## 388 Intergovernmental Panel on Climate Change (IPCC)
## 389 International Atomic Energy Agency (IAEA)
## 390 International Campaign to Abolish Nuclear Weapons (ICAN)
## 391 International Campaign to Ban Landmines (ICBL)
## 392 Comité international de la Croix Rouge
## 393 International Labour Organization (I.L.O.)
## 394 International Physicians for the Prevention of Nuclear War
## 395
## 396
## 397
## 398
## 399
## 400
## 401
## 402
## 403
## 404
## 405
## 406
## 407
## 408
## 409
## 410
## 411
## 412
## 413
## 414
## 415
## 416
## 417
## 418
## 419
## 420
## 421
## 422
## 423
## 424
## 425
## 426
## 427
## 428
## 429
## 430
## 431
## 432
## 433
## 434
## 435
## 436
## 437
## 438
## 439
## 440
## 441
## 442
## 443
## 444
## 445
## 446
## 447
## 448
## 449
## 450
## 451
## 452
## 453
## 454
## 455
## 456
## 457
## 458
## 459
## 460
## 461
## 462
## 463
## 464
## 465
## 466
## 467
## 468
## 469
## 470
## 471
## 472
## 473
## 474
## 475
## 476
## 477
## 478
## 479
## 480
## 481
## 482
## 483
## 484
## 485
## 486
## 487
## 488
## 489
## 490
## 491
## 492
## 493
## 494
## 495
## 496
## 497
## 498
## 499
## 500
## 501
## 502
## 503
## 504
## 505
## 506
## 507
## 508
## 509
## 510
## 511
## 512
## 513
## 514
## 515
## 516
## 517
## 518
## 519
## 520
## 521
## 522
## 523
## 524
## 525
## 526
## 527
## 528
## 529
## 530 Ligue des Sociétés de la Croix-Rouge (League of Red Cross Societies)
## 531
## 532
## 533
## 534
## 535
## 536
## 537
## 538
## 539
## 540
## 541
## 542
## 543
## 544
## 545
## 546
## 547
## 548
## 549
## 550
## 551
## 552
## 553
## 554
## 555
## 556
## 557
## 558
## 559
## 560
## 561
## 562
## 563
## 564
## 565
## 566
## 567
## 568
## 569
## 570
## 571
## 572
## 573
## 574
## 575
## 576
## 577
## 578
## 579
## 580
## 581
## 582
## 583
## 584
## 585
## 586
## 587
## 588
## 589
## 590
## 591 Médecins Sans Frontières
## 592
## 593
## 594
## 595
## 596
## 597
## 598
## 599
## 600
## 601
## 602
## 603
## 604
## 605
## 606
## 607
## 608
## 609
## 610
## 611
## 612
## 613
## 614
## 615
## 616 Office international Nansen pour les Réfugiés (Nansen International Office for Refugees)
## 617
## 618 National Dialogue Quartet
## 619
## 620
## 621
## 622
## 623
## 624
## 625
## 626
## 627
## 628
## 629
## 630
## 631
## 632
## 633
## 634
## 635 Office of the United Nations High Commissioner for Refugees
## 636
## 637
## 638
## 639
## 640 Organisation for the Prohibition of Chemical Weapons (OPCW)
## 641
## 642
## 643
## 644
## 645
## 646
## 647
## 648
## 649
## 650
## 651
## 652
## 653
## 654
## 655
## 656
## 657
## 658
## 659
## 660
## 661
## 662
## 663
## 664
## 665
## 666
## 667
## 668
## 669
## 670
## 671
## 672
## 673
## 674
## 675
## 676
## 677
## 678 Bureau international permanent de la Paix
## 679
## 680
## 681
## 682
## 683
## 684
## 685
## 686
## 687
## 688
## 689
## 690
## 691
## 692
## 693
## 694
## 695
## 696
## 697
## 698 Pugwash Conferences on Science and World Affairs
## 699
## 700
## 701
## 702
## 703
## 704
## 705
## 706
## 707
## 708
## 709
## 710
## 711
## 712
## 713
## 714
## 715
## 716
## 717
## 718
## 719
## 720
## 721
## 722
## 723
## 724
## 725
## 726
## 727
## 728
## 729
## 730
## 731
## 732
## 733
## 734
## 735
## 736
## 737
## 738
## 739
## 740
## 741
## 742
## 743
## 744
## 745
## 746
## 747
## 748
## 749
## 750
## 751
## 752
## 753
## 754
## 755
## 756
## 757
## 758
## 759
## 760
## 761
## 762
## 763
## 764
## 765
## 766
## 767
## 768
## 769
## 770
## 771
## 772
## 773
## 774
## 775
## 776
## 777
## 778
## 779
## 780
## 781
## 782
## 783
## 784
## 785
## 786
## 787
## 788
## 789
## 790
## 791
## 792
## 793
## 794
## 795
## 796
## 797
## 798
## 799
## 800
## 801
## 802
## 803
## 804
## 805
## 806
## 807
## 808
## 809
## 810
## 811
## 812
## 813
## 814
## 815
## 816
## 817
## 818
## 819
## 820
## 821
## 822
## 823
## 824
## 825
## 826
## 827
## 828
## 829
## 830
## 831
## 832
## 833
## 834
## 835
## 836
## 837
## 838
## 839
## 840
## 841
## 842
## 843
## 844
## 845
## 846
## 847
## 848
## 849
## 850
## 851
## 852
## 853
## 854
## 855
## 856
## 857
## 858
## 859
## 860
## 861
## 862
## 863
## 864
## 865
## 866
## 867
## 868
## 869
## 870
## 871
## 872
## 873
## 874
## 875
## 876 United Nations (U.N.)
## 877 United Nations Children's Fund (UNICEF)
## 878 United Nations Peacekeeping Forces
## 879
## 880
## 881
## 882
## 883
## 884
## 885
## 886
## 887
## 888
## 889
## 890
## 891
## 892
## 893
## 894
## 895
## 896
## 897
## 898
## 899
## 900
## 901
## 902
## 903
## 904
## 905
## 906
## 907
## 908
## 909
## 910
## 911
## 912
## 913
## 914
## 915
## 916
## 917
## 918
## 919
## 920
## 921
## 922
## 923
## 924
## 925
## 926
## 927
## 928
## 929
## 930
## 931
## 932
## 933
## 934
## 935
## 936
## 937
## 938
## 939
## 940
## 941
## 942
## 943
## 944
## 945 Comité international de la Croix Rouge
## 946
## 947
## 948
## 949 Office of the United Nations High Commissioner for Refugees
## 950 Comité international de la Croix Rouge
## acronym org_founded_date org_founded_city org_founded_cityNow
## 1
## 2
## 3
## 4
## 5
## 6
## 7
## 8
## 9
## 10
## 11
## 12
## 13
## 14
## 15
## 16
## 17
## 18
## 19
## 20
## 21
## 22
## 23
## 24
## 25
## 26
## 27
## 28
## 29
## 30
## 31
## 32
## 33
## 34
## 35
## 36
## 37
## 38
## 39
## 40
## 41
## 42
## 43
## 44
## 45
## 46
## 47
## 48 AFSC 1917-00-00 Washington, DC Washington, DC
## 49 1961-00-00 London London
## 50
## 51
## 52
## 53
## 54
## 55
## 56
## 57
## 58
## 59
## 60
## 61
## 62
## 63
## 64
## 65
## 66
## 67
## 68
## 69
## 70
## 71
## 72
## 73
## 74
## 75
## 76
## 77
## 78
## 79
## 80
## 81
## 82
## 83
## 84
## 85
## 86
## 87
## 88
## 89
## 90
## 91
## 92
## 93
## 94
## 95
## 96
## 97
## 98
## 99
## 100
## 101
## 102
## 103
## 104
## 105
## 106
## 107
## 108
## 109
## 110
## 111
## 112
## 113
## 114
## 115
## 116
## 117
## 118
## 119
## 120
## 121
## 122
## 123
## 124
## 125
## 126
## 127
## 128
## 129
## 130
## 131
## 132
## 133
## 134
## 135
## 136
## 137
## 138
## 139
## 140
## 141
## 142
## 143
## 144
## 145
## 146
## 147
## 148
## 149
## 150
## 151
## 152
## 153
## 154
## 155
## 156
## 157
## 158
## 159
## 160
## 161
## 162
## 163
## 164
## 165
## 166
## 167
## 168
## 169
## 170
## 171
## 172
## 173
## 174
## 175
## 176
## 177
## 178
## 179
## 180
## 181
## 182
## 183
## 184
## 185
## 186
## 187
## 188
## 189
## 190
## 191
## 192
## 193
## 194
## 195
## 196
## 197
## 198
## 199
## 200
## 201
## 202
## 203
## 204
## 205
## 206
## 207
## 208
## 209
## 210
## 211
## 212
## 213
## 214
## 215
## 216
## 217
## 218
## 219
## 220
## 221
## 222
## 223
## 224
## 225
## 226
## 227
## 228
## 229
## 230
## 231
## 232
## 233
## 234
## 235
## 236
## 237 EU 1952-00-00
## 238
## 239
## 240
## 241
## 242
## 243
## 244
## 245
## 246
## 247
## 248
## 249
## 250
## 251
## 252
## 253
## 254
## 255
## 256
## 257
## 258
## 259
## 260
## 261
## 262
## 263
## 264
## 265
## 266
## 267
## 268
## 269
## 270
## 271 1647-00-00 London London
## 272
## 273
## 274
## 275
## 276
## 277
## 278
## 279
## 280
## 281
## 282
## 283
## 284
## 285
## 286
## 287
## 288
## 289
## 290
## 291
## 292
## 293
## 294
## 295
## 296
## 297
## 298
## 299
## 300
## 301
## 302
## 303
## 304
## 305
## 306
## 307
## 308
## 309
## 310
## 311
## 312
## 313
## 314
## 315
## 316
## 317
## 318
## 319
## 320
## 321 1976-00-00 Dhaka Dhaka
## 322
## 323
## 324
## 325
## 326
## 327
## 328
## 329
## 330
## 331
## 332
## 333
## 334
## 335
## 336
## 337
## 338
## 339
## 340
## 341
## 342
## 343
## 344
## 345
## 346
## 347
## 348
## 349
## 350
## 351
## 352
## 353
## 354
## 355
## 356
## 357
## 358
## 359
## 360
## 361
## 362
## 363
## 364
## 365
## 366
## 367
## 368
## 369
## 370
## 371
## 372
## 373
## 374
## 375
## 376
## 377
## 378
## 379
## 380
## 381
## 382
## 383
## 384
## 385
## 386
## 387 1873-00-00 Ghent Ghent
## 388 1988-00-00 New York, NY New York, NY
## 389 IAEA 1957-00-00 Vienna Vienna
## 390 ICAN 2007-00-00
## 391 1992-00-00
## 392 1863-00-00 Geneva Geneva
## 393 ILO 1919-00-00 Geneva Geneva
## 394 IPPNW 1980-00-00 Boston, MA Boston, MA
## 395
## 396
## 397
## 398
## 399
## 400
## 401
## 402
## 403
## 404
## 405
## 406
## 407
## 408
## 409
## 410
## 411
## 412
## 413
## 414
## 415
## 416
## 417
## 418
## 419
## 420
## 421
## 422
## 423
## 424
## 425
## 426
## 427
## 428
## 429
## 430
## 431
## 432
## 433
## 434
## 435
## 436
## 437
## 438
## 439
## 440
## 441
## 442
## 443
## 444
## 445
## 446
## 447
## 448
## 449
## 450
## 451
## 452
## 453
## 454
## 455
## 456
## 457
## 458
## 459
## 460
## 461
## 462
## 463
## 464
## 465
## 466
## 467
## 468
## 469
## 470
## 471
## 472
## 473
## 474
## 475
## 476
## 477
## 478
## 479
## 480
## 481
## 482
## 483
## 484
## 485
## 486
## 487
## 488
## 489
## 490
## 491
## 492
## 493
## 494
## 495
## 496
## 497
## 498
## 499
## 500
## 501
## 502
## 503
## 504
## 505
## 506
## 507
## 508
## 509
## 510
## 511
## 512
## 513
## 514
## 515
## 516
## 517
## 518
## 519
## 520
## 521
## 522
## 523
## 524
## 525
## 526
## 527
## 528
## 529
## 530 1919-00-00 Paris Paris
## 531
## 532
## 533
## 534
## 535
## 536
## 537
## 538
## 539
## 540
## 541
## 542
## 543
## 544
## 545
## 546
## 547
## 548
## 549
## 550
## 551
## 552
## 553
## 554
## 555
## 556
## 557
## 558
## 559
## 560
## 561
## 562
## 563
## 564
## 565
## 566
## 567
## 568
## 569
## 570
## 571
## 572
## 573
## 574
## 575
## 576
## 577
## 578
## 579
## 580
## 581
## 582
## 583
## 584
## 585
## 586
## 587
## 588
## 589
## 590
## 591 1971-00-00 Paris Paris
## 592
## 593
## 594
## 595
## 596
## 597
## 598
## 599
## 600
## 601
## 602
## 603
## 604
## 605
## 606
## 607
## 608
## 609
## 610
## 611
## 612
## 613
## 614
## 615
## 616 1921-00-00 Geneva Geneva
## 617
## 618
## 619
## 620
## 621
## 622
## 623
## 624
## 625
## 626
## 627
## 628
## 629
## 630
## 631
## 632
## 633
## 634
## 635 UNHCR 1951-00-00 Geneva Geneva
## 636
## 637
## 638
## 639
## 640 OPCW 1997-00-00
## 641
## 642
## 643
## 644
## 645
## 646
## 647
## 648
## 649
## 650
## 651
## 652
## 653
## 654
## 655
## 656
## 657
## 658
## 659
## 660
## 661
## 662
## 663
## 664
## 665
## 666
## 667
## 668
## 669
## 670
## 671
## 672
## 673
## 674
## 675
## 676
## 677
## 678 1891-00-00 Bern Bern
## 679
## 680
## 681
## 682
## 683
## 684
## 685
## 686
## 687
## 688
## 689
## 690
## 691
## 692
## 693
## 694
## 695
## 696
## 697
## 698 1957-00-00 Pugwash Pugwash
## 699
## 700
## 701
## 702
## 703
## 704
## 705
## 706
## 707
## 708
## 709
## 710
## 711
## 712
## 713
## 714
## 715
## 716
## 717
## 718
## 719
## 720
## 721
## 722
## 723
## 724
## 725
## 726
## 727
## 728
## 729
## 730
## 731
## 732
## 733
## 734
## 735
## 736
## 737
## 738
## 739
## 740
## 741
## 742
## 743
## 744
## 745
## 746
## 747
## 748
## 749
## 750
## 751
## 752
## 753
## 754
## 755
## 756
## 757
## 758
## 759
## 760
## 761
## 762
## 763
## 764
## 765
## 766
## 767
## 768
## 769
## 770
## 771
## 772
## 773
## 774
## 775
## 776
## 777
## 778
## 779
## 780
## 781
## 782
## 783
## 784
## 785
## 786
## 787
## 788
## 789
## 790
## 791
## 792
## 793
## 794
## 795
## 796
## 797
## 798
## 799
## 800
## 801
## 802
## 803
## 804
## 805
## 806
## 807
## 808
## 809
## 810
## 811
## 812
## 813
## 814
## 815
## 816
## 817
## 818
## 819
## 820
## 821
## 822
## 823
## 824
## 825
## 826
## 827
## 828
## 829
## 830
## 831
## 832
## 833
## 834
## 835
## 836
## 837
## 838
## 839
## 840
## 841
## 842
## 843
## 844
## 845
## 846
## 847
## 848
## 849
## 850
## 851
## 852
## 853
## 854
## 855
## 856
## 857
## 858
## 859
## 860
## 861
## 862
## 863
## 864
## 865
## 866
## 867
## 868
## 869
## 870
## 871
## 872
## 873
## 874
## 875
## 876 U.N. 1945-00-00 New York, NY New York, NY
## 877 UNICEF 1946-00-00 New York, NY New York, NY
## 878 1948-00-00 New York, NY New York, NY
## 879
## 880
## 881
## 882
## 883
## 884
## 885
## 886
## 887
## 888
## 889
## 890
## 891
## 892
## 893
## 894
## 895
## 896
## 897
## 898
## 899
## 900
## 901
## 902
## 903
## 904
## 905
## 906
## 907
## 908
## 909
## 910
## 911
## 912
## 913
## 914
## 915
## 916
## 917
## 918
## 919
## 920
## 921
## 922
## 923
## 924
## 925
## 926
## 927
## 928
## 929
## 930
## 931
## 932
## 933
## 934
## 935
## 936
## 937
## 938
## 939
## 940
## 941
## 942
## 943
## 944
## 945 1863-00-00 Geneva Geneva
## 946
## 947
## 948
## 949 UNHCR 1951-00-00 Geneva Geneva
## 950 1863-00-00 Geneva Geneva
## org_founded_continent org_founded_country org_founded_countryNow
## 1
## 2
## 3
## 4
## 5
## 6
## 7
## 8
## 9
## 10
## 11
## 12
## 13
## 14
## 15
## 16
## 17
## 18
## 19
## 20
## 21
## 22
## 23
## 24
## 25
## 26
## 27
## 28
## 29
## 30
## 31
## 32
## 33
## 34
## 35
## 36
## 37
## 38
## 39
## 40
## 41
## 42
## 43
## 44
## 45
## 46
## 47
## 48 North America USA USA
## 49 Europe United Kingdom United Kingdom
## 50
## 51
## 52
## 53
## 54
## 55
## 56
## 57
## 58
## 59
## 60
## 61
## 62
## 63
## 64
## 65
## 66
## 67
## 68
## 69
## 70
## 71
## 72
## 73
## 74
## 75
## 76
## 77
## 78
## 79
## 80
## 81
## 82
## 83
## 84
## 85
## 86
## 87
## 88
## 89
## 90
## 91
## 92
## 93
## 94
## 95
## 96
## 97
## 98
## 99
## 100
## 101
## 102
## 103
## 104
## 105
## 106
## 107
## 108
## 109
## 110
## 111
## 112
## 113
## 114
## 115
## 116
## 117
## 118
## 119
## 120
## 121
## 122
## 123
## 124
## 125
## 126
## 127
## 128
## 129
## 130
## 131
## 132
## 133
## 134
## 135
## 136
## 137
## 138
## 139
## 140
## 141
## 142
## 143
## 144
## 145
## 146
## 147
## 148
## 149
## 150
## 151
## 152
## 153
## 154
## 155
## 156
## 157
## 158
## 159
## 160
## 161
## 162
## 163
## 164
## 165
## 166
## 167
## 168
## 169
## 170
## 171
## 172
## 173
## 174
## 175
## 176
## 177
## 178
## 179
## 180
## 181
## 182
## 183
## 184
## 185
## 186
## 187
## 188
## 189
## 190
## 191
## 192
## 193
## 194
## 195
## 196
## 197
## 198
## 199
## 200
## 201
## 202
## 203
## 204
## 205
## 206
## 207
## 208
## 209
## 210
## 211
## 212
## 213
## 214
## 215
## 216
## 217
## 218
## 219
## 220
## 221
## 222
## 223
## 224
## 225
## 226
## 227
## 228
## 229
## 230
## 231
## 232
## 233
## 234
## 235
## 236
## 237
## 238
## 239
## 240
## 241
## 242
## 243
## 244
## 245
## 246
## 247
## 248
## 249
## 250
## 251
## 252
## 253
## 254
## 255
## 256
## 257
## 258
## 259
## 260
## 261
## 262
## 263
## 264
## 265
## 266
## 267
## 268
## 269
## 270
## 271 Europe United Kingdom United Kingdom
## 272
## 273
## 274
## 275
## 276
## 277
## 278
## 279
## 280
## 281
## 282
## 283
## 284
## 285
## 286
## 287
## 288
## 289
## 290
## 291
## 292
## 293
## 294
## 295
## 296
## 297
## 298
## 299
## 300
## 301
## 302
## 303
## 304
## 305
## 306
## 307
## 308
## 309
## 310
## 311
## 312
## 313
## 314
## 315
## 316
## 317
## 318
## 319
## 320
## 321 Asia Bangladesh Bangladesh
## 322
## 323
## 324
## 325
## 326
## 327
## 328
## 329
## 330
## 331
## 332
## 333
## 334
## 335
## 336
## 337
## 338
## 339
## 340
## 341
## 342
## 343
## 344
## 345
## 346
## 347
## 348
## 349
## 350
## 351
## 352
## 353
## 354
## 355
## 356
## 357
## 358
## 359
## 360
## 361
## 362
## 363
## 364
## 365
## 366
## 367
## 368
## 369
## 370
## 371
## 372
## 373
## 374
## 375
## 376
## 377
## 378
## 379
## 380
## 381
## 382
## 383
## 384
## 385
## 386
## 387 Europe Belgium Belgium
## 388 North America USA USA
## 389 Europe Austria Austria
## 390 Oceania Australia Australia
## 391 North America USA USA
## 392 Europe Switzerland Switzerland
## 393 Europe Switzerland Switzerland
## 394 North America USA USA
## 395
## 396
## 397
## 398
## 399
## 400
## 401
## 402
## 403
## 404
## 405
## 406
## 407
## 408
## 409
## 410
## 411
## 412
## 413
## 414
## 415
## 416
## 417
## 418
## 419
## 420
## 421
## 422
## 423
## 424
## 425
## 426
## 427
## 428
## 429
## 430
## 431
## 432
## 433
## 434
## 435
## 436
## 437
## 438
## 439
## 440
## 441
## 442
## 443
## 444
## 445
## 446
## 447
## 448
## 449
## 450
## 451
## 452
## 453
## 454
## 455
## 456
## 457
## 458
## 459
## 460
## 461
## 462
## 463
## 464
## 465
## 466
## 467
## 468
## 469
## 470
## 471
## 472
## 473
## 474
## 475
## 476
## 477
## 478
## 479
## 480
## 481
## 482
## 483
## 484
## 485
## 486
## 487
## 488
## 489
## 490
## 491
## 492
## 493
## 494
## 495
## 496
## 497
## 498
## 499
## 500
## 501
## 502
## 503
## 504
## 505
## 506
## 507
## 508
## 509
## 510
## 511
## 512
## 513
## 514
## 515
## 516
## 517
## 518
## 519
## 520
## 521
## 522
## 523
## 524
## 525
## 526
## 527
## 528
## 529
## 530 Europe France France
## 531
## 532
## 533
## 534
## 535
## 536
## 537
## 538
## 539
## 540
## 541
## 542
## 543
## 544
## 545
## 546
## 547
## 548
## 549
## 550
## 551
## 552
## 553
## 554
## 555
## 556
## 557
## 558
## 559
## 560
## 561
## 562
## 563
## 564
## 565
## 566
## 567
## 568
## 569
## 570
## 571
## 572
## 573
## 574
## 575
## 576
## 577
## 578
## 579
## 580
## 581
## 582
## 583
## 584
## 585
## 586
## 587
## 588
## 589
## 590
## 591 Europe France France
## 592
## 593
## 594
## 595
## 596
## 597
## 598
## 599
## 600
## 601
## 602
## 603
## 604
## 605
## 606
## 607
## 608
## 609
## 610
## 611
## 612
## 613
## 614
## 615
## 616 Europe Switzerland Switzerland
## 617
## 618
## 619
## 620
## 621
## 622
## 623
## 624
## 625
## 626
## 627
## 628
## 629
## 630
## 631
## 632
## 633
## 634
## 635 Europe Switzerland Switzerland
## 636
## 637
## 638
## 639
## 640
## 641
## 642
## 643
## 644
## 645
## 646
## 647
## 648
## 649
## 650
## 651
## 652
## 653
## 654
## 655
## 656
## 657
## 658
## 659
## 660
## 661
## 662
## 663
## 664
## 665
## 666
## 667
## 668
## 669
## 670
## 671
## 672
## 673
## 674
## 675
## 676
## 677
## 678 Europe Switzerland Switzerland
## 679
## 680
## 681
## 682
## 683
## 684
## 685
## 686
## 687
## 688
## 689
## 690
## 691
## 692
## 693
## 694
## 695
## 696
## 697
## 698 North America Canada Canada
## 699
## 700
## 701
## 702
## 703
## 704
## 705
## 706
## 707
## 708
## 709
## 710
## 711
## 712
## 713
## 714
## 715
## 716
## 717
## 718
## 719
## 720
## 721
## 722
## 723
## 724
## 725
## 726
## 727
## 728
## 729
## 730
## 731
## 732
## 733
## 734
## 735
## 736
## 737
## 738
## 739
## 740
## 741
## 742
## 743
## 744
## 745
## 746
## 747
## 748
## 749
## 750
## 751
## 752
## 753
## 754
## 755
## 756
## 757
## 758
## 759
## 760
## 761
## 762
## 763
## 764
## 765
## 766
## 767
## 768
## 769
## 770
## 771
## 772
## 773
## 774
## 775
## 776
## 777
## 778
## 779
## 780
## 781
## 782
## 783
## 784
## 785
## 786
## 787
## 788
## 789
## 790
## 791
## 792
## 793
## 794
## 795
## 796
## 797
## 798
## 799
## 800
## 801
## 802
## 803
## 804
## 805
## 806
## 807
## 808
## 809
## 810
## 811
## 812
## 813
## 814
## 815
## 816
## 817
## 818
## 819
## 820
## 821
## 822
## 823
## 824
## 825
## 826
## 827
## 828
## 829
## 830
## 831
## 832
## 833
## 834
## 835
## 836
## 837
## 838
## 839
## 840
## 841
## 842
## 843
## 844
## 845
## 846
## 847
## 848
## 849
## 850
## 851
## 852
## 853
## 854
## 855
## 856
## 857
## 858
## 859
## 860
## 861
## 862
## 863
## 864
## 865
## 866
## 867
## 868
## 869
## 870
## 871
## 872
## 873
## 874
## 875
## 876 North America USA USA
## 877 North America USA USA
## 878 North America USA USA
## 879
## 880
## 881
## 882
## 883
## 884
## 885
## 886
## 887
## 888
## 889
## 890
## 891
## 892
## 893
## 894
## 895
## 896
## 897
## 898
## 899
## 900
## 901
## 902
## 903
## 904
## 905
## 906
## 907
## 908
## 909
## 910
## 911
## 912
## 913
## 914
## 915
## 916
## 917
## 918
## 919
## 920
## 921
## 922
## 923
## 924
## 925
## 926
## 927
## 928
## 929
## 930
## 931
## 932
## 933
## 934
## 935
## 936
## 937
## 938
## 939
## 940
## 941
## 942
## 943
## 944
## 945 Europe Switzerland Switzerland
## 946
## 947
## 948
## 949 Europe Switzerland Switzerland
## 950 Europe Switzerland Switzerland
## org_founded_locationString ind_or_org
## 1 Individual
## 2 Individual
## 3 Individual
## 4 Individual
## 5 Individual
## 6 Individual
## 7 Individual
## 8 Individual
## 9 Individual
## 10 Individual
## 11 Individual
## 12 Individual
## 13 Individual
## 14 Individual
## 15 Individual
## 16 Individual
## 17 Individual
## 18 Individual
## 19 Individual
## 20 Individual
## 21 Individual
## 22 Individual
## 23 Individual
## 24 Individual
## 25 Individual
## 26 Individual
## 27 Individual
## 28 Individual
## 29 Individual
## 30 Individual
## 31 Individual
## 32 Individual
## 33 Individual
## 34 Individual
## 35 Individual
## 36 Individual
## 37 Individual
## 38 Individual
## 39 Individual
## 40 Individual
## 41 Individual
## 42 Individual
## 43 Individual
## 44 Individual
## 45 Individual
## 46 Individual
## 47 Individual
## 48 Washington, DC, USA Organization
## 49 London, United Kingdom Organization
## 50 Individual
## 51 Individual
## 52 Individual
## 53 Individual
## 54 Individual
## 55 Individual
## 56 Individual
## 57 Individual
## 58 Individual
## 59 Individual
## 60 Individual
## 61 Individual
## 62 Individual
## 63 Individual
## 64 Individual
## 65 Individual
## 66 Individual
## 67 Individual
## 68 Individual
## 69 Individual
## 70 Individual
## 71 Individual
## 72 Individual
## 73 Individual
## 74 Individual
## 75 Individual
## 76 Individual
## 77 Individual
## 78 Individual
## 79 Individual
## 80 Individual
## 81 Individual
## 82 Individual
## 83 Individual
## 84 Individual
## 85 Individual
## 86 Individual
## 87 Individual
## 88 Individual
## 89 Individual
## 90 Individual
## 91 Individual
## 92 Individual
## 93 Individual
## 94 Individual
## 95 Individual
## 96 Individual
## 97 Individual
## 98 Individual
## 99 Individual
## 100 Individual
## 101 Individual
## 102 Individual
## 103 Individual
## 104 Individual
## 105 Individual
## 106 Individual
## 107 Individual
## 108 Individual
## 109 Individual
## 110 Individual
## 111 Individual
## 112 Individual
## 113 Individual
## 114 Individual
## 115 Individual
## 116 Individual
## 117 Individual
## 118 Individual
## 119 Individual
## 120 Individual
## 121 Individual
## 122 Individual
## 123 Individual
## 124 Individual
## 125 Individual
## 126 Individual
## 127 Individual
## 128 Individual
## 129 Individual
## 130 Individual
## 131 Individual
## 132 Individual
## 133 Individual
## 134 Individual
## 135 Individual
## 136 Individual
## 137 Individual
## 138 Individual
## 139 Individual
## 140 Individual
## 141 Individual
## 142 Individual
## 143 Individual
## 144 Individual
## 145 Individual
## 146 Individual
## 147 Individual
## 148 Individual
## 149 Individual
## 150 Individual
## 151 Individual
## 152 Individual
## 153 Individual
## 154 Individual
## 155 Individual
## 156 Individual
## 157 Individual
## 158 Individual
## 159 Individual
## 160 Individual
## 161 Individual
## 162 Individual
## 163 Individual
## 164 Individual
## 165 Individual
## 166 Individual
## 167 Individual
## 168 Individual
## 169 Individual
## 170 Individual
## 171 Individual
## 172 Individual
## 173 Individual
## 174 Individual
## 175 Individual
## 176 Individual
## 177 Individual
## 178 Individual
## 179 Individual
## 180 Individual
## 181 Individual
## 182 Individual
## 183 Individual
## 184 Individual
## 185 Individual
## 186 Individual
## 187 Individual
## 188 Individual
## 189 Individual
## 190 Individual
## 191 Individual
## 192 Individual
## 193 Individual
## 194 Individual
## 195 Individual
## 196 Individual
## 197 Individual
## 198 Individual
## 199 Individual
## 200 Individual
## 201 Individual
## 202 Individual
## 203 Individual
## 204 Individual
## 205 Individual
## 206 Individual
## 207 Individual
## 208 Individual
## 209 Individual
## 210 Individual
## 211 Individual
## 212 Individual
## 213 Individual
## 214 Individual
## 215 Individual
## 216 Individual
## 217 Individual
## 218 Individual
## 219 Individual
## 220 Individual
## 221 Individual
## 222 Individual
## 223 Individual
## 224 Individual
## 225 Individual
## 226 Individual
## 227 Individual
## 228 Individual
## 229 Individual
## 230 Individual
## 231 Individual
## 232 Individual
## 233 Individual
## 234 Individual
## 235 Individual
## 236 Individual
## 237 N/A Organization
## 238 Individual
## 239 Individual
## 240 Individual
## 241 Individual
## 242 Individual
## 243 Individual
## 244 Individual
## 245 Individual
## 246 Individual
## 247 Individual
## 248 Individual
## 249 Individual
## 250 Individual
## 251 Individual
## 252 Individual
## 253 Individual
## 254 Individual
## 255 Individual
## 256 Individual
## 257 Individual
## 258 Individual
## 259 Individual
## 260 Individual
## 261 Individual
## 262 Individual
## 263 Individual
## 264 Individual
## 265 Individual
## 266 Individual
## 267 Individual
## 268 Individual
## 269 Individual
## 270 Individual
## 271 London, United Kingdom Organization
## 272 Individual
## 273 Individual
## 274 Individual
## 275 Individual
## 276 Individual
## 277 Individual
## 278 Individual
## 279 Individual
## 280 Individual
## 281 Individual
## 282 Individual
## 283 Individual
## 284 Individual
## 285 Individual
## 286 Individual
## 287 Individual
## 288 Individual
## 289 Individual
## 290 Individual
## 291 Individual
## 292 Individual
## 293 Individual
## 294 Individual
## 295 Individual
## 296 Individual
## 297 Individual
## 298 Individual
## 299 Individual
## 300 Individual
## 301 Individual
## 302 Individual
## 303 Individual
## 304 Individual
## 305 Individual
## 306 Individual
## 307 Individual
## 308 Individual
## 309 Individual
## 310 Individual
## 311 Individual
## 312 Individual
## 313 Individual
## 314 Individual
## 315 Individual
## 316 Individual
## 317 Individual
## 318 Individual
## 319 Individual
## 320 Individual
## 321 Dhaka, Bangladesh Organization
## 322 Individual
## 323 Individual
## 324 Individual
## 325 Individual
## 326 Individual
## 327 Individual
## 328 Individual
## 329 Individual
## 330 Individual
## 331 Individual
## 332 Individual
## 333 Individual
## 334 Individual
## 335 Individual
## 336 Individual
## 337 Individual
## 338 Individual
## 339 Individual
## 340 Individual
## 341 Individual
## 342 Individual
## 343 Individual
## 344 Individual
## 345 Individual
## 346 Individual
## 347 Individual
## 348 Individual
## 349 Individual
## 350 Individual
## 351 Individual
## 352 Individual
## 353 Individual
## 354 Individual
## 355 Individual
## 356 Individual
## 357 Individual
## 358 Individual
## 359 Individual
## 360 Individual
## 361 Individual
## 362 Individual
## 363 Individual
## 364 Individual
## 365 Individual
## 366 Individual
## 367 Individual
## 368 Individual
## 369 Individual
## 370 Individual
## 371 Individual
## 372 Individual
## 373 Individual
## 374 Individual
## 375 Individual
## 376 Individual
## 377 Individual
## 378 Individual
## 379 Individual
## 380 Individual
## 381 Individual
## 382 Individual
## 383 Individual
## 384 Individual
## 385 Individual
## 386 Individual
## 387 Ghent, Belgium Organization
## 388 New York, NY, USA Organization
## 389 Vienna, Austria Organization
## 390 Australia Organization
## 391 USA Organization
## 392 Geneva, Switzerland Organization
## 393 Geneva, Switzerland Organization
## 394 Boston, MA, USA Organization
## 395 Individual
## 396 Individual
## 397 Individual
## 398 Individual
## 399 Individual
## 400 Individual
## 401 Individual
## 402 Individual
## 403 Individual
## 404 Individual
## 405 Individual
## 406 Individual
## 407 Individual
## 408 Individual
## 409 Individual
## 410 Individual
## 411 Individual
## 412 Individual
## 413 Individual
## 414 Individual
## 415 Individual
## 416 Individual
## 417 Individual
## 418 Individual
## 419 Individual
## 420 Individual
## 421 Individual
## 422 Individual
## 423 Individual
## 424 Individual
## 425 Individual
## 426 Individual
## 427 Individual
## 428 Individual
## 429 Individual
## 430 Individual
## 431 Individual
## 432 Individual
## 433 Individual
## 434 Individual
## 435 Individual
## 436 Individual
## 437 Individual
## 438 Individual
## 439 Individual
## 440 Individual
## 441 Individual
## 442 Individual
## 443 Individual
## 444 Individual
## 445 Individual
## 446 Individual
## 447 Individual
## 448 Individual
## 449 Individual
## 450 Individual
## 451 Individual
## 452 Individual
## 453 Individual
## 454 Individual
## 455 Individual
## 456 Individual
## 457 Individual
## 458 Individual
## 459 Individual
## 460 Individual
## 461 Individual
## 462 Individual
## 463 Individual
## 464 Individual
## 465 Individual
## 466 Individual
## 467 Individual
## 468 Individual
## 469 Individual
## 470 Individual
## 471 Individual
## 472 Individual
## 473 Individual
## 474 Individual
## 475 Individual
## 476 Individual
## 477 Individual
## 478 Individual
## 479 Individual
## 480 Individual
## 481 Individual
## 482 Individual
## 483 Individual
## 484 Individual
## 485 Individual
## 486 Individual
## 487 Individual
## 488 Individual
## 489 Individual
## 490 Individual
## 491 Individual
## 492 Individual
## 493 Individual
## 494 Individual
## 495 Individual
## 496 Individual
## 497 Individual
## 498 Individual
## 499 Individual
## 500 Individual
## 501 Individual
## 502 Individual
## 503 Individual
## 504 Individual
## 505 Individual
## 506 Individual
## 507 Individual
## 508 Individual
## 509 Individual
## 510 Individual
## 511 Individual
## 512 Individual
## 513 Individual
## 514 Individual
## 515 Individual
## 516 Individual
## 517 Individual
## 518 Individual
## 519 Individual
## 520 Individual
## 521 Individual
## 522 Individual
## 523 Individual
## 524 Individual
## 525 Individual
## 526 Individual
## 527 Individual
## 528 Individual
## 529 Individual
## 530 Paris, France Organization
## 531 Individual
## 532 Individual
## 533 Individual
## 534 Individual
## 535 Individual
## 536 Individual
## 537 Individual
## 538 Individual
## 539 Individual
## 540 Individual
## 541 Individual
## 542 Individual
## 543 Individual
## 544 Individual
## 545 Individual
## 546 Individual
## 547 Individual
## 548 Individual
## 549 Individual
## 550 Individual
## 551 Individual
## 552 Individual
## 553 Individual
## 554 Individual
## 555 Individual
## 556 Individual
## 557 Individual
## 558 Individual
## 559 Individual
## 560 Individual
## 561 Individual
## 562 Individual
## 563 Individual
## 564 Individual
## 565 Individual
## 566 Individual
## 567 Individual
## 568 Individual
## 569 Individual
## 570 Individual
## 571 Individual
## 572 Individual
## 573 Individual
## 574 Individual
## 575 Individual
## 576 Individual
## 577 Individual
## 578 Individual
## 579 Individual
## 580 Individual
## 581 Individual
## 582 Individual
## 583 Individual
## 584 Individual
## 585 Individual
## 586 Individual
## 587 Individual
## 588 Individual
## 589 Individual
## 590 Individual
## 591 Paris, France Organization
## 592 Individual
## 593 Individual
## 594 Individual
## 595 Individual
## 596 Individual
## 597 Individual
## 598 Individual
## 599 Individual
## 600 Individual
## 601 Individual
## 602 Individual
## 603 Individual
## 604 Individual
## 605 Individual
## 606 Individual
## 607 Individual
## 608 Individual
## 609 Individual
## 610 Individual
## 611 Individual
## 612 Individual
## 613 Individual
## 614 Individual
## 615 Individual
## 616 Geneva, Switzerland Organization
## 617 Individual
## 618 Organization
## 619 Individual
## 620 Individual
## 621 Individual
## 622 Individual
## 623 Individual
## 624 Individual
## 625 Individual
## 626 Individual
## 627 Individual
## 628 Individual
## 629 Individual
## 630 Individual
## 631 Individual
## 632 Individual
## 633 Individual
## 634 Individual
## 635 Geneva, Switzerland Organization
## 636 Individual
## 637 Individual
## 638 Individual
## 639 Individual
## 640 N/A Organization
## 641 Individual
## 642 Individual
## 643 Individual
## 644 Individual
## 645 Individual
## 646 Individual
## 647 Individual
## 648 Individual
## 649 Individual
## 650 Individual
## 651 Individual
## 652 Individual
## 653 Individual
## 654 Individual
## 655 Individual
## 656 Individual
## 657 Individual
## 658 Individual
## 659 Individual
## 660 Individual
## 661 Individual
## 662 Individual
## 663 Individual
## 664 Individual
## 665 Individual
## 666 Individual
## 667 Individual
## 668 Individual
## 669 Individual
## 670 Individual
## 671 Individual
## 672 Individual
## 673 Individual
## 674 Individual
## 675 Individual
## 676 Individual
## 677 Individual
## 678 Bern, Switzerland Organization
## 679 Individual
## 680 Individual
## 681 Individual
## 682 Individual
## 683 Individual
## 684 Individual
## 685 Individual
## 686 Individual
## 687 Individual
## 688 Individual
## 689 Individual
## 690 Individual
## 691 Individual
## 692 Individual
## 693 Individual
## 694 Individual
## 695 Individual
## 696 Individual
## 697 Individual
## 698 Pugwash, Canada Organization
## 699 Individual
## 700 Individual
## 701 Individual
## 702 Individual
## 703 Individual
## 704 Individual
## 705 Individual
## 706 Individual
## 707 Individual
## 708 Individual
## 709 Individual
## 710 Individual
## 711 Individual
## 712 Individual
## 713 Individual
## 714 Individual
## 715 Individual
## 716 Individual
## 717 Individual
## 718 Individual
## 719 Individual
## 720 Individual
## 721 Individual
## 722 Individual
## 723 Individual
## 724 Individual
## 725 Individual
## 726 Individual
## 727 Individual
## 728 Individual
## 729 Individual
## 730 Individual
## 731 Individual
## 732 Individual
## 733 Individual
## 734 Individual
## 735 Individual
## 736 Individual
## 737 Individual
## 738 Individual
## 739 Individual
## 740 Individual
## 741 Individual
## 742 Individual
## 743 Individual
## 744 Individual
## 745 Individual
## 746 Individual
## 747 Individual
## 748 Individual
## 749 Individual
## 750 Individual
## 751 Individual
## 752 Individual
## 753 Individual
## 754 Individual
## 755 Individual
## 756 Individual
## 757 Individual
## 758 Individual
## 759 Individual
## 760 Individual
## 761 Individual
## 762 Individual
## 763 Individual
## 764 Individual
## 765 Individual
## 766 Individual
## 767 Individual
## 768 Individual
## 769 Individual
## 770 Individual
## 771 Individual
## 772 Individual
## 773 Individual
## 774 Individual
## 775 Individual
## 776 Individual
## 777 Individual
## 778 Individual
## 779 Individual
## 780 Individual
## 781 Individual
## 782 Individual
## 783 Individual
## 784 Individual
## 785 Individual
## 786 Individual
## 787 Individual
## 788 Individual
## 789 Individual
## 790 Individual
## 791 Individual
## 792 Individual
## 793 Individual
## 794 Individual
## 795 Individual
## 796 Individual
## 797 Individual
## 798 Individual
## 799 Individual
## 800 Individual
## 801 Individual
## 802 Individual
## 803 Individual
## 804 Individual
## 805 Individual
## 806 Individual
## 807 Individual
## 808 Individual
## 809 Individual
## 810 Individual
## 811 Individual
## 812 Individual
## 813 Individual
## 814 Individual
## 815 Individual
## 816 Individual
## 817 Individual
## 818 Individual
## 819 Individual
## 820 Individual
## 821 Individual
## 822 Individual
## 823 Individual
## 824 Individual
## 825 Individual
## 826 Individual
## 827 Individual
## 828 Individual
## 829 Individual
## 830 Individual
## 831 Individual
## 832 Individual
## 833 Individual
## 834 Individual
## 835 Individual
## 836 Individual
## 837 Individual
## 838 Individual
## 839 Individual
## 840 Individual
## 841 Individual
## 842 Individual
## 843 Individual
## 844 Individual
## 845 Individual
## 846 Individual
## 847 Individual
## 848 Individual
## 849 Individual
## 850 Individual
## 851 Individual
## 852 Individual
## 853 Individual
## 854 Individual
## 855 Individual
## 856 Individual
## 857 Individual
## 858 Individual
## 859 Individual
## 860 Individual
## 861 Individual
## 862 Individual
## 863 Individual
## 864 Individual
## 865 Individual
## 866 Individual
## 867 Individual
## 868 Individual
## 869 Individual
## 870 Individual
## 871 Individual
## 872 Individual
## 873 Individual
## 874 Individual
## 875 Individual
## 876 New York, NY, USA Organization
## 877 New York, NY, USA Organization
## 878 New York, NY, USA Organization
## 879 Individual
## 880 Individual
## 881 Individual
## 882 Individual
## 883 Individual
## 884 Individual
## 885 Individual
## 886 Individual
## 887 Individual
## 888 Individual
## 889 Individual
## 890 Individual
## 891 Individual
## 892 Individual
## 893 Individual
## 894 Individual
## 895 Individual
## 896 Individual
## 897 Individual
## 898 Individual
## 899 Individual
## 900 Individual
## 901 Individual
## 902 Individual
## 903 Individual
## 904 Individual
## 905 Individual
## 906 Individual
## 907 Individual
## 908 Individual
## 909 Individual
## 910 Individual
## 911 Individual
## 912 Individual
## 913 Individual
## 914 Individual
## 915 Individual
## 916 Individual
## 917 Individual
## 918 Individual
## 919 Individual
## 920 Individual
## 921 Individual
## 922 Individual
## 923 Individual
## 924 Individual
## 925 Individual
## 926 Individual
## 927 Individual
## 928 Individual
## 929 Individual
## 930 Individual
## 931 Individual
## 932 Individual
## 933 Individual
## 934 Individual
## 935 Individual
## 936 Individual
## 937 Individual
## 938 Individual
## 939 Individual
## 940 Individual
## 941 Individual
## 942 Individual
## 943 Individual
## 944 Individual
## 945 Geneva, Switzerland Organization
## 946 Individual
## 947 Individual
## 948 Individual
## 949 Geneva, Switzerland Organization
## 950 Geneva, Switzerland Organization
## residence_1 residence_2
## 1
## 2
## 3
## 4
## 5
## 6
## 7
## 8
## 9
## 10
## 11
## 12
## 13 Argentina
## 14
## 15
## 16
## 17 USA
## 18
## 19
## 20
## 21
## 22 France
## 23
## 24
## 25
## 26 Switzerland
## 27 South Africa
## 28 France
## 29
## 30
## 31
## 32 USSR (now Russia)
## 33
## 34
## 35 Geneva, Switzerland
## 36
## 37 Austria
## 38
## 39
## 40
## 41 Canada
## 42
## 43
## 44
## 45 Sweden
## 46
## 47
## 48
## 49
## 50 France
## 51
## 52
## 53 France
## 54
## 55 USSR (now Russia)
## 56
## 57
## 58
## 59
## 60
## 61
## 62 Egypt
## 63
## 64
## 65
## 66 France
## 67
## 68
## 69
## 70
## 71
## 72
## 73 United Kingdom
## 74
## 75
## 76
## 77
## 78
## 79 Belgium
## 80 Burma (now Myanmar)
## 81
## 82
## 83 USA
## 84
## 85
## 86
## 87
## 88
## 89
## 90
## 91
## 92
## 93
## 94
## 95
## 96 Austria
## 97
## 98
## 99 United Kingdom
## 100 United Kingdom
## 101 Norway
## 102
## 103 USSR (now Russia)
## 104
## 105
## 106
## 107
## 108
## 109
## 110
## 111
## 112 Spain
## 113
## 114
## 115
## 116 Switzerland
## 117 Germany
## 118
## 119
## 120 East Timor
## 121 Argentina
## 122
## 123
## 124
## 125
## 126
## 127 USA
## 128
## 129
## 130
## 131
## 132
## 133
## 134
## 135
## 136
## 137
## 138 Norway
## 139
## 140
## 141
## 142
## 143 France
## 144
## 145
## 146
## 147 USA
## 148
## 149
## 150 Poland USA
## 151
## 152 Sweden
## 153
## 154
## 155
## 156
## 157
## 158
## 159
## 160 Italy
## 161
## 162
## 163
## 164
## 165
## 166
## 167 United Kingdom
## 168
## 169
## 170
## 171 Saint Lucia
## 172 South Africa
## 173
## 174
## 175
## 176
## 177
## 178 United Kingdom
## 179
## 180
## 181
## 182
## 183
## 184
## 185
## 186
## 187
## 188
## 189
## 190
## 191
## 192
## 193
## 194
## 195
## 196
## 197
## 198
## 199
## 200
## 201 Japan
## 202 Austria
## 203 United Kingdom
## 204
## 205 Switzerland
## 206 USA
## 207 USA
## 208
## 209
## 210 Liberia
## 211
## 212
## 213
## 214 USA
## 215
## 216
## 217
## 218
## 219
## 220
## 221 Sweden
## 222 USA
## 223
## 224
## 225
## 226 Italy
## 227
## 228
## 229
## 230
## 231
## 232
## 233
## 234 USA
## 235
## 236 Italy
## 237
## 238 Sweden
## 239
## 240
## 241 South Africa
## 242
## 243
## 244
## 245 France
## 246
## 247
## 248
## 249
## 250
## 251
## 252
## 253
## 254 France
## 255
## 256 USA
## 257
## 258 Finland
## 259
## 260 France
## 261 France
## 262
## 263
## 264
## 265
## 266
## 267 Denmark
## 268 Norway
## 269
## 270
## 271
## 272
## 273
## 274
## 275
## 276 Mexico
## 277
## 278 Chile
## 279 France
## 280
## 281
## 282
## 283
## 284
## 285
## 286
## 287 United Kingdom
## 288 USA
## 289
## 290
## 291
## 292
## 293
## 294
## 295
## 296
## 297
## 298
## 299
## 300
## 301
## 302
## 303
## 304 Belgium
## 305
## 306
## 307
## 308
## 309
## 310
## 311
## 312
## 313 Germany
## 314
## 315
## 316 Greece
## 317 Italy
## 318
## 319
## 320
## 321
## 322 Italy
## 323
## 324
## 325
## 326
## 327 Germany
## 328
## 329
## 330 Germany
## 331
## 332
## 333
## 334 Iceland
## 335
## 336
## 337
## 338
## 339
## 340
## 341
## 342
## 343
## 344
## 345
## 346 United Kingdom
## 347
## 348 Sweden
## 349
## 350
## 351 Germany
## 352
## 353
## 354
## 355
## 356 France
## 357 Belgium
## 358
## 359
## 360 Denmark
## 361 Switzerland
## 362 USA
## 363
## 364
## 365 Poland
## 366
## 367
## 368
## 369
## 370
## 371 Switzerland
## 372
## 373
## 374 Germany
## 375
## 376
## 377
## 378 Sweden
## 379
## 380
## 381
## 382
## 383
## 384
## 385
## 386 Hungary
## 387
## 388
## 389
## 390
## 391
## 392
## 393
## 394
## 395
## 396
## 397
## 398 USA
## 399
## 400
## 401
## 402
## 403
## 404 Yugoslavia (now N/A)
## 405
## 406
## 407 South Africa
## 408
## 409
## 410 Perth, Australia
## 411
## 412 Spain
## 413
## 414
## 415
## 416
## 417
## 418
## 419
## 420
## 421
## 422
## 423
## 424
## 425
## 426
## 427
## 428
## 429
## 430
## 431
## 432
## 433
## 434 USA
## 435
## 436 Czechoslovakia (now Czech Republic)
## 437
## 438
## 439
## 440 France Mauritius
## 441
## 442 France
## 443
## 444
## 445
## 446
## 447
## 448 USA
## 449
## 450 Putney, VT, USA
## 451
## 452
## 453
## 454
## 455 Denmark
## 456
## 457
## 458
## 459
## 460
## 461
## 462
## 463
## 464
## 465
## 466
## 467
## 468
## 469 United Kingdom
## 470
## 471
## 472 United Kingdom
## 473
## 474
## 475
## 476
## 477
## 478 USA
## 479
## 480 USA
## 481 Spain
## 482 East Timor
## 483 Portugal
## 484 USA
## 485
## 486
## 487
## 488
## 489
## 490 United Kingdom
## 491
## 492
## 493 Spain
## 494
## 495
## 496
## 497
## 498
## 499
## 500
## 501 India
## 502 Denmark
## 503
## 504
## 505
## 506 La Jolla, CA, USA
## 507
## 508
## 509
## 510
## 511
## 512 Japan
## 513 South Korea
## 514
## 515 Sweden
## 516
## 517 Norway
## 518 Ghana
## 519
## 520
## 521
## 522
## 523
## 524
## 525
## 526
## 527
## 528
## 529 Democratic Republic of Vietnam (now Vietnam)
## 530
## 531 Poland
## 532
## 533
## 534 France
## 535 France
## 536
## 537
## 538
## 539
## 540
## 541 Canada
## 542
## 543 Liberia
## 544
## 545
## 546 China
## 547
## 548 United Kingdom
## 549
## 550
## 551
## 552
## 553
## 554 France
## 555
## 556 Germany
## 557 Italy
## 558
## 559
## 560
## 561 United Kingdom
## 562
## 563 United Kingdom
## 564
## 565
## 566
## 567
## 568
## 569
## 570
## 571
## 572
## 573
## 574
## 575 USA
## 576
## 577
## 578 Bilthoven, the Netherlands
## 579 Finland
## 580
## 581
## 582 Belgium
## 583
## 584
## 585
## 586
## 587
## 588
## 589
## 590
## 591
## 592
## 593
## 594 Israel
## 595
## 596
## 597
## 598
## 599
## 600
## 601
## 602
## 603 Guatemala
## 604 USSR (now Russia)
## 605 USSR (now Russia)
## 606
## 607 China
## 608 Egypt
## 609 India
## 610 Bangladesh
## 611
## 612
## 613
## 614 South Africa
## 615 Egypt
## 616
## 617 Sweden
## 618
## 619 Sweden
## 620 South Africa
## 621 USA
## 622
## 623
## 624
## 625
## 626
## 627
## 628
## 629 USA
## 630
## 631
## 632 Mexico
## 633
## 634 Greece
## 635
## 636 Wroclaw, Poland
## 637
## 638
## 639
## 640
## 641 Turkey
## 642
## 643 Costa Rica
## 644
## 645
## 646
## 647
## 648
## 649
## 650
## 651
## 652
## 653 Chile
## 654 Sweden
## 655
## 656 France
## 657 Australia
## 658
## 659
## 660
## 661
## 662
## 663
## 664
## 665 France
## 666 Germany
## 667
## 668
## 669
## 670
## 671
## 672
## 673
## 674
## 675
## 676 USA
## 677
## 678
## 679
## 680
## 681
## 682
## 683
## 684 Chaville, France
## 685
## 686
## 687
## 688
## 689 United Kingdom
## 690
## 691
## 692
## 693
## 694
## 695
## 696
## 697
## 698
## 699
## 700 India
## 701
## 702
## 703
## 704 USA
## 705
## 706 United Kingdom
## 707
## 708
## 709
## 710
## 711 France
## 712
## 713
## 714
## 715
## 716
## 717
## 718
## 719
## 720
## 721
## 722
## 723
## 724
## 725
## 726
## 727
## 728 Guatemala
## 729
## 730
## 731
## 732
## 733
## 734
## 735
## 736
## 737 United Kingdom
## 738
## 739
## 740
## 741
## 742
## 743
## 744
## 745
## 746
## 747
## 748
## 749
## 750
## 751
## 752
## 753
## 754
## 755
## 756
## 757
## 758
## 759
## 760
## 761
## 762 France
## 763
## 764
## 765
## 766 France
## 767
## 768
## 769
## 770
## 771
## 772 Germany
## 773
## 774
## 775 United Kingdom
## 776
## 777
## 778 France
## 779
## 780 Italy
## 781 Ireland
## 782
## 783
## 784
## 785 USA
## 786
## 787 Ireland
## 788 Ireland
## 789 Sweden
## 790
## 791
## 792
## 793
## 794 Israel
## 795
## 796 Iran
## 797 Israel
## 798
## 799
## 800 Norway
## 801
## 802
## 803
## 804 USA
## 805
## 806
## 807 United Kingdom
## 808
## 809
## 810
## 811
## 812
## 813
## 814
## 815
## 816
## 817
## 818
## 819
## 820
## 821
## 822
## 823
## 824 United Kingdom
## 825
## 826
## 827
## 828
## 829
## 830
## 831
## 832
## 833
## 834
## 835
## 836
## 837 France
## 838
## 839
## 840
## 841 Belarus
## 842
## 843 United Kingdom
## 844
## 845
## 846
## 847 Yemen
## 848 India
## 849
## 850
## 851 Germany
## 852
## 853 USA
## 854
## 855
## 856
## 857
## 858
## 859
## 860
## 861
## 862 Germany
## 863
## 864
## 865
## 866 the Netherlands
## 867
## 868 Sweden
## 869 USA
## 870
## 871
## 872
## 873
## 874
## 875
## 876
## 877
## 878
## 879 United Kingdom
## 880
## 881
## 882 Sweden
## 883
## 884 Spain
## 885
## 886
## 887
## 888
## 889
## 890
## 891
## 892
## 893
## 894
## 895
## 896 Kenya
## 897
## 898
## 899
## 900 Bad Kreuznach, Germany
## 901
## 902
## 903
## 904
## 905
## 906
## 907
## 908
## 909
## 910
## 911 Ireland
## 912
## 913
## 914
## 915
## 916
## 917
## 918 USA
## 919
## 920 United Kingdom
## 921
## 922 St. Louis, MO, USA
## 923
## 924
## 925
## 926
## 927 Germany
## 928 United Kingdom
## 929 Poland
## 930 Poland
## 931 Nigeria
## 932
## 933
## 934
## 935 USA
## 936 Palestine
## 937 Japan
## 938 Israel
## 939
## 940
## 941
## 942
## 943
## 944
## 945
## 946
## 947
## 948
## 949
## 950
## affiliation_1
## 1 Stanford University, Stanford, CA, USA
## 2 Niels Bohr Institute, Copenhagen, Denmark
## 3 Technion - Israel Institute of Technology, Haifa, Israel
## 4 MRC Laboratory of Molecular Biology, Cambridge, United Kingdom
## 5 International Centre for Theoretical Physics, Trieste, Italy
## 6 Massachusetts Institute of Technology (MIT), Cambridge, MA, USA
## 7
## 8 Weizmann Institute of Science, Rehovot, Israel
## 9 Johns Hopkins University, Baltimore, MD, USA
## 10 Kaiser-Wilhelm-Institut (now Max-Planck-Institut) für Biochemie, Berlin-Dahlem, Germany
## 11 Munich University, Munich, Germany
## 12 Goettingen University, Göttingen, Germany
## 13
## 14 California Institute of Technology (Caltech), Pasadena, CA, USA
## 15 Hokkaido University, Sapporo, Japan
## 16 Asahi Kasei Corporation, Tokyo, Japan
## 17
## 18 University of California, Santa Barbara, CA, USA
## 19 University of Cambridge, Cambridge, United Kingdom
## 20 University of Pennsylvania, Philadelphia, PA, USA
## 21 University of Chicago, Chicago, IL, USA
## 22
## 23 Université Catholique de Louvain, Louvain, Belgium
## 24 Kaiser-Wilhelm-Institut (now Max-Planck-Institut) für Physik, Berlin, Germany
## 25 Université Paris-Sud, Orsay, France
## 26
## 27
## 28
## 29 Szeged University, Szeged, Hungary
## 30 University of Heidelberg, Heidelberg, Germany
## 31 P.N. Lebedev Physical Institute, Moscow, USSR (now Russia)
## 32
## 33 Argonne National Laboratory, Argonne, IL, USA
## 34 Rockefeller Institute for Medical Research, New York, NY, USA
## 35
## 36 Carnegie Institution of Washington, Long Island, New York, NY, USA
## 37
## 38 University of Texas Southwestern Medical Center at Dallas, Dallas, TX, USA
## 39 École Normale Supérieure, Paris, France
## 40 University of Zurich, Zurich, Switzerland
## 41
## 42 Tufts University, Medford, MA, USA
## 43 Uppsala University, Uppsala, Sweden
## 44 Institut Pasteur, Paris, France
## 45
## 46 Harvard University, Cambridge, MA, USA
## 47 Trinity College, Cambridge, United Kingdom
## 48
## 49
## 50
## 51 Columbia University Division, Cardio-Pulmonary Laboratory, Bellevue Hospital, New York, NY, USA
## 52 University of Manchester, Manchester, United Kingdom
## 53
## 54 Institut Pasteur, Paris, France
## 55
## 56 University College, London, United Kingdom
## 57 Veterans Administration Hospital, New Orleans, LA, USA
## 58 Stanford University School of Medicine, Stanford, CA, USA
## 59 Princeton University, Princeton, NJ, USA
## 60 University of Illinois, Urbana, IL, USA
## 61 University of Cambridge, Cambridge, United Kingdom
## 62
## 63 National Institute for Medical Research, London, United Kingdom
## 64 London University, London, United Kingdom
## 65 University of Southern California, Los Angeles, CA, USA
## 66
## 67 Uppsala University, Uppsala, Sweden
## 68 Bell Laboratories, Holmdel, NJ, USA
## 69 Bell Laboratories, Holmdel, NJ, USA
## 70 Queen's University, Kingston, Canada
## 71 University of Chicago, Chicago, IL, USA
## 72 London University, London, United Kingdom
## 73
## 74 Stanford University, Stanford, CA, USA
## 75 Stanford University, Stanford, CA, USA
## 76 University of Helsinki, Helsinki, Finland
## 77 Göteborg University, Gothenburg, Sweden
## 78 Copenhagen University, Copenhagen, Denmark
## 79
## 80
## 81 Technion - Israel Institute of Technology, Haifa, Israel
## 82 University of North Carolina, Chapel Hill, NC, USA
## 83
## 84 Cold Spring Harbor Laboratory, Cold Spring Harbor, NY, USA
## 85 LIGO/VIRGO Collaboration, N/A
## 86 NHMRC Helicobacter pylori Research Laboratory, QEII Medical Centre, Nedlands, Australia
## 87 The Scripps Research Institute, La Jolla, CA, USA
## 88 The Institute for Cancer Research, Philadelphia, PA, USA
## 89 Harvard Medical School, Boston, MA, USA
## 90 Nordita, Copenhagen, Denmark
## 91 Massachusetts Institute of Technology (MIT), Cambridge, MA, USA
## 92 Karolinska Institutet, Stockholm, Sweden
## 93 University of Groningen, Groningen, the Netherlands
## 94 Instituto de Biologia y Medicina Experimental (Institute for Biology and Experimental Medicine), Buenos Aires, Argentina
## 95 Max-Planck-Institut für medizinische Forschung, Heidelberg, Germany
## 96
## 97 Stockholm School of Economics, Stockholm, Sweden
## 98 McMaster University, Hamilton, Ontario, Canada
## 99
## 100
## 101
## 102
## 103
## 104 University of Cambridge, Cambridge, United Kingdom
## 105 Stanford University School of Medicine, Stanford, CA, USA
## 106 Australian National University, Weston Creek, Australia
## 107 University of Texas Southwestern Medical Center at Dallas, Dallas, TX, USA
## 108 Rockefeller University, New York, NY, USA
## 109 Stanford Linear Accelerator Center, Stanford, CA, USA
## 110 University of Cambridge, Cambridge, United Kingdom
## 111 Pavia University, Pavia, Italy
## 112
## 113 University of Heidelberg, Heidelberg, Germany
## 114 Washington University, St. Louis, MO, USA
## 115 California Institute of Technology (Caltech), Pasadena, CA, USA
## 116
## 117
## 118 University of Colorado, JILA, Boulder, CO, USA
## 119 CERN, Geneva, Switzerland
## 120
## 121
## 122 Johns Hopkins University School of Medicine, Baltimore, MD, USA
## 123 Bristol University, Bristol, United Kingdom
## 124 MRC Laboratory of Molecular Biology, Cambridge, United Kingdom
## 125 University of Chicago, Ben May Laboratory for Cancer Research, Chicago, IL, USA
## 126 Bureau International des Poids et Mesures (International Bureau of Weights and Measures), Sèvres, France
## 127
## 128 Edinburgh University, Edinburgh, United Kingdom
## 129 Massachusetts Institute of Technology (MIT), Cambridge, MA, USA
## 130 Du Pont, Wilmington, DE, USA
## 131 Standard Telecommunication Laboratories, Harlow, United Kingdom
## 132 Institut Pasteur, Tunis, Tunisia
## 133 Sorbonne University, Paris, France
## 134 Institute for Advanced Study, Princeton, NJ, USA
## 135 Utrecht University, Utrecht, the Netherlands
## 136 National Institutes of Health, Bethesda, MD, USA
## 137 Rockefeller University, New York, NY, USA
## 138
## 139 Max-Planck-Institut für Entwicklungsbiologie, Tübingen, Germany
## 140 London School of Economics and Political Science, London, United Kingdom
## 141 Princeton University, Princeton, NJ, USA
## 142 Collège de France, Paris, France
## 143
## 144 Massachusetts Institute of Technology (MIT), Cambridge, MA, USA
## 145 Bell Telephone Laboratories, New York, NY, USA
## 146 University of California, San Diego, CA, USA
## 147
## 148 Ghent University, Ghent, Belgium
## 149 University of Massachusetts Medical School, Worcester, MA, USA
## 150
## 151 National Institutes of Health, Bethesda, MD, USA
## 152
## 153 Northwestern University, Evanston, IL, USA
## 154 Technion - Israel Institute of Technology, Haifa, Israel
## 155 Istituto Superiore di Sanità (Chief Institute of Public Health), Rome, Italy
## 156 Princeton University, Princeton, NJ, USA
## 157 Princeton University, Princeton, NJ, USA
## 158 University of California, Berkeley, CA, USA
## 159 Johns Hopkins University School of Medicine, Baltimore, MD, USA
## 160
## 161 Massachusetts Institute of Technology (MIT), Cambridge, MA, USA
## 162 Harvard Medical School, Boston, MA, USA
## 163 University of California, Kavli Institute for Theoretical Physics, Santa Barbara, CA, USA
## 164 University of Washington, Seattle, WA, USA
## 165 National Institute of Standards and Technology, Boulder, CO, USA
## 166 Cornell University, Ithaca, NY, USA
## 167
## 168
## 169 Imperial College, London, United Kingdom
## 170 Imperial College, London, United Kingdom
## 171
## 172
## 173 Columbia University, New York, NY, USA
## 174 University of Geneva, Geneva, Switzerland
## 175 University of California, Berkeley, CA, USA
## 176 University of California, Los Angeles, CA, USA
## 177 University of Waterloo, Waterloo, Canada
## 178
## 179 University of Oxford, Royal Society, Oxford, United Kingdom
## 180 Stanford University, Stanford, CA, USA
## 181 Washington University, St. Louis, MO, USA
## 182 Harvard University, Cambridge, MA, USA
## 183 Fred Hutchinson Cancer Research Center, Seattle, WA, USA
## 184 Harvard University, Cambridge, MA, USA
## 185 Vanderbilt University, Nashville, TN, USA
## 186 University of Cambridge, Cambridge, United Kingdom
## 187 University of Washington, Seattle, WA, USA
## 188 Columbia University, New York, NY, USA
## 189 Landwirtschaftliche Hochschule (Agricultural College), Berlin, Germany
## 190 Norwegian University of Science and Technology (NTNU), Trondheim, Norway
## 191 Saint Louis University, St. Louis, MO, USA
## 192 California Institute of Technology (Caltech), Pasadena, CA, USA
## 193 Mayo Clinic, Rochester, MN, USA
## 194 Arizona State University, Tempe, AZ, USA
## 195 Rockefeller Institute for Medical Research, New York, NY, USA
## 196 Department of Scientific and Industrial Research, London, United Kingdom
## 197 University of Washington, Seattle, WA, USA
## 198 University of California, Berkeley, CA, USA
## 199 University of Lisbon, Lisbon, Portugal
## 200 Purdue University, West Lafayette, IN, USA
## 201
## 202
## 203
## 204 Harvard University, Cambridge, MA, USA
## 205
## 206
## 207
## 208 Indiana University, Bloomington, IN, USA
## 209 University of California, San Francisco, CA, USA
## 210
## 211 Berlin University, Berlin, Germany
## 212 Marburg University, Marburg, Germany
## 213 University of California, Berkeley, CA, USA
## 214
## 215 Rome University, Rome, Italy
## 216 Janelia Research Campus, Howard Hughes Medical Institute, Ashburn, VA, USA
## 217 University of Colorado, JILA, Boulder, CO, USA
## 218 Princeton University, Princeton, NJ, USA
## 219 Columbia University, New York, NY, USA
## 220 Institute for Advanced Study, Princeton, NJ, USA
## 221
## 222
## 223 University of California, Berkeley, CA, USA
## 224 Victoria University, Manchester, United Kingdom
## 225 Trinity College, Dublin, Ireland
## 226
## 227 University of Oxford, Oxford, United Kingdom
## 228 Technical University, Munich, Germany
## 229 Fritz-Haber-Institut der Max-Planck-Gesellschaft, Berlin, Germany
## 230 Max-Planck-Institut für Biophysikalische Chemie, Göttingen, Germany
## 231 Berlin University, Berlin, Germany
## 232 Massachusetts Institute of Technology (MIT), Cambridge, MA, USA
## 233 University of Chicago, Chicago, IL, USA
## 234
## 235 Princeton University, Princeton, NJ, USA
## 236
## 237
## 238
## 239 Princeton University, Princeton, NJ, USA
## 240 University of California, Irvine, CA, USA
## 241
## 242 Stanford University, Stanford, CA, USA
## 243 Max-Planck-Institut für Zellchemie, Munich, Germany
## 244 Strasbourg University, Strasbourg, Germany (now France)
## 245
## 246 University of Texas Medical School at Houston, Houston, TX, USA
## 247 Carnegie Mellon University, Pittsburgh, PA, USA
## 248 California Institute of Technology (Caltech), Pasadena, CA, USA
## 249 MRC Laboratory of Molecular Biology, Cambridge, United Kingdom
## 250 University of Cambridge, Cambridge, United Kingdom
## 251 Massachusetts Institute of Technology (MIT), Cambridge, MA, USA
## 252 Université Libre de Bruxelles, Brussels, Belgium
## 253 Institut Pasteur, Paris, France
## 254
## 255 Regulation of Retroviral Infections Unit, Virology Department, Institut Pasteur, Paris, France
## 256
## 257 Massachusetts Institute of Technology (MIT), Cambridge, MA, USA
## 258
## 259 Institut du Radium, Paris, France
## 260
## 261
## 262 Western Reserve University, Cleveland, OH, USA
## 263 University of Toronto, Toronto, Canada
## 264 University of California, Irvine, CA, USA
## 265 University of Cambridge, Cambridge, United Kingdom
## 266 University of Oxford, Oxford, United Kingdom
## 267
## 268
## 269 University of Heidelberg, Heidelberg, Germany
## 270
## 271
## 272 Groningen University, Groningen, the Netherlands
## 273 Kaiser-Wilhelm-Institut (now Fritz-Haber-Institut) für physikalische Chemie und Electrochemie, Berlin-Dahlem, Germany
## 274 Harvard Medical School, Boston, MA, USA
## 275 Graz University, Graz, Austria
## 276
## 277 Sorbonne University, Paris, France
## 278
## 279
## 280 University of Chicago, Chicago, IL, USA
## 281 Imperial College, London, United Kingdom
## 282 Harvard University, Cambridge, MA, USA
## 283 University of Heidelberg, Heidelberg, Germany
## 284 University of California, Berkeley, CA, USA
## 285 University of Southern California, Los Angeles, CA, USA
## 286 California Institute of Technology (Caltech), Pasadena, CA, USA
## 287
## 288
## 289 Jackson Laboratory, Bar Harbor, ME, USA
## 290 Stockholm University, Stockholm, Sweden
## 291 Yale University, School of Medicine, New Haven, CT, USA
## 292 Bell Laboratories, Murray Hill, NJ, USA
## 293 University of California, Berkeley, CA, USA
## 294 Wellcome Research Laboratories, Research Triangle Park, NC, USA
## 295 University of Rochester, Rochester, NY, USA
## 296 University of Chicago, Chicago, IL, USA
## 297 University of Missouri, Columbia, USA
## 298 London University, London, United Kingdom
## 299 Royal Institution of Great Britain, London, United Kingdom
## 300 Harvard University, Cambridge, MA, USA
## 301 Harvard University, Cambridge, MA, USA
## 302 École Supérieure de Physique et Chimie, Paris, France
## 303 Basel Institute for Immunology, Basel, Switzerland
## 304
## 305 Rockefeller University, New York, NY, USA
## 306 University of California, Berkeley, CA, USA
## 307 École Polytechnique, Palaiseau, France
## 308 Utrecht University, Utrecht, the Netherlands
## 309 IBM Zurich Research Laboratory, Rüschlikon, Switzerland
## 310 Munster University, Munster, Germany
## 311 Fritz-Haber-Institut der Max-Planck-Gesellschaft, Berlin, Germany
## 312 National Research Council of Canada, Ottawa, Canada
## 313
## 314 Wellcome Research Laboratories, Research Triangle Park, NC, USA
## 315 Washington University, St. Louis, MO, USA
## 316
## 317
## 318 Institute of Technology, Milan, Italy
## 319 University of California, Berkeley, CA, USA
## 320 Central Research Laboratories, EMI, London, United Kingdom
## 321
## 322
## 323 Johns Hopkins University, Baltimore, MD, USA
## 324 Marconi Wireless Telegraph Co. Ltd., London, United Kingdom
## 325
## 326 Rockefeller University, New York, NY, USA
## 327
## 328 Swedish Gas-Accumulator Co., Lidingö, Stockholm, Sweden
## 329 Halle University, Halle, Germany
## 330
## 331 California Institute of Technology (Caltech), Pasadena, CA, USA
## 332 University of Wisconsin, Madison, WI, USA
## 333 Massachusetts Institute of Technology (MIT), Cambridge, MA, USA
## 334
## 335 Johns Hopkins University School of Medicine, Baltimore, MD, USA
## 336 Royal Institute of Technology, Stockholm, Sweden
## 337 Cornell University, Ithaca, NY, USA
## 338 Technische Hochschule (Institute of Technology), Munich, Germany
## 339 University of Washington, Seattle, WA, USA
## 340 Sheffield University, Sheffield, United Kingdom
## 341 University of Freiburg im Breisgau, Breisgau, Germany
## 342 Stockholm University, Stockholm, Sweden
## 343 German Cancer Research Center, Heidelberg, Germany
## 344 Columbia University, New York, NY, USA
## 345 University of California School of Medicine, San Francisco, CA, USA
## 346
## 347 City University of New York, New York, NY, USA
## 348
## 349 Max-Planck-Institut für Biophysik, Frankfurt-on-the-Main, Germany
## 350 Leiden University, Leiden, the Netherlands
## 351
## 352 IBM Zurich Research Laboratory, Rüschlikon, Switzerland
## 353 Munich University, Munich, Germany
## 354 Leiden University, Leiden, the Netherlands
## 355 École Polytechnique, Paris, France
## 356
## 357
## 358 Sorbonne University, Paris, France
## 359 Polytechnic Institute, Copenhagen, Denmark
## 360
## 361
## 362
## 363 Stanford University, Stanford, CA, USA
## 364 Massachusetts Institute of Technology (MIT), Cambridge, MA, USA
## 365
## 366 The Medical Foundation of Buffalo, Buffalo, NY, USA
## 367 Purdue University, West Lafayette, IN, USA
## 368 University of California, Santa Barbara, CA, USA
## 369 Rockefeller Institute for Medical Research, New York, NY, USA
## 370 Carnegie Mellon University, Pittsburgh, PA, USA
## 371
## 372 Indiana University, Bloomington, IN, USA
## 373 University of Freiburg, Breisgau, Germany
## 374
## 375 University of Tsukuba, Tokyo, Japan
## 376 Kyoto Imperial University, Kyoto, Japan
## 377 Nagoya University, Nagoya, Japan
## 378
## 379 Columbia University, New York, NY, USA
## 380 University of Wisconsin, Madison, WI, USA
## 381 Karolinska Institutet, Nobel Medical Institute, Stockholm, Sweden
## 382 Lomonosov Moscow State University, Moscow, USSR (now Russia)
## 383 Lomonosov Moscow State University, Moscow, USSR (now Russia)
## 384 Institut Pasteur, Paris, France
## 385 Université Libre de Bruxelles, Brussels, Belgium
## 386
## 387
## 388
## 389
## 390
## 391
## 392
## 393
## 394
## 395 Institut du Radium, Paris, France
## 396 General Electric Company, Schenectady, NY, USA
## 397 University of California, Irvine, CA, USA
## 398
## 399 Meijo University, Nagoya, Japan
## 400 Columbia University, New York, NY, USA
## 401
## 402 Military Medical Academy, St. Petersburg, Russia
## 403 General Electric Company, Schenectady, NY, USA
## 404
## 405 IBM Zurich Research Laboratory, Rüschlikon, Switzerland
## 406 University of Heidelberg, Heidelberg, Germany
## 407
## 408 University of California School of Medicine, San Francisco, CA, USA
## 409 Brown University, Providence, RI, USA
## 410
## 411 University of Cambridge, Cambridge, United Kingdom
## 412
## 413 Texas Instruments, Dallas, TX, USA
## 414 CERN, Geneva, Switzerland
## 415 Harvard Medical School, Boston, MA, USA
## 416 Berlin University, Berlin, Germany
## 417 University of Lausanne, Lausanne, Switzerland
## 418 Institut Pasteur, Paris, France
## 419 University of Cambridge, Cambridge, United Kingdom
## 420 Cornell University, Ithaca, NY, USA
## 421 Liverpool University, Liverpool, United Kingdom
## 422 University of Chicago, Chicago, IL, USA
## 423 University of Cambridge, Cambridge, United Kingdom
## 424 Yale University, New Haven, CT, USA
## 425 Goettingen University, Göttingen, Germany
## 426 University of Chicago, Chicago, IL, USA
## 427 Center for Study of Public Choice, Fairfax, VA, USA
## 428 Parker Institute for Cancer Immunotherapy, San Francisco, CA, USA
## 429 Princeton University, Princeton, NJ, USA
## 430 Columbia University, New York, NY, USA
## 431 Yale University, New Haven, CT, USA
## 432 Harvard University, Cambridge, MA, USA
## 433 The Netherlands School of Economics, Rotterdam, the Netherlands
## 434
## 435 Polarographic Institute of the Czechoslovak Academy of Science, Prague, Czechoslovakia (now Czech Republic)
## 436
## 437 Sorbonne University, Paris, France
## 438 Université de Paris, Laboratoire Immuno-Hématologie, Paris, France
## 439 Toulouse School of Economics (TSE), Toulouse, France
## 440
## 441 Université Louis Pasteur, Strasbourg, France
## 442
## 443 University of Strasbourg, Strasbourg, France
## 444 University of Maine, Maine, ME, USA
## 445 Aarhus University, Aarhus, Denmark
## 446 Massachusetts Institute of Technology (MIT), Cambridge, MA, USA
## 447 US Naval Research Laboratory, Washington, DC, USA
## 448
## 449 Columbia University, New York, NY, USA
## 450
## 451 University of Texas Southwestern Medical Center at Dallas, Dallas, TX, USA
## 452 Amsterdam University, Amsterdam, the Netherlands
## 453 Copenhagen University, Copenhagen, Denmark
## 454 Greifswald University, Greifswald, Germany
## 455
## 456 Virginia Commonwealth University, Richmond, VA, USA
## 457 University of Texas, Austin, TX, USA
## 458 University of Illinois, Urbana, IL, USA
## 459 University of California, Berkeley, CA, USA
## 460 MRC Laboratory of Molecular Biology, Cambridge, United Kingdom
## 461 NASA Goddard Space Flight Center, Greenbelt, MD, USA
## 462 University of Toronto, Toronto, Canada
## 463 Atomic Energy Research Establishment, Harwell, Berkshire, United Kingdom
## 464 University of Sussex, Brighton, United Kingdom
## 465 The Wellcome Trust Sanger Institute, Cambridge, United Kingdom
## 466 MRC Laboratory of Molecular Biology, Cambridge, United Kingdom
## 467 Harvard Medical School, Boston, MA, USA
## 468 Princeton University, Princeton, NJ, USA
## 469
## 470 Rockefeller Institute for Medical Research, Princeton, NJ, USA
## 471 Harvard University, Cambridge, MA, USA
## 472
## 473 University of Colorado, JILA, Boulder, CO, USA
## 474 University of Toronto, Toronto, Canada
## 475 University College, London, United Kingdom
## 476 Northwestern University, Evanston, IL, USA
## 477 All Souls College, Oxford, United Kingdom
## 478
## 479 The Wellcome Research Laboratories, Beckenham, United Kingdom
## 480
## 481
## 482
## 483
## 484
## 485 Brigham and Women's Hospital, Boston, MA, USA
## 486 Columbia University, New York, NY, USA
## 487 Washington University, St. Louis, MO, USA
## 488 Princeton University, Princeton, NJ, USA
## 489 University of Texas Southwestern Medical Center at Dallas, Dallas, TX, USA
## 490
## 491 University of Wisconsin, Madison, WI, USA
## 492
## 493
## 494 University of Strasbourg, Strasbourg, France
## 495 Brussels University, Brussels, Belgium
## 496 Harvard University, Cambridge, MA, USA
## 497 National Institutes of Health, Bethesda, MD, USA
## 498 Vienna University, Vienna, Austria
## 499 IBM Zurich Research Laboratory, Rüschlikon, Switzerland
## 500 Uppsala University, Uppsala, Sweden
## 501
## 502
## 503 Rockefeller Institute for Medical Research, New York, NY, USA
## 504 Zoologisches Institut der Universität München, Munich, Germany
## 505 Max-Planck-Institut für Kohlenforschung (Max-Planck-Institute for Carbon Research), Mülheim/Ruhr, Germany
## 506
## 507
## 508 Rockefeller University, New York, NY, USA
## 509 Kyoto University, Kyoto, Japan
## 510 Cornell University, Ithaca, NY, USA
## 511 Harvard University, Cambridge, MA, USA
## 512
## 513
## 514 LIGO/VIRGO Collaboration, N/A
## 515
## 516 Max-Planck-Institut für Festkörperforschung, Stuttgart, Germany
## 517
## 518
## 519 Shimadzu Corp., Kyoto, Japan
## 520 Harvard University, Cambridge, MA, USA
## 521 Konrad-Lorenz-Institut der Österreichischen Akademie der Wissenschaften, Forschungsstelle für Ethologie, Altenberg; Grünau im Almtal, Austria
## 522 University of Manchester, Manchester, United Kingdom
## 523 Cologne University, Cologne, Germany
## 524 Eidgenössische Technische Hochschule (Swiss Federal Institute of Technology), Zurich, Switzerland
## 525 Yale University, New Haven, CT, USA
## 526 University of Chicago, Chicago, IL, USA
## 527 Victoria University, Manchester, United Kingdom
## 528 University of Pennsylvania, Philadelphia, PA, USA
## 529
## 530
## 531
## 532 Fred Hutchinson Cancer Research Center, Seattle, WA, USA
## 533 IBM Thomas J. Watson Research Center, Yorktown Heights, NY, USA
## 534
## 535
## 536 Fermi National Accelerator Laboratory, Batavia, IL, USA
## 537 Brown University, Providence, RI, USA
## 538 University of Minnesota, Minneapolis, MN, USA
## 539 Academy of Sciences, Moscow, USSR (now Russia)
## 540 Eidgenössische Technische Hochschule (Swiss Federal Institute of Technology), Zurich, Switzerland
## 541
## 542 Academy of Sciences, Moscow, USSR (now Russia)
## 543
## 544 Fred Hutchinson Cancer Research Center, Seattle, WA, USA
## 545 California Institute of Technology (Caltech), Pasadena, CA, USA
## 546
## 547 University of California, Los Angeles, CA, USA
## 548
## 549 Royal Institution of Great Britain, London, United Kingdom
## 550 University of Cambridge, Cambridge, United Kingdom
## 551 Sorbonne University, Institut Henri Poincaré, Paris, France
## 552 University of California School of Medicine, Los Angeles, CA, USA
## 553 University of Grenoble, Grenoble, France
## 554 Sorbonne University, Paris, France
## 555 World Foundation for AIDS Research and Prevention, Paris, France
## 556
## 557
## 558 University of California, Berkeley, CA, USA
## 559 Institute for Biochemical Research, Buenos Aires, Argentina
## 560 Binghamton University, State University of New York, New York, NY, USA
## 561
## 562 High Energy Accelerator Research Organization (KEK), Tsukuba, Japan
## 563
## 564 Max-Planck-Institut für Physikalische Chemie, Göttingen, Germany
## 565 Uppsala University, Uppsala, Sweden
## 566 University of California, San Diego, CA, USA
## 567
## 568 Massachusetts Institute of Technology (MIT), Cambridge, MA, USA
## 569 University of Utah, Salt Lake City, UT, USA
## 570
## 571 National Institutes of Health, Bethesda, MD, USA
## 572 Columbia University, New York, NY, USA
## 573 Université de Strasbourg, Strasbourg, France
## 574 Stanford University, Stanford, CA, USA
## 575
## 576 National Institute of Environmental Health Sciences, Research Triangle Park, NC, USA
## 577 University of Cambridge, Cambridge, United Kingdom
## 578
## 579
## 580 University of Tokyo, Tokyo, Japan
## 581 École Nationale Supérieur des Mines de Paris, Paris, France
## 582
## 583 London University, London, United Kingdom
## 584 Edinburgh University, Edinburgh, United Kingdom
## 585 California Institute of Technology (Caltech), Pasadena, CA, USA
## 586 MRC Laboratory of Molecular Biology, Cambridge, United Kingdom
## 587 Berlin University, Berlin, Germany
## 588 Laboratories of the Division of Medicine and Public Health, Rockefeller Foundation, New York, NY, USA
## 589 Frankfurt-on-the-Main University, Frankfurt-on-the-Main, Germany
## 590 Norwegian University of Science and Technology (NTNU), Trondheim, Norway
## 591
## 592 University of California, Berkeley, CA, USA
## 593 Digital Pathways, Inc., Mountain View, CA, USA
## 594
## 595 University of Chicago, Chicago, IL, USA
## 596 Harvard University, Cambridge, MA, USA
## 597 Stanford University School of Medicine, Stanford, CA, USA
## 598 Brandeis University, Waltham, MA, USA
## 599 University of Texas Southwestern Medical Center at Dallas, Dallas, TX, USA
## 600 University of British Columbia, Vancouver, Canada
## 601 Rockefeller University, New York, NY, USA
## 602 University of Geneva, Geneva, Switzerland
## 603
## 604
## 605
## 606 University of Chicago, Chicago, IL, USA
## 607
## 608
## 609
## 610
## 611 California Institute of Technology (Caltech), Pasadena, CA, USA
## 612 Long Term Capital Management, Greenwich, CT, USA
## 613
## 614
## 615
## 616
## 617
## 618
## 619
## 620
## 621 Columbia University, New York, NY, USA
## 622 Harvard University, Cambridge, MA, USA
## 623 P.N. Lebedev Physical Institute, Moscow, USSR (now Russia)
## 624 Copenhagen University, Copenhagen, Denmark
## 625 Basel Institute for Immunology, Basel, Switzerland
## 626 Finsen Medical Light Institute, Copenhagen, Denmark
## 627 University of Oxford, Oxford, United Kingdom
## 628 Institute for Chemical Physics of the Academy of Sciences of the USSR, Moscow, USSR (now Russia)
## 629
## 630 Harvard University, Cambridge, MA, USA
## 631 Birmingham University, Birmingham, United Kingdom
## 632
## 633 University of Oslo, Oslo, Norway
## 634
## 635
## 636
## 637 University of California, Berkeley, CA, USA
## 638 Harvard University, Cambridge, MA, USA
## 639 University of North Carolina, Chapel Hill, NC, USA
## 640
## 641
## 642 Marine Biological Laboratory (MBL), Woods Hole, MA, USA
## 643
## 644 Kiel University, Kiel, Germany
## 645 Kaiser-Wilhelm-Institut (now Max-Planck Institut) für Chemie, Berlin-Dahlem, Germany
## 646 Graz University, Graz, Austria
## 647 Kiel University, Kiel, Germany
## 648 Carnegie Institute of Technology, Pittsburgh, PA, USA
## 649 Goettingen University, Göttingen, Germany
## 650 Kaiser-Wilhelm-Institut (now Max-Planck-Institut) für Biologie, Berlin-Dahlem, Germany
## 651 University of California, Berkeley, CA, USA
## 652 London University, London, United Kingdom
## 653
## 654
## 655 Victoria University, Manchester, United Kingdom
## 656
## 657
## 658 Massachusetts Institute of Technology (MIT), Cambridge, MA, USA
## 659 University of Cambridge, Cambridge, United Kingdom
## 660 Stanford University, Stanford, CA, USA
## 661 University of Illinois, Urbana, IL, USA
## 662 University of California, Los Angeles, CA, USA
## 663 Goettingen University, Göttingen, Germany
## 664 Rockefeller University, New York, NY, USA
## 665
## 666
## 667 Max-Planck-Institut für Chemie, Mainz, Germany
## 668 Stanford University, Stanford, CA, USA
## 669 University of Zurich, Zurich, Switzerland
## 670 Princeton University, Princeton, NJ, USA
## 671 NYU Stern School of Business, New York, NY, USA
## 672 Howard Hughes Medical Institute, Durham, NC, USA
## 673 Laboratorium der Farben-Fabriken J.R. Geigy A.G. (Laboratory of the J.R. Geigy Dye-Factory Co.), Basel, Switzerland
## 674 Toulouse University, Toulouse, France
## 675 P.N. Lebedev Physical Institute, Moscow, USSR (now Russia)
## 676
## 677 Harvard University, Cambridge, MA, USA
## 678
## 679 Massachusetts Institute of Technology (MIT), Cambridge, MA, USA
## 680 Johns Hopkins University School of Medicine, Baltimore, MD, USA
## 681 St. Jude Children's Research Hospital, Memphis, TN, USA
## 682 Berlin University, Berlin, Germany
## 683 Forschungszentrum Jülich, Jülich, Germany
## 684
## 685 University of Edinburgh, Edinburgh, United Kingdom
## 686 University College, London, United Kingdom
## 687 Glynn Research Laboratories, Bodmin, United Kingdom
## 688 Rockefeller University, New York, NY, USA
## 689
## 690 Mayo Clinic, Rochester, MN, USA
## 691 Bell Telephone Laboratories, Murray Hill, NJ, USA
## 692 Kiel University, Kiel, Germany
## 693 Massachusetts Institute of Technology (MIT), Center for Cancer Research, Cambridge, MA, USA
## 694 École municipale de physique et de chimie industrielles (Municipal School of Industrial Physics and Chemistry), Paris, France
## 695 Collège de France, Paris, France
## 696 Amsterdam University, Amsterdam, the Netherlands
## 697 Columbia University, New York, NY, USA
## 698
## 699 Academy of Sciences, Moscow, USSR (now Russia)
## 700
## 701 University of Oslo, Oslo, Norway
## 702 Karolinska Institutet, Stockholm, Sweden
## 703 LIGO/VIRGO Collaboration, N/A
## 704 Harvard University, Cambridge, MA, USA
## 705 Rockefeller University, New York, NY, USA
## 706
## 707 University of California, Berkeley, CA, USA
## 708 University of Pennsylvania, Philadelphia, PA, USA
## 709 Rheinische Friedrich-Wilhelms-Universität, Bonn, Germany
## 710 Imperial Cancer Research Fund Laboratory, London, United Kingdom
## 711
## 712 Associated Universities Inc., Washington, DC, USA
## 713 Columbia University, New York, NY, USA
## 714 Rice University, Houston, TX, USA
## 715 Stanford University, Stanford, CA, USA
## 716 University of Delaware, USA
## 717 University of Chicago, Chicago, IL, USA
## 718 MRC Laboratory of Molecular Biology, Cambridge, United Kingdom
## 719 New England Biolabs, Beverly, MA, USA
## 720 Kaiser-Wilhelm-Institut (now Max-Planck Institut) für Medizinische Forschung, Heidelberg, Germany
## 721 Rowett Research Institute, Bucksburn (Scotland), United Kingdom
## 722 California Institute of Technology (Caltech), Pasadena, CA, USA
## 723 Eidgenössische Technische Hochschule (Swiss Federal Institute of Technology), Zurich, Switzerland
## 724 Massachusetts Institute of Technology (MIT), Cambridge, MA, USA
## 725 University of Cambridge, Cambridge, United Kingdom
## 726 Munich University, Munich, Germany
## 727 Goettingen University, Göttingen, Germany
## 728
## 729 Institute of Cell Biology of the C.N.R., Rome, Italy
## 730 Cornell University, Ithaca, NY, USA
## 731 California Institute of Technology (Caltech), Pasadena, CA, USA
## 732 Stanford University, Stanford, CA, USA
## 733 Harvard University, Cambridge, MA, USA
## 734 Vienna University, Vienna, Austria
## 735 Harvard University, Cambridge, MA, USA
## 736 Cornell University, Ithaca, NY, USA
## 737
## 738 University of Chicago, Chicago, IL, USA
## 739 Rice University, Houston, TX, USA
## 740 New York University, New York, NY, USA
## 741 SUNY Health Science Center, Brooklyn, NY, USA
## 742 University of Cambridge, Cambridge, United Kingdom
## 743 California Institute of Technology (Caltech), Pasadena, CA, USA
## 744 Stanford University, Stanford, CA, USA
## 745 Max-Planck-Institut für Biochemie, Martinsried, Germany
## 746 University of Jerusalem, Center for RationalityHebrew, Jerusalem, Israel
## 747 Howard Hughes Medical Institute, N/A
## 748 Yale University, New Haven, CT, USA
## 749 Institute for Infectious Diseases, Berlin, Germany
## 750 Massachusetts Institute of Technology (MIT), Cambridge, MA, USA
## 751 Columbia University, New York, NY, USA
## 752 University of Chicago, Chicago, IL, USA
## 753 University of Pennsylvania, Philadelphia, PA, USA
## 754 University of Chicago, Chicago, IL, USA
## 755 Cornell University, Ithaca, NY, USA
## 756 Bell Laboratories, Holmdel, NJ, USA
## 757 Rockefeller University, New York, NY, USA
## 758 University of Oxford, Oxford, United Kingdom
## 759 University of Chicago, Chicago, IL, USA
## 760 Stanford University, Stanford, CA, USA
## 761 The Salk Institute, San Diego, CA, USA
## 762
## 763 California Institute of Technology (Caltech), Pasadena, CA, USA
## 764 University of California, San Diego, CA, USA
## 765 University of Zurich, Institute of Experimental Immunology, Zurich, Switzerland
## 766
## 767 Institute of Physical Chemistry, Cambridge, United Kingdom
## 768 University of Chicago, Chicago, IL, USA
## 769 University College, Liverpool, United Kingdom
## 770 Veterans Administration Hospital, Bronx, NY, USA
## 771 Harvard University, Cambridge, MA, USA
## 772
## 773 Technical University, Munich, Germany
## 774 California Institute of Technology (Caltech), Pasadena, CA, USA
## 775
## 776 Princeton University, Princeton, NJ, USA
## 777 Nagoya University, Nagoya, Japan
## 778
## 779 Massachusetts Institute of Technology (MIT), Cambridge, MA, USA
## 780
## 781
## 782 Massachusetts Institute of Technology (MIT), Cambridge, MA, USA
## 783 Madrid University, Madrid, Spain
## 784 Kitasato University, Tokyo, Japan
## 785
## 786 Lawrence Berkeley National Laboratory, Berkeley, CA, USA
## 787
## 788
## 789
## 790 Rutgers University, New Brunswick, NJ, USA
## 791 Collège de France, Paris, France
## 792 New York University, College of Medicine, New York, NY, USA
## 793 Harvard University, Lyman Laboratory, Cambridge, MA, USA
## 794
## 795 Kyoto University, Kyoto, Japan
## 796
## 797
## 798 University of California, Santa Barbara, CA, USA
## 799 Yale University, New Haven, CT, USA
## 800
## 801 Harvard University, Cambridge, MA, USA
## 802 CERN, Geneva, Switzerland
## 803 Tokyo University of Education, Tokyo, Japan
## 804
## 805 London University, London, United Kingdom
## 806 Princeton University, Princeton, NJ, USA
## 807
## 808 University College, London, United Kingdom
## 809 Calcutta University, Calcutta, India
## 810 University of Oxford, Oxford, United Kingdom
## 811 University of Oxford, Oxford, United Kingdom
## 812 Walter and Eliza Hall Institute for Medical Research, Melbourne, Australia
## 813 University of Cambridge, Cambridge, United Kingdom
## 814 MRC Laboratory of Molecular Biology, Cambridge, United Kingdom
## 815 University of Sussex, Brighton, United Kingdom
## 816 National Institute for Medical Research, London, United Kingdom
## 817 University of Oxford, Oxford, United Kingdom
## 818 Northwestern University, Evanston, IL, USA
## 819 London University, King's College Hospital Medical School, London, United Kingdom
## 820 Gurdon Institute, Cambridge, United Kingdom
## 821 Australian National University, Canberra, Australia
## 822 Cardiff University, Cardiff, United Kingdom
## 823 University of Cambridge, Cambridge, United Kingdom
## 824
## 825 Imperial Cancer Research Fund, London, United Kingdom
## 826 University of Oxford, Oxford, United Kingdom
## 827 University of Nottingham, School of Physics and Astronomy, Nottingham, United Kingdom
## 828 University of Oxford, Oxford, United Kingdom
## 829 University College, London, United Kingdom
## 830 Rockefeller University, New York, NY, USA
## 831 University of California School of Medicine, San Francisco, CA, USA
## 832 Vanderbilt University School of Medicine, Nashville, TN, USA
## 833 Max Planck Institute for Biophysical Chemistry, Göttingen, Germany
## 834 Stanford University, Stanford, CA, USA
## 835 Harvard University, Cambridge, MA, USA
## 836 University of Chicago, Chicago, IL, USA
## 837
## 838 Karolinska Institutet, Stockholm, Sweden
## 839 Massachusetts Institute of Technology (MIT), Cambridge, MA, USA
## 840 Stockholm University, Stockholm, Sweden
## 841
## 842 The Molecular Sciences Institute, Berkeley, CA, USA
## 843
## 844 Basel University, Basel, Switzerland
## 845 University of Tokyo, Kashiwa, Japan
## 846 Kyoto University, Kyoto, Japan
## 847
## 848
## 849 Uppsala University, Uppsala, Sweden
## 850 Berne University, Bern, Switzerland
## 851
## 852 Max-Planck-Institut für Quantenoptik, Garching, Germany
## 853
## 854 Harvard University, Cambridge, MA, USA
## 855 University of Chicago, Chicago, IL, USA
## 856 Yale University, New Haven, CT, USA
## 857 University of Maryland, Department of Economics and School of Public Policy, College Park, MD, USA
## 858 Stanford University, Stanford, CA, USA
## 859 California Institute of Technology (Caltech), Pasadena, CA, USA
## 860 Research Division of Infectious Diseases, Children's Medical Center, Boston, MA, USA
## 861 New York University, New York, NY, USA
## 862
## 863 University of Colorado, Boulder, CO, USA
## 864 Imperial Cancer Research Fund, London, United Kingdom
## 865 Yale University, New Haven, CT, USA
## 866
## 867 Francis Crick Institute, Hertfordshire, United Kingdom
## 868
## 869
## 870 Harvard Medical School, Boston, MA, USA
## 871 Kyoto Sangyo University, Kyoto, Japan
## 872 University of Oslo, Oslo, Norway
## 873 Columbia University, New York, NY, USA
## 874 China Academy of Traditional Chinese Medicine, Beijing, China
## 875 Karolinska Institutet, Stockholm, Sweden
## 876
## 877
## 878
## 879
## 880 Princeton University, Princeton, NJ, USA
## 881 MRC Laboratory of Molecular Biology, Cambridge, United Kingdom
## 882
## 883 George Mason University, Fairfax, VA, USA
## 884
## 885 Innsbruck University, Innsbruck, Austria
## 886 Nancy University, Nancy, France
## 887 Cornell University, Ithaca, NY, USA
## 888 P.N. Lebedev Physical Institute, Moscow, Russia
## 889 Eidgenössische Technische Hochschule (Swiss Federal Institute of Technology), Zurich, Switzerland
## 890 Harvard University, Biological Laboratories, Cambridge, MA, USA
## 891 Bell Telephone Laboratories, Murray Hill, NJ, USA
## 892 University of Zurich, Zurich, Switzerland
## 893 University of California, Santa Barbara, CA, USA
## 894 University of Heidelberg, Heidelberg, Germany
## 895 Berlin University, Berlin, Germany
## 896
## 897 Harvard University, Cambridge, MA, USA
## 898 Rockefeller Institute for Medical Research, Princeton, NJ, USA
## 899 Biozentrum der Universität, Basel, Switzerland
## 900 Mainz University, Mainz, Germany
## 901 Leipzig University, Leipzig, Germany
## 902 Munich University, Munich, Germany
## 903 Leipzig University, Leipzig, Germany
## 904 Würzburg University, Würzburg, Germany
## 905 University of California, Los Angeles, CA, USA
## 906 Bell Laboratories, Murray Hill, NJ, USA
## 907 Leiden University, Leiden, the Netherlands
## 908 California Institute of Technology (Caltech), Pasadena, CA, USA
## 909 Semiconductor Laboratory of Beckman Instruments, Inc., Mountain View, CA, USA
## 910 University College, London, United Kingdom
## 911
## 912 Drew University, Madison, NJ, USA
## 913 Yale University, New Haven, CT, USA
## 914 National Institute of Standards and Technology, Gaithersburg, MD, USA
## 915 Stanford University, Stanford, CA, USA
## 916 University of California, Berkeley, CA, USA
## 917 Stanford University, Stanford, CA, USA
## 918
## 919 Harvard Medical School, Boston, MA, USA
## 920
## 921 Rockefeller University, New York, NY, USA
## 922
## 923 Harvard University, Cambridge, MA, USA
## 924 Harvard University, Cambridge, MA, USA
## 925 Columbia University, New York, NY, USA
## 926 Stanford University, Stanford, CA, USA
## 927
## 928
## 929
## 930
## 931
## 932 Massachusetts Institute of Technology (MIT), Cambridge, MA, USA
## 933 University of Bonn, Bonn, Germany
## 934 Princeton University, Princeton, NJ, USA
## 935
## 936
## 937
## 938
## 939 Enrico Fermi Institute, University of Chicago, Chicago, IL, USA
## 940 Tokyo Institute of Technology, Tokyo, Japan
## 941 University of California, Berkeley, CA, USA
## 942 Institut Français du Pétrole, Rueil-Malmaison, France
## 943 A.F. Ioffe Physico-Technical Institute, St. Petersburg, Russia
## 944 MRC Laboratory of Molecular Biology, Cambridge, United Kingdom
## 945
## 946 University of Illinois, Urbana, IL, USA
## 947 California Institute of Technology (Caltech), Pasadena, CA, USA
## 948 Sorbonne University, Paris, France
## 949
## 950
## affiliation_2
## 1
## 2
## 3
## 4
## 5 Imperial College, London, United Kingdom
## 6
## 7
## 8
## 9 Space Telescope Science Institute, Baltimore, MD, USA
## 10 Berlin University, Berlin, Germany
## 11
## 12
## 13
## 14
## 15
## 16 Meijo University, Nagoya, Japan
## 17
## 18
## 19
## 20
## 21
## 22
## 23
## 24
## 25 Unité Mixte de Physique CNRS/THALES, Orsay, France
## 26
## 27
## 28
## 29
## 30
## 31
## 32
## 33
## 34
## 35
## 36
## 37
## 38
## 39
## 40
## 41
## 42
## 43
## 44
## 45
## 46 Harvard Business School, Boston, MA, USA
## 47
## 48
## 49
## 50
## 51
## 52
## 53
## 54
## 55
## 56
## 57
## 58
## 59
## 60
## 61
## 62
## 63
## 64
## 65
## 66
## 67
## 68
## 69
## 70
## 71
## 72
## 73
## 74
## 75
## 76
## 77
## 78
## 79
## 80
## 81
## 82
## 83
## 84
## 85 California Institute of Technology (Caltech), Pasadena, CA, USA
## 86 University of Western Australia, Perth, Australia
## 87
## 88
## 89
## 90
## 91
## 92
## 93
## 94
## 95
## 96
## 97
## 98
## 99
## 100
## 101
## 102
## 103
## 104
## 105
## 106
## 107 The Scripps Research Institute, La Jolla, CA, USA
## 108
## 109
## 110
## 111
## 112
## 113 I.G. Farbenindustrie A.G., Heidelberg, Germany
## 114
## 115
## 116
## 117
## 118
## 119
## 120
## 121
## 122
## 123
## 124
## 125
## 126
## 127
## 128
## 129
## 130
## 131 Chinese University of Hong Kong, Hong Kong, China
## 132
## 133
## 134
## 135
## 136
## 137 Université Catholique de Louvain, Louvain, Belgium
## 138
## 139
## 140
## 141
## 142 École Normale Supérieure, Paris, France
## 143
## 144
## 145
## 146
## 147
## 148
## 149
## 150
## 151
## 152
## 153 Aarhus University, Aarhus, Denmark
## 154
## 155
## 156
## 157
## 158
## 159
## 160
## 161
## 162
## 163
## 164
## 165 University of Colorado, Boulder, CO, USA
## 166
## 167
## 168
## 169
## 170
## 171
## 172
## 173
## 174 University of Cambridge, Cambridge, United Kingdom
## 175
## 176
## 177
## 178
## 179
## 180
## 181
## 182
## 183
## 184
## 185
## 186
## 187
## 188
## 189
## 190
## 191
## 192
## 193
## 194 Federal Reserve Bank of Minneapolis, Minneapolis, MN, USA
## 195
## 196
## 197
## 198
## 199 Neurological Institute, Lisbon, Portugal
## 200
## 201
## 202
## 203
## 204
## 205
## 206
## 207
## 208 Arizona State University, Tempe, AZ, USA
## 209
## 210
## 211
## 212
## 213
## 214
## 215
## 216
## 217
## 218
## 219
## 220
## 221
## 222
## 223
## 224
## 225
## 226
## 227
## 228
## 229
## 230
## 231
## 232
## 233
## 234
## 235
## 236
## 237
## 238
## 239
## 240
## 241
## 242
## 243
## 244
## 245
## 246
## 247 University of California, Santa Barbara, CA, USA
## 248
## 249
## 250
## 251
## 252
## 253
## 254
## 255
## 256
## 257
## 258
## 259
## 260
## 261
## 262
## 263
## 264
## 265
## 266
## 267
## 268
## 269 I.G. Farbenindustrie A.G., Mannheim-Rheinau, Germany
## 270
## 271
## 272
## 273
## 274 Massachusetts General Hospital, Boston, MA, USA
## 275
## 276
## 277
## 278
## 279
## 280
## 281
## 282
## 283
## 284
## 285
## 286
## 287
## 288
## 289
## 290
## 291
## 292
## 293
## 294
## 295
## 296
## 297
## 298
## 299
## 300
## 301
## 302 CERN, Geneva, Switzerland
## 303
## 304
## 305
## 306
## 307 University of Michigan, Ann Arbor, MI, USA
## 308
## 309
## 310
## 311
## 312
## 313
## 314
## 315
## 316
## 317
## 318
## 319
## 320
## 321
## 322
## 323
## 324
## 325
## 326 Howard Hughes Medical Institute, N/A
## 327
## 328
## 329
## 330
## 331
## 332
## 333
## 334
## 335
## 336
## 337
## 338
## 339
## 340
## 341
## 342
## 343
## 344
## 345
## 346
## 347
## 348
## 349
## 350
## 351
## 352
## 353
## 354
## 355
## 356
## 357
## 358
## 359
## 360
## 361
## 362
## 363
## 364
## 365
## 366
## 367
## 368
## 369
## 370
## 371
## 372
## 373 Staatliches Institut für makromolekulare Chemie (State Research Institute for Macromolecular Chemistry), Freiburg, Breisgau, Germany
## 374
## 375
## 376 Columbia University, New York, NY, USA
## 377
## 378
## 379
## 380
## 381
## 382 P.N. Lebedev Physical Institute, Moscow, USSR (now Russia)
## 383 P.N. Lebedev Physical Institute, Moscow, USSR (now Russia)
## 384
## 385 University of Texas, Austin, TX, USA
## 386
## 387
## 388
## 389
## 390
## 391
## 392
## 393
## 394
## 395
## 396
## 397
## 398
## 399 Nagoya University, Nagoya, Japan
## 400
## 401
## 402
## 403
## 404
## 405
## 406
## 407
## 408
## 409
## 410
## 411
## 412
## 413
## 414
## 415 Massachusetts General Hospital, Boston, MA, USA
## 416
## 417
## 418
## 419
## 420
## 421
## 422
## 423
## 424
## 425
## 426
## 427
## 428 University of Texas MD Anderson Cancer Center, Houston, TX, USA
## 429
## 430
## 431
## 432
## 433
## 434
## 435
## 436
## 437
## 438
## 439
## 440
## 441 Collège de France, Paris, France
## 442
## 443
## 444
## 445
## 446
## 447
## 448
## 449
## 450
## 451 Howard Hughes Medical Institute, N/A
## 452
## 453
## 454
## 455
## 456
## 457
## 458
## 459
## 460
## 461
## 462
## 463
## 464
## 465
## 466
## 467 Research Division of Infectious Diseases, Children's Medical Center, Boston, MA, USA
## 468
## 469
## 470
## 471
## 472
## 473 National Institute of Standards and Technology, Boulder, CO, USA
## 474
## 475
## 476
## 477
## 478
## 479
## 480
## 481
## 482
## 483
## 484
## 485
## 486
## 487
## 488
## 489
## 490
## 491
## 492
## 493
## 494
## 495
## 496
## 497
## 498
## 499
## 500
## 501
## 502
## 503
## 504
## 505
## 506
## 507
## 508
## 509
## 510
## 511
## 512
## 513
## 514 California Institute of Technology (Caltech), Pasadena, CA, USA
## 515
## 516
## 517
## 518
## 519
## 520
## 521
## 522
## 523
## 524 The Scripps Research Institute, La Jolla, CA, USA
## 525
## 526
## 527
## 528
## 529
## 530
## 531
## 532
## 533
## 534
## 535
## 536
## 537
## 538
## 539
## 540
## 541
## 542
## 543
## 544
## 545
## 546
## 547
## 548
## 549
## 550
## 551
## 552
## 553
## 554
## 555
## 556
## 557
## 558
## 559
## 560
## 561
## 562
## 563
## 564
## 565
## 566
## 567
## 568
## 569 Howard Hughes Medical Institute, N/A
## 570
## 571
## 572
## 573 Harvard University, Cambridge, MA, USA
## 574
## 575
## 576
## 577
## 578
## 579
## 580
## 581
## 582
## 583
## 584
## 585
## 586
## 587
## 588
## 589
## 590
## 591
## 592
## 593
## 594
## 595
## 596
## 597
## 598 Howard Hughes Medical Institute, N/A
## 599
## 600
## 601
## 602
## 603
## 604
## 605
## 606
## 607
## 608
## 609
## 610
## 611
## 612
## 613
## 614
## 615
## 616
## 617
## 618
## 619
## 620
## 621
## 622
## 623
## 624
## 625
## 626
## 627
## 628 Lomonosov Moscow State University, Moscow, USSR (now Russia)
## 629
## 630
## 631
## 632
## 633
## 634
## 635
## 636
## 637
## 638
## 639
## 640
## 641
## 642 Boston University Medical School, Massachusetts, MA, USA
## 643
## 644
## 645
## 646
## 647
## 648
## 649
## 650
## 651
## 652
## 653
## 654
## 655
## 656
## 657
## 658
## 659
## 660
## 661
## 662
## 663 Königliches Institut für experimentelle Therapie (Royal Institute for Experimental Therapy), Frankfurt-on-the-Main, Germany
## 664
## 665
## 666
## 667
## 668
## 669
## 670
## 671
## 672 Duke University School of Medicine, Durham, NC, USA
## 673
## 674
## 675
## 676
## 677
## 678
## 679
## 680
## 681
## 682 Kaiser-Wilhelm-Institut (now Max-Planck-Institut) für Physik, Berlin, Germany
## 683
## 684
## 685
## 686
## 687
## 688
## 689
## 690
## 691
## 692
## 693
## 694
## 695
## 696
## 697
## 698
## 699
## 700
## 701
## 702
## 703 Massachusetts Institute of Technology (MIT), Cambridge, MA, USA
## 704
## 705
## 706
## 707 Howard Hughes Medical Institute, N/A
## 708
## 709
## 710
## 711
## 712
## 713
## 714
## 715
## 716
## 717
## 718
## 719
## 720 University of Heidelberg, Heidelberg, Germany
## 721
## 722
## 723
## 724
## 725
## 726
## 727
## 728
## 729
## 730
## 731
## 732
## 733
## 734
## 735
## 736
## 737
## 738
## 739
## 740
## 741
## 742
## 743
## 744
## 745
## 746
## 747 Duke University Medical Center, Durham, NC, USA
## 748
## 749
## 750
## 751
## 752
## 753
## 754
## 755
## 756
## 757 Howard Hughes Medical Institute, N/A
## 758
## 759
## 760
## 761
## 762
## 763
## 764 Howard Hughes Medical Institute, N/A
## 765
## 766
## 767
## 768
## 769
## 770
## 771
## 772
## 773 California Institute of Technology (Caltech), Pasadena, CA, USA
## 774
## 775
## 776
## 777
## 778
## 779
## 780
## 781
## 782
## 783
## 784
## 785
## 786 University of California, Berkeley, CA, USA
## 787
## 788
## 789
## 790
## 791 École Normale Supérieure, Paris, France
## 792
## 793
## 794
## 795 Gladstone Institutes, San Francisco, CA, USA
## 796
## 797
## 798
## 799
## 800
## 801
## 802
## 803
## 804
## 805
## 806
## 807
## 808
## 809
## 810
## 811
## 812
## 813
## 814
## 815
## 816
## 817
## 818
## 819
## 820
## 821
## 822
## 823
## 824
## 825
## 826 Francis Crick Institute, London, United Kingdom
## 827
## 828
## 829
## 830
## 831
## 832
## 833 German Cancer Research Center, Heidelberg, Germany
## 834
## 835
## 836
## 837
## 838
## 839
## 840
## 841
## 842
## 843
## 844
## 845
## 846
## 847
## 848
## 849
## 850
## 851
## 852 Ludwig-Maximilians- Universität, Munich, Germany
## 853
## 854
## 855
## 856 Howard Hughes Medical Institute, N/A
## 857
## 858 Howard Hughes Medical Institute, N/A
## 859
## 860
## 861
## 862
## 863
## 864
## 865
## 866
## 867 Clare Hall Laboratory, Hertfordshire, United Kingdom
## 868
## 869
## 870
## 871 Yukawa Institute for Theoretical Physics (YITP), Kyoto University, Kyoto, Japan
## 872
## 873
## 874
## 875
## 876
## 877
## 878
## 879
## 880
## 881
## 882
## 883
## 884
## 885
## 886
## 887
## 888
## 889
## 890
## 891
## 892
## 893
## 894 Max-Planck-Institut für medizinische Forschung, Heidelberg, Germany
## 895
## 896
## 897
## 898
## 899
## 900
## 901
## 902
## 903
## 904
## 905
## 906
## 907
## 908
## 909
## 910
## 911
## 912
## 913
## 914
## 915
## 916
## 917
## 918
## 919 Howard Hughes Medical Institute, Chevy Chase, MD, USA
## 920
## 921
## 922
## 923
## 924 Peter Brent Brigham Hospital, Boston, MA, USA
## 925
## 926
## 927
## 928
## 929
## 930
## 931
## 932
## 933
## 934
## 935
## 936
## 937
## 938
## 939
## 940
## 941
## 942
## 943
## 944
## 945
## 946
## 947
## 948
## 949
## 950
## affiliation_3
## 1
## 2
## 3
## 4
## 5
## 6
## 7
## 8
## 9
## 10
## 11
## 12
## 13
## 14
## 15
## 16
## 17
## 18
## 19
## 20
## 21
## 22
## 23
## 24
## 25
## 26
## 27
## 28
## 29
## 30
## 31
## 32
## 33
## 34
## 35
## 36
## 37
## 38
## 39
## 40
## 41
## 42
## 43
## 44
## 45
## 46
## 47
## 48
## 49
## 50
## 51
## 52
## 53
## 54
## 55
## 56
## 57
## 58
## 59
## 60
## 61
## 62
## 63
## 64
## 65
## 66
## 67
## 68
## 69
## 70
## 71
## 72
## 73
## 74
## 75
## 76
## 77
## 78
## 79
## 80
## 81
## 82
## 83
## 84
## 85
## 86
## 87
## 88
## 89
## 90
## 91
## 92
## 93
## 94
## 95
## 96
## 97
## 98
## 99
## 100
## 101
## 102
## 103
## 104
## 105
## 106
## 107
## 108
## 109
## 110
## 111
## 112
## 113
## 114
## 115
## 116
## 117
## 118
## 119
## 120
## 121
## 122
## 123
## 124
## 125
## 126
## 127
## 128
## 129
## 130
## 131
## 132
## 133
## 134
## 135
## 136
## 137
## 138
## 139
## 140
## 141
## 142
## 143
## 144
## 145
## 146
## 147
## 148
## 149
## 150
## 151
## 152
## 153
## 154
## 155
## 156
## 157
## 158
## 159
## 160
## 161
## 162
## 163
## 164
## 165
## 166
## 167
## 168
## 169
## 170
## 171
## 172
## 173
## 174
## 175
## 176
## 177
## 178
## 179
## 180
## 181
## 182
## 183
## 184
## 185
## 186
## 187
## 188
## 189
## 190
## 191
## 192
## 193
## 194
## 195
## 196
## 197
## 198
## 199
## 200
## 201
## 202
## 203
## 204
## 205
## 206
## 207
## 208
## 209
## 210
## 211
## 212
## 213
## 214
## 215
## 216
## 217
## 218
## 219
## 220
## 221
## 222
## 223
## 224
## 225
## 226
## 227
## 228
## 229
## 230
## 231
## 232
## 233
## 234
## 235
## 236
## 237
## 238
## 239
## 240
## 241
## 242
## 243
## 244
## 245
## 246
## 247
## 248
## 249
## 250
## 251
## 252
## 253
## 254
## 255
## 256
## 257
## 258
## 259
## 260
## 261
## 262
## 263
## 264
## 265
## 266
## 267
## 268
## 269
## 270
## 271
## 272
## 273
## 274
## 275
## 276
## 277
## 278
## 279
## 280
## 281
## 282
## 283
## 284
## 285
## 286
## 287
## 288
## 289
## 290
## 291
## 292
## 293
## 294
## 295
## 296
## 297
## 298
## 299
## 300
## 301
## 302
## 303
## 304
## 305
## 306
## 307
## 308
## 309
## 310
## 311
## 312
## 313
## 314
## 315
## 316
## 317
## 318
## 319
## 320
## 321
## 322
## 323
## 324
## 325
## 326
## 327
## 328
## 329
## 330
## 331
## 332
## 333
## 334
## 335
## 336
## 337
## 338
## 339
## 340
## 341
## 342
## 343
## 344
## 345
## 346
## 347
## 348
## 349
## 350
## 351
## 352
## 353
## 354
## 355
## 356
## 357
## 358
## 359
## 360
## 361
## 362
## 363
## 364
## 365
## 366
## 367
## 368
## 369
## 370
## 371
## 372
## 373
## 374
## 375
## 376
## 377
## 378
## 379
## 380
## 381
## 382
## 383
## 384
## 385
## 386
## 387
## 388
## 389
## 390
## 391
## 392
## 393
## 394
## 395
## 396
## 397
## 398
## 399
## 400
## 401
## 402
## 403
## 404
## 405
## 406
## 407
## 408
## 409
## 410
## 411
## 412
## 413
## 414
## 415 Howard Hughes Medical Institute, N/A
## 416
## 417
## 418
## 419
## 420
## 421
## 422
## 423
## 424
## 425
## 426
## 427
## 428
## 429
## 430
## 431
## 432
## 433
## 434
## 435
## 436
## 437
## 438
## 439
## 440
## 441
## 442
## 443
## 444
## 445
## 446
## 447
## 448
## 449
## 450
## 451
## 452
## 453
## 454
## 455
## 456
## 457
## 458
## 459
## 460
## 461
## 462
## 463
## 464
## 465
## 466
## 467
## 468
## 469
## 470
## 471
## 472
## 473
## 474
## 475
## 476
## 477
## 478
## 479
## 480
## 481
## 482
## 483
## 484
## 485
## 486
## 487
## 488
## 489
## 490
## 491
## 492
## 493
## 494
## 495
## 496
## 497
## 498
## 499
## 500
## 501
## 502
## 503
## 504
## 505
## 506
## 507
## 508
## 509
## 510
## 511
## 512
## 513
## 514
## 515
## 516
## 517
## 518
## 519
## 520
## 521
## 522
## 523
## 524
## 525
## 526
## 527
## 528
## 529
## 530
## 531
## 532
## 533
## 534
## 535
## 536
## 537
## 538
## 539
## 540
## 541
## 542
## 543
## 544
## 545
## 546
## 547
## 548
## 549
## 550
## 551
## 552
## 553
## 554
## 555
## 556
## 557
## 558
## 559
## 560
## 561
## 562
## 563
## 564
## 565
## 566
## 567
## 568
## 569
## 570
## 571
## 572
## 573
## 574
## 575
## 576
## 577
## 578
## 579
## 580
## 581
## 582
## 583
## 584
## 585
## 586
## 587
## 588
## 589
## 590
## 591
## 592
## 593
## 594
## 595
## 596
## 597
## 598
## 599
## 600
## 601
## 602
## 603
## 604
## 605
## 606
## 607
## 608
## 609
## 610
## 611
## 612
## 613
## 614
## 615
## 616
## 617
## 618
## 619
## 620
## 621
## 622
## 623
## 624
## 625
## 626
## 627
## 628
## 629
## 630
## 631
## 632
## 633
## 634
## 635
## 636
## 637
## 638
## 639
## 640
## 641
## 642
## 643
## 644
## 645
## 646
## 647
## 648
## 649
## 650
## 651
## 652
## 653
## 654
## 655
## 656
## 657
## 658
## 659
## 660
## 661
## 662
## 663
## 664
## 665
## 666
## 667
## 668
## 669
## 670
## 671
## 672
## 673
## 674
## 675
## 676
## 677
## 678
## 679
## 680
## 681
## 682
## 683
## 684
## 685
## 686
## 687
## 688
## 689
## 690
## 691
## 692
## 693
## 694
## 695
## 696
## 697
## 698
## 699
## 700
## 701
## 702
## 703
## 704
## 705
## 706
## 707
## 708
## 709
## 710
## 711
## 712
## 713
## 714
## 715
## 716
## 717
## 718
## 719
## 720
## 721
## 722
## 723
## 724
## 725
## 726
## 727
## 728
## 729
## 730
## 731
## 732
## 733
## 734
## 735
## 736
## 737
## 738
## 739
## 740
## 741
## 742
## 743
## 744
## 745
## 746
## 747
## 748
## 749
## 750
## 751
## 752
## 753
## 754
## 755
## 756
## 757
## 758
## 759
## 760
## 761
## 762
## 763
## 764
## 765
## 766
## 767
## 768
## 769
## 770
## 771
## 772
## 773
## 774
## 775
## 776
## 777
## 778
## 779
## 780
## 781
## 782
## 783
## 784
## 785
## 786
## 787
## 788
## 789
## 790
## 791
## 792
## 793
## 794
## 795
## 796
## 797
## 798
## 799
## 800
## 801
## 802
## 803
## 804
## 805
## 806
## 807
## 808
## 809
## 810
## 811
## 812
## 813
## 814
## 815
## 816
## 817
## 818
## 819
## 820
## 821
## 822
## 823
## 824
## 825
## 826
## 827
## 828
## 829
## 830
## 831
## 832
## 833
## 834
## 835
## 836
## 837
## 838
## 839
## 840
## 841
## 842
## 843
## 844
## 845
## 846
## 847
## 848
## 849
## 850
## 851
## 852
## 853
## 854
## 855
## 856
## 857
## 858
## 859
## 860
## 861
## 862
## 863
## 864
## 865
## 866
## 867
## 868
## 869
## 870
## 871
## 872
## 873
## 874
## 875
## 876
## 877
## 878
## 879
## 880
## 881
## 882
## 883
## 884
## 885
## 886
## 887
## 888
## 889
## 890
## 891
## 892
## 893
## 894
## 895
## 896
## 897
## 898
## 899
## 900
## 901
## 902
## 903
## 904
## 905
## 906
## 907
## 908
## 909
## 910
## 911
## 912
## 913
## 914
## 915
## 916
## 917
## 918
## 919 Dana-Farber Cancer Institute, Boston, MA, USA
## 920
## 921
## 922
## 923
## 924
## 925
## 926
## 927
## 928
## 929
## 930
## 931
## 932
## 933
## 934
## 935
## 936
## 937
## 938
## 939
## 940
## 941
## 942
## 943
## 944
## 945
## 946
## 947
## 948
## 949
## 950
## affiliation_4
## 1
## 2
## 3
## 4
## 5
## 6
## 7
## 8
## 9
## 10
## 11
## 12
## 13
## 14
## 15
## 16
## 17
## 18
## 19
## 20
## 21
## 22
## 23
## 24
## 25
## 26
## 27
## 28
## 29
## 30
## 31
## 32
## 33
## 34
## 35
## 36
## 37
## 38
## 39
## 40
## 41
## 42
## 43
## 44
## 45
## 46
## 47
## 48
## 49
## 50
## 51
## 52
## 53
## 54
## 55
## 56
## 57
## 58
## 59
## 60
## 61
## 62
## 63
## 64
## 65
## 66
## 67
## 68
## 69
## 70
## 71
## 72
## 73
## 74
## 75
## 76
## 77
## 78
## 79
## 80
## 81
## 82
## 83
## 84
## 85
## 86
## 87
## 88
## 89
## 90
## 91
## 92
## 93
## 94
## 95
## 96
## 97
## 98
## 99
## 100
## 101
## 102
## 103
## 104
## 105
## 106
## 107
## 108
## 109
## 110
## 111
## 112
## 113
## 114
## 115
## 116
## 117
## 118
## 119
## 120
## 121
## 122
## 123
## 124
## 125
## 126
## 127
## 128
## 129
## 130
## 131
## 132
## 133
## 134
## 135
## 136
## 137
## 138
## 139
## 140
## 141
## 142
## 143
## 144
## 145
## 146
## 147
## 148
## 149
## 150
## 151
## 152
## 153
## 154
## 155
## 156
## 157
## 158
## 159
## 160
## 161
## 162
## 163
## 164
## 165
## 166
## 167
## 168
## 169
## 170
## 171
## 172
## 173
## 174
## 175
## 176
## 177
## 178
## 179
## 180
## 181
## 182
## 183
## 184
## 185
## 186
## 187
## 188
## 189
## 190
## 191
## 192
## 193
## 194
## 195
## 196
## 197
## 198
## 199
## 200
## 201
## 202
## 203
## 204
## 205
## 206
## 207
## 208
## 209
## 210
## 211
## 212
## 213
## 214
## 215
## 216
## 217
## 218
## 219
## 220
## 221
## 222
## 223
## 224
## 225
## 226
## 227
## 228
## 229
## 230
## 231
## 232
## 233
## 234
## 235
## 236
## 237
## 238
## 239
## 240
## 241
## 242
## 243
## 244
## 245
## 246
## 247
## 248
## 249
## 250
## 251
## 252
## 253
## 254
## 255
## 256
## 257
## 258
## 259
## 260
## 261
## 262
## 263
## 264
## 265
## 266
## 267
## 268
## 269
## 270
## 271
## 272
## 273
## 274
## 275
## 276
## 277
## 278
## 279
## 280
## 281
## 282
## 283
## 284
## 285
## 286
## 287
## 288
## 289
## 290
## 291
## 292
## 293
## 294
## 295
## 296
## 297
## 298
## 299
## 300
## 301
## 302
## 303
## 304
## 305
## 306
## 307
## 308
## 309
## 310
## 311
## 312
## 313
## 314
## 315
## 316
## 317
## 318
## 319
## 320
## 321
## 322
## 323
## 324
## 325
## 326
## 327
## 328
## 329
## 330
## 331
## 332
## 333
## 334
## 335
## 336
## 337
## 338
## 339
## 340
## 341
## 342
## 343
## 344
## 345
## 346
## 347
## 348
## 349
## 350
## 351
## 352
## 353
## 354
## 355
## 356
## 357
## 358
## 359
## 360
## 361
## 362
## 363
## 364
## 365
## 366
## 367
## 368
## 369
## 370
## 371
## 372
## 373
## 374
## 375
## 376
## 377
## 378
## 379
## 380
## 381
## 382
## 383
## 384
## 385
## 386
## 387
## 388
## 389
## 390
## 391
## 392
## 393
## 394
## 395
## 396
## 397
## 398
## 399
## 400
## 401
## 402
## 403
## 404
## 405
## 406
## 407
## 408
## 409
## 410
## 411
## 412
## 413
## 414
## 415
## 416
## 417
## 418
## 419
## 420
## 421
## 422
## 423
## 424
## 425
## 426
## 427
## 428
## 429
## 430
## 431
## 432
## 433
## 434
## 435
## 436
## 437
## 438
## 439
## 440
## 441
## 442
## 443
## 444
## 445
## 446
## 447
## 448
## 449
## 450
## 451
## 452
## 453
## 454
## 455
## 456
## 457
## 458
## 459
## 460
## 461
## 462
## 463
## 464
## 465
## 466
## 467
## 468
## 469
## 470
## 471
## 472
## 473
## 474
## 475
## 476
## 477
## 478
## 479
## 480
## 481
## 482
## 483
## 484
## 485
## 486
## 487
## 488
## 489
## 490
## 491
## 492
## 493
## 494
## 495
## 496
## 497
## 498
## 499
## 500
## 501
## 502
## 503
## 504
## 505
## 506
## 507
## 508
## 509
## 510
## 511
## 512
## 513
## 514
## 515
## 516
## 517
## 518
## 519
## 520
## 521
## 522
## 523
## 524
## 525
## 526
## 527
## 528
## 529
## 530
## 531
## 532
## 533
## 534
## 535
## 536
## 537
## 538
## 539
## 540
## 541
## 542
## 543
## 544
## 545
## 546
## 547
## 548
## 549
## 550
## 551
## 552
## 553
## 554
## 555
## 556
## 557
## 558
## 559
## 560
## 561
## 562
## 563
## 564
## 565
## 566
## 567
## 568
## 569
## 570
## 571
## 572
## 573
## 574
## 575
## 576
## 577
## 578
## 579
## 580
## 581
## 582
## 583
## 584
## 585
## 586
## 587
## 588
## 589
## 590
## 591
## 592
## 593
## 594
## 595
## 596
## 597
## 598
## 599
## 600
## 601
## 602
## 603
## 604
## 605
## 606
## 607
## 608
## 609
## 610
## 611
## 612
## 613
## 614
## 615
## 616
## 617
## 618
## 619
## 620
## 621
## 622
## 623
## 624
## 625
## 626
## 627
## 628
## 629
## 630
## 631
## 632
## 633
## 634
## 635
## 636
## 637
## 638
## 639
## 640
## 641
## 642
## 643
## 644
## 645
## 646
## 647
## 648
## 649
## 650
## 651
## 652
## 653
## 654
## 655
## 656
## 657
## 658
## 659
## 660
## 661
## 662
## 663
## 664
## 665
## 666
## 667
## 668
## 669
## 670
## 671
## 672
## 673
## 674
## 675
## 676
## 677
## 678
## 679
## 680
## 681
## 682
## 683
## 684
## 685
## 686
## 687
## 688
## 689
## 690
## 691
## 692
## 693
## 694
## 695
## 696
## 697
## 698
## 699
## 700
## 701
## 702
## 703
## 704
## 705
## 706
## 707
## 708
## 709
## 710
## 711
## 712
## 713
## 714
## 715
## 716
## 717
## 718
## 719
## 720
## 721
## 722
## 723
## 724
## 725
## 726
## 727
## 728
## 729
## 730
## 731
## 732
## 733
## 734
## 735
## 736
## 737
## 738
## 739
## 740
## 741
## 742
## 743
## 744
## 745
## 746
## 747
## 748
## 749
## 750
## 751
## 752
## 753
## 754
## 755
## 756
## 757
## 758
## 759
## 760
## 761
## 762
## 763
## 764
## 765
## 766
## 767
## 768
## 769
## 770
## 771
## 772
## 773
## 774
## 775
## 776
## 777
## 778
## 779
## 780
## 781
## 782
## 783
## 784
## 785
## 786
## 787
## 788
## 789
## 790
## 791
## 792
## 793
## 794
## 795
## 796
## 797
## 798
## 799
## 800
## 801
## 802
## 803
## 804
## 805
## 806
## 807
## 808
## 809
## 810
## 811
## 812
## 813
## 814
## 815
## 816
## 817
## 818
## 819
## 820
## 821
## 822
## 823
## 824
## 825
## 826
## 827
## 828
## 829
## 830
## 831
## 832
## 833
## 834
## 835
## 836
## 837
## 838
## 839
## 840
## 841
## 842
## 843
## 844
## 845
## 846
## 847
## 848
## 849
## 850
## 851
## 852
## 853
## 854
## 855
## 856
## 857
## 858
## 859
## 860
## 861
## 862
## 863
## 864
## 865
## 866
## 867
## 868
## 869
## 870
## 871
## 872
## 873
## 874
## 875
## 876
## 877
## 878
## 879
## 880
## 881
## 882
## 883
## 884
## 885
## 886
## 887
## 888
## 889
## 890
## 891
## 892
## 893
## 894
## 895
## 896
## 897
## 898
## 899
## 900
## 901
## 902
## 903
## 904
## 905
## 906
## 907
## 908
## 909
## 910
## 911
## 912
## 913
## 914
## 915
## 916
## 917
## 918
## 919 Brigham and Women's Hospital, Boston, MA, USA
## 920
## 921
## 922
## 923
## 924
## 925
## 926
## 927
## 928
## 929
## 930
## 931
## 932
## 933
## 934
## 935
## 936
## 937
## 938
## 939
## 940
## 941
## 942
## 943
## 944
## 945
## 946
## 947
## 948
## 949
## 950
# Converting date values and replacing NAs with zeroes for consistency
nobel_prize$awardYear<- as.integer(nobel_prize$awardYear)
nobel_prize$dateAwarded<- as.Date(nobel_prize$dateAwarded)
nobel_prize[is.na(nobel_prize)] <- 0000-00-00
# Creating a subset of nobel_prize with the relevant columns for the analysis and renaming the columns
subset_nobel_prize_data<-select(nobel_prize, awardYear, category, prizeAmount, motivation, name, gender, ind_or_org)
new_col_names <- c("Award_Year", "Category", "Prize_Amount", "Motivation", "Name", "Gender", "Individual_or_Organization")
colnames(subset_nobel_prize_data) <- new_col_names
# Are there patterns of recognition in different fields? (Physics, Chemistry, etc.) Which field has received a higher number of awards? What factors may have contributed to this?
subset_nobel_prize_data|>
count(Category, name = "freq")|>
group_by(Category)|>
summarise(count = sum(freq))
## # A tibble: 6 × 2
## Category count
## <chr> <int>
## 1 Chemistry 184
## 2 Economic Sciences 84
## 3 Literature 116
## 4 Peace 134
## 5 Physics 213
## 6 Physiology or Medicine 219
# Physiology or Medicine received the highest number of awards likely due to the need for new medical interventions and understanding of bio-mechanical processes.
# How have the number of awards given out each year changed over time?
subset_nobel_prize_data|>
count(Award_Year, name = "freq")|>
group_by(Award_Year)|>
summarise(count = sum(freq))
## # A tibble: 116 × 2
## Award_Year count
## <int> <int>
## 1 1901 6
## 2 1902 7
## 3 1903 7
## 4 1904 6
## 5 1905 5
## 6 1906 6
## 7 1907 6
## 8 1908 7
## 9 1909 7
## 10 1910 5
## # ℹ 106 more rows
# 2019 had the highest number of awards given out with a total count of 14. The number of awards seems to be trending going forward in time
#Which field has received the largest prize amount? Which field has received the lowest?
subset_nobel_prize_data|>
group_by(Category) %>%
summarise(min_award= min(Prize_Amount), max_award = max(Prize_Amount), median_award= median(Prize_Amount), mean_award= mean(Prize_Amount), sd_award= sd(Prize_Amount)
)
## # A tibble: 6 × 6
## Category min_award max_award median_award mean_award sd_award
## <chr> <int> <int> <dbl> <dbl> <dbl>
## 1 Chemistry 114935 10000000 800000 3629279. 4070588.
## 2 Economic Sciences 375000 10000000 7550000 6105845. 3787630.
## 3 Literature 114935 10000000 269000 2493811. 3653734.
## 4 Peace 116960 10000000 480000 3124879. 3934391.
## 5 Physics 114935 10000000 700000 3407939. 4013073.
## 6 Physiology or Medicine 114935 10000000 510000 3072973. 3898539.
#Chemistry, Literature, Physics, and Physiology or Medicine received an equally minimal reward amount of 114935, while the max amount given in each field was 1000000.
# What proportion of the awards are given to women vs men? How has this changed over time?
subset_nobel_prize_data|>
count(Gender, name = "freq")|>
group_by(Gender)|>
summarise(count = sum(freq))
## # A tibble: 3 × 2
## Gender count
## <chr> <int>
## 1 "" 27
## 2 "female" 54
## 3 "male" 869
sum(869,54)
## [1] 923
54/923
## [1] 0.05850488
#Men were gifted more awards than women with 6% of the total number of awards given to women and 94% given to men. Looking at the original data set, you can see an increase in women getting awards as the years go on.
# Downloading the first url file and reading it into a variable called "AirBnB_data"
url3="https://raw.githubusercontent.com/ursulapodosenin/DAT-607/main/AB_NYC_2019.csv"
AirBnB_data<- read.csv(url3)
AirBnB_data
## id name
## 1 2539 Clean & quiet apt home by the park
## 2 2595 Skylit Midtown Castle
## 3 3647 THE VILLAGE OF HARLEM....NEW YORK !
## 4 3831 Cozy Entire Floor of Brownstone
## 5 5022 Entire Apt: Spacious Studio/Loft by central park
## 6 5099 Large Cozy 1 BR Apartment In Midtown East
## 7 5121 BlissArtsSpace!
## 8 5178 Large Furnished Room Near B'way
## 9 5203 Cozy Clean Guest Room - Family Apt
## 10 5238 Cute & Cozy Lower East Side 1 bdrm
## 11 5295 Beautiful 1br on Upper West Side
## 12 5441 Central Manhattan/near Broadway
## 13 5803 Lovely Room 1, Garden, Best Area, Legal rental
## 14 6021 Wonderful Guest Bedroom in Manhattan for SINGLES
## 15 6090 West Village Nest - Superhost
## 16 6848 Only 2 stops to Manhattan studio
## 17 7097 Perfect for Your Parents + Garden
## 18 7322 Chelsea Perfect
## 19 7726 Hip Historic Brownstone Apartment with Backyard
## 20 7750 Huge 2 BR Upper East Cental Park
## 21 7801 Sweet and Spacious Brooklyn Loft
## 22 8024 CBG CtyBGd HelpsHaiti rm#1:1-4
## 23 8025 CBG Helps Haiti Room#2.5
## 24 8110 CBG Helps Haiti Rm #2
## 25 8490 MAISON DES SIRENES1,bohemian apartment
## 26 8505 Sunny Bedroom Across Prospect Park
## 27 8700 Magnifique Suite au N de Manhattan - vue Cloitres
## 28 9357 Midtown Pied-a-terre
## 29 9518 SPACIOUS, LOVELY FURNISHED MANHATTAN BEDROOM
## 30 9657 Modern 1 BR / NYC / EAST VILLAGE
## 31 9668 front room/double bed
## 32 9704 Spacious 1 bedroom in luxe building
## 33 9782 Loft in Williamsburg Area w/ Roof
## 34 9783 back room/bunk beds
## 35 10452 Large B&B Style rooms
## 36 10962 Lovely room 2 & garden; Best area, Legal rental
## 37 11452 Clean and Quiet in Brooklyn
## 38 11708 Cute apt in artist's home
## 39 11943 Country space in the city
## 40 12048 LowerEastSide apt share shortterm 1
## 41 12192 ENJOY Downtown NYC!
## 42 12299 Beautiful Sunny Park Slope Brooklyn
## 43 12303 1bdr w private bath. in lofty apt
## 44 12318 West Side Retreat
## 45 12343 BEST BET IN HARLEM
## 46 12627 Entire apartment in central Brooklyn neighborhood.
## 47 12937 1 Stop fr. Manhattan! Private Suite,Landmark Block
## 48 12940 Charming Brownstone 3 - Near PRATT
## 49 13050 bright and stylish duplex
## 50 13394 Fort Greene brownstone
## 51 13808 Blue Room for 2 in Brownstone for $1350 monthly
## 52 14287 Cozy 1BD on Central Park West in New York City
## 53 14290 * ORIGINAL BROOKLYN LOFT *
## 54 14314 Greenpoint Place...Has It All!
## 55 14322 Beautiful Apartment in Manhattan!!!
## 56 14377 Williamsburg 1 bedroom Apartment
## 57 14991 Great Location, Manhattan Bedroom!
## 58 15220 Best Location in NYC! TIMES SQUARE!
## 59 15338 Room in Greenpoint Loft w/ Roof
## 60 15341 **Bright Nolita Apt w Doorman/Elevators/Gym**
## 61 15385 Very, very cozy place
## 62 15396 Sunny & Spacious Chelsea Apartment
## 63 15711 2 bedroom - Upper East Side-great for kids
## 64 16326 Comfortable 4-bedroom apt in family house.
## 65 16338 Double Room w Private Deck Clinton Hill Best Area
## 66 16421 Your Heaven in Hells Kitchen
## 67 16458 Light-filled 2B duplex in the heart of Park Slope!
## 68 16580 Sunny, Modern room in East Village!
## 69 16595 *HAVEN LOFT - Entire Floor - Six Windows - Bricks*
## 70 16821 Large Room in Amazing East Village Apt
## 71 16974 SpaHa Loft: Enormous and Bright
## 72 17037 Lovely EV Artist's Home
## 73 17092 Cool Room in Hell's Kitchen
## 74 17693 HARLEM, NEW YORK WELCOMES YOU!!
## 75 17747 BLUE TRIM GUEST HOUSE
## 76 18127 Charming East Village One Bedroom Flat
## 77 18152 Manhattan Room
## 78 18198 Little King of Queens
## 79 18590 Fort Greene Retreat on the Park
## 80 18728 Beautiful Meatpacking District Loft
## 81 18764 Cozy 2 BR in Williamsburg
## 82 19159 Spacious luminous apt Upper West NYC
## 83 19169 Entire 2 Bedroom - Large & Sunny
## 84 19282 Sunny, Spacious Top Floor Haven
## 85 19319 Private room Great Deal at Lower East Side
## 86 19601 perfect for a family or small group
## 87 19812 2 bedroom Williamsburg Apt - Bedford L stop
## 88 20299 Oh glorious spring!
## 89 20300 Great Location for NYC
## 90 20611 Cozy Bedroom in Williamsburg 3 BR
## 91 20724 Sunny room+Pvte office in huge loft
## 92 20734 Spacious Prospect Heights Apartment
## 93 20755 Large Parlor Room, Landmark Home 1 block to PRATT
## 94 20853 2-bed brownstone duplex + garden
## 95 20913 Charming 1 bed GR8 WBurg LOCATION!
## 96 21293 Sunny Apartment in Artist Home
## 97 21456 Light-filled classic Central Park
## 98 21644 Upper Manhattan, New York
## 99 21794 COZY QUIET room 4 DOOGLERS!
## 100 22911 The Stuydio Modern and Light Filled
## 101 22918 loft bed - near transportation-15min to times sq
## 102 23135 House On Henry (3rd FLR Suite)
## 103 23501 Monkey Retreat Manhattan
## 104 23686 2000 SF 3br 2bath West Village private townhouse
## 105 24143 Williamsburg—Steps To Subway, Private Bath&Balcony
## 106 24285 Beautiful Duplex Apartment
## 107 25235 Large 2 Bedroom Great for Groups!
## 108 25406 Modern Brooklyn Apt., August sublet
## 109 25696 1,800 sq foot in luxury building
## 110 26012 Sunny 2-story Brooklyn townhouse w deck and garden
## 111 26362 Times Square, Safe, Clean and Cozy!
## 112 26520 Cozy Room #3, Landmark Home 1 Block to PRATT
## 113 26559 Beautiful Apartment East Village
## 114 26785 Park Slope Green Guest House
## 115 26933 2 BR / 2 Bath Duplex Apt with patio! East Village
## 116 26954 NYC fabulous views Manhattan's eye
## 117 26969 2 story family home in Williamsburg
## 118 27006 Comfortable UWS 2-BD Family-Friendly Brownstone
## 119 27385 Great Large 1 BR apt in East Village!
## 120 27531 Eveland Private Bed & Living Room w/ Own Entrance
## 121 27644 Sugar Hill Rest Stop
## 122 27659 3 Story Town House in Park Slope
## 123 27759 apartment next to Central park
## 124 27883 East Village Sanctuary
## 125 28321 Large 1 BR in a 3 BR Brooklyn apt. next to Q Trn.
## 126 28396 Modern Apt with Spectacular Views
## 127 28907 Garden studio in the Upper East Sid
## 128 29012 Secluded Master Bedroom in Beautiful Huge Apt
## 129 29013 B & B Room 1
## 130 29455 ACCOMMODATIONS GALORE #1
## 131 29628 Sunny Room in New Condo
## 132 29683 Stylish & Sleek Apartment Near SoHo!
## 133 30031 NYC artists’ loft with roof deck
## 134 30927 Unique & Charming small 1br Apt. LES
## 135 31130 Most Central Location!
## 136 31555 Luminous Beautiful West Village Studio
## 137 31902 Sanctuary in East Flatbush
## 138 31994 Room with En Suite Bathroom & Deck
## 139 32023 FLAT MACDONOUGH
## 140 32037 Huge Private Floor at The Waverly
## 141 32100 Modern Greenpoint, Brooklyn Apt
## 142 32289 Sun-drenched, artsy modernist 1 BDRM duplex
## 143 32331 Sunny, Cobble Hill Apartment
## 144 32363 Fully Furnished Basement Apartment
## 145 32965 FLAT MACDONOUGH GARDEN
## 146 32969 Light filled Williamsburg Apartment
## 147 33009 Retreat in Williamsburg
## 148 33014 NYC Zen
## 149 33223 Cozy BR in Wiliamsburg 3 Bedroom
## 150 34760 Sunny Room in Old Historical Brooklyn Townhouse
## 151 35526 Sun Filled Classic West Village Apt
## 152 36121 Lg Rm in Historic Prospect Heights
## 153 36133 Classic Artist Loft Williamsburg
## 154 36442 Great location. Spacious on PROSPECT PARK
## 155 36647 Private Bdrm/Bathrm. New! Elevator!
## 156 36703 Sunny, clean 1 bdrm in W. Village
## 157 36934 Great location in Williamsburg
## 158 38638 Light and Airy Upper East Side 1 BDR apartment
## 159 38663 Luxury Brownstone in Boerum Hill
## 160 39267 CENTRAL PARK LOFT all for YOU
## 161 39282 Indie-Chic Share In Williamsburg
## 162 39593 A room w/ a Manhattan view, longer stay
## 163 39704 Private, Large & Sunny 1BR w/W&D
## 164 40039 Luxurious Condo in DUBMO with View
## 165 40453 Charming & Cozy midtown loft any WEEK ENDS !!!
## 166 41348 * Spacious GARDEN Park Slope Duplex* 6 people max
## 167 41513 Convenient cozy cheap apt Manhattan
## 168 42580 Parlor Room In Victorian Townhouse
## 169 42729 House On Henry (2nd FLR Suite)
## 170 42882 New York room with a view
## 171 43957 Sunny cozy room in Brklyn townhouse
## 172 44096 Room with a View
## 173 44161 Light+Open+Airy+Rustic+Modern Loft
## 174 44212 West Inn 2 - East Village
## 175 44221 Financial District Luxury Loft
## 176 44229 BROOKLYN VICTORIAN STYLE SUITE.....
## 177 44288 Your own Lovely West Village Studio
## 178 44506 ACCOMMODATIONS GALORE#3. 1-5 GUESTS
## 179 45393 Greenwich Village Stylish Apartment
## 180 45542 Clean and Cozy Harlem Apartment
## 181 45556 Fort Greene, Brooklyn: Center Bedroom
## 182 45910 Beautiful Queens Brownstone! - 5BR
## 183 45936 Couldn't Be Closer To Columbia Uni
## 184 45940 Bright Spacious Luxury Condo
## 185 46544 Park Slope haven 15 mins from Soho
## 186 46723 SAFE AND BEAUTIFUL ACCOMODATION
## 187 46911 Large Room in private Brownstone in Park Slope
## 188 47199 NEW YORK CITY, 1 BDRM.(NEAR CENTRAL PARK & METRO)
## 189 47362 LARGE, COMFY 1BDR W/CHARACTER!!!
## 190 47370 Chelsea Studio sublet 1 - 2 months
## 191 47926 LUX APT IN TIMES SQUARE NEW BUILDING
## 192 48719 Designer 1 BR Duplex w/ Terrace- Spectacular Views
## 193 50447 Lovely Apt & Garden; Legal; Best Area; Amenities
## 194 51438 1 Bedroom in 2 Bdrm Apt- Upper East
## 195 51485 Lower East Side $57~/night
## 196 51572 Prime Location in Manhattan
## 197 51850 ( F) Excellent/Pvt Rm
## 198 53137 Quiet, sunny Midtown Manhattan apt.
## 199 53196 Big Room/Washer-Dryer/Wifi/AC/JMZ
## 200 53469 cozy studio with parking spot
## 201 53470 Clean and convenient 2BR apartment
## 202 53477 3 floors of luxury!
## 203 54158 The Institute—Heart of Williamsburg
## 204 54453 MIDTOWN WEST - Large alcove studio
## 205 54466 Beautiful Uptown Manhattan apartmnt
## 206 54508 Sml Rm in pr Brst Park Sl great for Med/students
## 207 54544 City Room - Private Penthouse Apt.
## 208 54626 Cozy bedroom by Yankee Stadium
## 209 54860 Great apartment with private bathroom and entrance
## 210 55467 Private Garden Apt • New Renovation
## 211 55498 Modern comfort in art infused landmark Brownstone
## 212 55668 NOHO/EAST VILLAGE, PRIVATE 1/2 BATH
## 213 55737 Sleek & Comfortable Soho Apt
## 214 55959 Spacious Williamsburg Share w/ LOFT BED
## 215 55982 Cozy 2 br in sunny Fort Greene apt
## 216 56467 Cozy East Village Railroad 1 Bed!
## 217 56525 1 Bedroom Loft w/ Private Roof Deck
## 218 56859 City Room - Private & Comfy Bedroom
## 219 57166 Elegant NYC Pad
## 220 57297 Clean & bright 1BR in Cobble Hill, GREAT location!
## 221 57468 Modern, Large East Village Loft
## 222 57618 Great new apt, close to everything
## 223 57740 Quiet & Clean Retreat in the City
## 224 57754 Stylish Large Gramercy Loft!
## 225 57874 The Brownstone-Luxury 1 Bd Apt/NYC
## 226 58059 PRIVATE Room on Historic Sugar Hill
## 227 58062 South Slope Green
## 228 58467 17 Flr. Manhattan Views, Nr. Subway
## 229 59014 Spacious 1BR, Adorable Clean Quiet
## 230 59121 Nice, clean, safe, convenient 3BR
## 231 59642 Franklin St Flat in Trendy Greenpoint Brooklyn
## 232 59709 Artistic, Cozy, and Spacious w/ Patio! Sleeps 5
## 233 59855 One bedroom Apt. in NYC
## 234 60164 Beautiful, elegant 3 bed SOHO loft
## 235 60457 Spacious Greenwich Village Apt
## 236 60611 SpaHa Studio Monthly Rental
## 237 60666 City Room - Private Luxury Suite
## 238 60673 Private Room/bath Luxurious Harlem
## 239 60680 The gem of the East Village
## 240 60794 Bright and spacious, garden below!
## 241 60948 ACCOMMODATIONS GALORE #2
## 242 61167 Colorful Private One Bedroom Apt
## 243 61224 Huge Chelsea Loft
## 244 61406 Great room in great location
## 245 61492 Exclusive Room with Private Bath in LES
## 246 61509 Quiet, clean midtown apt w. elevato
## 247 62095 BK Sweet Suite w/Kitchen&FullBath
## 248 62427 Great East Village Apartment Rental
## 249 62430 BROWNSTONE SUNDRENCHED BEAUTY
## 250 62452 A SpeciaL!! Private Room in NY
## 251 62461 B NYC Staten Alternative...
## 252 62787 C Private Room By The Ferry
## 253 62891 Smallest House In The Village
## 254 62903 Beautiful modern studio apartment in heart of NYC
## 255 62925 Beautiful Landmarked Duplex
## 256 63299 BROOKLYN > Guest Room w/ Queen Bed in Williamsburg
## 257 63320 D Private Che@p Room 2 Explore NYC
## 258 63360 Safe cute near subway& Manhattan NY NY retro style
## 259 63546 Large and Cozy Private Bedroom
## 260 63573 Small tidy bedroom in duplex
## 261 63588 LL3
## 262 63610 DOMINIQUE'S NY mini efficiency* wifi*metro*quiet
## 263 63657 Private, Large & Sunny Top Floor Apt w/W&D
## 264 63693 Cottage in the Village
## 265 63719 BEDROOM1 FOR RENT 10min from Manhan
## 266 63913 HOSTING YOUR SUNNY, SPACIOUS NYC ROOM
## 267 64000 Williamsburg near soho. / loftbed
## 268 64015 Prime East Village 1 Bedroom
## 269 64107 BROOKLYN STUDIO APARTMENT
## 270 64277 BEDROOM2 FOR RENT 10min from Manh
## 271 64314 cozy bedroom in lovely garden apt
## 272 64365 Crown Heights Garden Apt.
## 273 64707 Amazing Sunny & Breezy Home In the Heart of NYC
## 274 64837 ENJOY Downtown NYC!!
## 275 65019 Charming UWS Treehouse Apt
## 276 65268 Share a HOME - $75 for 1 bdrm/++ for 2 - Brooklyn
## 277 65556 Room in S3rd/Bedford, Williamsburg
## 278 65562 CHARMING EAST VILLAGE 2 (or 1) BR
## 279 65615 Farmhouse Apartment in Williamsburg
## 280 65660 Bright+Spacious Williamsburg Abode!
## 281 65813 Suite Sugar Hill, Harlem, Private Rm in Hosted Apt
## 282 65834 Beautiful 1 Bedroom Apt Park Slope
## 283 66008 CHARMING CARROLL GARDENS APT.
## 284 66026 Private Bedroom Brownstone Brooklyn
## 285 66251 East Village Loft with Piano & Patio
## 286 66275 Lower East Side Magic Room
## 287 66451 **Fantastic Williamsburg Apt**
## 288 66718 West Harlem Home Base - Eco-Apt.
## 289 66741 Charming Garden Apt in Park Slope
## 290 66974 Lovely, Modern, Garden Apartment
## 291 67288 Central Park 1BR sunny condo
## 292 67299 Cozy Garden Apartment in Williamsburg
## 293 67397 SoHa comfort-by NW Central Park!
## 294 68099 Cozy room in Upper West Side
## 295 68305 Cozy Private Room in Apartment
## 296 68403 The Cozy Brownstone Inn (discount)!
## 297 68735 Prewar Penthouse w Private Terrace
## 298 68765 Designer 2.5 BR Loft in Carroll Gardens by Subway
## 299 68900 Bright Beautiful Brooklyn
## 300 68974 Unique spacious loft on the Bowery
## 301 69894 Nice renovated apt, prime location!
## 302 69921 Brooklyn Writer's Nook
## 303 70095 Private Bedroom in Large NYC Apartment
## 304 70128 Large, Sunny Room East Village NYC
## 305 70609 Great Large 3 BR/2 Bath Duplex with Private Patio!
## 306 71010 All That Jazz. Uptown style on Sugar Hill.
## 307 71248 Bright and lovely 1 bdrm apt in LES
## 308 71366 Beautiful One Bed West Village - 4 Month Special
## 309 71384 Gigantic Private Brooklyn Loft!
## 310 71812 Condo Apartment with laundry in unit
## 311 72190 1BR: See Central Park from Terrace!
## 312 72265 Private room in cozy Greenpoint
## 313 74073 Food & Music Dream Apartment in Williamsburg
## 314 74240 French Garden cottage off Bedford
## 315 74333 Alcove Studio w/ outdoor Patio Deck
## 316 74404 Luxury 3 bed/ 2 bath apt in Harlem w/ terrace
## 317 74680 One Bedroom Mini studio - Free WIFI
## 318 74860 Sunlit and Cozy Williamsburg/Greenpoint, Brooklyn
## 319 75193 BROOKLYN > Guest Room w/ King Bed in Williamsburg
## 320 75635 Bright Cozy Chinatown Studio Apt.
## 321 76761 Eveland the Place to Stay & Enjoy a 5-⭐️ 2bdrm
## 322 77765 Superior @ Box House
## 323 77936 Hells Kitchen Garden of Eden
## 324 78919 Historic House Boerum Hill, BK, NYC
## 325 79067 Lovely 3 bedroom in Italianate Brownstone w/garden
## 326 79782 Williamsburg HUGE, PRIVATE BATH - Next to Train!
## 327 80493 Cozy room in East Village with AC
## 328 80684 Duplex w/ Terrace @ Box House Hotel
## 329 80700 Loft w/ Terrace @ Box House Hotel
## 330 80924 Spacious 3 Bedroom Duplex in Park Slope
## 331 81739 Loft w/ Terrace @ Box House Hotel
## 332 82549 Columbia Castle in Brooklyn Heights
## 333 82550 Columbia Castle 2 BR
## 334 82638 Charming Artist's Flat, East Village
## 335 82928 BEAUTIFUL 2 BEDROOM APARTMENT
## 336 83243 Brooklyn Cove Studio Apt w/ Garden!!
## 337 83446 Ft. Greene garden gem, large and convenient
## 338 83722 Williamsburg penthouse with private roof cabana
## 339 83847 East Village Designer's 1-BR APT
## 340 84010 Superior @ Box House
## 341 84059 So Much Room in Brooklyn
## 342 84659 Large Studio--Heart of East Village
## 343 84905 Huge.Bright.Clean.Safe. Private Room
## 344 85094 Garden 1BR/1BA Brownstone Apt - 2 blocks to subway
## 345 86215 MODERN SPACIOUS 2 BR APT DOWNTOWN MANHATTAN
## 346 89427 The Brooklyn Waverly
## 347 89621 WONDERFUL, COMFORTABLE STUDIO
## 348 93313 MAISON DES SIRENES 2
## 349 94035 Modern, Safe, Clean, Bright Room in Astoria for 2
## 350 94209 LARGE 1BR (CONV 2BR) CROWN HEIGHTS
## 351 94477 The Vernon On Greene
## 352 94783 Beautiful, Bright’s, Warm & Spacious 1.5BR Apt
## 353 95747 Lovely 1BR in Tree-lined WBurg
## 354 95883 Spacious Loft in Clinton Hill
## 355 96471 The Brooklyn Waverly, One Bedroom
## 356 98330 LOVELY APARTMENT IN THE HEART OF NY
## 357 98663 Groovy NYC Chelsea Pad
## 358 99070 Comfortable Cozy Space in El Barrio
## 359 99085 Sunny Bklyn Jewel Fort Greene JULY - AUG 2019
## 360 100002 MANHATTAN Neat, Nice, Bright ROOM
## 361 100184 Bienvenue
## 362 100186 Large Brand New Park Slope 1BR
## 363 101053 Colorful Artistic Williamsburg Apt
## 364 102995 UWS Brownstone Near Central Park
## 365 103161 Artsy TopFloor Apt in PRIME BEDFORD Williamsburg
## 366 103311 2 BR w/ Terrace @ Box House Hotel
## 367 103806 BOHEMIAN EAST VILLAGE 2 BED HAVEN
## 368 105469 Oceanfront Apartment in Rockaway
## 369 105510 Private 1-Bedroom Apt in Townhouse
## 370 106363 Bright Room With A Great River View
## 371 106647 Tree lined block modern apartment
## 372 107630 Sweet Historic Greenpoint Duplex
## 373 107895 Riverside Charm with Fire Place
## 374 110739 Very Central, Nomad/Chelsea Loft Studio
## 375 112100 Sunny 3BR Apt Ideal for Family
## 376 112304 Cozy Private Room in West Harlem!
## 377 112359 UES Quiet & Spacious 1 bdrm for 4
## 378 112435 ALL ABOUT A VERY COMFORTABLE ROOM..
## 379 113265 Brooklyn- Crown Heights Garden Apt.
## 380 113945 Cozy room in Time Square!
## 381 114123 Large Park Slope Townhouse Duplex
## 382 114229 Lower East Side 2 Bedroom Apt
## 383 114969 Manhattan Studio, Perfect Location
## 384 115535 Sun-Drenched Hamilton Hts Jewel
## 385 115678 Your Stunning Vacation Apartment!
## 386 115748 1 BDRM Apt-Weekend Sublease
## 387 116940 ROOM WITH A KITCHENETTE
## 388 117425 Conveniently Located, Sunny Brooklyn Heights!
## 389 118061 Style in Stuyvesant Heights
## 390 118430 Heart of Meatpacking & Chelsea
## 391 118680 Spacious East Village apt near it all
## 392 120362 Williamsburg apartment right by the subway
## 393 121687 Spacious Brooklyn Loft - 2 Bedroom
## 394 121861 Park Slope Apt:, Spacious 2 bedroom
## 395 123784 NYC Studio for Rent in Townhouse
## 396 125053 ⚡Quiet Gem w/roof deck on NY's Hottest Street⚡
## 397 125163 Authentic New York City Living
## 398 125594 SUPER BIG AND COZY PRIVATE BEDROOM
## 399 126443 ☆Massive DUPLEX☆ 2BR & 2BTH East Village 9+ Guests
## 400 126816 Gorgeous Upper West Side Apartment
## 401 127387 Luxe, Spacious 2BR 2BA Nr Trains
## 402 128975 City Room - Street View Apt
## 403 131154 Cozy and Bright One Bedroom in BK
## 404 132516 Forest Hills Apt minutes to midtown Manhattan
## 405 132570 Spacious West Village 1 b/room King
## 406 132695 Perfect Williamsburg Summer Haven
## 407 133025 Midtown cozy convenient
## 408 134934 Prime Williamsburg Apartment
## 409 135393 Private, spacious room in Brooklyn
## 410 135465 Garden apartment close to Manhattan
## 411 135706 The Ground Studio - West Side
## 412 136493 Stunning arty 3200sf 3FLR+3BR townhome w/terrace
## 413 138216 Sunny and Spacious Designer's Home
## 414 139624 Spacious,Sunny, private one bedroom
## 415 140133 Truly Amazing Oasis In The City
## 416 140425 Holiday Time in NY - Oh My!!
## 417 140973 East Village, King-Sized, Charmer
## 418 141154 Affordable Furnished Apartment
## 419 141335 Architect's Brownstone
## 420 141890 LUXURY SOHO 2 Bedroom Apt
## 421 141984 Charming Nolita Apartment!!
## 422 142069 EAST VILLAGE STUDIO, sunny & quiet
## 423 144087 LUXURY OF THE HORIZON
## 424 144148 1 Bdrm in 4 Bdrm dupelx/roof deck
## 425 145064 The Heart of Prime Williamsburg
## 426 145188 Parisian apartment in Chelsea
## 427 145994 Cozy 2 Bedroom with Private Garden
## 428 146754 Three-bedroom house in a quiet neighborhood
## 429 147586 Beautiful Duplex w/Private Garden
## 430 148201 NYC - Sunny Greenwich Village 1br
## 431 148259 Garage Designer Loft
## 432 148825 Best City Area Columbia U Upper West Side C Park
## 433 149287 Your own apartment off Park Avenue
## 434 149777 Artsy 1 bedroom Apt. 20 min to 42nd Grand Central!
## 435 150804 Lower East Side 2 Bed Apt.
## 436 151199 Astoria-Private Home NYC-
## 437 151478 BIG, COMFY , PRIV. ROOM, BIG APT, YARD, GREAT LOC.
## 438 152071 Park Slope Apartment
## 439 152078 CHARMING PRIVATE BEDROOM EAST VILLAGE
## 440 152259 City Room - Semi Private Bedroom
## 441 152263 Cozy apartment in a brownstone
## 442 152520 Female Only Clean15min to Manhattan
## 443 153405 Greenpoint Spacious Loft
## 444 153780 Private E. Village Townhouse Stay
## 445 154934 Harlem/Hamilton Heights Cozy Room
## 446 155296 Incredible Prime Williamsburg Loft!
## 447 157673 Large Loft Style Studio Space
## 448 158061 Hancock Town House!-Stuyvesant Mews
## 449 158176 Entire Apt in Heart of Williamsburg
## 450 158290 Clinton Hill + Free Coffee = #smile
## 451 158913 Nice, cozy, neat apt Greenpoint,BK
## 452 158955 PRIVATE and SUNNY Williamsburg Apt!
## 453 159749 Purple Room for 2/3 in brownstone $1450 per month
## 454 159815 Red Room for two in Brownstone for $1355/mo
## 455 159913 Chelsea living, 2BR best location
## 456 160609 LOCATION LOCATION LOCATION UWS 60's
## 457 160994 In the heart of East Village
## 458 161366 Sunny 15min to Manhattan LADY only
## 459 161394 Surfer room 15mins to downtown NYC!
## 460 161996 Manhattan Penthouse-Max.12 guests
## 461 162493 Prime Williamsburg 3 BR with Deck
## 462 162508 Beautiful Brooklyn Oasis
## 463 163627 Blue Room in Awesome Artist's Apartment!
## 464 163809 Cool & Spacious Harlem Artist Flat
## 465 163814 ☆ STUDIO East Village ☆ Own bath! ☆ Sleeps 4 ☆
## 466 163836 Greenpoint Loft / Le Chez Andrea
## 467 164989 *SoHo: Clean, Safe, Private, Peaceful Bedroom (A)*
## 468 165080 Amazing Brownstone in Best Brooklyn
## 469 165461 Couldn't Be Closer To Columbia Uni2
## 470 165824 Lady only Curtain-divided room
## 471 166006 Nice Manhattan Apt Near Central Park and Subway
## 472 166172 LG Private Room/Family Friendly
## 473 166541 Spacious Quiet rm - 20mins to Midtown
## 474 166983 3 BR, Beautiful Brooklyn Duplex
## 475 167013 Spacious modern studio apartment in Manhattan
## 476 167017 Gorgeous Duplex + Garden
## 477 167222 CBG# 4Tiny room w/ huge window/AC
## 478 167482 Charming upper west side apartment
## 479 168084 Light-filled East Village Delight
## 480 168123 Sunny, quiet, legal homelike suite-Pk Slope South
## 481 168546 Spacious Duplex in Brownstone!
## 482 168810 Lovely Vintage Haven—Heart of UWS
## 483 169002 Modern Space in Charming Pre-war
## 484 169152 Warehouse Loft with Garden view
## 485 169306 Affordable & Cozy
## 486 169464 Creative Vintage Loft in S. Williamsburg
## 487 169483 Very close to Downtown Awesome Private Apartment
## 488 170420 The Happy home!
## 489 170761 Fort Greene, Brooklyn: Front Bedroom
## 490 171776 Gorgeous 1 bdrm in huge duplex!
## 491 172700 Sunny, cozy room in Lower East Side
## 492 172870 Large Quiet Bedroom Near Columbia U
## 493 173072 Cozy Pre-War Harlem Apartment
## 494 173151 spacious studio
## 495 173742 Elegant 2-BR duplex, Union Square
## 496 174527 Cozy private family home in Bushwick
## 497 174966 Luxury 2Bed/2.5Bath Central Park View
## 498 176135 Cosy Sunny 1brm in Prospect Heights
## 499 176653 East Village bedroom w rooftop
## 500 176962 Williamsburg Home Away From Home!
## 501 177421 Brand New Beautiful Duplex Apartment with Garden
## 502 177495 PRIME, Luxury, Spacious 2 Bedroom Apt in Chelsea
## 503 177606 SPACIOUS ALCOVE STUDIO/ JUNIOR ONE
## 504 179670 High-end doorman bldg in the LES
## 505 179741 Spring & Mulberry 2 Bedroom Apartment
## 506 180507 Ultra Modern NYC Garden Apartment
## 507 180792 Modern Garden Apartment in NYC
## 508 181972 Gorgeous Entire Manhattan Townhouse
## 509 182069 Cozy studio Apartment in Upper East
## 510 182095 Historic classic central cozy Village clean NYU
## 511 182177 A PRIVATE FLAT / APARTMENT- $SPECIAL$
## 512 182649 Williamsburg bedroom by Bedford Ave
## 513 185266 Clean and bright with a comfortable atmosphere
## 514 187488 WEST VILLAGE LRG CLEAN SUNNY PRIVATE BDRM
## 515 187566 Historic Brooklyn Studio Apartment
## 516 187986 Comfort at Crossroads of Downtown
## 517 188146 "The Oasis" on Bedford Williamsburg
## 518 188661 Large, sunny garden apartment.
## 519 188674 UNION SQUARE/ E. VILL 1BR BEAUTIFUL
## 520 189135 Hell's Kitchen Funky 80's Hideaway!
## 521 189181 Room in Chic Modern High Line Luxury- New!
## 522 189732 Family & Friends in New York City
## 523 189787 Spacious & Comfy BK Brownstone
## 524 190267 Large Luxury Upper East Side Studio
## 525 190542 Chateau Style Brooklyn Loft for Singles or Couples
## 526 190968 Lovely Brooklyn Brownstone 1BR!
## 527 190974 Beautiful Grdn. Apt. in Park Slope
## 528 191075 Sun-drenched East Village Penthouse
## 529 193105 Columbus Circle Luxury Bldg - Private Room&Bath
## 530 193333 Bright Private Bedroom in Williamsburg (Bedford L)
## 531 193393 Spacious, Kid-Friendly, and 15-20 Mins. to Midtown
## 532 193853 Quiet Chelsea Studio w/Charm
## 533 194154 Large Room Overlooking Central Park
## 534 195123 Cheerful, comfortable room
## 535 195233 Hospitality on Propsect Pk-12 yrs Hosting Legally!
## 536 195240 Prospect Pk*NYC in 5 stops* Cozy,Clean & Legal!
## 537 195578 Loft Style Apt in Williamsburg
## 538 195971 2 Beds over Bed-Stuy
## 539 195989 Sunny, Large, Park Slope Bedroom
## 540 196010 Huge Bklyn Loft w Private Roofdeck
## 541 197155 Quiet Jr Alcove Near Times Square!
## 542 197753 Large room in elevator drman bldg
## 543 197942 Comfy, Cozy, Brooklyn close to Manhattan
## 544 199195 Modern Bedroom in Hamilton Heights
## 545 199312 Sunny Space in Williamsburg
## 546 200645 Best Manhattan Studio Deal!
## 547 200955 STYLISH EAST VILLAGE FLAT
## 548 201992 Serene Park Slope Garden Apartment
## 549 202273 Cozy and spacious - rare for NYC!
## 550 203901 Beautiful UES apartment
## 551 204065 St. James Pl Garden Studio 1block to PRATT &Gtrain
## 552 204833 Great, spacious apt in Williamsburg
## 553 204959 Comfortable. Spacious. Private Room.
## 554 205043 Modern Condo in Midtown
## 555 205485 Ideal Brooklyn Brownstone Apartment
## 556 205735 A Cozy Oasis in Bushwick, NY
## 557 205867 Private Entrance - Private Parking
## 558 206071 Yankee Stadium Oasis 2 stops to Manhattan!
## 559 206316 Sunny, Spacious Studio in Ft.Greene
## 560 206772 Williamsburg Exposed Brick Loft
## 561 206957 Bright Modern Charming Housebarge
## 562 208148 Central Bedford Avenue Apartment
## 563 208889 Welcome to Brooklyn! Bed-Stuy
## 564 209310 Sunnyside NYC/ AC room/ city views/ near Midtown
## 565 211078 Greenpoint Waterfront Loft
## 566 211974 East Village House -- Unique!
## 567 212109 2-bedroom share in heart of Greenwich Village!
## 568 212178 1 Bedroom Pre War apt
## 569 212544 Quiet One Bedroom in Park Slope
## 570 213272 CreaTive Live-In Artspace/Birdsnest
## 571 213330 RARE Penthouse Oasis featured on DesignSponge
## 572 214917 New Clean Spacious Bed & Breakfast
## 573 215560 Sunny, calm room in Victorian home
## 574 215784 Modern Unique Studio in NYC
## 575 215907 2 Bed, 2 Bath Apartment on Central Park West
## 576 217580 Luxury Furnished 1 bedro, Bay Ridge
## 577 218358 Your Haven in the Upper West Side
## 578 219066 Wonderful Studio In Brooklyn, NY!!!
## 579 219482 A Cozy Brooklyn Hideaway
## 580 219793 ✿✿✿ COUNTRY COTTAGE IN THE CITY✿✿✿
## 581 219818 ✿✿✿ COUNTRY COTTAGE IN THE CITY✿✿✿
## 582 219922 Lovely Bdr in Harlem, Manhattan
## 583 220351 THE BEST DEAL ON THE HUDSON RIVER!!
## 584 220563 Lovely HUGE Master Bed + Study
## 585 220946 Newly Reno’d Chic Quiet Exec 1BR
## 586 221043 1 Bedroom in prime Flatiron
## 587 221097 Large Artist Floorthru- Greenpoint
## 588 221618 Gorgeous PermaGO Private Room in FiDi - 1/2
## 589 222054 CBG Helps Haiti Rm #3
## 590 222304 BEST DEAL IN CHELSEA 1 bdrm NYC
## 591 223930 Lovely Apartment
## 592 224004 Artsy Loft-like Harlem Apartment
## 593 224006 Harlem/Manhattan Classic Apartment
## 594 224510 BEAUTIFUL APARTMENT, GREAT LOCATION
## 595 225297 Quiet sunny studio Midtown
## 596 225306 Charming room in Victorian home
## 597 225887 Brooklyn B & B close to Manhattan
## 598 225926 The Notorious B.N.B. { The Erhart }
## 599 225976 Sunny cozy multileveled apartment!
## 600 226021 Sunny 2 bedroom Williamsburg Duplex w/ 3 beds
## 601 227715 ROOM WITH KITCHENETTE #2
## 602 227735 Alpha-Bet City entire floor large cool 2br -L.E.S
## 603 228317 Your Haven Awaits At "Emma's Place"
## 604 228496 Spacious, Kid-Friendly 2 BR in West Village
## 605 228517 Great Bedroom in Downtown Manhattan
## 606 228925 Beautiful Brownstone
## 607 228979 1BDR - Hell's Kitchen Hideaway
## 608 229367 COMFY ROOM/COFFEE AND BAGEL/WEEKLY DISCOUNT
## 609 229874 Oversized Studio in Park Slope
## 610 230321 Apt with EmpireState view-Subway around the corner
## 611 230854 Zen Yankee Stadium Pad 5 Minutes To Manhattan!
## 612 230877 Monthly Apartment Rental
## 613 230956 Wonderfully inviting East Village
## 614 231414 TURQUOISE: One-Bedroom Apt. in Soho
## 615 232612 Lovely pied-à-terre, in an historic building
## 616 232618 Spacious, well furnished, high fl. beautiful views
## 617 233189 NYC Studio in Heart of Times Square
## 618 233638 rooms for rent in Queens with piano
## 619 233662 Large Sunny Luxe Prvt Room/Midtown
## 620 234184 Spacious Stunning Harlem Townhouse
## 621 234870 Private Room With GREAT Location
## 622 235552 HUGE Sunny Duplex Loft with Garden
## 623 235651 LARGE ARTSY Room w/ Loft Bed 4 DOOGLERS!
## 624 235951 Stylish Studio with exclusive Terrace
## 625 235960 LES private apt, 1 bedroom & more
## 626 236671 Williamsburg Garden Home, 5 minutes from Manhattan
## 627 236788 HUGE, modern 2-LEVEL Brooklyn apt
## 628 236806 charming 2bdrm apt in East Village
## 629 237127 LOCATION LOCATION LOCATION Liz's
## 630 237210 Manhattan Loft in Prime East Village Location
## 631 239055 Nolita Penthouse_Private Deck_Elev_
## 632 239733 Astoria Garden Suite
## 633 239766 Lower East Side/Chinatown 1 Bedroom
## 634 239826 Amazing 1 bed, live like a Newyorkr
## 635 239883 Private Room in Fort Green BK close to city
## 636 239899 Spacious & Charming by Prospect Pk
## 637 240800 Private Room Near Brooklyn Museum
## 638 241140 The Notorious B.N.B. { The Wallace }
## 639 241159 Clinton Hill 1 Bed Bright Loft Apartment
## 640 241862 Great Studio in W. Village - NYC!
## 641 242532 The Notorious B.N.B. { The Swoon }
## 642 242643 BIG 1br, SLEEPS 4, dishwashr, TV
## 643 243229 2BR Apt - 20min to Soho
## 644 243708 Williamsburg - Quiet and Comfy stay
## 645 245504 One Fabulous Private Room
## 646 245544 NY/ Big Room for 2 near Manhattan
## 647 245574 Brooklyn Brownstone apartment
## 648 245607 big 1 bedroom apt very central
## 649 246134 Lovely, Large Room in Crown Heights
## 650 246351 Sweet Apt, Steps From Gramercy Park
## 651 246916 Quality Cozy Studio Next to Subway
## 652 246938 Scandinavian-apt for up to 5. LES
## 653 248865 Loft Suite @ Box House Hotel
## 654 248871 4 BEDROOM -2BATHRM WEST VILLAGE DUPLEX TOWNHOUSE
## 655 249414 Large & bright 900ft² 1br in WV
## 656 249618 At a very nice area in the WestSide
## 657 249867 HANCOCK VERY SMALL ROOM
## 658 250259 Pre-War Williamsburg Loft
## 659 250311 1 Bedroom Available In My Two Bedroom Flat
## 660 250323 SPACIOUS PRIVATE LITTLE ITALY FLAT
## 661 250536 The Lenox in Harlem
## 662 250537 The Lenox in Harlem
## 663 250801 Heart & Soul of Greenwich Village
## 664 251262 Prime Williamsburg Loft off Bedford
## 665 251277 Private Bdrm /Bath 1 block Ctrl Prk
## 666 252076 +Highly Satisfactory LES dwelling++
## 667 252607 Whole apartment / 2 bedroom in NYC
## 668 253332 Spacious, modern loft in awesome neighborhood
## 669 253466 Loft Suite @ The Box House Hotel
## 670 253471 Loft Suite @ The Box House Hotel
## 671 253475 Loft Suite @ The Box House Hotel
## 672 253548 Well Kept Private Room around Brighton Beach
## 673 253590 Large 1 Bedroom furnished on UWS
## 674 253623 Chez Carine - Privacy in Manhattan
## 675 253800 Loft Suite @ Box House Hotel
## 676 253803 Loft Suite @ The Box House Hotel
## 677 253806 Loft Suite @ The Box House Hotel
## 678 253811 Loft Suite @ The Box House Hotel
## 679 253815 Loft Suite @ The Box House Hotel
## 680 253828 Duplex w/ Terrace @ Box House Hotel
## 681 253839 Loft w/ Terrace @ Box House Hotel
## 682 253842 1 BR w/ Terrace @ Box House Hotel
## 683 253846 Superior @ Box House
## 684 254131 Read it 1st, A seprat fur BR, low $
## 685 254168 2 BR Duplex @ Box House Hotel
## 686 254409 Husband & Wife Art-Filled Apartment
## 687 255024 3BR, 2 bathroom condo in Bushwick
## 688 255476 The BLUE OWL:\nVEGETARIAN WBURG W PATIO & BACKYARD!
## 689 255601 Cozy 2 Bedroom 20 Min from City
## 690 255957 NOLITA! LOCATION! LOCATION! VIEWS! FREE GYM!
## 691 256078 Entire apt NYC, Queens. 15 min from Times Square.
## 692 256328 Luxury Chelsea Townhouse at the High Line
## 693 256369 Alchemy BnB - room in artist loft
## 694 257097 Sunny! 2br Steps to train/restaurants - 15 to NYC
## 695 257568 Zen Den (Airport Pickup: JFK & LGA)
## 696 257787 Heart of Williamsburg. Brand New.
## 697 258284 Fresh, Clean Brooklyn Garden Apt.
## 698 258397 Guest Apartment in Owner Occupied Home
## 699 258686 My Home Is Your Home
## 700 258688 Spacious & Stylish Chelsea One Bedroom Apartment
## 701 258690 CHELSEA 1 Bdrm Plus Sleeping Loft!!
## 702 258740 Spacious room in beautiful apt!
## 703 258838 Oceanview,close to Manhattan
## 704 258876 Affordable rooms,all transportation
## 705 259946 Budget stay, near transportation
## 706 260451 Fort Greene brownstone 1BR- SUBLET
## 707 260765 NewYork Modern Pre-War LoftStudio
## 708 261194 Cozy Artist Duplex **Bedstuy Charm**
## 709 261259 Apartment in Best location in NYC
## 710 261344 Inspired in Historic Downtown NYC!
## 711 261674 Chelsea/West Village - 2bdrm apt
## 712 261781 1500+ sq ft 2BR West Village Loft
## 713 262343 Cozy & Clean Lower East Side Apt.
## 714 262405 Spacious Townhome Apt in Brooklyn
## 715 262478 Chic + Stylish room in heart of LowerEastSide NYC!
## 716 262583 Landmark 2 Bedroom West Village NYC
## 717 263005 2 bedroom apt in charming brick townhouse
## 718 263190 Room in East Village with Private Entrance
## 719 263232 Cozy&Clean in a great neighborhood
## 720 263502 Prime Williamsburg 1/BD New Condo
## 721 263776 City Skyline Views from every room!
## 722 263888 Contemporary & Classic Sanctuary on the Hudson
## 723 264323 Comfortable Manhattanville
## 724 265036 Private room w/ queen bed + rooftop
## 725 265064 Zen Eyrie –Airport Pick-Up: JFK/LGA
## 726 265145 Studio sublet in Hell's kitchen
## 727 265506 Luxury NYC 2 Bedroom with Terrace
## 728 265831 Bright unique designer loft in Soho
## 729 265912 Spacious 2 bed Loft apartment Bedford L
## 730 266146 Beautiful studio by Central Park
## 731 266155 One bed suite with private garden
## 732 266351 SUNNY 1 Bedroom APT in Fort Greene - BROOKLYN
## 733 266437 West Village cozy 2 bedroom NYC
## 734 266449 2 Bedroom Gem - Prime LES Location
## 735 266756 REAL 2BR-HEART OF SOHO-LITTLE ITALY
## 736 267376 BIG ROOM / DOWNTOWN LOFT /
## 737 267435 Large Sunny Bedroom in QNS NYC
## 738 267535 Home Away From Home-Room in Bronx
## 739 267652 Private clean pleasant spacious room.
## 740 267708 Charming Hotel Alternative\nMount Sinai
## 741 268392 SUNNY 2-bdrm CHILD-friendly Uptwn by Centrl Park!
## 742 268481 Resort-like living in Williamsburg
## 743 268868 Hudson Yards with views of The Highline Park
## 744 269283 Brooklyn: A Huge Bedroom + Good Vibes
## 745 269889 One stop from Midtown Manhattan!
## 746 270139 Private Room Very Near L train, Bushwick
## 747 270231 Cozy New York City private room
## 748 270315 Bed-stuy Royal Room
## 749 270345 SUPER CUTE EAST VILLAGE APARTMENT
## 750 270680 GREAP STUDIO / 4PPL IN MIDTOWN
## 751 270681 BEDFORD AV. ROOM IN WILLIAMSBURG..
## 752 271083 Sleep & Wake near Botanical Gardens
## 753 271128 Tranquil in the heart of Brooklyn 2
## 754 271130 Tranquil in the heart of Brooklyn 1
## 755 271694 Easy, comfortable studio in Midtown
## 756 271950 Huge luxury 1BR apt near Central Park South(4 ppl)
## 757 271954 Beautiful brownstone apartment
## 758 272026 1 Bd. MANHATTAN NY Entire Apt. 1 yr-6 months min.
## 759 272044 Luxury Designer Downtown Apartment
## 760 272427 Spacious room on charming block in Greenpoint!
## 761 272706 SUNNY, SPACIOUS APT. in FT. GREENE
## 762 272738 Guest Room in Authentic Williamsburg Factory Loft
## 763 273190 6 Bedroom Landmark West Village Townhouse
## 764 273256 Beautiful bed and bath - Manhattan
## 765 274062 Beautiful Room Near Central Park!
## 766 274329 Fantastic 1-bedroom basement apt.
## 767 274376 Private Clinton Hill, Brooklyn Apt
## 768 274743 Charming furnished Studio-Loft
## 769 275976 Lovely 2 bedroom apartment with backyard access
## 770 276216 Nights in White Satin in the Slope
## 771 276317 The Carlton, Brooklyn brownstone Duplex w/ garden
## 772 276482 Comfortable Manhattanville.
## 773 277207 Beautiful lrg 1800's syle apt share
## 774 277370 Location wins for East Village Apt
## 775 277883 Sunny Entire Apt with Romantic Bedroom
## 776 278090 Furnished room for rent - Manhattan
## 777 278145 Large Room in a Huge NY apartment.
## 778 278631 West Village NYC Sun-filled Studio!
## 779 278876 Large, furnished room in a 2 bedroom!
## 780 279093 Huge Apartment! Amazing View!
## 781 279857 #1 Yellow Block BnB/see at Net Flix Show Stay Here
## 782 279969 Cozy Brownstone Inn I(studio)
## 783 280315 Crown Height's Brooklyn Cozy Apt
## 784 281521 Amazing West Village 2br
## 785 281756 Authentic NY Charming Artist Loft
## 786 281851 Beautiful Private Bedroom - Downstairs
## 787 282341 Kensington/Ditmas Park pied-a-terre
## 788 282443 QT STUDIO FOR ROMANTIC COUPLES
## 789 282514 Own Room & Bath, Sunny Town House, 18" to Wall St
## 790 282863 Cozy & Charming Boerum Hill Flat
## 791 282977 Park Slope Brooklyn! Sunny Bedroom.
## 792 283072 One bedroom sharing Bathroom
## 793 283090 Spacious East Village Apartment
## 794 283184 Huge Williamsburg Loft..Perfect for Big Groups!
## 795 283272 Stylish Garden House - Trendy area
## 796 283550 Hells Kitchen Ground Fl 1-bedroom
## 797 284208 Pre War Park Slope on Prospect Park
## 798 284855 Charming Apt in the Best Location!
## 799 285442 Huge room with private balcony
## 800 285492 Amazing 1 bedroom apt with NYC View
## 801 285716 Great spacious room by the L train!
## 802 286662 Charming Brooklyn Studio
## 803 286838 Private Room in Brownstone
## 804 287397 Bed Stuy Pride! Welcome to Brooklyn
## 805 287408 Lovely Hell's Kitchen Studio...
## 806 287417 HOT SPOT FOR 20 AND 30 SOMETHING'S
## 807 287421 Cozy, Clean Cobble Hill Brownstone
## 808 287481 Bright Loft Apt w Skylight in Wburg
## 809 287839 Cozy, beautiful doormen studio-
## 810 287845 Carroll Gardens Gem-2BD with Garden
## 811 289020 Sunny 1BR Center of East Village!
## 812 289037 2BR in Cobble Hill, Brooklyn, NY
## 813 289288 Perfect East Village Apartment
## 814 289665 Decorators 5-Star Flat West Village
## 815 289703 Beautiful SoHo Luxury Apartment
## 816 289958 2 Rooms in Cottage NYC
## 817 289995 Zen Minimalist w/Garden- Bedford L Stop
## 818 290457 Between Two Bridges 2BD -Whole Apt!
## 819 291524 BIG LUXURY LINCOLN CENTER AREA STUDIO + !!
## 820 291714 Brooklyn Beauty - Large 2 bedroom Apartment
## 821 291812 Entire Apartment in Astoria, 15mins from Manhattan
## 822 292047 Gorgeous pvt room in West Village
## 823 292121 1 bedroom apt in Midtown West
## 824 292266 Sunny and spacious bedroom
## 825 292637 Beautiful Spacious One Bedroom
## 826 293004 Room next to Columbia Uni.
## 827 293837 Big Apt for Funky Art /Music Lovers, Outdoor Patio
## 828 294227 Loft Suite @ The Box House Hotel
## 829 294239 NYC Summer Getaway | Full Home 2BR
## 830 294242 Loft Suite @ The Box House Hotel
## 831 294250 Beautiful New Garden Apartment
## 832 294259 Loft Suite @ Box House Hotel
## 833 294263 Loft Suite @ The Box House Hotel
## 834 294280 Loft Suite @ The Box House Hotel
## 835 294297 Lovely apt in Williamsburg, BK
## 836 294353 Williamsburg HUGE SUNNY next2train!
## 837 294490 Loft Suite @ Box House Hotel
## 838 294717 Modern apartment w/ gorgeous view
## 839 295231 Sunny, clean br available
## 840 295379 Have Whole Apt! Prime Williamsburg!
## 841 295998 Panoramic View Central Park & NYC
## 842 296345 E Williamsburg Apartment with Yard
## 843 296361 Nice Private Room Beauty in Queens
## 844 296658 Sublet in Brooklyn/Lefferts Gardens
## 845 296717 Cozy Corner, Bedford Ave Brooklyn!
## 846 296844 HISTORIC WILLIAMSBURG, BKLYN #1
## 847 297611 Inexpensive apartment in exchange for cat-care
## 848 297962 Private room in 2 br Apt, Wburg, BK
## 849 298073 Bright, Airy Williamsburg Apt
## 850 298759 Large Double Room Queenbed Wifi
## 851 298854 Low$pacious in Williamsburg, Bklyn
## 852 299062 1 Bdrm in 2 Bdrm Apt in Upper East Lux Drmn Bldng
## 853 299078 Charming 1BD in SoHo
## 854 299531 Feel like you never leave your home
## 855 299699 Sunny apartment in Greenpoint
## 856 301034 Furnished Bedroom with private half bath
## 857 302057 Sunny private room featured in film
## 858 302758 Sunny 1BR East Harlem Apartment
## 859 303345 The best studio in town
## 860 303462 Fully Furnished 1B/1BTH UWS GEM 1 YR Sublease
## 861 304799 Penthouse Studio by Central Park
## 862 305211 Your Own 2 Br Apt Bedford and Grand
## 863 306702 Spacious + Sunny Studio in Ft. Greene Brooklyn!
## 864 306799 2 rooms; private entrance & bath!
## 865 309342 Giant Sunny Bedroom & Private Bath in my Apartment
## 866 310220 Prime location! Backyard & outdoor shower! Unique!
## 867 310272 Private Room in Artist's Home, Stapleton, SI
## 868 310325 Large Sunny Bedroom with Bay Window
## 869 310338 Harlem/Hamilton Heights Sunny Room
## 870 310524 Clinton Hill Duplex near Pratt w/Balcony!
## 871 310796 Sunny 1 BR, West 80s & Central Park
## 872 311003 2 BD / 2BA WITH GARDEN, SLEEPS 6
## 873 311343 COMFORTABLE ROOM
## 874 311356 Charming Ridgewood Soulful Walk-Up
## 875 312429 Comfortable, well-appointed room
## 876 313890 2ND AVENUE OFF HOUSTON/LOFTLIKE STU
## 877 314982 Share in NYC's trendy East Village
## 878 316238 Historic Brooklyn 2-Bedroom Apt
## 879 317838 APT W/ OUTDOOR SPACE!! LONG TERM RENTAL PREFERRED!
## 880 317905 Come and go as you please in BKLN!
## 881 318021 Room in Huge 1200sf W Harlem Suite
## 882 318187 Huge, Sunny, Open Loft in Brooklyn
## 883 319724 Cozy Nook in Heart of Williamsburg
## 884 319798 Peaceful Room...
## 885 319844 Cute Room in Historic Loft!
## 886 320865 Harlem on the Range
## 887 320876 Amazing Park Slope Duplex with Deck
## 888 320877 Entire 2 Bedroom Apartment in Williamsburg
## 889 321014 Big Bright E Village 2BR (Baby Nursery)
## 890 321136 Private Manhattan Studio on Harlem/Heights Border
## 891 322037 Luxury Williamsburg, Brooklyn LOFT
## 892 322604 Artist Loft-McCarren Park-Williamsburg-BrooklynNYC
## 893 322974 Chelsea/Meat Packing Artist Space!
## 894 323706 Elegant Spacious Family Townhouse
## 895 324115 Large Master Bedroom - Williamsburg
## 896 324517 Central Park Fifth Av MET Museum
## 897 324800 Real Williamsburg Artist Loft
## 898 325429 Lovely Upper East Yorkville 1 BDRM
## 899 326832 Cozy Upper East Side Studio
## 900 326956 Large Cozy Room #2, Landmark Home 1 Block to PRATT
## 901 327521 Lovely studio in East Village, NY
## 902 327778 NYC Summer Discount 1 BR Gramercy Apt
## 903 328040 Awesome views, Central location
## 904 328693 Spacious Manhattan Apartment near Central Park
## 905 328744 Entire Apt: Sunny 2bd! 15min to NYC
## 906 329064 Your Historic House in Brooklyn
## 907 329310 Creative Director's Chinatown Loft
## 908 329385 HOSTING YOUR COZY, ECLECTIC MILIEU FOR NYC VISIT
## 909 333189 Charming private room in New-York
## 910 333323 Cozy bedroom near Times Square
## 911 334607 Artist's Flat in Historic Building #10263
## 912 334781 Queen size sofa bed in Harlem
## 913 335797 Bklyn 6 Beds 1 Bathroom Rental 2
## 914 335819 Bklyn 4 Beds 1 Bathroom Rental 3
## 915 335820 4 Beds 2 Bathrooms Rental 1
## 916 336220 Stylish & Quiet NYC Retreat!
## 917 339456 Bright, new luxury apartment in doorman building
## 918 341525 TIMES SQUARE MASTER BEDROOM!
## 919 341982 Lincoln Center Studio, Clean&Sunny!
## 920 342027 Serenity amidst the busy city
## 921 342965 Super Clean Apt by Columbus Circle
## 922 342995 Unique private room and bathroom in Brownstone
## 923 343276 TIMES SQUARE HOUSE!
## 924 343971 Beautiful Room in a Beautiful New NYC Apartment
## 925 344019 Best West Village/Meatpacking Space
## 926 344068 21 day Chelsea Apartment rental
## 927 344092 Heavy Sun, Quiet, Arty 1 Bedroom
## 928 346248 Cosy apartment in West Village
## 929 346805 Spacious Lower East Side Apt in NYC
## 930 347865 ARTY 2 BED EAST VILLAGE GEM
## 931 349841 Williamsburg Loft: Amazing Sublet
## 932 350168 Artist 2BR in Park Slope w/backyard
## 933 350525 Spacious 2BR near Botanic Garden
## 934 351530 Gorgeous brownstone next to park!
## 935 351859 Exquisite Spacious Studio in Midtown
## 936 352651 COMFORTABLE LARGE ROOM
## 937 352864 Cute Private room in Upper East Side #14
## 938 353317 Lower East Side 1bedroom apt in NYC
## 939 354095 Large Beautiful East Village 1-Bdrm
## 940 355106 Big room near Prospect Park! NY!
## 941 356230 It's so easy to get to EVERYthing!
## 942 357509 Manhattan - Best Location in Midtown
## 943 359982 Sunny private room right off L train
## 944 360400 Beautiful Room in Manhattan Loft
## 945 361803 Luxury, Adorable Studio Apartment
## 946 363320 HOME AWAY FROM HOME
## 947 363673 Beautiful 3 bedroom in Manhattan
## 948 364275 Den of Zen at The Denizen Bushwick
## 949 364785 Sunny large private room in Park Slope
## 950 367042 Eastern Parkway Brooklyn 1BR Flat
## 951 367810 1400sf Manhattan View Artistic Loft
## 952 369411 ingefära hus! Private room Williamsburg, Brooklyn
## 953 369567 Private MasterBR w/ View of Museum
## 954 369671 LUXURY 2BD/2BTH - HUGE PATIO
## 955 371138 Comfy Brooklyn 2BD, W/ Backyard
## 956 373618 Authentic designer loft/roof deck best Williamsbrg
## 957 374548 Sunny Retreat with Roof Garden
## 958 375249 Enjoy Staten Island Hospitality
## 959 377217 Great apt on the UWS - A RARE FIND!
## 960 378460 Cozy 2 BD in Midtown West
## 961 380416 Park Slope Sunny Studio
## 962 380730 Luxury L-Shape Studio + 3 cats
## 963 382523 A cozy Red Room with private bathroom
## 964 382524 Cozy room with private bathroom & outside garden
## 965 385190 Beautiful 1 bdrm, Inwood Manhattan
## 966 385657 Beautiful Loft/10 min to Manhattan!
## 967 385824 New York City- Riverdale Modern two bedrooms unit
## 968 386555 A PLACE TO STAY CLOSE TO MANHATTAN
## 969 386744 Great room priv/bathrm Eastside location 70's ST
## 970 386799 Midtown NYC - 1 Bedroom Apartment
## 971 387324 Cozy Room in Sunny Apartment (Long/Short Term)
## 972 387377 THERE'S NO PLACE LIKE HOME.........
## 973 387666 Cozy home in vibrant Manhattan
## 974 387735 LOCATION LOCATION LOCATION Sara's
## 975 389482 Quaint & Quiet in Queens
## 976 391948 Single Room
## 977 391955 Charming brownstone apartment
## 978 392948 Williamsburg near soho .support artist living
## 979 393016 Your Times Square Sanctuary
## 980 393094 Designer studio in Luxury Building
## 981 393682 Private cozy bedroom in Nolita
## 982 394026 ArtistLoft-MccarenPark-Williamsburg
## 983 394111 Beautiful Bedrooms in Briarwood, NY
## 984 394235 Flatiron-Designer's loft
## 985 396636 Stylish Designer Studio with Piano
## 986 397034 New York City for All Seasons!
## 987 397297 STUNNING E Vill Penthouse
## 988 397420 New York Host who knows The Most
## 989 398281 One Block From Central Park!
## 990 398283 PARK SLOPE: SWEET, LARGE 2BR DUPLEX
## 991 399946 Light Superhosted Chill LES Apt
## 992 400039 Big Beautiful Railroad in Brooklyn
## 993 400466 Bright Brooklyn Flat w/Park Views, 30 day minimum
## 994 401579 ECO-APT, free YOGA, 2 new bedrooms. Best location!
## 995 401836 Sunny UES 1.5 Bedroom, Sleeps 6
## 996 402037 Stay with a Jazz Singer in Harlem!
## 997 403056 Large Private Room Near Central Park & Mount Sinai
## 998 403264 Luxury room in Manhattan Duplex Apt
## 999 403668 Gorgeous Sunny, Spacious 1 bdrm in East Village
## 1000 404502 ARTIST LOFT+OFFICE in PRIME WILLIAMSBURG!
## 1001 404923 Private Garden Entry
## 1002 405025 LUXE Privé L.I.C. Apt & Garden
## 1003 405408 Magazine SOHO Studio Loft. \nRead our reviews!
## 1004 406926 Nolita apt. with private garden
## 1005 406992 Family friendly Williamsburg Apt for Vacation!
## 1006 407469 BROWNSTONE TWO IN BROOKLYN in NYC
## 1007 408491 Charming West Village One Bedroom
## 1008 408983 Brooklyn Brownstone full floor/garden ProspectPark
## 1009 409262 Family friendly, steps to subway, large garden :)
## 1010 409293 Private Sunny Room Near Central Park & Mount Sinai
## 1011 409666 1 bdr apt, sunny & artsy, 4 min walk to the beach
## 1012 411336 "Simple Perfect Soho"
## 1013 411525 Beautiful Room + Private Balcony
## 1014 411918 3 BR apartment Crown Heights, BKLYN
## 1015 412061 Brownstone Sunny & Spacious top fl
## 1016 412180 Morocco in Brooklyn with the flyest loft, Amazing!
## 1017 413504 Perfect NYC/Williamsburg Location
## 1018 413775 Midtown East Sutton Area Entire Apt
## 1019 413876 Finest Gateway to historic Financial District
## 1020 414801 Industrial Brooklyn Loft with Tree-Lined Windows
## 1021 415304 Cute east village apartment.
## 1022 416557 All Charm: Lush Garden, Huge Kitchen + Quiet
## 1023 417685 Bright and Quiet 2 BR in Park Slope
## 1024 418291 Cozy, bright 1BR avail. in East Village apartment
## 1025 419373 Stylish Loft w/Lovely Backyard
## 1026 419792 Great Apt IDEAL Location 900 SF
## 1027 421554 Garden - Brownstone Experience
## 1028 422040 Gorgeous ! Best Location in NYC !
## 1029 424192 luxury 1 BedRoom Apt Hells Kitchen
## 1030 424667 Luxury room + En-suite bath in Times Sq/Midtown W
## 1031 424767 Chic, Spacious Loft + Backyard
## 1032 424889 Sunny and Zen W. Village Studio of Your Own
## 1033 424930 2BR Lux Prospect Heights
## 1034 425784 An airy, comfy, bookish refuge!
## 1035 428226 Bright & Vibrant- The BK experience
## 1036 430427 Very clean, quiet bedroom available
## 1037 430665 Lux One-bed Central Park View UWS
## 1038 431865 Elegant Uptown Historic District Garden Apartment
## 1039 432090 Only 5 Min. to Manhattan!
## 1040 433218 Lovely 1 bdrm in Prospect Heights!
## 1041 433414 Spacious & Sunny in Prime Brooklyn
## 1042 433914 1 Bedroom Apt - Close to JFK & City
## 1043 434792 1 br. studio duplex, Park Slope/Gowanus, Brooklyn
## 1044 435774 A REAL New Yorkers Wall St
## 1045 435776 ROOM AVAILABLE IN NEW YORK CITY
## 1046 435909 Sunny West Village Dream
## 1047 435946 SUNNY ZEN FULL SERVICE HUGE STUDIO
## 1048 436510 Beautiful corner prewar apartment in Williamsburg
## 1049 436619 Tranquil, Artsy, Sunny Bedroom
## 1050 436824 Room in Harlem
## 1051 436916 Room for the Summer
## 1052 437352 Fantastic 2BR in Brooklyn's Best Area
## 1053 437906 GREAT 1BR/2BA TERRACE & W/D! in EV!
## 1054 438513 Big Beautiful Brooklyn Apt @ Park!
## 1055 439750 Perfect apt. above L train Graham stop
## 1056 439870 Gorgeous Park Slope, BK triplex 4BD
## 1057 442636 Private,Affordable, 20 min to NYC!
## 1058 442649 Lovely Chelsea 1 Bedroom
## 1059 443646 Classy 2.5 BR Brownstone w/ Garden
## 1060 444171 Upper Duplex in Brooklyn Brownstone
## 1061 444430 comfy room minutes from museums
## 1062 446367 Best Block, NYC! July 25-Aug 18
## 1063 447766 Great 1 BR Apt in Kips Bay, NY
## 1064 447840 Private Artist’s Apt/ Amazing Location!
## 1065 448048 1 BR, Book it 1st then write me
## 1066 448049 No Inq,Read it, 1 BR, Rt of Subway,
## 1067 449034 Spacious Loft 5 min to Union Square
## 1068 449130 Your Own Private Entrance Studio in Stylish Duplex
## 1069 449660 Art & Music Salon
## 1070 449680 Artfully Decorated 2 Bedroom Apt
## 1071 450009 Lavender Joy Room in Duplex!
## 1072 450577 1 bdrm brownstone-west 70's-1 block Central Park
## 1073 450578 Serene Room...
## 1074 450905 Master Bedroom / ParkSlope Brooklyn
## 1075 452068 Spacious 4 bedroom house, New York
## 1076 452541 Brooklyn Apartment Windsor Terrace
## 1077 453094 Bedroom with Garden at the Back
## 1078 453161 Family friendly, sunny new condo in McCarren Park
## 1079 453255 Exciting Lower East Side, Loft Life
## 1080 453317 Large Room w/ Private Entrance
## 1081 454334 Private spacious studio available
## 1082 454763 For Cat-Lovers ONLY
## 1083 454929 UNION SQUARE❤️PENTHOUSE 2FL+TERRACE❤️EAST VIllAGE
## 1084 455734 Sunny, spacious 1-bedroom in Upper Manhattan
## 1085 455801 Hello! Cozy-Singles NYC- Upper Manhattan- Harlem!!
## 1086 456110 Beautiful One Bedroom in Chelsea
## 1087 456190 West Village Loft, 1st floor
## 1088 456457 West Village Gem - 2BR
## 1089 456526 Central Harlem Comfy Bedroom with Private Bath
## 1090 457829 Beautiful apartment in the heart of The Village
## 1091 458154 Cozy private room, williamsburg NYC
## 1092 458377 Bright Spacious 2 Bedroom/5 Room - wRoof Deck
## 1093 459066 ******AMAZING DEAL IN NYC*****
## 1094 460036 Great DEAL Gramercy 1 BDROOM /2beds
## 1095 460999 Beautiful duplex apt in Harlem
## 1096 461050 Perfect Bedford L Williamsburg Location!
## 1097 462454 Beautiful Lower East Side Apt! Women only.
## 1098 463107 Historic 3 Bedroom Eastern Parkway
## 1099 464231 Large Room w/ Private Entrance
## 1100 465277 Sunny plant-filled apartment with 2 balconies
## 1101 466277 W'burg 2 bedroom w/ yard & laundry, 5 mins to L
## 1102 466457 Bright, Bedstuy Gem
## 1103 467569 Curated 1BR on the prettiest block of the LES
## 1104 467634 yahmanscrashpads
## 1105 467866 Our NY home, Greenwich Village apt
## 1106 468613 $ (Phone number hidden by Airbnb) weeks - room f
## 1107 470090 Studio Apt. Lower East - Manhattan
## 1108 470370 PRIVATE ROOM NEW YORK
## 1109 470498 *Unique Master BR in Battery Park!*
## 1110 470709 Spacious sunny LOFT - best location
## 1111 471712 Beautiful Sunny Apartment in South Harlem
## 1112 471758 TriBeCa Amazing River View Loft 3BR
## 1113 471845 Gorgeous Summer Duplex/Yard sublet
## 1114 471914 Brooklyn one-bedroom right by Prospect Park!
## 1115 472052 Luxury Doorman Bldg Nr Central Park
## 1116 472376 Great Brooklyn Studio/1BR!
## 1117 472546 Cozy place
## 1118 473592 AMAZING Private 1stop away from NYC 1 block Subway
## 1119 473777 Bright Modern Artist's Apartment
## 1120 474283 Studio apartment by Columbus Circle
## 1121 475216 Studio Apt in Park Slope- Brooklyn!
## 1122 476527 1RW- CARRIAGE HOUSE STUDIO OFF CTYD
## 1123 476570 3RE - CARRIAGE HOUSE STUDIO OFF CTYD
## 1124 476571 2RE - CARRIAGE HOUSE STUDIO OFF CTYD
## 1125 476899 NYC studio in ST MARKS PLACE & 1AVE
## 1126 476983 PRIVATE Room in Spacious, Quiet Apt
## 1127 478053 Great LES / Chinatown bedroom
## 1128 478385 Sunny Midtown East Apt w/ a Loft!!!
## 1129 478832 Gorgeous 2 bdrm in Carroll Gardens
## 1130 478949 Spectacular Lux 1 Bed Apt, Best Location, Terrace!
## 1131 479002 Brooklyn Brownstone w/ Beautiful Garden
## 1132 479263 Mini Loft Williamsburg Bkln-Bedford
## 1133 479285 Rent in beautiful Sunnyside Gardens for holidays
## 1134 479867 Williamsburg 2b apartment with deck
## 1135 480549 Studio 54, Cozy Room For 2
## 1136 481022 Super Cute Junior 1BR in LES!!
## 1137 482365 GREAT BRAND NEW 1 BED APT*TIMES SQ
## 1138 482765 Beautiful Brooklyn Brownstone
## 1139 483414 Best double Room all included wifi
## 1140 483485 Downtown Full Floor Loft
## 1141 483505 Perfect & Stylish Williamsburg Apt
## 1142 484297 Large home in most desirable Brooklyn hood!
## 1143 484312 Loft-Like Park Slope 3bdr Duplex
## 1144 484728 Modern 1br by ocean in Brooklyn
## 1145 485026 Sunny Apt in Brooklyn-Close to Manhattan
## 1146 486350 Great 2 bedroom apartment in Williamsburg!
## 1147 488083 Nice apartment with a deck!
## 1148 489018 Lovely Central East Village 2 Person Entire Apt
## 1149 489365 PRIME LOCATION STYLISH COMFORT
## 1150 489924 South Slope Private Bedroom
## 1151 489965 A Gem in Harlem - Modern Living
## 1152 490011 Great for families!
## 1153 490278 Lovely 1BR - Midtown East by metro!
## 1154 490989 Cat lovers: 3-story Park Slope Townhouse with cat!
## 1155 491123 Cozy Love Nest Prospect Heights
## 1156 491529 3 bdrm family friendly home in central Park Slope
## 1157 491942 Renovated Spacious 1BR Upper West
## 1158 491977 Stylish Large 1bd APT in Chinatown/Tribeca NYC
## 1159 493177 Two Bridges District Chinatown NYC
## 1160 493611 Huge sunny artist loft +roof garden
## 1161 494296 Brooklyn waterfront large sunny apt
## 1162 494937 The SoHo Loft - Huge Penthouse - 1,200 sqft
## 1163 495249 10min Walk & 15mins to Tourist Spot
## 1164 495348 Classic Brooklyn Brownstone
## 1165 496166 Beautiful, Spacious 4 BR Brooklyn Brownstone
## 1166 497370 Carroll Gardens Carriage House
## 1167 498052 Modern private room in condominium
## 1168 498120 Hi Traveler.. welcome
## 1169 498859 NYC 30 min by Subway, Brooklyn 2
## 1170 500845 Trendy Nest in the East Village
## 1171 500886 BEAUTIFUL ROOM IN BKLYN BROWNSTONE
## 1172 501041 UPWS sunny DUPLEX +PATIO
## 1173 501082 Private Bdrm & Bath-30-night min-Weekly Maid Serv.
## 1174 501098 Private Bedroom in Wooden House
## 1175 501693 Room w/pvt bathroom on Central Park
## 1176 502132 Beautiful Downtown Manhattan Share
## 1177 502309 Sunny Rm #1, Air Conditioner, Park,Express Q train
## 1178 502429 Park Slope duplex with backyard
## 1179 503460 Spacious Apartment w extra room
## 1180 503529 HEART OF SOHO The Perfect One Bedroom Apt
## 1181 503585 Charming & Spacious One Bedroom
## 1182 503722 Hip Stylish WIlliamsburg Studio
## 1183 503790 SLEEK WEST VILLAGE ARTIST STUDIO LOFT
## 1184 504322 Sunny 1BD in Greenwich Village
## 1185 504362 1760 Sq ft Penthouse apartment
## 1186 504394 Charming, Retro Apt on the UWS
## 1187 504437 The biggest small apt in Manhattan
## 1188 505029 SPACIOUS Fabulous Sunny Loft for 2 wks in Fall
## 1189 505231 Enjoy a 1 Bedroom to share, NYC
## 1190 505315 Charming ROOM(s)*Lovely BUSHWICK Block*25min->City
## 1191 506121 Cozy Room in Lively East Village
## 1192 506527 Modern Sunny 2 Bedroom Apartment
## 1193 506571 Large sunny 1br apt in East Village
## 1194 506575 Bronx Room Near Yankees + Harlem
## 1195 507393 Ready private furnished room w/Wifi
## 1196 509989 Artist's Ditmas Pk 5 bedroom house
## 1197 510218 Spacious Upper West Side 1-Bedroom
## 1198 510454 Gramercy Pk Area, w Rooftop Gdn!
## 1199 511436 Wake up to the skyline of the city, prime location
## 1200 511733 Artist Loft @ Bushwick, Brooklyn
## 1201 511960 Wonderful east village floor thru
## 1202 512209 Your own townhouse in Bklyn Heights
## 1203 512210 The Brooklyn Woodworker 3bdrm/2bth
## 1204 512775 The Cottage / 1500 sqft. of Privacy
## 1205 513343 Cozy, Hella Sunny, and Convenient!
## 1206 513688 Boerum Hill Brownstone Garden Duplx
## 1207 514457 Brownstone Beauty with Deck
## 1208 514548 Loft Apt and Art Studio: 4-month rental
## 1209 515392 Beautiful Brand New Chelsea Studio
## 1210 516452 Big, Bright, and Beautiful
## 1211 516461 Great studio apt in midtown west!
## 1212 516643 Williamsburg Apt, close to metro L
## 1213 516791 Lovely Brooklyn Apt
## 1214 517626 Above Graham stop - L train
## 1215 517654 Beautiful apt 10 min to Wbrg!
## 1216 518566 Gorgeous, charming Upper East private room
## 1217 518576 3 bedroom duplex apt with backyard
## 1218 518960 Cozy and quiet with secret garden
## 1219 519310 YOU ROOM IN NYC
## 1220 521018 1BR Loft in Brooklyn
## 1221 521038 Cozy room in 2 bedrm apt in amazing Harlem!
## 1222 521522 Beautiful 3 room studio in Brooklyn
## 1223 521672 Luxury Loft in Creative & Fun Apt
## 1224 521806 Airy 1BR nice area Queens nr subway
## 1225 522081 Guest Room in Art Loft in Chelsea
## 1226 523123 Tranquility & convenience in Bklyn
## 1227 524111 Convenient East Village Studio,
## 1228 525120 Very cute quiet Studio in chelsea
## 1229 525293 Yankee Nest
## 1230 525388 Greenpoint gypset retreat
## 1231 525412 Beautiful sunny Nolita/Soho Apt
## 1232 525523 Comfortable Private Room in Upper Manhattan 2BR
## 1233 526520 Large light-filled Apt in Brooklyn
## 1234 526532 Beautiful Spacious Brownstone
## 1235 526923 Come stay in super comfy and cozy!
## 1236 526942 UES Jewel-Private Long Term Rental
## 1237 527076 Great 1BR, 1BaR in Lux Bldg w Pool
## 1238 528485 lovely private room in South Park Slope
## 1239 530247 ☆ Home Away From Home <3 of NYC! ☆ 2BR ENTIRE HOME
## 1240 530431 Bright, Renovated 1BR in Brownstone
## 1241 530576 1bedroom, 70s UWS,brownstone charm
## 1242 530632 Sunny + Charming 2 BR in Brooklyn Brownstone
## 1243 531091 King size bedroom in 2 bed apartment
## 1244 531208 Industrial Loft in Williamsburg
## 1245 531258 1 BR Village - 30 day+ stay
## 1246 531455 Nice one bedroom apartment by the Prospect park
## 1247 532288 A Little West Village Charm
## 1248 532749 Very Large, Airy, and Bright Loft -Williamsburg
## 1249 533168 Spacious Nolita 2 Bd w/roof garden
## 1250 533506 2RW - CARRIAGE HOUSE STUDIO OFF CTYD
## 1251 533625 Sunny 2 Bedroom Duplex with Garden
## 1252 533927 Large NYC Chelsea Studio - King Bed
## 1253 534897 CHELSEA APT- SPACE, LIGHT, BEAUTY!
## 1254 535095 Beautiful bedroom in Prospect Heights
## 1255 535352 Upper West Side 1-bedroom
## 1256 536578 Nice and clean private space in Bklyn loft.
## 1257 538344 East Village Oasis! 1Bd Apt
## 1258 538590 cozy 2bedroomAPART 10min to MIDTOWN
## 1259 539160 Manhattan *SuperHost* Luxury 2 Bdrm Apt Sleeps 6+
## 1260 539350 Hell's Kitchen Musician's Hideaway
## 1261 540057 Stylish Uptown Westside Apt.
## 1262 540489 Large + Bright private bedroom in NoLiTa
## 1263 541725 Entire loft, best Williamsburg
## 1264 542054 3RW - CARRIAGE HOUSE STUDIO OFF CTYD
## 1265 542203 QUITE LOVELY STUDIO IN HEART OF HELLS KITCHEN**
## 1266 543792 Studio Apartment Bushwick/Ridgewood
## 1267 544039 Luxury 2-bdrm w Piano & Gym
## 1268 544131 Heart of Greenwich Village near Bleecker St
## 1269 544331 1 corner bedroom with lots of light
## 1270 545261 Clinton Hill Lux Apt Grill & Lawn
## 1271 545651 COMFORTABLE PRIVATE ROOM FOR RENT
## 1272 546383 My Little Guest Room in Flushing
## 1273 546504 Brooklyn Heights 1brm Private Deck
## 1274 546573 Stunning apt with downtown views!
## 1275 547830 Brooklyn Summer Sublet-Ditmas Park
## 1276 548133 Chic One-Bedroom Apt
## 1277 548184 Cozy Room in GREENPOINT Apt. YeY
## 1278 549873 1 BR with garden--East Village
## 1279 550288 Cozy Upper East Side 1 Bedroom
## 1280 550653 Sun Fill Room in a Spacious Apt
## 1281 550777 Lrg1Bdrm, Terrace w/ Cent.Park View
## 1282 550858 Gorgeous Chelsea loft in the heart of Manhattan
## 1283 552141 Historic sundrenched apt of the Lower East Side
## 1284 552519 Brooklyn Amazing 2bedrm Luxury Apt
## 1285 552639 Beautiful 2-BDRM Brownstone Apartment
## 1286 553516 One Bdrm in Trendy Prospect Hts
## 1287 553565 Feels like home with park view
## 1288 553862 Bedroom, kitchen and private garden
## 1289 554165 View of skyline w roof deck, perfect for families!
## 1290 555206 Spacious Room/Hip East Village Apt!
## 1291 557487 Full apartment close to G & L train
## 1292 559511 Huge & sunny 1BR apt in Greenpoint
## 1293 560078 Gorgeous Unique Garden-Terrace-Apt.
## 1294 560406 Charming old school 1BR in C. Gardens Brooklyn
## 1295 563442 Designer Studio in the HEART of WV!
## 1296 563496 Studio Apartment Greenwich Village
## 1297 564049 Lovely Manhattan Apartment
## 1298 564184 CLEAN PRIVATE ROOM IN CHELSEA NYC
## 1299 564447 GREAT DEAL IN TIMES SQ./HK
## 1300 564751 Artist space for creative nomads.
## 1301 565814 Bright friendly room in Brooklyn
## 1302 566712 GREAT EAST VILLAGE LOCATION, ELEVATOR & ROOFTOP!!!
## 1303 566911 Entire 1 Bedroom Apartment Flat Historic Bedstuy
## 1304 567195 Beautiful Garden Duplex in Brooklyn
## 1305 568661 Bright, Airy Loft Apt in Bushwick
## 1306 568684 800sqft apartment with huge terrace
## 1307 568743 ☆ 2BR East Village ☆ Sleeps 5 | BEST LOCATION ☆
## 1308 570218 Duplex Loft in Fort Greene
## 1309 570750 Fabulous Urban Retreat 2bdr
## 1310 571564 large spacious room
## 1311 573612 Sunny Private Bedroom by Express Train, Colleges!
## 1312 573671 Luminous Modern Apt Share for Young Professionals
## 1313 573795 Spacious Stylish 2 Bedroom Suite
## 1314 573870 Central Park West/ 80s One bedroom!
## 1315 575061 Your own floor (private) in prime Williamsburg!!
## 1316 576227 Bright and Spacious Manhattan
## 1317 576426 TIMES SQ - FABULOUS 1BR/ BEST VIEW!
## 1318 576916 Beautiful, Quiet, Spacious 1BR - UWS by parks
## 1319 577324 Stylish 1BR Apartment Quick to Midtown and LGA!
## 1320 577703 Romantic Creative Retreat: Feel the Glow
## 1321 577824 Modern Private 2 BR Near DT Manhattan – 3 stops
## 1322 578267 *Lovely Bedroom! Big Sunny Apt*Manhattan*
## 1323 578941 Beautiful Park Slope 2 bedroom
## 1324 579716 Sweet n' Spectacular PARK SLOPE!
## 1325 580323 Upper East Side 1 LG BR Avail in my Cute 2BR Apt
## 1326 581180 Beautiful Fresh Studio for Sublet
## 1327 581421 Pvblic Bath Artist Loft
## 1328 581542 Escape to our Great Beach Getaway
## 1329 582272 Privet Room in Greenpoint +Backyard *location
## 1330 582372 Comfy New York City Launching Pad!!
## 1331 583337 Lovely Condo Carroll Gardens/Gowanus
## 1332 583352 Charming Loft in the East Village
## 1333 584122 PRIVATE ROOM in HELL'S KITCHEN, NYC
## 1334 585369 SOHO/VILLAGE CHARMING STUDIO
## 1335 585491 Beautiful Modern Apt in Brooklyn
## 1336 585937 Comfortable 1 Bedroom in Greenpoint
## 1337 586847 LARGE BEDROOM +PRIVATE BATHROOM
## 1338 587519 Huge Bdrm in New Wilibrg 3 Bed Loft
## 1339 587554 Warm&Cozy Studio West Village
## 1340 587641 Luxury Pad NYC - Williamsburg Loft
## 1341 587698 Very close to Downtown Awesome Room
## 1342 587740 Designer open space in TriBeCa Soho 1000sq ft
## 1343 588677 Great find- 2 bedroom apartment in Williamsburg!
## 1344 590903 CLOSE TO CENTRAL PRK & EXPRESS TRAINS ABCD 2/3
## 1345 591135 Awesome Place! Amazing Location!!!
## 1346 591565 Everyone who stays leaves happy!
## 1347 591710 Spacious one bedroom apartment in Brooklyn Heights
## 1348 592785 Adorable 1 Bedroom
## 1349 592831 Beautiful Bedroom in Brooklyn
## 1350 592853 A GEM IN THE CITY
## 1351 593000 Cozy 1BD Manhattan close Central Pk
## 1352 593292 Penthouse Studio East 50s Terrace
## 1353 593320 In Manhattan+1 Small Block to train
## 1354 594020 In_Manhattan+1 Small Block to train
## 1355 594036 Spacious Greenwich Village Loft
## 1356 594640 NYC Chelsea very spacious 1-bedroom apartment
## 1357 594732 Greenwich Village Skylit 1BR +deck!
## 1358 595321 Williamsburg Peace for the Solo Traveler
## 1359 595604 1 Bed Manhattan Apt. Minimum 7 DAYS
## 1360 596448 The Perfect Brooklyn Heights Apt
## 1361 597544 Dream Room in Sunnyside New York
## 1362 597624 Beautiful apartment in Park Slope
## 1363 598612 Most breathtaking view of Manhattan
## 1364 599595 BIG UWS APT-BLOCK FROM CENTRAL PARK
## 1365 599847 Beautiful Ft. Greene Apartment-NEW!
## 1366 600286 lovely, spacious wmsbrg apt w deck
## 1367 600775 Sml Rm in pr. Brst in Pk Sl great for Med/students
## 1368 600877 Rare Loft Apt in Heart of Brooklyn
## 1369 602070 Amazing Greenpoint/WBurg, BRKLN 1BR
## 1370 602142 2B+Office Perfect 4 Young Family!!
## 1371 602250 College Students see New York !
## 1372 602453 Cosy Large Bedroom Park Slope
## 1373 602888 Bright UES Gem Near Central Park
## 1374 606269 Garden Oasis in the ♥️ of NYC | Steps to Times Sq!
## 1375 607735 Brownstone Home - BEST BKLYN BLOCK!
## 1376 607781 Convenient, Central, Comfortable
## 1377 607891 Charming triplex in NYC brownstone!
## 1378 609213 Cozy 1BR apart. in Prospect Hts, BK
## 1379 609559 Queens Quality Convenient Apartment
## 1380 609983 Gorgeous 1 Bdrm Haven/Shared Ktchn
## 1381 610118 Hip Brooklyn Photo Studio Loft!
## 1382 610596 Chateau Gowanus
## 1383 611009 HUGE East Village 2 Bd w/Priv Yard
## 1384 611408 Cozy Comfortable Friendly & Cheap!
## 1385 612936 1 FLOOR OF A BROWNSTONE WITH GARDEN
## 1386 613528 Full-Service Studio Apt in Brownstone/Townhouse
## 1387 613556 2 BED TriBeCa, Beautiful-Renovated!
## 1388 613818 Small Private Room # 1 with Window
## 1389 614269 Full Apt! L Train On The Corner!!
## 1390 616585 Great house in Williamsburg
## 1391 618836 1 BR Apartment near Prospect Park!
## 1392 618916 Brooklyn Carriage House
## 1393 619122 Big Sunny Williamsburg 14ft Ceilings w Half Bath
## 1394 619471 Historic Brownstone Parlor & Garden
## 1395 620214 NYC/Queens 1 Bedroom Apartment
## 1396 621430 Cozy bedroom in Hells Kitchen
## 1397 622410 Great room in 2BR, Bright + Cozy!
## 1398 623423 ENTIRE LUXURY MADISON AVE STUDIO
## 1399 623747 Great deal! Manhattan 1-bedroom 1 month sublet
## 1400 624222 Spacious apt in South Harlem, steps to subways !
## 1401 625197 Williamsburg, Brooklyn Townhouse
## 1402 625365 In the heart of Prospect Park, BK!
## 1403 627432 In the Hub of Union Square, NYC
## 1404 627949 COMFY-CUTE-N-CLEAN APT in WBURG
## 1405 628078 NYC Whole Apt. Dec 26th- Feb 3rd
## 1406 628227 Ti me Square Stylish 1 Bedroom
## 1407 629315 1BD brownstone apt in Fort Greene!
## 1408 629770 Slick Studio with High Ceilings
## 1409 629774 East Village perch!
## 1410 629855 Big Room in Williamsburg Loft
## 1411 629949 1 BR - Garden - Broadway?
## 1412 630034 Sal's bnb
## 1413 633276 Jacuzzi Suite, Minutes to Times Sq.
## 1414 633950 1-Bd Apt in PRIME Soho - NYC- July
## 1415 634353 Luxury 1Bed with Central Park Views
## 1416 635114 NYC - Heart of Greenwich Village
## 1417 635282 Huge factory loft, prime location
## 1418 635662 bedroom in front of prospect park w/2 queens beds
## 1419 636391 Charming Sunny W. Village Apt.
## 1420 637228 Beautiful, bright room w/priv bath
## 1421 637504 Private bedroom in a 2-fam house for solo traveler
## 1422 637716 NOLITA, Home Sweet Home in NYC
## 1423 638894 1-BDRM, Good Light, Fire-Escape, AC
## 1424 638898 Apt Near Central Park & Columbia!
## 1425 639199 Beautiful 4BR/4BA Home, Staten Island, NY City.
## 1426 639781 East Village 1 Bedroom Apartment
## 1427 640589 Sweet Super Bowl Accomodations
## 1428 640691 Homey Townhouse + PRIVATE Bathroom
## 1429 640990 Cozy E. Harlem Brownstone PH
## 1430 641768 INSANE NYC views! Live in the sky!
## 1431 642682 Up Among the Trees 2
## 1432 643591 Central Park Luxury ( BEST DEAL ;)
## 1433 643948 Luxe Queen Size Bed*Cozy Elegance*Inwood Manhattan
## 1434 644464 Loft Room in Heart of Williamsburg
## 1435 644575 Enjoy and discover New York Citi
## 1436 644833 3 Bedroom 2.5 Bath Multilevel Home
## 1437 644869 Luxury Doorman Building! w/Pvt Bath
## 1438 645075 Hell's Kitchen, Midtown west!
## 1439 645693 ☆☆New Discount☆☆ Beautiful Room / Next to Subway
## 1440 645922 Gorgeous Modern Manhattan Apt
## 1441 645942 Amazing NY apartment in SoHo/Nolita
## 1442 646147 Private rooms on a XLarge 3 br 2 baths
## 1443 646391 Lofted Bed in a Funky Family Loft!!
## 1444 646458 Room in Williamsburg Loft - Long Stays
## 1445 647413 Charming 1 bedroom Apt in Brooklyn
## 1446 647520 Charming 1br in of NYC's best Neighborhood!
## 1447 647580 East Village Hideaway
## 1448 648047 Cute, comfortable room in Gramercy
## 1449 648246 Spacious Brooklyn Loft w/ River View
## 1450 649561 Manhattan Sky Crib (1 year sublet)
## 1451 649903 Studio With Old-World Character
## 1452 651375 Spacious, rare, elegant, art-filled loft w sauna
## 1453 651475 Comfortable, clean & quiet in EV
## 1454 651648 One Bedroom Apartment in an 1879 Brownstone
## 1455 652371 ELEGANT MIDTOWN EAST STUDIO E.52 ST
## 1456 652466 32nd St & Lexington Ave / Doorman Beautiful Studio
## 1457 652515 COLUMBUS CIRCLE~FULLY FURNISHED!!!
## 1458 652648 GRAMERCY PARK~FURNISHED E.20's ST P
## 1459 652691 COLUMBUS CIRCLE~100% FURNISHED W.58
## 1460 654005 Charming 2 Bdrm UWS w/ private deck
## 1461 654232 BIG East Village 1bd all the extras
## 1462 654612 THE HEART OF ART IN THE HEART OF NY
## 1463 655230 Be in NYC's best: Lower East Side!
## 1464 655472 Lovely 2-room Studio in Crown Hghts
## 1465 655783 Chic Luxe 1BR 1.5BA 900sf -Midtown
## 1466 656281 QUIET, SPACIOUS, COMFORTABLE, & GREAT LOCATION
## 1467 657005 Charming West Village Pad
## 1468 657198 2BR gem in Cobble Hill, Brooklyn
## 1469 657217 Prime location near Central Park !!
## 1470 657727 Bright, Quiet 2 BR in Awesome Area!
## 1471 658008 Secret Garden
## 1472 658366 HEART OF NYC! Sunny furn 1 br wifi
## 1473 658515 A nice quiet room in Manhattan
## 1474 658932 Cozy room on a tree lined street
## 1475 659880 1 bedroom in a super cute 2 bed
## 1476 659952 GREAT Studio apartment in Midtown W
## 1477 660016 Peaceful with Windows, Brooklyn Apt
## 1478 660036 Great Apt Steps from Central Park
## 1479 661814 1 bedroom apt in heart of Chelsea
## 1480 663608 Boho Chic Rhapsody in New York City
## 1481 664047 Lux 2Bed/2.5Bath Central Park Views
## 1482 665394 Winning Location in Hells Kitchen
## 1483 666220 Beautiful East Village apartment
## 1484 666315 BEDFORD AVE STUDIO APT WITH GARDEN
## 1485 666613 Amazing Williamsburg entire Loft. Floor 2B
## 1486 667375 Light & airy Chelsea NY 1bdrm apt
## 1487 667549 My Brooklyn Studio in Ditmas Park
## 1488 668400 1BR in nice 2BR Apt lovely Area
## 1489 668691 Comfy room in beautiful apartment
## 1490 669633 Popular area in BK and Close to Manhattan
## 1491 669831 Central Park Sunny Bedroom
## 1492 670767 Bookcase Room with Hidden Door!
## 1493 671496 Great private room in awesome area!
## 1494 671633 REDUCED! Private Apt~Fun NYC area!
## 1495 672724 Elegant 2 BDRM Brooklyn Brownstone
## 1496 673248 Secret Garden Big and Comfortable
## 1497 673760 Sunrise Room in Spacious Duplex
## 1498 674692 A LITTLE PARADISE NEXT TO SUBWAY!
## 1499 675793 AMAZING LOCATION YOU WILL LOVE IT
## 1500 676257 small private bedroom female only
## 1501 676295 (B) BARGAIN SPACE
## 1502 679633 Cozy 1 bedroom apartment in NYC
## 1503 679769 Great Room in Astoria! Close to Everything!
## 1504 680104 Newly Renovated 1 BR
## 1505 680225 Large private bedroom in house, Bushwick/Ridgewood
## 1506 680998 Trendy Harlem Apartment in New York
## 1507 681518 Artist room for creative nomads
## 1508 681805 NEAR THE CITY THAT NEVER SLEEPS!
## 1509 682122 Warm, Comfortable, Inviting Home
## 1510 682155 Central Park Chic Single Room
## 1511 683084 Midtown West- A COZY ONE bedroom.
## 1512 683681 Beautiful West Village 1 BR apartment
## 1513 683743 Low Cost Room With GREAT Location
## 1514 683821 Spacious Private room in beautiful 1BR near Park
## 1515 684808 Gorgeous NY Studio in Midtown East
## 1516 684991 Terrific NY Studio in Midtown East
## 1517 685435 Cozy Private Bedroom $800 Month
## 1518 686696 duplex with backyard upper eastside
## 1519 688652 Huge Sunny Modern Apt. (1k+sqft)
## 1520 689329 Cozy 15 mins Manhattan& 10 Mins LGA
## 1521 689900 Large Room / Light / Columbia University - UWS
## 1522 690349 Full 1BR Apartment in Park Slope
## 1523 690516 Lovely Garden Apt. in Fort Greene.
## 1524 690553 Modern Lofted Williamsburg 3bd
## 1525 690603 Brooklyn's top
## 1526 690675 Quirky Sunny Retreat Central Williamsburg
## 1527 690849 East Village Artist's Studio
## 1528 690934 LEGAL PARK SLOPE 5 BR, ROOF TERRACES for 14 PEOPLE
## 1529 690960 Guestroom w/ 2 beds 20 mins to NYC
## 1530 692137 Stunning 3BR loft in Williamsburg!!!!
## 1531 692567 Bushwick Creative Den of Bliss
## 1532 693597 UWS Charming 1 bedroom + loft
## 1533 695002 Roomy Updated Studio - East Village
## 1534 695216 Private Suite in Historic House
## 1535 695297 Sunny Elegant and Big Room!
## 1536 695465 The heart of the metropolis
## 1537 696593 Park Slope One bedroom with Balcony
## 1538 697499 Lovely, large studio near Central Park
## 1539 697923 Cute & Cozy NYC Room - Hell's Kitchen (dog in apt)
## 1540 698094 5th Ave Apartment in Midtown!
## 1541 698132 LARGE PRIVATE FLOOR IN BROOKLYN, NY
## 1542 698162 Comfy apartment, adorable cat!
## 1543 698298 GREAT private apt on MULBERRY st - Nolita / Soho
## 1544 698327 Clean Cute Private Room in CHELSEA
## 1545 698514 SUNNY LOFT: Greenwich Village, NYC
## 1546 698882 The Serenity Room in Historic BKLYN
## 1547 699348 Peaceful double room in Brooklyn Brownstone
## 1548 699472 NYC 1st Shipping Container Home
## 1549 700530 Charming South Village w/ Private Terrace
## 1550 700916 Airy Bed Sty Restoration
## 1551 701227 Cozy Private room in Fort Greene
## 1552 702213 W'burg Hidden Treasure Off Lorimer
## 1553 702440 Park Slope Brownstone with Garden
## 1554 702551 UWS renovated 2bedroom 2bath near everything.
## 1555 703745 Great apt in the heart of E Village
## 1556 703971 HOME AWAY FROM HOME
## 1557 704838 An Oasis in the Big Apple 1
## 1558 705749 Room Available Close to Manhattan-A
## 1559 705997 Classy Brooklyn Studio
## 1560 706347 HISTORIC WILLIAMSBURG, BKLYN #2
## 1561 707396 2BR PENTHOUSE w Private Roofdeck
## 1562 707736 Brand New 2-Level 2-Bedroom Condo
## 1563 708374 private bedroom w/private bathroom on Central Park
## 1564 708637 Cozy bedroom near Manhattan & airport
## 1565 710015 Large room, Outdoor Patio, Great Host, Safe Area!
## 1566 710243 Cozy, ideal live-work space in the heart of LES!
## 1567 710283 Sunny, Large & Lovely in Greenpoint
## 1568 710284 **YOUR CHELSEA LOFT, WELCOME HOME
## 1569 711635 Charming East Village Apartment
## 1570 712136 Room Available-Close to Manhattan-B
## 1571 712260 Private Two Bedroom with Garden in Cobble Hill
## 1572 713538 Chic Victorian private apartment in townhouse
## 1573 713891 Amazing location! 10ft from L train
## 1574 714028 An Oasis in the Big Apple 2
## 1575 714049 An Oasis in the Big Apple 3
## 1576 714075 Room in Clinton Hill Brooklyn Loft
## 1577 714939 West Village 2 Bedroom Apt
## 1578 715102 WILLIAMSBURG 1 private room in loft
## 1579 715270 2 Beds/Queen & Full Beautiful Room 40 minsT.Square
## 1580 716169 Feel the Brooklyn Love!
## 1581 718761 2 private BRs, private bath - Like your OWN APT
## 1582 719329 Bright 1 BR in Brooklyn
## 1583 719914 Charming Harlem Getaway-Women Only
## 1584 720274 Nice studio apartment in Brooklyn!
## 1585 720394 Large pleasant room nr Central Park
## 1586 721719 Heart of Harlem 1 BR Garden apt
## 1587 721762 Colorful New York East Village Apt
## 1588 722264 Medium-sized furnished room
## 1589 722451 NYC Spacious 3b, new, river view
## 1590 722464 Large Private Room in Clinton Hill Brooklyn Loft
## 1591 723507 Space! Light! Charm! 1BR close to subways & park
## 1592 723523 MANHATTAN CHARMER WOW - ALL YOURS!!
## 1593 723560 Modern and Cozy Home - LES
## 1594 723709 Large room 2blks from central Park
## 1595 725270 Very Large Loft in Chelsea for Your Stay!!
## 1596 725509 3 BR Apartment in Heart of Brooklyn
## 1597 726422 Grand Brooklyn Apartment
## 1598 726465 ❤️ of Williamsburg, Private Entrance
## 1599 726692 House 10 min from Midtown Manhattan
## 1600 727512 Duplex Loft Suite w/ Patio @ Box House Hotel
## 1601 727547 Duplex w/ Patio @ Box House Hotel
## 1602 727835 Pristine Room and Art Experience
## 1603 727964 Garden Pl Historical Artist studio
## 1604 728409 Huge Room in South Williamsburg
## 1605 728493 Feel at HOME away from HOME
## 1606 728498 WEST HARLEM PRIVATE BEDROOM
## 1607 728764 AMAZING COLUMBUS CIRCLE LOCATION :)
## 1608 729306 Clean & Quiet BR in Sunset Park, BK
## 1609 729841 Gorgeous Apt Heart of West Villlage
## 1610 730480 Private Bedroom in Sunny Brooklyn Apartment
## 1611 731293 **YOUR HOME AWAY FROM HOME** : UES/66th LG 1 BDRM
## 1612 731300 Private Room Williamsburg(Ariel) 4p
## 1613 731316 Sunny & Clean Apt, Ideal Location
## 1614 732624 1 Pvt. Room in Upper West Manhattan
## 1615 732700 Centrally located and spacious apt.
## 1616 734749 QUIET spacious 1BR, great location!
## 1617 735677 CHIC Apt in TRENDY East Village
## 1618 735890 Homey, Clean studio- East Village
## 1619 736187 Private Room in lovely Greenpoint
## 1620 737075 Bright Friendly Apt, East Village!
## 1621 737126 Williamsburg Loft!! Bedford L 1blk!
## 1622 738588 Wedding guests accommodations, 3-7 bedrooms
## 1623 739239 Luxury Furnished 1 BR Apartment Near Central Park
## 1624 739242 1 BR Modern Luxury Apart w W/D Steps From Park
## 1625 739815 Cozy Private Room in LIC
## 1626 740823 Beautiful private Apt-15m Manhattan (3rd Room)
## 1627 740947 BEST KIPS BAY LOCATION. HUGE 1BD
## 1628 741154 Beautiful duplex loft with Skylight
## 1629 741346 Entire 1BR Bohemian Apartment in Center of NYC
## 1630 741354 Simple and cozy place on the beach
## 1631 741783 LOVELY 2BR West Village Apt!
## 1632 741797 Luxury Tribeca 1bdr in Doorman Bldg
## 1633 741806 Inwood-at the foot of the Cloisters
## 1634 742026 NOLITA&SOHO BEST LOCATION&GREAT APT
## 1635 742779 Upper West Side Stunner
## 1636 742795 Spacious Heart of Ft. Greene Studio
## 1637 744078 Tiffany Room in Duplex Home
## 1638 744220 Beautiful 1 bedroom in NOLITA (2 blocks from SOHO)
## 1639 744228 Entire gorgeous,cozy,light two bed
## 1640 745037 Luxury Locale Sunny 1BR Suite
## 1641 746088 Little Italy gem Center of it all!
## 1642 746983 Enjoy All the Comforts of Home!
## 1643 746996 Park Slope-Private Room/Bath/Entry
## 1644 747029 Private rooms in heart of Chelsea
## 1645 747159 sunny private room in east village
## 1646 747344 Stunning views! 3 separate bedrooms, L train Loft
## 1647 747419 Lovely, Sunny 1-Bedroom Apt with Kitcat
## 1648 747538 HUGE mid-century modern, sunny flat w/ amazing cat
## 1649 747605 East Village Studio, Great Location
## 1650 748656 Cozy Vintage Studio in Flushing (Close to LGA/JFK)
## 1651 749108 Cozy 4 BR Brooklyn townhouse in Clinton Hill
## 1652 749455 Lovely Loft space near Central Park & Times Square
## 1653 749896 1 Bed Williamsburg Apt, Amazing Loc
## 1654 749965 Charming Brooklyn Abode
## 1655 751851 Spacious 3 bedroom in Park Slope
## 1656 752202 Historic Mansion, Comfortable Room
## 1657 752289 Cozy Village apartment near NYU
## 1658 752366 Big, close to subway, 3 stops from the city
## 1659 752616 Sunny 2BR Penthouse - HUGE Terrace
## 1660 752783 LUXURY BROOKLYN LOFT STEPS TO PARK & SUBWAY
## 1661 753399 SoHo Loft - The One
## 1662 753622 1 Private Bedroom / East Village
## 1663 753687 Mitchell Manor
## 1664 753983 Super Cute Upper West Side Apt!!
## 1665 753991 Elegant Stuyvesant Heights Retreat
## 1666 754353 Location Moreno
## 1667 755528 PRIVATE BATH/TONS OF SUNLIGHT/SAFE
## 1668 755684 Cozy Soho Studio Loft Apt Bleecker
## 1669 755703 Room: King size bed + private bath
## 1670 756655 Light-Filled Prospect Height Apt.
## 1671 756892 Clean Bright Midtown Studio by Park
## 1672 756928 Your OWN Private Garden Apartment
## 1673 757007 Zen Holiday Getaway
## 1674 757187 Brooklyn Charm in Clinton Hill
## 1675 758782 Perfect Midtown Apt E. 50th St
## 1676 760303 UES Manhattan Quiet Nest 1 Bdrm
## 1677 761606 Great location, cozy and quiet.
## 1678 761835 Apto 2 bed $80 night per person
## 1679 762015 Private Oasis, en suite bathroom
## 1680 762145 Gorgeous Duplex w Riverview Terrace
## 1681 763527 Artist's Jungle Suite + Private Bathroom
## 1682 763600 Private 2BR / East Williamsburg, Bk
## 1683 763809 Mermaid Oasis in the Heart of Brooklyn
## 1684 763965 East Harlem Studio
## 1685 764052 1 Bedroom Apartment in quiet area.
## 1686 764753 Beautiful 3 bedroom apartment!!
## 1687 765203 Art Lover's Abode Brooklyn
## 1688 765315 Bed & Bathroom in Williamsburg Loft
## 1689 765563 Big Comfy Beds & Breakfast on the Deck
## 1690 765569 Brand New, Boutique Brooklyn Condo
## 1691 766542 Designer apt. in Williamsburg, NYC
## 1692 766814 Adorable Midtown West Studio!
## 1693 766964 Sublet Lovely Room in Astoria, 3-4 months
## 1694 767562 Beautiful communal house Bushwick
## 1695 767761 Beautiful 1 br in Williamsburg
## 1696 767967 Studio in Chelsea
## 1697 767983 Gorgeous Williamsburg Apt + balcony
## 1698 769175 Gorgeous apt. steps from subway
## 1699 769279 Room for rent in East Village
## 1700 769448 Bedford Loft, Williamsburg Prime
## 1701 770514 Studio in FlatIron, NYC !!
## 1702 770893 1 Bdrm Apt-Luxury Bldg-Upper West
## 1703 770960 Cozy 1 BR in Prospect Heights
## 1704 771436 3BR/3 Bath House in Astoria
## 1705 772362 TIMES SQ/THEATRE DIST STUDIO
## 1706 772679 Very large, clean 1 BR apartment
## 1707 773041 Nice beautiful room In the Bronx
## 1708 773497 Great spot in Brooklyn
## 1709 773844 2 Beautiful Large Rooms/Fort Greene
## 1710 773993 Upper East Side Oasis!
## 1711 774791 Very clean bed room in queens NYC
## 1712 774899 Unique West Village Loft with Deck
## 1713 775238 Fantastic East Village Location!
## 1714 775280 New-York Family Friendly 2bdr/2bath
## 1715 775326 Cozy Room in Artistic Brownstone
## 1716 776257 Large One Bedroom in heart of North Williamsburg
## 1717 777297 XL 2 Bedroom LOFT in the Heart of Williamsburg
## 1718 777327 Cozy Quiet Sunny 1br Ditmas Park Close to Train
## 1719 778381 Gorgeous Brooklyn Getaway
## 1720 778495 Family Friendly Room & Bathroom on Central Park W
## 1721 779561 FULLY Furnished Studio ♥ Manhattan
## 1722 779838 rent whole apt. classy 1-bedroom upper west side
## 1723 780205 Large 2 bedroom, full floor apt.
## 1724 780858 Charming Fort Greene studio, dream location
## 1725 781486 Spacious room in historic house
## 1726 782063 Cozy apartment steps to subway
## 1727 782554 Great West Village 1 bdr apartment!
## 1728 783202 Charming Apt off Bleecker, First Fl
## 1729 783341 Private Bedroom LOWER EAST SIDE
## 1730 783964 GREAT ROOM Fast 2 TIMES SQ 9min NYC
## 1731 784088 1 Bed Apt in Utopic Williamsburg
## 1732 784124 New Flat, Great Light, Unique Brooklyn Bungalow
## 1733 784169 Sunny, Gorgeous West Village Home
## 1734 784170 HUGE, SUNNY ROOM, BLOCK 4RM TRAIN!
## 1735 785166 Comfy Cool Convenient Downtown Manhattan
## 1736 785508 Experience New York - A Locals Way
## 1737 785978 For cat lovers - East Village 1 bdr
## 1738 786053 Sunny Rm #2, Air Conditioner, Park,Express Q train
## 1739 786685 Big Brnstn Grdn Apt 2 stops to Midtown
## 1740 786727 Xmas in NYC!!!
## 1741 786843 PRIVATE ROOFTOP +BEST LOCATION+COZY
## 1742 786955 West Village - Gorgeous Studio Apt.
## 1743 788005 Spacious 1 Bedroom Apt, Prospect Hts/Park Slope
## 1744 788035 Room in 2 Bdr Apt in Nolita/Soho LES
## 1745 788106 Cozy West Village Apartment
## 1746 789476 Room With A View of Central Park
## 1747 789559 Love NYC! Luxury Apt Upper West
## 1748 789686 Cute & Quirky Private Room
## 1749 790767 East Village, Modern Apartment @ Astor Place
## 1750 791452 Jazzy condo in Riverdale -fresh grown veggies
## 1751 792142 Studio Available on Upper East Side
## 1752 792835 Spacious Lower East Side Studio
## 1753 793590 Sunny in the Heart of Williamsburg
## 1754 793951 Beautiful Bedroom in Harlem
## 1755 794156 Lincoln Center luxury condo
## 1756 794245 Historic Brownstone Private Garden
## 1757 794281 Open loft in the heart of Union Sq.
## 1758 794425 Brooklyn two bedroom
## 1759 794427 Prospect Park Modern 3 Bedroom
## 1760 794472 Beautiful apartment nr Central Park
## 1761 794496 Bright Quiet Room in N. Manhattan
## 1762 794535 Live in real NY apt, Midtown west
## 1763 794567 Brooklyn Oasis - Master Bedroom.
## 1764 795198 Big City of Dreams, East Village!
## 1765 795641 Weekend NY getaway? Holiday stay?
## 1766 795680 Upper East side cozy 1 bdr apt
## 1767 796232 Cozy Apt in Bushwick, Brooklyn!
## 1768 796370 Monthly discount - 2 bedroom - upper east side
## 1769 796490 Park Slope House -private room -1 block from metro
## 1770 796523 Rustic Modern Duplex Brownstone
## 1771 797696 Prime Williamsburg location with private deck
## 1772 797972 Spacious 1 Bdrm in BEST location!!
## 1773 798008 Hancock Town House!-Stuyvesant Mews
## 1774 798128 Large one-bed apt Upper East Side
## 1775 798429 Modern 1-bedroom in Harlem Heights
## 1776 799319 Peaceful Garden Sanctuary best part of Brooklyn!
## 1777 799484 E'33-EMPIRE STATE -PERFECT SPAC
## 1778 799829 Small Town in the Big Apple!
## 1779 799900 Amazing apartment near museum, gardens & park!
## 1780 799924 Big Loft in Bushwick: Unfurnished, longterm sublet
## 1781 799945 Very Small Room, Old Historic Brooklyn Townhouse
## 1782 800051 Bright & Beautiful 3bdr apt in Prime Williamsburg
## 1783 801281 Cozy Modern LES Apt-Prime Location
## 1784 801626 CBG HelpsHaiti #5 Suite
## 1785 802498 Manhattan *SuperHost* Luxury Master Bedrm PRIVATE
## 1786 802677 Large & Elegant Pre-War One Bedroom
## 1787 803237 Duplex with two terraces and a view
## 1788 803778 Luxury Loft Noho New York City
## 1789 804194 Large but cosy Bushwick apartment
## 1790 804246 HUGE, PRIVATE, SUNLIT ROOM IN DOWNTOWN NYC LOFT!
## 1791 804388 Cute Studio Apt in a Mansion (1882)
## 1792 804815 Washington Heights homestay
## 1793 804911 Sunny apartment in Carroll Gardens
## 1794 805028 BOERUM HILL, Entire Home / Loft
## 1795 805218 Private Room in Converted Loft
## 1796 805793 Charming Astoria/NYC Studio Sublet
## 1797 806038 Home Sweet Room-SAPPHIRE-Queens NYC
## 1798 806040 Home Sweet Room-EMERALD-Queens NYC!
## 1799 807535 Spacious Private Bedroom Brooklyn - Williamsburg
## 1800 807882 Apt in Heart of Williamsburg
## 1801 808313 Sunny East Village studio apartment
## 1802 808476 Great Space / Private Room
## 1803 808618 Spacious & Sunny in Scenic Kw Gdns
## 1804 808705 ONE BED/ LUXURY @ COLUMBUS CIRCLE!
## 1805 808774 Chic 1 bd apt in Prime Williamsburg
## 1806 808851 Comfortable Room in UES - NYC
## 1807 810346 Beautiful Apartment, Great Location
## 1808 810681 City View From Brooklyn– 2Bd+2Bth
## 1809 811198 Downtown Manhattan Luxury 1 Bedroom
## 1810 811238 Warm and Beautiful Harlem Apartment
## 1811 811299 Radiant Cobble Hill - 1 bedroom
## 1812 811347 West Village 1-BR Gem - Great Price
## 1813 811450 Private Townhouse Guest Suite
## 1814 812057 DEBBIE'S COZY RETREAT
## 1815 812467 Vintage Chic Haven in Kensington, Brooklyn
## 1816 812671 CSS (Central/Sunny/Spacious) 1 BR in Park Slope
## 1817 812938 Shabby Chic Modern Chelsea Studio
## 1818 813225 Quirky, Exposed-Brick Cozy Room Brooklyn Townhouse
## 1819 813554 Historic Park Slope Gem - 1br
## 1820 813793 Large, Private 2-BR Flat in the Lower East Side!
## 1821 814327 room in uper east side manhattan
## 1822 814616 BIG STYLISH SUNNY EAST VILLAGE 1BR
## 1823 814911 TASTEFUL DESIGN + SPACE FOREVER
## 1824 815045 Stylish West VILLAGE Water Views
## 1825 815465 Central Park North Guest House
## 1826 816637 Big apartment with top view! 1 block from subway.
## 1827 816673 Very Cool Entire Apartment | BUSHWICK
## 1828 816888 Whole Manhattan Apartment
## 1829 817113 large spaciousbrownstone house
## 1830 818084 Gorgeous sunny prime SoHo 1BR Apt.
## 1831 818314 Cozy room in beautiful apartment !
## 1832 818325 Pied-à-Terre in Midtown Manhattan
## 1833 818337 Newly Reno Room with Private Bath^
## 1834 818451 Lovely studio upper east side !
## 1835 818481 MANHATTAN BEAUTIFUL PIANO ROOM
## 1836 818518 MANHATTAN BEAUTIFUL FIRESCAPE ROOM
## 1837 819206 Cute shared studio apartment
## 1838 819228 MANHATTAN CONVENIENT 2 CLOSET ROOM
## 1839 819419 Entire Private, Spacious 1-BR in Ft. Greene
## 1840 819893 MANHATTAN CONVENIENT NICE ROOM IN NYC
## 1841 819956 Home away from home,clean and cozy.
## 1842 820218 Lovely East Village Apartment, Sept. 2 to 5 Only
## 1843 820710 1 large bedroom w/private bath
## 1844 820801 Sunny 2BD, 2 balconies
## 1845 820946 Charm&Quiet in Hip Greenpt Brooklyn
## 1846 820953 Entire Apt Yours! (5 Night Minimum)
## 1847 821135 Bright Loft One Stop from Soho
## 1848 822016 1BR w/private bath in modern Prospect Heights apt
## 1849 823520 ON HIGHLINE! Private room & bath
## 1850 823618 Large,sunny private room in Harlem
## 1851 823631 Bright, cozy private room in Harlem
## 1852 823880 Clean Private Bedroom on Lower East Side,Manhattan
## 1853 824163 Sunny Convienent Bushwick Room
## 1854 824421 Central Williamsburg Fab Large Room
## 1855 825193 Park Slope Apartment
## 1856 825486 1 BEDROOM APARTMENT IN UPPER EAST
## 1857 825545 Clean cozy room central historic gay best area
## 1858 825550 Luxury 1BD in Historic Carrol Gardens Brownstone
## 1859 826307 Near Manhatten, NEW Empire Outlets, park!
## 1860 826388 Spacious & Comfy, Top of Central Pk
## 1861 826603 No Longer Available Brooklyn Brownstone
## 1862 826685 Dreamy Private Room in Super Cool Bedstuy Apt.
## 1863 826690 Sunny, Family-Friendly 2 Bedroom
## 1864 826764 Spacious Sunny Union Sq Room
## 1865 827719 Experience Brooklyn like a True Brooklynite
## 1866 828130 Brooklyn Apt next to Prospect Park
## 1867 828553 Location AND Space in the city!!
## 1868 828685 Cute Room in Artist/Designers' Flat
## 1869 828796 Large 2BR Apt in Brownstone
## 1870 829083 Steps From Art, Shopping & Eats
## 1871 829935 Charming Backyard Apt in Townhouse
## 1872 830840 Private Bedroom in a Studio
## 1873 830949 DESIGNER LOFT W PRIVATE ROOFTOP & PANORAMIC VIEWS
## 1874 831911 Entire apt close to Lincoln Center
## 1875 832157 Seeking tenant for January 2013
## 1876 832596 Spacious 1 BR Near the Water UES
## 1877 832772 NO PLACE LIKE YOUR NYC HOME! UPPER WEST SIDE 1BDRM
## 1878 833519 Large Bedroom for 2 brickwall
## 1879 834088 Charming Private room in Greenpoint
## 1880 834190 Manhattan Lux Loft.Like.Love.Lots.Look !
## 1881 834968 3br w/ Private Roof Steps to Subway
## 1882 836578 Airy+Sunny 1bdrm- Steps to HighLine
## 1883 836720 Brand New Bay House
## 1884 837256 UES APT- NEAR CENTRAL PARK, MUSEUMS
## 1885 837282 Spacious Loft in heart of Tribeca
## 1886 837430 Ground Floor Studio With Backyard
## 1887 837503 ❤️Feel@HOME Brooklyn Clinton Hill ❤️
## 1888 837958 Very cozy room with a tv.!
## 1889 838070 Brooklyn Apt: 1 Bedroom w/Garden
## 1890 838586 ***HOT SPOT*** 2 blocks to L/G Trains *** Modern
## 1891 838974 comfy artsy cottage garden studio
## 1892 839058 Midtown Lux Manhattan by 5th Ave
## 1893 839539 Awesome, Unique EAST VILLAGE LOFT!!
## 1894 840103 Charming, huge BR, nr Prospect Park
## 1895 840594 Huge beautiful one bed West Village
## 1896 840667 Amazing Greenwich Village w pool
## 1897 840731 Historic East Village Townhouse
## 1898 840794 Big one bedroom located in Brooklyn
## 1899 841075 Spacious and Clean Brooklyn Flat
## 1900 841211 Spacious Centrally Located Apt!!!
## 1901 841292 BIG room in fun loft – heart of NYC
## 1902 841484 cozy charming apt - Lower East Side
## 1903 842167 1 BDR in Heart of Lower East side
## 1904 842176 Cozy Room in Williamsburg Loft Apt
## 1905 842494 Charming Studio Near Central Park!
## 1906 842973 Great 1 bedroom- awesome location
## 1907 843003 Modern Two-Bedroom Balcony Apartment
## 1908 843036 Beautiful apt uptown Manhattan
## 1909 843491 Clean 1 bedroom with private bath :)
## 1910 843499 Large sunny room 10 min to Midtown!
## 1911 843524 A Little Palace in Brooklyn for Shoots and Events
## 1912 844319 XL 90m2 2BR Victorian area,sleeps 7
## 1913 845362 Perfect 750 SF W. Village 1 Bedroom
## 1914 845417 LOVELY LOFT | 24H DOORMAN | PERFECT
## 1915 845517 Queen-sized Room Avail in Huge 2 bdrm/2bth loft.
## 1916 846190 Modern condo close to Prospect park
## 1917 846275 BEST LOWER EAST SIDE APT, SLEEPS 4 COMFORTABLY.
## 1918 846457 Beatiful Studio in williamsburg
## 1919 846470 COZY SUNNY ROOM, BLOCK 4RM TRAIN :)
## 1920 846549 New York City Dream Apartment
## 1921 846799 Strawberry B&B
## 1922 846829 Private room in the lower east side
## 1923 846854 Large Garden Duplex on Park block
## 1924 846871 Cozy 1 BR near Central Park, AMNH, The MET & More
## 1925 847591 Brooklyn Apartment
## 1926 848087 Great light-filled 1BR in Brooklyn
## 1927 848170 Gorgeous 1BR near Prospect Park
## 1928 848174 1BR East Village Apt - Entire Apt.
## 1929 848220 LUXURY APT w PRIVATE GARDEN NYC UES
## 1930 848707 Bright Room in Queens, Shared bath%
## 1931 848718 Spacious & Comfy by Prospect Park
## 1932 848722 Lovely BR In The ❤ Of Flushing! Free Metro Card
## 1933 848853 Upper Manhattan//Harlem Classic
## 1934 849409 Spacious garden appartment brooklyn
## 1935 849567 Your own large 1BR apt in Manhattan
## 1936 849603 Spacious Crown Heights Apartment
## 1937 849703 Convenient, Renovated 2 Bedroom
## 1938 850097 Beautiful 1BD in the West Village
## 1939 850148 1 ROOM IN AMAZING ARTIST NYC LOFT
## 1940 850198 UES 1 br, 2 blocks from the Met
## 1941 850338 Authentic Luxury Designed Loft
## 1942 850435 Sunny Loft in Brooklyn next to Bedford L
## 1943 850517 3 Bedroom Duplex/ 2 Baths and 2 LR
## 1944 850712 Cute Studio Greenwich Village NYC
## 1945 850943 ARTIST TRENDY NYC LOFT
## 1946 851130 Nice Furnished Short Term in NY
## 1947 851772 CHIC 1 BEDROOM IN MANHATTAN (UES)
## 1948 851784 Designer's spacious Manhattan apt.
## 1949 852118 Spacious 3 Bedroom Prospect Brooklyn near subway
## 1950 852632 Gowanis Urban Oasis
## 1951 852949 INCREDIBLY LOCATED GREENWICH/WEST VILLAGE APT.!
## 1952 853900 Immaculate brand new one bedroom
## 1953 854033 1 BR in large full floor apartment
## 1954 854253 Great Lrg Apt next to Park/Subway
## 1955 854521 Room, Central Location, Priv. Entry
## 1956 855206 Bedroom with Private Bath and Roof
## 1957 855462 1BR in Charming Downtown Apt
## 1958 855549 Have the 1st floor of a two floor duplex,
## 1959 855919 Lovely Apt. in the heart of Harlem
## 1960 856304 Clean,spacious,comfy Brooklyn room
## 1961 856440 YOUR OWN PLACE WITH VIEWS OF CENTRAL PARK
## 1962 856918 Large Room in Garden Duplex
## 1963 857696 PRIVATE LARGE-MODERN-CLEAN master bedroom
## 1964 857810 Heart of Williamsubrg 1 Bedroom
## 1965 858223 Entire flat west village
## 1966 858695 Very Large Private Room on quiet st
## 1967 859023 Charming Artist's Home in Brooklyn
## 1968 859596 Quiet room w/ 2 beds +light near subway+ museums
## 1969 860163 Manhattan Studio Apartment: 2 Adults $125
## 1970 860401 Lovely 2 Bed Garden Apt Fort Greene
## 1971 860827 carriage house apartment
## 1972 862890 Private bedroom w/ king size bed + pvt bathroom
## 1973 864790 PEACEFUL SHARE BY CENTRAL PARK
## 1974 864981 Cozy Room in Charming Brownstone
## 1975 865355 Spacious and Comfortable Room!
## 1976 866890 Budget/diamond in heart of Harlem
## 1977 867020 Nice quiet room on a backyard
## 1978 867721 Comfortable Modern Room in Bed-Stuy
## 1979 867749 Sunny 2 bedroom in Prospect heights + terrace
## 1980 867769 Full Bedroom in Bed-Stuy
## 1981 868548 Friendly & fun w/ private terrace
## 1982 869522 Private room/Upper Manhattan
## 1983 870119 Beautiful 2bdrm Bklyn duplex w/deck + backyard
## 1984 871076 LARGE 2 BR w/Dining Room, Balcony, Echo
## 1985 872035 furnished bedroom 1150$ a month
## 1986 872210 Quiet 1BR Heart of the East Village
## 1987 873465 Cute & Comfortable One Bedroom
## 1988 873701 Chic, quiet 1BR with patio (steps from the subway)
## 1989 874683 Spacious Bushwick Duplex Apartment
## 1990 874706 Fully Updated Modern 1 Bedroom Apartment
## 1991 875111 1-bedroom apt in Clinton Hill
## 1992 875567 Cozy West Village Studio Apartment
## 1993 876355 Large 1BR Columbia University
## 1994 876565 Spacious Comfy Bedroom in Bed-Stuy
## 1995 877135 Williamsburg 1br APT
## 1996 878142 Serene 1BR+Garden+Goldfish Pond+Cook's Kitchen
## 1997 880256 Beautiful Trendy 2br Harlem Apt.
## 1998 880424 ★Beautiful Home Away From Home★
## 1999 882209 Gorgeous Williamsburg Apartment
## 2000 882258 Beautiful Studio on Prospect Park!
## 2001 882559 Private bedroom&bathroom in the heart of Manhattan
## 2002 883209 World Travelers to Couchcrash in BK
## 2003 883306 1 Bedroom in Clinton Hill Share
## 2004 883423 Clean and charming apartment in Carroll Gardens
## 2005 883517 3 Bedroom Upper West Side Gem
## 2006 886808 Free Metrocard*, Safe & Affordable
## 2007 886833 Private Suite, Free Metrocard*
## 2008 887129 Comfortable and Large Duplex with Private Terrace
## 2009 887292 2 Bedroom Bushwick Apartment
## 2010 887355 2 bedrooms 5-star building midtown
## 2011 888583 Gorgeous Greenpoint Railroad
## 2012 888905 Sunny bedroom, next to subway and Central Park
## 2013 890794 Cozy- bedroom in Jackson Heights!
## 2014 890839 Spacious, duplex townhouse w large garden oasis
## 2015 890855 Sun-Drenched Studio in Clinton Hill
## 2016 891117 Private Bedroom in Manhattan
## 2017 892463 Ideal Location + Shower In Kitchen!
## 2018 892704 Enjoy Brownstone Brooklyn!
## 2019 893413 Architecturally Stunning Former Synagogue!
## 2020 893853 Best Location btwn Un Sq/ Chelsea
## 2021 894015 Boldera: Your Home Away From Home
## 2022 894063 Penthouse patio,city view,BIG bed
## 2023 894093 Cozy room,only 2 blocks from subway,10min to City!
## 2024 895368 Large 2 bedroom apt in Manhattan
## 2025 895386 NYC-THE BEST: Stay in Comfy Apt Manhattan-Harlem!
## 2026 898669 Hip Modern West Village Apartment
## 2027 898861 Private One Bedroom Suite, 45 min from City
## 2028 900383 Brooklyn-Bedstuy-Studio
## 2029 900503 Stylish 1897 garden duplex oasis!
## 2030 903906 charming house on family block
## 2031 903947 Beautiful Bedroom in Manhattan
## 2032 903972 Great Bedroom in Manhattan
## 2033 904060 Beautiful Modern apt in Brooklyn
## 2034 905425 PAINTERS PARADISE / GREENPOINT
## 2035 905947 CHIC ROOM IN BROOKLYN BROWNSTONE
## 2036 906038 Central Pk West-Convenient 1 BR
## 2037 906058 Columbia area room pvt bath & entry
## 2038 907966 1 rm @ 3BR artist loft williamsburg
## 2039 908046 1150$furnished room with a balcony
## 2040 908923 Charming East Village Studio
## 2041 909859 charming luxurious house, NY, Brooklyn
## 2042 910976 Gorgeous PermaGO HOMES™ - FiDi - Room 2/2
## 2043 911092 Avenue A Apartment
## 2044 912376 Room in cool Bushwick loft!
## 2045 915020 Garden Apartment in Park Slope
## 2046 916311 Rooms in Spacious East Village Apt.
## 2047 917058 Charming Greenwich Village studio
## 2048 918049 Union Sq European Serene apt
## 2049 918239 Cozy bedroom in Artist Loft
## 2050 918426 IDEAL AREA!Reviews! LARGE btfl room
## 2051 919491 Park Slope LARGEST (private) SHARE IN PARK SLOPE
## 2052 919830 1br in a 2br apartment in Chelsea (23/7)
## 2053 919978 2bdrm + Patio/BackYard/Time Square/1st Floor
## 2054 919990 2 Bedroom Apt in Caroll Gardens
## 2055 920930 Backyard BBQ in Brooklyn Brownstone
## 2056 921441 Artsy Bedroom/Office in WaHi
## 2057 921585 Cosmopolitan Brownstone Sanctuary
## 2058 921624 Rare Spacious Quiet Prime Williamsburg Duplex Loft
## 2059 921862 Breathtaking view of New York city
## 2060 923566 Sunlit Central Park Apartment
## 2061 923979 Private Studio Near JFK, LGA & Subway Not A Bsmnt
## 2062 924600 Sunny, private room in Brooklyn!
## 2063 924658 Bright, airy room share in Brooklyn
## 2064 924719 Beautiful East Village Apartment
## 2065 925075 Sunny Loft Style Apt-Great Location
## 2066 925137 Cute Manhattan Chelsea Apartment
## 2067 925240 Artist Loft - Union Square
## 2068 925730 Large studio all to yourself
## 2069 926337 Charm w/amazing city view by PS1
## 2070 927408 Large Cozy Room #1, Landmark Home 1 block to PRATT
## 2071 927597 (2) CLEAN HOME AWAY FROM HOME!
## 2072 927987 Bright Doorman One Bedroom on Upper East Side
## 2073 929032 Dumbo | Spacious private room w/ private bathroom
## 2074 931352 Lovely Private Room in Bushwick! :)
## 2075 931642 Murray Hill Garden Apt. MANHATTAN
## 2076 932277 Fabulous Industrial Dumbo Loft
## 2077 933129 Fort Greene Jewel
## 2078 933861 Hell's Kitchen Hideaway - Private Entrance
## 2079 936218 Clean-Furnished Room Near The Apollo (W 125th St.)
## 2080 937678 Bushwick Loft
## 2081 938022 Private Bedroom in Williamsburg
## 2082 939657 Behind the Red Door II
## 2083 939724 Stylish Room-Artist/Designers' Flat
## 2084 940115 Cozy Studio in the Heart of Crown Heights
## 2085 940116 Bright Room in Historic Brownstone
## 2086 941179 Clean & Cozy Brooklyn 1 BR Gem - Great location!
## 2087 941642 HELL'S KITCHEN STUDIO for 2 or 3
## 2088 944040 Entire 1.5 Br Apt- Crown Heights - Franklin Ave
## 2089 944049 Beautiful 1BR in Prime West Village
## 2090 944183 your holiday-ready Harlem home away from home!
## 2091 944755 STUDIO APT 1. IN PROSPECT LEFFERTS GARDENS
## 2092 944840 Dumbo Loft With A Beautiful View
## 2093 945297 East Village Gay Friendly Dbl Room
## 2094 947810 Seeking Short Term Roommate on UES
## 2095 947963 Sunny WILLIAMSBURG Room near SUBWAY
## 2096 949713 Luxury Duplex Loft w. Private Roof & Amazing Views
## 2097 951365 Bushwick/Ridgewood aprtmt w parking
## 2098 951944 Quiet Studio in Prime SoHo
## 2099 953275 Apartment For Your Holidays in NYC!
## 2100 953951 West Village Large 1BR
## 2101 955153 Elegant loft in heart of soho
## 2102 955542 *Sunny Master BD* in Garden Duplex
## 2103 956412 Charming Bright 2BR apt- sleeps 6
## 2104 957002 Cozy PRIVATE Studio Apartment UWS and Jazz Tour.
## 2105 957642 Large bedroom/Heart of Brooklyn
## 2106 958444 Great 1BD waterfront City Island NY
## 2107 959349 Modern New Duplex with Private Yard
## 2108 959478 Chic, Cozy LES 1BR. Weekly clean included!
## 2109 959871 Bask in the light! Studio bedroom in Williamsburg
## 2110 959948 Designer Triplex Loft Soho/Greenwich Village
## 2111 960210 Brooklyn Fashionista 1Bdr Loft
## 2112 962045 Private Room & Coffee, only 3 blocks to Train
## 2113 964379 WATER VIEWS 3 BED HOME W/ PARKING
## 2114 966104 Private room in large 2 bed room
## 2115 968848 Cozy private room in 2 Bedroom, BK
## 2116 969463 Artsy Fashion Pad in the Heart of Williamsburg
## 2117 971158 Sunny room with private bathroom
## 2118 971247 Sunny Artist Live/Work Apartment
## 2119 972426 BIG, COMFY, PRIV. room, Big apt, yard, Will-B dplx
## 2120 973128 Pretty One Bed in Brooklyn Heights
## 2121 973535 Garden Apt, 5 mins from LaGuardia
## 2122 973653 A true Sanctuary in Harlem NYC
## 2123 975229 Prime East Village location w/backyard garden!
## 2124 975250 Bushwick Duplex 2
## 2125 975965 Great Room in Lively East Village
## 2126 975990 Brooklyn Heights Brownstone - Private Bdrm Avail.
## 2127 976167 Newly Furnished Beautiful & Quiet
## 2128 976242 Cozy East Village Haven
## 2129 977870 Upper West Side Pied A Terre /NYC
## 2130 978062 West Village 1 BR Apartment
## 2131 978386 A GEM Garden Apt on Broadway & 42ST QUEENS, NY
## 2132 978615 NICE ROOM IN ASTORIA NEAR MANHATTAN
## 2133 980098 Quiet ST MARK'S PLACE ARTIST'S GEM
## 2134 980561 Beautiful, private, uptown studio
## 2135 981410 Sunny Studio in the West Village
## 2136 981494 Large and sunny one BR (600 sq.ft)
## 2137 982038 Entire 1bdrm cnr of Fort Greene- off Park
## 2138 983625 Great Studio in the heart of Harlem
## 2139 984721 QUIET GARDEN APT FACING NY BAY!
## 2140 985338 Monthly rental of guest room,limited kitchen use
## 2141 986727 Manhattan's Best Deal!
## 2142 987329 ROOM NEAR TIMES SQUARE MANHATTAN
## 2143 987616 5 Bdrm Historic Brownstone Triplex
## 2144 989976 Three Bedroom NY Private Apartment
## 2145 990130 Spacious 3br Apartment in Brooklyn
## 2146 990367 Colorful Manhattan - Harlem Apartment
## 2147 990529 Sunny Luxury Bedroom Guest Bathroom
## 2148 992508 Next to Subway, Private bedroom
## 2149 992598 Village Life, 2-Bedroom, East Village
## 2150 992891 Sunny Nolita 1 Bedroom Apartment
## 2151 992977 Park Slope Pre-War Apartment
## 2152 993040 YOUR HARLEM HOME AWAY FROM HOME!!!
## 2153 993514 Luxury Furnished 1 BR UWS Apt w W/D & Deck
## 2154 993575 1 BR Large Luxury Furnished Apartment UWS
## 2155 993576 Luxury Furnished 1 BR Apartment UWS
## 2156 995169 West Village Gem - Amazing Location
## 2157 995187 BIG & SUNNY, 1 STOP FROM MANHATTAN
## 2158 995215 Upper West Side Amazing Large 2 Bedrooms
## 2159 995367 1BR Apt as featured in New York Mag
## 2160 995469 Beautiful Large Furnished Bedroom on UES
## 2161 997404 Charming Apt. In Brooklyn Townhouse
## 2162 998423 Great space minutes from Manhattan!
## 2163 998887 Sunny studio apt in heart of SoHo
## 2164 999248 TriBeCa 2500 Sq Ft w/ Priv Elevator
## 2165 999977 Cozy studio apartment on upperwest
## 2166 999984 Greenwich Village Townhouse Apt
## 2167 1000788 Modern Lux 1 br near 2/3/4/5 Trains
## 2168 1001147 Big Room with Bath in Bushwick!
## 2169 1001447 Comfy twin bed/Cosy apartment/East Harlem / Subway
## 2170 1002469 Comfortable Apt near Bloomingdales
## 2171 1003530 New York City - Upper West Side Apt
## 2172 1003754 Chic Park Slope Pied-à-terre
## 2173 1005416 South Harlem Gem! 113th St & 8th Ave
## 2174 1005763 ★Private Room Overlooking the Park★
## 2175 1009883 Modern, Carroll Garden Townhouse
## 2176 1009973 Brooklyn Wildlife Loft Mckibbin st
## 2177 1010785 Astoria awesome balcony apartment PARKING AVAILABL
## 2178 1011449 Spacious and EASY access to all!
## 2179 1013648 Gorgeous 2 Fl Apt in1887 Brownstone
## 2180 1016004 Clean and Cute Shared Room in Very Safe Area
## 2181 1016105 BK - Spacious & Sunny 4 bedroom apartment
## 2182 1016352 Midtown West Modern & Sunny-near Central Park
## 2183 1016819 2BR 2Bath duplex w garden & terrace
## 2184 1018181 Master Bedroom Ideal for 2 - Luxury for 1 !
## 2185 1018529 Large 2 BDRM @ McCarren Park!!
## 2186 1019360 Hip charming Williamsburg apartment
## 2187 1021005 Cute Bedroom in Clinton Hill
## 2188 1021491 Whole Apt: Artsy home by BK Museum
## 2189 1021957 PRIVATE QUIET SUITE
## 2190 1022204 Glowing reviews, hip neighborhood
## 2191 1023181 LOCATION/garden!(FEMALE only, next to girl's room)
## 2192 1023529 Convenient and private
## 2193 1024113 Lovely room in East Williamsburg, NY
## 2194 1024135 Beautiful UES Studio with Backyard for Sublet
## 2195 1025001 Private Entrance Charming Bedroom
## 2196 1025786 Fantastic 1br in Astoria/LIC
## 2197 1025847 Modern 1BR East Village Apt w/patio
## 2198 1026565 Peaceful Park Slope near subways
## 2199 1026683 Mi Casa Tu Casa Guesthouse Mexico
## 2200 1027808 East Village Loft - 1300 sq/ft home - 2 Bedrooms!
## 2201 1028263 Spacious Room/Great Location
## 2202 1029482 Private Room w TV in East Village
## 2203 1029808 Spacious 1bd Near Trendy Neighborhoods And City
## 2204 1030254 Large room in Beautiful communal house
## 2205 1030392 BIG, COMFY, 4BR DUPLEX, GARDEN APT, Williamsburg
## 2206 1030780 NYC Brooklyn Sunset Park- Great Bed. Great House.
## 2207 1032127 Short Term Stay in Chelsea/MP NYC
## 2208 1032610 Beautiful loft in trendy Harlem!
## 2209 1032611 Private 1 bdrm Lefferts Gr, BK apt
## 2210 1034911 Entire Spaceous, Sunny, Loft in Clinton Hill
## 2211 1036498 ☆☆New Discount☆☆ 10min to Manhattan
## 2212 1036734 Apartment in the heart of Upper East Side
## 2213 1037016 Quiet central Williamsburg Loft room
## 2214 1039215 Heart of Williamsburg - authentic & central!
## 2215 1039435 Lovely studio in Manhattan,New York
## 2216 1039983 Tribeca Loft w/ Private Elevator
## 2217 1039984 Furnished BrownStone Apartment
## 2218 1040156 2 floor Luxury Loft in the best location!
## 2219 1041996 Small room with private bath in New York
## 2220 1042416 Sunny Brownstone Attic
## 2221 1042806 My Other Little Guestroom
## 2222 1043046 Studio in Best Possible Location!
## 2223 1044502 HELLO HARLEM
## 2224 1044731 Dear Potential Airbnb Guests.
## 2225 1045491 Prime Williamsburg. Brand new
## 2226 1045897 HISTORIC WILLIAMSBURG, BKLYN
## 2227 1046443 Beautiful & spacious apartment in Astoria, Queens
## 2228 1048190 Huge Sunny Loft w Patio + Charm
## 2229 1049224 Beautiful duplex in a brownstone
## 2230 1051575 Quiet and Comfort Near Columbia University
## 2231 1053523 Beautiful Ground Level Townhouse Ap
## 2232 1054006 Bohemian East Village Brownstone
## 2233 1054201 One Bedroom Townhouse Apartment
## 2234 1055029 Washington Heights/Inwood apartment
## 2235 1056119 Cozy Private Space in Williamsburg Townhome
## 2236 1056185 Sunny+Cozy Double bedroom in BKLYN!
## 2237 1056256 Beautiful eco triplex w/green roof. Free yoga/spa.
## 2238 1056445 Upscale Designer Studio-Heart of Manhattan
## 2239 1056804 Spacious Modern & Comfy 2BR in BK Brownstone
## 2240 1057022 Spacious 1br East Village Apartment
## 2241 1059531 Staten Island 1st floor Apartment
## 2242 1059891 “L l,x w w. XThank &mftkn. .
## 2243 1060019 Modern Duplex 1 bdrm , 1.5 Baths + terrace!
## 2244 1061337 Sunny Private BR Crown Hts Brooklyn
## 2245 1063020 Private Brownstone
## 2246 1063554 bedroom in big sunny loft (& Roof!)
## 2247 1065138 Private room in beautiful neighborhood in Brooklyn
## 2248 1066769 Clean Room, Central Location in Manhattan
## 2249 1067251 Entire home/apt in New York
## 2250 1068505 Relaxing and Roomy in Crown Heights
## 2251 1069266 Stay like a real New Yorker!
## 2252 1069287 Park Slope 1br by Barclays Center/Prospect Park!
## 2253 1070458 Room in a cozy loft
## 2254 1071743 Brooklyn Family Friendly Brownstone
## 2255 1072212 Relaxed in New York
## 2256 1072481 Bedroom for two in Chelsea
## 2257 1073635 Cozy Carroll Gardens Brownstone Apt
## 2258 1073780 Sunny Clinton Hill Apt w/Patio
## 2259 1073832 Designer Studio Apt in Red Hook
## 2260 1074155 Big 1st Meal, Kind Host, Ace Space
## 2261 1074506 Amazing Queens Oasis Steps to Train
## 2262 1076324 2BR Sunny Apt - 15 min from MIDTOWN
## 2263 1077176 Beautiful Gramercy duplex loft with terrace
## 2264 1077179 Large luxury 1 bedroom loft in Gramercy
## 2265 1077375 Private RM 15min from the Manhattan
## 2266 1079675 Clean, Complete and Cool
## 2267 1080543 Sunny Sunset Park Artist Loft
## 2268 1080766 Summer Special Price Times Square
## 2269 1080816 Cozy apartment in Greenpoint
## 2270 1080839 Spacious sunny bedroom - East Village (A)
## 2271 1083888 Verna's Brownstone (no stove, no gatherings)
## 2272 1086640 1 Bedroom Apt Greenpoint, Brooklyn
## 2273 1087215 Stunning Designer Loft in the heart of Chelsea
## 2274 1089240 Great Apartment with luxurious bath in NYC/Chelsea
## 2275 1089542 Private Cozy Bedroom in Brooklyn
## 2276 1089619 Bright, Huge Room in 3 Bedroom Apt.
## 2277 1090732 You take living or bedroom!
## 2278 1091582 Two Comfy Rooms in Park Slope
## 2279 1091840 Private bedroom in Manhattan, NYC
## 2280 1092760 Private Entrance - Backyard Summer Dining - Enjoy
## 2281 1093977 Sunny Apt in Harlem, New York
## 2282 1095106 Greenpoint - with your own space!
## 2283 1096326 Private studio in staten island \n\n
## 2284 1096511 Private Room in Large Apt w/ Gorgeous Park View
## 2285 1097816 Group-Student-Friendly Bklyn House
## 2286 1098863 Great Bushwick Studio Apartment
## 2287 1099244 Big UWS 1Bdrm 2 min to Central Park
## 2288 1100421 Cobble Hill, sunny large 1BR apt
## 2289 1100753 Stunner Garden Apt in Townhouse
## 2290 1101035 Sunny 1 or 2 BR apt in Boerum Hill
## 2291 1101224 THE PUTNAM
## 2292 1102858 Brownstone Flat on Tree-Lined Block
## 2293 1102942 1BR, 1BTH Duplex W/ LRG OUTD SPACE
## 2294 1102963 The Bushwick 3BR 2BA 20 mins to NYC
## 2295 1105845 Convenient Location! 1 BR on 1Floor
## 2296 1106284 Modern Loft Space on Gramercy Park
## 2297 1107092 Brand new 2BD Apt in Gramercy
## 2298 1107976 Manhattan & Time Square in 30 minutes. Back room.
## 2299 1108309 Charming Housebarge w/ outside deck
## 2300 1109092 Beautiful Park Slope 3bdrm Duplex
## 2301 1110195 Chic Brooklyn Apt.- Private Room
## 2302 1110484 Forget NYC, Stay in Williamsburg! Best 1 BR Apt
## 2303 1112070 Private Room & Bath in Brooklyn!
## 2304 1112407 Harlem Short Term Stay
## 2305 1112484 Beautiful duplex on Bowery
## 2306 1113125 Huge 1br - tons of light - williamsburg
## 2307 1114409 2BR spacious luminous brownstone
## 2308 1114493 Quiet room with desk in 2BR spacious brownstone
## 2309 1114788 Astoria Heights Gorgeous Guest Bedroom
## 2310 1115381 Private Room & Balcony in New York
## 2311 1117516 Beautiful new one bedroom apartment
## 2312 1117706 Bright, Bohemian, Spacious Apt in Williamsburg
## 2313 1118031 Private room in Prime Soho/Nolita location
## 2314 1121448 1 rm @ 3BR loft williamsburg room 2
## 2315 1121497 Spacious E Williamsburg with Yard!!
## 2316 1121502 ART HOUSE VAULT
## 2317 1123737 Leelas Bright, Cosy, and furnushed room.
## 2318 1123934 Sunny 1BR Apt in N. Williasmburg
## 2319 1123960 Private Rm for 1 in Historic Harlem
## 2320 1124012 FOODIE HAVEN -ENJOY THE REAL NYC :)
## 2321 1124329 1 bedroom Apt 1 minute from the subway!
## 2322 1126432 South Slope One-Bedroom with Garden Terrace
## 2323 1126492 Andy Phillips
## 2324 1126944 Private Home w/ Parking in Brooklyn
## 2325 1127040 spacious PARK SLOPE room available
## 2326 1127140 Manhattan NYC - The Blue Room
## 2327 1128681 Sunny Room in Lower East Side Apt!
## 2328 1129105 Quiet and Cozy Brooklyn Brownstone Apartment
## 2329 1129483 Unique 1BR in energetic E. Village
## 2330 1130138 West Harlem Clean Park 1 Bedroom
## 2331 1130680 It's all about Bushwick BROOKLYN
## 2332 1130855 Brooklyn: Close-In With Character
## 2333 1131422 ART HOUSE BIGGIE SMALL
## 2334 1131804 Elegant 2BR in Manhattan 15 mins to Midtown
## 2335 1132201 Cozy North Park Slope Apartment
## 2336 1132409 Amazing Upper West Side Loft-Studio
## 2337 1132907 1 BDR in Greenwich Village Full APT
## 2338 1133296 Entire home/apt in Chelsea New York
## 2339 1134365 Private Garden Apt. with outdoor space in Red Hook
## 2340 1136399 Furnished Nolita Studio
## 2341 1137093 Triplex Penthouse in New York
## 2342 1137270 large Private room in UWS New York
## 2343 1137587 Plum Guide Award-Winning Prospect Heights Oasis
## 2344 1137999 Private room in a townhouse in NYC
## 2345 1138052 Private room in Brooklyn
## 2346 1138455 Big and Well Appointed NYC 1 Bdrm
## 2347 1139851 The Perfect Large Chelsea Studio
## 2348 1140826 Private room/bedroom in Park Slope/Gowanus BK
## 2349 1141120 Beautiful stylish one bedroom home with balcony.
## 2350 1142034 Large Flatiron 2 bedroom
## 2351 1144861 Stylish Arty Brooklyn Appartment #4
## 2352 1145134 Lovely garden bedroom in Greenpoint
## 2353 1145288 5 STARS***MIDTOWN EAST-BRAND NEW!!!
## 2354 1145337 Spacious Private Room -East Village
## 2355 1146534 furnished br in 2 br share in WV
## 2356 1146653 Luxury 1 Bedroom Central Park Views
## 2357 1147507 RUSTIC/MODERN/EV/NYC
## 2358 1147524 3br family-friendly Astoria house
## 2359 1148144 Private Room (Long room) in Manhattan NYC
## 2360 1148279 Family Owned & Operated Brownstone
## 2361 1148978 1 BR 1/2 block to A/B/C/D trains
## 2362 1150382 Fab 1 Bedroom Apartment!
## 2363 1150398 Bright room in Brooklyn
## 2364 1150514 Lovely Entire Apt in Prime Brooklyn
## 2365 1150594 HEART OF EAST VILLAGE! Quiet apt in middle of NYC!
## 2366 1150869 Large UWS Apt $170.00/day May 2018- September 2018
## 2367 1151209 Large Sunny 1BR - Entire 2nd Floor
## 2368 1151343 Large room in 2/1 on park w/2day discounts
## 2369 1151582 Quiet & Convenient Upper East Side
## 2370 1155475 Big, glamorous, 4BR, 3-story house
## 2371 1155885 Fresh and modern 1BR in Bed-Stuy
## 2372 1156440 Trendy East Village 1 Bedroom - NYC
## 2373 1156499 MODERN/ SUBWAY/TERRACE/LOFT/ LARGE MASTER BEDROOM
## 2374 1157036 private spacious sunny bedroom
## 2375 1157522 North Williamsburg whole apt - Off the BEDFORD L
## 2376 1159142 Private Master Bedroom@Central Park
## 2377 1164101 Oasis in the West Village
## 2378 1164111 COMFORTABLE NYC RETREAT & Breakfast
## 2379 1165913 Quiet/Clean minutes to Manhattan
## 2380 1166339 Spring in Central Park-UWS
## 2381 1166398 Entire 2 bedroom flat
## 2382 1166616 Gorgeous Large Sunny Room - Upper Manhattan
## 2383 1166947 Huge Private Sunny Bedroom in NYC
## 2384 1167658 Cozy Greenpoint Accommodation
## 2385 1170268 Modern Trendy Duplex Brooklyn Loft!
## 2386 1171566 Nolita: 1BR with private bathroom
## 2387 1171581 Spacious 2 bedroom near Times Sq
## 2388 1171674 Great One-Bed in the West Village
## 2389 1171716 Room with a sunrise view over colored rooftops
## 2390 1171955 Manhattan apt in the centre of it!
## 2391 1173994 Steps to Subway! Entire apt! 20 min to Manhattan!
## 2392 1174944 *Soho Duplex* with private rooftop
## 2393 1175400 LARGE light filled loft/apt! PRIME Williamsburg.✨
## 2394 1177971 Amazing View from Contemporary Loft
## 2395 1178231 Private, Cozy hideaway apt in Bklyn for 1 to 3 .
## 2396 1178389 Beautiful, clean 1-bdrm private apt
## 2397 1180157 PRIVATE ROOM (BRIGHT & CLEAN) Manhattan NYC
## 2398 1180296 Comfortable Central Park North Rm
## 2399 1180537 spacious, tranquil east village apt
## 2400 1180618 One-Bedroom Apt. on Upper East Side
## 2401 1182187 Best Chelsea Street. Beautiful Room. Superhost.
## 2402 1182844 Large apt at Central Park, TimesSq
## 2403 1183005 Hostess Dawn in Brooklyn.
## 2404 1183172 Sunny, Quiet! Lovely 1 Bedroom in Prospect Heights
## 2405 1183236 Fantastic 1 BR in massive share.
## 2406 1183628 Perfect 1st Floor Brownstone in Meatpacking- 2 ppl
## 2407 1183667 Sunlit cozy studio apt in UWS (70s)
## 2408 1185357 Central Park Room/Bath with a View!
## 2409 1185525 Peaceful Brooklyn Flat
## 2410 1186153 Sexy Bedroom near Central Park!
## 2411 1186569 beautiful spacious room
## 2412 1187643 PRIVATE ROOM IN NYC ARTIST LOFT
## 2413 1189225 Bright, New Luxury Exec Studio
## 2414 1189378 Authentic Soho Loft (1200 sq ft)
## 2415 1190223 Large 1 Bedroom in Astoria
## 2416 1191606 STUNNING OCEAN-VIEW 1BR in BROOKLYN, NYC
## 2417 1194066 ENTIRE 1 Bedroom apartment- Upper East Side
## 2418 1194508 Sunny room - Prime Location
## 2419 1195198 Cozy 1 Bedroom in Clinton Hill
## 2420 1195260 The Ganham House
## 2421 1196791 Creative Hub in Upper Manhattan
## 2422 1197899 Sunny Bedroom in Clinton Hill
## 2423 1198231 Clean & Quiet Apartment.
## 2424 1199863 1 room available for rent in 3 bedroom.
## 2425 1203812 Quiet minimal clean
## 2426 1205103 Cozy & Private Fort Green Cottage
## 2427 1209069 One bedroom July 1- Decemb (Phone number hidden by Airbnb) p.mo .
## 2428 1209492 Beautiful East Village Apt
## 2429 1209887 East Village Bright & Spacious Artist Loft
## 2430 1209921 Authentic NYC Living 2
## 2431 1209955 The Green Room: Your NYC Adventure starts here
## 2432 1210916 Stylish apt in the heart of NYC!
## 2433 1212319 Large room in Washington Heights
## 2434 1213745 Cozy, modern 1BR, 1st fl brownstone
## 2435 1213991 Private 2 bedroom Midtown Manhattan
## 2436 1215122 Rm #1 River view Hamilton Heights
## 2437 1215627 Floating Cabin Houseboat Rockaway Surf's Up!
## 2438 1215836 Prospect Park Apt
## 2439 1217046 Sunny Williamsburg Apt w/ Deck
## 2440 1217318 Williamsburg Penthouse Hideaway
## 2441 1217670 BK Rest - Williamsburg, Brooklyn
## 2442 1220548 Cozy 2 BR apartment in Queens
## 2443 1221332 Furnished 1 Bedroom in East Harlem
## 2444 1221517 Private Room (Cozy & Clean) Manhattan NYC
## 2445 1221962 Newly Renovated West Village Privat
## 2446 1222563 Renovated, Residential Space
## 2447 1223230 Stunning Sundrenched Tribeca Loft
## 2448 1223755 Cozy, friendly, 3 min from subway.
## 2449 1225060 Lovely Studio in Astoria
## 2450 1225110 Lovely, Private Home in Greenpoint
## 2451 1226176 Private bedroom (15 min Manhattan).
## 2452 1227258 Amazing Duplex in Williamsburg
## 2453 1227528 Modern Williamsburg
## 2454 1228561 Stylish Apt in Heart of Ft. Greene
## 2455 1229484 SUNNY AND COZY BEDROOM IN BROOKLYN!
## 2456 1229630 Spacious Harlem Condo
## 2457 1231273 LUXURY TIMES SQUARE APARTMENT
## 2458 1232212 Beautiful Huge Loft in Williamsburg, NY
## 2459 1232433 Manhattan Upper East Side 1bedroom
## 2460 1235078 Big Private Room w/ AC & 5 Blocks to 1 Train
## 2461 1238285 Stuyvesant Heights Apt mins 2 City
## 2462 1239017 Spacious 4-BD/2BA Townhouse in PLG
## 2463 1239293 Cozy Retreat in Brooklyn Apartment
## 2464 1240530 Large Sunny Room in Brooklyn
## 2465 1240586 Spacious and clean 1 bed apt in West Harlem
## 2466 1240594 Private room 2nd Fl near C&A line and 15mins JFK
## 2467 1241905 Bedroom in big sunny loft (& roof!)
## 2468 1244117 Cozy Huge Brownstone in Bedstuy
## 2469 1245479 Private Room In a Modern Loft
## 2470 1245977 Charming Prewar on Prospect Park!
## 2471 1251566 SPACE FOR 8
## 2472 1251681 Entire House in Brooklyn for 6, super good price¡¡
## 2473 1251889 Private Room in Williamsburg!
## 2474 1252565 Simple Spacious Uptown Bedroom
## 2475 1252826 Three bedroom apartment, Manhattan
## 2476 1255828 Sunny Beach House type room on UWS
## 2477 1256536 Clean 2Bedroom-Ideal UpperEast Loc.
## 2478 1256768 Beautiful Park Slope apt w garden
## 2479 1258651 Chic Historic Harlem Brownstone
## 2480 1260727 Luxury 3 Bd 2Bth w/600 sqft deck
## 2481 1262053 Stylish Park Slope Townhouse
## 2482 1263964 Designer amazing room in NYC!!
## 2483 1264621 nice room in bedstuy N
## 2484 1264663 Prospect Park Apt With Terrace
## 2485 1264695 Classy Penthouse with Amazing View!
## 2486 1264920 BEAUTIFUL UPPER WEST SIDE SANCTUARY
## 2487 1266411 Cozy Brownstone Living in Brooklyn
## 2488 1267186 Private room for labor day weekend
## 2489 1267945 nice room in bedstuy I
## 2490 1267954 Cozy 1 Bedroom Brownstone In Clinton Hill!
## 2491 1270324 Clean & Sunny Clinton Hill/Bed room
## 2492 1271103 Lovely spacious 1 Bdrm in Ridgewood
## 2493 1271361 ABSOLUTELY GORGEOUS $10MILLION LOFT w/BASQUIAT
## 2494 1273533 1 Bedroom avail in BK 3BD w/ porch
## 2495 1275942 nice room in bedstuy H
## 2496 1276554 1 Guest Room in New Condo
## 2497 1276760 1bedroom apartment in Williamsburg
## 2498 1277955 Gorgeous Windsor Terrace home
## 2499 1278784 Private room minutes from midtown!
## 2500 1279234 Massive, sunny 1-br in Brooklyn
## 2501 1280188 The Original Williamsburg Loft!
## 2502 1281023 Your private bedroom in the Upper East Side!
## 2503 1281054 Casa de Chester Baby Kitty
## 2504 1281257 1BR LUXURY PENTHOUSE MODERN CONDO
## 2505 1283453 Adorable Williamsburg room!
## 2506 1284776 Modern Apartment in Brownstone Bkln
## 2507 1284789 Light-filled Brownstone Triplex with Roof Deck
## 2508 1286024 *Superhost* Modern One Bedroom Manhattan apt
## 2509 1290208 Live like a real New Yorker!
## 2510 1290336 Spacious & Stylish 2br-Prime Williamsburg Hot Spot
## 2511 1291020 One family house sublet August 1st to August 31
## 2512 1291245 ENORMOUS Artsy 2BR in trendy LES!
## 2513 1291261 Dream Apartment - Greenwich Village
## 2514 1291490 nice room in bedstuy M
## 2515 1291561 True West Village Experience-1 Bdrm
## 2516 1292428 Room in Great Loft - Fun/Convenient
## 2517 1294721 Skylight Apartment Williamsburg
## 2518 1294973 PRIVATE BEDROOM IN COMFY & CHIC UWS APT!
## 2519 1297171 Artists' Haven in Williamsburg
## 2520 1297663 Your West Village NYC 1 Bdm Apt
## 2521 1300097 Marcel the Shell with Shoes On or Off, Whatever
## 2522 1300216 1 Bdrm Apt 2 blocks to subway 15 mins to Midtown
## 2523 1300950 Great Room and Private Bathroom
## 2524 1301321 West Village Penthouse-terrace/view
## 2525 1302684 1 Bedroom, Near Subway, Wash Hts
## 2526 1303515 Greenwich Village 1BR Fantastic Apt
## 2527 1303850 Private spacious studio
## 2528 1304181 beautiful ROOM in a DREAM APARTMENT
## 2529 1304459 Sunny Williamsburg Artist's Loft
## 2530 1304952 Two Bedrooms and Private Bathroom
## 2531 1305265 Perfect House for the Whole Family
## 2532 1305346 Studio in the Heart of Soho
## 2533 1306749 Superstar Manhattan Apt - Harlem
## 2534 1306966 Beautiful 1BR: Heart of the Village
## 2535 1307095 2 Bedroom Apartment in the East Village
## 2536 1307723 A real home on the UWS.
## 2537 1308155 Deep House in Bed Stuy
## 2538 1308308 Renovated 2 Bedroom (Hells Kitchen) TIME SQUARE
## 2539 1309148 PROSPECT HEIGHTS LARGE PRIVATE ROOM
## 2540 1310672 BROWNSTONE BROOKLYN'S FINEST in NYC
## 2541 1312228 NYC - CLINTON HILL - FURNISHED ROOM
## 2542 1313340 Spacious Guest Room in Brownstone
## 2543 1313593 GORGEOUS SUNNY LOFT w/ 15 WINDOWS
## 2544 1313711 Less than a minute from the Metro
## 2545 1313768 Large, Quiet, Sunny 1 Bedroom Condo Williamsburg
## 2546 1316480 nice room in bedstuy K
## 2547 1316961 Huge Sunny Apt Hip/Family Area
## 2548 1317612 Sunny Rm #3, Air Conditioner, Park,Express Q train
## 2549 1320550 Nice cozy apartment by Central Park
## 2550 1322432 Modern, Steps to Subway - Sleeps 4
## 2551 1323349 Spacious Bright 2B Apt East Village
## 2552 1323801 Cozy, friendly, 3 min from subway!
## 2553 1324087 Lovely 1-bedroom-heart of Astoria
## 2554 1325432 Private Room in Woodside, Queens: Good Deal!
## 2555 1325472 Sunny, Huge, Quiet Room Doorman Bld
## 2556 1325473 Doorman Bldg, Sunny, Huge, Quiet Rm
## 2557 1325507 Garden duplx in beautiful brwnstne
## 2558 1325759 Gorgeous Apt in Prime Williamsburg
## 2559 1325911 Gramercy apartment
## 2560 1326514 Sunny Private Room in Brooklyn
## 2561 1326566 Peaceful Park Slope 2BR in 4BR dplx w/outdoor spce
## 2562 1327775 Luxury 1BR w/ Rooftop
## 2563 1327940 Huge Gorgeous Park View Apartment!
## 2564 1329559 Sunny master bedroom Room in LowerEastSide/Nolita
## 2565 1330056 Spacious Loft 5 min to Union Square
## 2566 1330753 Garden, Private Deck, Williamsburg apartment
## 2567 1330775 Large private live/work space; garden & parking
## 2568 1331231 Studio Plus, Hilton Grand Vacation
## 2569 1331960 ARTSY & CONVENIENT in Williamsburg.
## 2570 1332473 2 BED ROOM APT. IN A PRIVATE HOUSE
## 2571 1334633 Meatpacking District Large Loft
## 2572 1334793 Prime brownstone with lush backyard
## 2573 1335036 Charming 2 Bedroom Little Italy Apt
## 2574 1335510 Bright & cosy Williamsburg apt
## 2575 1335550 nice room in bedstuy J
## 2576 1336223 Safe, Sunny, Quiet Chelsea Apt has Washer/Dryer
## 2577 1336230 Safe,Sunny,SouthFacing Apt Near All
## 2578 1336390 Charming, Quiet, & Clean 1BR APT
## 2579 1336984 Chez Humphries
## 2580 1337148 Sunny Top Floor Uptown Apartment
## 2581 1338362 AMAZING 2BD COL CIRCLE/BRAND NEW ;)
## 2582 1340982 Steps from Central Park
## 2583 1342507 Brooklyn duplex 10 mins to U Square
## 2584 1342515 Furnished Room + Bath in Hamiliton Heights
## 2585 1343532 Room2 in a Good Vibe Apartment
## 2586 1346003 1 Bedroom Railroad in Williamsburg
## 2587 1347126 Bedroom for 2 in 1896 townhouse
## 2588 1347175 NYC from River dale's Perspective
## 2589 1347204 Beautiful Central Harlem sleeps 4
## 2590 1347478 Bright Bohemian master bedroom in Williamsburg
## 2591 1347847 3 bedroom duplex Brooklyn townhouse
## 2592 1348118 Sweet Deal*Harlem2bdrm Apt #1/Sleeps4
## 2593 1349187 Light filled Brooklyn apartment with skyline view
## 2594 1349237 Bright, Very Spacious, & Quiet Room in Manhattan
## 2595 1349658 A Comfortable Room in a Great Location, Manhattan
## 2596 1350055 Cozy room in Beautiful Williamsburg Appartment
## 2597 1351217 English Basement Studio Apartment / private entry
## 2598 1351427 Charming New 3br House+bkyard BRKLN
## 2599 1352560 XLG Studio Apt w/TONS of Amenities
## 2600 1352657 Spacious 1BR Midtown Manhattan w DM
## 2601 1354042 1BR East Village Duplex w/ Terrace
## 2602 1354250 Beautiful Authentic 1BR Apt with skylight near all
## 2603 1354415 Great Flat in Historic Brownstone
## 2604 1354775 Sunlit Noho Loft
## 2605 1354973 Gorgeous spacious. 2 subways close
## 2606 1356710 Sunny 1 Bdrm ❤️ Private Bath ❤️ No Cleaning Fee
## 2607 1357021 MIDTOWN EAST 1BR APARTMENT - NEW
## 2608 1358963 1 Bedroom in Sunny & Spacious Apt.
## 2609 1359438 Perfect in Park Slope: EZ 2 NYC
## 2610 1360781 LUXMaster Suite 24hrDrm WestVillage
## 2611 1360791 Renovated Big Private Room # 3
## 2612 1360932 Cozy apartment in NY for 3 weeks
## 2613 1361017 Vacation sublet in Brooklyn NY
## 2614 1361428 Private room w Patio in Nolita
## 2615 1363957 Charming WILLIAMSBURG 1 bdrm apt great location
## 2616 1365000 Brownstone - Garden level - 2 rooms
## 2617 1365028 Soho Loft. Authentic and Eccentric! 2 Bedroom.
## 2618 1367775 Furnished room with private bathroom
## 2619 1370154 Special Rate Luxury 2bd/2bth Apt W. Village
## 2620 1370405 Fresh, Simple Sleep in Brooklyn!
## 2621 1371957 NEEDS TO BE DEACTIVATED- NOT AVAILABLE
## 2622 1373456 Warm & Welcoming Private Room
## 2623 1374457 Bedroom in Williamsburg Brooklyn
## 2624 1377134 Room in lovely E.Village triplex
## 2625 1377320 Classic and Comfortable UWS PreWar
## 2626 1377820 Great Studio in Chelsea, New York
## 2627 1378165 Sunny Brooklyn Artists' Enclave! *huge room!*
## 2628 1380326 Positive Cozy Room!
## 2629 1382158 1 double room in modern apt in heart of soho
## 2630 1382607 Family-Friendly 3 BR in Cobble Hill
## 2631 1386742 Columbus Circle/Central Park/Hells Kitchen
## 2632 1390532 Amazing Designer Loft in BK Factory
## 2633 1391024 Bright Brooklyn Room in Shared Apt!
## 2634 1391683 Huge Sunny BR Washington Heights 1-4 guests
## 2635 1392144 3-Bed Brownstone on Beautiful Block
## 2636 1392330 Verna's Brownstone Suite (no stove, no gatherings)
## 2637 1392673 Spacious Factory Converted Loft
## 2638 1396458 Stylish 3 Bedrm, perfect for groups & 1/Pr'spct PK
## 2639 1397705 Unique 3BR Triplex in Brooklyn
## 2640 1398234 Elegant SOHO One Bedroom
## 2641 1398326 Charming, light-filled 1-bedroom
## 2642 1398609 Perfect home away from home!
## 2643 1399187 Fabulous UWS Apartment
## 2644 1399273 NYC - furnished room - Greenpoint
## 2645 1399352 A Nest in Brooklyn
## 2646 1399448 ★HUGE beautiful E. Villager 2nd Av★
## 2647 1401826 As Seen In NY Magazine! Chic & Stylish!
## 2648 1402084 Waterfront Red Hook, Brooklyn
## 2649 1403129 Penthouse Designer Loft Brooklyn
## 2650 1403466 Brooklyn Retreat
## 2651 1403635 Sunny & large W. Harlem private 1 bedroom.
## 2652 1403870 Sunny Soho Apartment with Great Views
## 2653 1404355 Jazz it Up in Brooklyn
## 2654 1404510 A charming Space in Brooklyn
## 2655 1404828 Bohemian Paradise in Industrial BK
## 2656 1407364 BROOKLYN'S FAVORITE BROWNSTONE in HIPSTER BED-STUY
## 2657 1408406 Beautiful, spacious apartment - with a cute cat!
## 2658 1408914 Modern, Art Deco Chelsea Studio
## 2659 1409947 SOHO Sanctuary Privately Owned
## 2660 1410197 Your Furnished Private Apartment
## 2661 1411583 GREAT 1BR apt 162st at Amsterdam av
## 2662 1411811 Charming Parlor Apt off Bleecker
## 2663 1415738 Private bedroom and bathroom in Brooklyn
## 2664 1416631 Family-Friendly Artist Loft in West Village
## 2665 1420295 Sunny, Bright, Vibrant Apartment in Williamsburg!
## 2666 1420559 Great 1BR apartment in a convenient location
## 2667 1421933 Room in Chelsea New York
## 2668 1423112 Private Room in Brooklyn, NY
## 2669 1423175 Bright open space in Sunset Park
## 2670 1425801 Perfectly situated williamsburg apt
## 2671 1426004 Charming private room & sunny deck!
## 2672 1426529 Comfy room in vibrant East Village
## 2673 1427084 Private Room Private Restroom tons Natural Light
## 2674 1427401 Fully furnished private apartment..
## 2675 1427518 Spacious, amenity-filled 1 BDR Williamsburg Apt
## 2676 1428154 Central, Peaceful Semi-Private Room
## 2677 1428359 Comfy Park Slope 1 BR Apt Near Prospect Park
## 2678 1428371 Great Room in Astoria - New York
## 2679 1428648 Bright Rm avail in heart of Village
## 2680 1428844 Gorgeous sky-lit 2BR
## 2681 1430650 Columbus Circle Comfort, minutes from Times Square
## 2682 1431246 Private bedroom + private bathroom
## 2683 1433897 The Lavender Suite on Greene
## 2684 1434010 Brooklyn College Manor
## 2685 1436810 W80's Renovated with Chef's Kitchen
## 2686 1437044 Gorgeous West Village Hidden Gem
## 2687 1438369 True Two Bedroom Apartment in Lower Manhattan
## 2688 1438870 Spacious very High ceiling place !
## 2689 1439162 Cozy & Private 1 Bedroom Garden Level Apartment
## 2690 1440363 Artsy Harlem Guest Space
## 2691 1442450 Saratoga Park Suite
## 2692 1442495 Spacious Duplex in Fun & Hip Area
## 2693 1444400 Large Room In Newly Renovated Hell's Kitchen Apt.
## 2694 1444924 New Law in New York | NO rentals under 30 days..
## 2695 1445250 1Bedroom, Seconds from L train
## 2696 1445977 Spacious Loft in East Village
## 2697 1446009 Room in Colourful Williamsburg Apartment
## 2698 1446483 Cozy 1BD in Vibrant East Village
## 2699 1448703 Beautiful 1 Bedroom in Nolita/Soho
## 2700 1449263 Beautiful Brooklyn Brownstone Apt
## 2701 1449546 Cozy Studio in Flatbush
## 2702 1452786 A beautiful, and quiet place to stay in NYC!!!
## 2703 1453049 Studio Apt in the heart of Bushwick
## 2704 1455804 One Bedroom Apt Near Central Park
## 2705 1456142 Modern, cozy artist's escape in WV
## 2706 1456352 Monthly Rental or more than 30 days for 6 people
## 2707 1457505 sunny beautiful studio apartment
## 2708 1458987 Room in My Apt. Rego Park Queens NY
## 2709 1460017 Lovely Factory Loft in Greenpoint!
## 2710 1461721 3B. Private Rm in Guesthouse Manhattan
## 2711 1461814 Zen Supersized Master Suite
## 2712 1461873 Cozy, quiet single room in Brooklyn brownstone
## 2713 1461965 Private Bedroom WITH a Living room!
## 2714 1462341 Great Apt/Roof in Hells Kitchen
## 2715 1465446 Historic Townhouse with Private Backyard
## 2716 1466081 JFK Jupiter Suites w/ Parking
## 2717 1466534 Jupiter Suites- Rm #1 (JFK)
## 2718 1466552 ALL YOU NEED!! HK/TIME SQ./THEATER (READ REVIEWS)
## 2719 1466688 Bright Apartment In Williamsburg
## 2720 1467106 Bedford Stuyvesant Urban Hang Suite
## 2721 1467238 Charming Prime Williamsburg 2 bedroom Entire home
## 2722 1467392 VERY BIG, BEDROOM/ PRIVATE BATHROOM.
## 2723 1467618 1 min to Bedford Ave (L) Station
## 2724 1469895 Bright and Spacious West Village Studio
## 2725 1469955 Luxury 1 Bedroom Upper West
## 2726 1470069 Sunny Apartment in Clinton Hill
## 2727 1471244 Cozy w/amazing city views by PS1
## 2728 1471952 Jupiter Suites- Rm #2- (JFK)
## 2729 1472002 SHARED STUDIO AT MANHATTAN'S HEART BY C. PARK
## 2730 1472009 Jupiter Suites, Rm #3- (JFK)
## 2731 1474752 Dope Williamsburg Apartment
## 2732 1474980 Be my Guest! Cozy East Village apt!
## 2733 1475084 Fun LES 1br, close to everything!
## 2734 1475427 Cozy Twin for the NYC Win! [Gay/LGBT Friendly]
## 2735 1475631 BLYN BROWNSTONE CORZY CORNER in NYC
## 2736 1475661 Gorgeous Apt. 20 min to Manhattan!
## 2737 1476238 Spacious Midtown 1BR Apt - 4.5 Stars/21 Reviews
## 2738 1476484 Spacious Sunny SoHo-Awesome Locale!
## 2739 1478315 1 bedroom in heart of Fort Greene
## 2740 1478946 Prime Chelsea Location,Washer/Dryer
## 2741 1479113 Spacious, quiet room with private full bathroom.
## 2742 1479283 Great Chelsea Location, Couch/2nd bed, Free WiFi
## 2743 1479349 Sunny Private Room in Williamsburg
## 2744 1479731 Master Bedroom in Modern Loft Apt.
## 2745 1480002 Huge rm in 1500sq ft loft w/lots
## 2746 1481907 Charming BK Townhouse Home by Highland Park!
## 2747 1483688 Peaceful Studio in Fort Greene
## 2748 1484031 Private room in cozy Harlem, NY Apt
## 2749 1484310 1 bed aprt best location in NewYork
## 2750 1486099 All New Bohemian Chic 1BR Loft
## 2751 1487222 2BR Sunlight & Secret Garden Apartment
## 2752 1489426 New york Multi-unit building
## 2753 1490223 Private Bed & Bath in a townhouse:Charm-Calm-Cozy-
## 2754 1491991 Charming Brwnstn Duplex sleeps 5
## 2755 1492286 West Village/SoHo Prvt Rm
## 2756 1492856 small room in bedstuy P
## 2757 1494527 Huge Loft In South Williamsburg
## 2758 1496319 Private Huge 2br Williamsburg Artist Apartment!
## 2759 1497024 New York City Historical Brownstone Ground Floor
## 2760 1499635 Gorgeous apartment by Grand Central
## 2761 1503618 Private, quiet Antique room on first floor duplex
## 2762 1503670 Best location in Brooklyn!
## 2763 1506985 Garden Rowhouse Duplex-2 bd/3 bth
## 2764 1507845 Rare large modern garden studio, comfy; location!
## 2765 1511216 Private room in 2 bedroom apartment
## 2766 1511303 Private fits 3 ppl. Prospect Park
## 2767 1511534 Huge Room with View in Bushwick!
## 2768 1512006 Designer Space For Families: 2 Bed | 2 Bath
## 2769 1514939 Bright Studio Apt on Prospect Park
## 2770 1515026 Garden Apartment, Ft. Greene
## 2771 1515611 AMAZING, HUGE NEW YORK LOFT!
## 2772 1515659 Relax at our duplex + backyard
## 2773 1515692 Beautiful Lower East Side Penthouse
## 2774 1516120 Art Dealer's One of a Kind Williamsburg Aptartment
## 2775 1517917 Elegant modern 1-bedroom in Bed-Stuy
## 2776 1519957 BedStuy with a View
## 2777 1519994 McSimon's | Queen Room | 10 mins from JFK
## 2778 1520806 HUGE 2BR+1BA Apt For Group Only 15 Min To NYCity
## 2779 1521318 modern, convenient safe Midwood, Brooklyn
## 2780 1521335 Private Room in Brooklyn Brownstone
## 2781 1523556 Simply brooklyn. Bedroom with office off L train.
## 2782 1524017 CHELSEA BROWNSTONE 1BRM GARDEN APT
## 2783 1524302 Huge 1 Bedroom Loft at Habitat 101!
## 2784 1524562 Stuyvesant Heights Townhouse
## 2785 1524711 Sunny 1-Bedroom Apartment: Astoria
## 2786 1524895 NYC apartment! Bright and spacious!
## 2787 1525602 Perfect Temporary Brooklyn Home
## 2788 1526741 Comfy Couch in a nice and safe apt!!
## 2789 1530386 A Lovely 2br in Chelsea
## 2790 1530660 Boutique Williamsburg Duplex Apartment
## 2791 1530919 2bd in heart of Soho/Little Italy!
## 2792 1533652 Charming Central Park Studio: Summer Park Strolls!
## 2793 1533807 Sunny Spacious Dwelling
## 2794 1534212 Great studio with 2 rooms and kitchen
## 2795 1534782 Cozy
## 2796 1535607 EV, Hippest East Village
## 2797 1538077 New Listing! Terrific Price.
## 2798 1542279 nice room in bedstuy L
## 2799 1546518 Sunny, pretty Park Slope 3+ bed apt
## 2800 1546678 One Bedroom in Astoria NY
## 2801 1546945 (1) CLEAN HOME AWAY FROM HOME!
## 2802 1549413 Beautiful Studio in Heart of Harlem
## 2803 1551044 Nexus of the Universe!
## 2804 1552242 Single family home 2 bedrooms 2 bathrooms
## 2805 1555919 East Village New Luxury Bldg - 1BR
## 2806 1559435 Gorgeous & Spacious Full 1 BR Apt
## 2807 1559912 Quiet Large 1BR Near Columbia
## 2808 1560339 Entire Modern Studio Apartment/Prime Location
## 2809 1560408 Airy Designer Loft in Williamsburg
## 2810 1564553 Cozy Room in Best Downtown NYC Location
## 2811 1566326 Studio in South Williamsburg
## 2812 1567225 NYC LARGE 3 BR West Side Manhattan, New York City
## 2813 1569396 Ditmas Park Carriage House Loft
## 2814 1570204 SPECIAL OFFER* 1BDR IN EAST VILLAGE
## 2815 1571455 NEW YORK, Queens " WELCOME "
## 2816 1572815 Private room - Heart of East Village
## 2817 1573068 COZY STUDIO
## 2818 1576883 Entire Floor of Brooklyn Brownstone
## 2819 1578103 Private room in Harlem gem with fab New Yorkers!
## 2820 1578721 Huge, Sunny Greenpoint Flat
## 2821 1578776 Nice private room in Astoria
## 2822 1581579 ★★★★★- Lux Astoria |❤of NYC| Near subway/Manhattan
## 2823 1582540 1-bedroom APT SoHo / NoLITa
## 2824 1583111 Modern Design in Sunny Duplex
## 2825 1583335 West Village 2 br 850 sf - right by the Hudson!
## 2826 1583653 Private room and bathroom
## 2827 1584060 Safe upscale room, Flatbush, Brooklyn, near subway
## 2828 1586454 Private Room With Patio In Queens
## 2829 1586576 Private Bedroom in QUEENS
## 2830 1586641 SALE- SUNNY MASTER BEDROOM NEAR MANHATTAN
## 2831 1586773 Beautiful Brownstone in West Harlem
## 2832 1586935 Luxury Gramercy Lg 1Bd w Balcony
## 2833 1588221 Large 2 BR Loft Downtown NY
## 2834 1589248 Hip Apartment in Williamsburg
## 2835 1589715 Private: The Brass Room
## 2836 1591811 Sunlit apartment in Williamsburg
## 2837 1593444 Designer Home in Village Center
## 2838 1596314 Gorgeous charming Manhattan 1bdrm Alexa Smart Home
## 2839 1598012 Close to the city, Astoria
## 2840 1598033 Staten Island Apartment - 2nd floor
## 2841 1598328 Room in heart of the West Village!
## 2842 1598785 SUNNY STUDIO MIDTOWN EAST W/DOORMAN
## 2843 1598863 1Br apt + backyard -east village
## 2844 1600917 Jupiter Suites, Rm #4 w/Bthrm-(JFK)
## 2845 1601955 Cozy, QUIET Dream Home in SEAPORT
## 2846 1604488 Private room with stunning view
## 2847 1604489 Spacious and modern Chelsea loft
## 2848 1606312 Williamsburg 2BR 2BA Hotel Condo
## 2849 1608220 The Heart of Bushwick!
## 2850 1609672 CENTRAL PARK/ TIMES SQUARE
## 2851 1613110 Sunny Studio Loft @ Habitat 101
## 2852 1614817 PRIME apartment in East Village!
## 2853 1614869 Cute, quirky Park Slope Jr 1 bdroom
## 2854 1614964 Charming Room in Astoria!!
## 2855 1615764
## 2856 1616540 Modern Clean 1 Bedroom apt in Clinton Hill
## 2857 1617443 Great Artistic Studio in Historic Building
## 2858 1617488 Rooftop Oasis in Brooklyn for Shoots & Gigs
## 2859 1619695 Only 10 mins to CENTRAL PARK! :)
## 2860 1620225 Charming studio in Williamsburg
## 2861 1620248 Large furnished 2 bedrooms- - 30 days Minimum
## 2862 1621235 An artist place in Bedstuy
## 2863 1623431 Enormous Chrysler-View Bedroom/Bath
## 2864 1624665 Bushwick Biodome Loft, Fun & Unique, Great View!
## 2865 1628156 A Tree Grows in Brooklyn
## 2866 1628564 Stylish Room on Express Line to Midtown
## 2867 1630572 Private Room in Designer's NYC Apt
## 2868 1631845 1 bedroom apartment in NYC
## 2869 1633313 Bohemian W'Burg Duplex
## 2870 1633420 NYC Harlem cozy private room
## 2871 1633924 Smart Family 1BD Retreat in Bedstuy
## 2872 1635088 Cosy studio in great location at UES
## 2873 1635672 Cute studio apt in West Village
## 2874 1640995 One bedroom apartment - UES
## 2875 1644133 Large Spacious Apt For Sublet
## 2876 1644146 Quaint, beautiful studio Brooklyn
## 2877 1645181 Lovely Brownstone-- Close to Subway
## 2878 1645196 Park Slope 1BR with Private Outdoor Space
## 2879 1645667 Truly A Sweet Home away from Home.
## 2880 1645772 Private Entrance/Bath, 2 story Apt.
## 2881 1645915 Cozy 1.5BD in Parkslope Brooklyn
## 2882 1646432 Beautiful Home Away From Home!
## 2883 1646838 1 BR apt in heart of the Village
## 2884 1646910 Bright, Cheerful Brooklyn Apartment
## 2885 1649957 GRACIOUS HARLEM 1 BEDROOM
## 2886 1650470 Spacious room in Bushwick L & JMZ !
## 2887 1651595 Cozy Apartment, 30 min train ride to Times Square!
## 2888 1652236 Amazing Spacious Room
## 2889 1652996 Large Charming 1 BR + Den in Brownstone Apt
## 2890 1654551 West Village: Cozy, Quiet 1BR Apt
## 2891 1654561 Cozy room in bed-stuy
## 2892 1654713 Brooklyn Wildlife Loft rm 2
## 2893 1654738 GREAT BRAND NEW 1 BED! TIMES SQ!!!!
## 2894 1654929 COZY GARDEN APT IN BKLYN BROWNSTONE
## 2895 1655550 Gorgeous NewModern_BestLocation!NYC
## 2896 1655824 Art House Suite
## 2897 1655880 4BD, 2 Bath Apt Flatiron on 6th Ave
## 2898 1656254 Habitat 101. Amazing 1br Loft Apartment
## 2899 1656539 West Village townhouse private suite incl bath
## 2900 1656585 Sunny 1bd - Near SOHO Washington SQ
## 2901 1656621 Classic Brownstone private suite
## 2902 1657110 Luxury & Charm. Steps from Christopher Park!
## 2903 1658703 Close to trains! Special long-term rates!!
## 2904 1664209 2000 SQ FT Spacious Artist Loft in SOHO
## 2905 1664614 Great Views on Upper West Side
## 2906 1664716 apartment in heart of East Village
## 2907 1665498 3rd FL, Private Suite w Own Bath & Study Area
## 2908 1668328 Quiet Williamsburg apartment
## 2909 1669149 Beautiful Modern Midtown Apartment
## 2910 1669250 Large Studio w/ Entertainment Room!
## 2911 1670517 Union Square area 1BD Apartment
## 2912 1672860 New**Beauty**W50's_Luxury&BALCONY!!
## 2913 1672977 NEW_2BR_PrivateRoof&CityView_Beauty
## 2914 1673040 NEW_Duplex_BreathtakingViews_Beauty
## 2915 1673338 Comfortable Room + Kitty + Food
## 2916 1677887 Charming LG Bedroom by Park & Train
## 2917 1678809 Sunny Spacious Retro 1 Bedroom
## 2918 1682258 Big Studio Apt Convenient Gramercy
## 2919 1682282 Private room in MANHATTAN NYC
## 2920 1682958 Beautiful Cozy Room Great Price!
## 2921 1683227 Clean room near Columbia Univ
## 2922 1683968 Landmark Loft in Williamsburg Brooklyn 1 month min
## 2923 1684053 Arverne By The Bay Private Room & Bathroom
## 2924 1687108 Private, Clean and Comfortable NY
## 2925 1688711 Luxury Room in Landmark House
## 2926 1688914 Strivers Row Sanctuary in Harlem - Monthly
## 2927 1690764 One very large room two beds
## 2928 1691188 4 bedroom 2Bath apt Maspeth Queens
## 2929 1691798 Beautiful apt in the heart of LES
## 2930 1692823 ON A BUDGET COZY IN BROOKLYN In NYC
## 2931 1693028 Private Room with adjoining bathroom
## 2932 1693171 BLYN SPECIAL BUDGET PRICE IN NYC
## 2933 1693524 1 rm @ 3BR loft williamsburg room 3
## 2934 1695731 1BR Apt in Murray Hill/Midtown
## 2935 1696050 Spacious Room, Central Location, Historic block.
## 2936 1696381 Charming Room Near Central Park
## 2937 1697047 Charming Private Room with a View
## 2938 1698334 Williamsburg off Bedford/no extra $ for 2ppl!
## 2939 1699934 SAFE BUDGET IN Brooklyn NYC
## 2940 1700471 CHARM Rm HAMILTON HEIGHTS Harlem
## 2941 1701981 Modern, Light-Filled Apt in Chelsea/Meatpacking
## 2942 1702032 The Top-Notch Top-Floor
## 2943 1702533 BROOKLYN FAVORITE VACATION HOME 2
## 2944 1702581 PRIVATE. ROOM - Midtown/Central Park
## 2945 1702781 Nice and quiet
## 2946 1703506 Gorgeous, Family-Friendly, NYC Apt!
## 2947 1703834 Your Own Private Room To Sleep In! BEAUTIFUL!
## 2948 1704210 Gorgeous 1-2 bedroom(Prospect park)
## 2949 1704560 Beautiful/Spacious 1 Bedroom in LES
## 2950 1704798 Perfect cozy PRIVATE room!!
## 2951 1706997 Cozy 1BD next to Central Park
## 2952 1707422 VERY UNIQUE TOWNHOUSE in GREENPOINT, BROOKLYN
## 2953 1707823 Private Room in the Heart of Greenpoint
## 2954 1708771 Comfort; Next to "A" express subway
## 2955 1712462 Cozy Private Room in Brooklyn NY
## 2956 1712660 Cosy Room in Great Location -W'burg
## 2957 1713409 Sunny 1BR + Outdoor space [L line]
## 2958 1716441 Large sunny room queen bed &balcony
## 2959 1716640 One Stop to TimesSQ Vacation Apt
## 2960 1717058 Top floor 1 bedroom soho/nolita
## 2961 1717138 Cozy private Basement studio,15mins from the city
## 2962 1717149 Corner High Rise Apartment - City Views
## 2963 1717226 BIG BROOKLYN HOUSE TO LOVE
## 2964 1721115 Financial District Oasis Room-1 Queen Bed
## 2965 1725295 Midtwn E BEST LOCATION Priv Twin Rm 1 Loving Cat
## 2966 1727923 Large private 1BR with backyard - Williamsburg
## 2967 1728339 Large Room in Landmark House
## 2968 1728437 Cozy Room in Landmark House
## 2969 1728625 New Williamsburg 1B With Backyard
## 2970 1728938 Sunny Room/private bath/ Brownstone
## 2971 1729286 Sunny, Large (Queen Bed) Private room in 2Bedroom
## 2972 1730937 Private room in Midtown East
## 2973 1731245 Sunny, Comfortable Space
## 2974 1731365 Duplex apartment with garden
## 2975 1731969 Beautiful UES residence minutes from everything
## 2976 1732498 Hip Two Story BK Apt w/Private Yard
## 2977 1733054 Williamsburg Brooklyn, Parkside Penthouse NYC View
## 2978 1733157 Private Family Home 2BR mins to Midtown Manhattan
## 2979 1734724 Williamsburg Luxury- 30 days +
## 2980 1735478 Relaxing, serene room in NYC Apt
## 2981 1735804 Lovely Suite in Historic Brownstone near Subway
## 2982 1736064 Sunny 1BR Overlooking Prospect Park
## 2983 1738513 Sunny Floral Artist Apartment Chinatown LES
## 2984 1739847 Welcome to a beautiful Quiet Bronx.
## 2985 1740311 LARGE PRIVATE BED + BATH, LES
## 2986 1741622 Cozy NY-style 1BDRM Apartment UES.
## 2987 1741745 Private room in East Harlem
## 2988 1742471 View of Empire State Building!
## 2989 1742610 Studio in the Upper East Side
## 2990 1742654 High Floor apt.near Columbus Circle
## 2991 1743116 Cozy Room in Astoria
## 2992 1743379 Spacious Historic Williamsburg 2/1.5 Townhouse
## 2993 1744216 Prime Williamsburg Large bedroom for 1or2 people
## 2994 1744941 Charming One Bedroom
## 2995 1745358 Spacious and Chic Times Square 1 Bedroom
## 2996 1745430 Bohemian 2BR DuplexLoft in Brooklyn
## 2997 1745658 1 Bedroom in Greenwich Village
## 2998 1746726 Chelsea NYC luxury 2 bed/2 bath, garden apt
## 2999 1747405 Spacious, Cozy NYC Apartment - 1 Minute to Subway!
## 3000 1747833 Affordable Clean Private Room NYC
## 3001 1748189 UPPER EAST SIDE 1BR APT - CENTRAL
## 3002 1750248 Priv room in 3 bdrm apt - Room "A"
## 3003 1750527 Modern, Sunny Duplex PENTHOUSE w/ BALCONY
## 3004 1750679 THE LINCOLN PARLOR
## 3005 1752112 NYC Central Park family apt - 3bdr
## 3006 1752206 Elegant 1b Near Everything
## 3007 1753671 Big quiet Sunny room in Upper East Side
## 3008 1755484 Museum Mile Central Pk- Madison Ave
## 3009 1755844 Brooklyn Stunning Event Space.
## 3010 1758391 Sunny Room, Only 1 Block to Subway!
## 3011 1759154 BEST Bushwick 1 Bedroom - 15 min to Manhattan
## 3012 1759462 Modern/Renovated/Best EV Location!!
## 3013 1759526 Lovely Room in Awesome Apartment - Fun/Convenient
## 3014 1762513 2bd/2bth, drmn, 1 block from subway in LIC
## 3015 1762852 Charming and Cozy Bedroom in Artists Colony
## 3016 1763209 10mins to Manhattan, 59th St, 17mins Times Square.
## 3017 1763333 Cozy 1 BR Apt - Sunnyside, Queens
## 3018 1763736 Charming Upper West Side 1 Bedroom
## 3019 1763956 Nice cozy bedroom with cool views in Hell's kit..!
## 3020 1766846 Newly Renovated East Village Private Guest Studio
## 3021 1767037 Small Cozy Room Wifi & AC near JFK
## 3022 1771965 Fully furnished 2 Bedrooms floor-through apartment
## 3023 1776732 2000 sqf Duplex in Townhouse
## 3024 1777007 Space For guest
## 3025 1777197 ( Hostal ) 1 full size Mattress (Top Bunk)
## 3026 1777674 Charming space in lively neighborhood.
## 3027 1778294 Sweet Apartment on Quiet Block
## 3028 1780748 Sunny 1 bedroom In The Heart of NYC
## 3029 1781052 CELEBRATE NEW YEAR'S EVE IN NYC
## 3030 1781697 Beautiful 1 bdrm in 2 bdrm apt
## 3031 1781786 Charming 1BR
## 3032 1782079 LOFT Private Room - MOVIE THEATER/GYM/LAUNDRY/ROOF
## 3033 1782437 1800sf Urban Goddess Brooklyn Loft
## 3034 1782667 Bushwick Artist Loft - Cozy Room
## 3035 1782872 Suite Spot in Tribeca
## 3036 1785141 Entire 1 Bedroom in Williamsburg
## 3037 1785187 Classic Cool Comfortable LES
## 3038 1785942 Private, Cozy Bedroom/ Barclay Ctr
## 3039 1786408 A quite nice bedroom in Greenpoint
## 3040 1787771 CHIC NEW YORK OASIS WITH ROOF DECK!
## 3041 1788989 Sunny and charming Soho 1 bedroom
## 3042 1789715 2 BR Apt in Luxury Building - UES
## 3043 1791105 Harlem Oasis
## 3044 1793091 Private Studio Museum Block UWS
## 3045 1793411 Union Square/East Village Apartment
## 3046 1794250 Large, bright Williamsburg room
## 3047 1796722 Effortlessly Chic WILLIAMSBURG BK
## 3048 1797025 Charming Spacious 1 Bdrm Apt
## 3049 1798210 NYC Super Cool East Village 1 BD
## 3050 1798271 Spacious center hall colonial
## 3051 1798500 DOMINIQUE'S NY*Wanderlust room/Metro/Bronx Zoo/Gdn
## 3052 1801036 Private room with sleeping loft
## 3053 1801130 Perfect Brooklyn Stay, Apt for 4
## 3054 1802584 YOUR PRIVATE COZY 1Br + 15min from Manhattan
## 3055 1802838 Industrial Modern 1 Bedroom - Prime Williamsburg
## 3056 1803165 Huuuge Sunny Central Park REAL 2 bedroom 1.5 baths
## 3057 1803279 Near Subway Sunny Spacious Room in NYC
## 3058 1805150 nice room in bedstuy B
## 3059 1805261 Flat Iron 2BD Beautiful Apt
## 3060 1806138 Brooklyn Heights One Bedroom Loft
## 3061 1806378 Mayor's Mansion - Fort Greene
## 3062 1806651 Bright and Airy Brooklyn Loft
## 3063 1807106 Stunning Limestone 1 Bdrm Flat
## 3064 1807757 SUNNY,SUPER CLEAN WEST VILLAGE APT
## 3065 1808497 Queen size room in Brooklyn
## 3066 1808550 Invitation to travelers
## 3067 1809547 Priv room in 3 bdrm apt - Room "B"
## 3068 1810640 R & R In Harlem
## 3069 1811446 Private Room
## 3070 1812111 Spacious Parkside View Bedroom
## 3071 1813681 East Williamsburg Clean Apartment
## 3072 1813829 Enjoy Harlem Renassiance Sunny Room
## 3073 1814010 Large, Private 1BR in Noho/Nolita/Soho
## 3074 1814279 Urban Jungle in Bedford Stuyvesant
## 3075 1815211 :: Spacious 1bedroom, great loca ::
## 3076 1815505 Peaceful Oasis. 25 mins. Manhattan
## 3077 1817510 Skylight BR in Gorgeous Rooftop Apt
## 3078 1817905 Amazing views in Williamsburg Condo
## 3079 1818411 HUGE 2bdrm LOFT in NOHO/East Vill!
## 3080 1818420 Budget Friendly & Spacious
## 3081 1818820 Urban Cottage in Williamsburg BK
## 3082 1819623 Private room in sunny Bedstuy apartment
## 3083 1820858 Large Comfortable Studio in Chelsea
## 3084 1820931 Gorgeous large 1 bedroom apt for March- April.
## 3085 1821541 Large 2BR apartment East Village
## 3086 1823141 Large 1 BR apartment in the LES!
## 3087 1824808 LOCATION LOCATION LOCATION Abigail
## 3088 1825949 Lovely Bedroom - Bed Stuy, Brooklyn
## 3089 1826701 Just like home & more in Rm #2
## 3090 1827525 Huge Room with Private Bathroom
## 3091 1827723 2 bdr NYC duplex w balcony
## 3092 1827962 Bright & cosy 1 bedroom apartment
## 3093 1828063 ••BEST Manhattan Downtown Location!!••
## 3094 1830244 Cool and spacious room-Approx 150 yard from LTrain
## 3095 1831227 Brownstone Penthouse Apartment
## 3096 1832120 Heart of Williamsburg
## 3097 1834738 Luxury Contemporary Central Home
## 3098 1835367 Washer, Marble Bath, Yard near Subways, High Line
## 3099 1836381 Bushwick / Bed Sty Retreat
## 3100 1839231 Great Apt-Heart of East Village!
## 3101 1839341 Modern Waterfront 2Bed Williamsburg
## 3102 1839818 1B in NYC - East Village, Manhattan
## 3103 1841356 Cozy spacious 1 bed in Murray Hill
## 3104 1842739 Large Eco bedroom on the River
## 3105 1843034 SPECIAL NEW YEAR'S LUXURIOUS MANHATTAN APT
## 3106 1843108 HappyCozy GuestSuite w/ Great Energy close to JFK
## 3107 1843674 Self contained ground level apt
## 3108 1843955 Spacious Midtown Manhattan room
## 3109 1844088 Renovated Studio Midtown East
## 3110 1844705 Lux Doorman by 11 trains
## 3111 1844792 Clean Cute and Cozy Harlem Apt
## 3112 1844847 Serene, Authentic Artist's Loft
## 3113 1846100 Cosy Brooklyn NYC One Bedroom in Garden Level
## 3114 1846528 East Village - 180º City View & Private Balcony
## 3115 1846580 Park Slope Bedroom in Eccentric New York Apartment
## 3116 1847096 Beautiful 1BR in East Village!
## 3117 1847261 AUTHENTIC TRIBECA LOFT NEAR SOHO
## 3118 1847389 Beautiful BK 1 Block From Subway
## 3119 1847434 Beautiful warm duplex apartment
## 3120 1850695 Great Manhattan apartment
## 3121 1851767 Luxurious Brownstone Duplex w Outdoor Space
## 3122 1851926 Studio in the Family Brownstone
## 3123 1853765 Pre-War - Subway,Park's & Museum's
## 3124 1855846 Unshared Apt Cozy One Bedroom
## 3125 1856027 Hip, Brick East Village Apartment
## 3126 1856261 Private room in Center of Manhattan
## 3127 1856627 Labor Day in Brooklyn Room Stay
## 3128 1856803 1BR Priv. East Village Apt Sleeps 4
## 3129 1856914 Luxury Apartment a walk to the park
## 3130 1859901 Prime East Village Spacious 1 BED
## 3131 1860838 Affordable Private Room in NYC!
## 3132 1861281 Carol
## 3133 1861493 1 BR Penthouse with Private Terrace
## 3134 1863930 2nd@THROOP MANSION
## 3135 1864061 2 Br Condo: Elegant, Amazing Views!
## 3136 1864757 3+ Bedroom Steps to Park Avenue
## 3137 1865336 Private bedroom in awesome loft apt
## 3138 1865884 Harlem 1BR - 3 blocks to subway!
## 3139 1866051 1 BR in Luxury Chelsea Doorman Bldg
## 3140 1869202 Cozy & Sunny central Manhattan APT!
## 3141 1869432 West Village/SOHO Pretty Apartment
## 3142 1869467 Carroll Gardens Brownstone Flat
## 3143 1869685 Cozy apartment available!
## 3144 1870228 Long Island City Home 1.!
## 3145 1871261 Big room only 90. Great location.
## 3146 1871311 Times Square Modern Apartment
## 3147 1872838 Clean & Cozy 1BD
## 3148 1873531 Entire Apartment in Nolita/LES
## 3149 1876811 Sweet Union Square/ Gramercy Studio
## 3150 1876969 Penthouse in Bedford Stuyvesant
## 3151 1877255 PRIVATE Room, located on Central MANHATTAN***
## 3152 1878642 New York City, Manhattan Modern Apartment
## 3153 1878692 Andrea's bohemian pied-a-terre
## 3154 1878965 Gorgeous 2BR Flex Loft w/NYC views
## 3155 1880539 Room in spacious charming loft
## 3156 1881556 Private, Spacious Garden Apartment
## 3157 1881586 Spacious, Sunny, 1br in Midtown East with doorman
## 3158 1881801 Gorgeous 1.5 Br - 1 block to Subway-9 min to NYC!
## 3159 1881846 Cozy sunny room in the heart of the city
## 3160 1884398 Art-filled 1BR on best block in WV
## 3161 1885385 Large Sunny Room
## 3162 1885714 Nice Bedroom in Central Bushwick!
## 3163 1885826 LOFT-CentralPrk/TimeSq/TheaterDist1
## 3164 1886240 June 30 Th to August 31 st
## 3165 1886294 quitissential brooklyn loft
## 3166 1886978 Sunny & Budget Friendly
## 3167 1887291 Private, Peaceful Times Square 1BR
## 3168 1887489 Gracious Brooklyn Limestone
## 3169 1887874 Big, bright, Williamsburg bedroom
## 3170 1888006 14 Min 2Union Sq, Manhattan with Private Entrance
## 3171 1890851 Stylish,Sunny, spacious luxury loft
## 3172 1891017 Awesome Huge Studio - NYC Center
## 3173 1891118 Large Studio apartment
## 3174 1891274 Clinton Hill 1BR in charming 2BR
## 3175 1891798 The Spencer
## 3176 1892319 Private BR in Chelsea (women or couples only)
## 3177 1893225 Modern, spacious 2 BR, 2 Bath - BK
## 3178 1895196 Apt near Museum Mile
## 3179 1895457 Greenpoint Studio w/ 2 cats
## 3180 1896296 Modern Industrial 1br Loft w/City View
## 3181 1897001 GIANT! Perfect for families, in the center of NYC
## 3182 1897447 Large Garden Apartment
## 3183 1898110 Charming one bedroom in brownstone
## 3184 1899076 14 min to Union Square, Manhattan-Sunny Modern Rm
## 3185 1900616 nice furnished room ground floor
## 3186 1900780 1000 Sq Ft Loft in Flatiron.
## 3187 1901357 Spring in Ditmas Park Brooklyn!!!
## 3188 1903198 Time Square in 30 minutes. Front room.
## 3189 1903249 The heart of Manhattan - NYC
## 3190 1903288 Beautiful and spacious bedroom in Williamsburg
## 3191 1905865 Zen & Cozy 2Bedroom in Williamsburg
## 3192 1906604 280 Degree Views Of Manhattan (TS)
## 3193 1906804 Private Master Bedroom w/Garden 14 min to Union Sq
## 3194 1906993 Lower East Side Penthouse Room w/ Epic Views
## 3195 1907058 PRIVATE ROOM #2 STARTING AT $67 PER NIGHT
## 3196 1908767 Large Bedroom in the East Village
## 3197 1908852 Oversized Studio By Columbus Circle
## 3198 1908986 NYC UES APT RENTAL
## 3199 1910270 Lovely Brooklyn Brownstone one block from Subway
## 3200 1911333 A room with private bathroom
## 3201 1911641 Modern Midtown Apt, close to MoMA
## 3202 1912357 Brooklyn apt, hip hood, with a view
## 3203 1913540 Cute Spacious Studio in Fort Greene
## 3204 1913864 One Bedroom in an apartment
## 3205 1914231 Perfect Harlem, New York Retreat
## 3206 1914381 Bedroom for one
## 3207 1914461 Space, elegance, and comfort - Room
## 3208 1914590 Nice clean large Bedroom in Astoria
## 3209 1914630 Comfy, Spacious, Modern, Sweet Home
## 3210 1914759 Urban Oasis in Chelsea
## 3211 1914787 Your home away from home in Comfort
## 3212 1917629 Gorgeous duplex 1 BR Brownstone apt
## 3213 1918693 Lovely Bedrooms in Artist's Home
## 3214 1918903 Private 2 BR APT: Free WIFI & JACUZZI
## 3215 1919647 2 floor Apt w 300sqft Terrace
## 3216 1919766 Full of Harlem Soul & Charm
## 3217 1919896 Sunny 2 bedroom in Prospect/Crown Heights
## 3218 1920085 Small Room With Private Loft Bed
## 3219 1921859 Adorable 1BD Home with view of NYC
## 3220 1922448 Sunny bedroom in Williamsburg
## 3221 1922863 Bi-level Loft with a Private Garden
## 3222 1923153 Cozy Vintage Inspired East Village
## 3223 1924645 Sunny Studio in Prime Williamsburg
## 3224 1925224 Beautiful, large, charming spot
## 3225 1925519 Sublet: $490/Wk
## 3226 1928556 Private Apt, Large, Safe / 5mins to TIMES SQUARE
## 3227 1928570 Studio Apt. in Williamsburg, Brooklyn, NY
## 3228 1928961 Futon 2.0
## 3229 1929041 BEST PRICE - WILLIAMSBURG 1 ROOM
## 3230 1929186 Modern Bright Loft in Clinton Hill
## 3231 1929321 Quiet 1br in a Mansion!
## 3232 1929540 2 floor loft in Gramercy park
## 3233 1931341 Cozy bedroom on Wall Street
## 3234 1931609 Entire Park Slope Townhouse
## 3235 1932094 HEART OF NYC! AMAIZING LOCATION!, SUPER ROOM
## 3236 1932110 Manhattan/ LES Short term Stay
## 3237 1932491 Best View/Luxury Building/Time Squ.
## 3238 1934444 Havemeyer Holiday
## 3239 1934512 Penthouse studio w/ skylights and skyline views
## 3240 1934765 One Bedroom Apt, Suitable for Two
## 3241 1934804 3 Story Brooklyn House - Sleeps 10!
## 3242 1935109 Unique sunny loft in Manhattan!
## 3243 1935175 cute 2BD apt in greenpoint
## 3244 1935302 COZY and WARM Garden Apartment
## 3245 1935826 Priv room in 3 bdrm apt - Room "C"
## 3246 1936633 Great 1BD waterfront City Island NY
## 3247 1936772 Private Ground Floor Studio Apt PLUS Driveway
## 3248 1937226 Awesome Harlem House 3 bdr 2 floors
## 3249 1937323 Hell's Kitchen, close to All
## 3250 1937325 2Br East Village VERY Spacious Apt.
## 3251 1937761 Modern & Quiet 2bdr Astoria - 2 blocks from Subway
## 3252 1939106 Charming 1BR in the East Village
## 3253 1939283 Wyckoff Street Garden Apartment
## 3254 1940534 Big specious room is Manhattan!!!
## 3255 1940780 Amazing Greenpoint/Williamsburg Apt
## 3256 1941094 XLARGE-Modern-clean master bedroom
## 3257 1941435 Sunny Room near all
## 3258 1941439 Private Room next to Park - 5 mins to subways!!
## 3259 1941495 Huge Garden Duplex, 20 min Manhattan!
## 3260 1942935 Family house in South Park Slope
## 3261 1944155 Funky Furnished Studio on Tree-Lined Street
## 3262 1944891 Spacious one bedroom apartment
## 3263 1945115 Beautiful Luxury Room in Central Harlem/Columbia
## 3264 1947400 1BD Cozy Chelsea Apartment
## 3265 1948494 Amazing 550 Sq Ft Studio Apartment.
## 3266 1948745 Immaculate 3BR Williamsburg Condo
## 3267 1950311 Bright, cozy East Williamsburg home
## 3268 1950318 NYC Theatre District 1 Bdrm Apt
## 3269 1950588 Newly Renovated One Bedroom
## 3270 1950603 Cozy NYC apt. 10min to Central Park
## 3271 1952271 Super Clean 1 bedroom Upper West Side
## 3272 1953636 large private bedroom in shared ap
## 3273 1953928 Huge 2 Bedrooms NYC
## 3274 1954429 Scenic 1 Bedroom sleeps 4
## 3275 1954450 Spacious Sunny Designer 1 Bedroom in East Village
## 3276 1954495 East Village gem!
## 3277 1954653 FIVE STAR LIGHT-FILLED DUPLEX - PRIVATE DECK
## 3278 1955844 Charming 1BD Apt in Classy Brownstone by Union Sq
## 3279 1956346 THE HEART OF COOL WILLIAMSBURG NYC
## 3280 1956467 Big, beautiful, central 1BD in Brooklyn
## 3281 1956677 The "Humphrey Bogart"
## 3282 1956726 Colorful 1 Bedroom APT in the East Village
## 3283 1958765 Stylish 1 BR Loft Apt Williamsburg
## 3284 1959024 950 SQ FT ONE BEDROOM + 2 TERRACES
## 3285 1960045 Loft Bedroom in Luxury Apartment
## 3286 1960358 Couples and Family Paradise.
## 3287 1961288 Gorgeous Modern Downtown Condo with Stunning Views
## 3288 1961361 Private Master BR in 3 BR Apt
## 3289 1961937 Lovely 2 bedroom apartment
## 3290 1965103 Quiet and Sunny studio in EV
## 3291 1965712 Lovely large 1-bdrm apt UWS
## 3292 1965766 LARGE Studio in elevator building!
## 3293 1967045 Top Floor Brooklyn Pad 1.5Bd/1Bth
## 3294 1970017 Chic & Cheerful Home in Williamsburg, Brooklyn
## 3295 1970574 Park Slope Townhouse TOP FLOOR
## 3296 1970697 Lovely & Large Private Queen Bedroom
## 3297 1970915 Private Backyard! Beautiful 1BR apartment.
## 3298 1971200 Big Room by Times Square
## 3299 1971239 BRIGHT AND SPACIOUS 3 BEDROOM WITH GARDEN
## 3300 1971540 Sunny Midtown NYC Room
## 3301 1971635 Adorable Apt on Prospect Park!
## 3302 1973889 Exposed Brick Wall Bedroom
## 3303 1974700 AMAZING ONE BEDROOM IN MANHATTAN
## 3304 1975069 Loft Bedroom in Duplex 3BR & Private Roof
## 3305 1975168 Fantastic Williamsburg Waterfront!
## 3306 1975999 Luxury studio
## 3307 1976123 Huge Loft with Private Entrance
## 3308 1977888 East Village Studio Super location
## 3309 1978445 Bedroom in East Williamsburg
## 3310 1979076 Authentic Factory 1BR w/City View
## 3311 1979127 East Village Duplex Penthouse
## 3312 1979506 Cozy duplex on the Upper East side!
## 3313 1979579 Best Central Park/NYC View Apt
## 3314 1979744 Bright & Budget Friendly
## 3315 1979848 1 BR in a luxury apt bldg
## 3316 1980179 Best of the East Village Cozy 2 Bedroom
## 3317 1981410 Spacious 1 bed near train!
## 3318 1981590 Loft 15 - 20 minutes to Manhattan
## 3319 1981656 Loft 402 : Photo Studio : Brooklyn
## 3320 1981669 1 Bedroom Apartment Lefferts Garden
## 3321 1983188 1BR near Columbia / Central Park
## 3322 1983466 A Cozy Creative Room for Nomads
## 3323 1983531 Spacious Bright 1 Bedroom East Village Apartment
## 3324 1984390 Big Cozy Studio
## 3325 1984486 Comfortable Brown Stone apartment
## 3326 1985022 Large Light Filled Apartment
## 3327 1987371 Williamsburg, prime loction, Brooklyn private room
## 3328 1987546 nice room in bedstuy A
## 3329 1987584 Home Sweet Room-HOMEY-Queens NYC!!
## 3330 1987627 1BD Upper West Side NYC
## 3331 1987949 3 Bedroom Apt. in Washington Height
## 3332 1988823 Family Friendly Apt in Quiet Building
## 3333 1989731 1br Near Everything in East Village
## 3334 1989838 Luxury 4 BD NYC Times Sq Apartment
## 3335 1989972 Cozy & Nice Bedroom in an Apt/NYC.
## 3336 1992751 Bushwick House
## 3337 1994398 Spring and Summer in New York - Near Central Park
## 3338 1994548 luxury bldg for the coming holiday
## 3339 1997487 Luxury Doorman 1BR Best part of NY
## 3340 1997957 Winter Fun in Brooklyn!!!
## 3341 1998026 Bright, serene apt in Fort Greene/Clinton Hill
## 3342 2000156 Nice & cozy - 15min to Times Square-
## 3343 2000576 3BR in a classic 1925 BK Limestone
## 3344 2000611 Cute brick wall apt. 2BR
## 3345 2003180 NEW YORK CITY HOME in MANHATTAN
## 3346 2003807 UWS MANHATTAN APT FOR SUPERBOWL WE
## 3347 2006452 Sunny Filled Room in Williamsburg
## 3348 2008122 Large 1 Bedroom Apt in Park Slope
## 3349 2008190 Private: The Grey Room
## 3350 2008227 Private Studio in Private Home
## 3351 2010624 Sunny and spacious 2 BR apartment
## 3352 2010787 Amazing Williamsburg/Greenpoint Apt w/ 2 Terraces!
## 3353 2010971 Gorgeous 1BR brownstone
## 3354 2011212 West Village Charm and Quiet!
## 3355 2011692 STAYING IN MANHATTAN
## 3356 2012104 Spacious haven near Riverside park, subway, and CU
## 3357 2012368 Amazing Downtown With Rooftop
## 3358 2012424 Thanksgiving in Manhattan Luxury Suite
## 3359 2012750 LOVELY 1 BEDROOM APT, BATH + KIT+ LIVING ROOM
## 3360 2013807 Magic Manhattan with Rooftop
## 3361 2014701 Studio Apt. on Upper West Side
## 3362 2015094 Private room in Manhattan
## 3363 2015168 Cozy 2BD APT close to subway
## 3364 2015586 Wonderful bright Brooklyn apt
## 3365 2016579 Cozy Private room in Brooklyn
## 3366 2017012 W Village Luxury Apt. (Super Bowl)
## 3367 2017397 ☆ DESIGN Spacious ☆ 1 BR Sleeps 4 Brooklyn Museum
## 3368 2019755 Front Studio in Loft Apartment - Steiner Studios
## 3369 2019927 Beautiful Furnished 1 Bedroom apt; Wash Hts
## 3370 2020881 2 BR apt in East Village w private patio
## 3371 2021742 Cozy Apt in the heart of Manhattan!
## 3372 2022126 Midtown Manhattan Apt
## 3373 2022728 Room in Manhattan! 15min=TimeSquare
## 3374 2022920 UES
## 3375 2022938 Sunny Duplex on Prospect Park
## 3376 2022958 Elegant 1BR @ Columbus Circle
## 3377 2023357 Artistic n Funky 1BD by the Park!
## 3378 2023577 Charming bedroom on the Upper West
## 3379 2024991 Beautiful king-size 1-bedroom with balcony
## 3380 2025779 Charming East Village One Bedroom
## 3381 2026434 Fab Williamsburg Brooklyn Apt.
## 3382 2026869 Sunny Village Studio: Long Stays
## 3383 2028178 1BD Modern Contemporary in Williamsburg
## 3384 2028272 Luxurious Chelsea Apt with Terrace
## 3385 2028291 Entire studio with backyard, Close to subway!!!
## 3386 2028391 Soho Penthouse Loft, Terrace & View
## 3387 2028432 Sunny Private Studio With Backyard Close 2 Subway!
## 3388 2028625 SB 2014/Winter in NYC, PH, 860 sf!!
## 3389 2028677 1BR in HARLEM...SUNNY & SPACIOUS
## 3390 2028925 Art Boutique 2BR Suite at JFK Airport
## 3391 2030736 Room B
## 3392 2031495 Big Private Sunny Room in UWS Duplex w/ Terrace
## 3393 2033224 2-br Apartment in Manhattan
## 3394 2033846 Boutique Hip Hotel Feel, WiFi, NetFlix, Private
## 3395 2033866 East Village 2 Bed 2 Floor Luxury Apartment
## 3396 2036105 Private room D
## 3397 2037508 Bed Stuy Apartment One Bedroom
## 3398 2037632 Cute East Village 1 Bedroom Apt
## 3399 2037951 Modern West Village Apartment
## 3400 2038278 Bright and Open Astoria Apartment
## 3401 2041041 Your Living Room is the UES
## 3402 2041143 Perfect for Visiting Family
## 3403 2042764 Architect's home in Park Slope
## 3404 2043049 Bushwick Calabrese Abode
## 3405 2043060 Clean, spacious entire 1br in NYC!
## 3406 2043329 Studio in Hell's Kitchen
## 3407 2044392 The heart of Williamsburg 2 bedroom
## 3408 2044873 Bushwick Artist Loft - Awesome Room
## 3409 2045097 Charming Lower East Side Studio!
## 3410 2045727 Cozy Room in Family Home..BKLYN!!!
## 3411 2046007 1 BR in LES. Heart of New York City
## 3412 2046225 Large, Sunny Brooklyn Apartment
## 3413 2046273 Private room in Park Slope
## 3414 2046789 Huge, Arty, Earthy + BEST Location!
## 3415 2048796 Sunnyside Gardens Oasis!
## 3416 2049322 Private room in Brooklyn Loft
## 3417 2050406 Bright, Huge 1Bdrm in Midtown
## 3418 2050993 Noho East Vill Lux Bldg w/Gym,Pool
## 3419 2051675 Nice modern room by Prospect Park!
## 3420 2053940 Sunny top floor apartment in Clinton Hill
## 3421 2054899 Sunny Apartment in West Village
## 3422 2055050 Charming studio upper east side NYC
## 3423 2055303 South Harlem 1 Bedroom Apartment
## 3424 2055467 Great Location on St. Marks Place
## 3425 2055614 Lovely designer's studio
## 3426 2055819 Garden Oasis, Williamsburg!
## 3427 2056012 Rancho Deluxe, Williamsburg!
## 3428 2056307 1 room in HUGE 2Bedroom/1.5 Bath
## 3429 2057295 Junior 1-BR in West Village
## 3430 2057403 Spacious Upper West side 2 bedroom apartment
## 3431 2057480 Spacious 2BR in the heart of Soho
## 3432 2057553 PRIVATE ROOM in Peacuful 2-Bedroom
## 3433 2057595 Great location in the East Village
## 3434 2060275 NoHa Living
## 3435 2060720 Charming Jr. 1 bedroom Midtown
## 3436 2060768 West Village Apt steps to Path
## 3437 2061367 Room on Upper West Side, Manhattan
## 3438 2061725 ❤️ 2 Beds Option + Private Bath, Sunshine Bushwick
## 3439 2061811 Great NYC Location for beginning of JULY
## 3440 2062630 Large 1 bedroom apartment (shared)
## 3441 2063587 Beautiful Penthouse Apartment
## 3442 2065101 Sunny Room
## 3443 2065538 Sunny Place in Cool Hood
## 3444 2065985 Woodside Queens, New York
## 3445 2066165 Cozy room in NYC 5
## 3446 2067166 Private Room in Upper East Side
## 3447 2067688 MIDTOWN MANHATTAN-WALKING DISTANCE TO EMPIRE STATE
## 3448 2068054 One Room in Lovely Zen House
## 3449 2069051 Your private space in Brooklyn
## 3450 2069059 Cozy 2BR Brooklyn retreat w/Bckyard
## 3451 2069359 New 1BR + 1BA with Private Entrance
## 3452 2070290 LARGE 2 BEDROOM FOR SUPER BOWL
## 3453 2071265 GET COSY IN WILLIAMSBURG...
## 3454 2071420 Classic Chelsea Brownstone 1 Bedroom
## 3455 2071446 Inspiring spacious loft space
## 3456 2071464 Brooklyn garden 2 bedroom
## 3457 2071839 Room in a lovely 2br apartment - East Williamsburg
## 3458 2071873 Cozy Studio in Murray Hill
## 3459 2071941 Huge Sunny Family Friendly Loft in Greenpoint
## 3460 2074653 Cozy East Village Bedroom
## 3461 2074985 Summer catsit in Brooklyn!
## 3462 2075377 Studio Apartment centrally located!
## 3463 2075453 Sunny & Bright Bohemian 2BR XL Loft
## 3464 2075471 Big room in Greenpoint.
## 3465 2075526 1 BR Apt in Park Slope Brooklyn
## 3466 2075600 Delicious & Airy Apt in Landmark Brownstone
## 3467 2076101 Cozy 1BR in Morningside Heights
## 3468 2078687 Lower East Side Haven on Ludlow St
## 3469 2079686 Sunny apt with Backyard
## 3470 2079765 Charming, sunny oasis
## 3471 2080709 Awesome Bedroom close to Manhattan!
## 3472 2080861 Spacious 3BD/2BA - Parking Included
## 3473 2081177 Lovely Studio in New York City
## 3474 2081394 Apartment-NYC-LES-Lower East Side
## 3475 2081408 Cozy Sun Drenched Crown Heights Apt
## 3476 2081850 Huge, gorgeous apt in Harlem, NYC
## 3477 2082328 Comfy & Spacious Room next to the Subway/Metro
## 3478 2082670 East Williamsburg Room near L train
## 3479 2082694 Brand New 3BR Apartment
## 3480 2083547 3 Bed/ 2 Bath Full Apt. BK Heights
## 3481 2083749 STYLISH NYC OASIS NEAR CENTRAL PARK
## 3482 2083791 Live like a native
## 3483 2083824 Luxurious & Spacious 1 Bedroom Apt
## 3484 2084817 Huge Bedroom at Downtown Manhattan
## 3485 2085632 Private Deck 2 Bedroom+2 Bath East Village
## 3486 2086647 LES Sun Drenched w/ Balcony
## 3487 2087226 Penthouse With Private Roof Deck
## 3488 2087524 Private Parlour Floor
## 3489 2087663 Chic, neat & cozy small 1 BR Apt
## 3490 2087970 West Village Wonder -spacious 1 bed
## 3491 2088389 Entire Sun Drenched Apartment in Clinton Hill
## 3492 2088725 Beautiful renovated 1 bedroom Apt.
## 3493 2089226 SALE- 2 BEDS, IN PRIVATE BEDROOM NEAR MANHATTAN!
## 3494 2089273 Williamsburg Luxury 1 Bedroom
## 3495 2089492 Sunny 1 Bedroom Apt in Williamsburg
## 3496 2089712 Spacious 1-BR Midtown West
## 3497 2089745 GREAT in CHELSEA: JUST SEE REVIEWS
## 3498 2091204 Spacious and bright Bedroom
## 3499 2091483 Large BR in a 3BR apartment
## 3500 2092588 Staying in Greenpoint/Williamsburg!
## 3501 2092611 Bright & cozy, private UES studio
## 3502 2093035 Modern & Artsy, Awesome Location
## 3503 2093064 Sunny Chelsea 1 B.R. Hi Line, Washer/Dryer, 3 Beds
## 3504 2093304 Hidden gem in Fort Greene
## 3505 2093455 Nice bedroom
## 3506 2094213 Large Stylish 1.5 BR Noho/Nolita
## 3507 2095959 Big Sunlit Studio - Nice Bed - 18 min to Manhattan
## 3508 2096581 SUNNY APARTMENT DOWNTOWN!
## 3509 2096968 *Upper East Side Cozy 1 Bedroom*
## 3510 2098338 Big Room near Prospect Park.
## 3511 2098817 Historic Townhouse 3bed 2bath * 1 block to subway
## 3512 2100174 Private Furnished Studio Apartment
## 3513 2100887 1200sqft artsy loft SOHO/NOLITA gem
## 3514 2101349 Stunning UWS studio private room;
## 3515 2101710 In the heart of Hell's Kitchen
## 3516 2101884 Sunny & Spacious in Park Slope
## 3517 2102315 Spacious Modern Williamsburg Loft!
## 3518 2102344 Cozy Private Room in Artsy Bushwick
## 3519 2102542 Cozy 1BD-15min to NYC $150
## 3520 2102571 Studio Midtown East
## 3521 2102651 Central Park West Studio Value
## 3522 2103480 Thanksgiving in Manhattan!
## 3523 2104588 Time Square doorman building 1 bdrm
## 3524 2104910 SPACIOUS APT BK/QUEENS w/BACKYARD!
## 3525 2105163 Gramercy Park Studio Apartment
## 3526 2105180 COZY CLEAN BDR 3 MINUTE WALK FROM GRAND CENTRAL
## 3527 2106241 Private Room with Plush Queen Bed
## 3528 2106662 Large one bedroom apartment
## 3529 2106706 Large Bright Room, East Village Apt
## 3530 2107372 Best NYC Deal on upper west!
## 3531 2107696 Entire 2 BED APARTMENT - WILLIAMSBURG- Best Price
## 3532 2107883 Industrial Modernism Flex 2br Loft!
## 3533 2107939 Private Single Room Steps to Subway
## 3534 2108178 Fabulous City View Studio Loft
## 3535 2108237 Large 2BR/2B next to Lincoln Center
## 3536 2108424 Sunny Private room in Brooklyn
## 3537 2108635 One room/full floor in a Duplex
## 3538 2110145 UWS 1BR w/backyard + block from CP
## 3539 2110493 PRIVATE studio/not shared/ SAFE/ CLEAN/Affordable
## 3540 2111172 Williamsburg. By Bedford L train
## 3541 2111336 Nice Modern Mirrored Room in NYC
## 3542 2112142 No security req,great price,new queen bed!
## 3543 2112344 Private Bushwick Loved Room with a Sacred Garden
## 3544 2113431 Amazing room in Greenpoint
## 3545 2113934 Futon on the Upper East Side!
## 3546 2115611 Large 1 bedroom apartment next to Prospect Park
## 3547 2115773 Spacious 1BR Haven in Duplex w/Deck
## 3548 2115784 Beautiful Prewar 1BD Apartment
## 3549 2116059 Renting apt for a weekend getaway
## 3550 2116940 Sunny, Modern Open 1BR
## 3551 2117705 Refreshingly Peaceful Room in Prime Williamsburg
## 3552 2118102 Charming West Village One Bedroom
## 3553 2119216 Affordable, Private, Simple & Clean NYC Flat!
## 3554 2120619 Beautiful Central Park Apartment
## 3555 2122613 SuperBowl West Village Apartment
## 3556 2123079 Artist Loft Studio close to all
## 3557 2123731 Spacious Suite in Midtown West/Times sq.
## 3558 2124536 Downtown Filmmaker's Loft by WTC
## 3559 2124910 Private Room E
## 3560 2126376 Spacious Bedroom in Williamsburg Loft.
## 3561 2126576 2BR XL Industrial Factory Loft
## 3562 2127016 Charming 1br loft in Brooklyn
## 3563 2127382 Upper East Side apt for Super Bowl
## 3564 2127713 GREAT COZY APT
## 3565 2127767 Sun-drenched 2 Bedroom Penthouse
## 3566 2128464 Warm & Spacious (not available)
## 3567 2128761 Studio 1 block from subway, 10min to Manhattan!
## 3568 2132248 Huge Master Bedroom w/ Private Bath
## 3569 2134047 Artistic Studio Apartment
## 3570 2134052 Large artsy studio with 90s style
## 3571 2134294 Nice room in Astoria, Queens, NYC
## 3572 2134697 Gorgeous New 1BR_Heart of Midtown
## 3573 2135116 Downtown, close to every subway!
## 3574 2135489 Charming Studio in Brooklyn
## 3575 2135754 CONVENIENT Greenwich Village 2 BED!
## 3576 2135766 Super Bowl, 2 bdrm, UWS apartment
## 3577 2136293 Studio Apartment Near Express Subway to Manhattan
## 3578 2136511 Private room with bathroom and balcony.
## 3579 2137111 Upper West Side 1 BR APT, ~675sg ft
## 3580 2137714 Casa de La Musica
## 3581 2137796 A Beautiful Brownstone
## 3582 2138787 HARLEM, NEW YORK WELCOMES YOU!!
## 3583 2141470 Centrally located Midtown East 1 BR
## 3584 2141635 Room in Soho, Manhattan
## 3585 2141667 Riverview at Lovely Harlem/UWS Home
## 3586 2141975 Charming and Large UES ROOM for travellers
## 3587 2142092 Furnished room - W. 181 St. by A, 1
## 3588 2142130 Fully renovated 1br apt in LES
## 3589 2144033 Williamsburg - country house in NYC
## 3590 2144319 Cheap, furnished private room
## 3591 2145599 Large Private BR in Hell's Kitchen
## 3592 2145620 Bright, Lovely, Private Room in Midtown Manhattan
## 3593 2145759 Cozy Room in Upper East Side
## 3594 2148025 Bed & Bagel~a charming 3 bedroom loft
## 3595 2149184 Super Bowl Rental 2BR in Soho
## 3596 2149854 Amazing NYC 1BR Apartment
## 3597 2149954 Hip Bushwick Apartment
## 3598 2150328 SUPERBOWL!! 2 Bd, 2 Ba w Roof Deck!
## 3599 2150727 1500 sq ft apt sleeps 8 - SuperBowl
## 3600 2150750 Private Bedroom in Sunnyside, NYC
## 3601 2151106 2br. Luxury Building in Upper East
## 3602 2151259 Superbowl Studio Upper West Side
## 3603 2151479 Newly renovated house
## 3604 2151558 COZY ROOM WITH STUNNING VIEW IN AN AUTHENTIC FLAT
## 3605 2153435 The best Williamsburg has to offer!
## 3606 2154075 Brooklyn Charm, Close to Manhattan (30+ Days Only)
## 3607 2154567 Cozy Brownstone Suite
## 3608 2155219 Private Bedroom in LIC/ Astoria
## 3609 2155345 Bushwick Bungalow
## 3610 2156111 Lg Private Rm wTerrace Midtown West
## 3611 2157550 2BD True Loft, Hip & Artsy Location
## 3612 2158171 Luxury NYC Studio for Super Bowl 48
## 3613 2159193 The Perfect 1-bedroom in Cobble Hill
## 3614 2159898 East Village Studio
## 3615 2160591 Brooklyn NY, Comfy,Spacious Repose!
## 3616 2163602 Upper West Side elegance. Riverside
## 3617 2164135 BIG, BRIGHT, STYLISH + CONVENIENT
## 3618 2164631 Exclusive Upper East Side Studio
## 3619 2165107 Cozy Manhattan 1 BR
## 3620 2165933 Furnished one bedroom in Midtown West.
## 3621 2168268 Home Sweet Home in Historic Harlem-Riverside Drive
## 3622 2169106 Huge Sunny Room In Awesome Apt/Neighborhood
## 3623 2169765 Lower Park Avenue Pre War
## 3624 2170035 Historical Harlem @ express train!
## 3625 2170618 Brooklyn Artist Bdrm center of everything
## 3626 2171809 Room w/ Private Bathroom
## 3627 2171821 Cool New 1br Apt - 1block from L&M
## 3628 2172139 Modern Apt Steps from Central Park
## 3629 2175827 Room Bedford Heart of Williamsburg
## 3630 2177004 Sunny Loft in heart of williamsburg - entire loft!
## 3631 2178294 Garden apt in Wlmsbrg - Lorimer L
## 3632 2181941 Beautiful Apartment On Stivers Row
## 3633 2182899 Sunny & spacious NYC Apartment
## 3634 2183423 2 Convertible Bdrms Great for 1-6
## 3635 2185668 Clean Private Room in Chelsea apt
## 3636 2185842 1BR Superbowl rental Hells Kitchen
## 3637 2186138 Superbowl - NYC Apartment
## 3638 2186452 Tribeca Loft for Superbowl Wknd
## 3639 2186699 Modern Alcove Studio in Chelsea NYC
## 3640 2187847 Beautiful 1-Bedroom in West Village
## 3641 2188204 Herkimer House
## 3642 2189129 10-Room Apt w/ 3BR & Park Views
## 3643 2189450 East Village 2BR with view!
## 3644 2189742 *Queen-sized comfort in cozy Historic Sugar Hill*
## 3645 2191591 3 story Home in NYC-upper east side
## 3646 2191612 Full apartment - perfect location
## 3647 2193027 A charming UES apartment
## 3648 2193649 CLEAN ROOM on Lower East Side
## 3649 2193902 East Village~Organic Living
## 3650 2193945 BEDROOM WITH PRIVATE BATHROOM
## 3651 2194038 Two Bedroom Flat
## 3652 2194382 Spacious 2BR/2BA Classic UWS Apt, Great for Family
## 3653 2196271 Bright Dble Bedroom. Private Bath. Close to Subway
## 3654 2197283 Charming Cozy Studio Apt. in NYC
## 3655 2197401 Bedroom with Private Bathroom
## 3656 2197725 Luxury 1BD 1.5 Bath In UES in NYC
## 3657 2198970 BEAUTIFUL 1 BEDROOM
## 3658 2201154 Prime E. Village at St. Marks Place
## 3659 2201491 BEST LOCATION! On the border of Chelsea/W Village
## 3660 2201581 Sunny Brooklyn Home
## 3661 2202858 Gorgeous Ft. Greene apt amazing vu
## 3662 2203154 Prime East Village 1 bedroom
## 3663 2203450 Perfect Location - 2 bdrm/2 bth
## 3664 2203926 Bright, Modern Two Bedroom With Stunning Rooftop
## 3665 2206311 Modern Studio in Midtown East
## 3666 2208545 Spacious 1 Bedroom in Lower East Side/Chinatown
## 3667 2208567 Spacious Room in the Heart of NYC
## 3668 2209460 Room in perfect Manhattan location
## 3669 2209835 LARGE 1 BEDROOM APT. IN MIDTOWN NEAR SUBWAY/BUS
## 3670 2210041 CENTRAL PARK, NYC APT
## 3671 2210088 SUPER BOWL 2014 in TRENDY CHELSEA!
## 3672 2210615 Chelsea HUGE apartment w/ King bed + office
## 3673 2210663 Luxury Modern Spacious 1BR,1 block to subway
## 3674 2210795 Sunny room with private ensuite!
## 3675 2211028 Vibrant Brooklyn location!
## 3676 2213680 A Room WIth A View
## 3677 2214256 Artist owned brownstone apartment
## 3678 2214323 Heart of downtown Manhattan
## 3679 2214689 Large Wiliamsburg Private Bedroom
## 3680 2214710 Beautiful 2BR Flex Factory Loft
## 3681 2214831 LAVISH 2 BR APT by Central Park!!!
## 3682 2214978 Beautiful City Oasis 2BR/1.5 BATH
## 3683 2216470 Comfortable Room
## 3684 2217342 1BR West Village! Landmark Building
## 3685 2217398 226 E 29th St, NY - Super Bowl
## 3686 2217609 (Williamsburg) - Large Bedroom w/ Private Bathroom
## 3687 2219294 Great Studio!
## 3688 2220959 XTRA LARGE 1 Bedroom Gramercy Apt
## 3689 2221852 Sunny Room in Beautiful Artist's Home
## 3690 2222428 Large 1-BR Apt w/Fireplace & Patio
## 3691 2222641 Charming West Village 1 Bed - Ideal Location
## 3692 2223082 Beautiful 1 BR with Private Garden
## 3693 2223247 Lovely Duplex (2-story) flat on the UES
## 3694 2223628 Haus of Taylor (Bronx Prohibition)
## 3695 2224417 Spacious, bright, heart of Bushwick
## 3696 2224896 NYC SuperBowl Wk 5 Bdrs River View
## 3697 2227377 Downtown NY Apt - SuperBowl Weekend
## 3698 2228296 Super Bowl 2014
## 3699 2228840 Cozy and homey railroad in bushwick
## 3700 2230762 Harlem/Morningside, charm and quiet
## 3701 2230982 An Accomodating Apartment on Wall
## 3702 2231296 Great Location in the heart of NYC!
## 3703 2231814 Modern Luxury Meets Old Money Charm
## 3704 2232600
## 3705 2232697 Kate's Place
## 3706 2234100 Coffee,Tea&Milk Astor Place Lodging
## 3707 2236458 Cozy 1 Bdrm n the Heart of Astoria!
## 3708 2237032 Cozy Room in LIC, 7 min to Times Sq
## 3709 2237063 Modern Large Studio, Great Location
## 3710 2237851 2BD in Midtown East
## 3711 2237981 Cool UES 1 Bed Sleeps upto 4
## 3712 2238300 Peaceful home, friendly area!
## 3713 2238389 Huge Duplex in South Slope
## 3714 2238435 Central Harlem Hideaway
## 3715 2240196 Chelsea Studio for Super Bowl!
## 3716 2240661 Large 1BR Upper East Side Apartment
## 3717 2243180 Sun-bathed spacious Luxury 2 BR near CENTRALPARK!
## 3718 2243266 Top floor!
## 3719 2243321 A cozy apartment
## 3720 2243548 Lux 1600sf 1BR w. Private Terrace
## 3721 2243699 SuperBowl Penthouse Loft 3,000 sqft
## 3722 2243769 Super Bowl New York City Apartment
## 3723 2243962 Spacious & Convenient UWS Apt
## 3724 2243984 Superbowl in the West Village
## 3725 2246112 Upper E. side, one month minimum
## 3726 2247803 Landmark Brownstone, Crown Heights
## 3727 2248069 Private Room in Central Park Slope
## 3728 2248580 Luxury 1 Bedroom Condo
## 3729 2249464 Full of Light Studio Apartment close to Subway
## 3730 2249878 Great UWS Apt./Central Park
## 3731 2249928 Super Bowl Wknd! 3-Bedroom Apt UWS
## 3732 2250170 Spacious/New 3 Bedroom East Village
## 3733 2250372 Huge 3BR Penthouse, Private Roof!
## 3734 2250790 Private room on the UWS
## 3735 2251009 Bedroom in Huge Apt on St. Marks
## 3736 2252844 Great place to crash for Super Bowl
## 3737 2253397 For Super Bowl- cool 1BDRM on UES!
## 3738 2253500 Fantastic Soho/Tribeca Loft
## 3739 2253949 Large 1 + Den in the West Village
## 3740 2254388 Spacious apt, 5 min to Central Park
## 3741 2254428 Spacious Duplex Apt in Brooklyn
## 3742 2254469 Private Studio Apt, Luxury Building
## 3743 2254541 Private Bedroom in Williamsburg!
## 3744 2254582 Delightful 2BR Historic Brownstone Duplex
## 3745 2254817 Elegant private studio in Manhattan 73 St. & 3 Ave
## 3746 2254851 Sunny and Bright 1BR Factory Loft
## 3747 2255005 Quiet Gramercy Apartment
## 3748 2255340 2 Bedroom Greenwich/Soho Apartment
## 3749 2255501 Cozy Room in the heart of UWS
## 3750 2255549 New Studio in Heart of Chelsea
## 3751 2256519 Spacious 1BR Chelsea Apt. for SB 48
## 3752 2257064 Sunny Room in Heart of Williamsburg
## 3753 2257080 SUPERBOWLSUNDAY! 3BLOCK FROM TIMESQ
## 3754 2259331 Luxury Building Huge Studio
## 3755 2259719 Apartment in Soho
## 3756 2259813 Spacious 2 BR in North Chelsea
## 3757 2260029 Williamsburg Loft
## 3758 2260042 Clean and pleasant Room in NYC
## 3759 2260274 SUPER LOCATION 4 SUPER BOWL WKEND!!
## 3760 2260595 4RW - CARRIAGE HOUSE STUDIO OFF CTYD
## 3761 2261018 Studio Apartment on 35th and 3rd
## 3762 2261367 brooklyn 14 bedroom gated community
## 3763 2262357 spacious homey one bdrm apt.
## 3764 2262868 Consider it home
## 3765 2263248 Large 1 bedroom
## 3766 2263265 Paddy Pad
## 3767 2265827 Williamsburg Lodge (the best home in Brooklyn)
## 3768 2266468 Amazing 2BR/2Bath Loft in Brooklyn
## 3769 2267006 Stunning 1BR Brooklyn Loft
## 3770 2267177 Large Bedroom 15 Min From Manhattan
## 3771 2267692 Newly Converted Factory 1BR Loft
## 3772 2268632 Big Queens NY Apt. Clean & safe.
## 3773 2268845 Super Apt for Superbowl
## 3774 2269104 Modern Style private room in queens
## 3775 2271504 SUPER BOWL Brooklyn Duplex Apt!!
## 3776 2271792 Little Heaven — Upper West Side
## 3777 2272080 equipped and modern 2-bd apt
## 3778 2272739 Sunny Spacious West Village 1BR
## 3779 2272872 Great location Cntl Park Times Sq
## 3780 2273019 Super Bowl Weekend
## 3781 2273613 Bondtastic: Fabulous in Brooklyn.
## 3782 2273733 Heart of the West Village!
## 3783 2274084 3 Bedroom Apartment
## 3784 2274268 Private Rm - Times Sq/Hell'sKitchen
## 3785 2276065 PERFECT SUPERBOWL STAY
## 3786 2276383 Penthouse with Private Rooftop for Events/Shoots
## 3787 2277707 Great UWS Apt Along Central Park
## 3788 2279335 Gorgeous 1 BR in N Williamsburg
## 3789 2281142 Prime NYC Location for Super Bowl
## 3790 2281147 Midtown Gem/ Carnegie Hall/theaters/ Central Park
## 3791 2282085 Duplex PH 2 bedLoft Williamsburg
## 3792 2283001 Gorgeous 1 bdrm in Carroll Gardens
## 3793 2283143 The Best of Both Worlds-Manhattan Country Living!
## 3794 2284454 MANHATTAN SUPERBOWL ACCOMODATION
## 3795 2284484 Sunny & Spacious Upper West Side One Bedroom Apt
## 3796 2284809 Great 1 bedroom, close to subway!
## 3797 2285355 SUPER BOWL RENTAL NYC LOW PRICE
## 3798 2285440 Large Rooms with Bar and PullOut Prime Greenpoint
## 3799 2285444 Cozy, Quiet Bedroom in Historic West Village
## 3800 2288762 Large sun-filled Studio: Murray Hill
## 3801 2289119 2 bdrm in center of Williamsburg
## 3802 2289612 Private Room in Best Location!!
## 3803 2291507 Large, Sunny Room—in Fun, Trendy Area
## 3804 2291575 Super Bowl Space Available!
## 3805 2291943 SuperBowl Weekend Rental! 3 BR/1ba
## 3806 2292275 Instant NYC
## 3807 2292366 cozy upper east side 1 br abode
## 3808 2294594 Hilton timeshare west 57st
## 3809 2294663 Mid Town East Side Apartment
## 3810 2296024 Three bedroom upscale condo
## 3811 2297029 large 2bdrm apt - midtown manhattan
## 3812 2297147 Gorgeous 1400 Sq Ft Artist's Loft
## 3813 2297192 2BD/2BA Manhattan Apt
## 3814 2297259 SUPER SUPER BOWL PAD
## 3815 2297951 Working Fireplace in TriBeCa loft
## 3816 2298373 Luxury private apartment/Suite/with balcony
## 3817 2298759 Luxury Studio -Midtown/Times Square
## 3818 2299633 Ritz-Plaza - 2 bedroom / 2 fullbath
## 3819 2301258 Entire Park Slope Brownstone
## 3820 2303436 SOHO - Large Studio Apt
## 3821 2303583 Awesome Hells Kitchen Apt!
## 3822 2305025 Big, Sunny Bedroom, right by subway!
## 3823 2305170 Eclectic Studio in Cozy Bay Ridge
## 3824 2305890 Midwood Aerie - Bright & Private!
## 3825 2308802 Big 2 bds House w/ Parking and Yard
## 3826 2309363 Huge Loft heart of Upper West Side
## 3827 2309559 Luxury New York
## 3828 2309873 Amazing Location-Private Studio near Central Park!
## 3829 2310008 CLEAN LES HOME
## 3830 2310445 Super Cute Chelsea One Bedroom
## 3831 2310542 Hamilton Heights/Harlem Private Bedroom with Roof
## 3832 2310594 Studio Apt. in East Williamsburg
## 3833 2310791 Old Brooklyn Charm
## 3834 2314392 Spacious Studio on West 72nd
## 3835 2314398 Duplex Brownstone sleeps 4-6
## 3836 2314553 Spectacular Studio Loft w/City View
## 3837 2314589 Large, 2fl/2bdrm Williamsburg Apt
## 3838 2318126 Private Rm for 1 in Prime Harlem
## 3839 2319588 Luxury Apartment in Manhattan's Financial District
## 3840 2320028 SPACIOUS BEDROOM AND PRIVATE BATH!!!
## 3841 2320581 Your own room in NY's best area
## 3842 2322189 1 room available
## 3843 2323502 Cute & cozy room in Ridgewood
## 3844 2323714 Peaceful Parlor Floor Apartment
## 3845 2325144 Cozy Nook in a Unique Loft
## 3846 2329047 Large 2 Bedroom available
## 3847 2329807 BEAUTIFUL CONDO IN TIMES SQUARE
## 3848 2331148 Charming Sunny 1 Bedroom LES Apt!
## 3849 2331154 Spacious Private Room in East Williamsburg
## 3850 2331929 Stylish apartment/ Serene Room in Williamsburg, BK
## 3851 2332284 La ponderosa
## 3852 2332880 Huge 2 bed 2 bath Apartment!
## 3853 2333141 Bohemian Brooklyn Bungalow
## 3854 2334411 Amazing New York apt in Harlem with Backyard!!!
## 3855 2339096 Cozy bedroom in Lower East Side
## 3856 2345266 Bright room, close to everything.
## 3857 2346089 Stylish, Affordable & Private Room
## 3858 2346106 Amazing Greenpoint Loft-Best Deal!
## 3859 2346296 Private Room in Williamsburg Loft
## 3860 2346335 Spacious and bright 2 or 3 bedroom
## 3861 2346416 Lovely private room close to Manhattan
## 3862 2349715 Cozy 2-BD w/ Lots of Light
## 3863 2349737 NYC Apt - Close to Metro & Mnhtn
## 3864 2350883 Large 1BR - PRIME Williamsburg
## 3865 2356082 Modern, Clean, West Village Apt!
## 3866 2359340 ART COLLECTORS APARTMENT - TIMES SQUARE-10TH AV.
## 3867 2361020 URBAN CHIC VIDEO/PHOTO SHOOTS ONLY
## 3868 2361323 Safe Sunny 1brm near subway
## 3869 2362306 Peaceful Artsy Huge Sunny Bedroom!
## 3870 2362357 Cozy Room in Park Slope
## 3871 2365645 Quiet Apartment in Williamsburg, Bk
## 3872 2367089 Full Apt w/ large kitchen in UES
## 3873 2368021 Spacious and Amazing Location!
## 3874 2368214 Private bedroom in historic Chinatown apartment
## 3875 2371632 Great 1 Br Apt, Ozone Park, NYC
## 3876 2371794 Master bedroom in historic house
## 3877 2372740 Chez Jazz BnB--Cozy BK/Queens room
## 3878 2373238 Times Square Area Quiet + Private Guest Studio
## 3879 2374228 Amazing Two Bedroom Apartment
## 3880 2376206 Hell's Kitchen- Times Square
## 3881 2377514 Sophisticated Harlem True 2BR NYC
## 3882 2379865 Cozy private room available in a great location
## 3883 2380403 Artsy and Comfy Bedroom, Living Room, Terrace
## 3884 2381302 New 1-Bdrm, 3-beds in Bensonhurst, Brooklyn, NY
## 3885 2383233 Entire 1400 sq ft Artist Loft - FOUR Private Rooms
## 3886 2385344 The Rose House
## 3887 2385779 The center of NYC, Brooklyn!
## 3888 2391204 SALE 2 BEDROOMS, LARGE MASTER & GUEST BEDROOM
## 3889 2392051 Spacious apt in the Lower East Side
## 3890 2392296 A Simple, Calm Space
## 3891 2392301 Charming Bedroom in Artists Colony
## 3892 2392814 Room in Huge 3 Bedroom L.E.S
## 3893 2396867 Near Columbia Universit/Female only
## 3894 2399434 House of Music and Art, Large Happy Room, full bed
## 3895 2400010 The Notorious B.N.B. { The Pfizer }
## 3896 2400614 Your Very Own Williamsburg Apt!
## 3897 2404708 Williamsburg 1 bedroom appartement
## 3898 2405505 Luxury West Village apt with views!
## 3899 2407196 Harlem 1 BR, Private Master Bath
## 3900 2410200 Heart of Williamsburg, Brooklyn!
## 3901 2410620 Cozy apt in the Upper East Side
## 3902 2410819 In the heart of the East Village
## 3903 2412916 Elegant Brooklyn Comfort, One Bedroom
## 3904 2414157 Relaxed Comfortable Beds in A Cozy Apartment.
## 3905 2415563 The Big Brooklyn
## 3906 2416016 Modern Lower East Side Apartment
## 3907 2416104 Private home, quiet Brooklyn street
## 3908 2416191 Cute Apartment in Williamsburg
## 3909 2417098 Sunny Studios in Historic Browstone
## 3910 2419438 1 Bedroom Bushwick apartment
## 3911 2419574 Private Room HK/Theatre District!
## 3912 2422991 Trendy Apt by Chelsea Market with High Line Views
## 3913 2424199 Bright, Eclectic, Happy Brooklyn Apartment
## 3914 2424342 Amazing Room—Private Bath (100% LEGAL!)
## 3915 2425222 Luxury Alcove Studio Apt in TriBeCa
## 3916 2425871 Newly Built Full Bedroom In TriBeCa
## 3917 2425980 Cozy BR in Hamilton Heights, Harlem
## 3918 2430828 Private Room Available in nice apartment!
## 3919 2431607 Bright, Airy Room Share for 2
## 3920 2431784 Newly renovated 1BD on UWS
## 3921 2432545 Your own apartment in Bushwick
## 3922 2432622 Great 2 bdr apt in WB/Greenpoint
## 3923 2433591 Private Room Brooklyn NY
## 3924 2435198 Lovely Private Bedroom in Vibrant Bronx, NY
## 3925 2435408 Modern Duplex Studio Factory Loft
## 3926 2435621 Stunning 1br in Historic Brownstone
## 3927 2435669 Charming Mid-Century Studio
## 3928 2438181 Bedroom in sunny downtown apartment
## 3929 2440173 Theater District Studio (Sleeps 4)
## 3930 2440846 Loft in Williamsburg!
## 3931 2445856 Guest rm, 2 stops from GrandCentral
## 3932 2446430 Comfy Room in Park Slope
## 3933 2447138 HUGE LUX 2FLOOR 2 BDRMSOHO LOFTw/HOME CINEMA
## 3934 2447298 Soho loft with everything
## 3935 2447460 Cozy Entire Apt1Bd APT inGREAT Loc
## 3936 2447467 Charming Spacious Master Bedroom
## 3937 2447634 Charming 2BR in Greenpoint
## 3938 2447868 Charming Upper West Side Studio
## 3939 2451110 2019 Special! LARGE West Village 1 BED!
## 3940 2451438 Quiet & private room in luxury doorman bldg
## 3941 2451647 Bright, Modern Room in East Village!
## 3942 2453730 Sunny, charming duplex in best Brooklyn 'hood
## 3943 2453739 Awesome Child Friendly Apartment!
## 3944 2454281 Private room in Clinton Hill
## 3945 2454504 Center Park Slope 2 Bedroom Townhouse Apartment
## 3946 2454507 Close to everything - Jr 1 bedroom
## 3947 2457755 Ultimate Luxury Manhattan Apartment
## 3948 2458656 Beautiful 1br loft in Brooklyn
## 3949 2458811 Gorgeous Private 1BR. 10m to MHTN.
## 3950 2459587 Upper East Side Large 2 Bedroom
## 3951 2459916 $455 Cozy 1bd, BKLYN Sublet March
## 3952 2460303 Charming Brooklyn Brownstone
## 3953 2460611 1890s North Williamsburg Townhouse
## 3954 2461439 Pristine Lower East Side Sanctuary
## 3955 2461540 Big BR 15 min away from Manhattan
## 3956 2464673 Beautiful Bright & Airy Guest Room
## 3957 2464679 East Village
## 3958 2465333 Spacious one bedroom in prime Fort Greene
## 3959 2465699 Beautiful Central Park Apartment!
## 3960 2465962 1 BEDROOM ENTIRE HOME/APT❤ ASTORIA
## 3961 2466687 New, spacious 1BD in Williamsburg
## 3962 2466770 New Factory Converted Studio Loft
## 3963 2466816 2 Bedroom in Carroll Gardens West, minimum 1 month
## 3964 2467087 BEAUTIFUL ARTIST APT IN NOLITA w/ Private Backyard
## 3965 2467377 Centrally located in Bayside / Nice
## 3966 2467680 Upper West Side Lux Apt. Available 8/5-8/14/2017
## 3967 2467879 Great, cozy room in Williamsburg!
## 3968 2468186 Luxury Living Near Central Park
## 3969 2471108 Prime Brooklyn 1BR-10min to City!
## 3970 2471725 Awesome Spot near HK/Theatre Distri
## 3971 2471815 Sunny Master Suite: large bdrm, priv bth, priv liv
## 3972 2471910 Studio Loft with 2 queen beds and large kitchen
## 3973 2472636 Full Floor Apt with NY Skyline views
## 3974 2473611 Overlooking Harlem
## 3975 2473861 Royal Harlem TRIPLEX Home 5 Beds
## 3976 2477138 Private Room: The cheapest deal!!
## 3977 2478415 Red Hook Classic Townhouse w Garden and Treehouse
## 3978 2478825 2 BR Designer's Apt in Heart of NYC
## 3979 2479193 Chic New York city apartment
## 3980 2485482 Boutique Apt. NYC by 24 HR Metro
## 3981 2487073 18th Floor Bright Bedroom with Private Bathroom
## 3982 2487848 Quintessential W'burg Apartment
## 3983 2487851 Quintessential W'burg Private Room
## 3984 2488022 Sunny Quiet Room In Harlem
## 3985 2488227 COZY 1 BR IN COOL LOWER EAST SIDE
## 3986 2489407 Peaceful Bed w Breakfast - Manhattan
## 3987 2489615 Big Sunny Bushwick Apartment
## 3988 2489920 Charming Studio!--Brooklyn College
## 3989 2492275 Charming Apartment in Greenpoint
## 3990 2493039 Private Room in Large Two-floor Apt w/ Backyard
## 3991 2493176 Cozy spacious UES studio
## 3992 2495596 Charming 1 Bedroom in West Village
## 3993 2496301 Comfy, Roomy Bushwick 1-BR ~ Steps from L/M Train
## 3994 2500087 NYC Steps from Central Park!
## 3995 2500560 Ingefära Hus! One bedroom Williamsburg, Brooklyn
## 3996 2501384 Private 1Bed/Bath in Sunny 3Bed Apt
## 3997 2501809 Parkside Apartment on Prospect Park
## 3998 2507612 Mamas red rm#2- profs-interns-students bklyn train
## 3999 2508374 Cozy 1br mins from CASINO JFK & NYC
## 4000 2508745 Historic Harlem 2
## 4001 2509093 Private Room in WILLIAMSBURG
## 4002 2509617 Georgous 3BD in 24-hr doorman bldg
## 4003 2510394 HUGE LUXURY 2BD/2B, 7mn TO TIME SQR
## 4004 2513351 Bright and Open Astoria Apartment!
## 4005 2514689 3 BEDS IN LOVELY 2BEDROOM/2BATH MIDTOWN RENTAL
## 4006 2514760 Fully Furnished Upper West Side 1BD
## 4007 2515876 Comfortable, spacious “ 1 bedroom “ apartment
## 4008 2516430 Lg Private Rm 10mins to Manhattan
## 4009 2517989 1BR on Quiet Block in Nolita
## 4010 2518907 Art-Packed, One-Of-A-Kind Triplex
## 4011 2519112 in the heart of manhattan
## 4012 2519255 Beautiful Brooklyn Room
## 4013 2519770 2-3 bedroom apt in Astoria NYC
## 4014 2519879 Cozy private room in L.E.S -
## 4015 2521670 Spacious Studio in Prospect Heights
## 4016 2523629 ENTIRE APT IN GORGEOUS PARK SLOPE
## 4017 2524034 Nice room Convenient to Manhattan A
## 4018 2524058 Huge 1 bedroom in the East Village
## 4019 2524213 Nice room Convenient to Manhattan C
## 4020 2524228 Nice room Convenient to Manhattan B
## 4021 2524451 Close to Maimonides Center. Room D
## 4022 2524658 Unique loft in Bushwick - Offices, yoga & roof!
## 4023 2524947 Gorgeous Apartment in Battery Park!
## 4024 2525956 Beautiful 1 Bdr in the heart of NYC
## 4025 2526152 Sunny, Child Friendly Loft.
## 4026 2529085 Sunny luxury in Bklyn's best hood
## 4027 2530057 1BD in a Quiet Brownstone in Harlem
## 4028 2531865 Flatiron studio + dining / sunlight
## 4029 2532068 Beautiful Prewar UWS Apartment
## 4030 2532443 LUXURY 2BED CONDO / OUTDOOR STONE TERRACE
## 4031 2532873 Beautiful Master Bedroom in the Heart of Astoria
## 4032 2536005 Bright Room in Battery Park!
## 4033 2538248 Large newly renovated studio
## 4034 2539759 /
## 4035 2540173 Elegant Triplex Townhouse
## 4036 2545184 Great room! Good for med students!
## 4037 2547198 Jewel Box Studio in Soho / Nolita
## 4038 2551532 Charm & Beauty close to Manhattan
## 4039 2552606 Beautiful and cozy 1BR Apt
## 4040 2554110 Great east village studio!
## 4041 2554749 Two real bedrooms near Central Park
## 4042 2557654 East Village Charm
## 4043 2559129 Large private bedroom in Manhattan
## 4044 2560559 Sunny Private Room Near Prospect Pk
## 4045 2563135 Sunny Private Williamsburg room
## 4046 2563440 Big & Cozy Private Room
## 4047 2563611 Apartment 6
## 4048 2563764 Huge room in South Prospect Park
## 4049 2563997 Garden Duplex in Clinton Hill
## 4050 2565087 Williamsburg: great room with a sunny terrace!
## 4051 2569466 Shared studio in East Harlem
## 4052 2569629 Beautiful 2 Bedroom in Quaint Cobble Hill
## 4053 2569808 Williamsburg, Brooklyn Apartment
## 4054 2570488 Union Square - Best NYC location
## 4055 2570561 Charming apartment river view
## 4056 2571224 Williamsburg Bedroom & Study
## 4057 2571283 Entire home 1 BR+ office or 2 BR best UWS location
## 4058 2574386 Luxury Apt - west village/Chelsea
## 4059 2576750 Better than hotel
## 4060 2577467 1 BR with private bath new building
## 4061 2578731 Spacious Modern 2BD Apartment
## 4062 2581456 Charming Modern Studio w/Large Garden
## 4063 2582812 Brooklyn loft apt in industrial building
## 4064 2584258 Lovely home-y room in Bushwick
## 4065 2586484 Large Private Room
## 4066 2586794 Private Bedroom in Spacious Brooklyn Apartment
## 4067 2586923 Beautiful Prospect Park South room
## 4068 2590590 Washer&Dryer - 6 Subway stops to NYC / 15 min ride
## 4069 2592640 Great room with awesome amenities!
## 4070 2598087 Sunny Private Room w/Exposed Brick
## 4071 2599963 Amazing Penthouse Studio (Midtown East)
## 4072 2600199 Williamsburg Dream loft
## 4073 2601402 Cozy 1BR in Beautiful Brooklyn
## 4074 2601899 Sun-drenched Artist Loft
## 4075 2606083 Large Garden Apartment in BK Brownstone
## 4076 2606370 Beautiful Brownstone near Central Park
## 4077 2607583 Exquisite Furnished 1-BR Studio
## 4078 2607741 Stylish Comfort 1-BR Upper East
## 4079 2608217 Lovely, quiet 1-Bedroom Apt
## 4080 2611458 close to Manhattan country setting
## 4081 2611765 Luxury One Bedroom Upper West Side
## 4082 2611869 LRG 1 Bdrm w/office and backyard
## 4083 2612035 UPPER WEST SIDE 2BR APT
## 4084 2613864 Sunny Studio NYC West 50's
## 4085 2615065 Beautiful & Tranquil Oasis in a Great Location
## 4086 2618288 Tour like a local
## 4087 2619549 Charming, Modern 2BR | Central Park
## 4088 2619802 Incredible 2-BR w/ Kitchen Island!
## 4089 2620068 Cute Apartment with Great Bathroom!
## 4090 2620837 Spacious room in huge loft
## 4091 2626457 Cozy Private Room Upper West Side - with Deck!
## 4092 2627737 Large Sunny Apt, Great Location!
## 4093 2627940 Garden Appartment in Clinton Hill
## 4094 2627951 Cozy private space in a brand new apartment
## 4095 2628191 Charming Cozy Cool 2BR Apartment.
## 4096 2631224 Tasteful Room in Charming Two Bedroom Apartment
## 4097 2632699 Budge private room F
## 4098 2633717 Private room in friendly Brownstone
## 4099 2634963 North Central Park Apartament
## 4100 2635078 GREAT 2bed/2bath/patio, FORT GREENE
## 4101 2635794 room in a two bedroom apt, whole apartment
## 4102 2635913 beautiful 2br 2bath 2 balconies.
## 4103 2636139 Sunny apt steps from Prospect Pk!
## 4104 2636396 Private room in in East Village
## 4105 2636532 GORGEOUS Newly-Renovated 2-BR Flat
## 4106 2636534 Cozy Room in Lower East Side- NYC
## 4107 2636643 darling small studio
## 4108 2636731 Private room in Hell's Kitchen
## 4109 2636762 Beautiful Prime Williamsburg Apt
## 4110 2637014 Apt #2: Beautiful 2BR/1BA Crown Hgt
## 4111 2637533 Spacious Studio Suite w Adjoining Sunroom
## 4112 2639521 PRIVATE RM #1 STARTING AT $67 A NIGHT
## 4113 2640467 Private Room with a View in Brownstone Brooklyn
## 4114 2640764 Cozy Room in Williamsburg 3BR
## 4115 2641730 Artist’s Pad on Prospect Park
## 4116 2644321 Bright, comfy 1 Bedroom apt in Manhattan
## 4117 2645558 A bright spacious one-bedroom
## 4118 2650690 Carroll Gardens entire apartment
## 4119 2651125 Charming Studio / East Village, NYC
## 4120 2651810 Quiet Queens Apt in middle of NYC
## 4121 2652865 Classic Upper West Side Getaway!
## 4122 2653186 Bright, spacious 1BR in UES
## 4123 2653544 Common Area + Room in Spacious Loft-Like Apt.
## 4124 2653644 Private 1BR W/ Private Bathroom in Chinatown
## 4125 2656394 GORGEOUS LUXURY APARTMENT AND VIEW!
## 4126 2657689 Your Amazing Vacation Apartment!
## 4127 2658325 Manhattan, East Village next to Lower East Side
## 4128 2659183 Luxury 5BR Townhouse, Upper East
## 4129 2659448 Bedstuy Apartment for Rent
## 4130 2659477 Stunning 1BR apt UES/Harlem
## 4131 2659732 Private room in Charming Greenpoint
## 4132 2659961 Lovely spacious studio in LES
## 4133 2660538 A Photographer's Bohemian Artist Dream 1BD
## 4134 2660576 Come see Brooklyn, New York
## 4135 2661098 New York City, a safe and (mostly) quiet place.
## 4136 2663243 Private Room + Balcony in Bushwick.
## 4137 2663296 Spacious One Bedroom in Gramercy
## 4138 2664975 Cute Studio in Bushwick BK, NYC
## 4139 2668311 Quaint Studio Apt. $1300 monthly for one person
## 4140 2669352 Cozy 3 bedroom on upper west side
## 4141 2669366 Priv. Room in a House,15min,Manhatt
## 4142 2670522 Zen Bedroom in Artist Loft in Williamsburg
## 4143 2671402 1BR - gym, laundry in apt, roof
## 4144 2671737 Private room in shared 2BR
## 4145 2674267 Comfy UWS Room near Central Park & Times Square
## 4146 2677779 Quaint Room
## 4147 2678773 Entire spacious loft Williamsburgh
## 4148 2679171 Cozy, close to everything in NY :)
## 4149 2683387 Great Room In Mid Town New York NYC
## 4150 2683455 4BR Family apt 15 min to Manhattan
## 4151 2683758 City Life in Harlem
## 4152 2684223 Cozy Clean Room in Bed Stuy
## 4153 2685701 Spectacular Williamsburg 2 BR Loft
## 4154 2685844 YUGE Sunlit Furnished Room!
## 4155 2686002 Large Clean Room Midtown East NYC
## 4156 2686412 Clinton Hill BdRm in Artists' Home
## 4157 2687083 Cozy 1Bdr in Bed Stuy/Clinton Hill
## 4158 2687375 Queen Size Foam Mattress
## 4159 2687606 Spacious Gramercy 1bdrm. Clean!
## 4160 2690370 Spectacular Views of Mid-Town
## 4161 2694274 Fort Greene 2 bedroom Apartment
## 4162 2694916 BREATHTAKING VIEWS! POOL/GYM ** Central Park
## 4163 2695367 Bright spacious 3bd; near subways and bus
## 4164 2695372 Charming Studio in Gramercy
## 4165 2695469 W50's Sunny Studio in a 24/7 DM BL
## 4166 2698645 Just 3 Minutes to Midtown! Live like a NYer!
## 4167 2698984 Huge Modern Waterfront Home
## 4168 2700296 Sunny Bedroom for two
## 4169 2700596 Comfortable bedroom for one person
## 4170 2702351 Spacious, Safe, and Furnished
## 4171 2702489 Charming Entire ❤️ apartment
## 4172 2707194 Large Sunny Apartment
## 4173 2707824 Bedroom with Queensize Bed in Nolita/SoHo
## 4174 2708371 Factory Converted 1BR Loft Brooklyn
## 4175 2710417 Cosy One Bedroom in Greenpoint
## 4176 2710442 Charming studio, great location!!!
## 4177 2711082 Beautiful Home by Central Park
## 4178 2713887 Furnished Studio UES near the Met
## 4179 2714699 Sunny Flex 2br Loft in Brooklyn
## 4180 2716009 Large Two Bedroom Brooklyn Loft
## 4181 2716889 Apt #1: 2BR/1BA w/ Backyard
## 4182 2716929 Room In Duplex Apartment Steps to Prospect Park!
## 4183 2719640 Independant Suite in townhouse: Big, Bright & Calm
## 4184 2719792 Perfect location, Bushwick Full room in 2 room apt
## 4185 2721610 Cozy and quiet 2bd on the UES
## 4186 2722391 Beautiful Room In Williamsburg
## 4187 2722693 Luxury High Rise Near Central Park
## 4188 2722983 GREAT FOR FAMILIES AND GROUPS!!!
## 4189 2723019 Cozy & modern 1 br apt in Brooklyn
## 4190 2723338 Peaceful Bedroom in Brooklyn
## 4191 2723515 Stylish Pre-war
## 4192 2723554 Studio apartment Chelsea NYC
## 4193 2727166 Cozy Room by Kaufman Studios
## 4194 2727766 Convenient Private Room in Spanish Harlem (SpaHa)
## 4195 2728293 East Village w/ Private Bathroom & Roof & Elevator
## 4196 2730497 Entire Private Garden Floor of Brownstone
## 4197 2735650 DISCOUNTED Entire Apt: Prime UWS location!
## 4198 2736911 Full apt-Brooklyn-near park, SUNNY!
## 4199 2738377 Carroll Gardens Brownstone
## 4200 2739420 Cheerful 1 BD in Harlem, New York
## 4201 2739577 Current Location
## 4202 2739707 Vintage Bed/Bath in Bed-Stuy
## 4203 2739793 Modern Sunny 2-Bedroom in Bushwick
## 4204 2739884 Lovely Time Square/Theater District
## 4205 2739978 Spacious Downtown Apartment
## 4206 2743624 Luxury 2 BEDS/2 BATH Midtown/Central Park
## 4207 2744106 BKLYN private room w/ private bath!
## 4208 2744185 PRIVATE, GIGANTIC full floor loft w/priv bath
## 4209 2745620 Small Room Astoria20minToManhattan
## 4210 2748064 Spacious 1 bedroom, prime location.
## 4211 2748094 Union Square spacious studio
## 4212 2748128 The Haven 2beds
## 4213 2751311 Beautiful Large Williamsburg Studio
## 4214 2752977 Carroll Gardens townhouse
## 4215 2754006 Cool apt in the BEST location in NYC!
## 4216 2754179 Fabulous Apt w/ Gorgeous Bathroom!
## 4217 2755909 Cozy sunny Apt in NYC
## 4218 2756159 Living Room sofa Bed in Chelsea2
## 4219 2757036 Bayview room
## 4220 2760968 Sunny Room in the Heart of it All!
## 4221 2761766 Spacious apt. in Brownstone
## 4222 2763206 COZY PRIVATE BR AT59TH ST MANHATTAN
## 4223 2764516 East Village Manhattan NYC Bedroom!
## 4224 2769718 Bright and spacious 2 bed apartment
## 4225 2771126 Large Loft in Brooklyn w/ Deck
## 4226 2771877 Central Park Treasure
## 4227 2772111 It's very warm and friendly.
## 4228 2773754 Lovely 1-bedroom on Prospect Park
## 4229 2774381 Brooklyn Studio
## 4230 2774934 Females only for midtown apt share
## 4231 2775553 Experience ELEGANT LIFESTYLE
## 4232 2776119 Studio Apt Avail - Convenient to City & Hot Spots
## 4233 2778250 Queen size bedroom with river view! (Female only)
## 4234 2781747 Beautiful brownstone apartment
## 4235 2782449 1BD on Smith St. in Carroll Gardens
## 4236 2783468 Nice 1 Bedroom in Lovely Building
## 4237 2784311 1 Bedroom East Village, NYC
## 4238 2786015 Comfortable Strivers Row Hideaway - Monthly Rental
## 4239 2788298 Fort Greene Perfect Location
## 4240 2789713 New- Downtown Brooklyn Apt- 10 min Manhattan
## 4241 2791446 CUTE Studio in the heart of Chelsea
## 4242 2791688 Downtown NYC Soho Loft 2br
## 4243 2791758 Bright Modern Room with Balcony and City Views
## 4244 2791797 Greenwich Village Chic Cottage
## 4245 2793004 Sunny Brooklyn Heights Apartment
## 4246 2793630 Gorgeous Loft in Prime Location 2 with Rooftop
## 4247 2793740 East Village loft; authentic NY.
## 4248 2793834 Central Park beauty
## 4249 2794725 LOOK! Attached single family
## 4250 2794734 Spacious brownstone parlour
## 4251 2794762 Beautiful Sunny fully Furnished Studio
## 4252 2799360 Beautiful 1 Bed - Great Transport Links
## 4253 2801214 Huge duplex in chic area of BK with deck.
## 4254 2801300 cozy room /female guests
## 4255 2803013 Columbus Circle/Central Park - WIFI
## 4256 2803944 Lovely Private Bedroom in 2BR Apt
## 4257 2803981 Room in Duplex Apartment!!
## 4258 2804065 Chic Mid Century Modern 1 BD +Gym +Laundry +AC
## 4259 2804557 Cozy bedroom in shared 2br apt
## 4260 2804989 Sunny, colorful, 1BD close to city
## 4261 2805293 Large & Stunning 5th Ave 1 BR
## 4262 2806791 PRIVATE ROOM IN NEW YORK MANHATTAN
## 4263 2807615 1 bedroom in the heart of the UWS
## 4264 2807939 Ditmas Park 1BR
## 4265 2814076 Charming 1br apartment in Astoria
## 4266 2814931 Large New York style loft
## 4267 2816152 Bright/Sunny/1block from Bedfordsub
## 4268 2817967 Beautiful Studio Suite! Upper East
## 4269 2818471 Sunny Bedford Stuyvesant Townhouse
## 4270 2821079 Spacious 1 BR apt in the UWS
## 4271 2821294 Beautiful Furnished Room!
## 4272 2821782 Sunny, ample, quiet w/balcony!
## 4273 2823023 Cozy One Bedroom + Loft in Manhattan, NYC
## 4274 2824329 Spacious Studio Loft in Brooklyn
## 4275 2825322 nice room in bedstuy D
## 4276 2830518 Safe Clean Sunny, 15 min Manhattan
## 4277 2831424 Cozy Studio On The Upper East Side
## 4278 2833998 Clean apartment at Harlem 125/lenox.
## 4279 2835159 Large studio
## 4280 2835711 Sunny West Village apt, 2 beds
## 4281 2835738 Apt Lincoln Center And Central Park! Best location
## 4282 2836845 Old World Elegance in Astoria!
## 4283 2838061 Charming Bedroom in renovated Apart
## 4284 2838354 Large 1-bedroom, 2 blocks from park
## 4285 2845257 Stunning 2BR Penthouse w/City View
## 4286 2847633 Charming, central apartment
## 4287 2847652 Cool and comfortable room for rest and relaxation
## 4288 2848235 Perfect room for one in beautiful home
## 4289 2851945 Stylish Spacious w Lrge Deck 11231
## 4290 2854050 Cozy bedroom in the heart of Bushwick
## 4291 2856036 Modern Loft, Large Private Terrace.
## 4292 2856478 Charming Fort Greene 2 BR
## 4293 2856770 Family Friendly 3 bedroom 2 bath w. Washer/Dryer
## 4294 2856890 Gay Friendly Room Williamsburg NYC
## 4295 2858010 ☀️Sunny Central Park North☀️
## 4296 2862900 Charming & Bright Studio @ W 50's
## 4297 2863223 Cozy Room with Private Entrance
## 4298 2863408 Newly Renovated Modern 1-Bed Studio
## 4299 2863530 APPARTEMENT 2 CHAMBRES ASTORIA NY
## 4300 2863589 Entire Private Modern Studio UPW Manhattan
## 4301 2863696 Live in a doll factory!
## 4302 2864637 Ting Ting's Home in Heart of Brklyn
## 4303 2865117 Huge and beautiful Park Slope Apt
## 4304 2867115 Room for Rent - Close to City & Clean
## 4305 2867463 Brooklyn Brownstone - Prospect Park
## 4306 2870603 One Bedroom Apartment
## 4307 2870840 Cozy private room in beautiful apt
## 4308 2872288 3 BR duplex with huge backyard
## 4309 2872353 Modern 1-Bed Near Central Park
## 4310 2874695 Pvt Bedroom in Williamsburg Central
## 4311 2874932 The Notorious B.N.B. { The Erhart II }
## 4312 2875923 Cozy, Clean, Spacious Apartment!
## 4313 2876055 Williamsburg Room - 2 Blocks to L Train
## 4314 2879157 Family Friendly Apt
## 4315 2880336 quaint apartment with city views
## 4316 2880806 2B & Private Garden A Williamsburg Spacious Escape
## 4317 2880864 Awesome Apartment in Astoria
## 4318 2882666 UWS Large clean 1Br entire apt, 2 stops fromTiMESQ
## 4319 2883054 Urban Holiday...
## 4320 2887581 June sublet in Prospect Heights
## 4321 2887761 Quiet & Central West Village Artist’s 2 Bedroom
## 4322 2888088 Private space in Brooklyn
## 4323 2888877 Sunny, clean studio.
## 4324 2889377 garden view / female guest
## 4325 2889387 New York City near Staten Is. Ferry
## 4326 2889781 Holidays in Manhattan
## 4327 2895511 Historic Bed-Stuy
## 4328 2895820 Quiet Room in Central Location
## 4329 2896760 Safe, cozy & minutes to NYC
## 4330 2897507 Private Room in Cozy Brooklyn Apt. for Female
## 4331 2897714 Amazing and Large Modern Studio
## 4332 2899082 Large, Bright Williamsburg Loft
## 4333 2904330 Spectacular Prospect Heights Loft
## 4334 2904571 Carroll Gardens Brooklyn Apartment
## 4335 2906314 Sunny 1BR with Terrace/City Views
## 4336 2908211 Lovely Park Slope Apt, Brooklyn
## 4337 2908417 Huge Room in Brooklyn Loft
## 4338 2909006 Loft Like Studio in Luxury Building
## 4339 2909461 Spacious One Bedroom in UWS
## 4340 2917698 Crown heights Brooklyn House NYC
## 4341 2918225 Central Penthouse Room, Terrace & Private Bath
## 4342 2918393 Beautiful Garden rowhouse apartment
## 4343 2918732 West Chelsea Brownstone Apartment
## 4344 2918764 Beautiful Spacious Brooklyn Room
## 4345 2919062 Spacious 1 Bedroom in LIC
## 4346 2919330 NearWilliamsburg bridge 11211 BK
## 4347 2919578 Artist’s Pad Prospect Park
## 4348 2919885 Spacious, Sunny 2BR near subway
## 4349 2922197 Furnished privte room
## 4350 2924528 Spacious room in the heart of Manhattan (Downtown)
## 4351 2924588 Exclusive Manhattan , 24 h doormen
## 4352 2924834 RARE: Large Room + Big Townhouse = Better Stay
## 4353 2925138 Steps from Central Park
## 4354 2925397 Quaint room in artist's apartment.
## 4355 2927005 Charming 2 Bedroom by Prospect Park
## 4356 2931544 Bright 1BR in heart of Greenpoint
## 4357 2931595 Light filled SoHo walk-up
## 4358 2931859 2 BR Sun Filled Feng Shui W Village
## 4359 2932263 Cheery Brooklyn Heights Studio!!
## 4360 2932779 Huge Room near Prospect Heights
## 4361 2933772 Large, Bright Apt Near Central Park
## 4362 2934382 Sunshine & Cozy Bedtime in Brooklyn
## 4363 2935456 UWS Luxury Studio Near CentralPark
## 4364 2936054 October SPECIAL!! Enjoy the Holiday in NYC! Sale!
## 4365 2936192 Bright Quiet Room in the W Village
## 4366 2936517 Boerum Hill 2BR Garden Apartment
## 4367 2939670 Bright Room Near JFK ,LGA & Train with AC
## 4368 2940007 Charming one bedroom in the LES
## 4369 2940163 Sunny 1BR near Central Park close to Columbia U.
## 4370 2940729 Le Petit Château
## 4371 2941297 Full 1 bedroom Apt in GREAT Locale
## 4372 2942129 Bright Large Room near JFK, LGA & Train 2 beds
## 4373 2942732 Large 1 bdrm, River views!
## 4374 2943724 3 Bedroom @ JFK CASINO BEACH LOCALE
## 4375 2947668 Location Queen Elena
## 4376 2949128 FAB APT & LOCALE in HELLS KCHN PRIVATE SAFE COMFY!
## 4377 2952861 Photography Location
## 4378 2953058 Film Location
## 4379 2954785 Trendy studio NYC centrally located
## 4380 2956443 Large 2 Floor Apt 2 Bdrm Sleeps 8
## 4381 2958412 A beautiful modern 3 bedroom apt
## 4382 2958912 STUNNING! 1BD Jr in Midtown East NY
## 4383 2959036 Sunny Manhattan Studio
## 4384 2965008 Family Friendly Brooklyn House
## 4385 2966685 Charming West Village Studio - Amazing Location!
## 4386 2967631 Upper East Side 1BR
## 4387 2968070 Near Times Square and Hell's Kitchen
## 4388 2969427 Artist's Studio in Mansion
## 4389 2969489 Great Room, Bedford L Train!! (10min to Manhattan)
## 4390 2969803 King Bed or Two Singles - You're choice!
## 4391 2969919 Spacious Junior 1BR Apt in USQ/Flatiron
## 4392 2974433 Stylish Williamsburg Loft Apartment
## 4393 2974877 Sunny and Stylish on the Park
## 4394 2974957 Open/Sunny 2 BR in Prospect Heights
## 4395 2975715 August sublet in Greenwich Village
## 4396 2976105 Crown (Prospect) Heights Brooklyn Room
## 4397 2976758 Prime location in the east village
## 4398 2977232 Priv Room in Artists UES Apt, Central Park & Train
## 4399 2978421 Hip Chinatown Apt in Great Location
## 4400 2979097 Perfect NYC Flat! Modern!
## 4401 2979714 Cozy Private RM Near Central Park N
## 4402 2983952 Williamsburg Oasis of Art
## 4403 2984662 Brooklyn Heights - 1 Bedroom
## 4404 2985678 2BR on Express 2 stops to Manhattan
## 4405 2987465 Chic, Modern Apt Near Central Park!
## 4406 2994478 ☆ Central Park - Home Away From Home
## 4407 2994536 The Perfect Greenpoint Getaway
## 4408 2994659 Private cozy room
## 4409 2995000 Bright Brooklyn garden apartment!
## 4410 2995209 NEW! Gorgeous 1-BR, Colorful Design
## 4411 2995459 Cozy & Large Corner Flex 2BR Loft
## 4412 2995701 Sun filled 2BR in BedStuy Townhouse
## 4413 2997377 Cosy HUS Room, furnished & all utilities included!
## 4414 2998174 Sanctuary Bedroom in Huge Duplex
## 4415 2999527 One-of-a-Kind Luxury NYC EPIC VIEW!
## 4416 3003127 Private Room with Full Amenities
## 4417 3003228 Prime Tribeca! Breathtaking View
## 4418 3004348 Modern Stay in Brownstone Brooklyn
## 4419 3004563 The spot
## 4420 3005261 Hudson Heights Art Deco
## 4421 3005990 Beautiful Large Room in Park Slope
## 4422 3010328 1BR apartment in Brooklyn
## 4423 3010430 Studio in Center of Chelsea
## 4424 3010577 Old World Garden Apartment
## 4425 3010664 Giant 3 story family house, 15 min to Manhattan
## 4426 3010988 Big Private room in Brooklyn Brownstone
## 4427 3012871 Williamsburg Luxury Apton Bedford
## 4428 3013158 Alcove Studio in Downtown Manhattan
## 4429 3013383 Unique Brooklyn Brownstone
## 4430 3013404 Cozy Williamsburg Apartment
## 4431 3013668 Gorgeous Apt in Bushwick Brooklyn
## 4432 3017320 Dani private room in Manhattan
## 4433 3018285 Heart of Manhattan: Charming 1BD
## 4434 3018422 Private Room with Private Bath
## 4435 3019237 Carroll Gardens Row House, Brooklyn
## 4436 3021617 1BR Doorman Bldg Boerum Hill BK
## 4437 3026848 NYC Finest location!~amazing view!!
## 4438 3029690 Safe Sunny South Facing Near All
## 4439 3032355 Cozy bedroom - Upper East Side
## 4440 3037740 Beautiful turn-of-the-century home
## 4441 3038614 Lovely, Huge, Open, Quiet, Spacious, Sunny, A/C
## 4442 3038797 2 Queen beds Studio Loft in Brooklyn
## 4443 3039110 The proud New Yorker Room
## 4444 3039332 1910 Town House in leafy Kensington
## 4445 3039888 Very unique - half block from Industry City
## 4446 3040585 Awesome Studio East 58&3rd avenue!
## 4447 3040654 Sunny Bedroom In Astoria!
## 4448 3041280 Crown Heights Duplex Apt.
## 4449 3041785 Luxury Space East Village 3 Bedrm sleeps 7
## 4450 3041973 Perfect 1BR / Doorman / 22 St & 2nd Ave
## 4451 3042553 Quiet bedroom in East Village NY.
## 4452 3043029 2 bedroom in the East Village
## 4453 3043467 Room in Duplex Apartment
## 4454 3046941 Awesome 2 bedroom~murray hill~deal
## 4455 3048234 Best Deal/Columbus Circle/Renovated
## 4456 3050544 Large 2 Full BR 15min to Manhattan!
## 4457 3052726 Great apt in awesome area
## 4458 3052904 Spacious Upper East Side Pvt. Room
## 4459 3056451 One Bedroom close to everything!
## 4460 3058087 Fully Furnished Luk Room including Air Conditiner!
## 4461 3059273 1 bedroom in Nolita/Soho
## 4462 3060297 Great Chelsea block near Highline & Subways
## 4463 3060745 Furnished Sublet, Manhattan, Harlem
## 4464 3061093 Penthouse in Williamsburg w/ Patio!
## 4465 3061106 Private Room in Cozy Downtown Apt!
## 4466 3061995 Explore NYC - 1 Stop to Manhattan!
## 4467 3066892 Huge 1br Loft in Brooklyn
## 4468 3067062 Musician's Private Room
## 4469 3067093 Stylish East Village Studio near Union Sq
## 4470 3067244 Bright Prospect Park Charmer
## 4471 3067670 sunny 3 Bedrrom great view, Chelsea
## 4472 3068047 Upper East Side Steal
## 4473 3068145 Cozy & Modern Studio | Central Park
## 4474 3068852 Beautiful & Modern | Top Location!
## 4475 3070876 Fantastic fully furnished room
## 4476 3072242 Sunny and Spacious apt in Bushwick
## 4477 3073195 Spacious room in great neighborhood
## 4478 3079125 Cute and cozy in Manhattan
## 4479 3079237 Sunny clean studio in heart of LES
## 4480 3079567 Nolita / Soho A cozy 2 bedroom apartment.
## 4481 3080233 1BR UNFURN SUBLET in Williamsburg
## 4482 3081771 Luxurious Brooklyn Getaway!
## 4483 3083197 Spectacular East Village Townhouse with 3 patios
## 4484 3083899 Charming Studio on Upper West Side
## 4485 3084473 One Bedroom Apartment
## 4486 3089577 Spacious 2 bd 2 bth apt 45 min from Time Sq sleep6
## 4487 3090474 Times Square Unique Studio
## 4488 3090922 Private Rm in Cozy Wburg Loft, 1 blk fr Bedford L
## 4489 3091202 Great 1bd!Murray Hill NYC~renovated
## 4490 3091872 Beautiful private 2 bedroom in prime Greenpoint
## 4491 3093240 Lovely Guestroom in Brownstone
## 4492 3093469 Amazing Private Room in Brooklyn - Fort Greene
## 4493 3093616 Quite 2 bedroom apt. in Brooklyn
## 4494 3095119 Great apartment, heart of Brooklyn
## 4495 3095348 True Loft in Williamsburg
## 4496 3095477 Luxury Family Sunny 2 bdrm 1 bath Apt Park Slope
## 4497 3095502 Cozy 1BR Apartment by Subway
## 4498 3098703 At home in Historic Harlem
## 4499 3100156 Your own studio apt in Upper East
## 4500 3101058 Entire One Bedroom Apartment next to Prospect Park
## 4501 3101140 Large Sunny Room with Huge patio in Wburg
## 4502 3103596 BIG Private Room in NYC APT.
## 4503 3104652 West Chelsea Apt! AMAZING Location!
## 4504 3105531 Bright & lovely Upper East Side apt
## 4505 3105986 Steps away from Brooklyn museum
## 4506 3106154 Safe, Cozy, Cute and Cheap
## 4507 3111416 Charming and Artsy LES 1-Bedroom
## 4508 3112284 Spacious room in flushing ny ❤️
## 4509 3112872 Sunny Studio Near Central Park
## 4510 3112953 Spectacular Townhouse with your own private patio
## 4511 3114929 Modern Stylish and Legendary.
## 4512 3116279 Cozy Studio on McGolrick Park
## 4513 3116519 Large 900 sqft Artist's Apartment
## 4514 3120723 Charming Private Studio in LES
## 4515 3120957 Clean, Safe, Convenient, Comfy
## 4516 3121176 1 BEDROOM APT IN PRIME WILLIAMSBURG
## 4517 3121851 Amazing 1BD! Renovated Col Circle!!
## 4518 3122230 Cozy Harlem Home
## 4519 3122636 East Village - Family friendly, specious and quiet
## 4520 3122731 Park Slope 2 bedroom - Amazing Access to All!!!
## 4521 3128865 charming, sunny and quiet studio
## 4522 3129731 Dbl Room with Terrace and View!
## 4523 3131756 Beautiful 3 Bedroom apt in Bed-Stuy
## 4524 3131982 Spacious, Sunny Apartment in BK!
## 4525 3132960 Lovely Park Slope Pied a Terre
## 4526 3133055 Relax in an oasis of quiet in a beautiful house!
## 4527 3136535 Peaceful, Upper East Side Studio
## 4528 3137426 Gramercy Luxurious 2 BD condominium
## 4529 3137906 Lovely room in Williamsburg
## 4530 3139489 Nice Cozy Room in BROOKLYN, NYC, NY, Bushwick
## 4531 3139749 Room in Manhattan=15 min to TimesSq
## 4532 3139918 Bright Quiet 1BD in the Heart of BK
## 4533 3143311 Lower Eastside - Perfect Room
## 4534 3143596 Open Loft in Historic Townhome - Near Metro & Food
## 4535 3143649 Lovely Apt/Room in Ditmas Park, BK
## 4536 3143838 Williamsburg Penthouse Private Room
## 4537 3144135 Cozy Garden View Apartment! Perfect for Families!
## 4538 3145484 Historic Townhome for Photo and Video Shoots
## 4539 3147439 Charming West Village Studio With Cat
## 4540 3153140 Four-Bedroom Victorian Near Ferry
## 4541 3153464 Sunny 1 BD in trendy Prospect Heights Brooklyn.
## 4542 3153603 Private 1 bd Apt 1 blk off the J
## 4543 3157330 clean, casual 2BD apt in bed-stuy!
## 4544 3157420 Giant Private Room in Battery Park
## 4545 3161739 Up among the trees in Bed Stuy
## 4546 3162817 Sunny, Williamsburg Condo
## 4547 3164173 Bright Studio in New WB Building
## 4548 3164997 Charming XL 1br in Astoria
## 4549 3166540 Brownstone Duplex with Garden,Deck & 8' pool table
## 4550 3166564 Family-friendly 2BR w Rooftop
## 4551 3167768 Family-friendly 3-bedroom condo
## 4552 3168120 SPACIOUS & SUNNY East Village Gem
## 4553 3171234 ~ PRIME location Williamsburg sunny 3BR loft ~
## 4554 3171480 HUGE 1BR in Prime West Village
## 4555 3171880 Light Filled Loft Studio in Fort Greene
## 4556 3172212 Spacious room in artist Loft
## 4557 3172778 PRIME WILLIAMSBURG FAMILY ART LOFT
## 4558 3173148 BEAUTIFUL Williamsburg Palace!
## 4559 3173412 Big room & private bathroom!
## 4560 3175088 SPACIOUS ARTIST LOFT IN CHELSA
## 4561 3176526 Great room with private bathroom!!
## 4562 3176553 Studio Plus at Hilton West 57th
## 4563 3176655 Lovely Single Family House in South Slope
## 4564 3176874 New 2 Bed.apt. 10 min to NYC! one block from train
## 4565 3177630 Large Studio w/ NEW MATTRESS in UES
## 4566 3177702 Brooklyn Flat in Historic Row House
## 4567 3181376 Homey, inviting 1BR w/ lots of room
## 4568 3185489 Private Bedroom in Nice Apt. Near Riverside Park!
## 4569 3185829 2BR Private Apt Guest Homestay
## 4570 3186103 Park Slope 3 BR Duplex with Garden
## 4571 3187925 Brownstone Luxury Apartment Facing Ft.Greene Park
## 4572 3191450 Cozy Bedroom by Prospect Park BKLYN
## 4573 3191678 Private Room in Riverdale NY
## 4574 3191925 Art Room + Backyard in Williamsburg
## 4575 3198018 Park slope 2BR duplex with garden
## 4576 3198365 Cozy Studio Close to Central Park
## 4577 3198824 Bright 1 bedroom near Columbia
## 4578 3199681 Bright & Sunny FULLY FURNISHED Room
## 4579 3200198 Hell's Kitchen One Bedroom (near Times Square)
## 4580 3200522 Brooklyn 3BR Near Subways
## 4581 3200728 Sunlit Room near Prospect Park!
## 4582 3201696 Cozy 5 Bdrm in Historic Harlem NY
## 4583 3202590 The Lincoln
## 4584 3205292 Large Sunny Open Brooklyn Apartment
## 4585 3206224 Improved Response Rate@ The Valley
## 4586 3206379 Luxury apartment in Manhattan.
## 4587 3207986 Modern loft in Cobble Hill, BK
## 4588 3208188 3BR Carroll Gardens townhouse loft
## 4589 3208609 W'burg Brooklyn, Sunny, Spacious, Private
## 4590 3208747 Cute UWS Studio Near Central Park Clean & Quiet
## 4591 3208904 Chic Designer’s Room & 2 Beds in Manhattan LES
## 4592 3209866 Cozy 1br - Fort Greene, Brooklyn
## 4593 3209980 Private room in 2B East Village!
## 4594 3210405 BEAUTIFUL DESIGNER SOHO LOFT
## 4595 3212765 A single room that converts with bathroom
## 4596 3213712 LUXURY 1 BR MIDTOWN w POOL & GYM
## 4597 3213813 Beautiful Room+Shared Living Room
## 4598 3215486 Large sunny private room downtown
## 4599 3215660 Comfortable sofa bed in Manhattan
## 4600 3215722 Airy Duplex Room with Private Bath
## 4601 3216134 Tranquil Washington Heights Space
## 4602 3216335 Quiet Park Slope Apartment - August specials!
## 4603 3216400 1 BR minutes from Central Park!
## 4604 3217221 Quiet, Full bed, Sleeps 1 or 2 ppl
## 4605 3218320 SOHO Studio Best Location
## 4606 3218526 Sunny Suite in Historic Brooklyn
## 4607 3219401 Lovely room in Greenwich Village
## 4608 3219654 2 Bedroom Garden Apt. Park Slope
## 4609 3219835 Beautiful Row House Steps From Park
## 4610 3220115 Large 1-bedroom in Brooklyn
## 4611 3220178 Artist's home near park and trains
## 4612 3220725 Orchard St
## 4613 3223080 Modern Renovated Luxury 1BR - Soho
## 4614 3224913 Private Nook in Bushwick Improved Response Rate
## 4615 3225975 Spacious Townhouse Great for Families & Friends
## 4616 3227002 Sunny 2 bedroom in Fort Greene
## 4617 3230053 Modern 1BR apt in Greenpoint/Williamsburg Brooklyn
## 4618 3231460 Bright & Spacious Fort Greene 1 Bed
## 4619 3235070 Peaceful, beautiful home away
## 4620 3236301 Private room in Harlem
## 4621 3236385 Cute and Cozy Two Bedroom in Sunset Park
## 4622 3236977 Private 3 Floor Whole Hse/Garden
## 4623 3237160 Spacious East Village Gem -Union Sq
## 4624 3237602 STUNNING WILLIAMSBURG HOME W/GARDEN
## 4625 3238109 Cozy 1 BR in a 4br/2ba apartment!!!
## 4626 3238355 Amazing & Bright Loft-style Room
## 4627 3238517 Brooklyn Cozy Garden Apt
## 4628 3240518 Elegant 1876 Boerum Hill Brownstone
## 4629 3240838 Sunny and cozy room in Midtown
## 4630 3241287 Small Cozy Private Room in NYC
## 4631 3241502 Modern Bedroom & Living Room Combination!
## 4632 3241858 Right in the center of Manhattan
## 4633 3245000 Spacious prewar apartment in heart of Greenpoint
## 4634 3247291 Comfort and Charm in Harlem Brownstone near Subway
## 4635 3248010 Chic Aptmnt close to Barclay Center
## 4636 3248526 Beautiful Comfortable Apt in North Manhattan
## 4637 3248671 Private Room in Artist's Loft
## 4638 3249076 One stop from Manhattan, Fort Greene.
## 4639 3249078 Brooklyn Heights 1.5BR and Cat Sit
## 4640 3249253 Panoramic Penthouse - 30% OFF
## 4641 3249726 High Ceilings, Period Details
## 4642 3250685 Great East Harlem spot for 1 or 2
## 4643 3251014 Cozy but Cool:Huge 1bed in ❤️of NY
## 4644 3251638 Subletting in CrownHeights,Brooklyn
## 4645 3251901 Huge Room in Manhattan's Upper West
## 4646 3257345 Beautiful LES Apartment
## 4647 3258196 Big sunny room, prime location!
## 4648 3258197 Large 1br Duplex in Heart of Upper East Side
## 4649 3261569 Big Private 4 bedrooms 1 bathroom Near Subway!
## 4650 3262238 Murray Hill Modern
## 4651 3262855 BEAUTIFUL ROOM NEAR PROSPECT PARK!!
## 4652 3262930 Cosy room with private bathroom-NYC
## 4653 3264261 Spacious Studio in Midtown
## 4654 3264684 Carroll Gardens - Two Bedroom Apartment
## 4655 3265275 2BR, UWS, Doorman, Balcony, CntrlPK
## 4656 3265407 Sunny Brooklyn room
## 4657 3265409 Charming Chelsea bedroom
## 4658 3265410 Private Apartment 15 Minutes from the Big Apple
## 4659 3265982 Clean design, One BD, Renovated!
## 4660 3268008 West Village designer studio
## 4661 3269281 Stylish 2BR in heart of Park Slope
## 4662 3270009 Private oasis-charming gingerbread home!❤️❤️❤️❤️❤️
## 4663 3270428 Large East Village One Bedroom
## 4664 3270702 Lovely room in big shared Brooklyn Brownstone
## 4665 3270809 Artist Loft in Lower East Side with Roof
## 4666 3271052 Gorgeous Apt 1 block from Subway
## 4667 3271893 Park Slope Town House
## 4668 3272201 Gorgeous Chic Apt on Prime West Village Street
## 4669 3272552 Tasteful, calm, central 2BR/2Baths
## 4670 3272628 cozy harlem getaway
## 4671 3272721 Beautiful Penthouse Apt - Brooklyn
## 4672 3276963 Huge, Perfect Location West Village
## 4673 3278436 UWS 2 BR 2 Ba. Gorgeous Apt!
## 4674 3278530 Private room in Williamsburg apt
## 4675 3278631 Private Bedroom Available June 1
## 4676 3278691 Sunny and Bright Room with a Terrace
## 4677 3279671 Quiet 1BR in Chelsea
## 4678 3281606 great spacious 2BR duplex apt in S. Harlem, NYC
## 4679 3281660 Penthouse next to Central Park !
## 4680 3282550 Quintessential Brooklyn...!!
## 4681 3283028 NICE Williamsburg Brooklyn, 2 Bedrooms off L train
## 4682 3283409 Beautiful Brooklyn Brownstone
## 4683 3283729 Beautiful, Furnished Studio!
## 4684 3284019 Spacious and Sunny 1BDR Astoria NYC
## 4685 3286369 Close to JFK & LGA Feels like home
## 4686 3288496 Entire Cozy One Bed #Manhattan #LES
## 4687 3288625 Sunny and Spacious 1BR Loft in Williamsburg
## 4688 3289009 Quiet Brooklyn Apartment
## 4689 3290309 Oasis in the heart of New York
## 4690 3291286 Private Room in great neighborhood
## 4691 3291524 Great Location
## 4692 3293500 Brooklyn Garden Level 2bdrm Home
## 4693 3293842 Brooklyn Living with Balcony!
## 4694 3297016 Super cute private room +amminities
## 4695 3301484 Great Apt, Great Area
## 4696 3302463 Luxurious Brownstone Parlour
## 4697 3302905 Great west village studio
## 4698 3302921 Cozy quiet East Village room/en suite bathroom
## 4699 3302932 Whole beautiful house with Backyard
## 4700 3303165 Ocean Hill Oasis
## 4701 3303301 Superhost! Modern Private APT/15min Manhattan
## 4702 3303382 Hamilton Heights - Private Guest Suite
## 4703 3304307 Lovely Shiny Private Room in NYC
## 4704 3307936 NYC Studio Loft in Meatpacking
## 4705 3309572 Private Room in Light-Filled Apt with Gym
## 4706 3309982 3 Bedroom Brownstone in Historic Crown Heights.
## 4707 3311821 Williamsburg COZY SUNNY next2train!
## 4708 3311830 Beautiful Clean & Quiet Room! Rm#1
## 4709 3311834 Apartment - private kitchen & bath
## 4710 3312276 Cozy studio/kitchen, bathroom
## 4711 3312417 Cozy bedroom in Brooklyn!
## 4712 3315933 Upper East Side 2 Bedroom Apartment
## 4713 3316877 Giant Private Townhouse w/ Garden
## 4714 3317978 Spacious Queen Size Room
## 4715 3318859 Studio w/ Private Entry in Greenpoint Brooklyn
## 4716 3319483 Room w/ Private Bathroom
## 4717 3320635 Sunny airy beautiful Brooklyn 1B
## 4718 3321643 Charming Colonial House in Brooklyn
## 4719 3322922 Cozy, Clean, Quiet, ENTIRE APT!!
## 4720 3323189 2000 sq ft Photographers loft
## 4721 3324203 Spacious Studio in my new smart house
## 4722 3324498 Garden apt 15 mins from Manhattan
## 4723 3325584 Cozy UWS Apt Close to Central Park / Times Square
## 4724 3325617 LEGAL studio in Queens
## 4725 3325807 Large 1 BDR Apt on the UWS
## 4726 3328706 Central Park West. Queen Size Room
## 4727 3331279 Spacious Brooklyn Townhouse
## 4728 3332881 Apartment near Upper East Side
## 4729 3334361 Seven Days Sleep Near Prospect Park
## 4730 3334850 Charming Quiet Apartment in NYC (安靜公寓)
## 4731 3337808 Clean & Comfy Modern Townhouse
## 4732 3339205 Updated 1 bedroom heart of Chelsea
## 4733 3339273 Quiet & Close to All + Washer/Dryer in Chelsea
## 4734 3339399 west village 1BR!best value!
## 4735 3341682 Prime Greenpoint/Williamsburg room
## 4736 3343038 Mellow One Bedroom in Chelsea
## 4737 3343299 Gorgeous brownstone- NYC living!
## 4738 3344177 Park Slope Haven
## 4739 3344237 Stay in the heart of the East side!
## 4740 3344509 Beautiful Chelsea Loft 700 Sq ft
## 4741 3344815 Good Living in Brooklyn! Double Bed
## 4742 3349699 Spacious apartment with garden
## 4743 3350417 Affordable Room in Artsy Apartment
## 4744 3351584 Amazing Oasis in NYC!
## 4745 3352030 Delightful & Modern 1 Bedroom
## 4746 3352608 A Dream! Luxury 3 Bedroom Apt+Pking
## 4747 3354367 Beautiful Brooklyn Heights Share
## 4748 3354459 Family home near Prospect Park
## 4749 3354484 Sunny 1 bed home close to Manhattan
## 4750 3357882 Spacious and unique 1 bdrm / 2 bath
## 4751 3358937 ADORABLE 2BR in Chelsea!!
## 4752 3359315 Sublet near Columbia University
## 4753 3359510 Gorgeous Loft w/ 2 queen beds & full kitchen!
## 4754 3362302 TRENDY LOWER EAST SIDE STUDIO
## 4755 3363364 Cozy 1 bedroom in charming home.
## 4756 3363462 Gorgeous Studio Apt Upper East Side
## 4757 3367150 Sunny, spacious, 1BR in Willamsburg
## 4758 3368427 Happy big family
## 4759 3368441 Modern rowhouse in prime Ft Greene
## 4760 3369100 Park Slope Studio Apartment
## 4761 3369623 Astoria: full apartment
## 4762 3369826 Quant 1bdrm in midtown west
## 4763 3369929 Couch in E. Williamsburg Luxury Apt
## 4764 3370285 Private Charming Spacious Bedroom
## 4765 3372399 Lisa's Townhouse - Luxury & Style
## 4766 3372642 Upper West Side Apt, One Block to Central Park
## 4767 3372925 Beautiful Summer Sublet in Ditmas Park Brooklyn
## 4768 3373030 Cute,Cozy Lower East Side 1bdrm
## 4769 3375448 Williamsburg Garden Apartment
## 4770 3375998 Manhattan Club Dec. 23-30, 2017
## 4771 3376567 Luxury Duplex in Williamsburg with private bath
## 4772 3376999 Fabulous Family Getaway
## 4773 3378404 WHOLE LARGE 1-BEDROOM APARTMENT
## 4774 3378576 Private room in Williamsburg Apt
## 4775 3378585 Beautiful Studio Near Times Square
## 4776 3379914 Spacious & Cozy NYC Apartment in Brooklyn/Queens
## 4777 3383382 Modern 1 BR + terrace in Gramercy
## 4778 3383662 Affordable Room in Beautiful Apt !
## 4779 3386226 Lovely 2 Floor Home, Gem in Heart of Williamsburg!
## 4780 3386746 Extra Large 1BR
## 4781 3386923 cozy room, close to trains, explore brooklyn!
## 4782 3387493 Superior Two BR - UES (30 Days MIN)
## 4783 3390839 Beautiful 2BD in Brooklyn Heights
## 4784 3391220 City retrieve -confort,quite,light
## 4785 3393798 Greenwich Village cozy 1-2BD with outdoor space
## 4786 3393999 Spacious 1 bd in Crown Heights
## 4787 3394044 Panoramic view of Upper Manhattan!
## 4788 3394314 Entire lux apt in Williamsburg - 30 days or more
## 4789 3394517 A cozy room in a 3 bedroom apt
## 4790 3394768 Your NYC haven at Upper Manhattan!
## 4791 3394964 Your Manhattan haven: dressed in red
## 4792 3395099 An Upper-Manhattan room of your own!
## 4793 3395398 Cozy BR in heart of Manhattan (Hell's Kitchen)
## 4794 3395697 Two-Floor Apartment on Upper West
## 4795 3399909 Super cute and sunny 2 bedroom
## 4796 3400359 Awesome Deal NYC
## 4797 3400645 Charming 1BR Private GARDEN Apt!
## 4798 3400739 Brooklyn Cozy and Convenient
## 4799 3401083 Sunny Bushwick Brownstone
## 4800 3401271 Suite Lounge
## 4801 3401911 Battery Park City Sunny Bedroom
## 4802 3402474 Modern 1 Bedroom with Large Windows, Lots of Light
## 4803 3403034 Modern Manhattan Living Suite 2A
## 4804 3404472 Charming Boutique Room in Bushwick
## 4805 3404668 Comfy room, minutes from metro for up to 3 people!
## 4806 3404873 Spot in the Heights!
## 4807 3408897 Gorgeous 2 Bedroom Loft in the Heart of Chelsea
## 4808 3410516 Luxurious Living in Williamsburg/Brooklyn
## 4809 3411006 COOL, ARTSY & CENTRAL APARTMENT
## 4810 3411815 Lovely, Sunny Bedroom in Huge DUMBO Apartment
## 4811 3411912 Charming Apt, Perfect for Couples!
## 4812 3412633 Sunny top floor loft with skylight in downtown NY
## 4813 3412893 Studio Apt. 15 min from Manhattan
## 4814 3414607 Sweet 2 bed in Elevator Building
## 4815 3414885 Artsy Modern Hideout | Two bedrooms with backyard!
## 4816 3415102 3 bedroom loft in Williamsburg
## 4817 3415455 Bright & Spacious 15 mins to Midtown Manhattan
## 4818 3420223 Sunny Bushwick Apartment / Morgan L
## 4819 3420648 Lovely Near Time square in 1bedroom
## 4820 3421589 Adorable Soho Apartment
## 4821 3423032 Cozy 1 BD in Astoria, City Bike & NYFerry nearby
## 4822 3423516 Independence in NYC
## 4823 3424458 Sun-soaked 1BR in Park Slope with amazing NYC view
## 4824 3425054 Gorgeous 1BR Park Slope Apt/Garden
## 4825 3425168 East Village Apt at Great Location
## 4826 3426233 2 Bd/1 Bath Apartment Upper East Side NYC
## 4827 3429765 Sunny Private Room
## 4828 3430612 Beautiful Brooklyn 3 bdrm in Prospect Heights
## 4829 3431378 Luxe Tuscan Suite Private Room
## 4830 3431816 APT IN PROSPECT/CROWN HEIGHTS
## 4831 3432660 Neat, Classy, and Simple.
## 4832 3434211 Luxury Furnished Apt @TriBeCa/Soho
## 4833 3434303 Cute Studio in Midtown East/UES!
## 4834 3434471 Spacious 2 BDR Apt. Upper West Side
## 4835 3435260 Private Sunny Room in Park Slope
## 4836 3437101 Sparkling Brick APT Heart UES +Yoga
## 4837 3439207 Comfortable and Convenient
## 4838 3440135 Cozy studio in the heart of Greenwich Village
## 4839 3440741 Charming Tudor 1BD Uptown
## 4840 3441130 New Building in Williamsburg
## 4841 3442067 Spacious Studio in Luxury Building
## 4842 3442140 Large room in renovated apartment in Williamsburg
## 4843 3442152 Stunning Park Slope 2BR
## 4844 3445138 The Sunniest of Brooklyn Brownstones
## 4845 3447238 Spacious, Sunny 1 Bedroom Apartment
## 4846 3447448 Waterfront Experience
## 4847 3448037 Modern Pad in Prime Williamsburg!
## 4848 3450210 Spacious Apt in Townhouse near Columbia University
## 4849 3452721 Prime Williamsburg 1 bd apartment
## 4850 3452835 Artsy, Garden Getaway in Central Brooklyn
## 4851 3453488 Huge Loft in prime Williamsburg - monthly rental
## 4852 3455983 Perfect Apartment For Young Family
## 4853 3457770 Cute 1 BR in the Lower East Side
## 4854 3458525 Modern & Cozy 1BD Garden Apt
## 4855 3461872 Private BR in 3 BR Apt - E. Harlem
## 4856 3462975 Boutique Loft Condo In West Village
## 4857 3463385 Gorgeous room in Manhattan
## 4858 3463475 ☆ PERFECT MANHATTAN LOCATION NEAR SUBWAY & CAFES!☆
## 4859 3464727 Fabulous 1 Bedroom Apt for 1 week
## 4860 3464971 Sunny Home on Brooklyn Border: 15 min to Manhattan
## 4861 3465604 Elegant Brownstone Duplex
## 4862 3465651 “No Place Like Home”\n1st Floor Suburban Apt.
## 4863 3465977 Next to Central Park and Natural Science Museum
## 4864 3468486 2br with Balcony in East Harlem!
## 4865 3468914 Luxury One Bedroom CentralPark West
## 4866 3468942 Luxury Studio Central Park West
## 4867 3469115 5-Star Park Slope Suite w/King Bed
## 4868 3469171 Red Hook Prime 1 BR Priv. Garden 3 blks NYC Ferry
## 4869 3469295 Harlem Renovated Duplex Townhouse
## 4870 3473305 One bedroom apartment
## 4871 3474320 Private brownstone studio Brooklyn
## 4872 3476105 Your own private big Brooklyn apt!
## 4873 3476431 Charming Fort Greene Studio
## 4874 3478771 Great Room in Heart of LES
## 4875 3479019 Lovely and quiet Brownstone!!!!
## 4876 3479614 Charming East Village Apartment
## 4877 3479639 Designer's duplex loft with 16' ceilings
## 4878 3482919 Awesome SoHo/Little Italy 1BD
## 4879 3485146 Sun Soaked, NYC Brownstone Apt
## 4880 3486103 Best of Brooklyn & 5 min to Manhattan!
## 4881 3487445 Sunny and Spacious 1 bedroom apt
## 4882 3488283 1BR Apt in the Bay Ridge!
## 4883 3488989 Sunny, Quiet Apt. in Manhattan
## 4884 3489095 Location Silma
## 4885 3489242 Location little Elio
## 4886 3490317 Lovely sun-lit 3-bedroom apartment
## 4887 3492910 Manhattan Columbia University Courtyard Studio
## 4888 3493833 Huge Artist Loft with BBQ deck - WILLIAMSBURG
## 4889 3495686 Lofted Murray Hill 1-bedroom w/ spiral staircase
## 4890 3495854 Studio loft - Williamsburg/Bushwick
## 4891 3496384 Interfaith Retreat Guest Rooms (Om)
## 4892 3496438 NYC 1BD near Central Park & Shops
## 4893 3499016 House 1 Bed $100/ night per person
## 4894 3499174 One of a Kind, Penthouse Apartment
## 4895 3499251 Classic Upper West Side studio loft
## 4896 3499326 Sunny, Tall Artsy Loft @ Williamsburg
## 4897 3504289 Cheap accommodation in Manhattan
## 4898 3507112 #1 PRIVATE STUDIO IN BX,15MINS NYC.
## 4899 3509822 Cute Room, Courteous Hosts
## 4900 3510929 Apartment in beautiful Brooklyn Heights
## 4901 3511778 10th St / W Village Junior Loft
## 4902 3511883 Williamsburg Garden Escape
## 4903 3511898 Cute & Cozy Greenpoint Apt, Great Location
## 4904 3511934 Beautiful West Harlem brownstone
## 4905 3512428 Lovely room in doorman building
## 4906 3512620 Garden Floor Duplex with patio
## 4907 3513303 CHEAP BIG room in Williamsburg
## 4908 3513662 Luxury 2 bed apt in WILLIAMSBURG BK
## 4909 3513960 AMAZING ROOM ARTSY BKLYN BROWNSTONE
## 4910 3517621 Amazing Renovated studio MurrayHill
## 4911 3517646 Spacious, light-filled home by Prospect Park
## 4912 3518682 Beautiful Room in Park-Side Apt
## 4913 3519172 Gallery Suite
## 4914 3521162 Studio in the heart of Chelsea
## 4915 3522244 Charming Brooklyn Room
## 4916 3522329 East Village 1 Bedroom
## 4917 3522513 Central Park home away from home
## 4918 3522539 Musician's Loft 1BR w/ Outdoor Space, WiFi, Parks
## 4919 3523001 Lovely Tudor Home with Studio in Queens, NY
## 4920 3526122 W Village Apt w/ Private Roof
## 4921 3529500 Gorgeous pre war rowhouse apartment
## 4922 3529503 Quiet room+bath w/ separate entry.
## 4923 3529888 Architect's Oasis
## 4924 3530122 Cozy Harlem Flat!
## 4925 3530395 1 BR in Great NYC Neighborhood
## 4926 3530517 2 Story Loft!! Tribeca/Soho :-) best neighborhood
## 4927 3531018 It's The Brooklyn Way !!!
## 4928 3531190 Cozy/Hip LES 2 bedroom, sleeps 2-4
## 4929 3531345 Ensuite in Duplex Brownstone with Private Terrace!
## 4930 3531959 Charming Artists in the Heights
## 4931 3533180 6BDRM*APT TRAIN TO NYC 15 MIN
## 4932 3533604 Private Room in a two bedroom apt.
## 4933 3533669 Charming West Village Apartment
## 4934 3533741 Private Room in Famed Artistic Flat
## 4935 3533777 Private Room In Clean Spacious Apt
## 4936 3534137 Beautiful sunny bedroom just off Prospect Park
## 4937 3534443 Lower East Side Studio- Great Location!
## 4938 3539618 Large modern studio in Gramercy
## 4939 3539882 Renovated Studio - LES
## 4940 3540370 Sunny room in East Village!
## 4941 3540722 Modern Bohemian Studio
## 4942 3542523 HEART of Williamsburg w/ Rooftop!
## 4943 3543227 Private Suite 15min to Times Square
## 4944 3544273 3BR condo Brooklyn/Prospect Heights
## 4945 3544610 Apartment near the US Open
## 4946 3544828 PrivateRoom in Beautiful Brownstone
## 4947 3544858 Private room in Greenpoint, BK
## 4948 3544899 Cozy Family Gateaway!!!
## 4949 3545066 Cozy Apartment in Chinatown/LES
## 4950 3548393 Charming West Village apartment
## 4951 3549074 Modern Townhouse - Chic Sunny Room - L/J/A/C Train
## 4952 3549478 Tasteful French 1BD Apt w/ Garden
## 4953 3549798 Sunny Private Williamsburg Space
## 4954 3550298 Bright, big, BEAUTIFUL room in renovated apt
## 4955 3550879 Beautiful Harlem apt with views
## 4956 3551778 Faboules 1 br, in trendy Park Slope
## 4957 3552043 Zen Loft: Huge Brooklyn Loft for Shoots & Events
## 4958 3552693 2 room, by Sutton Place
## 4959 3553361 Awesome Loft in Williamsburg
## 4960 3553679 Room in Upper East Side
## 4961 3553768 Serene, minimalist studio W Village
## 4962 3554230 Beautiful 1200 sf 3 bedroom apt off Prospect Park
## 4963 3554285 Entire Room Brooklyn NYC!!!
## 4964 3554287 Academic Summer Sublet/Sunset Park
## 4965 3554599 Great Apartment, Great Location
## 4966 3556241 Private Bamboo Garden Studio
## 4967 3556577 Landmark Brownstone Sunny 3 Rooms
## 4968 3556615 TimeSq/Brdway/Midtown/A Cozy Petit Versaille/Quiet
## 4969 3559515 Christmas in NYC! Spacious King Suite, 2 bath apt
## 4970 3559695 Soho/Nolita Studio Loft with Beautiful Terrace
## 4971 3561828 Converted Carriage House
## 4972 3562245 Quiet Sunny 1-Bedroom, Prime East Village Location
## 4973 3563271 Williamsville Sleep & Stay
## 4974 3565617 Modern sunny one bed apt
## 4975 3567258 Beautiful Loft in Union Square
## 4976 3568596 Beautiful 1 BR in The Heights!
## 4977 3569374 Lovely 1BR Park Slope, near trains!
## 4978 3574304 Semi-furnished room in a large 3 bedroom apt
## 4979 3575859 GREENWICH VILLAGE ROOM WITH PR.BATH (DM 4 monthly)
## 4980 3575918 The Artist's House (with roof garden!)
## 4981 3576160 One Bedroom in East Harlem
## 4982 3578158 1 bedroom apt, Brownstone in central Harlem
## 4983 3580577 Park Slope beauty
## 4984 3581153 Modern 1BD Chelsea Apartment
## 4985 3581652 Duplex in SoHa
## 4986 3582816 Brownstone Apt with Sunny Garden
## 4987 3583482 Huge modern Private room available
## 4988 3583605 2 Bedroom in Hudson Heights
## 4989 3583702 Brooklyn's Finest
## 4990 3584528 Spacious Loft with Spiral Staircase
## 4991 3585452 A Beautiful Brownstone Apartment
## 4992 3585974 1BD in Lower East Side
## 4993 3586141 Brooklyn private room, by F,Gtrain
## 4994 3587219 Nice studio in heart of the of the West Village
## 4995 3591107 Gorgeous Bedroom by the Park
## 4996 3593491 Cozy room in NYC
## 4997 3593821 Bedroom in Williamsburg w/ Terrace
## 4998 3594408 Bedr w Priv Bathr+Balc 15m frm city
## 4999 3595503 Charming bedroom in Comfy apt
## 5000 3595554 Jackson Stayover Apt
## 5001 3595574 Cheery Studio with Separate Kitchen
## 5002 3600108 Great location! Fort Greene!!!
## 5003 3600496 Large & Spacious **Prime Location
## 5004 3600518 Sunny Grammercy Park Getaway
## 5005 3600961 Charming 1 Bed in Trendy Location!
## 5006 3601324 7even Days Sleep Near Prospect Park
## 5007 3601743 Classic Brooklyn brownstone
## 5008 3601900 Cozy Private Room in the heights!
## 5009 3602534 Gorgeous Room in Historic Townhouse
## 5010 3602739 Private BR in Huge 2BR in Chinatown
## 5011 3603134 Amazing 1 Bedroom Apt CENTRAL PARK
## 5012 3603287 Beautiful Furnished Room in SOHO
## 5013 3603426 Brooklyn Getaway-Special Discount
## 5014 3604145 UNIQUE APT COZY APARTMANT
## 5015 3605388 Serengeti Comfy APT
## 5016 3605493 Spacious Private Apt. Near All!
## 5017 3605524 Midtown Apt, Quiet, Walk to Subway
## 5018 3605654 Large 1 bedroom/bathroom w/balcony
## 5019 3605896 Clean Private Room in Renovated Apartment
## 5020 3608353 Prospect Park South
## 5021 3609762 Sunny spacious 3 BR/ 2Bth in Bayside townhouse
## 5022 3611620 Private Room In Gorgeous Apartment July 1st-30th!
## 5023 3611813 Discount! Central Clean & Quiet
## 5024 3613161 Exquisite SoHa/Columbia area large 2 BR
## 5025 3613839 Cozy and sunny room in Manhattan
## 5026 3614113 Private Room in East Village Manhattan
## 5027 3614159 Bright, Spacious, and Well Designed
## 5028 3614680 Great View, Close to City in Queens
## 5029 3616001 Luxury 1 Bedroom in FiDi
## 5030 3616003 Large Clean Apt in Ditmas Park
## 5031 3616173 PRIVATE BEDROOM YOU'LL LOVE
## 5032 3616527 Pvt 1 Bed in Fort Greene
## 5033 3616946 Great room near Chelsea market
## 5034 3617498 Comfy, convenient bedroom in Bklyn!
## 5035 3619399 Best Cozy & Modern Room in Town
## 5036 3623158 Private bedroom apartment 5A#1
## 5037 3623201 Charming brownstone top floor 1BD
## 5038 3623946 Sunny and Spacious Two Bedroom Duplex with Terrace
## 5039 3624205 Private bedroom apartment 4B
## 5040 3624380 Private bedroom apartment 4B/2
## 5041 3624387 Beautiful Apt x Rent in Astoria, NY
## 5042 3624653 S 2/Bedford Well-Lit Private Room
## 5043 3624952 Oasis in Queens: Private BR/ bath
## 5044 3625075 Available Manhattan Apt
## 5045 3625117 60s-inspired @ a penthouse loft!
## 5046 3625870 Modern Style Meets Old World
## 5047 3626302 Beautiful Clean & Quiet Room! Rm#2
## 5048 3626426 Gorgeous! Newly Renovated 2-BR Flat
## 5049 3626609 Entire Awesome One Bed-Lower East Side Manhattan
## 5050 3626699 Vintage NY apt - 15min from Midtown
## 5051 3627106 Great 1BR-private balcony/doorman
## 5052 3627326 Spain Room
## 5053 3627589 Cozy Single private room.
## 5054 3628190 Sunny Private Apt in Ditmas Park
## 5055 3628328 2BR Apartment in Doorman Building
## 5056 3628553 1 Bedroom Apartment close to Northwell & JFK
## 5057 3629217 Spacious 2BR townhouse
## 5058 3629381 Cozy UES apartment with balcony near Central Park
## 5059 3629580 Upper East Renovated 1 Bedroom
## 5060 3630304 Spacious Bedroom 15 mins from NYC!
## 5061 3630309 1BR Comfy Apt - 15min from Midtown
## 5062 3632258 Awesome NYC/UWS private bed/bath in private home
## 5063 3634361 3 Bedroom Duplex
## 5064 3635348 BKLYN Brownstone- Glam Getaway!
## 5065 3635624 Cozy 1BD in the lower east side
## 5066 3636601 Sunny and Quiet private apartment, great location!
## 5067 3636967 Sunny 2BR Flex Loft in Greenpoint
## 5068 3637029 Cozy Wiliamsburg!
## 5069 3638841 Cozy 1 BD apartment in Sunset park
## 5070 3638852 Sunny room in Alphabet City
## 5071 3641819 Sunlight filled top floor refuge with roof deck
## 5072 3642278 Brooklyn Carroll Gardens Charmer!
## 5073 3642325 Luxurious Brooklyn 2BD w/ Parking
## 5074 3642801 Cozy Brooklyn studio, 30 min to Manhattan
## 5075 3643392 Relaxed Elegance in a Brownstone
## 5076 3643673 Chill 1bdrm Bk getaway
## 5077 3644017 Lovely, quiet, private, close to everything
## 5078 3644037 Bright & Modern Apt. in Brooklyn NY
## 5079 3645284 Reno 2BR~Sleeps5~Prime Upper east~
## 5080 3645866 Welcome to Kensington
## 5081 3646059 Quiet Room in East Williamsburg
## 5082 3646551 Gramercy~Reno New 1BR-Sleeps 4~
## 5083 3652120 AMAZING TIME SQUARE!!BRICK WALLS!!
## 5084 3652230 Bay Beauty - Room On The Water!
## 5085 3653996 BRAND NEW 1BD, Columbus Circle!!
## 5086 3654510 Sunny, spacious room in 3BR apt
## 5087 3654511 ROOFTOP SWIMMING-POOL 1/BR APT.
## 5088 3655007 Great Room for International Students!
## 5089 3655367 Sunny/Cozy 1BD
## 5090 3659544 Home Away from Home-Room in Midtown
## 5091 3660983 Amazing LOFT in Prime Williamsburg
## 5092 3661168 Private Room in Williamsburg
## 5093 3662091 Beautiful 1 BR - Downtown Union Square
## 5094 3662724 5144-Prime Doorman!78ST & Madison
## 5095 3662795 Comfortable Place in Brooklyn
## 5096 3662827 Nolita Duplex w/ private terrace
## 5097 3662887 1 Bedroom Apartment in Gramcery!
## 5098 3662949 Stylish & Spacious Perfect for Pride!
## 5099 3663178 Landmark Cottage, Brownstone block
## 5100 3663423 Beautiful duplex for family w/kids
## 5101 3663798 Big WBurg Rm, 5 min from L, Fits 4!
## 5102 3663984 Sunny & Modern 1-BR | Central Park
## 5103 3664439 Murray Hill, The Heart of Manhattan
## 5104 3664714 Great Greenpoint Apartment
## 5105 3666653 Brooklyn Brownstone
## 5106 3666709 Cozy Private UES Studio Apt!
## 5107 3670659 Bright & New Reno, Quiet Block
## 5108 3672455 Private RM | Queens | 20min to city
## 5109 3673938 Affordable long stay room for individual
## 5110 3674757 Cozy Vintage Artist Flat(Williamsburg/Bushwick)
## 5111 3675957 Brooklyn Loft Studio, One Subway from Manhattan
## 5112 3677769 Beautiful Large Sunny Bedroom
## 5113 3677995 Modern Harlem Flat
## 5114 3678064 Per/night Room Brklyn New York
## 5115 3678796 beautiful brownstone
## 5116 3678829 Bright. Clean. Elegant. A perfect Brooklyn home.
## 5117 3678990 Sunny Warm Quiet NYC Retreat
## 5118 3683236 Peaceful 2BR inside a brownstone
## 5119 3683241 Spacious 2 bedroom 1 bathroom BRKLY
## 5120 3684144 (Hidden by Airbnb) ! BrooklynCleanRoom!!
## 5121 3684302 Crown Hts Beauty: Quiet and Cozy!
## 5122 3685433 Stunning Studio in Fort Greene
## 5123 3685704 Private Apt. in Brooklyn Brownstone + Garden
## 5124 3686493 Irving Place!Doorman!Laundry 5135
## 5125 3686972 1 BR Apt steps from Central Park! #10223
## 5126 3687172 Enchanting Studio in West Village
## 5127 3687227 spacious, quiet room w/private bath: BK brownstone
## 5128 3688168 The Brooklyn Public House Apartment
## 5129 3688197 Peaceful and breezy one bedroom
## 5130 3689140 West Village Loft, 2nd floor
## 5131 3692566 Spacious 5 BR house in Brooklyn
## 5132 3693901 THE BEST HOUSE IN BROOKLYN !
## 5133 3694441 Modern, Bright, Airy Brooklyn Apt
## 5134 3694498 Welcome to Williamsburg!
## 5135 3695776 Sunny, Spacious Carroll Gardens 1BR
## 5136 3696043 Weeklong Discounted Bklyn Apt by Train & Near Dwtn
## 5137 3696746 Fabulous Loft Studio in Gramercy
## 5138 3697432 Experience NYC to the fullest @UES!
## 5139 3698111 Your NYC home in the Upper East Side!
## 5140 3698241 Your NYC headquarters @ the Upper East Side!
## 5141 3698367 Amazing Location!
## 5142 3700364 Greenwich Village in the Sky
## 5143 3701708 Quaint Room in Brooklyn
## 5144 3701890 1 bedroom apartment on the UWS
## 5145 3702400 Brooklyn Apartment W/ Balcony
## 5146 3703037 SUBLET in the UWS
## 5147 3703633 Reno 2BR~prime union squar~
## 5148 3703805 Cozy spacious room in Crown Heights
## 5149 3704067 Garden Apartment with private patio in Townhouse
## 5150 3706213 A Beautiful Alvoce Studio
## 5151 3709013 Huge 1.5BR Artist Home in Brownstone Brooklyn :)
## 5152 3710162 CENTRAL Clean, Peaceful Private Room NoLita
## 5153 3710230 Stunning renovated greystone
## 5154 3710436 THREE BEDROOM APARTMENT IN BROOKLYN
## 5155 3710685 Vintage NYC apt 15min from Times Sq
## 5156 3711039 Summer Porch: Taking Manhattan? Sleep in Astoria!
## 5157 3715638 Sunny Private Room at Central Park!
## 5158 3715824 Quiet spot in NYC
## 5159 3716193 Beautiful 2 Bedroom Townhouse
## 5160 3717689 CHARMING BROOKLYN LOFT WITH PATIO
## 5161 3717749 Two Porches & Private Room
## 5162 3718713 Sleek 1 bdrm in East W'burg/Bwick
## 5163 3720404 Sunny South Williamsburg Apartment
## 5164 3721826 Amazing apartment with your old private bathroom
## 5165 3725902 Sunny zen apt in Park Slope, BK
## 5166 3727816 Great place near Flushing Meadow
## 5167 3727861 Manhattan Apartment- low rate
## 5168 3728309 Private room in 3 bedroom apartment Bed Stuy
## 5169 3728837 Factory Converted Studio Loft in GP
## 5170 3731209 Quaint, Quiet 1BD
## 5171 3731871 Sunny Bedroom in Bushwick Luxury Building
## 5172 3731965 Williamsburg Brooklyn quiet abode
## 5173 3735483 Beautiful Room in Sunny Brooklyn Apartment
## 5174 3737180 Sanctuary Quiet Room in Apartment
## 5175 3737847 Sanctuary Close To Manhattan
## 5176 3738529 True Industrial Loft in Brooklyn
## 5177 3738756 1 BR Beautiful Central Williamsburg
## 5178 3738815 Large apartment, 2BR, Midtown NYC! 3D
## 5179 3739126 Beautiful Private Bedroom in Soho
## 5180 3739712 Rest your head-West Side Manhattan
## 5181 3739864 Large Bedroom in Brooklyn for June and July.
## 5182 3740402 NYC: an Upper-Eastside room of your own!
## 5183 3741405 2br in Manhattan NY
## 5184 3741530 Large Light-Filled Brownstone 1-BR
## 5185 3741728 Missy's Place
## 5186 3741945 Have your NYC experience with us!
## 5187 3742373 Beautiful apartment by Columbus Circle
## 5188 3743048 *WARM*Beautiful*Room*ST. GEORGE steps to ferry!
## 5189 3747107 Clean+Comfy+Cozy Room in NYC Home
## 5190 3747240 Stunning 2BR Apartment in Top Location
## 5191 3747392 Private Rm in heart of Williamsburg
## 5192 3747567 Sunny Bedroom in El Barrio
## 5193 3749971 Williamsburg Apt. w/ private patio
## 5194 3750917 SPACIOUS LIVINGROOM IN BROOKLYN
## 5195 3751048 GREAT ONE BED! ELEVATOR/LAUNDRY
## 5196 3751919 A Fantastic Master Bedroom Suite in a 3BD apt
## 5197 3752035 New & Modern 2 BR Brownstone Apt.
## 5198 3755474 New Bright & Modern Apartment within a Brownstone
## 5199 3757178 last minute TRIBECA CONDO AVAILABLE
## 5200 3757461 Manhattan Sun Drenched \nNear Gramercy
## 5201 3758296 Central Park West & Columbia U: Comfy Private Room
## 5202 3758686 ★ Convenience & Comfort Awaits! ♥️ Your Stay! ★
## 5203 3759009 Spacious Studio in West Village!
## 5204 3760029 Charming studio for rent in Astoria
## 5205 3760158 Hey Beautiful Brooklyn Brownstone!
## 5206 3760592 Large Room in Penthouse Apartment
## 5207 3760824 Bushwick Room w/ Private Entrance & Bathroom!
## 5208 3762842 Perfect mid summer apart available
## 5209 3764540 Beautiful 1BR with Yard, Williamsburg
## 5210 3765095 Sunny Private Room Facing Beautiful Prospect Park
## 5211 3765357 Feel at home in Manhattan at charming NY apartment
## 5212 3766496 THEATRE DISTRICT - LARGE ROOM
## 5213 3766770 Romantic 1 bedroom Part2 Harlem USA
## 5214 3767156 Mid-Century Modern Garden Paradise
## 5215 3767267 Lovely private room in Manhattan
## 5216 3767674 2BR Apt with huge outdoor space
## 5217 3768977 2 bedroom Duplex condo\n+ yard 7 min to Manhattan
## 5218 3769052 Great Sunny Spacious Room
## 5219 3769257 Spacious Stylish Sunny Retreat
## 5220 3771656 Amazing Upper East Side Location
## 5221 3771845 Private Room in Great NYC Nbrhood
## 5222 3772256 Modern Studio at The Manhattan Club
## 5223 3775259 BED-STUY SOUTHERN COMFORT
## 5224 3775379 Peaceful Studio in Prospect Heights
## 5225 3775978 Private Room in Flatiron
## 5226 3779230 Bright, cozy den in 4 bedrm duplex.
## 5227 3779262 BKLYN BROWNSTONE: The Stuyvesant
## 5228 3780113 Studio apartment
## 5229 3780206 Perfect Brooklyn Studio Apartment
## 5230 3780715 Akua's Bed-Stuy Study
## 5231 3780951 Charming Harlem apartment
## 5232 3782283 HUGE space at the heart of Meatpacking - Chelsea .
## 5233 3782441 cute convenient village suite
## 5234 3782925 Cute apartment with Backyard
## 5235 3783016 Luxury Studio on (Email hidden by Airbnb)
## 5236 3783021 Entire Luxury Newly Renovated Studio
## 5237 3783639 Quiet private room in luxury bldg facing park
## 5238 3785438 Quiet Oasis in the Middle of it All
## 5239 3787867 Lower East Side Luxury
## 5240 3789265 Lovely Walk Up in the Heights
## 5241 3789758 1 Bed Apt in Greenpoint Brooklyn
## 5242 3790118 Metro-luxe Tuscan Suite Private Room
## 5243 3790746 Tidy Sweet Room in Sugar Hill/Hamilton Heights
## 5244 3791244 west village 1BR!best value!
## 5245 3791325 1BR Clinton Hill Apt Beautiful Garden - Video
## 5246 3791554 Cosy Inwood apartment
## 5247 3792246 private bedroom in NYC apartment
## 5248 3793161 location Vera
## 5249 3793246 large 1 BR in heart of East Village
## 5250 3793542 Vintage Williamsburg 1BR near park!
## 5251 3793874 Beautiful West Village 1 BR Apt--Best Location!
## 5252 3797183 Room in spacious Boerum Hill duplex
## 5253 3798874 Spacious Duplex Garden Apt Park Slope Brooklyn
## 5254 3798941 Williamsburg Penthouse Guestroom
## 5255 3799598 ★Unique two bedroom on 2nd Avenue★
## 5256 3800332 South Williamsburg large parlor apt.
## 5257 3800547 PrivatePeaceful Pad near JFKairport
## 5258 3800549 Williamsburg Studio
## 5259 3801407 Art Boutique Stateroom at JFK Airport
## 5260 3801701 Private Studio Near Union Square
## 5261 3802218 Cozy Private Bedroom
## 5262 3802538 Best location in NYC
## 5263 3802966 One bedroom in Inwood Apartment
## 5264 3804690 Statue of Liberty Views Downtown
## 5265 3808093 Amazing 1BR condo with water views
## 5266 3808119 Charming, Airy 2 Bedroom Brownstone in Bed-Stuy
## 5267 3808230 Big Beautiful Bedroom w/Private Bathroom
## 5268 3808323 Large Private Rm in Historic Central Harlem Home
## 5269 3808358 Room 15. min from Midtown in Super Safe Area
## 5270 3808620 Great Renovations. Columbus Circle
## 5271 3811186 Chandelier Room on Historic Brooklyn Block
## 5272 3811639 Beautiful sun-filled Loft BROOKLYN
## 5273 3811757 Elegant Gramercy Park Studio
## 5274 3812133 Sunny, Central, Quiet, UWS, 72&Bway
## 5275 3812222 Suite w/private bath, Forest Hills
## 5276 3812554 Master Bedrm, Steam Shr/Jacuzzi, FH
## 5277 3816424 3
## 5278 3816499 2
## 5279 3817216 Doorman nice 1bd/ United Nations!!
## 5280 3817304 Stay 30 min to Times Sq in quaint Sunnyside, Qns
## 5281 3817666 ColumbusCircle~W/D~new BLDG~Balcony
## 5282 3818187 Sunny Room in Shared Apartment
## 5283 3818279 Reno1BR~RiverView~Luxury24D~Roof~
## 5284 3818298 Sunny 1bed Oasis in South Harlem/Upper West Side
## 5285 3819407 UWS Charmer, Central Park/Lincoln Center
## 5286 3819656 SoHo/Village Studio
## 5287 3819703 5107-Studio Doorman GYM LuX
## 5288 3819946 Great cozy in Brooklyn
## 5289 3821676 Lower East Side Artist's Sanctuary
## 5290 3822172 Colorful 2 Bedroom in Brooklyn
## 5291 3825437 Trendy East Village Penthouse Apt
## 5292 3826037 Location Little Lapa ( only female )
## 5293 3826226 Brooklyn 2 bedroom Apartment
## 5294 3826908 Home, Sweet Home!
## 5295 3827311 Cozy & Sunny Hamilton Heights Apt
## 5296 3827442 Large, Luxurious 1 bdrm W. Village
## 5297 3829039 Prime Williamsburg Brooklyn Apartment for Holidays
## 5298 3829261 Beautiful Terrace Room
## 5299 3829609 Brooklyn's finest. Renovated apt!
## 5300 3831962 Lg Quiet Artist Home -Ditmas Park -
## 5301 3832444 Bushwick schoolhouse
## 5302 3832774 Sunny, charming 1 bedroom apartment
## 5303 3832863 1 Bedroom w/ huge Deck in West Village/SOHO
## 5304 3832932 Beautiful Sunset Park
## 5305 3833538 Classic Brownstone 1 Bed. Apt.
## 5306 3835052 Sunny, Charming Boho Apt Near all in the Village!
## 5307 3835334 UWS one br near Central Park
## 5308 3835633 The Emerald Room
## 5309 3835681 Great location, new lower rates!!!
## 5310 3835740 Cozy & Comfy in Bedstuy
## 5311 3835757 ...New lower rates for low season!!
## 5312 3835766 Oasis in a Brownstone
## 5313 3836180 Beautiful West Village 1 BR Gem!
## 5314 3836189 Amazing, Spacious Bedroom in BK
## 5315 3836199 2 bedroom with yard, 4 mins to LGA
## 5316 3838056 Unique stylish garden apartment
## 5317 3838375 Cheerful, Comfortable & Convenient
## 5318 3838388 Large Sunny Nicely Furnished Studio
## 5319 3838416 Beautiful Huge 2Br House w/Backyard
## 5320 3839364 Fabulous Large 1 Bed in Riverdale, Bronx NYC
## 5321 3840000 4 ROOM RAILROAD - WILLIAMSBURG
## 5322 3840127 Cozy yet spacious apt in Brooklyn
## 5323 3840286 Modern, sunny two bedroom
## 5324 3840324 Williamsburg + private patio garden
## 5325 3840541 Spacious Modern Loft in Cobble Hill
## 5326 3841033 Bright, clean studio by subway
## 5327 3841048 2BR, Heart of Lower East Side
## 5328 3841113 Cozy private room in UES
## 5329 3842694 Spacious Home by the Bay
## 5330 3847733 Sunny Apt in Bed Stuy, A/C/E Trains
## 5331 3848324 West Village apt - 2 Bedroom
## 5332 3848431 Apt in Harlem 1 month minimun stay
## 5333 3849226 Gorgeous Room in Heart of Soho
## 5334 3849347 Beautiful 1b Bloomingdales location
## 5335 3850254 Private Room in Bushwick, fully furnished
## 5336 3850493 JOE'S PARADISE 5019
## 5337 3850967 A bright, beautiful treehouse
## 5338 3851498 L
## 5339 3851623 Convenient, Greenwich/West Village Apartment
## 5340 3851719 Amazing 1brm in the Best Location
## 5341 3851911 large sunny pre war studio
## 5342 3852261 SUNNY ROOM FOR TWO @ ELEGANT HOME NEAR JFK
## 5343 3852988 Lovely, modern townhouse
## 5344 3857180 Parkside Brooklyn Artist Apartment!
## 5345 3857863 Studio In Townhouse
## 5346 3858105 Light and Airy top floor apartment
## 5347 3858822 Big, Sunny and QUIET West Village Studio
## 5348 3860464 BedStuy Fly, a relaxing retreat.
## 5349 3860762 Amazing Big Sunny Room with Porch
## 5350 3860899 Huge room in East Williamsburg
## 5351 3861713 2 BRs with private entrance/kid-fr
## 5352 3861943 Spacious Studio in Time Square
## 5353 3864528 Amazing Priv 1 BR in Hells Kitchen
## 5354 3866538 Home Away from Home
## 5355 3866843 Renovated, Nice 1BD Central Park
## 5356 3866888 Midtown NYC 2bdrm with patio! 2D
## 5357 3867293 Breathtaking Penthouse Skyline Room & 20min to NYC
## 5358 3867705 5146-Doorman Pool!1 bedroom View
## 5359 3868100 Heart of LES + Patio
## 5360 3868344 elegant pre war two bedroom flat
## 5361 3869398 private Greenpoint apt
## 5362 3869762 Upper East Side Manhattan 1 Bed Apt
## 5363 3869779 Loft in Bushwick/East Williamsburg
## 5364 3870158 Cozy East Village/Gramercy Studio by Union Square
## 5365 3870294 Large 1-Bedroom by Subway with Elevator and Charm!
## 5366 3870793 Only 20 min to Times Sq., US Open
## 5367 3874702 A garden apartment in a brownstone.
## 5368 3874870 Charming 1-Bedroom in East Village
## 5369 3875294 Beautiful Brooklyn Bedroom!
## 5370 3876850 Beautiful - Upper West Side
## 5371 3880588 Penthouse Apt with Roofdeck
## 5372 3881808 Park Ave, Sunny 2beds 6 train, WiFi
## 5373 3882103 5136-Doorman 2 bedroom 3 beds!
## 5374 3882466 5132- Huge Studio! SWIMMING POOL
## 5375 3882682 Private sunny room in Harlem house w/garden
## 5376 3883020 Huge Apartment! Convenient! Artsy! Comfy!
## 5377 3884105 Big, Bright Studio Blocks from Park and Subway
## 5378 3884893 Convenient Lovely Manhattan Private Bathroom
## 5379 3885177 Clean/nice Suite 5m T LIRR,B,Q65,13
## 5380 3887138 Kid friendly next to Prospect Park
## 5381 3887381 Modern 2BR Near Union Square
## 5382 3888469 Private room
## 5383 3888752 Bright, quiet, cozy 1BR by C Park!
## 5384 3889997 Prime West Village/Chelsea 1B SUPERB VIEW/Location
## 5385 3890417 Sunrise & Sunset in Penthouse - 20min to Manhattan
## 5386 3891031 LAST DAY TO BOOK Bedroom on Wall St
## 5387 3891370 Heart of Nolita, close to SoHo
## 5388 3892700 Cozy 1BR-Country living in NYC!
## 5389 3895289 Unique room in historic Greenpoint
## 5390 3895455 Bedroom in Spacious Loft-Like Apt.
## 5391 3895930 Beautiful 2br in Williamsburg
## 5392 3896579 1 Bedroom Apt in Chelsea
## 5393 3896701 Spacious Master Bed w Private Ensuite Bath in EV
## 5394 3897387 Bed & Bath in Park Slope Mansion
## 5395 3897601 In the heart of Park Slope
## 5396 3898329 Best views of Manhattan!
## 5397 3902156 Fort Greene Gem
## 5398 3902791 Luxury West Village 1 bdrm w/ views
## 5399 3903173 One bedroom in Greenwich Village
## 5400 3903284 Most amazing spot in Williamsburg
## 5401 3904135 Authentic Williamsburg Appartment
## 5402 3905849 Stylish Gramercy Park Duplex LOFT
## 5403 3907413 Great cozy for summer in Brooklyn
## 5404 3907603 Nyc! Cozy room in Williamsburg
## 5405 3908094 Spacious Comfy Bedroom in Bushwick
## 5406 3908257 Big Room by Metro/Subway-15mns to Manhattan
## 5407 3911451 Haven near Riverside Park n 1 train
## 5408 3911453 Sweet Studio Near Subway, LGA, and Central Park
## 5409 3911632 Cozy rooms with private bath
## 5410 3912794 Park Slope 1 Bedroom, 1.5 Bath
## 5411 3913541 Lovely Private Rm in the heart of NYC! Hells Ktchn
## 5412 3913635 Sunny Central Location!
## 5413 3914400 Big Private Room, Prospect Heights
## 5414 3914773 Upper West Side Museum/Central Park
## 5415 3914962 Beautiful Prvt Rm w. NEW 1/2 Bth
## 5416 3915042 Murray Hill / Midtown East Studio
## 5417 3915796 Central Park Life! Beautiful 1 Bed.
## 5418 3916312 Cozy Artist Space
## 5419 3917007 Williamsburg BK Studio Luxury Bldg
## 5420 3920562 Large & Beautiful Manhattan NYC
## 5421 3922417 Safe, Quiet and Bright near Subways has 2 beds
## 5422 3923128 Sunny 1-BR Apt with Soaking Tub
## 5423 3923538 Large Retro Style Pre-War Studio
## 5424 3924092 Lincoln Center Area Apartment
## 5425 3924325 Beautiful, Mdrn, Nwly Renovated Rm
## 5426 3924397 Quiet Location with two balconies
## 5427 3924506 Room in sunny & plant filled apt!
## 5428 3924619 Gorgeous Room Near Prospect Park
## 5429 3924820 Manhattan - Next to Subway!
## 5430 3925426 Room in Gorgeous apartment
## 5431 3928241 1 Bedroom in the Lower East Side
## 5432 3928525 Stunning 2 bed 2bath Wall St. Luxury Apt
## 5433 3928833 Brooklyn townhouse for filming
## 5434 3929669 Sunny 1 br in Greenpoint
## 5435 3930149 Charming and Beautiful 1-BR Apt
## 5436 3930842 1BR+BA IN LXRY CONDO W POOL+PARKING
## 5437 3930878 Clean One Bedroom Apartment
## 5438 3933059 Where Love and Happiness Live
## 5439 3933382 Private room 5 min from manhattan!
## 5440 3936970 XL Fort Greene Garden Apt
## 5441 3939041 Private cozy studio apartment
## 5442 3939086 Call this Home (for a spell, at least....)
## 5443 3939535 JFK/LGA Queens Modern Apt.
## 5444 3940301 1 bdrm in Washington Hgts-Park side
## 5445 3942731 Top Floor Doorman Apt-Water Views
## 5446 3943279 ENTIRE FURNISHED 1BD APT.
## 5447 3943879 Prime Williamsburg loft on Bedford
## 5448 3944200 A Safe & Pleasant Time in NYC
## 5449 3944233 Huge space and MILLION DOLLAR VIEWs
## 5450 3944499 Cozy Bedroom in Crown Heights Brooklyn
## 5451 3944625 Huge serene room in a perfect area!
## 5452 3944627 Gramercy One Bedroom w Two Beds
## 5453 3945796 Grand Central/UN/Langone. Lrg Rm Vu's. Own1/2 Bath
## 5454 3946018 Luxury Building in Time Square
## 5455 3946115 Large 3 bedroom on Upper West Side
## 5456 3946177 A Safe & Pleasant Time in NYC, 2
## 5457 3946201 Spacious king size redwood bedroom, 20 min to NYC
## 5458 3946239 Clinton Hill Apartment 2 BR
## 5459 3946288 A Safe & Pleasant Time in NYC, 3
## 5460 3946471 Bedford Avenue
## 5461 3948939 Comfy 1 bd/1 bath-Upper West Side
## 5462 3950114 Warm, Spacious, Convenient and Cozy
## 5463 3951363 Historical Cozy Home in Bushwick
## 5464 3952093 Entire 2 bdrm/2 bth UWS/RiversdePrk
## 5465 3952676 Designer Apartment in Williamsburg
## 5466 3952731 Entire Flat in quiet neighborhood
## 5467 3953314 Hamiltons Hideway Lower Level Apt NYC
## 5468 3953415 LL2
## 5469 3953585 Manhattan Private Room15min=TimesSQ
## 5470 3953942 Spacious 1 Bedroom Apt in Brooklyn
## 5471 3957619 Prime SoHo! shops, food, fun
## 5472 3958460 Central Park-Lincoln Center
## 5473 3959369 Luxurious 1BR Best Views in NYC!
## 5474 3962389 Two bedroom fully furnished apt.
## 5475 3962586 Sunny private room in Gramercy
## 5476 3963137 Beautiful Bed-Stuy Brownstone
## 5477 3963345 Large Duplex Apt. with Balcony near Union Square
## 5478 3963635 A 2-story, 2-bedroom house - 20min to Downtown
## 5479 3967160 Firehouse Loft with Harbor Views
## 5480 3967492 East Village Studio Apt.
## 5481 3967945 Great Apt steps from Central Park
## 5482 3968434 SUNNY HUDSON RIVER VIEW 2BATHRM APT NEAR SUBWAY
## 5483 3968610 Charming apt in Greenwich Village!
## 5484 3970224 Groovy Two Story Garden Apartment
## 5485 3970345 Luxury large Penthouse /Fireplace / City views..
## 5486 3970562 In The Heart of The East Village
## 5487 3970701 Beautiful Private Room in Newly Renovated Apt
## 5488 3970724 Spacious 2 bedroom in trendy hood
## 5489 3970755 Sunny Junior 1 Bedroom
## 5490 3970936 Prime Gramercy, Luxury 1BD DOORMAN
## 5491 3971065 Spacious Modern Apt that feels like HOME
## 5492 3971526 Sunny, Spacious Room in Brooklyn!
## 5493 3971534 SpaciousBedroom in Brownstone Bklyn
## 5494 3971580 Entire apartment 1st Floor
## 5495 3971948 Charming sunny room in Brooklyn
## 5496 3973944 Ground & Rejuvenate PR Williamsburg
## 5497 3974464 Art Studio Loft in Manhattan (UWS)
## 5498 3975630 Beautiful 1 bedroom in NYC
## 5499 3979360 !!Studio next to Empire State Bldg.
## 5500 3979611 Located at the heart of Manhattan
## 5501 3979613 ECO-CHIC PALLET DESIGN APARTMENT
## 5502 3979628 BR/Private Bath 10Mins to TIME SQ
## 5503 3979714 Central Park North 1BD
## 5504 3980487 Awesome Apartment near Times Sq.
## 5505 3983422 Chelsea Home with a View
## 5506 3983469 Private room near Columbia University
## 5507 3983643 Gorgeous 1BD Best Gramercy Park
## 5508 3984168 Union Square~Reno 2BR~Great Value
## 5509 3985673 NYC Artists Loft in Chelsea
## 5510 3987571 Garden Apartment with Private Entry
## 5511 3987599 Great 3 Bdrm- Internships, Students
## 5512 3989564 Brooklyn Garden Apartment
## 5513 3992326 Bohemian Den in Chinatown-New York
## 5514 3993392 Stylish 2bdr harlem brownstone
## 5515 3993553 North Park Slope Studio
## 5516 3999228 Best Location NYC! Studio in heart of The Village
## 5517 4000133 Ditmas Park townhouse front bedroom
## 5518 4000561 Large apartment in Manhattan UWS
## 5519 4000571 Private Suite/Bath in Manhattan NYC
## 5520 4000579 Sunny 1 BR Brooklyn Loft Apartment
## 5521 4000621 Hancock House cozy Garden Level
## 5522 4003515 Charming New York town house
## 5523 4006264 Cozy Parkside 1 Bedroom Apartment
## 5524 4007277 Convenient and Affordable in the Heart of Astoria
## 5525 4007770 One Bedroom in Heart of Harlem
## 5526 4008443 Private room in Astoria, NY!!
## 5527 4013339 Amazing Private Room in the Heart of Manhattan
## 5528 4013668 Spacious Park Slope brownstone
## 5529 4016069 1C. Private Rm in Guesthouse Manhattan
## 5530 4016121 Located in the heart of NoLita.
## 5531 4016142 Big Bedroom in Sunny & New Lower East Side Apt
## 5532 4016173 Turn of the Century Railroad Flat /4 day Wknd
## 5533 4016791 Sunny Private Bedroom
## 5534 4017226 Comfortable room in Brooklyn
## 5535 4020957 Sunny Room in Bedstuy
## 5536 4024936 Beautiful, Bright, Williamsburg apt
## 5537 4025313 One Bed Studio at Wall Street
## 5538 4025329 SPACIOUS STUDIO-HIGH END FINISHES
## 5539 4026150 Personal, Private and Pretty NYC Apartment
## 5540 4028670 Luxury 1 Bedroom Sublet
## 5541 4031297 Clean Bedroom in Greenwich Village
## 5542 4031463 Comfortable Private space with a terrace
## 5543 4031809 Prewar classic NYC apartment.
## 5544 4032229 Beautiful airy room in nice family home
## 5545 4033300 Sunny and comfortable 2 bedroom apt
## 5546 4033422 The Lighthouse Manor
## 5547 4033444 Big New York City Suite Near Subway
## 5548 4033521 Brooklyn 1 BR Near Subway
## 5549 4033998 Chic and peaceful
## 5550 4037379 Bright, Spacious Studio in Brooklyn
## 5551 4037522 Cozy, Safe & Clean room in Astoria
## 5552 4038794 Bright room with private bathroom
## 5553 4039020 HUGE, PRIVATE BATH, STEPS FRM TRAIN
## 5554 4039789 Harmonious Sanctuary near Yankee Stadium.
## 5555 4040900 Couch in times square
## 5556 4040926 1BR Apartment- Fantastic Location!
## 5557 4041189 Cozy 1 bedroom + air mattress, 2 cats, sleeps 3
## 5558 4041351 Private Room In A Comfy 3BR Apt
## 5559 4041383 Harlem Knight - the heart of Manhattan
## 5560 4044625 LES Studio with Large Patio
## 5561 4044906 Ft Greene / Garden / Sauna
## 5562 4046281 Spacious and Sunny Private Bedroom!
## 5563 4047638 NYC-Great Cost x Benefit-Huge Room-Next to Subway.
## 5564 4047751 Beautiful Upper West 1 BR Apartment
## 5565 4047791 Spacious Sunny 2BR/Prime Greenpoint
## 5566 4047815 Jackson Heights charmer!
## 5567 4047932 Central Park Housing
## 5568 4048043 1 BR in Exposed Brick SoHo apt
## 5569 4050254 Mid-Century Modern En-Suite in Brownstone!
## 5570 4050765 Harmony House 3 on Madison Street
## 5571 4050795 Cozy Contempo Rustic Chic (stay w/a local artist!)
## 5572 4051643 Cozy Chic Uptown Home
## 5573 4052514 Wow! Two Bedroom Apartment in Safe Neighborhood!
## 5574 4053249 Quiet 2 bdrm in cozy Clinton Hill!
## 5575 4053287 Spacious Apartment with River Views!
## 5576 4053471 Apartment in Heart of Greenpoint
## 5577 4053517 Two-Bedroom Greenpoint Apartment
## 5578 4053564 Beautiful room with bathroom
## 5579 4053597 Artist's Creative Cozy Studio in Park Slope
## 5580 4053912 Lots of space, great location
## 5581 4053987 Small Private Room for 1 person
## 5582 4054332 awesome location.
## 5583 4054450 Comfortable & Spacious Home in NYC
## 5584 4055732 Stay in Clinton Hill sprout house!
## 5585 4057361 Large, Bright, Studio-Style Bedroom
## 5586 4058701 Spare bedroom for rent in UWS-NYC
## 5587 4058949 3C. Private Rm in Guesthouse Manhattan
## 5588 4059037 Light Filled Studio
## 5589 4059620 Heart of Soho/Nolita
## 5590 4060446 Modern spacious flat in Manhattan
## 5591 4060526 Private Room A
## 5592 4060993 Spacious apt. 15 min to Manhattan
## 5593 4063357 Stuvesant East
## 5594 4066224 Williamsburg Gem With Private Patio!
## 5595 4067861 Newly Renovated BR in Heart of BK!
## 5596 4068216 Unbelievable Upper East Side Loc.
## 5597 4069228 1BR condo right by Prospect Park
## 5598 4069341 Urban Rustic Retreat
## 5599 4069681 "DECO CASA" 2 Bedroom Greenpoint Brooklyn
## 5600 4070025 Luxury Flat with Outdoor and Study Room
## 5601 4070027 Room at East 110th St Upper East/E. Harlem
## 5602 4071007 Cozy 1 BR in Exposed Brick SoHo Apt
## 5603 4074248 Skylight Room in BK Duplex in Williamsburg
## 5604 4074892 Huge shared apt Near Times Sq & Convention Center
## 5605 4076084 Alcove Studio & Terrace best part of Williamsburg!
## 5606 4077090 Quiet Haven in Park Slope Huge 2BR
## 5607 4077427 Bright, Modern loft in Williamsburg
## 5608 4077428 Amazing park view in the LES!!!
## 5609 4077460 Brooklyn modern 2 BR Garden Floor
## 5610 4081707 Red Hook Architectural with huge outdoor area
## 5611 4081800 Classic Brownstone Apartment
## 5612 4081926 1 BDR APARTMENT 7 MINS FROM JFK 5 STAR RATED
## 5613 4082062 Unique room w/2 Twin beds..wifi*metro* quiet*safe
## 5614 4082357 Big bedroom in Brooklyn!
## 5615 4083049 Modern Brooklyn Brownstone
## 5616 4084603 Prime East Village 1 Bedroom
## 5617 4085647 Cozy and Convenient – Spacious 1 Bedroom Apartment
## 5618 4088506 Modern, central WBurg 2BR w/rooftop
## 5619 4089102 Serenity Near Manhattan
## 5620 4089189 Stunning Parlor Garden Apartment
## 5621 4089492 BUSHWICK (1 block from Jefferson L)
## 5622 4089915 PRIVATE, Airy, 1 Bedroom Apt in Central Bushwick
## 5623 4090748 Entire Manhattan Apt in Upper East
## 5624 4091629 DO DROP IN, LLC
## 5625 4092826 Forest Hills Villa 皇后区“曼哈顿”-森林小丘别墅!
## 5626 4093399 DOMINIQUE'S NY*chic* quiet room*wifi*metro
## 5627 4093511 Soho 1 Bedroom
## 5628 4093591 1 Room & 1 Bath
## 5629 4096470 THE THOMPSON SUITE
## 5630 4097279 A room with a window
## 5631 4097284 Bklyn, private Three Bedroom.
## 5632 4098078 Hamilton Heights Convent Ave Apartment
## 5633 4098271 Spacious Bedroom, L.E.S.
## 5634 4098814 Private Single Room
## 5635 4102208 Convenient, clean and chic apartment
## 5636 4102483 Sunny room on quiet block
## 5637 4103623 Prospect Park Neighborhood Retreat
## 5638 4103970 Private room in hip east Williamsburg/Greenpoint
## 5639 4108547 East Village Queen Bed - Breakfast - Subway 2 Blk
## 5640 4108799 Gorgeous Big & Bright Greenpoint Apt
## 5641 4109246 Calm Bushwick Room--Next to subway!
## 5642 4109420 Accessible, large & stylish 2BR apt in Astoria!
## 5643 4110645 Art deco apartment in Brooklyn
## 5644 4115327 The Garden Apartment
## 5645 4116403 Bright Room in Great Location
## 5646 4117134 Beautiful Room in the heart of NYC. Hell's Kitchen
## 5647 4117817 East Williamsburg Oasis
## 5648 4118244 3-LvPenthouse NYC skyline Subwy 50m
## 5649 4118907 Charming 2-Bedroom Townhouse Apt
## 5650 4119763 Large, Sunny 25 min to Central Park
## 5651 4119794 Large studio in Seaport Area
## 5652 4120122 Cosy room in Williamsburg
## 5653 4120182 Master Bedroom 别墅二楼主卧房
## 5654 4121110 Upper West Side studio with private terrace
## 5655 4121173 Large Studio in Luxury Building
## 5656 4121363 Large Garden Alcove Studio Apartment in Manhattan
## 5657 4125398 Private Room in prime UWS duplex!
## 5658 4125515 Cute room in Large Crown heights Apartment
## 5659 4126452 Quiet Two Bedroom Apartment
## 5660 4126676 Great Apt 5min from Time Square NYC
## 5661 4127402 Brand New Furnished Brooklyn Apt.
## 5662 4127524 Entire 1BD Apt in Long Island City!
## 5663 4128337 Entire Apartment - charming 1BR-20min to Downtown
## 5664 4128428 Sunny Bedroom in quirky apartment
## 5665 4128450 Sunny, Spacious 1BR in BoCoCa
## 5666 4128603 Cute 1 bedroom apt in East Village
## 5667 4129195 2 sleeping areas for 2 people together +2 singles
## 5668 4129212 Large 1 Bedroom apartment with office room.
## 5669 4129365 Beautiful SUNLIGHT in quiet apt!
## 5670 4129487 Peaceful Retreat in a Brownstone
## 5671 4129513 Haven of Tranquility in Bedstuy
## 5672 4129541 Wonderful Getaway in Bedstuy
## 5673 4129909 Great View, only one block to metro
## 5674 4129992 Country in the City
## 5675 4130266 Spacious Sunny Room
## 5676 4132116 Beautiful house top floor 1-3 large bedrooms
## 5677 4134035 Sunny Studio in Brooklyn
## 5678 4135674 Warm & lovely garden duplex in BK
## 5679 4135848 Cozy Bedroom with en suite bathroom
## 5680 4135876 "The Studio" Harlem Brownstone
## 5681 4136252 Chic NYC apt - near train & 42st St
## 5682 4136596 Entire Home/1 Bedroom Apt LES
## 5683 4137414 Sunny, Charming, and Zen
## 5684 4137415 Private room overlooking yard in prime Bushwick
## 5685 4137645 Beautiful Williamsburg Private Room
## 5686 4137680 LUXURY entire apt, steps to Central Park
## 5687 4137756 Gorgeous Newly-Renovated Apt
## 5688 4137789 Sunny 2BR in Brooklyn townhouse, steps to subway
## 5689 4137900 Beautiful apartment on the UES
## 5690 4137979 Williamsburg/Greenpoint Studio
## 5691 4140622 Spacious room in Bed-Stuy
## 5692 4140776 Basement 别墅的地下室
## 5693 4142125 Modern South Slope Studio w View
## 5694 4144519 1 Bedroom & Semi- Private Living Area
## 5695 4144630 Bedford Ave
## 5696 4144849 Cozy little studio in Chelsea
## 5697 4145124 Studio Apt
## 5698 4145494 Very Sunny Private Room with Bath
## 5699 4148088 Central Harlem Private Studio
## 5700 4148280 Comfy and Smart on Prospect Park
## 5701 4150932 Cozy Bedroom in BK Apt
## 5702 4150972 1 BDRM APT, 15 MINS FROM MANHATTAN
## 5703 4152752 Location is Everything. And Quiet Too!
## 5704 4154009 Luxury One Bedroom View on CP
## 5705 4155012 true 1 BR in prime east village
## 5706 4155099 Large Group Friendly Rental
## 5707 4156015 Cozy East River 1 bed/1 bath
## 5708 4157064 16' x 11' Furnished BR with Balcony
## 5709 4157451 Bedroom in Manhattan - Prime Location
## 5710 4158078 Private room in Loft
## 5711 4160934 Luxury Private 2 Beds nr C/3 Subways
## 5712 4161127 An Open and Peaceful Space Great for Families
## 5713 4162292 Charming Full 1BR Apt w/Backyard
## 5714 4162519 Happy cozy Manchi GUEST ROOM
## 5715 4163020 Gorgeous UWS apt with OWN full bath
## 5716 4163710 Cozy private room in beautiful apt
## 5717 4163742 Lovely 1BR in Ft. Greene
## 5718 4163781 Sun Soaked & Cozy PR Williamsburg
## 5719 4163804 Classic UWS 1 Bed in Doorman Bldg
## 5720 4165278 HUGE Room in an AMAZING Location!
## 5721 4168660 Northside Williamsburg Private Bdrm
## 5722 4168812 PRIVATE 1BR APT: Free WIFI & DIRECT TV
## 5723 4169094 Room in 2br apt Location by N,W,M60bus,Beer Garden
## 5724 4169840 Trendy Bushwick neighborhood
## 5725 4170460 #1 Superhost Special Offer in NYC!
## 5726 4170796 MODERN AND COZY FLAT w/ BACKYARD
## 5727 4171272 Clean, Bright 1BD in Bushwick!
## 5728 4171406 Private room in artist's loft!
## 5729 4171692 Luxe New Queen Br near Subways
## 5730 4172633 Cozy one bedroom apt at the center of Astoria
## 5731 4172947 Your Own 2-Bd ~ Comfortable and Unique ~ Bed-Stuy
## 5732 4173751 Lovely Apartment in Harlem West
## 5733 4174115 Spacious Soho Loft
## 5734 4174286 Bushwick BR/Private Bathroom
## 5735 4174847 Quiet bedroom in a waste free household
## 5736 4178152 Modern Private Entrance Bedroom, Nr A/C Subways
## 5737 4178851 Lofty Living: Heart of Williamsburg
## 5738 4179420 Cozy victorian peace of mind
## 5739 4180643 luxury one bedroom apt in prime LES location
## 5740 4181598 HUGE 1BD, RENOVATED, TIME SQUARE !!
## 5741 4182262 BedStuy Brooklyn Charm Awaits U - 3BR Apt
## 5742 4182568 WilliamsburgBrooklynPrivateBedroom
## 5743 4183424 Charming West Village 1 bdrm
## 5744 4183664 Cozy Room for 1
## 5745 4183801 Colorful apt, 25 mins to Manhattan
## 5746 4183989 SPRING in the City!! Zen-Style Tranquil Bedroom
## 5747 4187387 Beautiful Studio in posh Upper East
## 5748 4187653 Great Deal.
## 5749 4187747 UPPER EAST Landmark Blding:Walk to Central Park
## 5750 4188351 Cozy, charming private apt in Brooklyn
## 5751 4188807 Spacious Bedroom in a Brooklyn House
## 5752 4189428 Gorgeous Park Slope Space & Light
## 5753 4190301 Cool room while I'm away!
## 5754 4191257 Spacious 2 story Apt in Midtown!!
## 5755 4192400 Private+Cozy Room w/ Superhost ($0 Cleaning Fee)!
## 5756 4194010 Idealistic Inwood
## 5757 4194494 Unique Full-Floor 2br/2bath in the Heart of SoHo
## 5758 4195677 Clean private room in safe area near Manhattan
## 5759 4196039 Artist's Studio Apartment
## 5760 4197760 Stylish 1 BedRoom very quiet Upper East Side Apt!
## 5761 4198391 Manhattan 1-Bedroom, East Village
## 5762 4198695 Large and furnished
## 5763 4199411 Greenwich Village Living!
## 5764 4199782 Park Slope's - Pied à Terre (1-Bedroom Apt)
## 5765 4201905 Sunny 1 Bedroom -Financial District
## 5766 4203460 1 Br Near Empire State Building
## 5767 4204083 The White House
## 5768 4204302 Prime W. Village location 1 bdrm
## 5769 4204988 Charming Soho One Bedroom + Loft
## 5770 4205232 Private Room in Brooklyn
## 5771 4205816 Spacious South Slope apartment
## 5772 4206034 Clean and Huge Studio in Safe Area
## 5773 4206087 Spacious Artist's Studio
## 5774 4208547 Sweet Luxe Bed w/Private Backyard
## 5775 4209106 Bright Private Apartment w/ Manhattan Views
## 5776 4209595
## 5777 4211276 Beautiful, Spacious Brooklyn Home
## 5778 4211510 Simple Astoria Room 20minToManhattan
## 5779 4215595 LowerEastSide apt share shortterm 3
## 5780 4216183 Cozy and Vibey Apt in Williamsburg
## 5781 4216435 Cozy hideaway
## 5782 4216745 Sunlit Private Room / Spacious Pre-War Apartment
## 5783 4216774 Stay in the heart of Williamsburg!
## 5784 4216813 Penthouse w/Terrace Williamsburg
## 5785 4217268 1 Bedroom Apartment in Washington Heights - Summer
## 5786 4217758 Beautiful Apartment in Bushwick/Ridgewood
## 5787 4218034 Urban Jungle Garden Duplex
## 5788 4218067 Central One Bedroom Manhattan Apt
## 5789 4218098 Sunny, small apartment near Central Park-Columbia
## 5790 4218129 Special OFFER on Airbnb NYC Room!
## 5791 4219851 Bushwick Brooklyn NYC Apt, with LG kitchen & yard!
## 5792 4220151 Clean/Quiet Apt, Great Location, with washer/dryer
## 5793 4221999 Spacious & Bright: 1 BR Midtown!
## 5794 4224091 Brooklyn - Boerum Hill Beauty
## 5795 4225569 Lovely Astoria Studio-close to NYC!
## 5796 4225745 Cute Studio in Trendy Neighborhood
## 5797 4226098 W. 80's Central Park 3 Blocks Walk
## 5798 4226269 Private 1 bedroom in Williamsburg
## 5799 4226535 Bright Top Floor Apartment In The Heart Of BK
## 5800 4227018 Amazing View in East Williamsburg
## 5801 4227141 Cozy Bedroom
## 5802 4227161 New York I Love You 7 Bedrooms
## 5803 4227207 Park Slope perfectly renovated 1BR+
## 5804 4227499 Cozy Home w/Private Garden&Hot Tub!
## 5805 4227554 Big 2BR, just minutes to Manhattan!
## 5806 4232255 Super Clean Newly Furnished in Prime Bay Ridge
## 5807 4232356 Studio Apartment
## 5808 4232865 Beautiful Oasis
## 5809 4233025 Huge Loft in Brooklyn 15 mins from Manhattan
## 5810 4233705 looking for someone to stay 12days
## 5811 4235620 Elegant furnished 1BR apartment
## 5812 4235843 Charming Bedroom Bright and Cozy A2
## 5813 4235961 Central 2 Bedroom in Chelsea
## 5814 4236107 nice apt in west village
## 5815 4236725 Spacious, elegant home in Brooklyn
## 5816 4240861 Small Private Studio!
## 5817 4241028 Private Studio Apartment
## 5818 4241486 Floor Through East Village Lux Apt
## 5819 4243533 Private Bedroom in Large Apartment
## 5820 4244174 Quiet room in Greenpoint
## 5821 4244242 Best Bedroom in Bedstuy/Bushwick. Ensuite bathroom
## 5822 4244476 Sunny and Funky Greenpoint Room
## 5823 4244528 Williamsburg Beauty
## 5824 4244576 Very clean/comfortable shared room
## 5825 4247883 Sunny & quiet 2BR in great location
## 5826 4248788 W70s Lg. Studio with outdoor space
## 5827 4249131 BEST LOCATION in MANHATTAN!
## 5828 4249342 Perfect Private Room in Luxury Bldg w/Gym/Rooftop
## 5829 4250746 Newly-Renovated 2BR/1BTH Garden Apt
## 5830 4252172 Williamsburg Penthouse w/ Balcony
## 5831 4256091 Charming West Village Apartment
## 5832 4257572 Charming Studio in the Heart of NYC
## 5833 4257889 Large Room@ColumbiaUniversity/15min toTime Square
## 5834 4258443 Private bedroom in Bushwick
## 5835 4258867 Charming Brownstone Apt Fort Greene
## 5836 4259427 Appartement en duplex de 3 chambres
## 5837 4260964 Charming, private 1BR garden apt
## 5838 4261214 Cozy place in Uptown Manhattan
## 5839 4261951 Beautiful 1 Bedroom in Midtown West
## 5840 4262120 Columbus Circle and Park Views
## 5841 4262707 Upscale, JFK/Beach, modern 1BR apt.
## 5842 4263488 Columbus Circle 2br
## 5843 4263624 LOVELY GARDEN APT FOR 2 TO 4
## 5844 4263802 Fort Greene - Parlor One Bed
## 5845 4263880 Nice room available in modern Apt.
## 5846 4264049 Location Little Marcela
## 5847 4264127 Location Lucy ( only female )
## 5848 4265471 Ladies Shared Dorm Room (Top Bunk)
## 5849 4267133 Large private room in huge LES Apt
## 5850 4268286 Cozy brownstone bed & bath; pvt.ent
## 5851 4270499 Cozy One Bedroom Apt - Astoria
## 5852 4270683 Very nice studio 15 mins to the heart of Manhattan
## 5853 4271059 Huge 2.5 bdrm in North Brooklyn!
## 5854 4271119 Private bedroom in Hell's Kitchen
## 5855 4271877 New Private Bathroom Master Bedroom
## 5856 4273931 UPPER EAST SIDE DOORMAN BUILDING
## 5857 4274443 Wyndham 45 Midtown NYC
## 5858 4274462 Spacious and cosy private room.
## 5859 4274589 Modern XL Tribeca apt with terrace
## 5860 4274595 Garden Oasis Apartment - 2 bedroom
## 5861 4275729 Two room suite for rent in Bushwick
## 5862 4276532 Harlem Getaway Jazz Mansion
## 5863 4276618 Great location, great value
## 5864 4276762 5Bedroom Manhattan townhome triplex
## 5865 4277614 Private Room in a Spacious & Bright Apartment
## 5866 4277724 Bright, Spacious Wburg APT w/ VIEW!
## 5867 4277980 The Jewel of Crown Heights- Franklin Ave {NEW}
## 5868 4278084 Midtown NYC Studio Apartment 4E
## 5869 4278389 M1 Twin couch bed sleeps 1 guest
## 5870 4278568 The Lower East Side Experience
## 5871 4279260 Spacious Scandi-inspired apt in private house
## 5872 4279323 Cozy/spacious 3bd, room for rent
## 5873 4279550 Pure Serenity 1BR in the Lower East Side
## 5874 4280053 Clean Room by Metro/Subway -15mns to Manhattan
## 5875 4280118 Lovely, light-filled Bushwick flat
## 5876 4281241 Can't Beat this Central Location!
## 5877 4282178 A Superhost SALE! DELUXE Room!
## 5878 4282998 Spacious 1 BR & terrace on 19th floor viewing NYC
## 5879 4284031 BRIGHT BEAUTIFUL CHELSEA APT
## 5880 4284158 Homey East Village Private Bedroom
## 5881 4285876 LES/Chinatown One Bedroom apt (all to yourself)
## 5882 4286196 Two bedroom in Prime East Village
## 5883 4286662 1 Bedroom in Greenwich Village!
## 5884 4287589 LG GARDEN Apt ON Sunset Park, on41ST near 6th Ave
## 5885 4288276 New Apt near Central Park, Broadway, Museums
## 5886 4288361 Cozy 1BD on historic Stuyvesant St.
## 5887 4291200 Comfy Rm, Hallway Bath, Forest Hills
## 5888 4291654 Private room in Bushwick Loft
## 5889 4293935 Beautiful brownstone room
## 5890 4294546 Bright Apt Williamsburg-Greenpoint
## 5891 4294640 Bedroom, balcony and best of NY.
## 5892 4294969 Welcome to my home
## 5893 4295108 Large Sunny Master Private bedroom
## 5894 4295542 Private 1 Bdrm Suite in Historic Brownstone
## 5895 4295603 Beautiful Loft in flawless factory conversion
## 5896 4295733 Comfortable Room w/access to full apartment
## 5897 4296126 POSH High Rise near Times Square
## 5898 4296291 100 st! cozy, clean, private UES E Harlem
## 5899 4296710 NICE SPACE IN NYC
## 5900 4296956 Sharbell’s vacation
## 5901 4297952 Awesome Chelsea 1 bedroom
## 5902 4299536 10 Minutes to Manhattan
## 5903 4302293 Private Room with 2nd Full Bath in Modern Art Apt
## 5904 4303600 Luminous Modern Apt Share for Young Professionals
## 5905 4303825 Cute apartment with 2 big bedrooms
## 5906 4305170 Cute ethnic cosy private studio!
## 5907 4308612 Holiday special! Best location!
## 5908 4308633 Wonderful Willi!
## 5909 4308798 Upper East Side 1-Bedroom
## 5910 4308991 Big Room with Private Bathroom
## 5911 4309079 Big Sunny Room in Apartment With Views
## 5912 4309648 Ebony & Ivory Close to Manhattan
## 5913 4309757 Beautiful Studio apartment in Prime Park Slope
## 5914 4310501 Spacious Bedroom in East Village
## 5915 4311648 Modern & Sunny w/ Private Terrace
## 5916 4315934 The Brooklyn Haven
## 5917 4318364 Beautiful Loft in Meatpacking
## 5918 4320934 Central Harlem large beautiful studio
## 5919 4325244 East Village Comfort & Convenience
## 5920 4325284 Lovely, Clean, Comfy w/River Views!
## 5921 4325329 Charming Brownstone Apt Steps from Central Park!
## 5922 4329728 Spacious room with view in Chelsea
## 5923 4331684 Modern 2-Bed Apt.- Great Location!
## 5924 4331691 Full apartment - cute & quirky
## 5925 4333204 Harlem cosy renovated unit for two
## 5926 4334446 Cozy 1 bdrm Park Slope, Brooklyn,
## 5927 4334513 1 bed/bath condo steps from Bedford
## 5928 4338177 Sleeps 4! Prime Chelsea~large 1BR
## 5929 4338541 Beautiful 1BR apt Upper West Side
## 5930 4338548 Gorgeous Sunny Bohemian Duplex with Garden
## 5931 4339188 Fantastic Comfortable Space. Affordable
## 5932 4339189 Big, Bright Fort Greene Apartment!
## 5933 4339202 **ASTORIA one private cozy, cute room** Nihongo ok
## 5934 4339924 Penthouse Flat, Million-$-View, Best Area!
## 5935 4340609 Gorgeous 2BR XL Loft @ Habitat 101
## 5936 4341158 Large, Cozy & Comfortable Apartment
## 5937 4342895 The Perfect 1brm Apartment - Sunny & Spacious!
## 5938 4342924 Large Sunlight House
## 5939 4343011 City Studio in the Upper East Side
## 5940 4343312 Room For Rent
## 5941 4343401 Room #1 Private Room
## 5942 4343956 Large Spacious Room For Rent
## 5943 4347579 NY Duplex Apartment in Flatiron
## 5944 4349695 Rustic Chic Private Living Room
## 5945 4350120 Spacious 3-room apt. in prime area of Brooklyn.
## 5946 4350406 Studio apartment in heart East Village
## 5947 4350464 LargeApt 1 BLOCK frm A,C,B,D,2,3
## 5948 4350495 Private Room for Rent
## 5949 4350952 Brooklyn Brownstone Clinton hill
## 5950 4351563 Rooftop Apt in Prospect Heights
## 5951 4352537 Beautiful Room In Gramercy!!!
## 5952 4354764 A private humble abode for you
## 5953 4354901 Williamsburg Apt Flexible for December
## 5954 4356396 Cozy Studio in a great neighborhood (Upper East)
## 5955 4357134 Beautiful NY Gem
## 5956 4357892 New!!! 4 BR/2 Bth in a private house.
## 5957 4358291 Stunning Brooklyn Brownstone
## 5958 4359219 Eagle-eye view of New York
## 5959 4359718 Charming 2BD flt in Trendy Bushwick
## 5960 4359756 MANHATTANs BEST, 12minutes from TIMES SQUARE
## 5961 4359921 Bright Loft Style place in the best of ASTORIA
## 5962 4362474 Adorable East Village 1 Bedroom
## 5963 4362570 Welcoming Park Slope Garden Apt.
## 5964 4363228 Magnificent Loft in East Village
## 5965 4364789 Sunny Williamsburg, Brooklyn Studio
## 5966 4364924 Pre-War Gem in the heart of the UWS
## 5967 4365276 Entire 2BR APT (not a railroad)
## 5968 4365328 Clean, cozy bedroom in sunny East Village/LES apt
## 5969 4365491 Cozy room in East Village
## 5970 4365756 Brownstone Parlor Floor Suite by Superhost!
## 5971 4365765 Beautiful spacious bedroom
## 5972 4365833 Lux Baby Friendly Apt, Williamsburg, Brooklyn
## 5973 4366049 Sleeps 6 by Metro/Subway - 15 mns to Manhattan
## 5974 4366115 Bright duplex apartment
## 5975 4369737 Bright 1 Bedroom, Perfect Location!
## 5976 4370230
## 5977 4375146 Beautiful & spacious apartment
## 5978 4375375 Artsy 2 Bedroom Apt. in Harlem, NY
## 5979 4377337 Beautiful Railroad Style Apartment!
## 5980 4377929 Spacious 1Br in East Village
## 5981 4378816 Room in Bushwick Brooklyn NYC, LG KITCHEN & YARD
## 5982 4378951 Child-friendly 2BR w/ Yard access and Free Parking
## 5983 4379145 specious 1bd apt on Saint Marks Pl
## 5984 4379271 Spacious Bklyn Apt Near Manhattan
## 5985 4379307 West Village Apt with patio, Steps from subway!
## 5986 4383734 Sunny room with private entrance
## 5987 4384181 Livin' La Vida Brooklyn!!!
## 5988 4384442 Bedroom in Crown Heights
## 5989 4384820 N 6th & Bedford PRIME Williamsburg
## 5990 4385360 Massive 1BR in the Lower East Side
## 5991 4386513 2 Bedroom Duplex, INCREDIBLE views! 30day discount
## 5992 4386598 1 Bedroom in Top Lower East Side Address
## 5993 4386718 One bedroom near Central Park West
## 5994 4387007 Beautiful Beach & Great Space
## 5995 4387152 Petit chalet with secret garden
## 5996 4387491 Light Filled Spacious 1BR, with Cat
## 5997 4390865 Upper East Side 1 Bedroom Gem
## 5998 4392066 one room bushwick
## 5999 4392351 MURRAY HILL! your home.. BEAUTIFUL
## 6000 4392596 Great room in a 2 BD apartment
## 6001 4392996 Heart of Upper West Side 1BR
## 6002 4393126 West Village - Charming Studio
## 6003 4393502 Attic Space - 三楼阁楼
## 6004 4393519 Penthouse for 4th of July Weekend
## 6005 4393628 Double-deck bed room 别墅二楼卧房
## 6006 4394687 Upper East Side Studio
## 6007 4396142 Entirely private suite in our townhouse!
## 6008 4396299 Cozy Private Bedroom, Brooklyn NY.
## 6009 4396939 Private Room in Midtown Manhattan
## 6010 4397455 Quiet 2 bedroom retreat in the heart of Brooklyn
## 6011 4399721 Bedroom in Beautiful Brooklyn Loft
## 6012 4401013 3BR/2BA Duplex - 1min to subway!
## 6013 4401193 Private Studio, Columbia University
## 6014 4402117 GORGEOUS 2 Bedroom in Queens NYC
## 6015 4402805 LRG 2br BKLYN APT CLOSE TO TRAINS AND PARK
## 6016 4403159 Cute bedroom in Williamsburg
## 6017 4403928 Modern Apt Close to Manhattan
## 6018 4403972 Upper east doorman
## 6019 4404544 Beautiful, bright, quiet room w/ private bathroom
## 6020 4404818 Bountiful Space and Cozy Home
## 6021 4405156 CHEAP & CONVENIENT
## 6022 4405874 Master room super clean in Prospect Park!!!! :)
## 6023 4407787 Clean Charming, Walk-In Closet + Garden
## 6024 4407790 Retreat Room
## 6025 4408381 Apartment Crown Heights Brooklyn NY
## 6026 4409074 Spacious 3BDR Prime Location!
## 6027 4410626 Spacious neo-country seaside loft
## 6028 4412533 cozy tucked away in el barrio
## 6029 4415695 Cozy Room in Classic NY Apt//Lively Midtown Area
## 6030 4416667 Quiet Brooklyn Hideaway, At the Subway
## 6031 4416970 Soaring Space in Laid-back Brooklyn
## 6032 4417147 New year in New York City
## 6033 4417912 Huge Apartment on Prospect Park
## 6034 4421355 Your own apartment in Brooklyn!
## 6035 4421826 Manhattan Studio
## 6036 4422017 Private Spacious Rm, Prospect Park
## 6037 4422602 East Village Walkup Jam
## 6038 4423650 Private Room - Central Park View
## 6039 4423782 Large studio in trendy Harlem
## 6040 4424261 Large 1 BR with backyard on UWS
## 6041 4424391 Cozy Studio - Upper East
## 6042 4424405 Lovely 2 BR Upper East NYC - 1 month min
## 6043 4424511 Great location, cozy, near F, G, R!
## 6044 4426780 Convenient Harlem studio
## 6045 4426877 Sunny 2BR, 2BA duplex
## 6046 4427442 Large Apt. in NYC w/natural light
## 6047 4428027 True Brooklyn Loft Experience
## 6048 4428854 Charming Furnished Private Room
## 6049 4428906 Family Friendly Park Slope House
## 6050 4429337 Large, stylish & sun-filled 1BDRM loft
## 6051 4430645 Brooklyn Townhouse Duplex
## 6052 4430657 Coming soon
## 6053 4430747 Adorable 1Bd Next to Subway in Bushwick - Brooklyn
## 6054 4430808 Studio-Private Entrance /Bath/Kitchen Near JFK
## 6055 4430819 Prime East Village One Bedroom Apt!
## 6056 4431247 1st Time/Solo/Duo Travelers!Charming Studio Share!
## 6057 4431674 HOME AWAY FROM HOME
## 6058 4435766 West Village - Celebrities + LIGHT
## 6059 4436185 Charming Park Slope Studio Sublet
## 6060 4436944 COMFORTABLE & COZY-2 STOPS BARCLAY
## 6061 4437053 Sunlit 1 bedroom in NoLita
## 6062 4438029 Chelsea High End Apartment
## 6063 4438223 Hip 1 bedroom in perfect location
## 6064 4438459 Gorgeous 1 Bedroom in the heart of NYC: Chelsea
## 6065 4438470 Home away from home East Village
## 6066 4438931 FURNISHED CHARMING ROOM IN MANHATTA
## 6067 4439602 East Village Bedroom
## 6068 4439839 Entire 3BR Private Apt 20min>Manhattan
## 6069 4440020 2 Bedrooms and One Bath Room
## 6070 4440181 One bedroom in 2 bedroom apartment
## 6071 4440611 Bright Spacious Bushwick Home
## 6072 4440751 Entire Amazing Chic Studio @ Lower East
## 6073 4444204 2-3 bedroom UWS garden triplex
## 6074 4445185 2 Level Loft room in Artist Studio
## 6075 4446178 Bright & big apt 3 blks from subway
## 6076 4446862 Charming Room in Prospect Heights!
## 6077 4447524 Charming West Village Studio
## 6078 4447611 1 BR in Gramercy Park
## 6079 4447904 Beautiful Upper West Side
## 6080 4449058 Cozy Private Room in Upper WestSide
## 6081 4449559 Very Bright Modern Apartment 2 Mins from Manhattan
## 6082 4449611 Big Duplex 1 BR/Loft w/ outdoors
## 6083 4450020 Entire One Bedroom apartment
## 6084 4452723 Cozy 2BR apartment
## 6085 4453233 Cozy Hells Kitchen/Times Sq 2BR
## 6086 4453484 Prime Artist Loft & Exposed Brick
## 6087 4454122 Cozy Harlem Hideaway **
## 6088 4454400 NYC UES charming 1 bedroom
## 6089 4454538 Bright, Spacious Entire Studio
## 6090 4455094 West Village Style and Charm
## 6091 4455301 Pretty and Private in Clinton Hill
## 6092 4456004 Spacious Bedroom in Bushwick w/AC
## 6093 4456312 Large Cheerful Private Bronx Room for Med Students
## 6094 4456555 Entire flr-thru 2bdrm apartment near ProspectPark!
## 6095 4456880 Superhost 3 bedroom DISCOUNT
## 6096 4457556 cozy queen for 2 in el barrio
## 6097 4460838 The Elizabeth
## 6098 4462008 Twin room
## 6099 4462491 Beautiful Loft in LES Manhattan!
## 6100 4462553 Greenwich / West Village 2 Bedroom
## 6101 4464418 Charming 1BD Pre-War Apartment
## 6102 4464508 Flatbush Gardens
## 6103 4467771 Beautiful Chelsea 2 Bedroom apt
## 6104 4469264 Cute brick wall Br in Williamsburg.
## 6105 4469650 Huge 5BR Townhouse - LEGAL NYC B&B!
## 6106 4469679 Sunny Lower East Side Penthouse
## 6107 4470423 Large One Bedroom near Union square
## 6108 4471513 The Ultimate Luxury!
## 6109 4472904 Dorm Sz Room. Near 2 & 5 train 180 st Bronx zoo
## 6110 4472978 Charming Studio in a Great location
## 6111 4473156 NYC,Modern and Spacious Apt
## 6112 4475128 Amazing Single Bedroom Only 5min From Central Park
## 6113 4476605 Great 4 Families Near Parade + Park
## 6114 4476945 Modern Brownstone in Harlem
## 6115 4479556 Amazing convenient 5 min to city
## 6116 4479625 Charming 1 bedroom, great location!
## 6117 4479632 Charming duplex garden flat in SoHo
## 6118 4480308 Charming, Sunny Downtown Studio
## 6119 4480793 B's Suite
## 6120 4481427 1BR w/ Large Patio on Ridgewood/Bushwick border.
## 6121 4481474 B's Elegant Parlor Suite
## 6122 4481694 *NEW* Modern Sunny Loft in Bushwick/Brooklyn
## 6123 4482158 Lovely and Spacious Park Slope Home
## 6124 4482584 Private & clean 1 bd/1br Willamsburg w/ roofdeck.
## 6125 4482783 ❤️ of Wburg, Private Living+Entrance
## 6126 4483117 Large private br in renovated apt/close to subway
## 6127 4483517 Stunning room. 15mins to Manhattan!
## 6128 4483672 Warm and Cozy Room in Harlem
## 6129 4484212 King size bed -Private bdrm
## 6130 4484620 Large Sunny Private Room in 2BR steps from subway
## 6131 4484899 Classic East Village Studio
## 6132 4485286 Luxury Apartment on Wall Street
## 6133 4488882 Lovely Garden Apartment in Bklyn
## 6134 4490268 Elegant Bushwick Apartment
## 6135 4491140 Tranquility in The Heart of Astoria
## 6136 4492303 Bright 1 bdrm apt near Central Park, shops & metro
## 6137 4492678 Heart of the East Village- Best Loc
## 6138 4492821 Great location, spacious apt.
## 6139 4493474 Cozy Bedroom in best area of FiDi
## 6140 4493526 Amazing Location, Incredible Space
## 6141 4493658 Cute & Modern 1 Bedroom Apt
## 6142 4494217 Stylish West Village Artists Penthouse Loft
## 6143 4494588 Cosy apartment in the East Village
## 6144 4494705 1 bedroom in Brooklyn
## 6145 4497294 Clean, quiet, safe 25Min Dwntn NYC
## 6146 4497963 Iconic West Village Apartment
## 6147 4498688 Large, Immaculate Brooklyn 2 BR apt, sleeps 4-5
## 6148 4498927 Manhattan townhouse near subway
## 6149 4499097 Upper West Side Studio doorman bld
## 6150 4499976 Large Sunny 2 Bedroom + den - UWS
## 6151 4500272 HUGE STUDIO-Cozy,Centrally Located!
## 6152 4500615 Chelsea, balcony and 2 bedrooms!
## 6153 4500794 Sunny/artistic, Manhattan 2 bedroom
## 6154 4500897 Cozy Brooklyn Apartment!
## 6155 4501164 Union Square Apartment + Private Backyard
## 6156 4502339 Centrak Park North cozy apartment
## 6157 4502545 XL off Fifth Avenue & Central Park
## 6158 4503472 Park Slope Home away from Home
## 6159 4504049 Blissfully Quiet Room
## 6160 4504353 Sunny, Artsy Brooklyn Room
## 6161 4504493 Studio Apartment- Furnished
## 6162 4507262 Luxurious Village 1 bed!
## 6163 4508885 Upper West Apartment Block Away from Central Park!
## 6164 4509357 Clean-Cozy-Beside 3 train station
## 6165 4509500 Prime Chelsea~XL1Br~Terrace~Sleeps4
## 6166 4509560 Reno Studio Gramercy~Sleeps3!
## 6167 4509664 2BR - Great West Village Location
## 6168 4512045 Beautiful Exposed Brick Studio Loft
## 6169 4512093 manhattan (UWS) townhouse
## 6170 4512329 Spacious Room in Sugar Hill
## 6171 4513084 Beautiful Sunny Private Penthouse Suite
## 6172 4513190 Beautiful 1 Bedroom Apt
## 6173 4514042 Bushwick Duplex 1
## 6174 4516766 Large, Luxury Bedroom nr JMZ subway
## 6175 4516939 Zen Oasis in Bushwick, near JMZ Subways
## 6176 4517117 BELLA CASA-Pvt Rm-2 beds-Sleeps 4. Near Columbia!!
## 6177 4517177 1 bedroom apt 1 stop from Manhattan
## 6178 4517848 Landmark 1 Bedroom has 2 beds, Free WiFi
## 6179 4518242 Zen MiniPalace Astoria
## 6180 4519764 Private Space in Manhattan 8/25-9/9
## 6181 4520113 Lovely - Spacious, Garden + Garden View
## 6182 4520449 Spacious 1 Bedroom in Midwood, BK!
## 6183 4520941 SPACIOUS, 2 bedrooms, sleeps 4, private bath
## 6184 4523324 Large private 2 bedroom near Union Sq .
## 6185 4524289 Private room in South Slope
## 6186 4525475 Manhattan, UWS, Bright, 1BR, & Loft
## 6187 4525589 Spacious studio apt in Jackson Hts
## 6188 4530085 Cosy East Village apartment!
## 6189 4530154 Park Slope Sky Parlor
## 6190 4530160 Large apt in heart of Williamsburg
## 6191 4530432 Landmark Parlor Studio near train has 2 beds.
## 6192 4531802 Sunny East Village 1 Bedroom
## 6193 4531990 Charming and Clean Brooklyn Apt.
## 6194 4532435 Beautiful 2 Bedroom Apartment in Williamsburg
## 6195 4532913 Williamsburg private clean cozy RM
## 6196 4533010 Spacious Manhattan One Bedroom Apt
## 6197 4536637 Kosher new studio close to subway
## 6198 4537198 Huge room wt bathroom + entrance
## 6199 4537297 Rosa B Private Apartment! Quiet and Safe Area.
## 6200 4537389 New Years In New York City
## 6201 4537500 Location Nancy
## 6202 4537520 1 bdrm apartment in boerum hill!
## 6203 4538012 Bright Harlem Home in New Building!
## 6204 4538019 Luxury Queen Bed_Plush Mattress
## 6205 4538238 Sunny studio apartment in the heart of Manhattan
## 6206 4538274 Country Vibe, Big City Feel
## 6207 4538901 Entire Apt. in E. Williamsburg
## 6208 4539483 Colorful Studio Near Columbia Univ.
## 6209 4539520 Spacious 1 Bedroom in Bohemian Comfort
## 6210 4539906 Bright 1BR, central location
## 6211 4540852 Williamsburg Apartment
## 6212 4541102 Perfect 2 Bed Bklyn Apt, near SUNY Downstate!
## 6213 4541187 Cozy 1BR Apartment in Astoria
## 6214 4545882 Amazing studio/Loft with a backyard
## 6215 4545999 Your Brooklyn Nook
## 6216 4546034 1BR by 1&A trains
## 6217 4546721 Large 1 bdrm near L in Williamsburg
## 6218 4547143 CHARMING bedroom in BedStuy
## 6219 4547273 Beautiful Spacious Studio By Park
## 6220 4549155 Quaint Brownstone with Garden
## 6221 4549248 Cozy One Bedroom in Williamsburg!
## 6222 4549555 Studio Space, 10 minutes to Central Park and river
## 6223 4549557 Central Harlem
## 6224 4549627 Large Room with Private Bathroom
## 6225 4549930 Charming apt close to everything!
## 6226 4550015 Greenwich/West Village Private Room
## 6227 4550041 Bright! LARGE 2 BEDS near Manhattan
## 6228 4550494 2BR, 2 Full Bath, SPACE, Short term monthly
## 6229 4550557 Bright LARGE 2 BEDS! near Manhattan
## 6230 4550602 Cozy & Clean #3
## 6231 4550747 Cozy & Clean #4
## 6232 4553528 Brownstone Williamsburg room with skylight Create
## 6233 4553721 Art Large bedroom Brownstone for 1 or 2 persons
## 6234 4554473 Bright and Spacious, near the Park
## 6235 4554577 Bright and Cheerful Prospect Heights 1-bedroom
## 6236 4555241 Clean, Cozy, Close to City (15min)
## 6237 4555470 Lovely One Bedroom Heart Of Astoria
## 6238 4556564 Private Room in Spacious Uptown Apt
## 6239 4556760 Beautiful, Spacious Room in Loft
## 6240 4557206 Cozy 1BD Apartment near Manhattan
## 6241 4557370 Holiday in Manhattan! Great Views!
## 6242 4558046 Spacious Studio in Brooklyn
## 6243 4559096 $99 Manhattan/Time Sq.
## 6244 4563401 MIDTOWN APARTMENT WITH SPECTACULAR VIEW
## 6245 4564292 HEART of NEW YORK // ニューヨークの中心
## 6246 4564695 Sunny, Quiet Queen Bedroom, Best Block in LES
## 6247 4564840 Woodsy-chic Lofted 1BR, Office, AC
## 6248 4565734 Spacious 2 Bedroom + Study
## 6249 4566340 Spacious 2BR Greenpoint Getaway
## host_id host_name neighbourhood_group
## 1 2787 John Brooklyn
## 2 2845 Jennifer Manhattan
## 3 4632 Elisabeth Manhattan
## 4 4869 LisaRoxanne Brooklyn
## 5 7192 Laura Manhattan
## 6 7322 Chris Manhattan
## 7 7356 Garon Brooklyn
## 8 8967 Shunichi Manhattan
## 9 7490 MaryEllen Manhattan
## 10 7549 Ben Manhattan
## 11 7702 Lena Manhattan
## 12 7989 Kate Manhattan
## 13 9744 Laurie Brooklyn
## 14 11528 Claudio Manhattan
## 15 11975 Alina Manhattan
## 16 15991 Allen & Irina Brooklyn
## 17 17571 Jane Brooklyn
## 18 18946 Doti Manhattan
## 19 20950 Adam And Charity Brooklyn
## 20 17985 Sing Manhattan
## 21 21207 Chaya Brooklyn
## 22 22486 Lisel Brooklyn
## 23 22486 Lisel Brooklyn
## 24 22486 Lisel Brooklyn
## 25 25183 Nathalie Brooklyn
## 26 25326 Gregory Brooklyn
## 27 26394 Claude & Sophie Manhattan
## 28 30193 Tommi Manhattan
## 29 31374 Shon Manhattan
## 30 21904 Dana Manhattan
## 31 32294 Ssameer Or Trip Manhattan
## 32 32045 Teri Manhattan
## 33 32169 Andrea Brooklyn
## 34 32294 Ssameer Or Trip Manhattan
## 35 35935 Angela Brooklyn
## 36 9744 Laurie Brooklyn
## 37 7355 Vt Brooklyn
## 38 44145 Tyrome Brooklyn
## 39 45445 Harriet Brooklyn
## 40 7549 Ben Manhattan
## 41 46978 Edward Manhattan
## 42 47610 Abdul Brooklyn
## 43 47618 Yolande Brooklyn
## 44 16800 Cyn Manhattan
## 45 47727 Earl Manhattan
## 46 49670 Rana Brooklyn
## 47 50124 Orestes Queens
## 48 50148 Adreinne Brooklyn
## 49 50846 Jennifer Brooklyn
## 50 52335 Alexander Brooklyn
## 51 54275 JT And Tiziana Brooklyn
## 52 56094 Joya Manhattan
## 53 56104 James Brooklyn
## 54 56246 Jeanne Brooklyn
## 55 56284 Francesca Manhattan
## 56 56512 Joanna Brooklyn
## 57 59023 Bianca Manhattan
## 58 59734 Luiz Manhattan
## 59 32169 Andrea Brooklyn
## 60 60049 Ted Manhattan
## 61 60252 Cristina Brooklyn
## 62 60278 Petra Manhattan
## 63 61491 D Manhattan
## 64 63588 Dimitri Brooklyn
## 65 63613 Patricia Brooklyn
## 66 63924 Mark Manhattan
## 67 64056 Sara Brooklyn
## 68 64442 Reka Manhattan
## 69 64522 Daniel Brooklyn
## 70 4396 Casey Manhattan
## 71 65837 Robin Manhattan
## 72 66035 Anna Manhattan
## 73 66243 Enzo Manhattan
## 74 68428 Tye And Etienne Manhattan
## 75 68599 George Brooklyn
## 76 69829 Josh Manhattan
## 77 69942 Victoria Manhattan
## 78 70091 Justin Queens
## 79 71512 Blaise Brooklyn
## 80 71876 DAVID And RICK Manhattan
## 81 72014 Lulú Brooklyn
## 82 73051 Sybilla Manhattan
## 83 73128 JoLynn Manhattan
## 84 73469 Gaia Brooklyn
## 85 44263 Ana Manhattan
## 86 74303 Maggie Brooklyn
## 87 74857 Starlee Brooklyn
## 88 62407 Edward Manhattan
## 89 76627 Pas Manhattan
## 90 72014 Lulú Brooklyn
## 91 961342 Augustin Brooklyn
## 92 78460 Sean & Lynette Brooklyn
## 93 51038 Erica Brooklyn
## 94 79070 Tracy Brooklyn
## 95 79402 Christiana Brooklyn
## 96 44145 Tyrome Brooklyn
## 97 42032 Dana Manhattan
## 98 82685 Elliott Manhattan
## 99 83257 Olan Manhattan
## 100 87773 Shelly Brooklyn
## 101 32294 Ssameer Or Trip Manhattan
## 102 11481 Annette Brooklyn
## 103 63318 Meka Manhattan
## 104 93790 Ann Manhattan
## 105 97219 Seth Brooklyn
## 106 97797 Brenda Brooklyn
## 107 87773 Shelly Brooklyn
## 108 105538 Erik Brooklyn
## 109 107628 Dena Manhattan
## 110 109589 Jessica Brooklyn
## 111 59734 Luiz Manhattan
## 112 51038 Erica Brooklyn
## 113 112793 Sally Manhattan
## 114 42273 Dani Brooklyn
## 115 72062 Bruce Manhattan
## 116 115157 Nimo Manhattan
## 117 115307 Alexandra Brooklyn
## 118 115560 Stacy Manhattan
## 119 72062 Bruce Manhattan
## 120 118971 Evelyn Brooklyn
## 121 119510 Emma Manhattan
## 122 119588 Vero Brooklyn
## 123 119900 Sylvie Manhattan
## 124 120223 Jen Manhattan
## 125 65091 Kay Brooklyn
## 126 6197784 Jo Brooklyn
## 127 124352 Lisa Manhattan
## 128 124797 Fernando And Lenin Manhattan
## 129 35935 Angela Brooklyn
## 130 126607 Laurine Manhattan
## 131 127608 Chris Brooklyn
## 132 125857 Uli Manhattan
## 133 129352 Sol Brooklyn
## 134 120335 Cs Manhattan
## 135 117287 Lara Manhattan
## 136 135619 Tom Manhattan
## 137 137292 Sunder Brooklyn
## 138 137814 Waldemar Brooklyn
## 139 137974 Khem Brooklyn
## 140 116599 Sahr Brooklyn
## 141 138579 Ali+Scott Brooklyn
## 142 139612 Elisabeth Brooklyn
## 143 139874 Sarah Brooklyn
## 144 140025 Fredah Queens
## 145 137974 Khem Brooklyn
## 146 142833 Katherine Brooklyn
## 147 143027 Ming Brooklyn
## 148 143048 Paula Manhattan
## 149 72014 Lulú Brooklyn
## 150 149929 Obed Brooklyn
## 151 120291 Karen Manhattan
## 152 62165 Michael Brooklyn
## 153 142684 White Brooklyn
## 154 137432 Paz Brooklyn
## 155 157798 Irene Manhattan
## 156 158284 Karene Manhattan
## 157 159370 Viviana Brooklyn
## 158 92788 Sara Manhattan
## 159 165789 Sarah Brooklyn
## 160 168417 Marie Manhattan
## 161 168525 Gus Brooklyn
## 162 110506 Myung Queens
## 163 170510 Renée Brooklyn
## 164 171851 Henry Brooklyn
## 165 174025 Sylvia Manhattan
## 166 180083 Syl Brooklyn
## 167 181167 Lorenzo Manhattan
## 168 137814 Waldemar Brooklyn
## 169 11481 Annette Brooklyn
## 170 185978 Newyorkroomwithaview Staten Island
## 171 177536 Tessa Brooklyn
## 172 190409 Waundell Bronx
## 173 193360 Young Brooklyn
## 174 72062 Bruce Manhattan
## 175 193722 Coral Manhattan
## 176 181376 Carol Brooklyn
## 177 193637 Sara Manhattan
## 178 126607 Laurine Manhattan
## 179 201297 Myrna Manhattan
## 180 202249 Campbell Manhattan
## 181 67778 Doug Brooklyn
## 182 204539 Mark Queens
## 183 867225 Rahul Manhattan
## 184 204724 Miyoung Brooklyn
## 185 8198 Monica Brooklyn
## 186 209460 Marylyn Brooklyn
## 187 210746 Kathleen R. Brooklyn
## 188 212722 Teresa Manhattan
## 189 214148 Robert Brooklyn
## 190 214287 Alex Manhattan
## 191 218404 Claudia Manhattan
## 192 221873 Shane Manhattan
## 193 9744 Laurie Brooklyn
## 194 236421 Jessica Manhattan
## 195 236655 Erina Manhattan
## 196 237329 Lee Manhattan
## 197 27848 Jullett Queens
## 198 240360 Marlaine Manhattan
## 199 247432 Charlotte Brooklyn
## 200 204539 Mark Queens
## 201 204539 Mark Queens
## 202 204539 Mark Queens
## 203 10889 Bob Brooklyn
## 204 255583 Anka Manhattan
## 205 253385 Douglas Manhattan
## 206 210746 Kathleen R. Brooklyn
## 207 256161 Wayne Manhattan
## 208 190409 Waundell Bronx
## 209 258164 Jenny Manhattan
## 210 260709 Paul Brooklyn
## 211 262138 Tami Brooklyn
## 212 88209 Jason Manhattan
## 213 263414 Pete Manhattan
## 214 168525 Gus Brooklyn
## 215 264928 Sally Brooklyn
## 216 267593 Leonardo Manhattan
## 217 268014 Alex Brooklyn
## 218 256161 Wayne Manhattan
## 219 272006 Vasili Queens
## 220 199392 S.M. Brooklyn
## 221 239208 Ori Manhattan
## 222 274557 Ana Manhattan
## 223 275459 I Manhattan
## 224 275578 R Manhattan
## 225 276291 Simon Manhattan
## 226 277379 Agnes Manhattan
## 227 277394 Linda Brooklyn
## 228 279797 Dave Manhattan
## 229 282927 Drica Manhattan
## 230 204539 Mark Queens
## 231 274782 Betty Brooklyn
## 232 186084 Ricardo & Ashlie Manhattan
## 233 288031 Leslie Manhattan
## 234 289653 Harrison Manhattan
## 235 99212 Jessica Manhattan
## 236 292204 Blanca Manhattan
## 237 256161 Wayne Manhattan
## 238 249372 Cynthia Manhattan
## 239 292630 Mich Manhattan
## 240 293394 Rachel Manhattan
## 241 126607 Laurine Manhattan
## 242 295760 Greta Manhattan
## 243 291112 Frank Manhattan
## 244 297176 Bethania Manhattan
## 245 297769 Tunji Manhattan
## 246 23619 Anna/Fonzy Manhattan
## 247 281764 Colette&Sean Brooklyn
## 248 303882 Brie Manhattan
## 249 197755 Sheila Brooklyn
## 250 303939 Lissette Staten Island
## 251 303939 Lissette Staten Island
## 252 303939 Lissette Staten Island
## 253 306545 Olivia Manhattan
## 254 306605 Daniel Manhattan
## 255 306739 Maya Brooklyn
## 256 308875 Scott Brooklyn
## 257 303939 Lissette Staten Island
## 258 307962 Dennis & Naoko Queens
## 259 308652 Antonín Brooklyn
## 260 310458 Emily Brooklyn
## 261 295128 Carol Gloria Bronx
## 262 310670 Vie Bronx
## 263 170510 Renée Brooklyn
## 264 306545 Olivia Manhattan
## 265 311286 Helene Brooklyn
## 266 312288 Paula Manhattan
## 267 312722 Kristian & Di Brooklyn
## 268 146944 David Manhattan
## 269 313317 Niya Brooklyn
## 270 311286 Helene Brooklyn
## 271 314256 Debbie Brooklyn
## 272 314582 Anthony Brooklyn
## 273 7310 Tilly Manhattan
## 274 46978 Edward Manhattan
## 275 317809 Claire Manhattan
## 276 319092 Juhli Brooklyn
## 277 320422 Marlon Brooklyn
## 278 320450 Mary D Manhattan
## 279 320761 Valerie Brooklyn
## 280 320538 Larissa Brooklyn
## 281 321756 Eric Manhattan
## 282 321934 Jessica Brooklyn
## 283 322884 Melissa Brooklyn
## 284 322716 Alex Brooklyn
## 285 324460 Samir Manhattan
## 286 314941 Tony Manhattan
## 287 325389 Luis Fernando Brooklyn
## 288 136227 Henning Manhattan
## 289 327673 Stefano Brooklyn
## 290 329436 Jana Brooklyn
## 291 101597 Per Manhattan
## 292 330347 Adrienne Brooklyn
## 293 332189 Elise Manhattan
## 294 323517 Deda Manhattan
## 295 338454 Share Manhattan
## 296 240427 Naimah Brooklyn
## 297 342054 Violetta Manhattan
## 298 282655 Jenna Brooklyn
## 299 343250 Jason Brooklyn
## 300 281229 Alicia Manhattan
## 301 352168 Silvia Manhattan
## 302 155689 Joab Brooklyn
## 303 353965 Mary And Geoff Manhattan
## 304 354330 Eyal Manhattan
## 305 72062 Bruce Manhattan
## 306 361855 Kurt Manhattan
## 307 363834 Jennifer Manhattan
## 308 364955 Ruperto Manhattan
## 309 365153 Ben Brooklyn
## 310 369015 Thai Bronx
## 311 373085 Hudson Manhattan
## 312 340692 Vanessa Brooklyn
## 313 211877 Daniel Brooklyn
## 314 389924 Patty Brooklyn
## 315 331328 Amir Manhattan
## 316 391325 G & S Manhattan
## 317 265109 Nazleen Queens
## 318 394752 Allison Brooklyn
## 319 308875 Scott Brooklyn
## 320 401696 Patricia Manhattan
## 321 118971 Evelyn Brooklyn
## 322 417504 The Box House Hotel Brooklyn
## 323 134355 Moss Owen Manhattan
## 324 422561 Nancy Brooklyn
## 325 425506 Bliss Brooklyn
## 326 430188 Pam Brooklyn
## 327 434987 Jennifer Manhattan
## 328 417504 The Box House Hotel Brooklyn
## 329 417504 The Box House Hotel Brooklyn
## 330 438133 Ellis Brooklyn
## 331 417504 The Box House Hotel Brooklyn
## 332 448312 Christopher Brooklyn
## 333 448312 Christopher Brooklyn
## 334 449787 Sarah Manhattan
## 335 451545 Ruthven Brooklyn
## 336 453519 Julian Brooklyn
## 337 454756 Leslie Brooklyn
## 338 456638 Sophie Brooklyn
## 339 410094 Yvette Manhattan
## 340 417504 The Box House Hotel Brooklyn
## 341 459054 Famous Brooklyn
## 342 462776 Kyle Manhattan
## 343 464506 Ange Manhattan
## 344 322716 Alex Brooklyn
## 345 327900 T Manhattan
## 346 116599 Sahr Brooklyn
## 347 209460 Marylyn Brooklyn
## 348 25183 Nathalie Brooklyn
## 349 35375 Savannah Queens
## 350 503800 Sadatu Brooklyn
## 351 478395 Jason Brooklyn
## 352 473113 Keishera Brooklyn
## 353 509341 Tessa Brooklyn
## 354 509918 Eduardo Brooklyn
## 355 116599 Sahr Brooklyn
## 356 31374 Shon Manhattan
## 357 520279 Peter Michael Manhattan
## 358 522065 Liz And Melissa Manhattan
## 359 522164 Wanda Brooklyn
## 360 523218 Giorgio Manhattan
## 361 526653 Queens
## 362 526805 Mi Brooklyn
## 363 530032 Lee And Tara Brooklyn
## 364 178043 Chas Manhattan
## 365 465278 Ade Brooklyn
## 366 417504 The Box House Hotel Brooklyn
## 367 251176 Jason Manhattan
## 368 547386 Michelle Queens
## 369 322716 Alex Brooklyn
## 370 551055 Alicia Manhattan
## 371 552679 Olivia Brooklyn
## 372 306739 Maya Brooklyn
## 373 3088389 Kai Manhattan
## 374 568568 Driss Manhattan
## 375 572527 Marine Brooklyn
## 376 573316 Kelli Manhattan
## 377 571952 Olivia Manhattan
## 378 181376 Carol Brooklyn
## 379 314582 Anthony Brooklyn
## 380 275582 Natalia Manhattan
## 381 579495 Susi Brooklyn
## 382 314941 Tony Manhattan
## 383 582598 Andrey Manhattan
## 384 567187 Jane Manhattan
## 385 127772 Will Manhattan
## 386 585166 Lilly Queens
## 387 209460 Marylyn Brooklyn
## 388 593115 LuLu Brooklyn
## 389 2248897 Roberta Brooklyn
## 390 585458 Paul Manhattan
## 391 599354 Bobby Manhattan
## 392 138069 Itamar Brooklyn
## 393 262812 Vikram Brooklyn
## 394 611716 Elizabeth Brooklyn
## 395 617990 Christopher Manhattan
## 396 622460 Justin Manhattan
## 397 622855 Rodney Brooklyn
## 398 308652 Antonín Brooklyn
## 399 627217 Seith Manhattan
## 400 620288 Eric Manhattan
## 401 23276 Katharine Brooklyn
## 402 256161 Wayne Manhattan
## 403 275563 Lauren Brooklyn
## 404 85330 Jean Queens
## 405 651390 Catherine Manhattan
## 406 507186 Holly Brooklyn
## 407 653405 Tracy Manhattan
## 408 652842 Giovanni Brooklyn
## 409 663764 Karen Brooklyn
## 410 663879 Christopher Brooklyn
## 411 665013 Jeff Manhattan
## 412 663384 Irena Brooklyn
## 413 674970 Michael Brooklyn
## 414 680818 Jessica Brooklyn
## 415 622866 Daniel Brooklyn
## 416 683975 Ivy Brooklyn
## 417 686147 Dave Manhattan
## 418 686768 Mark Brooklyn
## 419 687361 Orna Brooklyn
## 420 689661 Allison Manhattan
## 421 630453 Vanessa Manhattan
## 422 277747 Josh Manhattan
## 423 616825 Rinaldo Manhattan
## 424 299755 Jonathan Manhattan
## 425 404424 Oliver Brooklyn
## 426 703156 Kristin Manhattan
## 427 706418 Carolyn Manhattan
## 428 709434 Meighan Brooklyn
## 429 709334 Julie Manhattan
## 430 715807 John Manhattan
## 431 716064 Mihalis Brooklyn
## 432 718349 B. Manhattan
## 433 720320 Nancy Manhattan
## 434 716306 Dee, Dre & Mama Shelley Bronx
## 435 726333 Peter Manhattan
## 436 722320 Gladys & Bob Queens
## 437 216191 M Brooklyn
## 438 731855 Wendy Brooklyn
## 439 731904 Ewelina Manhattan
## 440 256161 Wayne Manhattan
## 441 732535 William Manhattan
## 442 733894 Lucy Queens
## 443 737585 Pat Brooklyn
## 444 739499 Donna Manhattan
## 445 745069 Kimberly Manhattan
## 446 656841 Meredith Brooklyn
## 447 757166 Tokunbo Brooklyn
## 448 758441 Fred Brooklyn
## 449 573065 Laura Brooklyn
## 450 759583 Pepe Brooklyn
## 451 762563 Lennny & Megan Brooklyn
## 452 465589 Amia Brooklyn
## 453 54275 JT And Tiziana Brooklyn
## 454 54275 JT And Tiziana Brooklyn
## 455 759883 Kaye Manhattan
## 456 769247 Ligia Manhattan
## 457 770831 James Manhattan
## 458 733894 Lucy Queens
## 459 772300 Alain Brooklyn
## 460 1856604 Robert "Bob" Manhattan
## 461 776490 Andres Brooklyn
## 462 776645 Placid Brooklyn
## 463 242506 Jsun Brooklyn
## 464 781647 Jorin Manhattan
## 465 627217 Seith Manhattan
## 466 32169 Andrea Brooklyn
## 467 69439 Jade Manhattan
## 468 787273 Smadar Brooklyn
## 469 867225 Rahul Manhattan
## 470 733894 Lucy Queens
## 471 791287 Giancarlo Manhattan
## 472 792159 Wanda Brooklyn
## 473 793620 Yvette Manhattan
## 474 795640 Jilly Brooklyn
## 475 306605 Daniel Manhattan
## 476 795889 Adam Brooklyn
## 477 22486 Lisel Brooklyn
## 478 789257 Barbara Manhattan
## 479 800982 Chris Manhattan
## 480 720558 Sara Brooklyn
## 481 803086 Benton Manhattan
## 482 747698 Linda & Chris Manhattan
## 483 805344 Alec Manhattan
## 484 806112 Julia Brooklyn
## 485 806214 Vanessa Bronx
## 486 806774 Ali & SweetPea Brooklyn
## 487 807642 Jeffrey Brooklyn
## 488 812814 Lena Manhattan
## 489 67778 Doug Brooklyn
## 490 803086 Benton Manhattan
## 491 302772 Cheryl Manhattan
## 492 781647 Jorin Manhattan
## 493 826192 Lewis Manhattan
## 494 826459 Jane Brooklyn
## 495 829652 Donna Manhattan
## 496 833926 Kris Brooklyn
## 497 836168 Henry Manhattan
## 498 842125 Jennifer Brooklyn
## 499 844862 Cj Manhattan
## 500 846309 Dani Brooklyn
## 501 848748 Sarah Brooklyn
## 502 848960 Amit Manhattan
## 503 849492 Kathrine Manhattan
## 504 21475 Milan Manhattan
## 505 314941 Tony Manhattan
## 506 864735 Jason Queens
## 507 864735 Jason Queens
## 508 872121 Rosario Manhattan
## 509 39260 Mat Manhattan
## 510 872805 Mike Manhattan
## 511 873273 Christian & Carla Bronx
## 512 876054 Obed Brooklyn
## 513 889106 Lisa Brooklyn
## 514 871727 Village Manhattan
## 515 279078 Andrew & Markus Brooklyn
## 516 904833 Daniel Manhattan
## 517 906200 Mariana Brooklyn
## 518 909146 Mj Brooklyn
## 519 909234 Leslie Manhattan
## 520 179020 Michael Manhattan
## 521 912541 David Manhattan
## 522 489400 O'Dell Brooklyn
## 523 915640 Sundiata Brooklyn
## 524 918866 Marina Manhattan
## 525 920542 Farrah Brooklyn
## 526 922922 Karen Brooklyn
## 527 874471 Alan Brooklyn
## 528 923915 Matthew Manhattan
## 529 936114 Marcela Manhattan
## 530 302936 Melody Brooklyn
## 531 938056 Mike Queens
## 532 48599 Anastasia Manhattan
## 533 936830 Elina Manhattan
## 534 940724 Susan Manhattan
## 535 949221 Dennis Brooklyn
## 536 949221 Dennis Brooklyn
## 537 304493 Erika Brooklyn
## 538 953279 Tim Brooklyn
## 539 611716 Elizabeth Brooklyn
## 540 953565 Vanessa Brooklyn
## 541 960836 Vlad Manhattan
## 542 964482 Colin Manhattan
## 543 289135 Toni Brooklyn
## 544 971075 Jabari Manhattan
## 545 973438 Susanne Brooklyn
## 546 933378 Edo Manhattan
## 547 568325 Simone Manhattan
## 548 988350 Andrea Brooklyn
## 549 918087 Kestrel Brooklyn
## 550 1000477 Elizabeth Manhattan
## 551 51038 Erica Brooklyn
## 552 903686 Melanie Brooklyn
## 553 464506 Ange Manhattan
## 554 1007558 Welcome To My Place Manhattan
## 555 1010242 Zora & Chris Brooklyn
## 556 1011426 Danielle Brooklyn
## 557 1012691 Tiffaney Brooklyn
## 558 12221 Lori Bronx
## 559 1014639 Brett Brooklyn
## 560 1017473 Evan Brooklyn
## 561 1018472 Angus Brooklyn
## 562 1024355 Martina Brooklyn
## 563 1029021 Jameelah Brooklyn
## 564 1031148 Iulia Queens
## 565 306739 Maya Brooklyn
## 566 272730 Goldi Manhattan
## 567 666271 Susan Manhattan
## 568 1094178 Jeremy Manhattan
## 569 1096084 Daniel Brooklyn
## 570 293130 Meli Brooklyn
## 571 800223 Nader Manhattan
## 572 1109658 Carmel Staten Island
## 573 1112560 Mary Brooklyn
## 574 864735 Jason Queens
## 575 1114587 Keenan & Emily Manhattan
## 576 1121193 Samuel Brooklyn
## 577 1129218 Orlando Manhattan
## 578 447754 Yana Brooklyn
## 579 759583 Pepe Brooklyn
## 580 1138692 Keera (Jena) Manhattan
## 581 1138692 Keera (Jena) Manhattan
## 582 1139574 Carmel Manhattan
## 583 921500 Boubacar And Pattee Manhattan
## 584 918087 Kestrel Brooklyn
## 585 1144415 Lisa Manhattan
## 586 846050 Eziah Manhattan
## 587 1146744 Deborah Brooklyn
## 588 4887492 Gershwyn Manhattan
## 589 22486 Lisel Brooklyn
## 590 1153993 Anton Manhattan
## 591 1164642 Rosalynn Brooklyn
## 592 1165231 Deirdre Manhattan
## 593 1165231 Deirdre Manhattan
## 594 991380 Stefania Brooklyn
## 595 1173599 Gaya Manhattan
## 596 1112560 Mary Brooklyn
## 597 663879 Christopher Brooklyn
## 598 1177497 Jessica Brooklyn
## 599 1177947 Marina Staten Island
## 600 815977 Ryan Brooklyn
## 601 209460 Marylyn Brooklyn
## 602 1187935 Daniel Manhattan
## 603 1191142 Lady Jay Brooklyn
## 604 1192424 Gordon Manhattan
## 605 1192610 Raven Manhattan
## 606 1194377 Marceline Brooklyn
## 607 1190088 Tim Manhattan
## 608 1097545 Carol Manhattan
## 609 507304 Derrick Brooklyn
## 610 1203500 Civan Brooklyn
## 611 12221 Lori Bronx
## 612 292204 Blanca Manhattan
## 613 1207399 Mark Manhattan
## 614 1184442 Roberto Manhattan
## 615 1217241 Dee Brooklyn
## 616 763420 Selma Manhattan
## 617 1220414 Michael Manhattan
## 618 1012895 Melody Queens
## 619 1223568 Tiffany Manhattan
## 620 902054 William Manhattan
## 621 1229984 John Queens
## 622 1234405 Bertie Brooklyn
## 623 83257 Olan Manhattan
## 624 1236070 Dan Manhattan
## 625 1236817 Blue Manhattan
## 626 1240820 Triny Brooklyn
## 627 4166168 Nick And Noémie Brooklyn
## 628 1151987 Juvie Manhattan
## 629 1146958 Liz Manhattan
## 630 1243192 Jacqueline Manhattan
## 631 65064 Ashley & Nir Manhattan
## 632 1256874 Nancy Queens
## 633 1257309 Austin Manhattan
## 634 1257760 Jay Manhattan
## 635 136962 Li Brooklyn
## 636 1258363 Todd Brooklyn
## 637 1263176 Joseph Brooklyn
## 638 1177497 Jessica Brooklyn
## 639 1264655 Ruari Brooklyn
## 640 1269455 Mike Manhattan
## 641 1177497 Jessica Brooklyn
## 642 1273825 Lauryn Brooklyn
## 643 1276497 Alon Brooklyn
## 644 288711 Andy Brooklyn
## 645 714200 Baron Manhattan
## 646 1260921 Victor Bronx
## 647 1288460 Al- Brooklyn
## 648 825022 Jaidev Manhattan
## 649 283604 Shelley Brooklyn
## 650 1292250 Jerry Manhattan
## 651 3647 Rafael Queens
## 652 936630 Jens Manhattan
## 653 417504 The Box House Hotel Brooklyn
## 654 605463 West Village Manhattan
## 655 1306587 Andy Manhattan
## 656 1307773 Karina Manhattan
## 657 758441 Fred Brooklyn
## 658 1311398 Ben Brooklyn
## 659 945499 Kyle Brooklyn
## 660 1311870 Christy Manhattan
## 661 1313306 Yvette Manhattan
## 662 1313306 Yvette Manhattan
## 663 1314834 Rhona Manhattan
## 664 1278802 Anne Brooklyn
## 665 1317343 Carol Manhattan
## 666 297769 Tunji Manhattan
## 667 1325961 Chris Manhattan
## 668 552343 Cynthia Brooklyn
## 669 417504 The Box House Hotel Brooklyn
## 670 417504 The Box House Hotel Brooklyn
## 671 417504 The Box House Hotel Brooklyn
## 672 1331493 Olia Brooklyn
## 673 1331850 G Manhattan
## 674 1332108 Cici Manhattan
## 675 417504 The Box House Hotel Brooklyn
## 676 417504 The Box House Hotel Brooklyn
## 677 417504 The Box House Hotel Brooklyn
## 678 417504 The Box House Hotel Brooklyn
## 679 417504 The Box House Hotel Brooklyn
## 680 417504 The Box House Hotel Brooklyn
## 681 417504 The Box House Hotel Brooklyn
## 682 417504 The Box House Hotel Brooklyn
## 683 417504 The Box House Hotel Brooklyn
## 684 1267021 Sharma Queens
## 685 417504 The Box House Hotel Brooklyn
## 686 1336542 Stephanie Brooklyn
## 687 1340007 Roger Brooklyn
## 688 1302029 Bree Brooklyn
## 689 1343630 Antonio Brooklyn
## 690 506779 Claudia Manhattan
## 691 1346437 Cristina Queens
## 692 1347034 Janine Manhattan
## 693 1348494 Pamela Brooklyn
## 694 315401 Jaime Brooklyn
## 695 1123923 Adolfo Brooklyn
## 696 1356046 Daniel Brooklyn
## 697 1358312 S Brooklyn
## 698 1354758 Annie Brooklyn
## 699 1233267 Kim Queens
## 700 436599 Chad Manhattan
## 701 1359611 Andrea Manhattan
## 702 1360043 Adrienne Manhattan
## 703 1360198 Marina Staten Island
## 704 1360198 Marina Staten Island
## 705 1360198 Marina Staten Island
## 706 52335 Alexander Brooklyn
## 707 480943 Ro Manhattan
## 708 696482 Christine Brooklyn
## 709 1370358 Keiko Manhattan
## 710 568103 Liah Manhattan
## 711 1372786 Lindsey Manhattan
## 712 1359519 Nadya Manhattan
## 713 1376385 Lauren Manhattan
## 714 1376778 Wade Brooklyn
## 715 535128 Juliana Manhattan
## 716 605463 West Village Manhattan
## 717 1380060 Marisa And Colin Brooklyn
## 718 1020539 Dominique Manhattan
## 719 1381171 Nicole Manhattan
## 720 1382749 Shaun Brooklyn
## 721 1384111 Joanne Queens
## 722 1384559 C Manhattan
## 723 305972 Allan Manhattan
## 724 21188 Leo Brooklyn
## 725 1123923 Adolfo Brooklyn
## 726 1390947 Akiko Manhattan
## 727 1392440 Sandra Manhattan
## 728 1394190 Jen Manhattan
## 729 1394719 Jill Brooklyn
## 730 1385157 Brian Manhattan
## 731 1385157 Brian Manhattan
## 732 1396546 Elena Brooklyn
## 733 1397061 Asia Joanna Manhattan
## 734 1397115 Drew Manhattan
## 735 1398809 Roberto Mike Manhattan
## 736 638721 Fred Manhattan
## 737 1402454 Jocelin Queens
## 738 1402951 Clara Bronx
## 739 164675 Janice Brooklyn
## 740 661399 Vivianne Manhattan
## 741 1406773 Eyal And Amy Manhattan
## 742 1380703 Vishal Brooklyn
## 743 1408733 Sergio Manhattan
## 744 1410714 Antoinette Brooklyn
## 745 1413098 M Queens
## 746 1093220 Chavisa Brooklyn
## 747 1366310 Janina Queens
## 748 1398639 Juliet Brooklyn
## 749 1415590 Cameron Manhattan
## 750 1315849 Javier Pedraza Brooklyn
## 751 1315849 Javier Pedraza Brooklyn
## 752 1217923 Kevin Brooklyn
## 753 1417166 Lex Brooklyn
## 754 1417166 Lex Brooklyn
## 755 1387370 James Manhattan
## 756 1362808 Max Manhattan
## 757 1423798 Aj Manhattan
## 758 1423613 Arthur Manhattan
## 759 1195295 M Manhattan
## 760 511993 Diana Brooklyn
## 761 1402817 Valerie Brooklyn
## 762 1427381 Elizabeth Brooklyn
## 763 605463 West Village Manhattan
## 764 1429642 Delia Manhattan
## 765 1433395 Stacia Manhattan
## 766 1434654 Andrew Brooklyn
## 767 1434931 Aaron Brooklyn
## 768 1436404 Catherine Manhattan
## 769 1417757 Kwab Brooklyn
## 770 1440691 Dena Brooklyn
## 771 130901 Chauncey Brooklyn
## 772 305972 Allan Manhattan
## 773 1447684 Rosa Brooklyn
## 774 1448432 Jim Manhattan
## 775 950657 Michelle Brooklyn
## 776 1451723 Bia Manhattan
## 777 1452026 Heidi Queens
## 778 1132207 Cathryne Manhattan
## 779 368528 Ally Brooklyn
## 780 1455825 Erica Manhattan
## 781 1420300 Gordy Brooklyn
## 782 240427 Naimah Brooklyn
## 783 1151818 Gabrielle Brooklyn
## 784 70614 Vimal Manhattan
## 785 1468658 Barbara Brooklyn
## 786 1469036 Tw Manhattan
## 787 1471384 Dan Brooklyn
## 788 36897 Lydia Manhattan
## 789 1464358 Dian Brooklyn
## 790 322934 Kate Brooklyn
## 791 1474071 Diana Brooklyn
## 792 1474637 Eliza Brooklyn
## 793 511175 Luis Manhattan
## 794 1427381 Elizabeth Brooklyn
## 795 524730 Oz Brooklyn
## 796 1476954 Jose Manhattan
## 797 1366270 Louisa Brooklyn
## 798 1482460 Dara Manhattan
## 799 1475866 Jesper Manhattan
## 800 1486034 Eric Manhattan
## 801 1487126 Anamaria Brooklyn
## 802 1491538 Erika Brooklyn
## 803 1492339 Karin Manhattan
## 804 1029021 Jameelah Brooklyn
## 805 1495090 Carey Manhattan
## 806 1495196 Yvette Brooklyn
## 807 1495141 Keow Brooklyn
## 808 1495502 Olly Brooklyn
## 809 1498424 Hibo Brooklyn
## 810 1496847 Paul & Ewa Brooklyn
## 811 347036 Jasmine Manhattan
## 812 632334 Michael Brooklyn
## 813 1502469 Max Manhattan
## 814 1503831 Elle Manhattan
## 815 815741 Geoff Manhattan
## 816 1454655 Ronaldo Queens
## 817 1505217 Pia Brooklyn
## 818 207124 Mikki & Bazi Manhattan
## 819 1470688 Philip Manhattan
## 820 1321504 Rohan Brooklyn
## 821 1509416 Natalia Queens
## 822 1490696 Alejandra Manhattan
## 823 169927 Hubert Manhattan
## 824 1513294 Urszula Brooklyn
## 825 1021834 Svetlana Brooklyn
## 826 910719 Sena Manhattan
## 827 1495502 Olly Brooklyn
## 828 417504 The Box House Hotel Brooklyn
## 829 1521432 Carmen Queens
## 830 417504 The Box House Hotel Brooklyn
## 831 45682 Irina Manhattan
## 832 417504 The Box House Hotel Brooklyn
## 833 417504 The Box House Hotel Brooklyn
## 834 417504 The Box House Hotel Brooklyn
## 835 1521604 Summer Brooklyn
## 836 430188 Pam Brooklyn
## 837 417504 The Box House Hotel Brooklyn
## 838 1523610 Marissa Brooklyn
## 839 1387286 Felicia Brooklyn
## 840 1525761 Ric Brooklyn
## 841 568585 Alan Manhattan
## 842 496164 Todd Brooklyn
## 843 1528912 Weiwei Queens
## 844 1530106 Glenn Brooklyn
## 845 1530310 Jacques Brooklyn
## 846 839679 Brady Brooklyn
## 847 997124 Alison Brooklyn
## 848 1535987 Sergio Brooklyn
## 849 1536533 Irina Brooklyn
## 850 1539749 Edward Brooklyn
## 851 1412944 Jason Brooklyn
## 852 236421 Jessica Manhattan
## 853 787261 L Manhattan
## 854 1220404 Tom Brooklyn
## 855 1557998 Eliza Brooklyn
## 856 1550578 Ron Manhattan
## 857 1555897 Alice Brooklyn
## 858 8605 Dimitry Manhattan
## 859 1561505 Ibrahima Manhattan
## 860 1562045 Antonio Manhattan
## 861 185753 Carolyn Manhattan
## 862 1570170 Kristina Brooklyn
## 863 1577493 Tina Brooklyn
## 864 1577961 Oona Brooklyn
## 865 1586945 Ben Manhattan
## 866 1590548 Magdalena Brooklyn
## 867 1390555 Jonathan Staten Island
## 868 745069 Kimberly Manhattan
## 869 745069 Kimberly Manhattan
## 870 1597481 Mary Brooklyn
## 871 1385157 Brian Manhattan
## 872 72747 Karen Brooklyn
## 873 1601664 Junior Manhattan
## 874 142147 Richard Queens
## 875 1606222 P Brooklyn
## 876 1613244 Ariel Manhattan
## 877 1617817 Chris Manhattan
## 878 279078 Andrew & Markus Brooklyn
## 879 1631400 Sean And Kiana Manhattan
## 880 1631733 Jane Brooklyn
## 881 1632149 Michael Manhattan
## 882 1633100 Ana Brooklyn
## 883 1639120 Jason Brooklyn
## 884 9647066 Maria Luiza Brooklyn
## 885 1639884 Nora Brooklyn
## 886 1643782 Katy Manhattan
## 887 516347 Lillian Brooklyn
## 888 1366194 Fabiana Brooklyn
## 889 1644452 Erin Manhattan
## 890 1644999 Candice Manhattan
## 891 1649300 James Brooklyn
## 892 1651591 Todd Brooklyn
## 893 1610852 Amanda Manhattan
## 894 6064192 Ted And Diane Manhattan
## 895 1639120 Jason Brooklyn
## 896 1660724 S Manhattan
## 897 1661965 Mathias Brooklyn
## 898 92788 Sara Manhattan
## 899 668564 Nitzan Manhattan
## 900 51038 Erica Brooklyn
## 901 82896 Esther Manhattan
## 902 1675255 Jill Manhattan
## 903 1676487 Robyn Manhattan
## 904 1013131 Joseph Manhattan
## 905 890215 Duane Brooklyn
## 906 1680375 Marc Brooklyn
## 907 1681546 Todd Manhattan
## 908 312288 Paula Manhattan
## 909 1697784 Jonathan Brooklyn
## 910 1698391 Pat Manhattan
## 911 52043 Patrick Brooklyn
## 912 547177 Chryslaine Manhattan
## 913 1709216 Steve And Heather Brooklyn
## 914 1709216 Steve And Heather Brooklyn
## 915 1709216 Steve And Heather Brooklyn
## 916 1711529 Jason Manhattan
## 917 1723485 Mary Manhattan
## 918 1732559 J Manhattan
## 919 483013 Yj Manhattan
## 920 168417 Marie Manhattan
## 921 1740233 Gladys Manhattan
## 922 1740216 Laura Manhattan
## 923 1732559 J Manhattan
## 924 10609846 Ben Manhattan
## 925 1746209 R. Manhattan
## 926 1745312 Steven Manhattan
## 927 1745402 Tony Brooklyn
## 928 1755339 Julie Manhattan
## 929 562614 Beth Manhattan
## 930 251176 Jason Manhattan
## 931 202507 Nom Brooklyn
## 932 1774431 Kate Brooklyn
## 933 74777 Niki & Colin Brooklyn
## 934 1747222 Sascha Brooklyn
## 935 417652 Ron Manhattan
## 936 1785800 Marvet Brooklyn
## 937 1786901 Shai Manhattan
## 938 314377 Marc Manhattan
## 939 1474749 Jared Manhattan
## 940 1797859 Camila Brooklyn
## 941 1251762 Molly Brooklyn
## 942 684129 Ellie Manhattan
## 943 1631288 Kay Brooklyn
## 944 1386983 Candice Manhattan
## 945 1562039 Jennifer Manhattan
## 946 390251 Lilly Manhattan
## 947 256239 Tracey Manhattan
## 948 1840564 Rico Brooklyn
## 949 1842714 Susan Brooklyn
## 950 774128 Andre Brooklyn
## 951 1728785 Veronika And John Brooklyn
## 952 179679 Ginger Brooklyn
## 953 1863447 Luke Brooklyn
## 954 1863713 Alix Manhattan
## 955 1869567 Max Brooklyn
## 956 1879389 Christina Brooklyn
## 957 1884204 Mark Brooklyn
## 958 1887999 Rimma & Jim Staten Island
## 959 1895957 Ido Manhattan
## 960 1900800 Geny Manhattan
## 961 438133 Ellis Brooklyn
## 962 1317588 Alexander Brooklyn
## 963 732535 William Manhattan
## 964 732535 William Manhattan
## 965 1928213 Brace Manhattan
## 966 1930204 Sophia Brooklyn
## 967 1931205 Orit Bronx
## 968 773928 Nen Staten Island
## 969 1935291 Cristina Manhattan
## 970 1935605 Jon Manhattan
## 971 1828506 Yogi Manhattan
## 972 390251 Lilly Manhattan
## 973 1939728 Michael & Aleksandra Manhattan
## 974 1146958 Liz Manhattan
## 975 1947974 Constance F. Queens
## 976 1960128 Luana Queens
## 977 1960189 Rebecka Brooklyn
## 978 312722 Kristian & Di Brooklyn
## 979 1303029 Kristina Manhattan
## 980 1965972 Alayna Manhattan
## 981 1968502 Paola Manhattan
## 982 1651591 Todd Brooklyn
## 983 1947974 Constance F. Queens
## 984 1970839 Javier Manhattan
## 985 1981742 Daniel Manhattan
## 986 70234 Richelle Manhattan
## 987 1982209 Wendy Manhattan
## 988 1985717 Darktalia Manhattan
## 989 325790 Michael Manhattan
## 990 1989327 William Brooklyn
## 991 1996265 David Manhattan
## 992 1488809 John Brooklyn
## 993 1985759 Esther Brooklyn
## 994 462379 Loretta Brooklyn
## 995 2005740 Maya Manhattan
## 996 2006712 Amanda Manhattan
## 997 2010724 K. Naomi Manhattan
## 998 1386983 Candice Manhattan
## 999 2013117 Katya Manhattan
## 1000 242506 Jsun Brooklyn
## 1001 2017752 Jeruschka Brooklyn
## 1002 2018042 Megan Queens
## 1003 2020431 M. C. Manhattan
## 1004 2027134 Marie-Helene Manhattan
## 1005 1952186 Erin Brooklyn
## 1006 2015914 Majar Brooklyn
## 1007 2034361 Marshall Manhattan
## 1008 520189 Andre Brooklyn
## 1009 1621363 Elizabeth Brooklyn
## 1010 2010724 K. Naomi Manhattan
## 1011 405225 Olga Brooklyn
## 1012 2047776 Jennifer Manhattan
## 1013 1697784 Jonathan Brooklyn
## 1014 2050338 Verena Brooklyn
## 1015 2051075 Linda Brooklyn
## 1016 2051961 Kim Brooklyn
## 1017 1286417 Omri Brooklyn
## 1018 2058589 Cary Manhattan
## 1019 2059155 Dan Manhattan
## 1020 319077 Shell Brooklyn
## 1021 2050328 Martis Manhattan
## 1022 2714164 Jasmine Brooklyn
## 1023 119588 Vero Brooklyn
## 1024 626289 Marshall Manhattan
## 1025 2085639 Eada Brooklyn
## 1026 2087636 Maddine Manhattan
## 1027 2096690 Richard Brooklyn
## 1028 1090764 Lynda Manhattan
## 1029 2108853 Jasen Manhattan
## 1030 2111060 Jj Manhattan
## 1031 2103888 Akari Manhattan
## 1032 2076827 Shelley Manhattan
## 1033 905122 Supriya Brooklyn
## 1034 2116807 Rafil Brooklyn
## 1035 2128778 Rachael Brooklyn
## 1036 820046 Elaine Manhattan
## 1037 2141109 Kishore Manhattan
## 1038 361855 Kurt Manhattan
## 1039 2148881 Grace Queens
## 1040 644941 Miya Brooklyn
## 1041 287733 David Brooklyn
## 1042 1906804 Terrance Brooklyn
## 1043 2117078 Joe Brooklyn
## 1044 2164138 Suzanne Manhattan
## 1045 2164452 Robert Manhattan
## 1046 2165401 Andrew Manhattan
## 1047 2165711 Alda Manhattan
## 1048 2168251 Jennifer Brooklyn
## 1049 2168468 Cp Manhattan
## 1050 200243 Laetitia Manhattan
## 1051 2169825 Serge Manhattan
## 1052 290662 Seth Brooklyn
## 1053 2175110 Ralph Manhattan
## 1054 2177462 Marc Brooklyn
## 1055 1566042 Haley Brooklyn
## 1056 1903758 Andrij Brooklyn
## 1057 1655939 Joris Queens
## 1058 793225 Rachel Manhattan
## 1059 2204078 Michelle Manhattan
## 1060 2206506 James Brooklyn
## 1061 420542 Danielle Bronx
## 1062 2216673 Joy Manhattan
## 1063 1109143 Mark Manhattan
## 1064 242506 Jsun Brooklyn
## 1065 1267021 Sharma Queens
## 1066 1267021 Sharma Queens
## 1067 124357 Alex Brooklyn
## 1068 2229582 Yamil Manhattan
## 1069 2233165 Liz Brooklyn
## 1070 1812871 Karen Bronx
## 1071 2219255 Natalie Brooklyn
## 1072 2237267 Marjorie Manhattan
## 1073 9647066 Maria Luiza Brooklyn
## 1074 2228665 Martha Brooklyn
## 1075 2246071 Tamara Brooklyn
## 1076 2248545 Helen Brooklyn
## 1077 137814 Waldemar Brooklyn
## 1078 2107905 Laura Brooklyn
## 1079 2252261 Stephanie Manhattan
## 1080 1530310 Jacques Brooklyn
## 1081 2257289 Toni Manhattan
## 1082 2259061 Felo Manhattan
## 1083 1385575 Alex Manhattan
## 1084 2265389 Laura Manhattan
## 1085 2265770 Jeanine Manhattan
## 1086 2267508 Daniel Manhattan
## 1087 2267864 Gary Manhattan
## 1088 1594083 David Manhattan
## 1089 2270183 Kaye Manhattan
## 1090 2275829 Lorena Manhattan
## 1091 2268393 Javier & Jorge Brooklyn
## 1092 346366 Sarah Brooklyn
## 1093 2282355 Ivana Manhattan
## 1094 2287727 Jan Manhattan
## 1095 128890 Sara Manhattan
## 1096 2286224 Sarah Brooklyn
## 1097 2298239 Sunserae Manhattan
## 1098 2301624 Miryam Brooklyn
## 1099 1530310 Jacques Brooklyn
## 1100 2065453 Ora & Scout Brooklyn
## 1101 815977 Ryan Brooklyn
## 1102 2316542 Nicole Lavonne Brooklyn
## 1103 282315 Rj Manhattan
## 1104 2321321 Lloyd Queens
## 1105 2321870 David Manhattan
## 1106 2325861 Cynthia Manhattan
## 1107 2332430 Murch Manhattan
## 1108 2120259 Sue Brooklyn
## 1109 2334269 Filip Manhattan
## 1110 2335775 Diana Brooklyn
## 1111 1274269 Aram Manhattan
## 1112 2339722 Francesca Manhattan
## 1113 2220859 Verena And Dylan Brooklyn
## 1114 2147438 Stephen Brooklyn
## 1115 2341078 George Manhattan
## 1116 1689040 Rich Brooklyn
## 1117 1600988 Sweet Home Brooklyn
## 1118 2347382 Massi & Ray Queens
## 1119 2348973 Koren Brooklyn
## 1120 950232 Deborah Manhattan
## 1121 2355439 Kara Brooklyn
## 1122 2027013 Adam Manhattan
## 1123 2027013 Adam Manhattan
## 1124 2027013 Adam Manhattan
## 1125 2363997 Teresa Manhattan
## 1126 277379 Agnes Manhattan
## 1127 2368753 Kristine Manhattan
## 1128 2368133 Jimmy Manhattan
## 1129 2371814 Jennifer Brooklyn
## 1130 1130454 Samir Manhattan
## 1131 1708956 Josh Brooklyn
## 1132 2373905 Jaime Brooklyn
## 1133 2374190 Jazmin Queens
## 1134 2377104 Hannah Brooklyn
## 1135 2361715 Ron Manhattan
## 1136 2382189 Candice Manhattan
## 1137 914838 Lior Manhattan
## 1138 2389885 Megan Brooklyn
## 1139 1539749 Edward Brooklyn
## 1140 1492619 Wallace Manhattan
## 1141 2393537 Jodi Brooklyn
## 1142 2397411 John Brooklyn
## 1143 2306962 Hana Brooklyn
## 1144 2396741 Alex Brooklyn
## 1145 2400932 Jackie'S Place Brooklyn
## 1146 2407024 Michael Brooklyn
## 1147 619154 Keith Brooklyn
## 1148 864370 Mick & Heidi Manhattan
## 1149 2420670 Carter Brooklyn
## 1150 1027283 Kelly Brooklyn
## 1151 2423067 Clara Manhattan
## 1152 2423401 Peter Brooklyn
## 1153 2424873 A.B. Manhattan
## 1154 2427385 Andy Brooklyn
## 1155 2427868 Ada Brooklyn
## 1156 2429432 Julie Brooklyn
## 1157 1995093 Carly Manhattan
## 1158 2431528 Christine Manhattan
## 1159 2436633 Gelya Manhattan
## 1160 1407251 Ute Brooklyn
## 1161 2442340 Maddy Brooklyn
## 1162 1527535 Jean-Marie Manhattan
## 1163 2446219 Biren Queens
## 1164 2389885 Megan Brooklyn
## 1165 2450665 D Brooklyn
## 1166 2455462 Elizabeth (And Jeff Too) Brooklyn
## 1167 2426779 Regina Brooklyn
## 1168 2459648 Ellen Bronx
## 1169 2462260 Dimitry Brooklyn
## 1170 1336370 Bojan+Margaret Manhattan
## 1171 2206506 James Brooklyn
## 1172 1386685 Aleksandra Manhattan
## 1173 2471671 Joyce Manhattan
## 1174 2472680 Fanny Brooklyn
## 1175 1490833 Patrick Manhattan
## 1176 48599 Anastasia Manhattan
## 1177 2478675 Gina Brooklyn
## 1178 2100968 Elodie Brooklyn
## 1179 2483236 Caitlin Staten Island
## 1180 2483293 Eric Manhattan
## 1181 2483766 Rebecca (Marks) Brooklyn
## 1182 2484383 Theresa Brooklyn
## 1183 2484654 Michele Manhattan
## 1184 471928 Mahalia Manhattan
## 1185 2487309 Eric Brooklyn
## 1186 2487319 Erin Manhattan
## 1187 2356449 Mariana Manhattan
## 1188 2490471 Ann Manhattan
## 1189 2490915 Catherine Manhattan
## 1190 167417 Kelly Brooklyn
## 1191 2267153 John Manhattan
## 1192 864735 Jason Queens
## 1193 2349977 Anthony Manhattan
## 1194 2001830 Jose And Ysaira Bronx
## 1195 1539749 Edward Brooklyn
## 1196 2472305 Rick Brooklyn
## 1197 2513726 Margaret Manhattan
## 1198 2515124 Jacqueline Manhattan
## 1199 2519356 Darya Brooklyn
## 1200 1840766 Samantha Brooklyn
## 1201 2521848 Gay Manhattan
## 1202 2521513 Amy Brooklyn
## 1203 2522854 Rich Brooklyn
## 1204 2396295 Richard Queens
## 1205 2528671 Dennis Brooklyn
## 1206 2530670 Tiffany Brooklyn
## 1207 2096690 Richard Brooklyn
## 1208 2533991 Amanda Brooklyn
## 1209 2538544 Michael Manhattan
## 1210 2542888 Catrinel Brooklyn
## 1211 2542895 Aaron Manhattan
## 1212 2543761 Stephane Brooklyn
## 1213 696306 Bethany Brooklyn
## 1214 2438262 Walker Brooklyn
## 1215 78742 Joni Queens
## 1216 1497427 Andrea Manhattan
## 1217 2155917 Stephanie Brooklyn
## 1218 2155832 Federico Manhattan
## 1219 1366310 Janina Queens
## 1220 2562882 Brendan Brooklyn
## 1221 2563132 Ghislaine Manhattan
## 1222 2440317 Amelia Brooklyn
## 1223 1720619 Glace Brooklyn
## 1224 2389494 Anya Queens
## 1225 1413546 Asher Manhattan
## 1226 2572253 Carl Brooklyn
## 1227 62508 Leigh Manhattan
## 1228 184883 Noele Manhattan
## 1229 2556498 Chris Bronx
## 1230 787204 Jenna Brooklyn
## 1231 1104814 Robert Manhattan
## 1232 2582890 Kim Manhattan
## 1233 2576980 Eleanor Brooklyn
## 1234 2492286 Reena Manhattan
## 1235 2589521 Lisbeth Manhattan
## 1236 2205455 Wendy Manhattan
## 1237 2590219 Kyle Manhattan
## 1238 17985 Sing Brooklyn
## 1239 2604437 Lane Manhattan
## 1240 2605064 Larah Manhattan
## 1241 263510 Sandy Manhattan
## 1242 1816331 Justine Brooklyn
## 1243 1787284 Dragan Queens
## 1244 2495836 Sofia Brooklyn
## 1245 2609535 Alexandra Manhattan
## 1246 1445298 Gita Brooklyn
## 1247 683230 Thomas Manhattan
## 1248 2617850 Matthew Brooklyn
## 1249 2620162 Olivia Manhattan
## 1250 2027013 Adam Manhattan
## 1251 367815 Liz Brooklyn
## 1252 2624738 Michael Manhattan
## 1253 2426404 Judith & Reid Manhattan
## 1254 598770 Maite & Javi Brooklyn
## 1255 2630351 Dawn Manhattan
## 1256 2635819 Fabrizio Brooklyn
## 1257 2644519 David Manhattan
## 1258 2645592 De & Claudia Queens
## 1259 512878 Michelle Manhattan
## 1260 2640100 Stefanie Manhattan
## 1261 2653648 Kareem Manhattan
## 1262 2656413 Anton Manhattan
## 1263 1879389 Christina Brooklyn
## 1264 2027013 Adam Manhattan
## 1265 1846051 Kj Manhattan
## 1266 865264 Sharon And Tom Queens
## 1267 2674637 Greta Brooklyn
## 1268 534328 F Manhattan
## 1269 2676438 Srdjan Manhattan
## 1270 746552 Tom Brooklyn
## 1271 1785800 Marvet Brooklyn
## 1272 2680820 Linda Queens
## 1273 2687009 Jeff Brooklyn
## 1274 1792568 Mickey Manhattan
## 1275 2693076 Kristin Brooklyn
## 1276 2694451 Shontae Brooklyn
## 1277 2694253 Yonatan Brooklyn
## 1278 2702563 James Manhattan
## 1279 2684478 Brian Manhattan
## 1280 2706505 Huxley Brooklyn
## 1281 2707053 Kathleen Manhattan
## 1282 2277487 Henrik Manhattan
## 1283 2712998 Greg Manhattan
## 1284 2715012 Maurice Brooklyn
## 1285 2518984 Historic Harlem Manhattan
## 1286 2261381 Jennie Brooklyn
## 1287 567226 Yah Manhattan
## 1288 2647043 Steve Brooklyn
## 1289 1267900 Maayan Brooklyn
## 1290 1925503 Evan Manhattan
## 1291 2740824 Lindsey Brooklyn
## 1292 2750389 Jessica Brooklyn
## 1293 2753256 Vana Manhattan
## 1294 2755668 Annie Brooklyn
## 1295 2770788 Laura Manhattan
## 1296 2770985 Aaron Manhattan
## 1297 2773585 Mathilde Manhattan
## 1298 2378357 David Manhattan
## 1299 2775674 Matt Manhattan
## 1300 2777672 Kalae Manhattan
## 1301 532819 Heather Brooklyn
## 1302 2786764 Marianna Manhattan
## 1303 2788488 Sajjad Brooklyn
## 1304 2790324 Erin Brooklyn
## 1305 2590864 Jason Brooklyn
## 1306 2798644 Alessandra Brooklyn
## 1307 627217 Seith Manhattan
## 1308 2805772 Christopher Brooklyn
## 1309 2806561 Noemie Brooklyn
## 1310 1141935 Ana Brooklyn
## 1311 2270624 Ny Manhattan
## 1312 2822805 Ollie Brooklyn
## 1313 38513 Nkosi Brooklyn
## 1314 1385157 Brian Manhattan
## 1315 2828813 Katherine Brooklyn
## 1316 2834840 Sheri Manhattan
## 1317 426725 Goran Manhattan
## 1318 2837527 Alexandra Manhattan
## 1319 2839267 Dustin Queens
## 1320 2841175 Ina Manhattan
## 1321 2841374 Stephon & Luke Brooklyn
## 1322 1449904 Edel Manhattan
## 1323 2847655 Gideon Brooklyn
## 1324 2851409 Mark And Stoph Brooklyn
## 1325 2311767 Melanie Manhattan
## 1326 2775107 Dana Brooklyn
## 1327 2861848 Bekah Brooklyn
## 1328 2861854 Jeanmarie Queens
## 1329 2712129 Raziel Brooklyn
## 1330 733370 Tim Queens
## 1331 2874587 Ibie Brooklyn
## 1332 2423042 Nitin Manhattan
## 1333 2878358 Gio/Joey Manhattan
## 1334 911596 Anna Manhattan
## 1335 2886652 Kanan & Tobias Brooklyn
## 1336 2888900 Alex Brooklyn
## 1337 311286 Helene Brooklyn
## 1338 2897835 Tim Brooklyn
## 1339 2897329 Josefina Manhattan
## 1340 717562 John Brooklyn
## 1341 807642 Jeffrey Brooklyn
## 1342 2899508 Tom & Jennifer Manhattan
## 1343 2407024 Michael Brooklyn
## 1344 1345769 Wowa Manhattan
## 1345 1523018 T Manhattan
## 1346 2919467 Lisa Manhattan
## 1347 2920855 Theodore Brooklyn
## 1348 2932668 Stephanie Brooklyn
## 1349 2926404 Chris Brooklyn
## 1350 2926593 Valerie Queens
## 1351 2927446 Marie-Jeanne Manhattan
## 1352 2929585 Hillary Manhattan
## 1353 2929756 Chris Manhattan
## 1354 2929756 Chris Manhattan
## 1355 2934010 Bill Manhattan
## 1356 2937468 Markus Manhattan
## 1357 2938302 Chris Manhattan
## 1358 898980 Kelly Brooklyn
## 1359 2943157 Ana Manhattan
## 1360 2648088 Angela Brooklyn
## 1361 2954200 Nancy Queens
## 1362 2954680 Onur Brooklyn
## 1363 2960326 Fabio Brooklyn
## 1364 2965915 Amy Manhattan
## 1365 2966937 Chris Brooklyn
## 1366 1036617 George Brooklyn
## 1367 210746 Kathleen R. Brooklyn
## 1368 2973437 Kevin + Casey Brooklyn
## 1369 2640845 Zach Brooklyn
## 1370 2233907 Kyle Brooklyn
## 1371 2979607 Miriam Queens
## 1372 2316922 Nat Brooklyn
## 1373 177724 Lauren Manhattan
## 1374 3002643 Heather Manhattan
## 1375 3011547 Wendy Brooklyn
## 1376 2874433 Eric Manhattan
## 1377 893148 Silvia Manhattan
## 1378 3019795 Marta Brooklyn
## 1379 3647 Rafael Queens
## 1380 3024659 Jonathan Brooklyn
## 1381 1144721 Andrew And Kat Brooklyn
## 1382 2992042 Christopher, Samantha And Mason Brooklyn
## 1383 3029414 Deborah Manhattan
## 1384 2979607 Miriam Queens
## 1385 3039868 Lori & John Manhattan
## 1386 2518984 Historic Harlem Manhattan
## 1387 1475015 Mike Manhattan
## 1388 2712353 Masud Brooklyn
## 1389 3047107 Bradley Brooklyn
## 1390 10889 Bob Brooklyn
## 1391 3065891 Sarah Brooklyn
## 1392 92451 Cath Brooklyn
## 1393 2272846 Zack Brooklyn
## 1394 3069794 Hayley Brooklyn
## 1395 3073291 David Queens
## 1396 2957827 Mauricio Manhattan
## 1397 1563352 Evelina Brooklyn
## 1398 3091205 Angela Manhattan
## 1399 3050955 Laura And Bernard Manhattan
## 1400 3097033 Aida Manhattan
## 1401 1974637 Gina Brooklyn
## 1402 3102648 Zhenia Brooklyn
## 1403 3114411 Carlita Manhattan
## 1404 585879 Armando Brooklyn
## 1405 3119145 Dennis Manhattan
## 1406 3120156 Sag Manhattan
## 1407 2397437 Lauren Brooklyn
## 1408 3129020 Ian Manhattan
## 1409 834185 Zachary Manhattan
## 1410 155163 Niral Brooklyn
## 1411 3130534 Ken Manhattan
## 1412 3129017 Lascell Brooklyn
## 1413 1568517 Karl & Catherine Queens
## 1414 2354167 Paul Manhattan
## 1415 836168 Henry Manhattan
## 1416 3158530 Peter Manhattan
## 1417 1215949 Misty Brooklyn
## 1418 3033622 Jose Brooklyn
## 1419 8425 Sharon Manhattan
## 1420 1363434 Daniel Brooklyn
## 1421 3179968 Tony Queens
## 1422 3181665 Cortney Manhattan
## 1423 1182294 Jonny Brooklyn
## 1424 1583594 Jeffrey Manhattan
## 1425 1483081 Marina Staten Island
## 1426 3194190 Jack Manhattan
## 1427 3198479 Gina Manhattan
## 1428 3199395 Chris & Don Brooklyn
## 1429 3201337 Diego Manhattan
## 1430 3206521 Dee Manhattan
## 1431 579412 Mateo And Anna Brooklyn
## 1432 81335 Evan Manhattan
## 1433 400262 Grace Manhattan
## 1434 3225114 Ryan Brooklyn
## 1435 15523 Vadim Staten Island
## 1436 195137 James Manhattan
## 1437 1223359 Steven Manhattan
## 1438 2494666 Brian Manhattan
## 1439 3233986 Daniel Queens
## 1440 1740784 Gal Manhattan
## 1441 3235547 Mathilde Manhattan
## 1442 352230 Andrea Manhattan
## 1443 147388 Mary Brooklyn
## 1444 415660 Carmen Brooklyn
## 1445 3245898 Ede Brooklyn
## 1446 3245431 Jon Manhattan
## 1447 3247050 Moira Manhattan
## 1448 672510 Jernee Manhattan
## 1449 62583 Karina Brooklyn
## 1450 3260084 David Manhattan
## 1451 3262771 Christina Brooklyn
## 1452 3272526 Lisa Manhattan
## 1453 468752 Casper Manhattan
## 1454 3274376 Edward Brooklyn
## 1455 1475015 Mike Manhattan
## 1456 1475015 Mike Manhattan
## 1457 1475015 Mike Manhattan
## 1458 1475015 Mike Manhattan
## 1459 1475015 Mike Manhattan
## 1460 1242765 Kate Manhattan
## 1461 3291022 Noel Manhattan
## 1462 3293368 Kathleen Manhattan
## 1463 3298062 Connie Manhattan
## 1464 326329 Nick Brooklyn
## 1465 3301845 Alana Manhattan
## 1466 3180741 Manon Brooklyn
## 1467 159780 Horatio Manhattan
## 1468 414627 Charlotte Brooklyn
## 1469 3312204 Olga Manhattan
## 1470 3315563 Mariko Manhattan
## 1471 3317183 Claire Brooklyn
## 1472 3319410 Dawn Manhattan
## 1473 3320650 Jay Manhattan
## 1474 3323929 Erika Queens
## 1475 1648054 Ruth Brooklyn
## 1476 3166753 Ben Manhattan
## 1477 270064 Sean - Hygge Stay Brooklyn
## 1478 3330459 Lynne Manhattan
## 1479 3341426 Nika Manhattan
## 1480 3351317 Clara Manhattan
## 1481 836168 Henry Manhattan
## 1482 1139222 Carl Manhattan
## 1483 2490963 Matteo Manhattan
## 1484 1486465 Carlo Brooklyn
## 1485 3370705 Valentin Brooklyn
## 1486 3376141 Nic Manhattan
## 1487 3377231 Lina Brooklyn
## 1488 3383354 Martina Manhattan
## 1489 3363720 Kate Brooklyn
## 1490 2400932 Jackie'S Place Brooklyn
## 1491 3392287 Roxanne Manhattan
## 1492 3363720 Kate Brooklyn
## 1493 3403890 Cory Brooklyn
## 1494 1709717 Camille Manhattan
## 1495 3411621 Elizabeth Brooklyn
## 1496 3317183 Claire Brooklyn
## 1497 2219255 Natalie Brooklyn
## 1498 3425965 Francesca Queens
## 1499 3432742 Callie Manhattan
## 1500 1465539 Ouii Manhattan
## 1501 27848 Jullett Queens
## 1502 3458785 Glauce Queens
## 1503 3404680 James Queens
## 1504 3462232 Stephen Manhattan
## 1505 2675998 Alice Queens
## 1506 3467798 Laila Manhattan
## 1507 2777672 Kalae Manhattan
## 1508 3375455 Maria Staten Island
## 1509 3475005 Yolanda Brooklyn
## 1510 3392287 Roxanne Manhattan
## 1511 3480879 Danny Manhattan
## 1512 1397883 Jeff Manhattan
## 1513 1229984 John Queens
## 1514 3447309 Mie Manhattan
## 1515 3491890 George Steven Manhattan
## 1516 3491890 George Steven Manhattan
## 1517 1360296 Maria Daniela Brooklyn
## 1518 3502638 Daniel Manhattan
## 1519 62855 Andrew Brooklyn
## 1520 2446219 Biren Queens
## 1521 475916 Katherine Manhattan
## 1522 3540041 Peter Brooklyn
## 1523 66329 Collin Brooklyn
## 1524 743742 Ethan And Wray Brooklyn
## 1525 3530446 Maurice Brooklyn
## 1526 2172525 Slava Brooklyn
## 1527 284224 Daniel Manhattan
## 1528 570988 Yves Brooklyn
## 1529 3531317 Ingrid Brooklyn
## 1530 3538661 Phillip Brooklyn
## 1531 3541525 Lindsay Brooklyn
## 1532 2817397 Larysa Manhattan
## 1533 1443121 Pavel Manhattan
## 1534 3558158 Natalie Brooklyn
## 1535 2195782 Boris Brooklyn
## 1536 3561489 John Manhattan
## 1537 3228992 Karin Brooklyn
## 1538 1372779 Charlie Manhattan
## 1539 3576466 Kevin Manhattan
## 1540 3569392 Kristen Manhattan
## 1541 3577509 Eric Brooklyn
## 1542 3577848 Abby Manhattan
## 1543 1746432 Joseph Manhattan
## 1544 3579337 Nina Manhattan
## 1545 3579116 Kristin Manhattan
## 1546 2994135 Devin & Justin Brooklyn
## 1547 279845 Chantille & Linda Brooklyn
## 1548 3587751 Janet-David Brooklyn
## 1549 2495668 Christos Manhattan
## 1550 3595395 Gabriela Brooklyn
## 1551 3598306 Afaliah Brooklyn
## 1552 240471 Roberto Brooklyn
## 1553 3605606 Gisela Brooklyn
## 1554 3606458 Mathew Manhattan
## 1555 3597177 Ori Manhattan
## 1556 1785800 Marvet Brooklyn
## 1557 3621183 Paul Queens
## 1558 3625735 Marianne Staten Island
## 1559 240048 Katherine / François Brooklyn
## 1560 839679 Brady Brooklyn
## 1561 3636235 Ari Manhattan
## 1562 1507336 Jeff Manhattan
## 1563 315918 Arlette Manhattan
## 1564 3644693 Eugenia Queens
## 1565 3136147 Gym Hoodie Brooklyn
## 1566 1444304 Alejandra Manhattan
## 1567 283215 Isabelle Brooklyn
## 1568 3642625 Amy Manhattan
## 1569 3662459 Barry Manhattan
## 1570 3625735 Marianne Staten Island
## 1571 3666608 Paul And Debra Brooklyn
## 1572 3672774 Alison Brooklyn
## 1573 3675389 Giorgia & Benjamin Brooklyn
## 1574 3621183 Paul Queens
## 1575 3621183 Paul Queens
## 1576 3597769 Enid Brooklyn
## 1577 3578480 Radan Manhattan
## 1578 1002452 Florencia Brooklyn
## 1579 3684360 Enrique Bronx
## 1580 2055073 Melissa Brooklyn
## 1581 216191 M Brooklyn
## 1582 3711499 Silvia Brooklyn
## 1583 3715319 Crystal Manhattan
## 1584 3717536 Adam Brooklyn
## 1585 3718361 Jo Manhattan
## 1586 3726131 John Manhattan
## 1587 3726366 Dk Manhattan
## 1588 3729726 Samir Brooklyn
## 1589 3730928 Dustin Manhattan
## 1590 3597769 Enid Brooklyn
## 1591 3737582 Ellen Manhattan
## 1592 3390362 Neill Manhattan
## 1593 3738130 Andrea Manhattan
## 1594 297176 Bethania Manhattan
## 1595 3750402 Alexander Manhattan
## 1596 3752523 Ari Brooklyn
## 1597 3759301 Natalia Brooklyn
## 1598 1869332 Elli Brooklyn
## 1599 3641304 Remo Queens
## 1600 417504 The Box House Hotel Brooklyn
## 1601 417504 The Box House Hotel Brooklyn
## 1602 3772684 Glasshouse Brooklyn
## 1603 3493470 Tari Brooklyn
## 1604 3778274 AJ And Freddy Brooklyn
## 1605 1601416 Clement & Natalia Manhattan
## 1606 3779334 Lex And Derek Manhattan
## 1607 1475015 Mike Manhattan
## 1608 3787686 Porfirio "Firo" & Maria Brooklyn
## 1609 73549 Melinda Manhattan
## 1610 3798686 Jonathan Brooklyn
## 1611 3805320 R And R Manhattan
## 1612 3398752 Alessandra Brooklyn
## 1613 3805397 Christa Manhattan
## 1614 3813161 Cleveland Manhattan
## 1615 3815537 Reshma Manhattan
## 1616 3831783 Shahar Manhattan
## 1617 3771963 Megan Manhattan
## 1618 3839667 Hallie Manhattan
## 1619 3842134 Dawn Brooklyn
## 1620 2333904 Stephanie Manhattan
## 1621 3847832 Eric Brooklyn
## 1622 1360198 Marina Staten Island
## 1623 15145088 Izi Manhattan
## 1624 15145088 Izi Manhattan
## 1625 1486623 Sol Queens
## 1626 570882 Eldad & Paulina Brooklyn
## 1627 1475015 Mike Manhattan
## 1628 1406458 Nancy Manhattan
## 1629 1099464 Nicolas Manhattan
## 1630 2577615 Ella Brooklyn
## 1631 3880974 Neil & Katie Manhattan
## 1632 3131199 Oly Manhattan
## 1633 3883580 Viva Manhattan
## 1634 132132 Rachel Manhattan
## 1635 3889339 Stacey Manhattan
## 1636 3889383 Elizabeth Brooklyn
## 1637 2219255 Natalie Brooklyn
## 1638 52615 Kjersti Manhattan
## 1639 192750 Charlotte Manhattan
## 1640 3906249 Page Manhattan
## 1641 1483464 Robert Manhattan
## 1642 3920171 Sophia Manhattan
## 1643 3920265 Kedin Brooklyn
## 1644 3920522 Erik Manhattan
## 1645 3801683 Jackson Manhattan
## 1646 3011406 Ellie Brooklyn
## 1647 160565 Corina Brooklyn
## 1648 2293050 Nick Brooklyn
## 1649 3665794 Jack Manhattan
## 1650 1687335 Aimée Queens
## 1651 3936154 Molly Brooklyn
## 1652 3929012 Kevin Manhattan
## 1653 3941862 Phil Brooklyn
## 1654 3905456 Amber Brooklyn
## 1655 3010682 Philippa Brooklyn
## 1656 3955766 Emily Brooklyn
## 1657 2285974 Cristiana Manhattan
## 1658 3956850 Dana Queens
## 1659 3916070 Boris Manhattan
## 1660 3959655 Eric And Aoife Brooklyn
## 1661 3963008 Philip Manhattan
## 1662 869880 Karen Manhattan
## 1663 3964655 Nicole Brooklyn
## 1664 3966721 Shaina Manhattan
## 1665 1884204 Mark Brooklyn
## 1666 3250450 Petya Queens
## 1667 3684360 Enrique Bronx
## 1668 3977494 Sandra Manhattan
## 1669 3977693 Oliver Brooklyn
## 1670 3983140 Randy Brooklyn
## 1671 3731320 Sara Manhattan
## 1672 1358245 Tania Brooklyn
## 1673 2124690 Chanelle Brooklyn
## 1674 209647 Jorge Brooklyn
## 1675 286313 Kiovanna Manhattan
## 1676 4007393 Jenni Manhattan
## 1677 1292205 Pasha Queens
## 1678 4015459 Joao Lucas Queens
## 1679 3992566 Clay Brooklyn
## 1680 3315563 Mariko Manhattan
## 1681 3604585 Jenny Brooklyn
## 1682 3891399 Anthony Brooklyn
## 1683 3604585 Jenny Brooklyn
## 1684 4027283 Mariko Manhattan
## 1685 2618273 Sabrina Queens
## 1686 3371859 Jenny & Jose Brooklyn
## 1687 2276842 Debbie Brooklyn
## 1688 4034995 Susan Brooklyn
## 1689 4036685 Norman Queens
## 1690 4036700 Anna Brooklyn
## 1691 4041877 Ana Brooklyn
## 1692 4022922 Caitlin Manhattan
## 1693 4044889 Jenna Queens
## 1694 1949282 Kyla Brooklyn
## 1695 4049527 Nathaniel Brooklyn
## 1696 3949235 Lior Manhattan
## 1697 4048448 Miki & Yacine Brooklyn
## 1698 4061660 Amy Manhattan
## 1699 1228080 Sasha Manhattan
## 1700 4059034 Ian Brooklyn
## 1701 4064804 Niki Manhattan
## 1702 4066797 Victoria Manhattan
## 1703 4067211 Stephane & Hana Brooklyn
## 1704 4070269 William Queens
## 1705 2631234 Frank Manhattan
## 1706 4076876 Tauheed Manhattan
## 1707 3684360 Enrique Bronx
## 1708 4081688 Santiago Brooklyn
## 1709 4083145 Hannah Brooklyn
## 1710 4083654 Santina Manhattan
## 1711 1528912 Weiwei Queens
## 1712 266210 Charles Manhattan
## 1713 3659439 Michelle Manhattan
## 1714 4089511 Marie Manhattan
## 1715 1568517 Karl & Catherine Queens
## 1716 4094151 Sean Brooklyn
## 1717 3419446 Jennifer Brooklyn
## 1718 4086839 Nataliya Brooklyn
## 1719 3043126 Aziza Brooklyn
## 1720 1114587 Keenan & Emily Manhattan
## 1721 4110491 Daniel Manhattan
## 1722 4040811 Vance Manhattan
## 1723 4092307 Eddie Manhattan
## 1724 4118217 Peter Brooklyn
## 1725 2723812 Libertad Bronx
## 1726 4125000 Joseph Brooklyn
## 1727 1830890 Adela Manhattan
## 1728 4129805 Evelyn Manhattan
## 1729 4111640 Jennifer Manhattan
## 1730 2347382 Massi & Ray Queens
## 1731 1506795 Anthony Brooklyn
## 1732 3483450 Aswad Brooklyn
## 1733 4135221 Nathalie Manhattan
## 1734 430188 Pam Brooklyn
## 1735 2840710 Mark Manhattan
## 1736 873273 Christian & Carla Manhattan
## 1737 953375 Wiebke Manhattan
## 1738 2478675 Gina Brooklyn
## 1739 4147380 Lauren Manhattan
## 1740 4147608 Alison Manhattan
## 1741 3117671 Mariana Brooklyn
## 1742 4148114 Dawn Manhattan
## 1743 4153591 Rita Brooklyn
## 1744 4105376 Luis Manhattan
## 1745 3106826 Carl Manhattan
## 1746 184110 Kiersten Manhattan
## 1747 4160421 Adam Manhattan
## 1748 3055496 Tessa Manhattan
## 1749 1212041 Michelle Manhattan
## 1750 2556784 Claudia Bronx
## 1751 4173419 Meredith Manhattan
## 1752 180416 Martin Manhattan
## 1753 2450605 Jennifer Brooklyn
## 1754 4182834 Cruz Manhattan
## 1755 58366 Linna Manhattan
## 1756 3069794 Hayley Brooklyn
## 1757 2275401 Amir Manhattan
## 1758 4185135 David Brooklyn
## 1759 4185135 David Brooklyn
## 1760 3718361 Jo Manhattan
## 1761 4185984 Greer Manhattan
## 1762 4186145 Raquel Manhattan
## 1763 4103779 Rachel Brooklyn
## 1764 2333904 Stephanie Manhattan
## 1765 3472148 Brian Queens
## 1766 4191209 Fran Manhattan
## 1767 4194142 Alexandra Brooklyn
## 1768 61491 D Manhattan
## 1769 4107826 Mike Brooklyn
## 1770 4195861 Doris Brooklyn
## 1771 4025188 Suzanne Brooklyn
## 1772 3882661 Ms Manhattan
## 1773 758441 Fred Brooklyn
## 1774 4160649 Alex Manhattan
## 1775 4204890 Martin Manhattan
## 1776 838848 Sarah Brooklyn
## 1777 1475015 Mike Manhattan
## 1778 4153233 Ted Manhattan
## 1779 4211266 Nora Brooklyn
## 1780 2291000 Tommy Brooklyn
## 1781 149929 Obed Brooklyn
## 1782 195932 Zoe Brooklyn
## 1783 1010338 Stefan Manhattan
## 1784 22486 Lisel Brooklyn
## 1785 512878 Michelle Manhattan
## 1786 4224513 Adam Manhattan
## 1787 3642035 Arsenio Brooklyn
## 1788 4230317 Jenny Manhattan
## 1789 4232762 Sigfus Brooklyn
## 1790 4233030 Michael Manhattan
## 1791 4233879 Karen Brooklyn
## 1792 4112902 Tiffany Manhattan
## 1793 2373697 Doug Brooklyn
## 1794 1131081 Patrick Brooklyn
## 1795 4238591 Leah & Reed Brooklyn
## 1796 4241831 Timothy Queens
## 1797 4113132 Jacqueline & Tyas Queens
## 1798 4113132 Jacqueline & Tyas Queens
## 1799 4249297 Martina Brooklyn
## 1800 4250697 Brandon Brooklyn
## 1801 4252788 Suzana Manhattan
## 1802 3775799 Wendee Manhattan
## 1803 4254417 Renee Queens
## 1804 3038687 Karen Manhattan
## 1805 4255290 Julia Brooklyn
## 1806 1289936 Jhon Manhattan
## 1807 4252490 Luka Brooklyn
## 1808 2184470 Said Brooklyn
## 1809 4265697 Justin Manhattan
## 1810 4266017 Connie & Michael Manhattan
## 1811 4231668 Darren Brooklyn
## 1812 4255199 Bryan Manhattan
## 1813 4267089 Jo Brooklyn
## 1814 4065620 Debbie Brooklyn
## 1815 574584 Jesse Brooklyn
## 1816 4271822 Angelina Brooklyn
## 1817 4272748 Jason Manhattan
## 1818 149929 Obed Brooklyn
## 1819 4275254 Valeria Brooklyn
## 1820 4276374 Peter Manhattan
## 1821 4279005 Jefry Manhattan
## 1822 545600 Alta Manhattan
## 1823 4281123 Albert Brooklyn
## 1824 4281957 Marina Manhattan
## 1825 4284154 Jennifer Manhattan
## 1826 1099716 Alvaro Queens
## 1827 4289709 Elise Brooklyn
## 1828 2805766 Tristan Manhattan
## 1829 1141935 Ana Brooklyn
## 1830 128256 Annie Manhattan
## 1831 4298156 Melina Manhattan
## 1832 4298167 Shane Manhattan
## 1833 4241953 Celeste Queens
## 1834 4298896 Nathalie Manhattan
## 1835 4299040 Ale Manhattan
## 1836 4299040 Ale Manhattan
## 1837 4306950 Christopher Manhattan
## 1838 4299040 Ale Manhattan
## 1839 4303726 Tanjila Brooklyn
## 1840 4299040 Ale Manhattan
## 1841 9269794 Jerbean Brooklyn
## 1842 337159 Thomas Manhattan
## 1843 4310378 Autumn Brooklyn
## 1844 25632 LeeAnn Brooklyn
## 1845 4311270 Annie Brooklyn
## 1846 4105474 Amanda Brooklyn
## 1847 4311243 Owen Brooklyn
## 1848 61873 Seema Brooklyn
## 1849 4323625 Arthur Manhattan
## 1850 4324286 Ettice Manhattan
## 1851 4324286 Ettice Manhattan
## 1852 69685 Anja Manhattan
## 1853 4317067 Kamollio Brooklyn
## 1854 4328005 Dina Brooklyn
## 1855 4330726 Jon Brooklyn
## 1856 4331441 Francesco Manhattan
## 1857 872805 Mike Manhattan
## 1858 4331864 Jeff Brooklyn
## 1859 4192794 Anna Staten Island
## 1860 359447 Adrian Manhattan
## 1861 4079140 Kat Brooklyn
## 1862 94669 Keithan Brooklyn
## 1863 4289240 Lucy Brooklyn
## 1864 4336760 Marie Manhattan
## 1865 611137 Shahar Brooklyn
## 1866 4210082 Monica Brooklyn
## 1867 3882661 Ms Manhattan
## 1868 1865527 Kayla Brooklyn
## 1869 4344588 Gabe And Jane Brooklyn
## 1870 4345735 Jennifer Brooklyn
## 1871 4348003 Bob Manhattan
## 1872 4350748 Anna Brooklyn
## 1873 4352069 Rebecca Manhattan
## 1874 4355788 Ef Manhattan
## 1875 4356301 Coire Brooklyn
## 1876 1723222 Nick Manhattan
## 1877 4358812 Scott Manhattan
## 1878 4112404 Vero Manhattan
## 1879 4363775 O. Brooklyn
## 1880 2369681 Carol Manhattan
## 1881 1896642 Jay Brooklyn
## 1882 1268505 Jh Manhattan
## 1883 4372934 Manuel Alberto Queens
## 1884 2862643 Nia Manhattan
## 1885 4375496 Jared Manhattan
## 1886 252365 Eileen Manhattan
## 1887 265525 Casey Brooklyn
## 1888 4378763 Antonio Queens
## 1889 240048 Katherine / François Brooklyn
## 1890 326150 Ronny Brooklyn
## 1891 4255319 Laura Brooklyn
## 1892 4383196 David Manhattan
## 1893 3200135 Matt Manhattan
## 1894 164534 Holly Brooklyn
## 1895 4389865 Fiona Manhattan
## 1896 4390058 Jeffrey Manhattan
## 1897 4390639 Joanna Manhattan
## 1898 4390881 Todd Brooklyn
## 1899 4392420 John Brooklyn
## 1900 3665164 Joseph Manhattan
## 1901 4393626 Aaron Manhattan
## 1902 2682735 Andrew Manhattan
## 1903 2257960 Melanie Manhattan
## 1904 3330412 Pierre & Amira Brooklyn
## 1905 148545 Lisa Manhattan
## 1906 4401275 Ashley Manhattan
## 1907 864735 Jason Queens
## 1908 4401623 Roman Manhattan
## 1909 4241953 Celeste Queens
## 1910 350553 Stav Manhattan
## 1911 673406 Alex & Britta Brooklyn
## 1912 683027 Camille Brooklyn
## 1913 4413463 Carolyn Manhattan
## 1914 3891436 Felix Manhattan
## 1915 4414425 Ian Brooklyn
## 1916 3159197 Lewis Brooklyn
## 1917 1732005 Ren Manhattan
## 1918 945407 Clara Brooklyn
## 1919 430188 Pam Brooklyn
## 1920 4420306 Luis Alejandro Brooklyn
## 1921 4421935 Maddy Brooklyn
## 1922 395609 Jb Manhattan
## 1923 4422368 Dirk Manhattan
## 1924 3179895 Dee Manhattan
## 1925 4425467 Oded Brooklyn
## 1926 3526444 Luca Brooklyn
## 1927 4428278 Rohit Brooklyn
## 1928 1468667 Darragh Manhattan
## 1929 4425694 Gregory Manhattan
## 1930 4241953 Celeste Queens
## 1931 4375988 Keturah Brooklyn
## 1932 4241953 Celeste Queens
## 1933 4432173 Stella Manhattan
## 1934 4434798 Bernard Brooklyn
## 1935 52394 Geraldine Manhattan
## 1936 4435623 Ayana Brooklyn
## 1937 145609 Ceci Brooklyn
## 1938 4438960 Taleah Manhattan
## 1939 2843998 Julie Brooklyn
## 1940 4439578 Zs Manhattan
## 1941 4440548 Thomas Brooklyn
## 1942 4441020 Tara Brooklyn
## 1943 254846 Brendan Brooklyn
## 1944 4442608 Mario Manhattan
## 1945 2843998 Julie Brooklyn
## 1946 4444170 Tiziana Manhattan
## 1947 4445677 Ari Manhattan
## 1948 4446767 Ks & Eli Manhattan
## 1949 3259274 Hannah Brooklyn
## 1950 4451246 Raymond Brooklyn
## 1951 4453107 Sandi Manhattan
## 1952 4459052 Dominique Queens
## 1953 4092307 Eddie Manhattan
## 1954 4461145 Cristian Brooklyn
## 1955 4463092 Samuel Manhattan
## 1956 4467554 Sunny Manhattan
## 1957 4469832 Stefan Manhattan
## 1958 213020 Robert Manhattan
## 1959 4473860 Marina Manhattan
## 1960 524575 Alicia Brooklyn
## 1961 627898 Peter Manhattan
## 1962 4481005 Karen Brooklyn
## 1963 2559004 Sergio Manhattan
## 1964 4487224 Tara Brooklyn
## 1965 4431107 Ally Manhattan
## 1966 4494343 Douglas Bronx
## 1967 1536441 Erica Brooklyn
## 1968 4500999 Aaron Manhattan
## 1969 4504962 Judith Manhattan
## 1970 1603942 James Brooklyn
## 1971 4524130 Claire Brooklyn
## 1972 4224309 Rachel...You Can Call Me Kaya :) Manhattan
## 1973 4538664 Nicole Manhattan
## 1974 1650330 Chandle Brooklyn
## 1975 4543792 George Manhattan
## 1976 4555996 Ben Manhattan
## 1977 4363775 O. Brooklyn
## 1978 4509849 Ines Brooklyn
## 1979 745186 Chiara Brooklyn
## 1980 4509849 Ines Brooklyn
## 1981 4372160 Seth Brooklyn
## 1982 4581489 Nick Manhattan
## 1983 355548 Jessica Brooklyn
## 1984 4590460 Clare Brooklyn
## 1985 4599027 Amal Manhattan
## 1986 4600589 Carter Manhattan
## 1987 3588693 Maria Brooklyn
## 1988 699759 Becky Brooklyn
## 1989 4617159 Alvin Brooklyn
## 1990 4616773 Joan Brooklyn
## 1991 2908554 Michael Brooklyn
## 1992 4622733 Marise Manhattan
## 1993 3994331 Vivian Manhattan
## 1994 4509849 Ines Brooklyn
## 1995 4628887 Hoonju / Co Host: Jose Brooklyn
## 1996 2597159 Alana Brooklyn
## 1997 4655169 Rochelle Manhattan
## 1998 3549531 Jeremy Brooklyn
## 1999 3673451 Nikki Brooklyn
## 2000 4233288 Jake Brooklyn
## 2001 4670155 Idan Manhattan
## 2002 4158086 Vivian Brooklyn
## 2003 4310378 Autumn Brooklyn
## 2004 4313683 Antoinette Brooklyn
## 2005 4677362 Julie Manhattan
## 2006 4701443 Christina Queens
## 2007 4701443 Christina Queens
## 2008 3490818 Jon Brooklyn
## 2009 4704914 Robert Brooklyn
## 2010 4705358 D Manhattan
## 2011 4282125 Caroline Brooklyn
## 2012 4714927 Elisa Manhattan
## 2013 4731046 Luis Queens
## 2014 831185 Andrew Brooklyn
## 2015 128920 Magera Brooklyn
## 2016 4734398 Jj Manhattan
## 2017 1758019 Wil Manhattan
## 2018 4746193 Richelle & Neil Brooklyn
## 2019 4751930 Martin Manhattan
## 2020 1208402 Kristen Manhattan
## 2021 4622027 Damon And Kent Brooklyn
## 2022 1803302 Lacey Brooklyn
## 2023 4644172 Sheena Queens
## 2024 4770121 Somaya Manhattan
## 2025 2265770 Jeanine Manhattan
## 2026 4782600 Brian Manhattan
## 2027 3546135 Jeanette & Henry Queens
## 2028 4808242 Selam Brooklyn
## 2029 4634013 Brandi Brooklyn
## 2030 4837614 Christine & Philip Brooklyn
## 2031 4734398 Jj Manhattan
## 2032 4734398 Jj Manhattan
## 2033 4834187 Howard Brooklyn
## 2034 4843750 Painter Brooklyn
## 2035 4847926 Shelley Brooklyn
## 2036 4848828 Joy Manhattan
## 2037 4765670 Irene Manhattan
## 2038 4864306 Joseph Brooklyn
## 2039 4599027 Amal Manhattan
## 2040 4872812 Toby Manhattan
## 2041 3343848 Laurence Brooklyn
## 2042 4887492 Gershwyn Manhattan
## 2043 4888892 Darina Manhattan
## 2044 4103952 Maria Brooklyn
## 2045 181756 Roslyn Brooklyn
## 2046 511175 Luis Manhattan
## 2047 4924435 Darla Manhattan
## 2048 4929807 Liz Manhattan
## 2049 4930847 Rachel Brooklyn
## 2050 4932354 Mitty Brooklyn
## 2051 4938247 Kevin Brooklyn
## 2052 1895793 Eduardo Manhattan
## 2053 2230103 Time Square Manhattan
## 2054 4629954 Sarah Brooklyn
## 2055 4950369 Meryl Brooklyn
## 2056 4954283 Michelle Manhattan
## 2057 4955205 Stelian & Deanna Brooklyn
## 2058 4955560 Emmanuel Brooklyn
## 2059 4957149 George Manhattan
## 2060 4967515 Cody Manhattan
## 2061 4970027 Tzvi Queens
## 2062 4973668 Gloria Brooklyn
## 2063 4973668 Gloria Brooklyn
## 2064 552453 Christian Manhattan
## 2065 4938485 Paul & Elena Manhattan
## 2066 3458692 Karla Manhattan
## 2067 4976428 Jonathan Manhattan
## 2068 4980428 L Manhattan
## 2069 4260529 Harry Queens
## 2070 51038 Erica Brooklyn
## 2071 4983320 Terri Queens
## 2072 755172 Meg Manhattan
## 2073 2420592 Lucas Brooklyn
## 2074 4156449 Cassia Brooklyn
## 2075 4976872 Min Manhattan
## 2076 2902266 Kate Brooklyn
## 2077 5072123 Sandra Brooklyn
## 2078 5025046 Nick & Jim Manhattan
## 2079 5052897 Anthony Manhattan
## 2080 5062254 Michael Brooklyn
## 2081 1866827 Gregory Brooklyn
## 2082 5076827 Diane And Craig Manhattan
## 2083 1865527 Kayla Brooklyn
## 2084 5067409 Ni Brooklyn
## 2085 1650330 Chandle Brooklyn
## 2086 4085497 Michael Brooklyn
## 2087 4888599 Rod Manhattan
## 2088 896918 Rusty Brooklyn
## 2089 1908073 Andrew Manhattan
## 2090 3361696 Lindsay Manhattan
## 2091 3270460 William M. Brooklyn
## 2092 5110818 Kevin Brooklyn
## 2093 5074654 Seth Manhattan
## 2094 5138312 Georgina Manhattan
## 2095 3229099 Brian Brooklyn
## 2096 1295416 Tal Brooklyn
## 2097 2675998 Alice Queens
## 2098 1408973 Dom Manhattan
## 2099 4460034 Alain Manhattan
## 2100 4797813 Nicole Manhattan
## 2101 5165749 Ben Manhattan
## 2102 4932354 Mitty Brooklyn
## 2103 588270 Dikla Brooklyn
## 2104 5202854 Sabrina Manhattan
## 2105 1354796 Natasha Brooklyn
## 2106 5214644 Noelva Bronx
## 2107 1797637 Daniel Brooklyn
## 2108 4191076 Michelle Manhattan
## 2109 1822729 Derek Brooklyn
## 2110 1229358 Lauren Manhattan
## 2111 1865527 Kayla Brooklyn
## 2112 5239845 Deanna Brooklyn
## 2113 555739 Rosana Brooklyn
## 2114 5268970 Javier Manhattan
## 2115 5289072 Mark Brooklyn
## 2116 1447988 Patrick And Erin Brooklyn
## 2117 5286584 Liya Manhattan
## 2118 5308961 Larry Manhattan
## 2119 216191 M Brooklyn
## 2120 434473 Patricia Brooklyn
## 2121 3179866 Gonzalo And Nora Queens
## 2122 4770121 Somaya Manhattan
## 2123 5333736 Timothy Manhattan
## 2124 3709510 Deacon Brooklyn
## 2125 2267153 John Manhattan
## 2126 5339881 Gerard Brooklyn
## 2127 5341060 Simo Brooklyn
## 2128 854208 Anna Manhattan
## 2129 5350359 Matthew Manhattan
## 2130 5186189 Betsy Manhattan
## 2131 5354308 Yiota Queens
## 2132 5369117 Rosa Queens
## 2133 5364702 Lynn Manhattan
## 2134 15742 Alix Manhattan
## 2135 5374768 Maria Manhattan
## 2136 5207582 Olivia Manhattan
## 2137 5378922 Eileen Brooklyn
## 2138 4548229 Brinton Manhattan
## 2139 555739 Rosana Brooklyn
## 2140 1417489 Lorna Brooklyn
## 2141 5414067 Adrianne Manhattan
## 2142 5369117 Rosa Queens
## 2143 4018660 Emily Brooklyn
## 2144 5435208 Rose Queens
## 2145 5435713 Nikolai Brooklyn
## 2146 5438325 Lauri Manhattan
## 2147 5440087 Dn Manhattan
## 2148 4714927 Elisa Manhattan
## 2149 2203885 Sascha Manhattan
## 2150 458021 Brian Manhattan
## 2151 4000059 Shahdiya Brooklyn
## 2152 5454862 Barbara Manhattan
## 2153 15145088 Izi Manhattan
## 2154 15145088 Izi Manhattan
## 2155 15145088 Izi Manhattan
## 2156 5466191 Ricky Manhattan
## 2157 2829145 Charlotta Brooklyn
## 2158 3038687 Karen Manhattan
## 2159 412783 Nick Manhattan
## 2160 5468901 Sanya Manhattan
## 2161 5480570 Darnell And Allison Brooklyn
## 2162 2765234 Casey Queens
## 2163 227908 Mischa Manhattan
## 2164 273174 Jon Manhattan
## 2165 5497326 Jennifer Manhattan
## 2166 5468033 Linda Manhattan
## 2167 4797532 Priscilla Brooklyn
## 2168 3363720 Kate Brooklyn
## 2169 214794 Pete & Marcos Manhattan
## 2170 5512719 Ellen Manhattan
## 2171 454250 Greta Manhattan
## 2172 5520355 Finola Brooklyn
## 2173 5529633 Michael Manhattan
## 2174 450050 Yakov & Cynthia Manhattan
## 2175 329436 Jana Brooklyn
## 2176 5556571 Chris Brooklyn
## 2177 3898812 Ahmed Queens
## 2178 5563508 Nate Brooklyn
## 2179 5018907 Vera Brooklyn
## 2180 5577926 Lou Queens
## 2181 5591685 Paul Brooklyn
## 2182 5593208 Tj Manhattan
## 2183 5596242 Sabrina And Eduardo Brooklyn
## 2184 4937803 Alicia Brooklyn
## 2185 5606448 Pete Brooklyn
## 2186 693889 Heather Brooklyn
## 2187 5619749 Jen Brooklyn
## 2188 5622682 Sabrina Brooklyn
## 2189 315606 Cynthia Brooklyn
## 2190 3483960 Keith Manhattan
## 2191 4932354 Mitty Brooklyn
## 2192 5634395 Sarah Manhattan
## 2193 2120889 Megan Brooklyn
## 2194 261530 Melissa Manhattan
## 2195 5641042 Livia Queens
## 2196 5647813 Atlanta Queens
## 2197 62316 Sam Manhattan
## 2198 825252 Meredith Brooklyn
## 2199 5652395 Julio Bronx
## 2200 5655889 East Village Loft Manhattan
## 2201 5658953 Claudia Manhattan
## 2202 5664550 Kelly Manhattan
## 2203 5293735 Hayley Brooklyn
## 2204 1949282 Kyla Brooklyn
## 2205 216191 M Brooklyn
## 2206 1113080 Audrey Brooklyn
## 2207 5679237 Renee Manhattan
## 2208 5681729 Sandrine Manhattan
## 2209 5682003 Rachael Brooklyn
## 2210 5696628 Christine Brooklyn
## 2211 3233986 Daniel Queens
## 2212 5707409 Mary Manhattan
## 2213 237477 Alexander Brooklyn
## 2214 4911550 Marc Brooklyn
## 2215 5709288 Fabia Manhattan
## 2216 273174 Jon Manhattan
## 2217 5447617 Jeffrey Brooklyn
## 2218 3740730 S Manhattan
## 2219 964482 Colin Manhattan
## 2220 5738733 Elizabeth Brooklyn
## 2221 2680820 Linda Queens
## 2222 2335804 Lindsay Manhattan
## 2223 5749899 Obora & Michael Manhattan
## 2224 5751206 Nigel Brooklyn
## 2225 1356046 Daniel Brooklyn
## 2226 839679 Brady Brooklyn
## 2227 5760970 Chris Queens
## 2228 832244 Elise Brooklyn
## 2229 1740216 Laura Manhattan
## 2230 5245246 Lisa Manhattan
## 2231 4128399 Jose Manhattan
## 2232 92272 Kristin Manhattan
## 2233 4165498 L.A. Manhattan
## 2234 5810195 Emilie Manhattan
## 2235 5817011 Clyde Brooklyn
## 2236 697442 Chris And Zach Brooklyn
## 2237 462379 Loretta Brooklyn
## 2238 1600541 Marina Manhattan
## 2239 2413155 Noreen Brooklyn
## 2240 5822377 Shunan Manhattan
## 2241 7875272 Mary Staten Island
## 2242 11837926 Anthony Manhattan
## 2243 5837033 Mark Manhattan
## 2244 1557383 Candace Brooklyn
## 2245 5851210 Amy Manhattan
## 2246 2873394 Aurora Brooklyn
## 2247 5861233 Nevena Brooklyn
## 2248 3327668 Tim Manhattan
## 2249 5872605 Patrick Manhattan
## 2250 2128778 Rachael Brooklyn
## 2251 5867023 Michael Manhattan
## 2252 5879729 Stephanie Brooklyn
## 2253 3968209 Swetha Manhattan
## 2254 5895535 Tara Brooklyn
## 2255 5897760 Eo Manhattan
## 2256 5479559 Michael Manhattan
## 2257 4243849 Emma Brooklyn
## 2258 1149419 Alex Brooklyn
## 2259 5585945 Orren Brooklyn
## 2260 5909206 Nancy Manhattan
## 2261 2981156 Kia Queens
## 2262 3864301 Sen Queens
## 2263 5927702 Shayne Manhattan
## 2264 5927702 Shayne Manhattan
## 2265 5855145 Edward Queens
## 2266 5938496 Michael Manhattan
## 2267 5943212 Doug Brooklyn
## 2268 5944682 Maja & Pierre Manhattan
## 2269 5944756 Hasan Brooklyn
## 2270 3417321 David Manhattan
## 2271 5959653 Verna Brooklyn
## 2272 5972975 Leigh Brooklyn
## 2273 1841580 George Manhattan
## 2274 5971251 D. Anthony Manhattan
## 2275 663764 Karen Brooklyn
## 2276 5986790 Gen Manhattan
## 2277 5993276 Alfred Queens
## 2278 2768182 Devi Brooklyn
## 2279 4714927 Elisa Manhattan
## 2280 5887081 Michelle Brooklyn
## 2281 6010467 Mary Anne Manhattan
## 2282 6016424 Susan Brooklyn
## 2283 6024006 Johnny Staten Island
## 2284 364499 Ife Manhattan
## 2285 1709216 Steve And Heather Brooklyn
## 2286 2413714 Wilfredo Brooklyn
## 2287 5604089 Chris Manhattan
## 2288 1545977 Lelia Brooklyn
## 2289 6046616 Stephen Manhattan
## 2290 6048514 Judy Brooklyn
## 2291 2571 Teedo Brooklyn
## 2292 5908577 Eric Brooklyn
## 2293 6057624 Scooter Manhattan
## 2294 3531317 Ingrid Brooklyn
## 2295 3630531 Yuko Manhattan
## 2296 2757621 James Manhattan
## 2297 4373782 Victoria Manhattan
## 2298 3158364 Devika Queens
## 2299 1018472 Angus Brooklyn
## 2300 6088518 Evelyn Brooklyn
## 2301 6093878 Gee Brooklyn
## 2302 1690569 Greg Brooklyn
## 2303 350702 Autumn Brooklyn
## 2304 6105036 George Manhattan
## 2305 3211592 Loli Manhattan
## 2306 2733465 David Manhattan
## 2307 265152 Marta Brooklyn
## 2308 265152 Marta Brooklyn
## 2309 6118355 William Queens
## 2310 6121678 Kamala Brooklyn
## 2311 6133754 Trevor Brooklyn
## 2312 2843987 Simona Brooklyn
## 2313 6136511 Sky Manhattan
## 2314 4864306 Joseph Brooklyn
## 2315 496164 Todd Brooklyn
## 2316 5942292 @ Art House Monique Brooklyn
## 2317 5986790 Gen Manhattan
## 2318 6164428 Bjarke And Holly Brooklyn
## 2319 6165258 Gita Manhattan
## 2320 5848607 Meredith Manhattan
## 2321 6163192 Izz Manhattan
## 2322 5268463 Christy Brooklyn
## 2323 6180052 Andrian Brooklyn
## 2324 128663 Tina Brooklyn
## 2325 835112 Leah Brooklyn
## 2326 6158233 Craig Manhattan
## 2327 302772 Cheryl Manhattan
## 2328 131014 Serge Brooklyn
## 2329 6196141 Brian Manhattan
## 2330 1124797 Marianna Manhattan
## 2331 55176 Madison Brooklyn
## 2332 4623093 Matt Brooklyn
## 2333 5942292 @ Art House Monique Brooklyn
## 2334 6209044 Timothy Manhattan
## 2335 712590 Erin Brooklyn
## 2336 3038687 Karen Manhattan
## 2337 3965911 Tim Manhattan
## 2338 6216882 Raquel Manhattan
## 2339 6012816 Jeffrey Brooklyn
## 2340 6233644 Sri Manhattan
## 2341 5446918 Paresh Brooklyn
## 2342 6169516 Audra Manhattan
## 2343 354887 Jenny Brooklyn
## 2344 6242426 H. Ann Queens
## 2345 6131397 Dan Brooklyn
## 2346 6245239 Erica Manhattan
## 2347 5654454 Stuart Manhattan
## 2348 6256118 Katie Brooklyn
## 2349 2637874 Elon Brooklyn
## 2350 1474508 Samuel Manhattan
## 2351 252361 Lucien Brooklyn
## 2352 585273 Summer Brooklyn
## 2353 1475015 Mike Manhattan
## 2354 6280254 Jc Manhattan
## 2355 6286114 Stephen Manhattan
## 2356 836168 Henry Manhattan
## 2357 5523186 Mark Manhattan
## 2358 244071 Litza Queens
## 2359 2559004 Sergio Manhattan
## 2360 6294856 Yoki Brooklyn
## 2361 6298986 Marcelo Manhattan
## 2362 6305367 Suzanne Manhattan
## 2363 6305477 Alex Brooklyn
## 2364 4376062 Eliza Brooklyn
## 2365 7399728 Mickey Manhattan
## 2366 6142196 Neni Manhattan
## 2367 6309691 Lisa Brooklyn
## 2368 4910820 Alex Manhattan
## 2369 364351 Katie Manhattan
## 2370 2199502 Jon Brooklyn
## 2371 6334250 Shaila & Alex Brooklyn
## 2372 1908631 Derek Manhattan
## 2373 5644215 LiVi Brooklyn
## 2374 3696460 Radium Brooklyn
## 2375 6263282 Liza Brooklyn
## 2376 2010724 K. Naomi Manhattan
## 2377 6376776 Kurt Manhattan
## 2378 6375533 LaNola Manhattan
## 2379 6385492 John Queens
## 2380 3496628 Ali Manhattan
## 2381 6387355 Eric Brooklyn
## 2382 6388666 Celine Manhattan
## 2383 6390340 Lori Manhattan
## 2384 6394282 Patricia Brooklyn
## 2385 6407125 Alyssia Brooklyn
## 2386 6395317 Pierre Manhattan
## 2387 6414296 Noelle Manhattan
## 2388 6414916 Jon Manhattan
## 2389 6415261 John Brooklyn
## 2390 4922378 Erin Manhattan
## 2391 6387598 Ana Brooklyn
## 2392 5189987 Jorge Manhattan
## 2393 5536387 Heather And John Brooklyn
## 2394 6444977 Chris Manhattan
## 2395 6445684 Sharon Brooklyn
## 2396 6447462 Adam Manhattan
## 2397 2559004 Sergio Manhattan
## 2398 3274316 Clotaire Manhattan
## 2399 6030235 Parker (& Juan) Manhattan
## 2400 6459215 Aryn Manhattan
## 2401 6467086 George Manhattan
## 2402 6470443 Alex Manhattan
## 2403 6471326 Dawn Brooklyn
## 2404 6436296 Zach Brooklyn
## 2405 6472794 Joel Queens
## 2406 732985 Nicki Manhattan
## 2407 6474981 Kinneret Manhattan
## 2408 6482637 William Manhattan
## 2409 6483295 Jason Brooklyn
## 2410 6486116 Ari Manhattan
## 2411 6471461 Robert Queens
## 2412 6494389 Daniel Bronx
## 2413 6501414 Sean Manhattan
## 2414 867249 Norwin Manhattan
## 2415 3202825 Joseph Queens
## 2416 6514245 Al Brooklyn
## 2417 6525255 Dana Manhattan
## 2418 6527494 Mar Manhattan
## 2419 6531502 Shannon And Dahrehn Brooklyn
## 2420 6532132 MarQuerite Brooklyn
## 2421 4324767 Caits & Taf Manhattan
## 2422 2360794 Gillian Brooklyn
## 2423 2020556 Michael Queens
## 2424 6554341 Beca Brooklyn
## 2425 6575712 Emma Manhattan
## 2426 6582962 Allon Brooklyn
## 2427 6602545 Eleni Brooklyn
## 2428 396433 Kevin Manhattan
## 2429 2910509 Tamar Manhattan
## 2430 622855 Rodney Brooklyn
## 2431 3007815 Alia Queens
## 2432 2554853 Nim Manhattan
## 2433 3166165 Karen Manhattan
## 2434 6625516 Carlos Manhattan
## 2435 6626827 Steve Manhattan
## 2436 6632440 Emmett Manhattan
## 2437 5720054 Ingrid Queens
## 2438 6533489 Ryan Brooklyn
## 2439 645887 Dave & Theresa Brooklyn
## 2440 6642777 Martin Brooklyn
## 2441 4532557 Joshua Brooklyn
## 2442 2050338 Verena Queens
## 2443 3757699 Jeremiah Manhattan
## 2444 2559004 Sergio Manhattan
## 2445 5962196 Karim Manhattan
## 2446 3475005 Yolanda Queens
## 2447 6672450 Jacqueline Manhattan
## 2448 3571821 Andy & Friends Brooklyn
## 2449 6682511 Inga Queens
## 2450 2888900 Alex Brooklyn
## 2451 6688471 Guillaume Brooklyn
## 2452 5309521 Reut Brooklyn
## 2453 3086048 Christine Brooklyn
## 2454 2305477 Amy Brooklyn
## 2455 6706914 Leanne Brooklyn
## 2456 6706578 Nancy Manhattan
## 2457 5894425 Dan Manhattan
## 2458 3547817 Tad Brooklyn
## 2459 6721198 Susie Manhattan
## 2460 4185151 Gia Manhattan
## 2461 6270968 Ryan Brooklyn
## 2462 6581587 Livia Brooklyn
## 2463 6755111 Jessica Brooklyn
## 2464 6762247 Thomas Brooklyn
## 2465 900154 Joel Manhattan
## 2466 6762657 Yvette Brooklyn
## 2467 2873394 Aurora Brooklyn
## 2468 6781477 Joseph Brooklyn
## 2469 3363749 Alex Brooklyn
## 2470 6789857 Dayna Brooklyn
## 2471 6774871 Karece Brooklyn
## 2472 6819812 Margarita Brooklyn
## 2473 2868153 Matt Brooklyn
## 2474 6824711 Jordan Manhattan
## 2475 4656534 Anna Manhattan
## 2476 5561816 Caitlin Manhattan
## 2477 4995411 Mayrav Manhattan
## 2478 1537501 Lenny Brooklyn
## 2479 6854750 Margo Manhattan
## 2480 6866620 Adam Manhattan
## 2481 6873370 Thomas Brooklyn
## 2482 6881792 Carlos Manhattan
## 2483 6885157 Randy Brooklyn
## 2484 809716 Adero Brooklyn
## 2485 2737373 Ray Manhattan
## 2486 6882340 Patricia Manhattan
## 2487 6893861 Phillip + Zack Brooklyn
## 2488 6897732 Wilson Manhattan
## 2489 6885157 Randy Brooklyn
## 2490 6901734 Liz Brooklyn
## 2491 5619749 Jen Brooklyn
## 2492 2243431 Marcelle Queens
## 2493 6912221 Masako Brooklyn
## 2494 2246253 Nerenda Brooklyn
## 2495 6885157 Randy Brooklyn
## 2496 6903334 Marisa Brooklyn
## 2497 6949594 Sego Brooklyn
## 2498 836911 Cathy Brooklyn
## 2499 6959061 Roque Bronx
## 2500 3967827 Ezequiel Brooklyn
## 2501 3891706 Jon Paul Brooklyn
## 2502 6970732 Sullivan Manhattan
## 2503 6970929 Andy Manhattan
## 2504 2577135 Elena Manhattan
## 2505 4365496 Sarah Brooklyn
## 2506 6989825 Angus Brooklyn
## 2507 5768571 Gus Brooklyn
## 2508 6986713 Chris Manhattan
## 2509 7016230 André Manhattan
## 2510 1240820 Triny Brooklyn
## 2511 6602545 Eleni Brooklyn
## 2512 2078796 Andy Manhattan
## 2513 7020798 Light Manhattan
## 2514 6885157 Randy Brooklyn
## 2515 7022451 Deborah Manhattan
## 2516 4393626 Aaron Manhattan
## 2517 306825 Jesse Brooklyn
## 2518 7041410 Jeffrey Manhattan
## 2519 4855335 Laura Brooklyn
## 2520 7055547 Tege Manhattan
## 2521 4069241 Shannon Brooklyn
## 2522 2135948 Giovanni Queens
## 2523 7073209 Jackie Brooklyn
## 2524 2214774 Ben And Jess Manhattan
## 2525 3003533 Jeff Manhattan
## 2526 430826 Dee Manhattan
## 2527 2687920 Ikk Manhattan
## 2528 7089676 Michel Fabrice Manhattan
## 2529 7090408 Paco & Pamela Brooklyn
## 2530 7073209 Jackie Brooklyn
## 2531 7092157 Dennis Brooklyn
## 2532 7096964 Chris Manhattan
## 2533 5230482 Anthony Manhattan
## 2534 5444717 Jonathan Manhattan
## 2535 6714376 Alec Manhattan
## 2536 5435074 Deborah Manhattan
## 2537 7111113 Carolina Brooklyn
## 2538 7112116 Ty Manhattan
## 2539 1785016 Martin Brooklyn
## 2540 2015914 Majar Brooklyn
## 2541 7130382 Walter Brooklyn
## 2542 7136700 Michelle Brooklyn
## 2543 7138163 Ruby Manhattan
## 2544 7120328 Kiriko Brooklyn
## 2545 7139147 Hank Brooklyn
## 2546 6885157 Randy Brooklyn
## 2547 772862 Jesse Brooklyn
## 2548 2478675 Gina Brooklyn
## 2549 7169746 Patricia Manhattan
## 2550 7178784 Peter Brooklyn
## 2551 7183070 Vanessa Manhattan
## 2552 3571821 Andy & Friends Brooklyn
## 2553 6002245 Nicholas Queens
## 2554 2989617 Seth Queens
## 2555 7182180 Lee Manhattan
## 2556 7182180 Lee Manhattan
## 2557 4932354 Mitty Brooklyn
## 2558 7195403 Emily Brooklyn
## 2559 7165563 Raul Manhattan
## 2560 7240751 Emily Brooklyn
## 2561 514261 Vanessa Brooklyn
## 2562 7205838 Erik Queens
## 2563 3290436 Hadar Brooklyn
## 2564 5957620 Nami Manhattan
## 2565 124357 Alex Brooklyn
## 2566 2014720 Amy Brooklyn
## 2567 7187069 Wendy Brooklyn
## 2568 7220851 Richard Manhattan
## 2569 2671491 Savannah Brooklyn
## 2570 7027562 Deidra Queens
## 2571 7125872 Joe Manhattan
## 2572 671579 Karen Brooklyn
## 2573 4581902 Magi Manhattan
## 2574 4202236 John Brooklyn
## 2575 6885157 Randy Brooklyn
## 2576 7245581 Michael Manhattan
## 2577 7245581 Michael Manhattan
## 2578 1673136 Erin Manhattan
## 2579 7236564 Heather Brooklyn
## 2580 7251483 Marc Manhattan
## 2581 1475015 Mike Manhattan
## 2582 7273689 Olya Manhattan
## 2583 7281456 Fabiano Brooklyn
## 2584 7281500 Christian Manhattan
## 2585 3239771 Olivia Brooklyn
## 2586 5605755 Amith Brooklyn
## 2587 7308715 Brooke Brooklyn
## 2588 7309046 Bojana Bronx
## 2589 7309232 London Manhattan
## 2590 7310886 Kristin Brooklyn
## 2591 2061760 Lise Brooklyn
## 2592 7309232 London Manhattan
## 2593 1330500 Dayna Brooklyn
## 2594 7320160 Smyles And Diara Manhattan
## 2595 5569141 Jiajia Manhattan
## 2596 2035472 Alessio Brooklyn
## 2597 7318649 Stacey & Anthony Brooklyn
## 2598 6414252 Arza Brooklyn
## 2599 7341015 Aviva Queens
## 2600 7341851 Maya Manhattan
## 2601 7021990 Tim & MaryAnn Manhattan
## 2602 1631330 Irina Brooklyn
## 2603 7136700 Michelle Brooklyn
## 2604 7353062 Tim Manhattan
## 2605 306394 Marialuisa Brooklyn
## 2606 4783987 Kim Manhattan
## 2607 1411399 Carlos Manhattan
## 2608 6776157 Giovanna Brooklyn
## 2609 3599914 Daniel Brooklyn
## 2610 176903 Tana Manhattan
## 2611 2712353 Masud Brooklyn
## 2612 7387960 Max Manhattan
## 2613 7388499 Julia Brooklyn
## 2614 4194894 Esef Manhattan
## 2615 3470583 Brandy Brooklyn
## 2616 287122 Dominik Brooklyn
## 2617 7409102 James Manhattan
## 2618 7419960 Marilyn Manhattan
## 2619 176903 Tana Manhattan
## 2620 697442 Chris And Zach Brooklyn
## 2621 7437876 Shamara Manhattan
## 2622 1286275 Kerry Brooklyn
## 2623 5386695 Joanne Brooklyn
## 2624 7460434 Rocco Manhattan
## 2625 7461332 Badrul Manhattan
## 2626 7463731 Alessandro Manhattan
## 2627 7465509 Tyler Brooklyn
## 2628 7475363 Lola Manhattan
## 2629 7458733 Alexandra Manhattan
## 2630 6245535 Jennifer Brooklyn
## 2631 40100 Nicole Manhattan
## 2632 7503643 Vida Brooklyn
## 2633 969279 Travis Brooklyn
## 2634 7474069 Carrie Manhattan
## 2635 1873589 Jill Brooklyn
## 2636 5959653 Verna Brooklyn
## 2637 7503643 Vida Brooklyn
## 2638 1517723 Zoesarah (And) Anu Brooklyn
## 2639 346356 Matthieu Brooklyn
## 2640 6083756 Sara Manhattan
## 2641 1705617 David Brooklyn
## 2642 7553984 Hannah Manhattan
## 2643 7556987 Menny Manhattan
## 2644 7130382 Walter Brooklyn
## 2645 7557833 Christine Brooklyn
## 2646 7558452 Zev Manhattan
## 2647 7566397 Brett Queens
## 2648 2362862 Louise Brooklyn
## 2649 7573341 Robert Brooklyn
## 2650 212738 Julian Brooklyn
## 2651 754675 Lucy Manhattan
## 2652 7576337 Beth Manhattan
## 2653 7557833 Christine Brooklyn
## 2654 7557833 Christine Brooklyn
## 2655 7581642 Ehren Brooklyn
## 2656 7591257 Ruty Brooklyn
## 2657 5761173 Kappie Brooklyn
## 2658 2594389 Arsen Manhattan
## 2659 7603226 Lysa Manhattan
## 2660 4165498 L.A. Manhattan
## 2661 7499240 Candy Manhattan
## 2662 4129805 Evelyn Manhattan
## 2663 7628445 Rosa Brooklyn
## 2664 7633037 Jesse Manhattan
## 2665 2357027 Harmon Brooklyn
## 2666 3349838 Tom Queens
## 2667 7654246 Tamara Manhattan
## 2668 7659871 Cristie Brooklyn
## 2669 1403769 Anastasia Brooklyn
## 2670 1862491 Ben Brooklyn
## 2671 7670501 Jennifer Brooklyn
## 2672 7672728 Brooke & Terry Manhattan
## 2673 5531489 Aurelio Brooklyn
## 2674 7676839 Gabor Queens
## 2675 7654662 Elizabeth Brooklyn
## 2676 5912572 Tangier Brooklyn
## 2677 7681637 Linda Brooklyn
## 2678 7681692 Ernesto Queens
## 2679 7683052 Leah Manhattan
## 2680 266878 Jean & Gabriel Brooklyn
## 2681 7691518 Brent Manhattan
## 2682 7693917 Brian Manhattan
## 2683 33816 Kamaya Brooklyn
## 2684 5654072 Mark Brooklyn
## 2685 3038687 Karen Manhattan
## 2686 3355679 Roxanne Manhattan
## 2687 4314535 Arielle Manhattan
## 2688 7728790 Celin Manhattan
## 2689 7460181 Geraldine Brooklyn
## 2690 7735666 Laura Manhattan
## 2691 7388128 Aqila Brooklyn
## 2692 5908577 Eric Brooklyn
## 2693 7755092 Ron Manhattan
## 2694 926743 Lancelot Brooklyn
## 2695 5109475 Liam Brooklyn
## 2696 7701933 Henry Manhattan
## 2697 1481172 Elena Brooklyn
## 2698 5283769 Donna Manhattan
## 2699 213266 Jessica Manhattan
## 2700 7777902 Zachary Brooklyn
## 2701 7779204 Brooklyn
## 2702 6122499 Marjorie Queens
## 2703 2780717 Alonzo Brooklyn
## 2704 4028305 Abigail Manhattan
## 2705 683794 Mark Manhattan
## 2706 838704 Thomas Manhattan
## 2707 7815949 Dee Brooklyn
## 2708 7645338 King Queens
## 2709 7503643 Vida Brooklyn
## 2710 7831209 Bobi Manhattan
## 2711 3604585 Jenny Brooklyn
## 2712 279845 Chantille & Linda Brooklyn
## 2713 7833913 Gya Brooklyn
## 2714 7837136 Jorion Manhattan
## 2715 7850260 Raymond Manhattan
## 2716 7853251 Enyinne Queens
## 2717 7853251 Enyinne Queens
## 2718 7112116 Ty Manhattan
## 2719 7856381 Jp Brooklyn
## 2720 7858405 Diavanna Brooklyn
## 2721 7859118 Kristen & Corey Brooklyn
## 2722 7858210 Maxime Manhattan
## 2723 7860852 Matthew Brooklyn
## 2724 6263540 Adam Manhattan
## 2725 10528 Olivier Manhattan
## 2726 4130492 Keiko & Ilya Brooklyn
## 2727 4260529 Harry Queens
## 2728 7853251 Enyinne Queens
## 2729 3003563 Rocio Manhattan
## 2730 7853251 Enyinne Queens
## 2731 2259113 Ange Brooklyn
## 2732 823392 Karen Manhattan
## 2733 7895068 Ana Manhattan
## 2734 7896605 Daveyjoe! Queens
## 2735 2015914 Majar Brooklyn
## 2736 7897301 Rickey Queens
## 2737 7324189 Buke Manhattan
## 2738 7901999 Steven Manhattan
## 2739 1834942 Tessa Brooklyn
## 2740 7245581 Michael Manhattan
## 2741 176836 Gil Manhattan
## 2742 7245581 Michael Manhattan
## 2743 5464042 Nicole Brooklyn
## 2744 7809536 Brian Brooklyn
## 2745 7919277 Daren Manhattan
## 2746 7938019 Megan Brooklyn
## 2747 477140 Mark Brooklyn
## 2748 6228539 Michelle Manhattan
## 2749 7727015 Lucie Manhattan
## 2750 7503643 Vida Brooklyn
## 2751 1308282 Sam Brooklyn
## 2752 7964729 Justin Manhattan
## 2753 6586128 Martine Bronx
## 2754 7959444 Molly Brooklyn
## 2755 7977178 Abby Manhattan
## 2756 6885157 Randy Brooklyn
## 2757 7988149 Moses Brooklyn
## 2758 7997061 Rebecca Brooklyn
## 2759 8000315 Naima Manhattan
## 2760 1601577 Tilia Manhattan
## 2761 6457253 Irene Brooklyn
## 2762 2024924 Lisa Brooklyn
## 2763 8049757 Omar Manhattan
## 2764 109505 Jason Manhattan
## 2765 8071107 Tov Brooklyn
## 2766 1354796 Natasha Brooklyn
## 2767 8071900 Jordan Brooklyn
## 2768 4731948 Kiki Manhattan
## 2769 8088731 Jon Brooklyn
## 2770 1396183 Lee Brooklyn
## 2771 8092548 Habib Brooklyn
## 2772 8092818 Romi Brooklyn
## 2773 4358024 Jonathan Manhattan
## 2774 228583 Angelo Brooklyn
## 2775 1430128 Jenn Brooklyn
## 2776 8112941 Cat Brooklyn
## 2777 8113165 Cynthia And Froebel Brooklyn
## 2778 347642 Jullien Brooklyn
## 2779 8119708 Charlotte & Aaron Brooklyn
## 2780 8120180 Ivey Brooklyn
## 2781 7304881 Amanda Brooklyn
## 2782 8131878 Tabita Manhattan
## 2783 7503643 Vida Brooklyn
## 2784 4540899 Tee Brooklyn
## 2785 8135210 Milena Queens
## 2786 3217480 Victoria Manhattan
## 2787 1200603 Andrea Brooklyn
## 2788 6486116 Ari Manhattan
## 2789 8163133 Nikhil Manhattan
## 2790 173980 Will And Jo Brooklyn
## 2791 4045167 Manuel Manhattan
## 2792 8178950 Mari Manhattan
## 2793 8179855 Kris Brooklyn
## 2794 7365834 Alex Brooklyn
## 2795 8184930 Leonice Brooklyn
## 2796 2333904 Stephanie Manhattan
## 2797 8200820 Valerie Brooklyn
## 2798 6885157 Randy Brooklyn
## 2799 66193 Brennan Brooklyn
## 2800 7646038 Malik Queens
## 2801 4983320 Terri Queens
## 2802 4548229 Brinton Manhattan
## 2803 8261145 Tommy Manhattan
## 2804 8126811 Jessica Queens
## 2805 8282962 Anna Manhattan
## 2806 5191738 Alisha Brooklyn
## 2807 8301763 Kevin Manhattan
## 2808 3038687 Karen Manhattan
## 2809 8300712 Andrew And Stine Brooklyn
## 2810 8323145 Madeleine Manhattan
## 2811 7776144 Bertte Brooklyn
## 2812 8336526 Matthew Manhattan
## 2813 8111912 Jed Brooklyn
## 2814 377151 Shervin Manhattan
## 2815 8316059 Jorge Queens
## 2816 4106680 Alexandre Manhattan
## 2817 8362282 Drica 2017 Manhattan
## 2818 6866353 Julie Brooklyn
## 2819 245881 Steph Manhattan
## 2820 999689 Eric Brooklyn
## 2821 4645357 Beatrix Queens
## 2822 7748180 Ryan Queens
## 2823 8422502 Stephan Manhattan
## 2824 4894525 Am Brooklyn
## 2825 117236 Raj Manhattan
## 2826 8434244 William Manhattan
## 2827 8119708 Charlotte & Aaron Brooklyn
## 2828 8452695 Macit Queens
## 2829 8452695 Macit Queens
## 2830 8452639 C S Brooklyn
## 2831 8455776 Wendy Manhattan
## 2832 8457613 Erin Manhattan
## 2833 1400369 Ernesto Manhattan
## 2834 8255208 Kate Brooklyn
## 2835 8481125 Thomas Manhattan
## 2836 8265050 Jae Brooklyn
## 2837 8289606 Stephen Manhattan
## 2838 4327300 Stephen Manhattan
## 2839 3360223 Rosemary Queens
## 2840 7875272 Mary Staten Island
## 2841 8521063 Wes Manhattan
## 2842 8038118 Maria Manhattan
## 2843 8523970 Tanya Manhattan
## 2844 7853251 Enyinne Queens
## 2845 2698515 Chandler Manhattan
## 2846 8548430 Bernardo & Andressa Brooklyn
## 2847 8548453 Jon Manhattan
## 2848 3130819 Shana Brooklyn
## 2849 7009551 Joseph Brooklyn
## 2850 5533135 Rodrigo Manhattan
## 2851 7503643 Vida Brooklyn
## 2852 5283853 Chara Manhattan
## 2853 1254489 Randy Brooklyn
## 2854 8783166 Marinez Queens
## 2855 6676776 Peter Manhattan
## 2856 953843 Sara Brooklyn
## 2857 2240143 Pavel Manhattan
## 2858 8102595 Stephanie Brooklyn
## 2859 8616291 Chikie Manhattan
## 2860 8619862 Karlee Brooklyn
## 2861 2196224 Sally Manhattan
## 2862 1345611 Bahiyyah Brooklyn
## 2863 5440087 Dn Manhattan
## 2864 8638841 Nathan Brooklyn
## 2865 8653725 Marlyn Brooklyn
## 2866 5334697 Shane Manhattan
## 2867 2935265 Andrew Manhattan
## 2868 1232988 Matthew Manhattan
## 2869 8677042 Malcolm Brooklyn
## 2870 8677477 Tia Manhattan
## 2871 8680097 Zaire Brooklyn
## 2872 8685072 Agnes Manhattan
## 2873 8687489 Adam Manhattan
## 2874 8313953 Natalie Manhattan
## 2875 8726014 ELouise Brooklyn
## 2876 1338262 Rachel Brooklyn
## 2877 8708720 Nehprii Brooklyn
## 2878 4623045 Sean Brooklyn
## 2879 8732694 Ravanna Brooklyn
## 2880 8026393 Ruth Manhattan
## 2881 1967871 Lisa Brooklyn
## 2882 8732694 Ravanna Brooklyn
## 2883 8739354 Caspar Manhattan
## 2884 2899693 Kali Brooklyn
## 2885 8751800 Olubode Shawn Manhattan
## 2886 8753908 Rebecca Brooklyn
## 2887 8759781 Augusto M Gallardo Queens
## 2888 3562322 Lord Daniel Brooklyn
## 2889 517966 Shean Brooklyn
## 2890 8772693 Billy Manhattan
## 2891 8773518 Robb Brooklyn
## 2892 5556571 Chris Brooklyn
## 2893 914838 Lior Manhattan
## 2894 4847926 Shelley Brooklyn
## 2895 2119276 Host Manhattan
## 2896 5942292 @ Art House Monique Brooklyn
## 2897 8778889 Steven Manhattan
## 2898 7503643 Vida Brooklyn
## 2899 93790 Ann Manhattan
## 2900 1147345 Molly Manhattan
## 2901 5738733 Elizabeth Brooklyn
## 2902 8315861 Jonathan Manhattan
## 2903 8791051 Danielle Brooklyn
## 2904 1253125 Tanya Manhattan
## 2905 8796895 Rebecca Manhattan
## 2906 2110601 Julia Manhattan
## 2907 8821936 Lynn Staten Island
## 2908 8265050 Jae Brooklyn
## 2909 8838470 Carlos Manhattan
## 2910 3038687 Karen Manhattan
## 2911 8844412 Pat Manhattan
## 2912 2119276 Host Manhattan
## 2913 2119276 Host Manhattan
## 2914 2119276 Host Manhattan
## 2915 5719998 Charles Brooklyn
## 2916 8756595 Jenny Brooklyn
## 2917 8619985 Mel Brooklyn
## 2918 5434492 Elizabeth Manhattan
## 2919 8896180 Facundo Martin /Teresa Manhattan
## 2920 6194487 Rocio & James Queens
## 2921 8900383 Zee Manhattan
## 2922 274702 Sabina Giovanna Brooklyn
## 2923 762610 Christopher Queens
## 2924 177712 Amara Queens
## 2925 8792814 Caroline Brooklyn
## 2926 8925763 Joy Manhattan
## 2927 8925493 Yvonne Brooklyn
## 2928 8934751 Mike Queens
## 2929 8937205 Golan Manhattan
## 2930 2015914 Majar Brooklyn
## 2931 8918030 Theodore Bronx
## 2932 2015914 Majar Brooklyn
## 2933 4864306 Joseph Brooklyn
## 2934 8955761 Murrel Manhattan
## 2935 4463092 Samuel Manhattan
## 2936 2717428 Ellen Manhattan
## 2937 4184612 Lynne Brooklyn
## 2938 1562642 Molly Brooklyn
## 2939 2015914 Majar Brooklyn
## 2940 8289663 Shane Manhattan
## 2941 1120027 Clay Manhattan
## 2942 8986314 Stephen Brooklyn
## 2943 8335875 Mr. Williams Brooklyn
## 2944 5668786 Ed &Alexa Manhattan
## 2945 7614595 Maria Queens
## 2946 706623 Emilia Brooklyn
## 2947 8136206 Rob Brooklyn
## 2948 2731594 Ronak Brooklyn
## 2949 5693756 Daniel Manhattan
## 2950 8998805 Koji & H Manhattan
## 2951 5662533 Megan Manhattan
## 2952 9008935 Robin Brooklyn
## 2953 9010955 Lindsey Brooklyn
## 2954 840868 Ric Manhattan
## 2955 9031941 Sarah Brooklyn
## 2956 2332618 Alison Brooklyn
## 2957 6144668 Eydie Brooklyn
## 2958 153494 Amikole Manhattan
## 2959 9051298 Lydiah Manhattan
## 2960 9053036 Raynald Manhattan
## 2961 8943770 Patrick Brooklyn
## 2962 9053452 Liam Manhattan
## 2963 9053876 Amy Brooklyn
## 2964 9072771 Kindra Manhattan
## 2965 215764 Lynn Manhattan
## 2966 2510744 Isabelle Brooklyn
## 2967 8792814 Caroline Brooklyn
## 2968 8792814 Caroline Brooklyn
## 2969 9109049 Todd Brooklyn
## 2970 478717 Deborah Brooklyn
## 2971 8366233 Helga Manhattan
## 2972 9119678 Alex Manhattan
## 2973 7228995 Sophie Brooklyn
## 2974 7379093 Francesca Manhattan
## 2975 17318747 Jay Manhattan
## 2976 1818792 Clarissa & Rich Brooklyn
## 2977 8072802 John Brooklyn
## 2978 9131167 Myrna And David Queens
## 2979 8910286 Lane Brooklyn
## 2980 6790494 Paul Queens
## 2981 1755097 Jay Brooklyn
## 2982 721267 Debbie Brooklyn
## 2983 5064855 Krista Manhattan
## 2984 8989844 Ronald Bronx
## 2985 9162713 Sarah Manhattan
## 2986 652092 Art Manhattan
## 2987 1845333 Annabel Manhattan
## 2988 2127723 Tavia Queens
## 2989 2548224 Melissa Manhattan
## 2990 9173924 Jon Manhattan
## 2991 8783166 Marinez Queens
## 2992 9177920 Irie Brooklyn
## 2993 2480939 Charles Brooklyn
## 2994 6544987 Timothy Manhattan
## 2995 9186542 Soren Manhattan
## 2996 7503643 Vida Brooklyn
## 2997 9187795 James Manhattan
## 2998 4051126 Kris Manhattan
## 2999 9117590 Samantha Manhattan
## 3000 9197101 Alex Nova York Bronx
## 3001 1411399 Carlos Manhattan
## 3002 9207223 Ryan Manhattan
## 3003 3336010 Dahlia Brooklyn
## 3004 9209820 Althea Brooklyn
## 3005 5862053 Alexana Manhattan
## 3006 5243858 Yvonne Manhattan
## 3007 4500999 Aaron Manhattan
## 3008 9232106 Lynne Manhattan
## 3009 2715012 Maurice Brooklyn
## 3010 9234456 Angelo Brooklyn
## 3011 8998154 Gordon Brooklyn
## 3012 9250406 Simon Manhattan
## 3013 104250 Yair Manhattan
## 3014 9264606 Jeremy Queens
## 3015 173997 Beth Brooklyn
## 3016 9268156 DeLex Queens
## 3017 9268805 David Queens
## 3018 1304097 Edon Manhattan
## 3019 9271872 Anthony Manhattan
## 3020 5586949 S & G Manhattan
## 3021 9284163 Antonio Queens
## 3022 9306716 Sophie Manhattan
## 3023 7379093 Francesca Manhattan
## 3024 3980927 Aude Manhattan
## 3025 2793778 Fernando Queens
## 3026 6327260 Joseph Brooklyn
## 3027 367815 Liz Brooklyn
## 3028 9293512 Pk Manhattan
## 3029 9348961 Colleen Manhattan
## 3030 1482208 Allison Brooklyn
## 3031 9352452 Zuffina Manhattan
## 3032 226697 Adriana Brooklyn
## 3033 7880914 Claudia Brooklyn
## 3034 3886532 Tom & Lily Brooklyn
## 3035 9358396 Anne Manhattan
## 3036 5481728 Mike Brooklyn
## 3037 8222814 Rock Manhattan
## 3038 1354796 Natasha Brooklyn
## 3039 9375506 Selim Brooklyn
## 3040 9381867 Gilleon Brooklyn
## 3041 7607092 Tanja Manhattan
## 3042 6989380 Shane Manhattan
## 3043 8535372 Ephraim Manhattan
## 3044 9407785 Ana Maria Manhattan
## 3045 2273886 Ki Manhattan
## 3046 7757648 Ana Brooklyn
## 3047 2140820 Cory Brooklyn
## 3048 9340104 Mike Brooklyn
## 3049 9430658 Maegan Manhattan
## 3050 9430973 Donna Staten Island
## 3051 310670 Vie Bronx
## 3052 8200820 Valerie Brooklyn
## 3053 9443112 Isaac Brooklyn
## 3054 2961266 John Queens
## 3055 2019832 Lauren Brooklyn
## 3056 9453400 Lo Manhattan
## 3057 7239405 Katy Manhattan
## 3058 6885157 Randy Brooklyn
## 3059 9462127 Krista Manhattan
## 3060 8423479 Sherief Brooklyn
## 3061 1929442 Claudia And Leo Brooklyn
## 3062 3267818 Allison Brooklyn
## 3063 9223085 Danielle Brooklyn
## 3064 9473928 Hakan Manhattan
## 3065 7557833 Christine Brooklyn
## 3066 7557833 Christine Brooklyn
## 3067 9207223 Ryan Manhattan
## 3068 4572968 Na'Im Manhattan
## 3069 9490594 Brian Manhattan
## 3070 2621935 Jennifer Manhattan
## 3071 9486005 Nikki Brooklyn
## 3072 9501531 Andre Manhattan
## 3073 3257486 Drew Manhattan
## 3074 6841194 Eric Brooklyn
## 3075 1572271 Ilana Manhattan
## 3076 9509269 Carlos Queens
## 3077 6957798 Charisse Brooklyn
## 3078 9520082 Mark Brooklyn
## 3079 9522475 Liam Manhattan
## 3080 9522524 Nancy Brooklyn
## 3081 9524360 Michael Brooklyn
## 3082 159011 Michael Brooklyn
## 3083 3609524 Nayef Manhattan
## 3084 3889301 Marek Manhattan
## 3085 2208993 Chris Manhattan
## 3086 3981706 Leo Manhattan
## 3087 1146958 Liz Manhattan
## 3088 9554965 Jenelle & Michael Brooklyn
## 3089 6632440 Emmett Manhattan
## 3090 9470293 Lana Brooklyn
## 3091 9563216 Aimee Manhattan
## 3092 9564410 Ines Brooklyn
## 3093 9339714 Jessica Manhattan
## 3094 5309364 Michael Brooklyn
## 3095 6499364 David Manhattan
## 3096 7195403 Emily Brooklyn
## 3097 9593224 Ian Manhattan
## 3098 7245581 Michael Manhattan
## 3099 9600781 Brian Brooklyn
## 3100 9613050 Sinead Manhattan
## 3101 9610339 Cris Brooklyn
## 3102 9615574 Gwen Manhattan
## 3103 9622750 Taran Pal Manhattan
## 3104 8976567 Y&Y Manhattan
## 3105 9630447 Lois Manhattan
## 3106 2021121 Megan Brooklyn
## 3107 9632747 Mick Brooklyn
## 3108 9634183 Ayse Sera Manhattan
## 3109 1512462 Evan & Maria Manhattan
## 3110 9637768 Reginald Brooklyn
## 3111 9638204 Teresa Manhattan
## 3112 1340205 Kali Brooklyn
## 3113 9644289 Carol-Anne Brooklyn
## 3114 8951505 Esther & Aaron Manhattan
## 3115 9646158 Frederick Brooklyn
## 3116 3952560 Camille Manhattan
## 3117 315654 Genevieve Manhattan
## 3118 9371210 Shane Brooklyn
## 3119 9632747 Mick Brooklyn
## 3120 9665594 Roberto Manhattan
## 3121 173980 Will And Jo Brooklyn
## 3122 9671392 Dorcas Brooklyn
## 3123 416918 Kimberly Manhattan
## 3124 9685977 Sherry Manhattan
## 3125 267955 Peter Manhattan
## 3126 9407818 Anthony Manhattan
## 3127 9689041 Jay Brooklyn
## 3128 485738 Ross Manhattan
## 3129 1010940 Amber Manhattan
## 3130 9702964 Amanda Manhattan
## 3131 8276592 Alex Manhattan
## 3132 9709464 Jessica Manhattan
## 3133 9710466 Kristie Manhattan
## 3134 3351261 Kris Brooklyn
## 3135 9720494 Coats Manhattan
## 3136 194918 David Manhattan
## 3137 9725785 J.D. & Stephanie Brooklyn
## 3138 1753078 Abby Manhattan
## 3139 9729421 Brian Manhattan
## 3140 5008954 Mich Manhattan
## 3141 9744172 Melissa Manhattan
## 3142 376084 Mary Brooklyn
## 3143 9745149 Idoline Brooklyn
## 3144 4378763 Antonio Queens
## 3145 9751988 Asuka Manhattan
## 3146 2808971 Frederic Manhattan
## 3147 4693453 Natalie Brooklyn
## 3148 9762099 Mary Manhattan
## 3149 9774018 Dan Manhattan
## 3150 9582999 Shane Brooklyn
## 3151 7748646 Denise Manhattan
## 3152 9782866 Ronald Manhattan
## 3153 9782676 Andrea Manhattan
## 3154 7503643 Vida Brooklyn
## 3155 9790609 Naomi Brooklyn
## 3156 9795483 Ayana Brooklyn
## 3157 9795610 Joel Manhattan
## 3158 8292927 Christian Brooklyn
## 3159 586409 Ahmed Manhattan
## 3160 3627583 Brandon Manhattan
## 3161 9522524 Nancy Brooklyn
## 3162 2673168 David Brooklyn
## 3163 32704 LoftMidtownNYC Manhattan
## 3164 9813233 Tao Manhattan
## 3165 9813350 Jeremy Brooklyn
## 3166 9522524 Nancy Brooklyn
## 3167 9817733 Ana Manhattan
## 3168 9818634 Lara Brooklyn
## 3169 9820312 Brandon Brooklyn
## 3170 9820942 Erica And Jorel Brooklyn
## 3171 6321587 Bud Brooklyn
## 3172 9794342 Pavel Manhattan
## 3173 9831559 Cassi Brooklyn
## 3174 9832158 Daniel Brooklyn
## 3175 3196987 Stephanie Brooklyn
## 3176 3416555 Anya Manhattan
## 3177 1297675 Helena Brooklyn
## 3178 9847713 Ksenia Manhattan
## 3179 9848620 Kevin Brooklyn
## 3180 7503643 Vida Brooklyn
## 3181 9854533 Izzy Manhattan
## 3182 9856784 Cristobal Brooklyn
## 3183 9520651 Vivian Brooklyn
## 3184 9820942 Erica And Jorel Brooklyn
## 3185 5097458 Nes Brooklyn
## 3186 9870396 Damian Manhattan
## 3187 9872650 Patrick Brooklyn
## 3188 3158364 Devika Queens
## 3189 3187531 Michelle Manhattan
## 3190 7849107 Nicholas Brooklyn
## 3191 2332618 Alison Brooklyn
## 3192 6806417 Jonathan Manhattan
## 3193 9820942 Erica And Jorel Brooklyn
## 3194 4358024 Jonathan Manhattan
## 3195 9898029 Anthony Brooklyn
## 3196 9888877 Jessica Manhattan
## 3197 684629 Alana Manhattan
## 3198 9906590 Evan Manhattan
## 3199 9912620 Sunita Brooklyn
## 3200 9917136 Rani Brooklyn
## 3201 5032943 Michael Manhattan
## 3202 9921108 Amy Brooklyn
## 3203 325455 Ashley Brooklyn
## 3204 9745149 Idoline Brooklyn
## 3205 9709235 Ferris Manhattan
## 3206 9909455 Nicole Manhattan
## 3207 9930219 Arlene Manhattan
## 3208 6194487 Rocio & James Queens
## 3209 342599 Charlotte And Pierre Brooklyn
## 3210 9931428 Joseph Manhattan
## 3211 9509269 Carlos Queens
## 3212 5453550 Christine & James Brooklyn
## 3213 9947332 Lorelei & Alex Brooklyn
## 3214 5243122 R Brooklyn
## 3215 9951559 Evan Manhattan
## 3216 9501531 Andre Manhattan
## 3217 1345452 Nico Brooklyn
## 3218 1229984 John Queens
## 3219 9959323 Lauren Queens
## 3220 8740210 Angelica Brooklyn
## 3221 915973 Donald P. Brooklyn
## 3222 9965028 Sasha Manhattan
## 3223 110958 Ellen Brooklyn
## 3224 9946315 Susan Brooklyn
## 3225 2765870 Amarie2131 Manhattan
## 3226 4482351 Zoey Manhattan
## 3227 4393792 Jose C. Brooklyn
## 3228 9989761 Gaudhi Manhattan
## 3229 9265204 Gianni Brooklyn
## 3230 9990552 Susan Brooklyn
## 3231 9991075 Erika Brooklyn
## 3232 6846161 Stefano Manhattan
## 3233 9997988 Jagriti Manhattan
## 3234 9442045 Miriam Brooklyn
## 3235 10001478 Anya Manhattan
## 3236 10001551 Herman F Manhattan
## 3237 10003254 Mac Manhattan
## 3238 4393358 Cj Brooklyn
## 3239 2317686 Bryan Brooklyn
## 3240 10012271 Karmesha Bronx
## 3241 10012421 Deborah Brooklyn
## 3242 1319462 Zi Ying Manhattan
## 3243 239829 Lauren Brooklyn
## 3244 10008086 Brandon Brooklyn
## 3245 9207223 Ryan Manhattan
## 3246 10018391 Alex Bronx
## 3247 2274545 Kerri & Steve Queens
## 3248 8826175 Grover Manhattan
## 3249 10023559 Judson Manhattan
## 3250 5048868 Matthew Manhattan
## 3251 3294551 Michelangelo Queens
## 3252 3710931 Stephanie Manhattan
## 3253 7329934 Laurence Brooklyn
## 3254 5164854 Lilia Manhattan
## 3255 576056 Flick Brooklyn
## 3256 2559004 Sergio Manhattan
## 3257 9917136 Rani Brooklyn
## 3258 10041857 Veronica Manhattan
## 3259 1430695 Julia, Anthony, Apollo & Atlas Brooklyn
## 3260 1479666 Maria Brooklyn
## 3261 7720086 Henri-Leon Brooklyn
## 3262 861330 Joseph Brooklyn
## 3263 10061009 Minetta Manhattan
## 3264 10071397 Trevor Manhattan
## 3265 9950152 Dawn & Vernon Brooklyn
## 3266 9535237 Ryan Brooklyn
## 3267 8551260 Hannah Brooklyn
## 3268 10074602 Shane Manhattan
## 3269 10087095 Brian Manhattan
## 3270 8048803 Daan Queens
## 3271 4259154 Christine Manhattan
## 3272 1294674 Alex Brooklyn
## 3273 10100413 A Queens
## 3274 10102581 Deborah Manhattan
## 3275 2266169 Erika Manhattan
## 3276 10102809 Jennifer Manhattan
## 3277 10103520 Graham Manhattan
## 3278 1308525 Otilia Manhattan
## 3279 5278115 Marc Brooklyn
## 3280 1500550 Shira Brooklyn
## 3281 120623 David Bronx
## 3282 2301618 Monica Manhattan
## 3283 10123248 Sylvana Brooklyn
## 3284 10124193 Courtney Manhattan
## 3285 6655162 Carlos Brooklyn
## 3286 10129919 Jorge Brooklyn
## 3287 1321170 Dave Manhattan
## 3288 10134825 Kara Manhattan
## 3289 3899946 Anna Manhattan
## 3290 10150931 Pierre Manhattan
## 3291 10153235 Tammie Manhattan
## 3292 10153970 Lindsay Manhattan
## 3293 9975193 Julianna & Lawrence Brooklyn
## 3294 2052364 Melissa Brooklyn
## 3295 579495 Susi Brooklyn
## 3296 3388950 Amaya Brooklyn
## 3297 10176907 Maria Brooklyn
## 3298 10178252 Tino Manhattan
## 3299 1225787 Andres & Mapa Brooklyn
## 3300 10179999 Joseph Manhattan
## 3301 10180449 Isabel Brooklyn
## 3302 3020145 Eva Manhattan
## 3303 1556814 Tammy Manhattan
## 3304 151654 Brad Manhattan
## 3305 1351409 Katie Brooklyn
## 3306 10200352 Marie Manhattan
## 3307 6547579 Josh Manhattan
## 3308 9878261 Sam Manhattan
## 3309 8551260 Hannah Brooklyn
## 3310 7503643 Vida Brooklyn
## 3311 1472225 Rachel Manhattan
## 3312 10071119 Nora Manhattan
## 3313 8219931 Jason Manhattan
## 3314 9522524 Nancy Brooklyn
## 3315 10217559 Mary Elizabeth Brooklyn
## 3316 18174 Katya Manhattan
## 3317 6638763 Terry & Kristen Queens
## 3318 10225447 Giovani Brooklyn
## 3319 4139790 Harry Brooklyn
## 3320 10226006 Ester Brooklyn
## 3321 1521508 Jose Manhattan
## 3322 2777672 Kalae Manhattan
## 3323 5586949 S & G Manhattan
## 3324 10238618 Zeynep Manhattan
## 3325 10239152 Joyce Brooklyn
## 3326 10241822 Jessica Brooklyn
## 3327 1525582 Christina Brooklyn
## 3328 6885157 Randy Brooklyn
## 3329 4113132 Jacqueline & Tyas Queens
## 3330 10251511 Jordan Manhattan
## 3331 10252755 Lauren Manhattan
## 3332 10256663 Rachel Manhattan
## 3333 1674102 Heidi Manhattan
## 3334 3185905 Patrick Manhattan
## 3335 10262420 Cesar Manhattan
## 3336 10258336 Angelo Brooklyn
## 3337 2719126 Nadia Manhattan
## 3338 10280728 Uri Manhattan
## 3339 374305 Pedro Manhattan
## 3340 10294443 Shari Brooklyn
## 3341 10294707 Amanda Brooklyn
## 3342 3767367 Regina Manhattan
## 3343 10263251 Marietta Brooklyn
## 3344 10304755 Michael Brooklyn
## 3345 6716330 Chris Manhattan
## 3346 10317189 Edouard Manhattan
## 3347 4467316 Barbara Brooklyn
## 3348 10335193 Whitney Brooklyn
## 3349 8481125 Thomas Manhattan
## 3350 9539641 Dianne Bronx
## 3351 10346273 Yolanda Brooklyn
## 3352 1859395 Beto Brooklyn
## 3353 4803115 Daniel Manhattan
## 3354 7683195 Brenton Manhattan
## 3355 2933058 Anne Manhattan
## 3356 10352213 Nicole Manhattan
## 3357 1364042 Jake Manhattan
## 3358 275744 Xander Manhattan
## 3359 10355206 Rosa Queens
## 3360 1364042 Jake Manhattan
## 3361 10363037 Molly Manhattan
## 3362 10364678 Dany Manhattan
## 3363 10365281 Jennifer Brooklyn
## 3364 7127362 Lydia Brooklyn
## 3365 8013034 Kenny And Christine Brooklyn
## 3366 10373126 Sirous Manhattan
## 3367 2496464 Monica Brooklyn
## 3368 10383481 Bradley Brooklyn
## 3369 10384087 Todd Manhattan
## 3370 10387304 Michael Manhattan
## 3371 10390993 Danny Manhattan
## 3372 10392717 Rick Manhattan
## 3373 7580038 Jack Andrew Manhattan
## 3374 8214568 Allison Manhattan
## 3375 4419367 Paul Brooklyn
## 3376 195168 Raees Manhattan
## 3377 10398270 Andrew And Katie Manhattan
## 3378 323517 Deda Manhattan
## 3379 10362054 Mary Queens
## 3380 212572 Joyce Manhattan
## 3381 5772472 Anthony Brooklyn
## 3382 10411521 Matt Manhattan
## 3383 10417106 Helene & Michael Brooklyn
## 3384 4363412 Yonathan Manhattan
## 3385 10243387 Mirlet Queens
## 3386 10417911 Nisian Manhattan
## 3387 10243387 Mirlet Queens
## 3388 10419406 Scott Manhattan
## 3389 9852787 Brooklyn Manhattan
## 3390 10162529 Jay Queens
## 3391 10384906 Susan Brooklyn
## 3392 25100 Susana Manhattan
## 3393 10437461 Igor Manhattan
## 3394 667627 Marvin Manhattan
## 3395 7846216 Rafael Manhattan
## 3396 10384906 Susan Brooklyn
## 3397 10211848 Ben Brooklyn
## 3398 1415489 Angelita Manhattan
## 3399 4191006 Nick Manhattan
## 3400 10456845 Taylor Queens
## 3401 7028387 Todd Manhattan
## 3402 10468616 Sara Brooklyn
## 3403 3707465 Sim Brooklyn
## 3404 6447895 Stella Brooklyn
## 3405 1499286 Andrey Manhattan
## 3406 10478532 Erin Manhattan
## 3407 620218 Sarah Brooklyn
## 3408 3886532 Tom & Lily Brooklyn
## 3409 4119331 Ryan Manhattan
## 3410 320284 Olabimpe Brooklyn
## 3411 4274857 Helena Manhattan
## 3412 10490291 Lauren Brooklyn
## 3413 3126588 Laszlo Brooklyn
## 3414 1442412 Meredith Manhattan
## 3415 763439 Joel Queens
## 3416 9446761 Paul Brooklyn
## 3417 10406601 Amaryllis Manhattan
## 3418 4836650 Kris Manhattan
## 3419 4684532 Noel And Patricia Brooklyn
## 3420 4965107 Nichola Brooklyn
## 3421 800720 Seb Manhattan
## 3422 10525320 Candace Manhattan
## 3423 10526058 Ashley & Nate Manhattan
## 3424 10526877 Steven Manhattan
## 3425 10527465 Gigi Brooklyn
## 3426 10528287 Mike Brooklyn
## 3427 10528287 Mike Brooklyn
## 3428 1584064 Adrienne Manhattan
## 3429 10534508 Amanda Manhattan
## 3430 10535116 Connie Manhattan
## 3431 6145679 Omar Manhattan
## 3432 10535719 Mike Manhattan
## 3433 10535464 Steve Manhattan
## 3434 10545845 Evan Manhattan
## 3435 9563358 Chun Manhattan
## 3436 10547610 Raj Manhattan
## 3437 10550207 Brooke Manhattan
## 3438 4601412 Mia Brooklyn
## 3439 10552208 Julia Manhattan
## 3440 6313448 Lexy Bronx
## 3441 9864136 Anthony Manhattan
## 3442 7455886 Emily Queens
## 3443 617671 Jason Brooklyn
## 3444 9757249 Kenny Queens
## 3445 5164854 Lilia Manhattan
## 3446 10573163 Diana Manhattan
## 3447 10575680 David Manhattan
## 3448 10577541 Kat Queens
## 3449 10581418 Frank Brooklyn
## 3450 10581580 Carolyn Brooklyn
## 3451 347642 Jullien Brooklyn
## 3452 10585956 Yigal Manhattan
## 3453 10590038 Rory Brooklyn
## 3454 10590692 Wade Manhattan
## 3455 3608781 Katja Brooklyn
## 3456 3011547 Wendy Brooklyn
## 3457 1939680 Silvia Brooklyn
## 3458 1394669 Lala Manhattan
## 3459 1468317 Jessie Brooklyn
## 3460 1468247 Kris Manhattan
## 3461 248739 Jeremy Brooklyn
## 3462 10607256 Lisa Manhattan
## 3463 7503643 Vida Brooklyn
## 3464 10607636 Brandon Brooklyn
## 3465 8109174 Katie And Matt Brooklyn
## 3466 5089 Subhana Brooklyn
## 3467 10610482 Robyn Manhattan
## 3468 10621196 Kate Manhattan
## 3469 7624316 Rebecca Brooklyn
## 3470 3389163 Nadine Brooklyn
## 3471 4030621 Rob Brooklyn
## 3472 10630723 Nancy Brooklyn
## 3473 542611 Robyn Queens
## 3474 2707940 Adrien Manhattan
## 3475 318435 Rose Brooklyn
## 3476 1657228 Aktina Manhattan
## 3477 9947836 Jenny Bronx
## 3478 10638597 Reid Brooklyn
## 3479 10638711 Corey Brooklyn
## 3480 4690301 Eric Brooklyn
## 3481 10643341 Rt Manhattan
## 3482 14751 Chris Brooklyn
## 3483 10643695 Sam Brooklyn
## 3484 2657134 Luna Manhattan
## 3485 10650502 Jeni Manhattan
## 3486 10653693 Christina Manhattan
## 3487 1763458 Patrick Manhattan
## 3488 10656683 Lorna Brooklyn
## 3489 10657268 Boryana Queens
## 3490 10658486 Owen Manhattan
## 3491 234918 Mariya Brooklyn
## 3492 10661536 Edgar Brooklyn
## 3493 8452639 C S Brooklyn
## 3494 8956323 Jayar Brooklyn
## 3495 1104548 Kimberly Brooklyn
## 3496 10666587 Kevin Manhattan
## 3497 10661984 Joseph Manhattan
## 3498 10672341 Emily Brooklyn
## 3499 2529788 Cagil Brooklyn
## 3500 10677584 Angelina Brooklyn
## 3501 10662294 Daria Manhattan
## 3502 10099888 Enrique Brooklyn
## 3503 7245581 Michael Manhattan
## 3504 9791461 Brian Brooklyn
## 3505 6471461 Robert Queens
## 3506 10642609 Laura Manhattan
## 3507 10692401 Jp Queens
## 3508 10694601 Gill Manhattan
## 3509 1461630 Ro Manhattan
## 3510 4970579 Sasha Brooklyn
## 3511 2462590 Jenny And Mark Brooklyn
## 3512 10710522 Jessica Manhattan
## 3513 10545523 Adar Manhattan
## 3514 9829662 Victoria Manhattan
## 3515 10717291 Adam Manhattan
## 3516 7096230 Richard And Mollie Brooklyn
## 3517 10720001 Phoebe Brooklyn
## 3518 5976214 Angela Brooklyn
## 3519 2977901 Andrea Brooklyn
## 3520 4265753 Dai Manhattan
## 3521 10721586 Dana Manhattan
## 3522 10725397 Andrea Manhattan
## 3523 6757150 Olena Manhattan
## 3524 10643810 Alex Queens
## 3525 10732706 Joe Manhattan
## 3526 10575680 David Manhattan
## 3527 1318137 Adriano Brooklyn
## 3528 10736013 Javier Manhattan
## 3529 1534243 Seth Manhattan
## 3530 10346860 Shlom And Lyndz Manhattan
## 3531 9265204 Gianni Brooklyn
## 3532 7503643 Vida Brooklyn
## 3533 1318137 Adriano Brooklyn
## 3534 7503643 Vida Brooklyn
## 3535 4185342 Itay Manhattan
## 3536 8013034 Kenny And Christine Brooklyn
## 3537 2770596 Emilio Brooklyn
## 3538 2151325 Jay And Liz Manhattan
## 3539 1834769 Debbie Queens
## 3540 8337801 De Brooklyn
## 3541 10764579 Kevin Manhattan
## 3542 10784618 Miguel Brooklyn
## 3543 10768668 Shervin Brooklyn
## 3544 10775192 Joshua Brooklyn
## 3545 10777592 Lorna Manhattan
## 3546 1998676 Mal Brooklyn
## 3547 514261 Vanessa Brooklyn
## 3548 10787148 Sarah Brooklyn
## 3549 10788865 Jochy Manhattan
## 3550 2715062 Stephen Manhattan
## 3551 5243832 Andrew Brooklyn
## 3552 7579627 Maria Manhattan
## 3553 10806025 Christina Manhattan
## 3554 4967515 Cody Manhattan
## 3555 6854214 Nick Manhattan
## 3556 10577784 Julian Queens
## 3557 10828833 Stephen Manhattan
## 3558 269710 Alfredo Manhattan
## 3559 10384906 Susan Brooklyn
## 3560 10846328 Luis Brooklyn
## 3561 7503643 Vida Brooklyn
## 3562 7503643 Vida Brooklyn
## 3563 10852093 Mark Manhattan
## 3564 8384058 Hb Manhattan
## 3565 923915 Matthew Manhattan
## 3566 10859032 Garth Brooklyn
## 3567 407078 Mary Brooklyn
## 3568 3695778 Zach Brooklyn
## 3569 2533833 Tico Brooklyn
## 3570 7978448 Seth Manhattan
## 3571 10859726 Don Luis Queens
## 3572 2119276 Host Manhattan
## 3573 2382974 Chris Manhattan
## 3574 8624212 Leon Brooklyn
## 3575 7793849 Dain Manhattan
## 3576 4074918 Julie Manhattan
## 3577 6599585 Mike Queens
## 3578 6001762 Ajang Brooklyn
## 3579 10906528 Chris Manhattan
## 3580 1193933 Yoruba Brooklyn
## 3581 10909829 Richelle And Pela Brooklyn
## 3582 68428 Tye And Etienne Manhattan
## 3583 10928857 Ashley Manhattan
## 3584 10929586 Chad Manhattan
## 3585 10929872 Carlyn Manhattan
## 3586 1580799 Jenn Manhattan
## 3587 8280182 Alejandro Manhattan
## 3588 10932521 Kenneth Manhattan
## 3589 6166889 Shelly Brooklyn
## 3590 10945216 Rebecca Brooklyn
## 3591 1698391 Pat Manhattan
## 3592 10949644 Lydia Manhattan
## 3593 2879920 Alberto Manhattan
## 3594 9130465 Roberta (And Chris) Brooklyn
## 3595 7363831 Garrett Manhattan
## 3596 10454853 Margy Manhattan
## 3597 10972334 Rob Brooklyn
## 3598 10974237 Abby Manhattan
## 3599 5579700 Steve Manhattan
## 3600 9268805 David Queens
## 3601 6542088 Inbar Manhattan
## 3602 10263977 A Manhattan
## 3603 10981050 Rhonda Brooklyn
## 3604 2838861 Ryan Brooklyn
## 3605 4630562 Edward Brooklyn
## 3606 10992588 Joni Brooklyn
## 3607 9430366 Sharon And Ronn Brooklyn
## 3608 10998158 Laura Queens
## 3609 10995590 Cat Brooklyn
## 3610 305395 Ritza Manhattan
## 3611 11010011 Adrien Brooklyn
## 3612 11012889 Judy Manhattan
## 3613 11012377 Edward Brooklyn
## 3614 11021180 Sheila Manhattan
## 3615 6326737 Benjamin Brooklyn
## 3616 11039974 Poppi Manhattan
## 3617 1470471 Kerstin Brooklyn
## 3618 2090668 Ellen Manhattan
## 3619 10533538 Sean Manhattan
## 3620 11051885 Gregory Manhattan
## 3621 9949214 Logan Manhattan
## 3622 11066377 Brett Brooklyn
## 3623 8258307 James Manhattan
## 3624 11070320 Tracy Manhattan
## 3625 11073109 Maya Brooklyn
## 3626 11063639 Weilong Brooklyn
## 3627 11079245 Florian / Anna Queens
## 3628 10096792 Alex Manhattan
## 3629 909577 Jaclyn Brooklyn
## 3630 11103721 Michelle Brooklyn
## 3631 5716241 Aditya Brooklyn
## 3632 824689 Phyllis Manhattan
## 3633 377361 Zed Manhattan
## 3634 5414067 Adrianne Manhattan
## 3635 3579337 Nina Manhattan
## 3636 6910298 Anna Manhattan
## 3637 11147328 Ankur Manhattan
## 3638 10636508 Reed Manhattan
## 3639 11126880 Jeffrey Manhattan
## 3640 11155956 Lauren Manhattan
## 3641 11157871 Anthony Brooklyn
## 3642 11163727 Marcus Brooklyn
## 3643 11165856 Jonathan Manhattan
## 3644 11167829 Dana (& Justin) Manhattan
## 3645 11176329 Jan Manhattan
## 3646 6959160 Craig Manhattan
## 3647 11183488 Ashley Manhattan
## 3648 11136429 Yanina Manhattan
## 3649 1587234 Marie Manhattan
## 3650 11189139 Mete Brooklyn
## 3651 11189753 Sj Brooklyn
## 3652 11192207 Ish & Asa Manhattan
## 3653 396599 Thomas Brooklyn
## 3654 8706294 J Manhattan
## 3655 11208418 Maureen And Josiah Manhattan
## 3656 7181895 Yumi Manhattan
## 3657 4173868 Maryam Manhattan
## 3658 5081260 Eden Manhattan
## 3659 3579337 Nina Manhattan
## 3660 11231506 Reid Brooklyn
## 3661 305591 James Brooklyn
## 3662 5392354 Aviad Manhattan
## 3663 1500487 David Brooklyn
## 3664 1451417 H Brooklyn
## 3665 5149997 Christine Manhattan
## 3666 4906960 Laura Manhattan
## 3667 11265131 Jay Manhattan
## 3668 9538322 Beth Manhattan
## 3669 8811222 Claudia Manhattan
## 3670 8112314 Mena Manhattan
## 3671 11273539 Julia Manhattan
## 3672 11276922 Everett Manhattan
## 3673 6447944 Richard Manhattan
## 3674 4618666 Tim Brooklyn
## 3675 11279303 Patrick Brooklyn
## 3676 551055 Alicia Manhattan
## 3677 7644839 Rebecca And Vilem Brooklyn
## 3678 4237535 Alex&Ivy Manhattan
## 3679 5278391 Ashley Brooklyn
## 3680 7503643 Vida Brooklyn
## 3681 11297009 Lex Manhattan
## 3682 11257635 T Manhattan
## 3683 11306420 Darius Brooklyn
## 3684 1544485 Laura And Jake Manhattan
## 3685 11312158 Andrew Manhattan
## 3686 11313668 Adam Brooklyn
## 3687 10485182 Jennifer Manhattan
## 3688 11330638 Lindsay Manhattan
## 3689 12190039 Lyndell Manhattan
## 3690 11339193 Rachel Manhattan
## 3691 11340369 Rachel Manhattan
## 3692 1446751 Allison Manhattan
## 3693 11111521 Victoria Manhattan
## 3694 11342593 Emery Bronx
## 3695 4028092 Assaf Brooklyn
## 3696 11353904 Todd Manhattan
## 3697 11366961 Gabriel Manhattan
## 3698 11371978 Joe Manhattan
## 3699 11375556 Carly & Sebastian Brooklyn
## 3700 11386273 Karen Manhattan
## 3701 11385753 Greg Manhattan
## 3702 8312378 Ever Manhattan
## 3703 112879 Caroline Brooklyn
## 3704 11395220 Anna Manhattan
## 3705 1726966 Katarina Brooklyn
## 3706 10931680 John Manhattan
## 3707 11418277 Vanessa Queens
## 3708 1589909 Alosha Queens
## 3709 11313778 Jian Manhattan
## 3710 5078978 Victoria Manhattan
## 3711 2261678 Ayesha Manhattan
## 3712 249753 Penny Brooklyn
## 3713 11430355 Monika Brooklyn
## 3714 11430909 Tennessee Manhattan
## 3715 11440643 Ari Manhattan
## 3716 4660888 Stephanie Manhattan
## 3717 11457317 Philippe Manhattan
## 3718 11457662 Indie Brooklyn
## 3719 11457662 Indie Brooklyn
## 3720 9644281 Michelle Manhattan
## 3721 1483320 Omri Manhattan
## 3722 11460768 Brian Manhattan
## 3723 11461795 Helen Manhattan
## 3724 11461854 Lauren Manhattan
## 3725 11443640 James Manhattan
## 3726 11333699 Clifton Brooklyn
## 3727 2024924 Lisa Brooklyn
## 3728 11483903 Avril Manhattan
## 3729 4358264 Sole Brooklyn
## 3730 470870 Ruben Manhattan
## 3731 2675913 Sam Manhattan
## 3732 11492501 Victoria Manhattan
## 3733 11490872 Nick Manhattan
## 3734 11494661 Maayan Manhattan
## 3735 4265028 Jordan Manhattan
## 3736 11505536 Alex Manhattan
## 3737 11508018 Gretchen Manhattan
## 3738 11473727 Sal Manhattan
## 3739 10036249 Jenna Manhattan
## 3740 11512483 Danielle Manhattan
## 3741 11512676 Danni Brooklyn
## 3742 11512908 Augustus Manhattan
## 3743 6060700 Kevin Brooklyn
## 3744 3672774 Alison Brooklyn
## 3745 9420221 Kourosh Manhattan
## 3746 7503643 Vida Brooklyn
## 3747 7748022 Jeff Manhattan
## 3748 8312378 Ever Manhattan
## 3749 11297009 Lex Manhattan
## 3750 735701 Charles Manhattan
## 3751 11523254 Nicholas Manhattan
## 3752 11526701 Victor Brooklyn
## 3753 3312524 Athena Manhattan
## 3754 11538076 Alex Manhattan
## 3755 11539672 Thomas Manhattan
## 3756 11540028 Nick Manhattan
## 3757 10683147 Keefe Brooklyn
## 3758 11503864 Omar Queens
## 3759 11542120 Brett Manhattan
## 3760 2027013 Adam Manhattan
## 3761 9389685 Bobbi Manhattan
## 3762 10416706 Tzvi Brooklyn
## 3763 11552512 Sandra Queens
## 3764 11163915 Marie-Hélène & Rick Manhattan
## 3765 11557572 William Manhattan
## 3766 9989761 Gaudhi Manhattan
## 3767 11570627 Paul & Marçal Brooklyn
## 3768 7503643 Vida Brooklyn
## 3769 7503643 Vida Brooklyn
## 3770 11576459 Skip Brooklyn
## 3771 7503643 Vida Brooklyn
## 3772 3619427 Ian Queens
## 3773 1531465 Jim Manhattan
## 3774 8568891 Sufia Queens
## 3775 11598359 Jonathan Brooklyn
## 3776 11599506 Lara Manhattan
## 3777 11600691 Evonne Brooklyn
## 3778 11603608 Dylan Manhattan
## 3779 5175067 Anthony Manhattan
## 3780 8105524 Rhett Manhattan
## 3781 11607949 Clarina Brooklyn
## 3782 8730513 Corey Manhattan
## 3783 11610321 Patrick Manhattan
## 3784 11611239 Sally Manhattan
## 3785 9451697 Shaunna Manhattan
## 3786 11623750 Mike Manhattan
## 3787 11630571 Ariel Manhattan
## 3788 7009234 Sarah Brooklyn
## 3789 1427243 Jordana Manhattan
## 3790 7580102 (Email hidden by Airbnb) Manhattan
## 3791 2044302 Christopher Brooklyn
## 3792 10532769 Vanessa Brooklyn
## 3793 11661229 Michele Manhattan
## 3794 11668649 Andrew Manhattan
## 3795 11669123 Kaley Manhattan
## 3796 11671329 Connor Brooklyn
## 3797 11674823 Bruce Manhattan
## 3798 11675390 Peter Brooklyn
## 3799 11675431 Rob Manhattan
## 3800 11691665 Lauren Manhattan
## 3801 9968385 William Brooklyn
## 3802 11673798 Shell Manhattan
## 3803 11057719 Chloe Brooklyn
## 3804 11706506 Andrea Queens
## 3805 11708656 Justin Manhattan
## 3806 11710466 Lindsey Manhattan
## 3807 440396 Mary Manhattan
## 3808 11721588 Richard Manhattan
## 3809 6509406 Judy Manhattan
## 3810 2321783 Donna Bronx
## 3811 10974421 Jj Manhattan
## 3812 10674441 Annie Brooklyn
## 3813 11732741 Bryce Manhattan
## 3814 11733037 Clayton Brooklyn
## 3815 7636125 Kristen Manhattan
## 3816 10149317 Lana Queens
## 3817 11741773 Samson Manhattan
## 3818 11747009 Troy Manhattan
## 3819 11753837 Alexandra Brooklyn
## 3820 11762397 Nathan Manhattan
## 3821 11764444 Cory Manhattan
## 3822 7714918 Carrie-Anne Brooklyn
## 3823 11774081 Diana Brooklyn
## 3824 11778114 Jake Brooklyn
## 3825 11790431 Laura Queens
## 3826 11793333 Jamie Manhattan
## 3827 11254580 Bryan Manhattan
## 3828 11796166 Shaina Manhattan
## 3829 5019619 Chris Manhattan
## 3830 10973455 Amy Manhattan
## 3831 7317241 Tim Manhattan
## 3832 4148248 Guillermo Brooklyn
## 3833 3689829 Lee Brooklyn
## 3834 11774035 Alina Manhattan
## 3835 11246260 Claudia Brooklyn
## 3836 7503643 Vida Brooklyn
## 3837 305132 Alix Brooklyn
## 3838 6165258 Gita Manhattan
## 3839 11845040 Alison Manhattan
## 3840 11847492 Steve Manhattan
## 3841 1639277 Eyal Manhattan
## 3842 11861244 Ishaan Manhattan
## 3843 3976338 Vanessa Queens
## 3844 5714455 Lila & Paul Brooklyn
## 3845 11876825 Christopher Brooklyn
## 3846 9754117 David Manhattan
## 3847 11894522 Georgia Manhattan
## 3848 3627104 Doria Manhattan
## 3849 4467316 Barbara Brooklyn
## 3850 11910223 Michele Brooklyn
## 3851 8873749 Fany Manhattan
## 3852 11915544 Helena Brooklyn
## 3853 11917311 Rebeca Brooklyn
## 3854 11280333 Brenda Manhattan
## 3855 11947308 Véronique Manhattan
## 3856 11976770 Ezra Brooklyn
## 3857 11981562 Maureen Brooklyn
## 3858 6771815 El Brooklyn
## 3859 10792303 Nora Brooklyn
## 3860 10672341 Emily Brooklyn
## 3861 11983859 Lauren Queens
## 3862 11998560 Ruby Brooklyn
## 3863 11722972 Karen Queens
## 3864 1334808 Kristina Brooklyn
## 3865 6970733 Laurence Manhattan
## 3866 3793026 Andreas Manhattan
## 3867 5535265 Krystal Brooklyn
## 3868 12059266 Audrey Brooklyn
## 3869 10283677 Emma Brooklyn
## 3870 2768182 Devi Brooklyn
## 3871 7881738 Michele Brooklyn
## 3872 12092726 Alice Manhattan
## 3873 12098551 Ashley Manhattan
## 3874 7708014 John Manhattan
## 3875 10721506 Lee Queens
## 3876 2588427 Rip Manhattan
## 3877 12120448 Rob Queens
## 3878 12123995 Michal Manhattan
## 3879 12129877 Andre Brooklyn
## 3880 12140561 Danielle Manhattan
## 3881 12145783 Enid Manhattan
## 3882 12157737 Dushyant Brooklyn
## 3883 1226950 Marysia Brooklyn
## 3884 12126255 Elska Brooklyn
## 3885 10674441 Annie Brooklyn
## 3886 179296 Rich Brooklyn
## 3887 12186466 Edmund Brooklyn
## 3888 8452639 C S Brooklyn
## 3889 132244 Tal Manhattan
## 3890 10510181 Août Bronx
## 3891 173997 Beth Brooklyn
## 3892 12223914 Lakis Manhattan
## 3893 12245536 Rong Manhattan
## 3894 3992566 Clay Brooklyn
## 3895 1177497 Jessica Brooklyn
## 3896 2297544 Julian Brooklyn
## 3897 12290324 Lara Brooklyn
## 3898 12294891 Lillian Manhattan
## 3899 5905011 Annette Manhattan
## 3900 11982812 Georgia Brooklyn
## 3901 12320096 Luanna Manhattan
## 3902 1522929 Anoop Manhattan
## 3903 4183222 James Brooklyn
## 3904 8904815 Sandra&Orlando Brooklyn
## 3905 12346795 Ron Brooklyn
## 3906 1191562 Ross Manhattan
## 3907 12348871 Hetty Brooklyn
## 3908 1473507 Moema Brooklyn
## 3909 26640 Sally Manhattan
## 3910 571080 Michael Brooklyn
## 3911 12366541 Pj Manhattan
## 3912 12384418 Daniel Manhattan
## 3913 10434821 H. Erin Brooklyn
## 3914 2841152 Matthew Brooklyn
## 3915 12394900 Alice Manhattan
## 3916 12399023 Ankush Manhattan
## 3917 9915185 Sarah Manhattan
## 3918 8351424 Anthony Manhattan
## 3919 4973668 Gloria Brooklyn
## 3920 2335233 Amber Manhattan
## 3921 3053987 Darwin And Nicole Brooklyn
## 3922 377287 Marianne Brooklyn
## 3923 2120259 Sue Brooklyn
## 3924 12446529 Migdalia Bronx
## 3925 7503643 Vida Brooklyn
## 3926 26640 Sally Manhattan
## 3927 1301613 Janet Brooklyn
## 3928 2102889 Arthur Manhattan
## 3929 3948178 Redi Manhattan
## 3930 9872597 Sofia Brooklyn
## 3931 3578009 Walther Queens
## 3932 2768182 Devi Brooklyn
## 3933 3540714 Simonie Manhattan
## 3934 5165749 Ben Manhattan
## 3935 12386614 Carlos Manhattan
## 3936 12515888 Kaet Brooklyn
## 3937 12515888 Kaet Brooklyn
## 3938 6717488 Francesca Manhattan
## 3939 12533228 Rose Manhattan
## 3940 10193030 Kaori Manhattan
## 3941 64442 Reka Manhattan
## 3942 10232293 Georgia Brooklyn
## 3943 6369087 Andrea Brooklyn
## 3944 5696628 Christine Brooklyn
## 3945 6718172 Sharon Brooklyn
## 3946 9991763 Andrew Manhattan
## 3947 4335080 Tiffany Manhattan
## 3948 7503643 Vida Brooklyn
## 3949 4549281 Ido Queens
## 3950 12575621 Daniel Manhattan
## 3951 12577771 Victor Brooklyn
## 3952 12579916 Andrea Brooklyn
## 3953 4137875 Rachel Brooklyn
## 3954 12586492 Sausan Manhattan
## 3955 12587147 Joao Queens
## 3956 1262622 Mike And Lucy Brooklyn
## 3957 6530413 Chris Manhattan
## 3958 12058474 Garth Brooklyn
## 3959 12608261 Jimmie Manhattan
## 3960 1000014 Amy Queens
## 3961 8778997 Lee Brooklyn
## 3962 7503643 Vida Brooklyn
## 3963 101924 Seth Brooklyn
## 3964 12616627 Nico Manhattan
## 3965 7801481 Inez Queens
## 3966 12620213 Lara Manhattan
## 3967 786862 Cristina Brooklyn
## 3968 4665764 Ziporah Manhattan
## 3969 12637520 Laura Brooklyn
## 3970 12366541 Pj Manhattan
## 3971 12641005 Omar Brooklyn
## 3972 7503643 Vida Brooklyn
## 3973 10431172 En Brooklyn
## 3974 12649246 Leah Manhattan
## 3975 8826175 Grover Manhattan
## 3976 9089934 Siddharth Queens
## 3977 12516367 Peter Brooklyn
## 3978 2935265 Andrew Manhattan
## 3979 7974574 Vanita Manhattan
## 3980 12718658 Ray Queens
## 3981 6194434 Chiara Manhattan
## 3982 12358955 Priya Brooklyn
## 3983 12358955 Priya Brooklyn
## 3984 12732806 Jerome Manhattan
## 3985 12732385 Asaf Manhattan
## 3986 3562864 Daniel Manhattan
## 3987 2498724 Josh Brooklyn
## 3988 9543143 Angel Brooklyn
## 3989 4543994 Dusan Brooklyn
## 3990 598167 Michael Manhattan
## 3991 12760201 Megan Manhattan
## 3992 12773532 Idan Manhattan
## 3993 4142684 Suzette Brooklyn
## 3994 12796040 Robyn Manhattan
## 3995 179679 Ginger Brooklyn
## 3996 3030031 Elizabeth Brooklyn
## 3997 12806055 Daniel Brooklyn
## 3998 12834599 Ms. Edith Brooklyn
## 3999 8552126 Claudius Queens
## 4000 3905432 Rose Manhattan
## 4001 3034421 Heather Brooklyn
## 4002 12622830 Ana Manhattan
## 4003 12851900 Dominique Queens
## 4004 12864943 Tegan Queens
## 4005 12872352 Jada Manhattan
## 4006 12872812 Scott Manhattan
## 4007 12878653 Nicholas P Queens
## 4008 10440985 Jimmy Queens
## 4009 9229424 John Manhattan
## 4010 10264377 Anthony Manhattan
## 4011 9372538 Fabiola Manhattan
## 4012 808206 Brenna Brooklyn
## 4013 12899510 Solange Queens
## 4014 10149453 Girish Manhattan
## 4015 6723969 Mari Brooklyn
## 4016 12921356 Elizabeth Brooklyn
## 4017 8288419 Jason Brooklyn
## 4018 918543 Simona Manhattan
## 4019 8288419 Jason Brooklyn
## 4020 8288419 Jason Brooklyn
## 4021 8288419 Jason Brooklyn
## 4022 1091832 Julie Brooklyn
## 4023 7520792 Jenna Manhattan
## 4024 7365834 Alex Manhattan
## 4025 11825464 SirRoan Brooklyn
## 4026 1210541 Jodie Brooklyn
## 4027 3237558 Andre Manhattan
## 4028 4517005 Ryan Manhattan
## 4029 12967572 Laura Manhattan
## 4030 4636483 Christina Brooklyn
## 4031 12972780 Ismail Queens
## 4032 9426702 KayCee Manhattan
## 4033 9743617 Patricia Manhattan
## 4034 4358702 Bram Manhattan
## 4035 7821383 Gary Brooklyn
## 4036 4096786 Nicolas Bronx
## 4037 4291837 Wilson Manhattan
## 4038 13063145 Vinneth Brooklyn
## 4039 13068601 Martin Manhattan
## 4040 7132792 Milenna Manhattan
## 4041 9586465 Lang Manhattan
## 4042 13094498 Doug Manhattan
## 4043 4912237 Jonathan Manhattan
## 4044 2766490 Daisy Brooklyn
## 4045 6754169 Ellie Brooklyn
## 4046 8785876 Alessandro Manhattan
## 4047 1163315 Craig Manhattan
## 4048 13125674 Yago Brooklyn
## 4049 13067214 Dominick Brooklyn
## 4050 13132515 Carlos Brooklyn
## 4051 13156191 Serenity Manhattan
## 4052 13156754 Nan Brooklyn
## 4053 10302140 Zandy Brooklyn
## 4054 153675 Matteo Manhattan
## 4055 1676600 Angie Manhattan
## 4056 13165300 Sean Brooklyn
## 4057 5140244 Jennifer Manhattan
## 4058 9090698 G Manhattan
## 4059 7451917 Fe Brooklyn
## 4060 2920976 Shay Manhattan
## 4061 13207016 Jessica Queens
## 4062 413336 Christian Manhattan
## 4063 13225047 Lila Brooklyn
## 4064 4612212 Guillaume Brooklyn
## 4065 6970030 Wendy Manhattan
## 4066 2132620 Eva Brooklyn
## 4067 12508991 Melinda Brooklyn
## 4068 727585 Frances Brooklyn
## 4069 13272957 Johnny Brooklyn
## 4070 13304615 Andrew Brooklyn
## 4071 13314076 Abraham Manhattan
## 4072 13314736 Justin Brooklyn
## 4073 13322259 Alex Brooklyn
## 4074 8798158 Stephen And Hector Brooklyn
## 4075 13345581 Chaydha Brooklyn
## 4076 13347139 Nicole Manhattan
## 4077 13347167 AFI Apartments Manhattan
## 4078 13347167 AFI Apartments Manhattan
## 4079 13322169 Sonja Manhattan
## 4080 13373889 Aaron Staten Island
## 4081 10331953 Omar Manhattan
## 4082 2681844 Hedia Brooklyn
## 4083 10894722 Naftali Manhattan
## 4084 6222620 Joe Manhattan
## 4085 524730 Oz Brooklyn
## 4086 13408910 Tmc Bronx
## 4087 13347167 AFI Apartments Manhattan
## 4088 13347167 AFI Apartments Manhattan
## 4089 13347167 AFI Apartments Manhattan
## 4090 4691967 Mark Brooklyn
## 4091 13451102 Ronnie Manhattan
## 4092 3881345 Conall Brooklyn
## 4093 2818232 Jas Brooklyn
## 4094 4045120 Guyen Brooklyn
## 4095 12360441 Angel Bronx
## 4096 6243156 Yoni Manhattan
## 4097 10384906 Susan Brooklyn
## 4098 13486605 Rachael And Christopher Brooklyn
## 4099 9482259 Radu Manhattan
## 4100 1821771 Daria Brooklyn
## 4101 13496782 Nicole Brooklyn
## 4102 13497325 Octavio Brooklyn
## 4103 7250500 Heather Brooklyn
## 4104 13499885 Arash Manhattan
## 4105 13347167 AFI Apartments Manhattan
## 4106 4274857 Helena Manhattan
## 4107 13501034 Tanya Manhattan
## 4108 13295673 João Manhattan
## 4109 8481739 David Brooklyn
## 4110 13503154 Clayon Elizabeth Brooklyn
## 4111 2687435 Abby & Kurt Queens
## 4112 9898029 Anthony Brooklyn
## 4113 1570348 Clare Brooklyn
## 4114 72014 Lulú Brooklyn
## 4115 4282318 Al Brooklyn
## 4116 4294396 Angélique Manhattan
## 4117 2653156 Lenny Manhattan
## 4118 7706697 Barbara Brooklyn
## 4119 320285 Fabrizio Manhattan
## 4120 13574223 Jimmy Queens
## 4121 9951993 Jason Manhattan
## 4122 13360423 Izumi Manhattan
## 4123 157795 Madeline Brooklyn
## 4124 6991947 Peter Manhattan
## 4125 13596820 Michael Brooklyn
## 4126 9051298 Lydiah Manhattan
## 4127 13604945 Fabian Manhattan
## 4128 5907325 Isabel Manhattan
## 4129 13611255 Lamee Brooklyn
## 4130 2294061 Kurtis Manhattan
## 4131 3842134 Dawn Brooklyn
## 4132 2319102 Alexandra Manhattan
## 4133 13617251 Michael Brooklyn
## 4134 13617520 Howard T. Brooklyn
## 4135 13621509 Renald Queens
## 4136 5352610 Mira Brooklyn
## 4137 13632182 Natalie Manhattan
## 4138 12461367 Brittany Brooklyn
## 4139 197156 Sofia Brooklyn
## 4140 13664226 Rebecca Manhattan
## 4141 13664245 Denise Bronx
## 4142 13670148 Michelle Brooklyn
## 4143 706191 Rachel Brooklyn
## 4144 8212880 Micky Manhattan
## 4145 3929012 Kevin Manhattan
## 4146 8083568 Favio Queens
## 4147 10846328 Luis Brooklyn
## 4148 1091875 Jovana Queens
## 4149 11837926 Anthony Manhattan
## 4150 1273385 Cecile Queens
## 4151 13736818 John Manhattan
## 4152 4334757 Vashti Brooklyn
## 4153 1602568 Thomas Brooklyn
## 4154 10621468 Mikaela Brooklyn
## 4155 13749425 Juan Manhattan
## 4156 13384586 Julie Brooklyn
## 4157 5283121 Sarah Brooklyn
## 4158 10264372 Tyrell Manhattan
## 4159 3016371 Daniel Manhattan
## 4160 480923 Diane Queens
## 4161 13788158 Amir Brooklyn
## 4162 13773574 Cecile Manhattan
## 4163 13795689 Juliette Manhattan
## 4164 13795760 Eliza Love Manhattan
## 4165 3038687 Karen Manhattan
## 4166 10851687 Arya Queens
## 4167 13811875 Grace Queens
## 4168 13792543 Gregory Manhattan
## 4169 13792543 Gregory Manhattan
## 4170 13829968 Jonathan Manhattan
## 4171 13830544 Renee Brooklyn
## 4172 159726 Tina Manhattan
## 4173 8373183 Arash Manhattan
## 4174 7503643 Vida Brooklyn
## 4175 4341057 Nicole Brooklyn
## 4176 13871213 Monica Brooklyn
## 4177 9854463 Ed Manhattan
## 4178 13888072 Will Manhattan
## 4179 7503643 Vida Brooklyn
## 4180 3964453 Naz Brooklyn
## 4181 13503154 Clayon Elizabeth Brooklyn
## 4182 13903103 Patrizza Brooklyn
## 4183 6586128 Martine Bronx
## 4184 13917921 Robert Brooklyn
## 4185 13262455 Bridget Manhattan
## 4186 13931194 Daniel Brooklyn
## 4187 3280997 Scott Manhattan
## 4188 8489537 Tony Brooklyn
## 4189 13934498 Herby Brooklyn
## 4190 13933851 Yagil Brooklyn
## 4191 9652075 Devin Brooklyn
## 4192 13937830 Jenniffer Manhattan
## 4193 136352 Fotis Queens
## 4194 4992804 Zachary Manhattan
## 4195 12511213 Vijay Manhattan
## 4196 13974214 Jonathan Brooklyn
## 4197 13968910 Mike Manhattan
## 4198 3758251 Sarah Brooklyn
## 4199 14011859 Ann Brooklyn
## 4200 3130728 Sarah Manhattan
## 4201 12082653 Taylor Queens
## 4202 12449641 Heather Brooklyn
## 4203 14019268 Seth Brooklyn
## 4204 3417714 Cong Manhattan
## 4205 14020493 Eva Manhattan
## 4206 8511789 Marie-Christine Manhattan
## 4207 12958562 Olivia Brooklyn
## 4208 2739598 Sandy Manhattan
## 4209 1172202 Funda Queens
## 4210 6055938 Al Manhattan
## 4211 14058714 Craig Manhattan
## 4212 11757212 Jasmine Brooklyn
## 4213 2153455 Rachel Brooklyn
## 4214 14081811 Linda Brooklyn
## 4215 933263 Michelle Manhattan
## 4216 13347167 AFI Apartments Manhattan
## 4217 3447539 Nick Manhattan
## 4218 12750945 Luis Manhattan
## 4219 14103991 Ruth Queens
## 4220 14120733 Lisa Brooklyn
## 4221 2155360 Evan Brooklyn
## 4222 14133008 Lisa Manhattan
## 4223 2208993 Chris Manhattan
## 4224 14163479 Yulia Brooklyn
## 4225 2333018 Max Brooklyn
## 4226 14174901 Anasha Manhattan
## 4227 14176488 Ada Azra Bronx
## 4228 3883648 Jenn Brooklyn
## 4229 1253739 Ariana Brooklyn
## 4230 1866728 Jeani Manhattan
## 4231 9421493 Frances Manhattan
## 4232 14197781 Bruce Brooklyn
## 4233 4417252 Amina Manhattan
## 4234 309329 Eilon Brooklyn
## 4235 621971 Ethan Brooklyn
## 4236 3187645 Ken Manhattan
## 4237 10870477 Henriette Manhattan
## 4238 8925763 Joy Manhattan
## 4239 14262697 Eric Brooklyn
## 4240 14269155 Stephen Brooklyn
## 4241 7069480 Marc Manhattan
## 4242 4731948 Kiki Manhattan
## 4243 2637408 Chris Brooklyn
## 4244 9031632 Martina Manhattan
## 4245 14285627 Norman Brooklyn
## 4246 14289427 Francesca Manhattan
## 4247 9509125 Leo Manhattan
## 4248 14290739 Stanton Manhattan
## 4249 14295613 Skylar Staten Island
## 4250 2343136 Tyson Brooklyn
## 4251 251842 Virginie Brooklyn
## 4252 14317804 Samantha Manhattan
## 4253 14325632 Sil Brooklyn
## 4254 14103991 Ruth Queens
## 4255 8497788 Cyn Manhattan
## 4256 3181226 Emily Queens
## 4257 11330223 Ger Brooklyn
## 4258 14343538 Cash Brooklyn
## 4259 8741682 Ines Manhattan
## 4260 2918667 Neisha Queens
## 4261 5225737 Brandon Manhattan
## 4262 11725608 Juan Manhattan
## 4263 14361027 Matthew Manhattan
## 4264 14362628 Michael Brooklyn
## 4265 6364557 Fernando Queens
## 4266 14399467 Caroline Bronx
## 4267 2739024 Jerome Brooklyn
## 4268 13347167 AFI Apartments Manhattan
## 4269 7850260 Raymond Brooklyn
## 4270 2333304 Roger Manhattan
## 4271 5986790 Gen Manhattan
## 4272 14435551 Denise Manhattan
## 4273 14441566 Paula Manhattan
## 4274 7503643 Vida Brooklyn
## 4275 6885157 Randy Brooklyn
## 4276 11363157 Delia Queens
## 4277 12795393 Bee Manhattan
## 4278 3289988 Emilie Manhattan
## 4279 7915183 Alfonso Manhattan
## 4280 3237504 Aspen Manhattan
## 4281 2074433 Anna Manhattan
## 4282 10987233 Anastasia Queens
## 4283 14518375 Chriis Manhattan
## 4284 8867917 Steven Brooklyn
## 4285 7503643 Vida Brooklyn
## 4286 3864482 Erin Manhattan
## 4287 3056690 Gilberto Manhattan
## 4288 13649613 Rossy, Carmen And Juan Bronx
## 4289 14582705 S Brooklyn
## 4290 6194657 Sylvia Brooklyn
## 4291 14601436 Andrea Manhattan
## 4292 6064963 Sarah Brooklyn
## 4293 14565422 Janelle Manhattan
## 4294 13759034 Patrick Brooklyn
## 4295 14611970 Chad Manhattan
## 4296 3716641 Ofer Manhattan
## 4297 14586041 Louie Brooklyn
## 4298 13347167 AFI Apartments Manhattan
## 4299 14636480 Ilda Queens
## 4300 3716641 Ofer Manhattan
## 4301 5229579 Ryan Brooklyn
## 4302 14641776 Ting Brooklyn
## 4303 3543836 Glenn Brooklyn
## 4304 14655604 Caitlin Queens
## 4305 13601944 Mark Brooklyn
## 4306 14204809 Alwin Queens
## 4307 1668930 Julio Manhattan
## 4308 14680576 Cristina Brooklyn
## 4309 13347167 AFI Apartments Manhattan
## 4310 164781 Sine Brooklyn
## 4311 1177497 Jessica Brooklyn
## 4312 9638204 Teresa Manhattan
## 4313 5317082 Kells Brooklyn
## 4314 6122006 Allison Manhattan
## 4315 14720647 Christian Queens
## 4316 1240820 Triny Brooklyn
## 4317 14723162 Hugh Queens
## 4318 6964353 Patricia Manhattan
## 4319 5117939 Shanti Brooklyn
## 4320 4119786 Shimrit Brooklyn
## 4321 14554858 Sara Manhattan
## 4322 14759766 Jerry Brooklyn
## 4323 14763882 Paulo Manhattan
## 4324 14103991 Ruth Queens
## 4325 2269517 Rob&Elle Staten Island
## 4326 14724243 Inga Manhattan
## 4327 14291250 Alexandra Brooklyn
## 4328 5454390 Tracy & Matt Manhattan
## 4329 3339701 Angelo Queens
## 4330 9840901 Anna Brooklyn
## 4331 7853680 Nesrine Manhattan
## 4332 7321253 Kathryn Brooklyn
## 4333 4123046 Julie Brooklyn
## 4334 6789600 Derek Brooklyn
## 4335 195783 Bradley Brooklyn
## 4336 14019963 Kieran Brooklyn
## 4337 10593364 Jeffrey Brooklyn
## 4338 14861483 Brian Manhattan
## 4339 14864202 Raymond Manhattan
## 4340 263500 Claire Brooklyn
## 4341 1646926 Dave Brooklyn
## 4342 14902860 Velma Brooklyn
## 4343 4619132 Merrill Manhattan
## 4344 6683775 Sophia Brooklyn
## 4345 14906518 Michael Queens
## 4346 14908606 Bianca Brooklyn
## 4347 4282318 Al Brooklyn
## 4348 7229763 Robert And Zafir Brooklyn
## 4349 1447684 Rosa Brooklyn
## 4350 14932802 Winona Manhattan
## 4351 14933223 Maria Manhattan
## 4352 9576121 Jon Brooklyn
## 4353 14935685 Uday Manhattan
## 4354 8520430 Jess Brooklyn
## 4355 17930 Seryn Brooklyn
## 4356 3136117 Meg Brooklyn
## 4357 846521 James Manhattan
## 4358 14970988 Satya Manhattan
## 4359 9503874 Gillian Brooklyn
## 4360 14975379 Lily Brooklyn
## 4361 11774630 Jane Manhattan
## 4362 7171571 Nicole Brooklyn
## 4363 10395636 Joseph Manhattan
## 4364 14990573 Ray Manhattan
## 4365 13908017 Kaytlin Manhattan
## 4366 686494 Molly Brooklyn
## 4367 15009272 Yolanda Queens
## 4368 15010803 Carlo Manhattan
## 4369 15002363 Michael Manhattan
## 4370 4963379 Tamoi Brooklyn
## 4371 1495881 Zuben Manhattan
## 4372 15009272 Yolanda Queens
## 4373 160337 Sanjna Manhattan
## 4374 15029400 Astoria Queens
## 4375 3250450 Petya Queens
## 4376 15049157 Marjorie Manhattan
## 4377 1177497 Jessica Brooklyn
## 4378 1177497 Jessica Brooklyn
## 4379 15081041 Jaclyn Manhattan
## 4380 15089968 Anna Queens
## 4381 15099550 Bah. Manhattan
## 4382 15100977 Nataliya Manhattan
## 4383 15102869 Ellie Manhattan
## 4384 37879 Jeffrey Brooklyn
## 4385 3963645 Quyen Manhattan
## 4386 15141764 Kevin Manhattan
## 4387 14380456 Claude Manhattan
## 4388 1177497 Jessica Brooklyn
## 4389 1012583 Mariano Brooklyn
## 4390 7691518 Brent Manhattan
## 4391 15153596 Allie Manhattan
## 4392 2363988 Mads Brooklyn
## 4393 15082988 Karen Brooklyn
## 4394 588899 Lily Brooklyn
## 4395 15178288 Michael Manhattan
## 4396 3259274 Hannah Brooklyn
## 4397 15182886 Frederico Manhattan
## 4398 15185319 Alesandra Manhattan
## 4399 5418972 Nico Manhattan
## 4400 13347167 AFI Apartments Manhattan
## 4401 15198359 Grace Brigitte Manhattan
## 4402 11018460 Patricia Brooklyn
## 4403 15179425 Chris Brooklyn
## 4404 1720071 Karen And Ben Brooklyn
## 4405 13347167 AFI Apartments Manhattan
## 4406 2604437 Lane Manhattan
## 4407 15265839 Danie Brooklyn
## 4408 15266695 Sergey & Kate Brooklyn
## 4409 1971142 David Brooklyn
## 4410 13347167 AFI Apartments Manhattan
## 4411 7503643 Vida Brooklyn
## 4412 15271110 Josandra Brooklyn
## 4413 5986790 Gen Manhattan
## 4414 5684941 Jade Brooklyn
## 4415 5422083 Aivars Manhattan
## 4416 11998560 Ruby Brooklyn
## 4417 1475015 Mike Manhattan
## 4418 15310896 Christy Brooklyn
## 4419 15303460 Emma Brooklyn
## 4420 7629544 Alison Manhattan
## 4421 15318802 Jessie Brooklyn
## 4422 15341073 Camille Brooklyn
## 4423 15341568 Selma Manhattan
## 4424 550520 Kendall Brooklyn
## 4425 5663597 Amir Brooklyn
## 4426 13208084 Sheki Brooklyn
## 4427 1504257 Neomi Brooklyn
## 4428 15355526 Nattie Manhattan
## 4429 15356877 Rachel Brooklyn
## 4430 15134522 Enma Brooklyn
## 4431 15358791 Arnan & Zahira Brooklyn
## 4432 10364678 Dany Manhattan
## 4433 67180 Nicholas Manhattan
## 4434 8656650 Genny Manhattan
## 4435 7249524 Kellie Brooklyn
## 4436 10842335 Brian Brooklyn
## 4437 1475015 Mike Manhattan
## 4438 7245581 Michael Manhattan
## 4439 15445130 Sarah Manhattan
## 4440 339586 Oswaldo Staten Island
## 4441 14892152 Laura Brooklyn
## 4442 7503643 Vida Brooklyn
## 4443 8159536 Genae Bronx
## 4444 15476280 Jacques Brooklyn
## 4445 15478980 William Brooklyn
## 4446 1475015 Mike Manhattan
## 4447 6041 Miranda Queens
## 4448 4401973 Juan Felipe Brooklyn
## 4449 15430260 Michelle Manhattan
## 4450 1475015 Mike Manhattan
## 4451 15492140 Harper Manhattan
## 4452 1451702 Paco Manhattan
## 4453 10432817 Deedles Brooklyn
## 4454 1475015 Mike Manhattan
## 4455 1475015 Mike Manhattan
## 4456 2534076 Helen Brooklyn
## 4457 15542183 Brian Manhattan
## 4458 15543098 Carlos Manhattan
## 4459 15559190 Kerry Manhattan
## 4460 5986790 Gen Manhattan
## 4461 15569250 SoSo Manhattan
## 4462 7245581 Michael Manhattan
## 4463 7101220 David Manhattan
## 4464 15579200 Marc Brooklyn
## 4465 15581137 Maya Manhattan
## 4466 6653718 Kara Ayn Queens
## 4467 7503643 Vida Brooklyn
## 4468 5317082 Kells Brooklyn
## 4469 3541594 Jennifer Manhattan
## 4470 3241305 Emilia Brooklyn
## 4471 2539525 Eran Manhattan
## 4472 15613241 Courtney Manhattan
## 4473 13347167 AFI Apartments Manhattan
## 4474 13347167 AFI Apartments Manhattan
## 4475 2448006 El Haj Manhattan
## 4476 3053987 Darwin And Nicole Brooklyn
## 4477 15639713 Agustina Brooklyn
## 4478 1370474 Edmi Brooklyn
## 4479 13969061 Lisa Manhattan
## 4480 740656 Einar Manhattan
## 4481 15674437 Benjamin Brooklyn
## 4482 15681707 Joycelyn Brooklyn
## 4483 15688520 Alex Manhattan
## 4484 15638528 Lindsey Manhattan
## 4485 5691429 Patrick Manhattan
## 4486 15636404 Anneta Brooklyn
## 4487 15718962 Samira Manhattan
## 4488 4936720 Mac Brooklyn
## 4489 1475015 Mike Manhattan
## 4490 2308616 Rebecca Brooklyn
## 4491 7136700 Michelle Brooklyn
## 4492 7107807 Crystal & Clee Brooklyn
## 4493 15733420 Marcus Brooklyn
## 4494 15740819 Heather Brooklyn
## 4495 13125226 Kristen Brooklyn
## 4496 15743167 Cristina Brooklyn
## 4497 10930874 Tyler Queens
## 4498 9716281 Sarah Manhattan
## 4499 1906150 Susana Manhattan
## 4500 15767190 Mark Brooklyn
## 4501 9229108 Etan Brooklyn
## 4502 15778597 Ayo Manhattan
## 4503 15783686 Matt Manhattan
## 4504 9306192 Su-En Manhattan
## 4505 8822946 Mariam Brooklyn
## 4506 2885147 Marty Queens
## 4507 3765042 Grant Manhattan
## 4508 15815237 Mack Queens
## 4509 2641574 Meredith Manhattan
## 4510 15688520 Alex Manhattan
## 4511 14911623 Nicholas Manhattan
## 4512 5352357 Bernice Brooklyn
## 4513 3008690 Alex Queens
## 4514 15853337 Julia Manhattan
## 4515 8703 Michael Manhattan
## 4516 3663033 Jehan Brooklyn
## 4517 1475015 Mike Manhattan
## 4518 15859636 Kyle Manhattan
## 4519 4025280 Alon & Adi Manhattan
## 4520 2442348 Zoe Brooklyn
## 4521 15890334 Joscelyn Brooklyn
## 4522 7853594 Hans Manhattan
## 4523 2213809 Dean Brooklyn
## 4524 15904341 Monica Brooklyn
## 4525 2472358 Craig Brooklyn
## 4526 15908653 Gil Brooklyn
## 4527 15414317 Madeleine Manhattan
## 4528 15667008 Manhattan Manhattan
## 4529 3814039 Natalie Brooklyn
## 4530 2885704 Victor Brooklyn
## 4531 7580038 Jack Andrew Manhattan
## 4532 469098 Sara Brooklyn
## 4533 15518085 Isabelle Manhattan
## 4534 3323488 Tenisha & Marty Brooklyn
## 4535 15960720 Taylor Brooklyn
## 4536 7784911 Marc Brooklyn
## 4537 10835806 Rick Brooklyn
## 4538 3323488 Tenisha & Marty Brooklyn
## 4539 7361593 Samantha Manhattan
## 4540 13530123 Lynn Staten Island
## 4541 16003147 Victoria And Juliana Brooklyn
## 4542 4299288 Quinn Brooklyn
## 4543 9105586 Marc Brooklyn
## 4544 4119683 Zachary Manhattan
## 4545 14736455 Anna Brooklyn
## 4546 6754169 Ellie Brooklyn
## 4547 2338762 Masha Brooklyn
## 4548 15998942 David Queens
## 4549 2323652 Mark Brooklyn
## 4550 8488933 Teresa Brooklyn
## 4551 16067583 Natasha Brooklyn
## 4552 16069958 Nicholas Manhattan
## 4553 2416036 Hadas Brooklyn
## 4554 6183406 Justin Manhattan
## 4555 847230 Benjamin Brooklyn
## 4556 7351 Tanda Brooklyn
## 4557 16109802 Daphna Brooklyn
## 4558 6396561 Justin Brooklyn
## 4559 16092773 Erin & Becky Brooklyn
## 4560 16100913 S Anthony Manhattan
## 4561 14325632 Sil Brooklyn
## 4562 16107699 Mary Manhattan
## 4563 16108191 David Brooklyn
## 4564 16108973 Vlado & Sandra Queens
## 4565 16114134 Jeff Manhattan
## 4566 14902860 Velma Brooklyn
## 4567 8158276 Matthew Manhattan
## 4568 16142344 Jeffrey Manhattan
## 4569 16151285 Carol Bronx
## 4570 16152979 Ryan Brooklyn
## 4571 11249746 Stanley Brooklyn
## 4572 241593 Thomas Brooklyn
## 4573 9122601 Yan Bronx
## 4574 3772684 Glasshouse Brooklyn
## 4575 738918 Birgitta Brooklyn
## 4576 16209547 Gina Manhattan
## 4577 9523245 Albane Manhattan
## 4578 627678 Nathan Queens
## 4579 16217769 Karlan Manhattan
## 4580 1369577 Thomas & Gaby Brooklyn
## 4581 727114 Anthony Brooklyn
## 4582 13789963 Larry Manhattan
## 4583 9209820 Althea Brooklyn
## 4584 1832751 Chris Brooklyn
## 4585 16245414 Shae Brooklyn
## 4586 16245979 Karima Manhattan
## 4587 1874429 Lisa Brooklyn
## 4588 16254543 Jennifer Brooklyn
## 4589 1465030 Gautam Brooklyn
## 4590 8658146 Michelle Manhattan
## 4591 16257970 Jackie Manhattan
## 4592 16258619 Folake Brooklyn
## 4593 16264357 Tal Manhattan
## 4594 16266298 Caroline Manhattan
## 4595 11837926 Anthony Manhattan
## 4596 1014484 Petek Manhattan
## 4597 16279457 Michael Brooklyn
## 4598 7691955 Ingrid Manhattan
## 4599 6150328 Heather Manhattan
## 4600 496465 Daniel Brooklyn
## 4601 16288210 Cheryl Manhattan
## 4602 16288928 Julie Brooklyn
## 4603 9502879 Maria Manhattan
## 4604 16251030 Ford Manhattan
## 4605 3321910 Carl Manhattan
## 4606 103640 Samantha And Scott Brooklyn
## 4607 3481965 Pierre-Hubert Manhattan
## 4608 16304160 Laurie Brooklyn
## 4609 16305093 Betsy Brooklyn
## 4610 16306708 Melissa Brooklyn
## 4611 16307118 Dov Brooklyn
## 4612 15646137 Joe Manhattan
## 4613 16319729 Tim Manhattan
## 4614 16245414 Shae Brooklyn
## 4615 16329859 Caroline Brooklyn
## 4616 2941712 Claudia Brooklyn
## 4617 4427756 May Brooklyn
## 4618 15384170 Jonathan Brooklyn
## 4619 14337132 Norva Manhattan
## 4620 5164854 Lilia Manhattan
## 4621 16376419 Brooke Brooklyn
## 4622 11494077 Melissa Brooklyn
## 4623 4928687 Yuval Manhattan
## 4624 16379550 Elizabeth Brooklyn
## 4625 16383743 Yuma Brooklyn
## 4626 2656209 Aurelie Brooklyn
## 4627 16385595 Ava Brooklyn
## 4628 16395150 Patti Brooklyn
## 4629 16396714 Andrea Manhattan
## 4630 16399575 Kristiana Manhattan
## 4631 4422817 Malik Manhattan
## 4632 1866033 Chen Manhattan
## 4633 13561307 Katy Brooklyn
## 4634 16425715 Soon Manhattan
## 4635 1588656 Rebekah Brooklyn
## 4636 16430857 Aseel Manhattan
## 4637 6032480 Anna Brooklyn
## 4638 16433878 Laurence Brooklyn
## 4639 1705205 Ebonie Brooklyn
## 4640 14369316 Jon Manhattan
## 4641 16437254 Benjamin Brooklyn
## 4642 16442583 Ali Manhattan
## 4643 8349905 Lorna Manhattan
## 4644 8243983 Sara Brooklyn
## 4645 6726808 Eve Manhattan
## 4646 417100 Tara Manhattan
## 4647 169843 Goran Brooklyn
## 4648 16477306 Jeff Manhattan
## 4649 10297692 Dee Brooklyn
## 4650 124345 Ramon Manhattan
## 4651 16499705 John Brooklyn
## 4652 16500110 Irena Manhattan
## 4653 5668550 Kevin Manhattan
## 4654 8830645 Kevin Brooklyn
## 4655 16512899 Jeremy Manhattan
## 4656 9944244 Linnea Brooklyn
## 4657 5508109 Rivani Manhattan
## 4658 16514175 Karen Queens
## 4659 16516195 Tania Brooklyn
## 4660 16525423 Matt Manhattan
## 4661 1746811 Jon Brooklyn
## 4662 16534981 Suzy Brooklyn
## 4663 16536815 Daniel Manhattan
## 4664 13208084 Sheki Brooklyn
## 4665 14289427 Francesca Manhattan
## 4666 2009585 Cecile Brooklyn
## 4667 327673 Stefano Brooklyn
## 4668 16545323 Katie Manhattan
## 4669 4233003 Roy Brooklyn
## 4670 1568951 Laura Manhattan
## 4671 4080758 Arun Brooklyn
## 4672 16566615 Celeste Manhattan
## 4673 7105630 Christine Manhattan
## 4674 16572580 Travis Brooklyn
## 4675 16572957 Hope Manhattan
## 4676 16069319 Julie Brooklyn
## 4677 109738 Michelle Manhattan
## 4678 16509287 Taller Manhattan
## 4679 418289 Andrey Manhattan
## 4680 1174963 Aaron Brooklyn
## 4681 16591767 Danny Brooklyn
## 4682 16593547 Mary & Josh Brooklyn
## 4683 16596651 Gautam Manhattan
## 4684 15055035 Michelle Queens
## 4685 16608415 Smidty Brooklyn
## 4686 3716641 Ofer Manhattan
## 4687 4042938 Alexandra Brooklyn
## 4688 5231131 Danielle Brooklyn
## 4689 16622685 Amanda Manhattan
## 4690 16628226 Rachel Queens
## 4691 15740819 Heather Brooklyn
## 4692 16580725 Faith Brooklyn
## 4693 16641600 Theresa Brooklyn
## 4694 2051075 Linda Brooklyn
## 4695 56920 Linda Manhattan
## 4696 16678513 Robert Manhattan
## 4697 16680791 Adam Manhattan
## 4698 16680861 Carrie Manhattan
## 4699 2082345 Rabah Queens
## 4700 4279827 Louisa Brooklyn
## 4701 12385603 Anne Brooklyn
## 4702 16683574 Delphine And Michael Manhattan
## 4703 12465884 Natasha Manhattan
## 4704 7889819 Tara Manhattan
## 4705 341981 Amber Brooklyn
## 4706 16713474 Simone Brooklyn
## 4707 430188 Pam Brooklyn
## 4708 11674837 Christopher Queens
## 4709 13611255 Lamee Brooklyn
## 4710 14214034 Desmar Bronx
## 4711 3691863 Jessica Brooklyn
## 4712 12774721 Morgan Manhattan
## 4713 175694 Mia Brooklyn
## 4714 16751902 Asher Manhattan
## 4715 9306976 Aaron Brooklyn
## 4716 1498951 Yolanda Brooklyn
## 4717 7640229 Lihi Brooklyn
## 4718 1442768 Carolina Brooklyn
## 4719 18566028 Kitt Brooklyn
## 4720 16777963 Dave Manhattan
## 4721 16782573 Dorina Queens
## 4722 11827364 Cris Queens
## 4723 16789954 Fate Manhattan
## 4724 16790098 Shawn & Christine Queens
## 4725 3053578 Natalie Manhattan
## 4726 16805656 Fernando Manhattan
## 4727 3840659 Alicia And Jamie Brooklyn
## 4728 16826094 Jeremy Manhattan
## 4729 16834792 Louis Brooklyn
## 4730 16838156 Mark Manhattan
## 4731 3655542 Alexis Brooklyn
## 4732 15689833 Whitney Manhattan
## 4733 7245581 Michael Manhattan
## 4734 2119276 Host Manhattan
## 4735 1558222 Nikki Brooklyn
## 4736 16872923 Spencer Manhattan
## 4737 16874459 Nicole Manhattan
## 4738 10457196 Richard Brooklyn
## 4739 16879147 Alejandro Manhattan
## 4740 1290508 Robert Manhattan
## 4741 16883036 Karen Brooklyn
## 4742 19402 Susanna Brooklyn
## 4743 12556197 Rez Brooklyn
## 4744 455017 Lauren Manhattan
## 4745 317692 Tara Brooklyn
## 4746 16916853 Olga Brooklyn
## 4747 8882019 Katherine Brooklyn
## 4748 16926937 Johanna Brooklyn
## 4749 4319841 Maria Brooklyn
## 4750 16942970 Caleb Manhattan
## 4751 16947051 Cayla Manhattan
## 4752 16948705 Berhani Manhattan
## 4753 7503643 Vida Brooklyn
## 4754 16962600 Debris Manhattan
## 4755 16968100 Sandra Brooklyn
## 4756 16968641 Tanya Manhattan
## 4757 16989237 Aleksandra Brooklyn
## 4758 4044499 Alexander Brooklyn
## 4759 5783747 Kathrine Brooklyn
## 4760 16106756 Michael Brooklyn
## 4761 17000648 Michael Queens
## 4762 17001535 Paul Manhattan
## 4763 1910452 Thuy Brooklyn
## 4764 17003476 Catherine Brooklyn
## 4765 17015217 Peter Brooklyn
## 4766 1283991 Loubna Manhattan
## 4767 17018997 Paul Brooklyn
## 4768 7549 Ben Manhattan
## 4769 2377104 Hannah Brooklyn
## 4770 17032761 Julia Manhattan
## 4771 2042864 Anna Brooklyn
## 4772 17036912 Julia Brooklyn
## 4773 3463555 David Manhattan
## 4774 6273146 Jon Brooklyn
## 4775 13535952 Nastassia Manhattan
## 4776 9317567 Suzy Queens
## 4777 908514 David Manhattan
## 4778 6146050 Victoria Manhattan
## 4779 4185064 Paulina Brooklyn
## 4780 17087544 Hannah Brooklyn
## 4781 2468616 Arika Brooklyn
## 4782 15310997 Mor Manhattan
## 4783 3435970 Reno Brooklyn
## 4784 3542562 Jana Manhattan
## 4785 8597778 Nadine Manhattan
## 4786 2443535 Avraham Brooklyn
## 4787 10657357 Ivan Manhattan
## 4788 12057272 Nicky Brooklyn
## 4789 17125263 Mario Manhattan
## 4790 10657357 Ivan Manhattan
## 4791 10657357 Ivan Manhattan
## 4792 10657357 Ivan Manhattan
## 4793 17130866 Thomas Manhattan
## 4794 17132728 Nick Manhattan
## 4795 39304 Andrea Brooklyn
## 4796 16286162 Pat Bronx
## 4797 178784 Michael Brooklyn
## 4798 17151343 Ayodele Brooklyn
## 4799 17153037 Janice Brooklyn
## 4800 5851210 Amy Manhattan
## 4801 17156530 Lily Manhattan
## 4802 17157906 Brendon Manhattan
## 4803 17161465 Judette Manhattan
## 4804 17169449 Kip Brooklyn
## 4805 17170345 Carl Brooklyn
## 4806 17171419 Mordechai Manhattan
## 4807 17190169 Craig Manhattan
## 4808 17196239 Sabine Brooklyn
## 4809 4903508 Dee Manhattan
## 4810 1649108 Allie Brooklyn
## 4811 2574806 Liz Brooklyn
## 4812 1964249 Stina Manhattan
## 4813 17206543 Griffin Queens
## 4814 3640784 Marta Brooklyn
## 4815 5722995 Blake Brooklyn
## 4816 17218916 Randall Brooklyn
## 4817 4345336 Steve Queens
## 4818 17241205 Abigail Brooklyn
## 4819 16345041 Han Manhattan
## 4820 17243187 Lana Manhattan
## 4821 12483101 FLora Queens
## 4822 17256091 Timothy Manhattan
## 4823 17247205 Laura Brooklyn
## 4824 7398990 Laura Brooklyn
## 4825 10665748 Gabi Manhattan
## 4826 17272284 Geoffrey Manhattan
## 4827 16286162 Pat Bronx
## 4828 17289499 Laura Brooklyn
## 4829 17292935 Anne Bronx
## 4830 4274268 Konstantino Brooklyn
## 4831 17299359 Lionel Brooklyn
## 4832 11081628 Arjun Manhattan
## 4833 16914467 Sharon Manhattan
## 4834 13148521 Kira Manhattan
## 4835 17315514 Ana Brooklyn
## 4836 17318747 Jay Manhattan
## 4837 5634395 Sarah Manhattan
## 4838 7356757 Casey Manhattan
## 4839 17339848 Elizabeth Manhattan
## 4840 6045456 Daniel Brooklyn
## 4841 17198795 Julie Manhattan
## 4842 8697041 Gaspard Brooklyn
## 4843 17347275 Jean-Cosme Brooklyn
## 4844 17051201 G Brooklyn
## 4845 13637847 Sasha Brooklyn
## 4846 14509754 Wally Brooklyn
## 4847 634096 Naomi Brooklyn
## 4848 17389236 Emilie Manhattan
## 4849 17130308 David Jerome Brooklyn
## 4850 666862 Amy Brooklyn
## 4851 2533026 Omar Brooklyn
## 4852 178551 Jena Manhattan
## 4853 9604972 Alexia Manhattan
## 4854 17430718 Natasha Manhattan
## 4855 5220670 Jonathon Manhattan
## 4856 17159358 Richard Manhattan
## 4857 10698270 Evgenia Manhattan
## 4858 1384256 Jenny Manhattan
## 4859 17456385 Kelsey Manhattan
## 4860 17457445 Kermit & Azadeh Queens
## 4861 12220316 Mary Brooklyn
## 4862 4060346 Lisa, Nancy & John Staten Island
## 4863 1535732 Pablo Manhattan
## 4864 17475146 C Manhattan
## 4865 17477908 Mat Manhattan
## 4866 17477908 Mat Manhattan
## 4867 17051201 G Brooklyn
## 4868 1499484 Tom Brooklyn
## 4869 17479416 Tae Manhattan
## 4870 16718001 Nicholas Brooklyn
## 4871 12949460 Asa Brooklyn
## 4872 5810978 Ala Brooklyn
## 4873 4374828 Michelle Brooklyn
## 4874 6230230 John Manhattan
## 4875 17299359 Lionel Brooklyn
## 4876 3395227 Brian Manhattan
## 4877 17527788 Taylor Brooklyn
## 4878 4320908 David Manhattan
## 4879 6707119 Parnell Manhattan
## 4880 3841446 Tony Brooklyn
## 4881 2553182 Esty Manhattan
## 4882 17208512 Aleksandar Brooklyn
## 4883 17568735 William Manhattan
## 4884 3250450 Petya Queens
## 4885 3250450 Petya Queens
## 4886 15697051 Assiati Brooklyn
## 4887 17266994 Tom Manhattan
## 4888 17592620 Paul Brooklyn
## 4889 721833 Joshua Manhattan
## 4890 17601262 Enrico Brooklyn
## 4891 16677326 Alex And Zeena Manhattan
## 4892 17604079 Meghan Manhattan
## 4893 17618198 Edvaldo Queens
## 4894 6145540 Eddie Manhattan
## 4895 10034987 Izzy Manhattan
## 4896 380728 Ligeia Brooklyn
## 4897 11308483 Nathan Manhattan
## 4898 17658078 Richard Bronx
## 4899 17671787 Nicole Brooklyn
## 4900 130216 Maria Brooklyn
## 4901 17681072 Brooks Manhattan
## 4902 17347754 Benjamin Brooklyn
## 4903 17682043 Adi Brooklyn
## 4904 17682312 Arnold Manhattan
## 4905 17616305 Gabrielle Manhattan
## 4906 617127 Amy Brooklyn
## 4907 4904811 Megan Brooklyn
## 4908 6153186 Michael Brooklyn
## 4909 4847926 Shelley Brooklyn
## 4910 1475015 Mike Manhattan
## 4911 17711637 Carrie Brooklyn
## 4912 5407403 Marissa Manhattan
## 4913 17719747 Rhonda Brooklyn
## 4914 17730490 Ashley Manhattan
## 4915 922478 Brad Brooklyn
## 4916 17737666 Allie Manhattan
## 4917 17739111 Christopher Manhattan
## 4918 515946 Jonathan Manhattan
## 4919 10628463 Pat & Ray Queens
## 4920 4254072 Sean Manhattan
## 4921 14902860 Velma Brooklyn
## 4922 6491377 Zaineb Brooklyn
## 4923 9952523 Fabi Brooklyn
## 4924 228012 Kev Manhattan
## 4925 7665324 Edward Manhattan
## 4926 17773625 Josie Manhattan
## 4927 12291588 Maximus Brooklyn
## 4928 1457351 Michael Manhattan
## 4929 12337318 Andrew Manhattan
## 4930 17781037 Gideon & Chantal Manhattan
## 4931 254846 Brendan Brooklyn
## 4932 9510645 Rylan Brooklyn
## 4933 6828085 Ricardo Manhattan
## 4934 17791294 Taylor Manhattan
## 4935 17791467 Anthony Manhattan
## 4936 7157099 Sigi Brooklyn
## 4937 13337141 Aurea Manhattan
## 4938 506909 Nevena Manhattan
## 4939 16583238 Tommy Manhattan
## 4940 17820079 Kent Manhattan
## 4941 17820464 Allison Manhattan
## 4942 747031 Jack Brooklyn
## 4943 3912009 Brendan Manhattan
## 4944 17842194 Cathleen Brooklyn
## 4945 17845064 Ingrid Queens
## 4946 17224426 Jillian Brooklyn
## 4947 7879349 Abby Brooklyn
## 4948 7458731 Esther Brooklyn
## 4949 7250241 Irene Manhattan
## 4950 6212988 Kim Manhattan
## 4951 17866326 Rony Brooklyn
## 4952 3563304 Fanny Brooklyn
## 4953 6309019 John Brooklyn
## 4954 16974369 Robert Manhattan
## 4955 17874864 Kayvon Manhattan
## 4956 1439449 Ilona Brooklyn
## 4957 319077 Shell Brooklyn
## 4958 17885257 David Manhattan
## 4959 15735446 Thomas Brooklyn
## 4960 2879920 Alberto Manhattan
## 4961 17891677 Arianna Manhattan
## 4962 7157099 Sigi Brooklyn
## 4963 2120259 Sue Brooklyn
## 4964 6504434 Ayanna Brooklyn
## 4965 3902832 Elizabeth Brooklyn
## 4966 636319 Roger Brooklyn
## 4967 7245581 Michael Manhattan
## 4968 17906693 Earle Manhattan
## 4969 17920050 Deidre Manhattan
## 4970 17920926 Gerald Manhattan
## 4971 2401823 Erin Brooklyn
## 4972 8924899 Theresa Manhattan
## 4973 6911276 Brian & Arlette Brooklyn
## 4974 17953139 Oisin Manhattan
## 4975 298914 Fara Manhattan
## 4976 7499240 Candy Manhattan
## 4977 1673750 Valerie Brooklyn
## 4978 7438973 Telora Manhattan
## 4979 1239959 Naz Manhattan
## 4980 18007776 Tyler Brooklyn
## 4981 18008945 Francesco Manhattan
## 4982 17891224 Jan Manhattan
## 4983 18032197 Domenick Brooklyn
## 4984 18038832 Crystal & John Manhattan
## 4985 18041691 Sebastien Manhattan
## 4986 3771272 Smith O'Brien Brooklyn
## 4987 3609048 Ken Brooklyn
## 4988 18051675 Alexandra Manhattan
## 4989 18018059 Erin Brooklyn
## 4990 11495235 Leslie Brooklyn
## 4991 17943391 Michael Manhattan
## 4992 3588028 Elisa Manhattan
## 4993 14898658 Chadanut Brooklyn
## 4994 8483704 Patrick Manhattan
## 4995 6310115 Lanny Brooklyn
## 4996 5164854 Lilia Manhattan
## 4997 18105672 Eric Brooklyn
## 4998 6150064 Sonya Queens
## 4999 18115202 Robie Manhattan
## 5000 18108212 Adriana Queens
## 5001 18115545 Olivia Brooklyn
## 5002 7076239 Annie And Joan Brooklyn
## 5003 12485770 Raanan Manhattan
## 5004 4367602 Anne Manhattan
## 5005 18142696 Morgan Manhattan
## 5006 16834792 Louis Brooklyn
## 5007 18146661 Richard Brooklyn
## 5008 18147523 Carli Manhattan
## 5009 18150845 Sara Manhattan
## 5010 18151946 Dave Manhattan
## 5011 17898189 Danielle Manhattan
## 5012 146825 Masaki Manhattan
## 5013 18156556 Rachel Brooklyn
## 5014 11430190 Maria Brooklyn
## 5015 14157138 Justa Brooklyn
## 5016 16809056 Jason Queens
## 5017 17958831 Tomer Manhattan
## 5018 18170442 Giuliana Manhattan
## 5019 1921498 Pedro Pablo Manhattan
## 5020 18183144 Timothy Brooklyn
## 5021 18189519 Irma Queens
## 5022 18198406 Joseph Brooklyn
## 5023 8410380 Marshall Manhattan
## 5024 11976676 David Manhattan
## 5025 17450462 Esther Manhattan
## 5026 2033003 Darren Manhattan
## 5027 461269 Anna Brooklyn
## 5028 18212957 Eddie Queens
## 5029 4421323 Justin Manhattan
## 5030 18219988 Deanna Brooklyn
## 5031 2383619 Elma Brooklyn
## 5032 16669342 Matthew Brooklyn
## 5033 18225315 Alain Manhattan
## 5034 6643482 Andy Brooklyn
## 5035 17619450 Sean Brooklyn
## 5036 18212433 Veronique Camille Manhattan
## 5037 14273136 Allegra Brooklyn
## 5038 18254730 Valeria Brooklyn
## 5039 18212433 Veronique Camille Manhattan
## 5040 18212433 Veronique Camille Manhattan
## 5041 4666670 Jeanny Queens
## 5042 6472334 Matthew Brooklyn
## 5043 2574452 Samita Queens
## 5044 18260128 Neal Manhattan
## 5045 18260299 Ota Brooklyn
## 5046 18264329 Joaquin Brooklyn
## 5047 11674837 Christopher Queens
## 5048 13347167 AFI Apartments Manhattan
## 5049 3038687 Karen Manhattan
## 5050 12306481 Pao Queens
## 5051 18212433 Veronique Camille Manhattan
## 5052 5652395 Julio Bronx
## 5053 3562322 Lord Daniel Brooklyn
## 5054 14905237 Tina Brooklyn
## 5055 1279211 Aldo Bronx
## 5056 3552711 Louann Queens
## 5057 10262649 Andrew Brooklyn
## 5058 18287550 Grace Manhattan
## 5059 18289867 Dan Manhattan
## 5060 18297103 Beatriz Queens
## 5061 12306481 Pao Queens
## 5062 3325418 Patricia Manhattan
## 5063 740032 Dexter Brooklyn
## 5064 3096525 Kini Brooklyn
## 5065 6050632 Yana Manhattan
## 5066 7245581 Michael Manhattan
## 5067 7503643 Vida Brooklyn
## 5068 18343265 Melissa Brooklyn
## 5069 17917168 Karina Brooklyn
## 5070 3563235 Andra Manhattan
## 5071 534776 Shawna Brooklyn
## 5072 18388112 Brett Brooklyn
## 5073 16916853 Olga Brooklyn
## 5074 2052361 Katya Brooklyn
## 5075 18397763 Seun And Marie Brooklyn
## 5076 10263308 Isaiah Brooklyn
## 5077 5909599 Danica Queens
## 5078 14945045 Anna Brooklyn
## 5079 2119276 Host Manhattan
## 5080 946672 Josh Brooklyn
## 5081 17525930 Jillian Brooklyn
## 5082 2119276 Host Manhattan
## 5083 1475015 Mike Manhattan
## 5084 681225 Haya Queens
## 5085 1475015 Mike Manhattan
## 5086 7920086 Susan Manhattan
## 5087 15784 Francesco Manhattan
## 5088 18492106 Sharon Bronx
## 5089 18495460 Frank Brooklyn
## 5090 12327430 Marco Manhattan
## 5091 8182126 Maggie Brooklyn
## 5092 3344830 Caitlin Brooklyn
## 5093 18556644 Heike Manhattan
## 5094 16098958 Jeremy & Laura Manhattan
## 5095 18565670 Maia Brooklyn
## 5096 8200795 Brooke Manhattan
## 5097 14041891 Tom Manhattan
## 5098 18567895 Ryan Manhattan
## 5099 710916 Adam Brooklyn
## 5100 18570567 Gisela Brooklyn
## 5101 18272570 Qian Brooklyn
## 5102 13347167 AFI Apartments Manhattan
## 5103 6913016 Alicia Manhattan
## 5104 5872286 Tim Brooklyn
## 5105 17544112 Robert Brooklyn
## 5106 18594426 Amanda Manhattan
## 5107 16437254 Benjamin Brooklyn
## 5108 6966831 Victoria Queens
## 5109 4578923 Normandy Brooklyn
## 5110 2702080 Drew & Kristen Brooklyn
## 5111 2076525 Douglas Brooklyn
## 5112 18681479 Pamela Queens
## 5113 9553177 Joshua Manhattan
## 5114 2120259 Sue Brooklyn
## 5115 18693665 Linda Green And Norga Brooklyn
## 5116 17051201 G Brooklyn
## 5117 7474069 Carrie Manhattan
## 5118 378737 Parris Brooklyn
## 5119 18726889 Suzanne Brooklyn
## 5120 2955491 Natsuko Brooklyn
## 5121 18030682 Amanda Brooklyn
## 5122 15817252 Nicole Brooklyn
## 5123 2640773 Nick Brooklyn
## 5124 16098958 Jeremy & Laura Manhattan
## 5125 18690148 Luci Manhattan
## 5126 5771331 Alex Manhattan
## 5127 4765290 Emily Brooklyn
## 5128 2461535 Andriana Brooklyn
## 5129 11371357 Julienne Brooklyn
## 5130 2267864 Gary Manhattan
## 5131 2673332 Alexandra Brooklyn
## 5132 17696653 Arleta Brooklyn
## 5133 1010344 Ian & Sady Brooklyn
## 5134 18646528 Catherine Brooklyn
## 5135 1176165 Corey Brooklyn
## 5136 807340 Kevin Brooklyn
## 5137 18138735 Jed Manhattan
## 5138 18836774 Jime Manhattan
## 5139 18836774 Jime Manhattan
## 5140 18836774 Jime Manhattan
## 5141 5465947 Rose Brooklyn
## 5142 7644834 Dawnie Manhattan
## 5143 18866837 Barbara Brooklyn
## 5144 3146957 Alexandra Manhattan
## 5145 10972334 Rob Brooklyn
## 5146 18876264 Daniel Manhattan
## 5147 2119276 Host Manhattan
## 5148 6932160 Terry Brooklyn
## 5149 188896 Ellen Brooklyn
## 5150 10856201 Neda Manhattan
## 5151 7420906 Alix Brooklyn
## 5152 1788746 Nathalie Manhattan
## 5153 18929364 Abigail Brooklyn
## 5154 318729 Mitch Brooklyn
## 5155 15789646 Steven Queens
## 5156 3007815 Alia Queens
## 5157 9784206 Saint Manhattan
## 5158 13042411 Walt Manhattan
## 5159 18970667 Erin, Avi, Kaleb & Shiloh Brooklyn
## 5160 18393872 Natalie Brooklyn
## 5161 5573250 Jason Brooklyn
## 5162 18988423 Amanda Reil Brooklyn
## 5163 1363910 Emily Brooklyn
## 5164 19011946 John Manhattan
## 5165 4830699 Jennifer Brooklyn
## 5166 19044620 Claudiu Queens
## 5167 19044783 Jasmine Manhattan
## 5168 19046961 Amanda Brooklyn
## 5169 7503643 Vida Brooklyn
## 5170 19067223 Mohini Brooklyn
## 5171 19072805 Carly Brooklyn
## 5172 7598755 Elliot Brooklyn
## 5173 5064699 Juliana Brooklyn
## 5174 19107278 Jaime Brooklyn
## 5175 19107278 Jaime Brooklyn
## 5176 19111611 Chaim Brooklyn
## 5177 10675384 John Brooklyn
## 5178 17770287 Nina Manhattan
## 5179 3586725 Sophie Manhattan
## 5180 2523466 Samuel Manhattan
## 5181 14102923 Mark Brooklyn
## 5182 18836774 Jime Manhattan
## 5183 10577253 Nataly Manhattan
## 5184 19131844 Gemma Brooklyn
## 5185 19133023 Melissa Brooklyn
## 5186 18836774 Jime Manhattan
## 5187 9859391 Andrew Manhattan
## 5188 19143974 Meghan Staten Island
## 5189 9535767 Nayoung Queens
## 5190 2203817 Debbie Brooklyn
## 5191 15805343 Tessa Brooklyn
## 5192 522065 Liz And Melissa Manhattan
## 5193 10094431 Sofia Brooklyn
## 5194 19191737 Joshua Brooklyn
## 5195 1475015 Mike Manhattan
## 5196 15270760 Ed Brooklyn
## 5197 14961638 Elito Brooklyn
## 5198 9928037 Elliot Manhattan
## 5199 19233588 Jupira Manhattan
## 5200 17465563 Lola Manhattan
## 5201 19240279 Ms. Yvonne Manhattan
## 5202 19242857 O.D. Brooklyn
## 5203 18270150 Nancy Manhattan
## 5204 19250606 Sylvia Queens
## 5205 10491406 Donna Brooklyn
## 5206 9864136 Anthony Manhattan
## 5207 12720552 Julie Brooklyn
## 5208 19272788 Pierre Manhattan
## 5209 3022504 Michael Brooklyn
## 5210 5242693 Neysa Brooklyn
## 5211 5160726 Tony Manhattan
## 5212 5086937 Josh Manhattan
## 5213 17479416 Tae Manhattan
## 5214 16351647 Carmia And Joe Brooklyn
## 5215 3231109 Trish Manhattan
## 5216 4951037 Carolina Brooklyn
## 5217 18953786 Ehsan Queens
## 5218 3086826 Melody Bronx
## 5219 19315796 Andrew Manhattan
## 5220 19331457 Yevgeny Manhattan
## 5221 7665324 Edward Manhattan
## 5222 15765273 Schatzie Manhattan
## 5223 19356930 Ella Brooklyn
## 5224 2274845 Liz Brooklyn
## 5225 19359650 Julian Manhattan
## 5226 23193 Paris Brooklyn
## 5227 19382874 Anthony/Joanne Brooklyn
## 5228 5785240 Laurent Manhattan
## 5229 6739436 Madeline Brooklyn
## 5230 18880856 Carlton Brooklyn
## 5231 16065171 Gina Manhattan
## 5232 7196556 Eilon Manhattan
## 5233 5003239 Ali Manhattan
## 5234 3363799 Andrew Brooklyn
## 5235 3716641 Ofer Manhattan
## 5236 3716641 Ofer Manhattan
## 5237 10193030 Kaori Manhattan
## 5238 16437254 Benjamin Brooklyn
## 5239 15047361 Brooke Manhattan
## 5240 5680409 Jennifer Manhattan
## 5241 18609156 Tim Brooklyn
## 5242 17292935 Anne Bronx
## 5243 1317384 Tamara Manhattan
## 5244 2119276 Host Manhattan
## 5245 3028267 Vernon Brooklyn
## 5246 5810195 Emilie Manhattan
## 5247 7508547 Pamela Queens
## 5248 3250450 Petya Queens
## 5249 2331719 Marina Manhattan
## 5250 700913 Gage Brooklyn
## 5251 19106718 Leena Manhattan
## 5252 2538522 Emma Brooklyn
## 5253 19510462 Tracey Brooklyn
## 5254 6642777 Martin Brooklyn
## 5255 7558452 Zev Manhattan
## 5256 3245596 Scottie Brooklyn
## 5257 7453027 Marie Yves Brooklyn
## 5258 810266 Jonathan Brooklyn
## 5259 10162529 Jay Queens
## 5260 12090062 Annie Manhattan
## 5261 19533769 Chandra Bronx
## 5262 16677444 Jeevan Manhattan
## 5263 19539944 Jen Manhattan
## 5264 19550968 Silvia Manhattan
## 5265 19569660 Brian Manhattan
## 5266 19569725 Cathy Brooklyn
## 5267 7848968 Morgan Brooklyn
## 5268 265278 Atlantis & Carmen Manhattan
## 5269 19569282 Kay Queens
## 5270 1475015 Mike Manhattan
## 5271 19524858 Isa Brooklyn
## 5272 10603767 Samantha Brooklyn
## 5273 3997854 Andre Manhattan
## 5274 1529179 Gs Manhattan
## 5275 19597910 Ruth Queens
## 5276 19597910 Ruth Queens
## 5277 23633 Eugene Brooklyn
## 5278 23633 Eugene Brooklyn
## 5279 1475015 Mike Manhattan
## 5280 6615826 Chad Queens
## 5281 2119276 Host Manhattan
## 5282 19633755 Corey Manhattan
## 5283 2119276 Host Manhattan
## 5284 3856533 Amanda Manhattan
## 5285 9784802 Tina Manhattan
## 5286 19644902 Russell Manhattan
## 5287 16098958 Jeremy & Laura Manhattan
## 5288 20169857 Fabeye & Nabou Brooklyn
## 5289 14908547 Elyse Manhattan
## 5290 19663195 Alison Brooklyn
## 5291 7018154 Maha Manhattan
## 5292 3250450 Petya Queens
## 5293 15733420 Marcus Brooklyn
## 5294 19691070 Haim Queens
## 5295 19693124 Maia Manhattan
## 5296 1484799 Matthew Manhattan
## 5297 4702135 Jared Brooklyn
## 5298 19708200 Larry Brooklyn
## 5299 4928083 Fernando Brooklyn
## 5300 2236848 Liz Brooklyn
## 5301 19239110 Kurt Brooklyn
## 5302 18982191 Todd Brooklyn
## 5303 18094896 Wendy Manhattan
## 5304 15192022 Kaykay Brooklyn
## 5305 2141246 Polly Brooklyn
## 5306 3284613 Jana Manhattan
## 5307 539204 Joaquin Manhattan
## 5308 19708200 Larry Brooklyn
## 5309 3339701 Angelo Queens
## 5310 18397763 Seun And Marie Brooklyn
## 5311 3339701 Angelo Queens
## 5312 18397763 Seun And Marie Brooklyn
## 5313 19758346 Adriana Manhattan
## 5314 9314076 Naeem Brooklyn
## 5315 19758179 Telmo Queens
## 5316 4091348 Ila Brooklyn
## 5317 177233 Lisa Manhattan
## 5318 19772879 Kim Manhattan
## 5319 107340 Eric Brooklyn
## 5320 9332835 Karen Bronx
## 5321 19783353 Ryan Brooklyn
## 5322 1459837 Geeta Brooklyn
## 5323 1482208 Allison Brooklyn
## 5324 10366196 Matt Brooklyn
## 5325 19785817 Gary Brooklyn
## 5326 9708374 Anaïs Brooklyn
## 5327 18286622 Ryan Manhattan
## 5328 2222500 Valerie Manhattan
## 5329 1277222 Sanda Brooklyn
## 5330 12971995 Kate Brooklyn
## 5331 11495251 (Email hidden by Airbnb) Manhattan
## 5332 19839188 Dolores Manhattan
## 5333 5369757 Leighann Manhattan
## 5334 1475015 Mike Manhattan
## 5335 5175407 Holly Brooklyn
## 5336 19349568 Joseph Brooklyn
## 5337 3424306 Kristina Brooklyn
## 5338 19860559 Nancy Manhattan
## 5339 1582736 Pam Manhattan
## 5340 4940167 Theodora Manhattan
## 5341 14902860 Velma Brooklyn
## 5342 19866189 Natasha Queens
## 5343 12615927 Kate Brooklyn
## 5344 3861404 Stefanie Brooklyn
## 5345 19902271 John & Catherine Manhattan
## 5346 5174082 Rebecca Brooklyn
## 5347 7782769 Alexander Manhattan
## 5348 1812825 Samita Brooklyn
## 5349 1908606 Suleman Brooklyn
## 5350 12749383 Joseph Brooklyn
## 5351 13644183 Maria And Mariano Brooklyn
## 5352 14733148 Susan Manhattan
## 5353 19800918 Will Manhattan
## 5354 19961114 Chris Manhattan
## 5355 1475015 Mike Manhattan
## 5356 17770287 Nina Manhattan
## 5357 18260299 Ota Brooklyn
## 5358 16098958 Jeremy & Laura Manhattan
## 5359 47459 James Manhattan
## 5360 14902860 Velma Brooklyn
## 5361 2718526 Kory Brooklyn
## 5362 8180517 Manuel Manhattan
## 5363 4089400 Alex Brooklyn
## 5364 19986984 Eliane Manhattan
## 5365 736815 Irena Manhattan
## 5366 19993822 Tony Queens
## 5367 16765013 Marek Brooklyn
## 5368 4564600 Roxanne Manhattan
## 5369 20022909 Jessica Brooklyn
## 5370 20033436 Michael Manhattan
## 5371 4084075 Taz And Nayyirah Manhattan
## 5372 18051112 Caleb Manhattan
## 5373 16098958 Jeremy & Laura Manhattan
## 5374 16098958 Jeremy & Laura Manhattan
## 5375 194994 Nora Manhattan
## 5376 12556197 Rez Brooklyn
## 5377 20084270 Jennifer Brooklyn
## 5378 16715941 Ian Manhattan
## 5379 4680747 Del Queens
## 5380 176285 Ari Brooklyn
## 5381 8179499 Brent Manhattan
## 5382 8834412 Deborah Bronx
## 5383 20116872 Michael Manhattan
## 5384 3150902 Dan Manhattan
## 5385 18260299 Ota Brooklyn
## 5386 20133610 Shi Qing Manhattan
## 5387 20136355 Aalap Manhattan
## 5388 46969 Aurelie Staten Island
## 5389 20156576 Glenn Brooklyn
## 5390 157795 Madeline Brooklyn
## 5391 20166817 Amitai Brooklyn
## 5392 20171951 Mary Manhattan
## 5393 20172814 Jesse Manhattan
## 5394 20177472 Virginia Brooklyn
## 5395 18572906 Eylem Brooklyn
## 5396 20177186 Ted Manhattan
## 5397 5072123 Sandra Brooklyn
## 5398 6426063 Sarah Manhattan
## 5399 18481203 Ellie Manhattan
## 5400 9990930 Alexander Brooklyn
## 5401 2316267 Nicole Brooklyn
## 5402 3097631 Max Manhattan
## 5403 20169857 Fabeye & Nabou Brooklyn
## 5404 14890430 Evy Brooklyn
## 5405 5879951 Marine Brooklyn
## 5406 20243795 Tony Brooklyn
## 5407 10352213 Nicole Manhattan
## 5408 20260083 Tim Manhattan
## 5409 12348871 Hetty Brooklyn
## 5410 102525 David Brooklyn
## 5411 4934489 Jessica Manhattan
## 5412 18834080 Jake Manhattan
## 5413 960861 Schuyler Brooklyn
## 5414 2045335 Jonathan Manhattan
## 5415 20278196 Stephanie Brooklyn
## 5416 9081271 Samantha Manhattan
## 5417 1475015 Mike Manhattan
## 5418 20286123 Kenneth Manhattan
## 5419 4718049 Anup Brooklyn
## 5420 16715941 Ian Manhattan
## 5421 7245581 Michael Manhattan
## 5422 13347167 AFI Apartments Manhattan
## 5423 20324827 Catherine Brooklyn
## 5424 13135873 Jan Manhattan
## 5425 20278196 Stephanie Brooklyn
## 5426 20329737 Aleksandra Brooklyn
## 5427 452781 Lian Brooklyn
## 5428 1216362 Camila Brooklyn
## 5429 1632428 Matias & Marlana Manhattan
## 5430 2224374 Younes Brooklyn
## 5431 14549202 Jeff Manhattan
## 5432 16101222 Andrew M. Manhattan
## 5433 1331180 Matt -N- Jenny Brooklyn
## 5434 622694 Shawn Brooklyn
## 5435 92782 Payal Brooklyn
## 5436 1568383 Joshua Brooklyn
## 5437 20364466 Michael Manhattan
## 5438 20377328 MaryEllen Manhattan
## 5439 20379079 Zack Queens
## 5440 1406214 Patric Brooklyn
## 5441 284199 Avijit Queens
## 5442 881214 Mysia Bronx
## 5443 20411855 Chuck Queens
## 5444 7837510 Anna Manhattan
## 5445 2555556 Laura Manhattan
## 5446 20433199 Merritt Manhattan
## 5447 20435647 Mette Brooklyn
## 5448 20438402 Geoff & Aurelia Manhattan
## 5449 12351216 Kevin Manhattan
## 5450 6771709 Lauren Brooklyn
## 5451 20440955 Mario Brooklyn
## 5452 71418 Matt Manhattan
## 5453 20447869 Burton Manhattan
## 5454 20449160 Mark Manhattan
## 5455 20449763 Christine Manhattan
## 5456 20438402 Geoff & Aurelia Manhattan
## 5457 5650180 Jessica Queens
## 5458 20449694 Luis Brooklyn
## 5459 20438402 Geoff & Aurelia Manhattan
## 5460 7739416 Ade Brooklyn
## 5461 20464791 Olga Manhattan
## 5462 10528897 Erika Queens
## 5463 9769764 Skyler Brooklyn
## 5464 20484008 Mike Manhattan
## 5465 3097283 Leta Brooklyn
## 5466 20435679 Frank Brooklyn
## 5467 295128 Carol Gloria Bronx
## 5468 295128 Carol Gloria Bronx
## 5469 7580038 Jack Andrew Manhattan
## 5470 8015051 Justine Brooklyn
## 5471 12485770 Raanan Manhattan
## 5472 10194688 Mariela Manhattan
## 5473 2032408 Kimberly Manhattan
## 5474 20534981 Charlayne Brooklyn
## 5475 20536249 Daphne Manhattan
## 5476 5742948 Tommy Brooklyn
## 5477 978546 Shivani Manhattan
## 5478 20543178 Pervaiz Brooklyn
## 5479 20555401 Susannah Staten Island
## 5480 5160894 Pat Manhattan
## 5481 18481481 Jeff And Jessica Manhattan
## 5482 1100494 Mike&Mavi Manhattan
## 5483 20567256 Marina Manhattan
## 5484 1033829 Joe & Michael Brooklyn
## 5485 363472 Barry Manhattan
## 5486 15309829 Natalie Manhattan
## 5487 20278196 Stephanie Brooklyn
## 5488 3339819 Jennifer Brooklyn
## 5489 3164949 Robert Brooklyn
## 5490 1475015 Mike Manhattan
## 5491 20580437 Adam Brooklyn
## 5492 1840581 Angelica Brooklyn
## 5493 14741088 Victoria Brooklyn
## 5494 17576229 Mary Brooklyn
## 5495 19808313 Georgia Brooklyn
## 5496 1401835 Danielle Brooklyn
## 5497 20047729 Fabio Manhattan
## 5498 20604091 Eliana E Queens
## 5499 20624434 Matti Manhattan
## 5500 19407840 Peng Manhattan
## 5501 20625992 Christian Queens
## 5502 2766755 Mara Manhattan
## 5503 557329 James Manhattan
## 5504 3424328 Jd Manhattan
## 5505 17546682 Angela Manhattan
## 5506 8734291 Mike Manhattan
## 5507 1475015 Mike Manhattan
## 5508 2119276 Host Manhattan
## 5509 6337882 Michael Manhattan
## 5510 20670026 Monifa & Saint Brooklyn
## 5511 20670246 Jaxon Brooklyn
## 5512 1272714 Arielle Brooklyn
## 5513 20694703 Pablo Manhattan
## 5514 11790239 Mina Manhattan
## 5515 6198638 Carla Brooklyn
## 5516 14545465 Tom Manhattan
## 5517 20738908 James Brooklyn
## 5518 3325418 Patricia Manhattan
## 5519 3325418 Patricia Manhattan
## 5520 3146353 Sara Brooklyn
## 5521 1542375 Nicci & David Brooklyn
## 5522 2787824 Martyn Queens
## 5523 942933 David Manhattan
## 5524 3120671 Benham Queens
## 5525 16949652 Derrick Manhattan
## 5526 20741468 Sarah Queens
## 5527 2090439 Matt Manhattan
## 5528 20809866 David Brooklyn
## 5529 7831209 Bobi Manhattan
## 5530 14707270 Hamish Manhattan
## 5531 20822611 Robin Manhattan
## 5532 9639040 Joanne Brooklyn
## 5533 20827756 Jillian Manhattan
## 5534 20830484 Lorcán Brooklyn
## 5535 12876904 Marla Brooklyn
## 5536 10263619 Chloe Brooklyn
## 5537 17249397 Sushant Manhattan
## 5538 9743617 Patricia Manhattan
## 5539 16514175 Karen Queens
## 5540 7877288 James Manhattan
## 5541 4163733 Mike Manhattan
## 5542 20900568 Mike Bronx
## 5543 20902552 Miquel Manhattan
## 5544 13649613 Rossy, Carmen And Juan Bronx
## 5545 2155917 Stephanie Brooklyn
## 5546 20911928 Judith Staten Island
## 5547 20912185 Saya & Diego Brooklyn
## 5548 1369577 Thomas & Gaby Brooklyn
## 5549 11818785 Fabio Queens
## 5550 5642757 Ilona Brooklyn
## 5551 608396 Kiara Queens
## 5552 19638238 Elke Manhattan
## 5553 430188 Pam Brooklyn
## 5554 20945243 Michael Bronx
## 5555 3789165 Lisa Manhattan
## 5556 15742426 Lauren Manhattan
## 5557 19755511 Agnieszka Manhattan
## 5558 2034343 David Brooklyn
## 5559 20955075 Rk Manhattan
## 5560 20971414 Tuvia Manhattan
## 5561 15582617 Andrew Brooklyn
## 5562 20979850 David Manhattan
## 5563 20987432 Valeria Queens
## 5564 16325217 Sarah Manhattan
## 5565 20987992 Alicja Brooklyn
## 5566 20988865 Elizabeth Queens
## 5567 20989479 Arnab Manhattan
## 5568 10135 Jason Manhattan
## 5569 9492212 Emily And Joel Brooklyn
## 5570 21014758 Garnet Brooklyn
## 5571 21004091 Tony Brooklyn
## 5572 21009723 Magen Manhattan
## 5573 2037149 Steve & Anna Brooklyn
## 5574 21019043 Jason Brooklyn
## 5575 21019260 Michael And Donna Manhattan
## 5576 3967335 Molly Brooklyn
## 5577 3967335 Molly Brooklyn
## 5578 21020951 Claudina Brooklyn
## 5579 5133495 Mary Kathryn Brooklyn
## 5580 21017521 Isis Brooklyn
## 5581 1960128 Luana Queens
## 5582 21026294 Gilda Brooklyn
## 5583 4054295 Charles Manhattan
## 5584 12368114 Rachelle Brooklyn
## 5585 2075509 Melissa Queens
## 5586 20484008 Mike Manhattan
## 5587 7831209 Bobi Manhattan
## 5588 20441343 Lilah Brooklyn
## 5589 2788262 Stara Manhattan
## 5590 21060554 Rob Manhattan
## 5591 10384906 Susan Brooklyn
## 5592 21064077 Dan Queens
## 5593 19382874 Anthony/Joanne Brooklyn
## 5594 4050500 Kelly Brooklyn
## 5595 21096602 Khadija Brooklyn
## 5596 19331457 Yevgeny Manhattan
## 5597 14793862 Eleanor Brooklyn
## 5598 21105084 Sugeiry Manhattan
## 5599 20741012 Devin Brooklyn
## 5600 21110000 Shahram Brooklyn
## 5601 5558013 Suzanne Manhattan
## 5602 10135 Jason Manhattan
## 5603 6459254 Todd Brooklyn
## 5604 13322263 Aj Manhattan
## 5605 7116594 Russell Brooklyn
## 5606 316474 Ellie Brooklyn
## 5607 4148174 Daniel Brooklyn
## 5608 21149119 David Manhattan
## 5609 21149129 Jenny Brooklyn
## 5610 4792032 Cee Brooklyn
## 5611 4835582 Julia Manhattan
## 5612 21171867 Jennifer And Basil Queens
## 5613 310670 Vie Bronx
## 5614 3801427 Liz Brooklyn
## 5615 1335736 Ozlem Brooklyn
## 5616 7861502 Aviad Manhattan
## 5617 21145652 Kathisha Brooklyn
## 5618 2436652 Krzysztof Brooklyn
## 5619 21183428 Jae (Owen's Wife) Brooklyn
## 5620 5317124 Caroline Brooklyn
## 5621 21210898 Fagan Brooklyn
## 5622 2917387 Emily Brooklyn
## 5623 21217401 Yong Manhattan
## 5624 21222224 Erica Brooklyn
## 5625 21228368 Jessica Queens
## 5626 310670 Vie Bronx
## 5627 21232737 Donour Manhattan
## 5628 11090576 Michael Brooklyn
## 5629 4065620 Debbie Brooklyn
## 5630 2705041 Alexa Manhattan
## 5631 11948817 Leslie Brooklyn
## 5632 15277039 Ryan Manhattan
## 5633 20245055 Sade Manhattan
## 5634 1539749 Edward Brooklyn
## 5635 21279472 Zheni Brooklyn
## 5636 4473954 Milena Manhattan
## 5637 61463 Channa Brooklyn
## 5638 1637916 Mandy Brooklyn
## 5639 21315876 Helen Manhattan
## 5640 622779 Kat Brooklyn
## 5641 7714918 Carrie-Anne Brooklyn
## 5642 19914713 Samantha Queens
## 5643 21327210 David Brooklyn
## 5644 21352288 Deborah Lily Brooklyn
## 5645 4314639 Brad Brooklyn
## 5646 4934489 Jessica Manhattan
## 5647 4516038 Zak Brooklyn
## 5648 21362718 Rafael Brooklyn
## 5649 21367938 Rayna Queens
## 5650 10172703 HayNoor Bronx
## 5651 21371406 Anthony Manhattan
## 5652 21373495 Lara Brooklyn
## 5653 21228368 Jessica Queens
## 5654 1923075 Andrew Manhattan
## 5655 17249397 Sushant Manhattan
## 5656 21380762 Rachel Manhattan
## 5657 21400083 Katherine Manhattan
## 5658 21400616 LeKethia Brooklyn
## 5659 21405141 Altin Manhattan
## 5660 19802029 Roger Manhattan
## 5661 21336880 Madison Brooklyn
## 5662 828682 Leora Queens
## 5663 20543178 Pervaiz Brooklyn
## 5664 21416490 Elizabeth Manhattan
## 5665 6885530 P Brooklyn
## 5666 8280108 Prune Manhattan
## 5667 702419 Lars Manhattan
## 5668 11555258 Patrick Brooklyn
## 5669 21422095 Timothy Brooklyn
## 5670 18397763 Seun And Marie Brooklyn
## 5671 18397763 Seun And Marie Brooklyn
## 5672 18397763 Seun And Marie Brooklyn
## 5673 9234456 Angelo Brooklyn
## 5674 20169986 Victoria Brooklyn
## 5675 21020951 Claudina Brooklyn
## 5676 15908653 Gil Brooklyn
## 5677 7677048 Florrie Brooklyn
## 5678 2011110 Rebecca Brooklyn
## 5679 21455632 Venessa Manhattan
## 5680 21455957 Jason & Agnes Manhattan
## 5681 14952623 Ammy Manhattan
## 5682 21459667 Joanna Manhattan
## 5683 9232428 Scott Manhattan
## 5684 7410674 Jess And Josh Brooklyn
## 5685 11134688 Noelle Brooklyn
## 5686 3507684 Michael Manhattan
## 5687 3145112 Emma Queens
## 5688 21466751 Elizabeth Brooklyn
## 5689 6087686 Tal Manhattan
## 5690 7243674 Eric Brooklyn
## 5691 21480710 Theodore Brooklyn
## 5692 21228368 Jessica Queens
## 5693 18189742 Kat Brooklyn
## 5694 1756624 Samer Queens
## 5695 21500500 Juan Brooklyn
## 5696 21501965 Yulia Manhattan
## 5697 651818 Lucio Manhattan
## 5698 21505913 Geri Brooklyn
## 5699 11950557 Loni & Russ Manhattan
## 5700 4375988 Keturah Brooklyn
## 5701 7848968 Morgan Brooklyn
## 5702 21535262 Cecilia Queens
## 5703 21546973 Niko Manhattan
## 5704 17477908 Mat Manhattan
## 5705 21560088 Sarah Manhattan
## 5706 11948817 Leslie Brooklyn
## 5707 21565088 ZVIPCO LLC (Robert) Manhattan
## 5708 3563 Arnie Brooklyn
## 5709 9432174 Daniel Manhattan
## 5710 19139700 Tanya Queens
## 5711 17462748 Steven Brooklyn
## 5712 6580488 Sandy Brooklyn
## 5713 21601222 Joan Brooklyn
## 5714 1267556 Mari J Brooklyn
## 5715 6897051 Corey Manhattan
## 5716 21609476 Beatrice Brooklyn
## 5717 17451048 Ritchie Brooklyn
## 5718 1401835 Danielle Brooklyn
## 5719 15573381 Lindsay Manhattan
## 5720 4403262 Adam Manhattan
## 5721 20979241 Amy Brooklyn
## 5722 5243122 R Brooklyn
## 5723 21634948 Monika Queens
## 5724 9452830 David Brooklyn
## 5725 21641206 Veronica Brooklyn
## 5726 733543 Monica Manhattan
## 5727 21645208 Grace Brooklyn
## 5728 6032480 Anna Brooklyn
## 5729 17462748 Steven Brooklyn
## 5730 21652004 June Queens
## 5731 21653460 Zoya Brooklyn
## 5732 9197440 Ana Manhattan
## 5733 5739699 Rosemary Manhattan
## 5734 21660125 Chris Brooklyn
## 5735 21663531 Dana Queens
## 5736 17462748 Steven Brooklyn
## 5737 21680683 Jenny Brooklyn
## 5738 21682640 Clarise Brooklyn
## 5739 21688467 Avril Manhattan
## 5740 1475015 Mike Manhattan
## 5741 18049970 Lou Brooklyn
## 5742 3267848 June Brooklyn
## 5743 9405848 Susie Manhattan
## 5744 21705739 Maha Brooklyn
## 5745 21706654 Katerina Brooklyn
## 5746 919218 Manhattan
## 5747 20289059 Cristina Manhattan
## 5748 12360407 Firas Brooklyn
## 5749 5309160 Elizabeth And Roberto Manhattan
## 5750 610819 Brian Brooklyn
## 5751 4152484 Oates + Bill Brooklyn
## 5752 21734605 Jenn Brooklyn
## 5753 21739563 Redding Brooklyn
## 5754 17106992 Alejandro Manhattan
## 5755 21751476 Grace Brooklyn
## 5756 21759005 Alaina Manhattan
## 5757 10367443 J Manhattan
## 5758 191324 Keith Queens
## 5759 21768291 Jo Brooklyn
## 5760 21777274 Kelly Manhattan
## 5761 7805184 Valeria Manhattan
## 5762 21782731 Marley Brooklyn
## 5763 21787420 Mo Manhattan
## 5764 21789707 Alexandre Brooklyn
## 5765 4738242 Meghna Manhattan
## 5766 12419083 Andre Manhattan
## 5767 21811394 Hazel Brooklyn
## 5768 17550546 Genevieve Manhattan
## 5769 1162642 Emily Manhattan
## 5770 6468894 Cherng-Mao Brooklyn
## 5771 20312973 Diana Brooklyn
## 5772 18382740 Takao & Aiko Staten Island
## 5773 2423107 Brad Brooklyn
## 5774 17462748 Steven Brooklyn
## 5775 4218058 Jessica Brooklyn
## 5776 20700823 Jesse Manhattan
## 5777 21064917 Alissa Brooklyn
## 5778 1172202 Funda Queens
## 5779 7549 Ben Manhattan
## 5780 14565233 Gabriela Brooklyn
## 5781 1361993 Daniel Bronx
## 5782 21881605 Julie Brooklyn
## 5783 15243531 Amanda Brooklyn
## 5784 9904977 Matt Brooklyn
## 5785 21886798 Robert Manhattan
## 5786 10618980 Lumin And Hendrik Queens
## 5787 6841194 Eric Brooklyn
## 5788 20448670 Crystal Manhattan
## 5789 21892444 Francesca Manhattan
## 5790 21641206 Veronica Brooklyn
## 5791 21902316 Amy Brooklyn
## 5792 21903562 David Manhattan
## 5793 20335235 Stephen Manhattan
## 5794 21921207 Nick Brooklyn
## 5795 21929547 Orinda Queens
## 5796 21930475 Whitney Brooklyn
## 5797 21930989 Mark Manhattan
## 5798 20112613 Simone Brooklyn
## 5799 14543419 Juli Brooklyn
## 5800 21937306 William Brooklyn
## 5801 21938126 Reenie Brooklyn
## 5802 20318233 Nirit (Nina) Brooklyn
## 5803 21938678 Christophe Brooklyn
## 5804 2811458 Brandon Manhattan
## 5805 21941065 David Queens
## 5806 21962039 Beatriz Brooklyn
## 5807 9368118 Peter Manhattan
## 5808 21964818 Anita Manhattan
## 5809 651771 Cristina Brooklyn
## 5810 11243583 Joseph Manhattan
## 5811 21979970 Louise & Thomas Queens
## 5812 20559017 Yohan Manhattan
## 5813 16276317 Lee Manhattan
## 5814 14729523 Zherui Manhattan
## 5815 3650005 Rae Brooklyn
## 5816 22005943 Tameisha Brooklyn
## 5817 22006854 Kishorie Queens
## 5818 22009089 Lorcan Manhattan
## 5819 8732038 Lorna Queens
## 5820 21062282 Madison Brooklyn
## 5821 22023014 BrooklynSleeps Brooklyn
## 5822 782008 Lori Brooklyn
## 5823 4162754 Angel Brooklyn
## 5824 21977919 Nathaniel Manhattan
## 5825 22010885 Anja Manhattan
## 5826 22047286 Chloe Manhattan
## 5827 12534414 Gina Manhattan
## 5828 2495483 Andy Manhattan
## 5829 22057975 Kevin Brooklyn
## 5830 13949526 Fran Brooklyn
## 5831 1542713 Brandon Manhattan
## 5832 19644682 Janet Manhattan
## 5833 22096807 Stephenie Manhattan
## 5834 20408723 Andrea Brooklyn
## 5835 1663994 Hellen Brooklyn
## 5836 21833312 Solange Et Michel Brooklyn
## 5837 16212001 Erin Manhattan
## 5838 22022473 Gita Manhattan
## 5839 8533891 Lev Manhattan
## 5840 6914968 Lisa Manhattan
## 5841 22124628 Aj Queens
## 5842 7651028 Jesse Manhattan
## 5843 22131209 Gregory Brooklyn
## 5844 11189753 Sj Brooklyn
## 5845 3609048 Ken Brooklyn
## 5846 3250450 Petya Queens
## 5847 3250450 Petya Queens
## 5848 3294438 Torell Brooklyn
## 5849 6793885 Nick Manhattan
## 5850 22158091 Marjorie Manhattan
## 5851 22171095 George & Diana Queens
## 5852 5835210 Daniela Queens
## 5853 208565 Maria Brooklyn
## 5854 15638520 Joseph & Hector Manhattan
## 5855 21091779 Caroline Brooklyn
## 5856 22188911 Alessio Manhattan
## 5857 22131245 Roberta Manhattan
## 5858 22189723 Diego Queens
## 5859 16666294 Lp Manhattan
## 5860 22088164 Julia Manhattan
## 5861 22198017 Ezra Brooklyn
## 5862 9854191 Joyce Manhattan
## 5863 1405217 James Manhattan
## 5864 2807798 Sean Manhattan
## 5865 14279331 James Brooklyn
## 5866 6894447 Andrew Brooklyn
## 5867 22209733 SooKi Brooklyn
## 5868 17770287 Nina Manhattan
## 5869 295128 Carol Gloria Bronx
## 5870 1143151 Mila Manhattan
## 5871 22216726 Linda Queens
## 5872 21140491 Ariel Brooklyn
## 5873 22218694 Lea Manhattan
## 5874 20243795 Tony Brooklyn
## 5875 1990602 Jessica Brooklyn
## 5876 22227178 Daniel Manhattan
## 5877 21641206 Veronica Brooklyn
## 5878 9471525 Chris Manhattan
## 5879 4532548 Tess Manhattan
## 5880 22240717 Steven Manhattan
## 5881 22248783 Xiao Manhattan
## 5882 6280254 Jc Manhattan
## 5883 22253568 Brian Manhattan
## 5884 15715046 Katie Brooklyn
## 5885 3750547 Angela Manhattan
## 5886 1994261 Anna Manhattan
## 5887 19597910 Ruth Queens
## 5888 22280299 Brad Brooklyn
## 5889 1141935 Ana Brooklyn
## 5890 13402436 Manuela Brooklyn
## 5891 21499988 Joey Brooklyn
## 5892 4473916 Ross Manhattan
## 5893 19841476 Rasheeda Manhattan
## 5894 19174715 Judith Brooklyn
## 5895 7503643 Vida Brooklyn
## 5896 10981052 Talisa Brooklyn
## 5897 22299389 Lindsay Alexa Manhattan
## 5898 22303517 Danielle Manhattan
## 5899 1260921 Victor Bronx
## 5900 22307859 Sharon Brooklyn
## 5901 22305520 James Manhattan
## 5902 17164818 Victoria Brooklyn
## 5903 4600692 J. Queens
## 5904 2822805 Ollie Brooklyn
## 5905 3578009 Walther Queens
## 5906 5918341 Mona Brooklyn
## 5907 16798055 Ehud Manhattan
## 5908 22364611 Basil Brooklyn
## 5909 16906759 Karen Manhattan
## 5910 6195809 Dean Manhattan
## 5911 22367030 Tarek Manhattan
## 5912 13063145 Vinneth Brooklyn
## 5913 1918986 Roni Brooklyn
## 5914 21127377 Orhun Manhattan
## 5915 4644513 Liana Brooklyn
## 5916 22405856 Val And Taylor Brooklyn
## 5917 22420381 Ahmad Manhattan
## 5918 11790239 Mina Manhattan
## 5919 2999445 Sindhu Manhattan
## 5920 22459182 Sean Manhattan
## 5921 1537663 Madeline Manhattan
## 5922 2657430 Rahul Manhattan
## 5923 22487371 John Manhattan
## 5924 22490457 Danielle Manhattan
## 5925 11790239 Mina Manhattan
## 5926 8659738 Janine Brooklyn
## 5927 2357221 Swati Brooklyn
## 5928 2119276 Host Manhattan
## 5929 22410033 Georges Manhattan
## 5930 910592 Angie And Matthew Brooklyn
## 5931 22526585 Chema Brooklyn
## 5932 3341356 Katie Brooklyn
## 5933 22527661 Mio Queens
## 5934 22530714 Murad Brooklyn
## 5935 7503643 Vida Brooklyn
## 5936 22448247 Leatha Brooklyn
## 5937 3800365 Mei-Ling Brooklyn
## 5938 356690 LaToya Brooklyn
## 5939 3822369 Maria Manhattan
## 5940 22548091 Cynthia Manhattan
## 5941 22384027 Shahana Brooklyn
## 5942 22548091 Cynthia Manhattan
## 5943 22568643 Jose Manhattan
## 5944 22578720 Derek Brooklyn
## 5945 21457707 Peter Brooklyn
## 5946 1717520 Andrew Manhattan
## 5947 6697886 Mandy Manhattan
## 5948 14194388 Michael Manhattan
## 5949 5982086 Joshua Brooklyn
## 5950 16504161 Gung Brooklyn
## 5951 22595345 Abel Manhattan
## 5952 16572955 Sandra Brooklyn
## 5953 14730409 Ken Brooklyn
## 5954 20539345 Husain Manhattan
## 5955 7809661 Mamie Queens
## 5956 22727798 Roman Queens
## 5957 22622958 Wayne Brooklyn
## 5958 20599015 Farrell Brooklyn
## 5959 841179 Treasure Brooklyn
## 5960 2129777 Aj Queens
## 5961 22240236 Tony & Lea Queens
## 5962 13481367 Anna Manhattan
## 5963 19735589 Felicia Brooklyn
## 5964 3905383 Gillian Manhattan
## 5965 22656394 Julie Brooklyn
## 5966 22657141 Phin Manhattan
## 5967 3081990 Amanda Brooklyn
## 5968 2814004 Jasmine Manhattan
## 5969 2814004 Jasmine Manhattan
## 5970 22661286 Steef Brooklyn
## 5971 22661810 Marie Brooklyn
## 5972 208410 Mauricio Brooklyn
## 5973 20243795 Tony Brooklyn
## 5974 14400653 Belinda Brooklyn
## 5975 15154 Gloria Manhattan
## 5976 22686810 Michaël Manhattan
## 5977 22715031 Fernando Queens
## 5978 22716230 M. Johanne Manhattan
## 5979 18893494 Leonella Manhattan
## 5980 7245580 David Manhattan
## 5981 21902316 Amy Brooklyn
## 5982 510577 Benjamin Brooklyn
## 5983 16598048 Yervand Manhattan
## 5984 22738480 Aaron Brooklyn
## 5985 11742895 Jonathan Manhattan
## 5986 18674671 Lindsay Brooklyn
## 5987 457976 Bellamy Brooklyn
## 5988 7010789 Adriana Brooklyn
## 5989 22764554 Linda Brooklyn
## 5990 7809712 Eliot Manhattan
## 5991 10556597 Dan Manhattan
## 5992 356933 Jessica Manhattan
## 5993 22502212 Kristen Manhattan
## 5994 21802126 Mark Queens
## 5995 22262958 Kanae Brooklyn
## 5996 3597708 Brittan Brooklyn
## 5997 22688555 Marc Manhattan
## 5998 5605897 Sarah Brooklyn
## 5999 1475015 Mike Manhattan
## 6000 20820856 Waleed Queens
## 6001 844096 Joe Manhattan
## 6002 22805263 Gena Manhattan
## 6003 21228368 Jessica Queens
## 6004 6032373 Vyacheslav Manhattan
## 6005 21228368 Jessica Queens
## 6006 10952317 Angela Manhattan
## 6007 1167801 Pascal & Karin Queens
## 6008 22384027 Shahana Brooklyn
## 6009 22827111 Matthew & Marilyn Manhattan
## 6010 5912357 Gina Brooklyn
## 6011 22840018 Emily Brooklyn
## 6012 2007928 Erin Brooklyn
## 6013 22205787 Adrien Manhattan
## 6014 22780462 Mark Queens
## 6015 22807362 Jenny Brooklyn
## 6016 13061093 Priscillia Brooklyn
## 6017 2558779 Marina Queens
## 6018 22860848 Seth Manhattan
## 6019 22864208 Rustam Brooklyn
## 6020 2909990 Daniel Manhattan
## 6021 5787701 Christine Manhattan
## 6022 2770375 Michelle Brooklyn
## 6023 22880393 Sara Manhattan
## 6024 16286162 Pat Bronx
## 6025 263500 Claire Brooklyn
## 6026 22886115 Kristen Manhattan
## 6027 22893493 Nick Brooklyn
## 6028 22904933 Charlene Manhattan
## 6029 10074473 Dominique Manhattan
## 6030 980118 Alex Brooklyn
## 6031 22628166 Caroline Brooklyn
## 6032 22927481 Howard Manhattan
## 6033 21571748 Chad Brooklyn
## 6034 16744487 Estelle Brooklyn
## 6035 22927646 Chad Manhattan
## 6036 22954228 Cassandra Brooklyn
## 6037 651770 Mark Manhattan
## 6038 7183243 Annette Manhattan
## 6039 22963957 Travis Manhattan
## 6040 3447311 Sarah Manhattan
## 6041 15310997 Mor Manhattan
## 6042 15310997 Mor Manhattan
## 6043 3641595 Deirdre Brooklyn
## 6044 22980167 Maria Manhattan
## 6045 11636894 Gena Brooklyn
## 6046 22984252 Toby Manhattan
## 6047 10396079 Anissa Brooklyn
## 6048 1447684 Rosa Brooklyn
## 6049 2119928 Rachael Brooklyn
## 6050 1728899 Tanya Brooklyn
## 6051 819257 Nina Brooklyn
## 6052 22992909 Joshua Brooklyn
## 6053 747934 Lia Brooklyn
## 6054 23002099 Sol & Izak Queens
## 6055 23002143 Amanda Manhattan
## 6056 22382732 Sue Manhattan
## 6057 21841949 Patwell Manhattan
## 6058 23025661 Lee Manhattan
## 6059 3708965 Nicole Brooklyn
## 6060 21841949 Patwell Brooklyn
## 6061 23030943 Kristin Manhattan
## 6062 974868 Jackie Manhattan
## 6063 22606202 Gerald Manhattan
## 6064 4967319 Jessica Manhattan
## 6065 3289567 Campbell Manhattan
## 6066 1405374 Jane Manhattan
## 6067 14612223 Alex Manhattan
## 6068 23044811 Ettrick Brooklyn
## 6069 195137 James Manhattan
## 6070 23046908 Melissa Brooklyn
## 6071 14546480 Irena Brooklyn
## 6072 3716641 Ofer Manhattan
## 6073 5162192 Amy Manhattan
## 6074 7351 Tanda Brooklyn
## 6075 946323 Ran Brooklyn
## 6076 23077718 Brooklyn
## 6077 9685363 Ceyda Manhattan
## 6078 10471097 Jared Manhattan
## 6079 23083111 Michael Manhattan
## 6080 23089516 Lisa Manhattan
## 6081 23092836 Gary Bronx
## 6082 16761703 Michael Brooklyn
## 6083 23095202 Victoria Brooklyn
## 6084 2050338 Verena Queens
## 6085 5827529 Ariel Manhattan
## 6086 2166065 Peter Brooklyn
## 6087 1390414 Loryn Manhattan
## 6088 454009 Nicholas Manhattan
## 6089 22552201 Lane Manhattan
## 6090 13541655 Michael Manhattan
## 6091 8490286 Jan Brooklyn
## 6092 1171707 Gabriel Brooklyn
## 6093 3551179 Veralisa Bronx
## 6094 747671 Sarah Jazmine Brooklyn
## 6095 21641206 Veronica Brooklyn
## 6096 22904933 Charlene Manhattan
## 6097 14758012 Stéphane Manhattan
## 6098 16286162 Pat Bronx
## 6099 302529 Cynthia Manhattan
## 6100 15778416 Courtney Manhattan
## 6101 6526979 Kim Manhattan
## 6102 23162890 Terrance Brooklyn
## 6103 23178728 SabinaAndTahir Manhattan
## 6104 10304755 Michael Brooklyn
## 6105 23189353 Elizabeth Manhattan
## 6106 19336493 Ryan Manhattan
## 6107 5838331 Katie Manhattan
## 6108 3740730 S Manhattan
## 6109 1532337 Monica Bronx
## 6110 5800619 Catia Manhattan
## 6111 23208658 Iryna Manhattan
## 6112 16066343 Curtis Manhattan
## 6113 23226529 Marc Manhattan
## 6114 23228839 Tiffany Manhattan
## 6115 23243453 Rodney Queens
## 6116 2380912 Helen Brooklyn
## 6117 20431437 Richard Manhattan
## 6118 5152761 Jane Manhattan
## 6119 23249630 Sheila Brooklyn
## 6120 1816417 Raoul Queens
## 6121 23249630 Sheila Brooklyn
## 6122 567972 Melanie Brooklyn
## 6123 23256032 Katharine Brooklyn
## 6124 304346 Andy Brooklyn
## 6125 1869332 Elli Brooklyn
## 6126 23159248 Christie Manhattan
## 6127 1633246 Natasha Brooklyn
## 6128 17065184 Fallon Manhattan
## 6129 21938150 Niraj Manhattan
## 6130 2589436 Sarah Brooklyn
## 6131 8713930 Zane Manhattan
## 6132 14138135 Sabir Manhattan
## 6133 23287601 Petal Brooklyn
## 6134 23293704 Su-Ling Brooklyn
## 6135 15823911 Rand Queens
## 6136 7567309 Susan Manhattan
## 6137 18601618 Chris Manhattan
## 6138 743716 Santiago Brooklyn
## 6139 5777821 Denis Manhattan
## 6140 23308381 Priya Manhattan
## 6141 1869421 David Brooklyn
## 6142 22720650 Duane Manhattan
## 6143 23314412 Olivia Manhattan
## 6144 11228023 Danielle Brooklyn
## 6145 22831759 Ruth Brooklyn
## 6146 10225905 Kym Manhattan
## 6147 12881527 Tanya Brooklyn
## 6148 23334165 Patricia Manhattan
## 6149 23334541 Josh Manhattan
## 6150 23338742 Aneela Manhattan
## 6151 2829908 Rahul Manhattan
## 6152 6519939 Raj Manhattan
## 6153 23342156 Shelby Manhattan
## 6154 2781725 Julia Brooklyn
## 6155 17074459 Mattan Manhattan
## 6156 23349530 Yely Manhattan
## 6157 23084155 Stefani Manhattan
## 6158 23353897 Barbara Brooklyn
## 6159 16151285 Carol Bronx
## 6160 1607087 Iyabo Brooklyn
## 6161 10303277 Alexis Brooklyn
## 6162 2282450 Philip Manhattan
## 6163 301549 Michelle Manhattan
## 6164 15313939 Jeremy Manhattan
## 6165 2119276 Host Manhattan
## 6166 2119276 Host Manhattan
## 6167 23383529 Joseph Manhattan
## 6168 13282162 Manuel Manhattan
## 6169 11760806 Raj Manhattan
## 6170 16685925 Douglas Manhattan
## 6171 23401472 Heather Manhattan
## 6172 23401743 Ticemen Manhattan
## 6173 3709510 Deacon Brooklyn
## 6174 3388950 Amaya Brooklyn
## 6175 3388950 Amaya Brooklyn
## 6176 16480700 Eddie&Vlad Manhattan
## 6177 23419852 Gazelle Queens
## 6178 7245581 Michael Manhattan
## 6179 23424461 Alex Queens
## 6180 16310013 Tan Manhattan
## 6181 22880393 Sara Manhattan
## 6182 9196903 George Brooklyn
## 6183 23439479 Victoria Manhattan
## 6184 20019392 Shirley Manhattan
## 6185 2138902 Asher Brooklyn
## 6186 12149644 Brandon Manhattan
## 6187 20627511 Mark Queens
## 6188 2277244 Victoria Manhattan
## 6189 3201774 Ashley Brooklyn
## 6190 9997747 Devon Brooklyn
## 6191 7245581 Michael Manhattan
## 6192 6197480 Christine Manhattan
## 6193 23497375 Liat Brooklyn
## 6194 13888249 Omer Brooklyn
## 6195 20164579 Oliver Brooklyn
## 6196 23503432 Luke Manhattan
## 6197 11010205 Jacob Brooklyn
## 6198 6926899 Liana Brooklyn
## 6199 1509863 Eddie Queens
## 6200 22927481 Howard Manhattan
## 6201 3250450 Petya Queens
## 6202 8737911 Laura Brooklyn
## 6203 12879538 Gregory Manhattan
## 6204 22384027 Shahana Brooklyn
## 6205 3473330 Shira Manhattan
## 6206 23532244 Wendy Queens
## 6207 4806989 Ava Brooklyn
## 6208 2968247 Lauren Manhattan
## 6209 23538896 DeeDee Brooklyn
## 6210 23540800 Carl Manhattan
## 6211 10718241 Jason Brooklyn
## 6212 23548583 Shari Brooklyn
## 6213 23185328 Deniz Queens
## 6214 23569951 Kaveh Manhattan
## 6215 23570473 James Brooklyn
## 6216 23570593 Joshua Manhattan
## 6217 23573737 Michelle Brooklyn
## 6218 23575706 Blair Brooklyn
## 6219 10411359 Alison Manhattan
## 6220 1443186 Ash Manhattan
## 6221 22089583 Cesar Brooklyn
## 6222 6571805 Agata Manhattan
## 6223 23588055 Genine Manhattan
## 6224 2748575 Charlotte Manhattan
## 6225 19196381 Kimia Manhattan
## 6226 15778416 Courtney Manhattan
## 6227 23591164 Angela Queens
## 6228 785283 Melinda Queens
## 6229 23591164 Angela Queens
## 6230 23533897 Fatou Brooklyn
## 6231 23533897 Fatou Brooklyn
## 6232 2480939 Charles Brooklyn
## 6233 2480939 Charles Brooklyn
## 6234 20042936 Yarimar Brooklyn
## 6235 22568612 Ilana Brooklyn
## 6236 23342410 Amy Queens
## 6237 22348314 Mike Queens
## 6238 23612276 Janine Renee Manhattan
## 6239 3074432 Minka Brooklyn
## 6240 6246089 Sara Queens
## 6241 7257731 Anna Manhattan
## 6242 23629361 Paris Brooklyn
## 6243 23635670 Johnny Manhattan
## 6244 22885233 Peter Manhattan
## 6245 23659408 Marcello Manhattan
## 6246 619991 David Manhattan
## 6247 1019170 Sebastian Manhattan
## 6248 54712 Nick Brooklyn
## 6249 54712 Nick Brooklyn
## neighbourhood latitude longitude room_type price
## 1 Kensington 40.64749 -73.97237 Private room 149
## 2 Midtown 40.75362 -73.98377 Entire home/apt 225
## 3 Harlem 40.80902 -73.94190 Private room 150
## 4 Clinton Hill 40.68514 -73.95976 Entire home/apt 89
## 5 East Harlem 40.79851 -73.94399 Entire home/apt 80
## 6 Murray Hill 40.74767 -73.97500 Entire home/apt 200
## 7 Bedford-Stuyvesant 40.68688 -73.95596 Private room 60
## 8 Hell's Kitchen 40.76489 -73.98493 Private room 79
## 9 Upper West Side 40.80178 -73.96723 Private room 79
## 10 Chinatown 40.71344 -73.99037 Entire home/apt 150
## 11 Upper West Side 40.80316 -73.96545 Entire home/apt 135
## 12 Hell's Kitchen 40.76076 -73.98867 Private room 85
## 13 South Slope 40.66829 -73.98779 Private room 89
## 14 Upper West Side 40.79826 -73.96113 Private room 85
## 15 West Village 40.73530 -74.00525 Entire home/apt 120
## 16 Williamsburg 40.70837 -73.95352 Entire home/apt 140
## 17 Fort Greene 40.69169 -73.97185 Entire home/apt 215
## 18 Chelsea 40.74192 -73.99501 Private room 140
## 19 Crown Heights 40.67592 -73.94694 Entire home/apt 99
## 20 East Harlem 40.79685 -73.94872 Entire home/apt 190
## 21 Williamsburg 40.71842 -73.95718 Entire home/apt 299
## 22 Park Slope 40.68069 -73.97706 Private room 130
## 23 Park Slope 40.67989 -73.97798 Private room 80
## 24 Park Slope 40.68001 -73.97865 Private room 110
## 25 Bedford-Stuyvesant 40.68371 -73.94028 Entire home/apt 120
## 26 Windsor Terrace 40.65599 -73.97519 Private room 60
## 27 Inwood 40.86754 -73.92639 Private room 80
## 28 Hell's Kitchen 40.76715 -73.98533 Entire home/apt 150
## 29 Inwood 40.86482 -73.92106 Private room 44
## 30 East Village 40.72920 -73.98542 Entire home/apt 180
## 31 Harlem 40.82245 -73.95104 Private room 50
## 32 Harlem 40.81305 -73.95466 Private room 52
## 33 Greenpoint 40.72219 -73.93762 Private room 55
## 34 Harlem 40.82130 -73.95318 Private room 50
## 35 Bedford-Stuyvesant 40.68310 -73.95473 Private room 70
## 36 South Slope 40.66869 -73.98780 Private room 89
## 37 Bedford-Stuyvesant 40.68876 -73.94312 Private room 35
## 38 Bushwick 40.70186 -73.92745 Entire home/apt 85
## 39 Flatbush 40.63702 -73.96327 Private room 150
## 40 Lower East Side 40.71401 -73.98917 Shared room 40
## 41 East Village 40.72290 -73.98199 Private room 68
## 42 South Slope 40.66278 -73.97966 Entire home/apt 120
## 43 Fort Greene 40.69673 -73.97584 Private room 120
## 44 Upper West Side 40.79009 -73.97927 Private room 135
## 45 Harlem 40.81175 -73.94478 Entire home/apt 150
## 46 Prospect-Lefferts Gardens 40.65944 -73.96238 Entire home/apt 150
## 47 Long Island City 40.74771 -73.94740 Private room 130
## 48 Bedford-Stuyvesant 40.68111 -73.95591 Entire home/apt 110
## 49 Bedford-Stuyvesant 40.68554 -73.94090 Entire home/apt 115
## 50 Fort Greene 40.69142 -73.97376 Private room 80
## 51 Bedford-Stuyvesant 40.68043 -73.93934 Private room 80
## 52 Upper West Side 40.78635 -73.97008 Entire home/apt 151
## 53 Williamsburg 40.70420 -73.93560 Entire home/apt 228
## 54 Greenpoint 40.73506 -73.95392 Entire home/apt 144
## 55 Kips Bay 40.73961 -73.98074 Entire home/apt 200
## 56 Williamsburg 40.70881 -73.95930 Entire home/apt 150
## 57 Lower East Side 40.72004 -73.99104 Private room 110
## 58 Hell's Kitchen 40.75531 -73.99293 Private room 69
## 59 Greenpoint 40.72401 -73.93788 Private room 49
## 60 SoHo 40.72210 -73.99775 Entire home/apt 180
## 61 Williamsburg 40.71185 -73.96204 Private room 80
## 62 Chelsea 40.74623 -73.99530 Entire home/apt 375
## 63 Upper East Side 40.77065 -73.95269 Entire home/apt 250
## 64 Prospect Heights 40.67811 -73.96428 Entire home/apt 200
## 65 Clinton Hill 40.69000 -73.96788 Private room 55
## 66 Hell's Kitchen 40.75979 -73.99119 Private room 52
## 67 Park Slope 40.67343 -73.98338 Entire home/apt 225
## 68 East Village 40.72649 -73.97904 Private room 80
## 69 Williamsburg 40.70933 -73.96792 Entire home/apt 275
## 70 East Village 40.72298 -73.98474 Private room 99
## 71 East Harlem 40.80164 -73.93922 Entire home/apt 225
## 72 East Village 40.72162 -73.98008 Entire home/apt 230
## 73 Hell's Kitchen 40.76342 -73.98865 Private room 51
## 74 Washington Heights 40.83139 -73.94095 Private room 65
## 75 Clinton Hill 40.68346 -73.96374 Private room 105
## 76 East Village 40.72828 -73.98801 Entire home/apt 190
## 77 Upper East Side 40.76865 -73.95058 Private room 200
## 78 Woodside 40.75038 -73.90334 Private room 70
## 79 Fort Greene 40.69320 -73.97267 Private room 95
## 80 Chelsea 40.74138 -74.00197 Private room 150
## 81 Williamsburg 40.71154 -73.96112 Private room 145
## 82 Harlem 40.82915 -73.95136 Entire home/apt 110
## 83 Lower East Side 40.71851 -73.98892 Entire home/apt 285
## 84 Flatbush 40.65401 -73.96323 Entire home/apt 130
## 85 Lower East Side 40.71140 -73.98794 Private room 94
## 86 Brooklyn Heights 40.69723 -73.99268 Entire home/apt 800
## 87 Williamsburg 40.71833 -73.95748 Entire home/apt 105
## 88 East Village 40.72334 -73.98440 Private room 60
## 89 East Village 40.72912 -73.98057 Private room 50
## 90 Williamsburg 40.71156 -73.96218 Private room 85
## 91 Bushwick 40.70032 -73.93830 Private room 65
## 92 Prospect Heights 40.68233 -73.97261 Entire home/apt 131
## 93 Clinton Hill 40.68634 -73.96600 Private room 98
## 94 Prospect Heights 40.68035 -73.97162 Entire home/apt 250
## 95 Williamsburg 40.70984 -73.95775 Entire home/apt 100
## 96 Bushwick 40.70093 -73.92609 Entire home/apt 105
## 97 Upper West Side 40.79764 -73.96177 Entire home/apt 140
## 98 Harlem 40.82803 -73.94731 Private room 89
## 99 Chelsea 40.74008 -74.00271 Private room 98
## 100 Bedford-Stuyvesant 40.68413 -73.92357 Entire home/apt 125
## 101 Harlem 40.82279 -73.95139 Private room 60
## 102 Carroll Gardens 40.67967 -74.00154 Entire home/apt 175
## 103 Washington Heights 40.83927 -73.94281 Private room 65
## 104 West Village 40.73096 -74.00319 Entire home/apt 500
## 105 Williamsburg 40.71332 -73.94177 Private room 101
## 106 Park Slope 40.66941 -73.98109 Entire home/apt 220
## 107 Bedford-Stuyvesant 40.68373 -73.92377 Entire home/apt 125
## 108 Williamsburg 40.71459 -73.94844 Entire home/apt 80
## 109 Harlem 40.80920 -73.94421 Private room 100
## 110 Gowanus 40.68157 -73.98989 Entire home/apt 200
## 111 Hell's Kitchen 40.75527 -73.99291 Private room 59
## 112 Clinton Hill 40.68698 -73.96572 Private room 125
## 113 East Village 40.72880 -73.98192 Entire home/apt 140
## 114 South Slope 40.66853 -73.98912 Entire home/apt 120
## 115 East Village 40.72540 -73.98157 Entire home/apt 350
## 116 Kips Bay 40.74294 -73.98009 Entire home/apt 199
## 117 Williamsburg 40.71942 -73.95748 Entire home/apt 325
## 118 Upper West Side 40.77823 -73.97637 Entire home/apt 235
## 119 East Village 40.72555 -73.97965 Entire home/apt 225
## 120 South Slope 40.66831 -73.98604 Private room 99
## 121 Harlem 40.82754 -73.94919 Entire home/apt 170
## 122 South Slope 40.66499 -73.97925 Entire home/apt 400
## 123 Upper West Side 40.77842 -73.97556 Entire home/apt 170
## 124 East Village 40.72245 -73.98527 Entire home/apt 100
## 125 Prospect-Lefferts Gardens 40.65593 -73.96053 Private room 75
## 126 Williamsburg 40.71923 -73.96468 Private room 90
## 127 Upper East Side 40.77800 -73.94822 Entire home/apt 150
## 128 Washington Heights 40.85879 -73.93128 Private room 85
## 129 Bedford-Stuyvesant 40.68332 -73.95470 Private room 70
## 130 Harlem 40.81618 -73.94894 Entire home/apt 120
## 131 Clinton Hill 40.68414 -73.96351 Private room 89
## 132 East Village 40.72392 -73.99143 Entire home/apt 185
## 133 Greenpoint 40.73494 -73.95030 Private room 50
## 134 Lower East Side 40.71341 -73.98856 Entire home/apt 105
## 135 Hell's Kitchen 40.76754 -73.98399 Private room 130
## 136 West Village 40.73442 -74.00303 Entire home/apt 115
## 137 Flatlands 40.63188 -73.93248 Private room 77
## 138 Clinton Hill 40.68730 -73.96340 Private room 76
## 139 Bedford-Stuyvesant 40.68296 -73.93662 Entire home/apt 125
## 140 Clinton Hill 40.68630 -73.96765 Private room 135
## 141 Greenpoint 40.73409 -73.95348 Entire home/apt 250
## 142 Williamsburg 40.71561 -73.94835 Entire home/apt 199
## 143 Cobble Hill 40.68570 -73.99183 Entire home/apt 140
## 144 Flushing 40.74028 -73.83168 Private room 140
## 145 Bedford-Stuyvesant 40.68281 -73.93524 Entire home/apt 115
## 146 Williamsburg 40.71596 -73.93938 Entire home/apt 160
## 147 Williamsburg 40.71492 -73.95935 Entire home/apt 195
## 148 East Village 40.72354 -73.98295 Entire home/apt 195
## 149 Williamsburg 40.71165 -73.96087 Private room 80
## 150 Fort Greene 40.69101 -73.97312 Private room 44
## 151 West Village 40.73474 -74.00101 Private room 156
## 152 Prospect Heights 40.67386 -73.96641 Private room 85
## 153 Williamsburg 40.71536 -73.96057 Private room 125
## 154 Prospect Heights 40.67410 -73.96595 Entire home/apt 115
## 155 East Harlem 40.79295 -73.93997 Private room 69
## 156 West Village 40.73226 -74.00401 Entire home/apt 225
## 157 Williamsburg 40.71363 -73.96398 Entire home/apt 125
## 158 Upper East Side 40.77711 -73.95270 Entire home/apt 219
## 159 Boerum Hill 40.68559 -73.98094 Entire home/apt 475
## 160 Upper East Side 40.77456 -73.95323 Entire home/apt 99
## 161 Williamsburg 40.71088 -73.95055 Private room 69
## 162 Sunnyside 40.74559 -73.92313 Private room 79
## 163 Bedford-Stuyvesant 40.68306 -73.94659 Entire home/apt 135
## 164 DUMBO 40.70207 -73.98571 Private room 250
## 165 Upper East Side 40.76123 -73.96420 Entire home/apt 250
## 166 Gowanus 40.66858 -73.99083 Entire home/apt 250
## 167 Harlem 40.82704 -73.94907 Entire home/apt 80
## 168 Clinton Hill 40.68843 -73.96408 Private room 70
## 169 Carroll Gardens 40.67830 -74.00135 Entire home/apt 165
## 170 St. George 40.64524 -74.08088 Private room 70
## 171 Bushwick 40.70641 -73.91765 Private room 50
## 172 Highbridge 40.83232 -73.93184 Private room 40
## 173 Williamsburg 40.71045 -73.96770 Entire home/apt 150
## 174 East Village 40.72518 -73.98034 Private room 125
## 175 Financial District 40.70666 -74.01374 Entire home/apt 196
## 176 Fort Greene 40.69098 -73.97113 Private room 110
## 177 West Village 40.73756 -74.00405 Entire home/apt 170
## 178 Harlem 40.81526 -73.94791 Entire home/apt 165
## 179 West Village 40.73423 -74.00460 Entire home/apt 150
## 180 Harlem 40.82374 -73.93730 Entire home/apt 100
## 181 Fort Greene 40.68863 -73.97691 Private room 65
## 182 Ridgewood 40.70382 -73.89797 Entire home/apt 350
## 183 Morningside Heights 40.80549 -73.95924 Private room 99
## 184 Williamsburg 40.71627 -73.95870 Entire home/apt 200
## 185 Park Slope 40.67994 -73.97863 Entire home/apt 150
## 186 Bedford-Stuyvesant 40.67992 -73.94750 Private room 90
## 187 Prospect Heights 40.67868 -73.97307 Private room 120
## 188 Upper East Side 40.76834 -73.95334 Private room 75
## 189 Bedford-Stuyvesant 40.68237 -73.94150 Entire home/apt 175
## 190 Chelsea 40.74031 -73.99999 Entire home/apt 125
## 191 Hell's Kitchen 40.76307 -73.99665 Entire home/apt 275
## 192 Lower East Side 40.71882 -73.98852 Entire home/apt 299
## 193 South Slope 40.66930 -73.98804 Entire home/apt 135
## 194 Upper East Side 40.77333 -73.95199 Private room 130
## 195 Lower East Side 40.72319 -73.99201 Private room 83
## 196 Chelsea 40.74859 -73.99671 Private room 123
## 197 Jamaica 40.67252 -73.76597 Private room 55
## 198 Hell's Kitchen 40.76244 -73.99271 Entire home/apt 195
## 199 Bedford-Stuyvesant 40.69546 -73.93503 Private room 80
## 200 Middle Village 40.71722 -73.87856 Entire home/apt 98
## 201 Ridgewood 40.70234 -73.89816 Private room 140
## 202 Middle Village 40.71546 -73.87854 Entire home/apt 265
## 203 Williamsburg 40.71950 -73.95976 Entire home/apt 249
## 204 Hell's Kitchen 40.76548 -73.98474 Shared room 105
## 205 Harlem 40.80234 -73.95603 Private room 200
## 206 Prospect Heights 40.67870 -73.97262 Private room 100
## 207 Harlem 40.81035 -73.94598 Entire home/apt 121
## 208 Highbridge 40.83075 -73.93058 Private room 45
## 209 East Harlem 40.79958 -73.94275 Private room 100
## 210 Williamsburg 40.71625 -73.93845 Entire home/apt 140
## 211 Bedford-Stuyvesant 40.68290 -73.93549 Private room 71
## 212 NoHo 40.72773 -73.99134 Private room 130
## 213 West Village 40.72861 -74.00490 Entire home/apt 199
## 214 Williamsburg 40.70979 -73.95162 Private room 69
## 215 Fort Greene 40.68656 -73.97525 Private room 68
## 216 East Village 40.72752 -73.98432 Entire home/apt 130
## 217 Greenpoint 40.72900 -73.95829 Entire home/apt 195
## 218 Harlem 40.81219 -73.94499 Private room 64
## 219 Ditmars Steinway 40.77185 -73.90502 Entire home/apt 140
## 220 Cobble Hill 40.68926 -73.99386 Entire home/apt 159
## 221 East Village 40.72821 -73.98701 Entire home/apt 189
## 222 Hell's Kitchen 40.76720 -73.98508 Entire home/apt 250
## 223 East Village 40.73012 -73.99053 Entire home/apt 239
## 224 Flatiron District 40.74030 -73.98498 Entire home/apt 305
## 225 Harlem 40.80931 -73.94343 Entire home/apt 155
## 226 Harlem 40.82510 -73.94287 Private room 60
## 227 Windsor Terrace 40.65850 -73.98397 Private room 135
## 228 Roosevelt Island 40.76193 -73.95010 Private room 120
## 229 Lower East Side 40.72052 -73.98589 Entire home/apt 150
## 230 Ridgewood 40.70411 -73.89934 Entire home/apt 140
## 231 Greenpoint 40.73401 -73.95967 Entire home/apt 135
## 232 Chinatown 40.71756 -73.99503 Entire home/apt 250
## 233 Midtown 40.75890 -73.96991 Entire home/apt 250
## 234 SoHo 40.72003 -74.00262 Entire home/apt 500
## 235 Greenwich Village 40.73194 -73.99474 Entire home/apt 225
## 236 East Harlem 40.79163 -73.94573 Entire home/apt 125
## 237 Harlem 40.81180 -73.94434 Private room 92
## 238 Harlem 40.81583 -73.94707 Private room 175
## 239 East Village 40.72654 -73.98049 Entire home/apt 99
## 240 Upper West Side 40.80021 -73.96071 Entire home/apt 195
## 241 East Harlem 40.80942 -73.93936 Entire home/apt 140
## 242 Little Italy 40.71961 -73.99540 Entire home/apt 135
## 243 Chelsea 40.74358 -74.00027 Entire home/apt 500
## 244 Harlem 40.80335 -73.95750 Private room 80
## 245 Chinatown 40.71445 -73.99080 Private room 120
## 246 Midtown 40.75749 -73.96897 Entire home/apt 110
## 247 East Flatbush 40.64446 -73.95030 Entire home/apt 65
## 248 East Village 40.72680 -73.99079 Entire home/apt 130
## 249 Bushwick 40.68800 -73.91710 Entire home/apt 99
## 250 Tompkinsville 40.63536 -74.08537 Private room 36
## 251 Tompkinsville 40.63627 -74.08543 Private room 37
## 252 Tompkinsville 40.63518 -74.08546 Private room 37
## 253 East Village 40.72477 -73.98161 Entire home/apt 175
## 254 Chelsea 40.74238 -73.99567 Entire home/apt 205
## 255 Greenpoint 40.72945 -73.95511 Entire home/apt 285
## 256 Williamsburg 40.70763 -73.95177 Private room 59
## 257 Tompkinsville 40.63481 -74.08519 Private room 36
## 258 Astoria 40.75384 -73.91433 Entire home/apt 99
## 259 Kensington 40.64106 -73.97426 Private room 39
## 260 Park Slope 40.66793 -73.98327 Private room 60
## 261 Clason Point 40.81309 -73.85514 Private room 90
## 262 Eastchester 40.88057 -73.83572 Entire home/apt 105
## 263 Bedford-Stuyvesant 40.68236 -73.94314 Entire home/apt 135
## 264 East Village 40.72185 -73.98246 Entire home/apt 390
## 265 Bedford-Stuyvesant 40.68503 -73.95385 Private room 70
## 266 Inwood 40.86648 -73.92630 Private room 75
## 267 Williamsburg 40.70690 -73.95467 Private room 60
## 268 East Village 40.72807 -73.98594 Entire home/apt 200
## 269 Crown Heights 40.67780 -73.94339 Private room 100
## 270 Bedford-Stuyvesant 40.68317 -73.94701 Private room 70
## 271 Crown Heights 40.67610 -73.95290 Private room 110
## 272 Crown Heights 40.67586 -73.95155 Private room 60
## 273 Little Italy 40.71702 -73.99811 Entire home/apt 90
## 274 East Village 40.72321 -73.98157 Private room 68
## 275 Upper West Side 40.77956 -73.98098 Entire home/apt 115
## 276 Bedford-Stuyvesant 40.68276 -73.95264 Private room 75
## 277 Williamsburg 40.71368 -73.96260 Private room 60
## 278 East Village 40.72956 -73.98158 Entire home/apt 129
## 279 Williamsburg 40.71069 -73.95175 Entire home/apt 130
## 280 Williamsburg 40.70863 -73.94641 Entire home/apt 95
## 281 Harlem 40.82888 -73.94307 Private room 75
## 282 Park Slope 40.67319 -73.97323 Entire home/apt 175
## 283 Carroll Gardens 40.67846 -73.99443 Entire home/apt 190
## 284 Crown Heights 40.67150 -73.94808 Private room 49
## 285 East Village 40.72681 -73.98534 Entire home/apt 212
## 286 Lower East Side 40.71904 -73.99392 Private room 95
## 287 Williamsburg 40.71031 -73.95830 Entire home/apt 140
## 288 Harlem 40.81322 -73.95306 Entire home/apt 135
## 289 Park Slope 40.67732 -73.98225 Entire home/apt 150
## 290 Gowanus 40.68076 -73.98960 Entire home/apt 190
## 291 East Harlem 40.79603 -73.94903 Entire home/apt 124
## 292 Williamsburg 40.71492 -73.96282 Entire home/apt 135
## 293 Morningside Heights 40.80393 -73.95838 Private room 122
## 294 Upper West Side 40.80082 -73.96520 Private room 109
## 295 Harlem 40.82976 -73.94867 Private room 85
## 296 Bedford-Stuyvesant 40.68300 -73.91981 Entire home/apt 145
## 297 Upper West Side 40.78971 -73.97290 Entire home/apt 195
## 298 Carroll Gardens 40.67817 -73.99495 Entire home/apt 250
## 299 Greenpoint 40.73119 -73.95578 Private room 125
## 300 Little Italy 40.71943 -73.99627 Entire home/apt 575
## 301 Upper West Side 40.78000 -73.98249 Entire home/apt 150
## 302 Bushwick 40.70514 -73.91922 Private room 70
## 303 Inwood 40.86713 -73.92811 Private room 90
## 304 East Village 40.73198 -73.98881 Private room 65
## 305 East Village 40.72542 -73.97986 Entire home/apt 500
## 306 Washington Heights 40.83494 -73.93869 Entire home/apt 250
## 307 Chinatown 40.71659 -73.98945 Entire home/apt 125
## 308 West Village 40.72966 -74.00243 Entire home/apt 200
## 309 Greenpoint 40.72898 -73.95552 Entire home/apt 229
## 310 Kingsbridge 40.87207 -73.90193 Entire home/apt 90
## 311 Upper West Side 40.77728 -73.97818 Entire home/apt 110
## 312 Greenpoint 40.72646 -73.95341 Private room 59
## 313 Williamsburg 40.71015 -73.96101 Entire home/apt 195
## 314 Williamsburg 40.71903 -73.95970 Entire home/apt 169
## 315 East Harlem 40.80892 -73.93985 Entire home/apt 113
## 316 Harlem 40.80276 -73.95670 Entire home/apt 250
## 317 Astoria 40.77635 -73.93426 Entire home/apt 115
## 318 Greenpoint 40.72488 -73.95018 Private room 55
## 319 Williamsburg 40.71398 -73.95763 Private room 69
## 320 Lower East Side 40.71876 -73.98394 Entire home/apt 150
## 321 South Slope 40.66552 -73.99019 Entire home/apt 169
## 322 Greenpoint 40.73749 -73.95292 Private room 179
## 323 Hell's Kitchen 40.76248 -73.99130 Private room 150
## 324 Boerum Hill 40.68674 -73.98876 Entire home/apt 135
## 325 Clinton Hill 40.68480 -73.96219 Entire home/apt 350
## 326 Williamsburg 40.70516 -73.95455 Private room 120
## 327 East Village 40.72329 -73.98486 Private room 71
## 328 Greenpoint 40.73776 -73.95327 Private room 349
## 329 Greenpoint 40.73738 -73.95482 Private room 349
## 330 Park Slope 40.67542 -73.98142 Entire home/apt 165
## 331 Greenpoint 40.73842 -73.95312 Private room 249
## 332 Brooklyn Heights 40.69260 -73.99832 Private room 100
## 333 Brooklyn Heights 40.69441 -73.99771 Entire home/apt 200
## 334 East Village 40.72399 -73.98374 Entire home/apt 169
## 335 Bedford-Stuyvesant 40.68240 -73.94615 Entire home/apt 185
## 336 Bushwick 40.68949 -73.91708 Entire home/apt 65
## 337 Fort Greene 40.68819 -73.97258 Entire home/apt 130
## 338 Williamsburg 40.72050 -73.96015 Entire home/apt 199
## 339 East Village 40.72451 -73.98094 Entire home/apt 225
## 340 Greenpoint 40.73813 -73.95394 Private room 179
## 341 Crown Heights 40.67591 -73.94715 Entire home/apt 150
## 342 East Village 40.72843 -73.98895 Entire home/apt 139
## 343 Two Bridges 40.71271 -73.99776 Private room 95
## 344 Crown Heights 40.66966 -73.94735 Entire home/apt 79
## 345 Lower East Side 40.71965 -73.98766 Entire home/apt 150
## 346 Clinton Hill 40.68613 -73.96536 Entire home/apt 650
## 347 Bedford-Stuyvesant 40.68048 -73.94911 Entire home/apt 90
## 348 Bedford-Stuyvesant 40.68314 -73.93963 Entire home/apt 120
## 349 Astoria 40.75961 -73.91117 Private room 80
## 350 Crown Heights 40.67473 -73.94494 Entire home/apt 100
## 351 Bedford-Stuyvesant 40.69305 -73.93185 Entire home/apt 175
## 352 Crown Heights 40.67174 -73.95663 Entire home/apt 120
## 353 Williamsburg 40.71055 -73.95098 Entire home/apt 140
## 354 Bedford-Stuyvesant 40.69465 -73.95458 Entire home/apt 200
## 355 Clinton Hill 40.68413 -73.96542 Private room 165
## 356 Kips Bay 40.73877 -73.97707 Entire home/apt 125
## 357 Chelsea 40.74893 -73.99544 Entire home/apt 130
## 358 East Harlem 40.79406 -73.94102 Shared room 65
## 359 Fort Greene 40.68795 -73.97332 Entire home/apt 123
## 360 Washington Heights 40.85295 -73.93361 Private room 67
## 361 Queens Village 40.72413 -73.76133 Private room 50
## 362 Gowanus 40.66918 -73.99187 Entire home/apt 130
## 363 Williamsburg 40.71125 -73.95613 Private room 100
## 364 Upper West Side 40.78558 -73.96960 Entire home/apt 212
## 365 Williamsburg 40.71577 -73.96053 Entire home/apt 190
## 366 Greenpoint 40.73861 -73.95485 Private room 599
## 367 East Village 40.72577 -73.98745 Entire home/apt 249
## 368 Rockaway Beach 40.58615 -73.81245 Private room 70
## 369 Crown Heights 40.67086 -73.94872 Entire home/apt 100
## 370 Harlem 40.82773 -73.95231 Private room 60
## 371 Bedford-Stuyvesant 40.68505 -73.95684 Entire home/apt 135
## 372 Greenpoint 40.72911 -73.95493 Entire home/apt 175
## 373 Upper West Side 40.77944 -73.98567 Entire home/apt 120
## 374 Midtown 40.74503 -73.98876 Entire home/apt 169
## 375 Crown Heights 40.67539 -73.96093 Entire home/apt 165
## 376 Harlem 40.80540 -73.95189 Private room 90
## 377 Upper East Side 40.78491 -73.95080 Entire home/apt 225
## 378 Fort Greene 40.69088 -73.97307 Private room 95
## 379 Crown Heights 40.67555 -73.95057 Private room 55
## 380 Hell's Kitchen 40.75835 -73.99193 Private room 85
## 381 South Slope 40.66527 -73.98860 Entire home/apt 199
## 382 Lower East Side 40.71895 -73.99434 Entire home/apt 211
## 383 Midtown 40.75579 -73.96699 Entire home/apt 145
## 384 Harlem 40.82399 -73.95328 Private room 65
## 385 Harlem 40.81822 -73.94095 Entire home/apt 99
## 386 Astoria 40.76434 -73.92132 Entire home/apt 110
## 387 Crown Heights 40.67705 -73.94925 Entire home/apt 80
## 388 Brooklyn Heights 40.69263 -73.99438 Entire home/apt 150
## 389 Bedford-Stuyvesant 40.68448 -73.92747 Entire home/apt 110
## 390 Chelsea 40.74412 -74.00208 Private room 290
## 391 East Village 40.73067 -73.98702 Private room 87
## 392 Williamsburg 40.70665 -73.94061 Entire home/apt 190
## 393 Williamsburg 40.72063 -73.95952 Entire home/apt 200
## 394 Park Slope 40.67644 -73.98082 Entire home/apt 165
## 395 Harlem 40.80481 -73.94794 Entire home/apt 110
## 396 East Village 40.72533 -73.99143 Entire home/apt 395
## 397 Bedford-Stuyvesant 40.68569 -73.93038 Private room 99
## 398 Kensington 40.64302 -73.97255 Private room 39
## 399 East Village 40.72939 -73.98857 Entire home/apt 189
## 400 Upper West Side 40.79918 -73.96607 Private room 85
## 401 Gowanus 40.66862 -73.99260 Entire home/apt 260
## 402 Harlem 40.81333 -73.94453 Entire home/apt 122
## 403 Greenpoint 40.72473 -73.95199 Entire home/apt 165
## 404 Forest Hills 40.70925 -73.85262 Entire home/apt 97
## 405 West Village 40.73215 -74.00922 Entire home/apt 170
## 406 Williamsburg 40.71109 -73.94332 Entire home/apt 125
## 407 Murray Hill 40.74630 -73.97926 Private room 130
## 408 Williamsburg 40.71823 -73.95849 Entire home/apt 225
## 409 East Flatbush 40.65100 -73.94886 Private room 50
## 410 Fort Greene 40.68626 -73.97598 Entire home/apt 170
## 411 Chelsea 40.74488 -74.00100 Entire home/apt 132
## 412 Park Slope 40.67632 -73.97616 Entire home/apt 250
## 413 Greenpoint 40.72212 -73.94254 Entire home/apt 141
## 414 Crown Heights 40.67456 -73.95151 Entire home/apt 64
## 415 Williamsburg 40.71363 -73.96019 Entire home/apt 249
## 416 Crown Heights 40.67550 -73.95878 Private room 79
## 417 East Village 40.72274 -73.97581 Entire home/apt 185
## 418 Boerum Hill 40.68580 -73.98280 Entire home/apt 120
## 419 Park Slope 40.67535 -73.97654 Entire home/apt 495
## 420 Nolita 40.72255 -73.99346 Entire home/apt 375
## 421 Nolita 40.72094 -73.99706 Entire home/apt 175
## 422 East Village 40.72485 -73.97813 Entire home/apt 150
## 423 Harlem 40.80473 -73.95320 Entire home/apt 259
## 424 East Village 40.72217 -73.98419 Private room 96
## 425 Williamsburg 40.71943 -73.95650 Entire home/apt 145
## 426 Chelsea 40.74249 -74.00329 Entire home/apt 200
## 427 Upper West Side 40.79264 -73.97294 Entire home/apt 95
## 428 Windsor Terrace 40.65749 -73.97675 Entire home/apt 250
## 429 Harlem 40.80474 -73.94688 Entire home/apt 295
## 430 Greenwich Village 40.72831 -74.00177 Entire home/apt 175
## 431 Williamsburg 40.71541 -73.94144 Entire home/apt 451
## 432 Upper West Side 40.79765 -73.96245 Entire home/apt 165
## 433 Upper East Side 40.78508 -73.95332 Entire home/apt 250
## 434 Woodlawn 40.89747 -73.86390 Entire home/apt 77
## 435 Lower East Side 40.72008 -73.98404 Entire home/apt 250
## 436 Astoria 40.75725 -73.91098 Entire home/apt 129
## 437 Williamsburg 40.71020 -73.94495 Private room 98
## 438 Park Slope 40.67359 -73.97904 Entire home/apt 150
## 439 East Village 40.72674 -73.97820 Private room 95
## 440 Harlem 40.81156 -73.94571 Private room 55
## 441 Harlem 40.80497 -73.95016 Entire home/apt 300
## 442 Sunnyside 40.73850 -73.91806 Private room 42
## 443 Greenpoint 40.72937 -73.95671 Entire home/apt 125
## 444 East Village 40.72587 -73.98438 Private room 175
## 445 Harlem 40.82426 -73.94630 Private room 75
## 446 Williamsburg 40.71624 -73.96272 Entire home/apt 255
## 447 Bedford-Stuyvesant 40.68101 -73.94081 Entire home/apt 72
## 448 Bedford-Stuyvesant 40.68669 -73.91989 Private room 165
## 449 Williamsburg 40.71534 -73.95914 Entire home/apt 165
## 450 Clinton Hill 40.68288 -73.96024 Private room 75
## 451 Greenpoint 40.72489 -73.95494 Entire home/apt 130
## 452 Williamsburg 40.70867 -73.94284 Entire home/apt 139
## 453 Bedford-Stuyvesant 40.67963 -73.93908 Private room 88
## 454 Bedford-Stuyvesant 40.67980 -73.93908 Private room 80
## 455 Chelsea 40.74346 -73.99882 Private room 150
## 456 Upper West Side 40.77724 -73.98109 Entire home/apt 200
## 457 East Village 40.72972 -73.97995 Entire home/apt 200
## 458 Sunnyside 40.74102 -73.91681 Private room 42
## 459 Williamsburg 40.71309 -73.94128 Private room 90
## 460 Harlem 40.83096 -73.94633 Entire home/apt 295
## 461 Williamsburg 40.71323 -73.95745 Entire home/apt 450
## 462 Crown Heights 40.67212 -73.95060 Entire home/apt 130
## 463 Williamsburg 40.71023 -73.96665 Private room 89
## 464 Harlem 40.80523 -73.95139 Entire home/apt 198
## 465 East Village 40.72636 -73.98917 Entire home/apt 99
## 466 Greenpoint 40.72185 -73.93956 Private room 46
## 467 SoHo 40.72351 -73.99683 Private room 140
## 468 Carroll Gardens 40.68090 -73.99233 Entire home/apt 500
## 469 Morningside Heights 40.80525 -73.95916 Private room 75
## 470 Sunnyside 40.74000 -73.91901 Private room 33
## 471 Upper West Side 40.80006 -73.96049 Entire home/apt 250
## 472 Bushwick 40.70283 -73.92131 Private room 60
## 473 Washington Heights 40.84468 -73.94303 Private room 75
## 474 Carroll Gardens 40.68252 -73.99619 Entire home/apt 350
## 475 Chelsea 40.74342 -73.99483 Entire home/apt 205
## 476 Park Slope 40.67853 -73.98089 Entire home/apt 219
## 477 Park Slope 40.67880 -73.97643 Private room 60
## 478 Upper West Side 40.77886 -73.98042 Entire home/apt 185
## 479 East Village 40.72578 -73.97879 Entire home/apt 190
## 480 South Slope 40.66085 -73.98537 Entire home/apt 105
## 481 East Harlem 40.80113 -73.94503 Entire home/apt 250
## 482 Upper West Side 40.78569 -73.97581 Entire home/apt 175
## 483 Harlem 40.82411 -73.94934 Private room 65
## 484 Bedford-Stuyvesant 40.68131 -73.95332 Entire home/apt 75
## 485 University Heights 40.85811 -73.90675 Private room 37
## 486 Williamsburg 40.70667 -73.96524 Entire home/apt 85
## 487 Gravesend 40.60452 -73.97103 Entire home/apt 106
## 488 East Harlem 40.79320 -73.94007 Entire home/apt 79
## 489 Fort Greene 40.68768 -73.97611 Private room 85
## 490 Harlem 40.80224 -73.94558 Private room 170
## 491 Lower East Side 40.71473 -73.98842 Private room 115
## 492 Harlem 40.80518 -73.95359 Private room 89
## 493 Harlem 40.80827 -73.95329 Shared room 49
## 494 Greenpoint 40.72901 -73.95812 Private room 91
## 495 Gramercy 40.73476 -73.98452 Entire home/apt 400
## 496 Bushwick 40.69055 -73.92357 Entire home/apt 150
## 497 Upper West Side 40.77350 -73.98697 Entire home/apt 2000
## 498 Crown Heights 40.67505 -73.95969 Entire home/apt 97
## 499 East Village 40.72974 -73.98201 Private room 100
## 500 Williamsburg 40.70925 -73.95425 Entire home/apt 179
## 501 Greenpoint 40.72315 -73.95226 Entire home/apt 500
## 502 Chelsea 40.73939 -73.99612 Entire home/apt 429
## 503 Kips Bay 40.74112 -73.97686 Entire home/apt 189
## 504 Lower East Side 40.72019 -73.98217 Private room 120
## 505 Nolita 40.72133 -73.99666 Entire home/apt 300
## 506 Astoria 40.75744 -73.92163 Entire home/apt 107
## 507 Astoria 40.75695 -73.92020 Entire home/apt 95
## 508 Harlem 40.82960 -73.94651 Entire home/apt 199
## 509 East Harlem 40.79056 -73.94680 Entire home/apt 120
## 510 West Village 40.73631 -73.99977 Entire home/apt 199
## 511 Allerton 40.86466 -73.85709 Entire home/apt 125
## 512 Williamsburg 40.71312 -73.96199 Private room 70
## 513 Williamsburg 40.71297 -73.94336 Private room 75
## 514 West Village 40.73712 -74.00166 Private room 100
## 515 Bedford-Stuyvesant 40.69242 -73.95097 Entire home/apt 99
## 516 Chelsea 40.73862 -73.99758 Entire home/apt 250
## 517 Williamsburg 40.71580 -73.95803 Entire home/apt 350
## 518 Prospect Heights 40.68262 -73.97299 Entire home/apt 170
## 519 East Village 40.73217 -73.98801 Entire home/apt 165
## 520 Hell's Kitchen 40.76311 -73.99388 Private room 99
## 521 Chelsea 40.74695 -74.00454 Private room 255
## 522 East New York 40.67497 -73.87305 Entire home/apt 169
## 523 Crown Heights 40.66788 -73.94813 Entire home/apt 99
## 524 Upper East Side 40.76684 -73.95944 Entire home/apt 169
## 525 Bedford-Stuyvesant 40.68967 -73.95445 Entire home/apt 160
## 526 Prospect Heights 40.67946 -73.96501 Entire home/apt 215
## 527 Park Slope 40.66944 -73.98083 Entire home/apt 130
## 528 East Village 40.72566 -73.97748 Private room 110
## 529 Hell's Kitchen 40.77090 -73.99181 Private room 150
## 530 Williamsburg 40.71943 -73.95958 Private room 65
## 531 Sunnyside 40.74249 -73.92466 Private room 75
## 532 Chelsea 40.74033 -74.00024 Entire home/apt 149
## 533 Upper West Side 40.79690 -73.96128 Private room 89
## 534 Washington Heights 40.83403 -73.94553 Private room 50
## 535 Prospect-Lefferts Gardens 40.65513 -73.95641 Private room 43
## 536 Prospect-Lefferts Gardens 40.65589 -73.95539 Private room 42
## 537 Williamsburg 40.70275 -73.94501 Private room 85
## 538 Bedford-Stuyvesant 40.68897 -73.93569 Entire home/apt 139
## 539 Park Slope 40.67617 -73.98136 Private room 105
## 540 Park Slope 40.67595 -73.98053 Entire home/apt 265
## 541 Hell's Kitchen 40.76415 -73.99067 Entire home/apt 149
## 542 Harlem 40.83127 -73.94718 Private room 68
## 543 Bedford-Stuyvesant 40.68497 -73.95592 Entire home/apt 99
## 544 Harlem 40.82922 -73.94174 Private room 75
## 545 Williamsburg 40.71137 -73.94362 Private room 100
## 546 Upper East Side 40.76739 -73.95570 Shared room 90
## 547 East Village 40.73089 -73.98195 Entire home/apt 160
## 548 Park Slope 40.67550 -73.97859 Entire home/apt 190
## 549 Bedford-Stuyvesant 40.68812 -73.94934 Private room 67
## 550 Upper East Side 40.76940 -73.95720 Entire home/apt 190
## 551 Clinton Hill 40.68634 -73.96161 Entire home/apt 248
## 552 Williamsburg 40.70930 -73.94970 Private room 100
## 553 Chinatown 40.71300 -73.99752 Private room 95
## 554 Theater District 40.75895 -73.98830 Private room 150
## 555 Bedford-Stuyvesant 40.68186 -73.94113 Entire home/apt 145
## 556 Bushwick 40.68364 -73.91076 Private room 41
## 557 Williamsburg 40.71893 -73.94280 Entire home/apt 120
## 558 Concourse Village 40.82802 -73.92039 Private room 50
## 559 Fort Greene 40.68765 -73.97073 Entire home/apt 157
## 560 Williamsburg 40.71413 -73.96596 Entire home/apt 195
## 561 Sheepshead Bay 40.58422 -73.94079 Entire home/apt 70
## 562 Williamsburg 40.71973 -73.95582 Entire home/apt 185
## 563 Bedford-Stuyvesant 40.69025 -73.93323 Entire home/apt 145
## 564 Sunnyside 40.73826 -73.92458 Private room 50
## 565 Greenpoint 40.73049 -73.96115 Entire home/apt 185
## 566 East Village 40.72956 -73.97903 Entire home/apt 250
## 567 West Village 40.73854 -74.00821 Private room 80
## 568 Theater District 40.75877 -73.98863 Entire home/apt 230
## 569 Gowanus 40.67688 -73.98590 Entire home/apt 100
## 570 Bushwick 40.70051 -73.92204 Private room 40
## 571 Lower East Side 40.71712 -73.98898 Private room 200
## 572 Emerson Hill 40.60742 -74.14388 Private room 80
## 573 Bedford-Stuyvesant 40.68741 -73.95741 Private room 79
## 574 Long Island City 40.75627 -73.92110 Entire home/apt 95
## 575 Upper West Side 40.79816 -73.96190 Entire home/apt 300
## 576 Fort Hamilton 40.61927 -74.03070 Entire home/apt 100
## 577 Harlem 40.80780 -73.95208 Private room 80
## 578 Bensonhurst 40.61922 -73.99399 Entire home/apt 110
## 579 Clinton Hill 40.68275 -73.96148 Entire home/apt 172
## 580 Lower East Side 40.71813 -73.98416 Entire home/apt 199
## 581 Lower East Side 40.71892 -73.98401 Entire home/apt 199
## 582 Harlem 40.81600 -73.95545 Private room 100
## 583 Harlem 40.82748 -73.95153 Private room 55
## 584 Bedford-Stuyvesant 40.68634 -73.95088 Private room 75
## 585 East Village 40.72229 -73.97901 Entire home/apt 146
## 586 NoHo 40.72956 -73.99287 Private room 250
## 587 Greenpoint 40.72595 -73.95298 Entire home/apt 116
## 588 Tribeca 40.71193 -74.00817 Private room 150
## 589 Park Slope 40.68012 -73.97847 Private room 120
## 590 Chelsea 40.74233 -73.99865 Entire home/apt 199
## 591 Prospect Heights 40.67424 -73.96665 Entire home/apt 150
## 592 Harlem 40.80486 -73.95298 Private room 69
## 593 Harlem 40.80307 -73.95048 Private room 300
## 594 Boerum Hill 40.68653 -73.98562 Entire home/apt 230
## 595 Midtown 40.74267 -73.98569 Entire home/apt 125
## 596 Bedford-Stuyvesant 40.68749 -73.95494 Private room 79
## 597 Fort Greene 40.68645 -73.97538 Private room 130
## 598 Clinton Hill 40.68999 -73.96711 Private room 239
## 599 Shore Acres 40.61077 -74.06824 Entire home/apt 75
## 600 Williamsburg 40.71126 -73.94576 Entire home/apt 220
## 601 Bedford-Stuyvesant 40.67855 -73.94949 Entire home/apt 80
## 602 East Village 40.72416 -73.98530 Entire home/apt 288
## 603 Bedford-Stuyvesant 40.68516 -73.92521 Entire home/apt 135
## 604 West Village 40.73507 -74.00048 Entire home/apt 225
## 605 Chinatown 40.71611 -73.99828 Private room 110
## 606 Bedford-Stuyvesant 40.67964 -73.93946 Entire home/apt 100
## 607 Hell's Kitchen 40.76189 -73.99000 Private room 130
## 608 East Village 40.72645 -73.98035 Private room 89
## 609 Sunset Park 40.66293 -73.99833 Entire home/apt 200
## 610 Bedford-Stuyvesant 40.69046 -73.95167 Entire home/apt 80
## 611 Concourse 40.83001 -73.92158 Private room 50
## 612 East Harlem 40.79239 -73.94535 Entire home/apt 135
## 613 East Village 40.72709 -73.98274 Private room 90
## 614 SoHo 40.72599 -74.00168 Private room 270
## 615 Bedford-Stuyvesant 40.68309 -73.94219 Entire home/apt 110
## 616 East Harlem 40.79442 -73.93433 Entire home/apt 145
## 617 Hell's Kitchen 40.76166 -73.99675 Entire home/apt 179
## 618 Ridgewood 40.70163 -73.90867 Private room 55
## 619 Midtown 40.75575 -73.96842 Private room 110
## 620 Harlem 40.80903 -73.94197 Entire home/apt 325
## 621 Long Island City 40.74581 -73.95295 Private room 75
## 622 South Slope 40.66414 -73.98574 Entire home/apt 300
## 623 West Village 40.74000 -74.00381 Private room 130
## 624 Midtown 40.75348 -73.97065 Entire home/apt 190
## 625 Lower East Side 40.72066 -73.98506 Entire home/apt 200
## 626 Williamsburg 40.71746 -73.95497 Entire home/apt 180
## 627 DUMBO 40.70257 -73.98470 Entire home/apt 350
## 628 East Village 40.72264 -73.98370 Entire home/apt 160
## 629 Kips Bay 40.73833 -73.98186 Entire home/apt 195
## 630 Greenwich Village 40.73268 -73.99255 Entire home/apt 241
## 631 Chinatown 40.71892 -73.99628 Entire home/apt 300
## 632 Ditmars Steinway 40.77679 -73.91687 Entire home/apt 75
## 633 Lower East Side 40.71693 -73.98948 Entire home/apt 100
## 634 Gramercy 40.73685 -73.98359 Entire home/apt 399
## 635 Fort Greene 40.68501 -73.97019 Private room 85
## 636 Prospect-Lefferts Gardens 40.66068 -73.96003 Entire home/apt 80
## 637 Prospect Heights 40.67722 -73.96542 Private room 55
## 638 Clinton Hill 40.68975 -73.96703 Private room 438
## 639 Bedford-Stuyvesant 40.69221 -73.95866 Entire home/apt 110
## 640 West Village 40.72969 -74.00635 Entire home/apt 200
## 641 Clinton Hill 40.68930 -73.96602 Private room 279
## 642 Williamsburg 40.70832 -73.94157 Entire home/apt 137
## 643 Bedford-Stuyvesant 40.68016 -73.94878 Entire home/apt 280
## 644 Williamsburg 40.70875 -73.95508 Entire home/apt 199
## 645 Inwood 40.85888 -73.92886 Private room 71
## 646 Kingsbridge 40.86790 -73.90023 Private room 42
## 647 Bedford-Stuyvesant 40.68890 -73.95383 Entire home/apt 180
## 648 Chelsea 40.75127 -73.99637 Entire home/apt 226
## 649 Crown Heights 40.67607 -73.94421 Private room 85
## 650 Gramercy 40.73834 -73.98230 Entire home/apt 135
## 651 Elmhurst 40.73470 -73.88066 Entire home/apt 79
## 652 Lower East Side 40.71876 -73.98851 Entire home/apt 154
## 653 Greenpoint 40.73787 -73.95385 Entire home/apt 199
## 654 West Village 40.73066 -74.00287 Entire home/apt 700
## 655 West Village 40.73291 -74.00059 Entire home/apt 246
## 656 Washington Heights 40.85099 -73.92822 Private room 125
## 657 Bedford-Stuyvesant 40.68707 -73.91918 Private room 100
## 658 Williamsburg 40.71840 -73.96019 Entire home/apt 295
## 659 Crown Heights 40.67495 -73.95563 Private room 150
## 660 Chinatown 40.71582 -73.99902 Entire home/apt 119
## 661 Harlem 40.81068 -73.94288 Private room 125
## 662 Harlem 40.81122 -73.94279 Entire home/apt 400
## 663 Greenwich Village 40.73129 -73.99944 Entire home/apt 850
## 664 Williamsburg 40.71628 -73.95737 Private room 129
## 665 Upper West Side 40.78558 -73.97260 Private room 140
## 666 Chinatown 40.71460 -73.99100 Private room 115
## 667 East Harlem 40.79493 -73.94462 Entire home/apt 200
## 668 Sunset Park 40.66230 -73.99049 Entire home/apt 96
## 669 Greenpoint 40.73693 -73.95284 Entire home/apt 199
## 670 Greenpoint 40.73641 -73.95330 Entire home/apt 199
## 671 Greenpoint 40.73794 -73.95254 Entire home/apt 199
## 672 Brighton Beach 40.58147 -73.96726 Private room 69
## 673 Upper West Side 40.79771 -73.96323 Entire home/apt 185
## 674 Harlem 40.81512 -73.94692 Private room 81
## 675 Greenpoint 40.73730 -73.95323 Entire home/apt 199
## 676 Greenpoint 40.73708 -73.95271 Entire home/apt 199
## 677 Greenpoint 40.73652 -73.95236 Entire home/apt 199
## 678 Greenpoint 40.73693 -73.95316 Entire home/apt 199
## 679 Greenpoint 40.73784 -73.95324 Entire home/apt 199
## 680 Greenpoint 40.73674 -73.95247 Private room 349
## 681 Greenpoint 40.73783 -73.95259 Private room 249
## 682 Greenpoint 40.73714 -73.95296 Private room 299
## 683 Greenpoint 40.73731 -73.95450 Private room 179
## 684 Jackson Heights 40.74965 -73.89344 Private room 54
## 685 Greenpoint 40.73793 -73.95316 Private room 599
## 686 Clinton Hill 40.68197 -73.96549 Entire home/apt 110
## 687 Bushwick 40.70271 -73.91566 Entire home/apt 220
## 688 Williamsburg 40.71160 -73.95290 Private room 89
## 689 Bedford-Stuyvesant 40.69241 -73.94885 Entire home/apt 170
## 690 Nolita 40.72004 -73.99424 Entire home/apt 495
## 691 Sunnyside 40.74511 -73.92398 Entire home/apt 80
## 692 Chelsea 40.74599 -74.00253 Entire home/apt 760
## 693 Cobble Hill 40.68946 -73.99385 Private room 98
## 694 Bedford-Stuyvesant 40.68226 -73.95473 Entire home/apt 125
## 695 Cypress Hills 40.67855 -73.88960 Private room 48
## 696 Williamsburg 40.71408 -73.94890 Private room 64
## 697 Clinton Hill 40.68618 -73.96144 Entire home/apt 154
## 698 Park Slope 40.67379 -73.98454 Entire home/apt 139
## 699 St. Albans 40.70554 -73.76637 Private room 75
## 700 West Village 40.74031 -74.00532 Entire home/apt 325
## 701 Chelsea 40.74618 -74.00392 Entire home/apt 195
## 702 Harlem 40.81872 -73.94567 Private room 58
## 703 Arrochar 40.59251 -74.06479 Entire home/apt 250
## 704 Arrochar 40.59101 -74.06685 Private room 50
## 705 Arrochar 40.59262 -74.06659 Entire home/apt 125
## 706 Fort Greene 40.69142 -73.97203 Entire home/apt 70
## 707 Upper East Side 40.76928 -73.95021 Entire home/apt 189
## 708 Bedford-Stuyvesant 40.68338 -73.95289 Entire home/apt 130
## 709 West Village 40.72953 -74.00462 Entire home/apt 145
## 710 Financial District 40.70523 -74.01345 Private room 101
## 711 Chelsea 40.74025 -74.00161 Private room 95
## 712 West Village 40.73378 -74.00429 Entire home/apt 375
## 713 Lower East Side 40.72087 -73.99022 Entire home/apt 153
## 714 East Flatbush 40.64468 -73.94219 Entire home/apt 92
## 715 Lower East Side 40.71930 -73.98966 Private room 80
## 716 West Village 40.73312 -74.00420 Entire home/apt 300
## 717 Fort Greene 40.69778 -73.97676 Entire home/apt 145
## 718 East Village 40.72534 -73.98591 Private room 88
## 719 Harlem 40.82151 -73.94516 Entire home/apt 155
## 720 Williamsburg 40.72059 -73.95670 Entire home/apt 185
## 721 Sunnyside 40.74558 -73.92324 Private room 73
## 722 Upper West Side 40.79433 -73.97650 Entire home/apt 225
## 723 Morningside Heights 40.81055 -73.95549 Private room 85
## 724 Crown Heights 40.67110 -73.95231 Private room 99
## 725 Cypress Hills 40.67962 -73.88928 Private room 48
## 726 Theater District 40.76217 -73.98411 Entire home/apt 200
## 727 Upper East Side 40.76128 -73.96463 Entire home/apt 485
## 728 Nolita 40.72313 -73.99438 Entire home/apt 310
## 729 Williamsburg 40.71770 -73.95576 Entire home/apt 110
## 730 Upper West Side 40.78448 -73.97289 Entire home/apt 109
## 731 Upper West Side 40.78304 -73.97447 Entire home/apt 167
## 732 Fort Greene 40.68737 -73.97125 Entire home/apt 147
## 733 Chelsea 40.74139 -74.00050 Entire home/apt 220
## 734 Lower East Side 40.71992 -73.98773 Entire home/apt 195
## 735 Little Italy 40.71905 -73.99677 Entire home/apt 199
## 736 Financial District 40.70741 -74.00102 Private room 65
## 737 Rego Park 40.73349 -73.86009 Private room 55
## 738 Wakefield 40.89557 -73.84470 Private room 50
## 739 Kensington 40.64277 -73.97296 Private room 60
## 740 East Harlem 40.79111 -73.94466 Private room 99
## 741 Harlem 40.79951 -73.95257 Entire home/apt 130
## 742 Williamsburg 40.71647 -73.93974 Entire home/apt 290
## 743 Chelsea 40.75114 -74.00195 Entire home/apt 350
## 744 Crown Heights 40.66431 -73.93216 Private room 50
## 745 Long Island City 40.74579 -73.95012 Private room 96
## 746 Bushwick 40.70278 -73.92673 Private room 45
## 747 Woodside 40.74409 -73.91122 Private room 85
## 748 Bedford-Stuyvesant 40.68812 -73.93254 Private room 34
## 749 East Village 40.72454 -73.99151 Entire home/apt 250
## 750 Williamsburg 40.71073 -73.96207 Private room 190
## 751 Williamsburg 40.71028 -73.96128 Private room 75
## 752 Prospect-Lefferts Gardens 40.65772 -73.96131 Entire home/apt 93
## 753 Bedford-Stuyvesant 40.68884 -73.95059 Private room 60
## 754 Bedford-Stuyvesant 40.68650 -73.95372 Private room 65
## 755 Midtown 40.75282 -73.97315 Entire home/apt 125
## 756 Upper East Side 40.76373 -73.96897 Entire home/apt 300
## 757 Greenwich Village 40.73388 -73.99452 Entire home/apt 150
## 758 Washington Heights 40.85774 -73.92901 Entire home/apt 56
## 759 East Village 40.72257 -73.98465 Entire home/apt 299
## 760 Greenpoint 40.72723 -73.95728 Private room 60
## 761 Fort Greene 40.69135 -73.97321 Entire home/apt 88
## 762 Williamsburg 40.70513 -73.95505 Private room 60
## 763 West Village 40.73301 -74.00268 Entire home/apt 1300
## 764 East Harlem 40.79793 -73.93612 Private room 200
## 765 Harlem 40.80285 -73.95166 Private room 99
## 766 Bushwick 40.70642 -73.91665 Entire home/apt 110
## 767 Clinton Hill 40.68156 -73.96537 Entire home/apt 135
## 768 Upper East Side 40.77368 -73.95198 Entire home/apt 110
## 769 Bedford-Stuyvesant 40.68631 -73.93702 Entire home/apt 165
## 770 Sunset Park 40.65992 -73.99042 Entire home/apt 127
## 771 Prospect Heights 40.67847 -73.97038 Entire home/apt 402
## 772 Harlem 40.81371 -73.95585 Private room 85
## 773 Greenpoint 40.72868 -73.95835 Private room 75
## 774 East Village 40.73168 -73.98662 Entire home/apt 139
## 775 Prospect-Lefferts Gardens 40.65689 -73.95330 Entire home/apt 70
## 776 East Harlem 40.79280 -73.93967 Private room 50
## 777 Astoria 40.77117 -73.91905 Private room 30
## 778 West Village 40.73729 -74.00807 Entire home/apt 250
## 779 Crown Heights 40.66984 -73.95141 Private room 64
## 780 Harlem 40.82977 -73.94071 Entire home/apt 300
## 781 Bedford-Stuyvesant 40.68492 -73.95489 Entire home/apt 800
## 782 Bedford-Stuyvesant 40.68255 -73.91957 Entire home/apt 100
## 783 Crown Heights 40.67392 -73.94662 Entire home/apt 250
## 784 West Village 40.73879 -74.00425 Entire home/apt 200
## 785 Greenpoint 40.73321 -73.95587 Entire home/apt 140
## 786 Harlem 40.80671 -73.95082 Private room 130
## 787 Kensington 40.64330 -73.97386 Entire home/apt 90
## 788 Chinatown 40.71601 -73.99123 Entire home/apt 90
## 789 Bedford-Stuyvesant 40.68106 -73.92920 Private room 97
## 790 Gowanus 40.68131 -73.98879 Entire home/apt 91
## 791 Park Slope 40.67264 -73.98136 Private room 125
## 792 Cypress Hills 40.67889 -73.86404 Private room 75
## 793 East Village 40.72410 -73.97899 Entire home/apt 180
## 794 Williamsburg 40.70766 -73.95191 Entire home/apt 300
## 795 Williamsburg 40.71422 -73.94840 Entire home/apt 100
## 796 Hell's Kitchen 40.76001 -73.99133 Entire home/apt 175
## 797 South Slope 40.66441 -73.97974 Private room 65
## 798 West Village 40.73362 -74.00923 Entire home/apt 240
## 799 East Village 40.73119 -73.98819 Private room 300
## 800 Chelsea 40.74494 -73.99980 Entire home/apt 385
## 801 Bushwick 40.69657 -73.91290 Private room 47
## 802 Crown Heights 40.67106 -73.95463 Entire home/apt 110
## 803 Harlem 40.80748 -73.95589 Private room 75
## 804 Bedford-Stuyvesant 40.68991 -73.93179 Entire home/apt 100
## 805 Hell's Kitchen 40.76147 -73.99152 Entire home/apt 165
## 806 Bedford-Stuyvesant 40.68174 -73.91921 Entire home/apt 300
## 807 Cobble Hill 40.68538 -74.00056 Entire home/apt 140
## 808 Williamsburg 40.70839 -73.94289 Entire home/apt 120
## 809 Fort Greene 40.69018 -73.98107 Entire home/apt 175
## 810 Carroll Gardens 40.68128 -73.99522 Entire home/apt 275
## 811 East Village 40.72948 -73.98694 Entire home/apt 179
## 812 Carroll Gardens 40.68353 -73.99140 Entire home/apt 189
## 813 East Village 40.72506 -73.98865 Entire home/apt 219
## 814 West Village 40.72891 -74.00293 Entire home/apt 450
## 815 SoHo 40.72530 -73.99916 Entire home/apt 249
## 816 Long Island City 40.75295 -73.93228 Private room 65
## 817 Greenpoint 40.71947 -73.95252 Entire home/apt 250
## 818 Chinatown 40.71283 -73.99703 Entire home/apt 139
## 819 Upper West Side 40.77338 -73.98887 Entire home/apt 209
## 820 Crown Heights 40.67385 -73.94405 Entire home/apt 120
## 821 Astoria 40.76856 -73.91828 Entire home/apt 70
## 822 West Village 40.73908 -74.00378 Private room 90
## 823 Hell's Kitchen 40.76250 -73.98690 Entire home/apt 199
## 824 Bushwick 40.69755 -73.91187 Private room 50
## 825 Crown Heights 40.67335 -73.96000 Entire home/apt 100
## 826 Harlem 40.80497 -73.95146 Entire home/apt 110
## 827 Williamsburg 40.70736 -73.94331 Entire home/apt 157
## 828 Greenpoint 40.73683 -73.95430 Entire home/apt 199
## 829 Astoria 40.76444 -73.92607 Entire home/apt 192
## 830 Greenpoint 40.73890 -73.95395 Entire home/apt 199
## 831 Upper West Side 40.77611 -73.97808 Entire home/apt 150
## 832 Greenpoint 40.73806 -73.95462 Entire home/apt 199
## 833 Greenpoint 40.73661 -73.95479 Entire home/apt 199
## 834 Greenpoint 40.73857 -73.95435 Entire home/apt 199
## 835 Williamsburg 40.71100 -73.96225 Entire home/apt 105
## 836 Williamsburg 40.70686 -73.95365 Private room 135
## 837 Greenpoint 40.73857 -73.95299 Entire home/apt 199
## 838 Williamsburg 40.71095 -73.95239 Private room 125
## 839 Williamsburg 40.70918 -73.94881 Private room 60
## 840 Williamsburg 40.71685 -73.96573 Entire home/apt 85
## 841 Upper West Side 40.79090 -73.96762 Entire home/apt 300
## 842 Williamsburg 40.71143 -73.94159 Private room 75
## 843 Elmhurst 40.73700 -73.87444 Private room 55
## 844 Crown Heights 40.66469 -73.96091 Private room 44
## 845 Bedford-Stuyvesant 40.68855 -73.95405 Private room 55
## 846 Williamsburg 40.71653 -73.95554 Private room 30
## 847 Fort Greene 40.69309 -73.97074 Private room 35
## 848 Williamsburg 40.70638 -73.96627 Private room 70
## 849 Williamsburg 40.71629 -73.95786 Entire home/apt 130
## 850 Bedford-Stuyvesant 40.68622 -73.94675 Private room 52
## 851 Williamsburg 40.71635 -73.94609 Private room 75
## 852 Upper East Side 40.77272 -73.95307 Private room 190
## 853 SoHo 40.72509 -74.00304 Entire home/apt 250
## 854 East New York 40.66795 -73.89232 Entire home/apt 100
## 855 Greenpoint 40.72582 -73.95843 Entire home/apt 130
## 856 Harlem 40.80637 -73.95433 Private room 140
## 857 Flatbush 40.64387 -73.96855 Private room 75
## 858 East Harlem 40.79680 -73.93611 Entire home/apt 150
## 859 East Harlem 40.79596 -73.94463 Entire home/apt 90
## 860 Upper West Side 40.78012 -73.98439 Entire home/apt 295
## 861 Upper West Side 40.77508 -73.97990 Entire home/apt 150
## 862 Williamsburg 40.71532 -73.96064 Entire home/apt 180
## 863 Fort Greene 40.68786 -73.97421 Private room 135
## 864 Bushwick 40.70793 -73.91987 Private room 65
## 865 Upper West Side 40.79044 -73.97513 Private room 99
## 866 Greenpoint 40.72668 -73.95762 Private room 149
## 867 Clifton 40.62318 -74.07848 Private room 59
## 868 Harlem 40.82286 -73.94596 Private room 75
## 869 Harlem 40.82451 -73.94457 Private room 75
## 870 Bedford-Stuyvesant 40.69348 -73.95927 Private room 75
## 871 Upper West Side 40.78443 -73.97399 Entire home/apt 109
## 872 Crown Heights 40.67679 -73.95639 Entire home/apt 225
## 873 East Harlem 40.79107 -73.94381 Private room 86
## 874 Ridgewood 40.70215 -73.91139 Private room 52
## 875 Prospect Heights 40.67339 -73.96519 Private room 100
## 876 Lower East Side 40.72209 -73.99274 Entire home/apt 99
## 877 East Village 40.73171 -73.98717 Private room 89
## 878 Bedford-Stuyvesant 40.69213 -73.95100 Entire home/apt 135
## 879 West Village 40.73237 -74.00608 Entire home/apt 199
## 880 Kensington 40.64354 -73.97777 Entire home/apt 89
## 881 Harlem 40.80343 -73.95310 Private room 110
## 882 Bushwick 40.70462 -73.92280 Entire home/apt 120
## 883 Williamsburg 40.71394 -73.96267 Private room 59
## 884 Bay Ridge 40.63390 -74.02035 Private room 49
## 885 Greenpoint 40.73028 -73.95927 Private room 79
## 886 Harlem 40.80760 -73.94433 Entire home/apt 135
## 887 South Slope 40.66485 -73.98343 Entire home/apt 185
## 888 Williamsburg 40.71279 -73.95852 Entire home/apt 225
## 889 Gramercy 40.73294 -73.98282 Entire home/apt 245
## 890 Washington Heights 40.83456 -73.94570 Entire home/apt 115
## 891 Williamsburg 40.72091 -73.95814 Entire home/apt 325
## 892 Williamsburg 40.71819 -73.95414 Private room 95
## 893 West Village 40.73887 -74.00342 Private room 120
## 894 Upper West Side 40.77892 -73.98238 Entire home/apt 499
## 895 Williamsburg 40.71336 -73.96192 Private room 75
## 896 Upper East Side 40.77688 -73.96177 Private room 109
## 897 Williamsburg 40.71368 -73.94478 Entire home/apt 160
## 898 Upper East Side 40.77610 -73.95265 Entire home/apt 219
## 899 Upper East Side 40.77471 -73.95574 Entire home/apt 159
## 900 Clinton Hill 40.68625 -73.96446 Private room 180
## 901 East Village 40.72500 -73.98851 Entire home/apt 150
## 902 Kips Bay 40.74016 -73.97665 Entire home/apt 106
## 903 Midtown 40.75023 -73.98293 Entire home/apt 299
## 904 Upper West Side 40.78867 -73.96809 Entire home/apt 179
## 905 Crown Heights 40.66604 -73.95914 Entire home/apt 165
## 906 Flatbush 40.63593 -73.96076 Entire home/apt 500
## 907 Chinatown 40.71638 -73.99167 Entire home/apt 250
## 908 Inwood 40.86658 -73.92558 Private room 87
## 909 Williamsburg 40.71179 -73.96449 Private room 79
## 910 Hell's Kitchen 40.76186 -73.99165 Private room 75
## 911 Williamsburg 40.71417 -73.95917 Entire home/apt 200
## 912 Harlem 40.82772 -73.93877 Private room 80
## 913 East Flatbush 40.63602 -73.94607 Entire home/apt 115
## 914 East Flatbush 40.63759 -73.94590 Entire home/apt 115
## 915 East Flatbush 40.63611 -73.94637 Entire home/apt 120
## 916 Harlem 40.80300 -73.95278 Private room 125
## 917 Upper West Side 40.79526 -73.96550 Entire home/apt 387
## 918 Hell's Kitchen 40.75763 -73.99482 Private room 95
## 919 Upper West Side 40.77577 -73.98258 Entire home/apt 99
## 920 Upper East Side 40.77631 -73.95289 Entire home/apt 121
## 921 Hell's Kitchen 40.76774 -73.98920 Entire home/apt 350
## 922 Harlem 40.81169 -73.94355 Private room 75
## 923 Hell's Kitchen 40.75782 -73.99349 Private room 95
## 924 Harlem 40.83177 -73.95000 Private room 89
## 925 West Village 40.73104 -74.00879 Private room 195
## 926 Flatiron District 40.74253 -73.99160 Private room 160
## 927 Sunset Park 40.64372 -74.02066 Entire home/apt 70
## 928 Greenwich Village 40.72886 -74.00013 Private room 100
## 929 Lower East Side 40.71868 -73.99017 Entire home/apt 140
## 930 East Village 40.72143 -73.98117 Entire home/apt 189
## 931 Williamsburg 40.71682 -73.96369 Private room 160
## 932 Park Slope 40.67725 -73.98210 Entire home/apt 178
## 933 Crown Heights 40.66888 -73.95292 Entire home/apt 145
## 934 Park Slope 40.67188 -73.97533 Entire home/apt 125
## 935 Chelsea 40.74964 -73.99158 Entire home/apt 265
## 936 Prospect-Lefferts Gardens 40.65846 -73.95057 Private room 77
## 937 Upper East Side 40.78164 -73.94717 Private room 60
## 938 Chinatown 40.71515 -73.99029 Entire home/apt 129
## 939 East Village 40.72986 -73.97913 Entire home/apt 199
## 940 Prospect-Lefferts Gardens 40.66039 -73.95937 Private room 92
## 941 Crown Heights 40.66898 -73.95710 Entire home/apt 185
## 942 Midtown 40.75407 -73.96713 Entire home/apt 110
## 943 Williamsburg 40.70712 -73.94013 Private room 65
## 944 Midtown 40.74553 -73.98943 Private room 135
## 945 Upper East Side 40.77584 -73.95020 Shared room 115
## 946 Harlem 40.79967 -73.95156 Private room 175
## 947 Upper West Side 40.80142 -73.96931 Private room 3000
## 948 Williamsburg 40.70507 -73.93530 Private room 72
## 949 Park Slope 40.67962 -73.97655 Private room 80
## 950 Crown Heights 40.66847 -73.94875 Entire home/apt 125
## 951 Greenpoint 40.73760 -73.95678 Private room 120
## 952 Williamsburg 40.71148 -73.95573 Private room 94
## 953 Prospect Heights 40.67425 -73.96514 Private room 56
## 954 East Village 40.72899 -73.97792 Entire home/apt 549
## 955 Greenpoint 40.72488 -73.94013 Entire home/apt 190
## 956 Williamsburg 40.72212 -73.95696 Private room 129
## 957 Bedford-Stuyvesant 40.68534 -73.93433 Entire home/apt 85
## 958 Graniteville 40.62109 -74.16534 Private room 20
## 959 Upper West Side 40.78161 -73.97898 Entire home/apt 145
## 960 Hell's Kitchen 40.75643 -73.99046 Entire home/apt 200
## 961 Park Slope 40.67407 -73.98111 Entire home/apt 125
## 962 Sheepshead Bay 40.59721 -73.95149 Entire home/apt 50
## 963 Harlem 40.80491 -73.94866 Private room 160
## 964 Harlem 40.80334 -73.94805 Private room 180
## 965 Inwood 40.87039 -73.91611 Private room 100
## 966 Williamsburg 40.70400 -73.93285 Private room 70
## 967 Spuyten Duyvil 40.87991 -73.91673 Entire home/apt 120
## 968 Stapleton 40.62766 -74.07988 Private room 110
## 969 Upper East Side 40.76850 -73.96034 Private room 105
## 970 Midtown 40.76082 -73.97548 Entire home/apt 250
## 971 Kips Bay 40.74238 -73.98122 Private room 74
## 972 Harlem 40.80151 -73.95220 Entire home/apt 165
## 973 Washington Heights 40.83434 -73.94027 Private room 99
## 974 Gramercy 40.73677 -73.98084 Entire home/apt 125
## 975 Briarwood 40.71151 -73.81561 Private room 75
## 976 Ozone Park 40.68581 -73.84642 Shared room 45
## 977 Columbia St 40.68636 -74.00345 Entire home/apt 159
## 978 Williamsburg 40.70994 -73.96573 Private room 45
## 979 Hell's Kitchen 40.76013 -73.99007 Private room 104
## 980 Financial District 40.70621 -74.01525 Entire home/apt 225
## 981 Nolita 40.72172 -73.99689 Private room 100
## 982 Greenpoint 40.72049 -73.95221 Private room 90
## 983 Briarwood 40.71068 -73.81577 Private room 75
## 984 Flatiron District 40.74125 -73.98862 Entire home/apt 350
## 985 Harlem 40.83091 -73.94223 Entire home/apt 135
## 986 Upper West Side 40.78240 -73.98294 Private room 125
## 987 East Village 40.72634 -73.98267 Entire home/apt 225
## 988 Harlem 40.82703 -73.94311 Private room 85
## 989 Upper East Side 40.78521 -73.95489 Entire home/apt 200
## 990 South Slope 40.66106 -73.98316 Entire home/apt 250
## 991 Lower East Side 40.72123 -73.98996 Private room 90
## 992 Bushwick 40.70339 -73.92945 Entire home/apt 130
## 993 Prospect-Lefferts Gardens 40.66009 -73.96237 Entire home/apt 90
## 994 Carroll Gardens 40.67939 -73.99398 Entire home/apt 298
## 995 Upper East Side 40.76494 -73.95804 Entire home/apt 300
## 996 Harlem 40.80192 -73.95827 Private room 125
## 997 East Harlem 40.79314 -73.94853 Private room 125
## 998 Midtown 40.74530 -73.99056 Private room 145
## 999 East Village 40.72812 -73.97966 Entire home/apt 147
## 1000 Williamsburg 40.70930 -73.96484 Private room 123
## 1001 Windsor Terrace 40.64791 -73.97904 Entire home/apt 88
## 1002 Long Island City 40.75453 -73.93377 Entire home/apt 215
## 1003 SoHo 40.72057 -73.99976 Entire home/apt 225
## 1004 Nolita 40.72340 -73.99439 Entire home/apt 269
## 1005 Williamsburg 40.71121 -73.94669 Entire home/apt 145
## 1006 Bushwick 40.68979 -73.91661 Private room 75
## 1007 Greenwich Village 40.73448 -73.99797 Entire home/apt 145
## 1008 Prospect-Lefferts Gardens 40.65937 -73.95906 Entire home/apt 229
## 1009 Boerum Hill 40.68599 -73.98826 Entire home/apt 300
## 1010 East Harlem 40.79477 -73.95046 Private room 100
## 1011 Brighton Beach 40.57810 -73.95455 Entire home/apt 75
## 1012 Nolita 40.72278 -73.99670 Entire home/apt 225
## 1013 Williamsburg 40.71472 -73.96225 Private room 120
## 1014 Crown Heights 40.66924 -73.94406 Entire home/apt 160
## 1015 Crown Heights 40.67259 -73.95489 Entire home/apt 125
## 1016 Bedford-Stuyvesant 40.69321 -73.94420 Entire home/apt 95
## 1017 Williamsburg 40.71348 -73.94447 Private room 119
## 1018 Midtown 40.75816 -73.96457 Entire home/apt 275
## 1019 Financial District 40.70537 -74.00992 Entire home/apt 160
## 1020 Clinton Hill 40.68722 -73.96289 Entire home/apt 500
## 1021 East Village 40.73111 -73.98528 Entire home/apt 175
## 1022 Greenpoint 40.72212 -73.94389 Entire home/apt 87
## 1023 Park Slope 40.66626 -73.97933 Entire home/apt 160
## 1024 East Village 40.72978 -73.97930 Private room 125
## 1025 Bedford-Stuyvesant 40.68838 -73.94193 Entire home/apt 90
## 1026 Lower East Side 40.71804 -73.98565 Entire home/apt 200
## 1027 Bedford-Stuyvesant 40.68559 -73.93896 Entire home/apt 250
## 1028 Upper West Side 40.77995 -73.98342 Private room 99
## 1029 Hell's Kitchen 40.75590 -73.99469 Entire home/apt 325
## 1030 Hell's Kitchen 40.76291 -73.99202 Private room 99
## 1031 Midtown 40.74406 -73.98273 Entire home/apt 325
## 1032 West Village 40.73041 -74.00498 Entire home/apt 129
## 1033 Crown Heights 40.67640 -73.96218 Entire home/apt 130
## 1034 Vinegar Hill 40.70279 -73.98284 Entire home/apt 190
## 1035 Crown Heights 40.67436 -73.95600 Private room 55
## 1036 Washington Heights 40.83559 -73.94095 Private room 60
## 1037 Upper West Side 40.79234 -73.96482 Entire home/apt 250
## 1038 Washington Heights 40.83451 -73.93885 Entire home/apt 275
## 1039 Long Island City 40.74826 -73.94633 Private room 50
## 1040 Prospect Heights 40.67763 -73.97185 Entire home/apt 125
## 1041 Clinton Hill 40.68472 -73.96691 Entire home/apt 150
## 1042 East New York 40.65408 -73.87883 Entire home/apt 70
## 1043 Gowanus 40.67302 -73.98756 Entire home/apt 138
## 1044 Financial District 40.70633 -74.00974 Entire home/apt 265
## 1045 Upper East Side 40.77548 -73.95183 Private room 145
## 1046 West Village 40.73775 -74.00344 Entire home/apt 151
## 1047 Financial District 40.70917 -74.01460 Entire home/apt 208
## 1048 Williamsburg 40.71080 -73.96226 Entire home/apt 200
## 1049 East Village 40.72507 -73.98861 Private room 110
## 1050 Harlem 40.82726 -73.94440 Private room 58
## 1051 Harlem 40.82669 -73.94281 Private room 55
## 1052 Park Slope 40.67078 -73.98815 Entire home/apt 105
## 1053 East Village 40.72800 -73.97903 Entire home/apt 350
## 1054 Prospect-Lefferts Gardens 40.65814 -73.96181 Entire home/apt 150
## 1055 Williamsburg 40.71517 -73.94292 Private room 55
## 1056 Park Slope 40.66859 -73.98235 Entire home/apt 299
## 1057 Ridgewood 40.70054 -73.90255 Entire home/apt 77
## 1058 Chelsea 40.74572 -73.99965 Entire home/apt 125
## 1059 Upper West Side 40.78911 -73.97396 Entire home/apt 395
## 1060 Bedford-Stuyvesant 40.68813 -73.92817 Entire home/apt 189
## 1061 Mott Haven 40.81128 -73.92399 Private room 49
## 1062 Upper West Side 40.77593 -73.97699 Entire home/apt 90
## 1063 Kips Bay 40.73903 -73.97975 Private room 100
## 1064 Williamsburg 40.71164 -73.96500 Entire home/apt 299
## 1065 Jackson Heights 40.75193 -73.87873 Private room 75
## 1066 Jackson Heights 40.74906 -73.89377 Private room 69
## 1067 Williamsburg 40.71756 -73.95282 Private room 90
## 1068 Harlem 40.81790 -73.94319 Private room 94
## 1069 Windsor Terrace 40.64814 -73.97304 Private room 80
## 1070 Longwood 40.81611 -73.89909 Entire home/apt 100
## 1071 Canarsie 40.62897 -73.90334 Private room 39
## 1072 Upper West Side 40.77555 -73.97670 Entire home/apt 250
## 1073 Sunset Park 40.63970 -74.01620 Private room 55
## 1074 Park Slope 40.67267 -73.98348 Private room 110
## 1075 Kensington 40.64205 -73.97173 Entire home/apt 200
## 1076 Windsor Terrace 40.66034 -73.98290 Entire home/apt 142
## 1077 Clinton Hill 40.68699 -73.96350 Private room 70
## 1078 Greenpoint 40.72183 -73.94908 Entire home/apt 260
## 1079 Lower East Side 40.71986 -73.98690 Entire home/apt 225
## 1080 Bedford-Stuyvesant 40.68881 -73.95405 Private room 59
## 1081 Harlem 40.81669 -73.94267 Private room 65
## 1082 Inwood 40.86717 -73.91940 Entire home/apt 99
## 1083 East Village 40.72981 -73.98318 Entire home/apt 239
## 1084 Inwood 40.86929 -73.92421 Entire home/apt 50
## 1085 Harlem 40.80533 -73.95204 Private room 65
## 1086 Chelsea 40.74760 -73.99698 Entire home/apt 139
## 1087 West Village 40.73357 -74.00723 Entire home/apt 174
## 1088 West Village 40.73204 -74.00189 Entire home/apt 315
## 1089 Harlem 40.81713 -73.94217 Private room 75
## 1090 East Village 40.72917 -73.98811 Entire home/apt 210
## 1091 Williamsburg 40.70610 -73.94531 Private room 55
## 1092 Williamsburg 40.70147 -73.94378 Entire home/apt 229
## 1093 Upper East Side 40.76719 -73.95303 Entire home/apt 150
## 1094 Kips Bay 40.74134 -73.98113 Entire home/apt 129
## 1095 Harlem 40.81620 -73.94747 Entire home/apt 100
## 1096 Williamsburg 40.71613 -73.95837 Entire home/apt 200
## 1097 Lower East Side 40.71746 -73.98782 Private room 89
## 1098 Crown Heights 40.66933 -73.93798 Entire home/apt 250
## 1099 Bedford-Stuyvesant 40.68905 -73.95410 Private room 65
## 1100 Crown Heights 40.67615 -73.95441 Entire home/apt 68
## 1101 Williamsburg 40.71110 -73.94643 Entire home/apt 235
## 1102 Bedford-Stuyvesant 40.68944 -73.93760 Entire home/apt 100
## 1103 Lower East Side 40.72106 -73.98384 Entire home/apt 311
## 1104 Jamaica 40.67747 -73.76493 Shared room 39
## 1105 West Village 40.73123 -74.00591 Private room 100
## 1106 Lower East Side 40.72152 -73.99279 Private room 1300
## 1107 Lower East Side 40.72147 -73.99208 Entire home/apt 210
## 1108 Crown Heights 40.66604 -73.95086 Private room 55
## 1109 Battery Park City 40.71012 -74.01504 Private room 65
## 1110 Williamsburg 40.71856 -73.95166 Entire home/apt 165
## 1111 Morningside Heights 40.80661 -73.95760 Private room 89
## 1112 Tribeca 40.72203 -74.00988 Entire home/apt 500
## 1113 Bedford-Stuyvesant 40.68229 -73.94287 Entire home/apt 145
## 1114 Prospect-Lefferts Gardens 40.65955 -73.96066 Private room 110
## 1115 Upper West Side 40.77137 -73.98943 Entire home/apt 180
## 1116 Prospect Heights 40.67796 -73.96458 Entire home/apt 115
## 1117 Bushwick 40.69330 -73.90823 Entire home/apt 82
## 1118 Long Island City 40.75020 -73.94189 Private room 70
## 1119 Williamsburg 40.71285 -73.94383 Entire home/apt 155
## 1120 Hell's Kitchen 40.76487 -73.98471 Entire home/apt 117
## 1121 Sunset Park 40.66387 -73.99077 Entire home/apt 100
## 1122 East Village 40.72893 -73.98278 Entire home/apt 89
## 1123 East Village 40.73009 -73.98270 Entire home/apt 89
## 1124 East Village 40.72955 -73.98298 Entire home/apt 99
## 1125 East Village 40.72693 -73.98521 Entire home/apt 155
## 1126 Harlem 40.82537 -73.94392 Private room 85
## 1127 Two Bridges 40.71137 -73.99403 Private room 80
## 1128 Kips Bay 40.74428 -73.97809 Entire home/apt 135
## 1129 Carroll Gardens 40.67579 -73.99968 Entire home/apt 150
## 1130 Chelsea 40.74087 -74.00226 Entire home/apt 380
## 1131 Fort Greene 40.68723 -73.96897 Entire home/apt 450
## 1132 Williamsburg 40.71820 -73.95763 Entire home/apt 145
## 1133 Sunnyside 40.74679 -73.91853 Private room 80
## 1134 Williamsburg 40.71739 -73.95472 Entire home/apt 225
## 1135 Upper West Side 40.77099 -73.98980 Private room 99
## 1136 Lower East Side 40.71950 -73.98022 Entire home/apt 125
## 1137 Hell's Kitchen 40.75636 -73.99390 Entire home/apt 80
## 1138 Fort Greene 40.68834 -73.97875 Private room 100
## 1139 Bedford-Stuyvesant 40.68586 -73.94837 Private room 55
## 1140 Civic Center 40.71164 -74.00774 Entire home/apt 328
## 1141 Williamsburg 40.70743 -73.96728 Entire home/apt 142
## 1142 Clinton Hill 40.68545 -73.96534 Entire home/apt 350
## 1143 Windsor Terrace 40.65854 -73.98384 Entire home/apt 300
## 1144 Fort Hamilton 40.61269 -74.03381 Entire home/apt 105
## 1145 Gowanus 40.67858 -73.98537 Private room 125
## 1146 Williamsburg 40.70821 -73.95352 Entire home/apt 225
## 1147 Sunset Park 40.66158 -73.98954 Entire home/apt 92
## 1148 East Village 40.72457 -73.98453 Entire home/apt 185
## 1149 Williamsburg 40.71689 -73.95706 Entire home/apt 226
## 1150 Sunset Park 40.66221 -73.99743 Private room 50
## 1151 East Harlem 40.79313 -73.93493 Private room 80
## 1152 Carroll Gardens 40.68444 -73.99904 Private room 200
## 1153 Midtown 40.75632 -73.96464 Entire home/apt 99
## 1154 Park Slope 40.67996 -73.98027 Entire home/apt 68
## 1155 Prospect Heights 40.67369 -73.96589 Private room 102
## 1156 Park Slope 40.67211 -73.97600 Entire home/apt 220
## 1157 Upper West Side 40.79183 -73.97172 Entire home/apt 199
## 1158 Chinatown 40.71456 -73.99978 Entire home/apt 165
## 1159 Chinatown 40.71668 -73.99073 Entire home/apt 150
## 1160 Gowanus 40.67862 -73.98561 Entire home/apt 385
## 1161 Columbia St 40.68721 -74.00147 Private room 75
## 1162 SoHo 40.72162 -74.00414 Entire home/apt 499
## 1163 East Elmhurst 40.75541 -73.89239 Private room 85
## 1164 Fort Greene 40.69011 -73.97691 Entire home/apt 160
## 1165 South Slope 40.66641 -73.98283 Entire home/apt 249
## 1166 Gowanus 40.67828 -73.99136 Private room 80
## 1167 Williamsburg 40.71483 -73.96216 Private room 120
## 1168 Allerton 40.86870 -73.85240 Private room 35
## 1169 Brighton Beach 40.58220 -73.96392 Entire home/apt 169
## 1170 East Village 40.72686 -73.97970 Entire home/apt 220
## 1171 Bedford-Stuyvesant 40.68825 -73.92951 Private room 85
## 1172 Upper West Side 40.78451 -73.97882 Entire home/apt 300
## 1173 Harlem 40.82392 -73.94205 Private room 79
## 1174 Williamsburg 40.71384 -73.94740 Private room 90
## 1175 Upper West Side 40.79520 -73.96240 Private room 99
## 1176 Chelsea 40.73942 -74.00009 Shared room 50
## 1177 Prospect-Lefferts Gardens 40.65524 -73.95646 Private room 46
## 1178 South Slope 40.66153 -73.98554 Entire home/apt 325
## 1179 New Springville 40.59274 -74.16178 Private room 68
## 1180 SoHo 40.72701 -74.00110 Entire home/apt 198
## 1181 Bedford-Stuyvesant 40.68607 -73.95839 Entire home/apt 100
## 1182 Williamsburg 40.71345 -73.95689 Entire home/apt 175
## 1183 West Village 40.73214 -74.00188 Entire home/apt 130
## 1184 Greenwich Village 40.72903 -74.00028 Entire home/apt 180
## 1185 Prospect Heights 40.67823 -73.97007 Entire home/apt 209
## 1186 Upper West Side 40.79842 -73.96903 Entire home/apt 150
## 1187 Lower East Side 40.72232 -73.98686 Entire home/apt 104
## 1188 East Village 40.72454 -73.97944 Entire home/apt 175
## 1189 Upper East Side 40.77799 -73.95223 Private room 80
## 1190 Bushwick 40.69227 -73.90852 Private room 68
## 1191 East Village 40.72760 -73.98347 Private room 72
## 1192 Astoria 40.75782 -73.92129 Entire home/apt 107
## 1193 East Village 40.72756 -73.97939 Entire home/apt 150
## 1194 Morris Heights 40.84937 -73.91328 Private room 45
## 1195 Bedford-Stuyvesant 40.68549 -73.94724 Private room 49
## 1196 Flatbush 40.64229 -73.96548 Entire home/apt 349
## 1197 Upper West Side 40.79218 -73.97926 Entire home/apt 185
## 1198 Kips Bay 40.73951 -73.98146 Entire home/apt 145
## 1199 Williamsburg 40.71390 -73.96553 Entire home/apt 96
## 1200 Bushwick 40.70753 -73.92048 Entire home/apt 120
## 1201 East Village 40.73044 -73.98683 Entire home/apt 160
## 1202 Brooklyn Heights 40.69964 -73.99299 Entire home/apt 800
## 1203 Crown Heights 40.67709 -73.95237 Entire home/apt 349
## 1204 Long Island City 40.75296 -73.93716 Entire home/apt 350
## 1205 Prospect Heights 40.67717 -73.96915 Entire home/apt 125
## 1206 Boerum Hill 40.68586 -73.98090 Entire home/apt 350
## 1207 Bedford-Stuyvesant 40.68543 -73.93838 Entire home/apt 150
## 1208 Bushwick 40.69849 -73.92678 Entire home/apt 180
## 1209 Chelsea 40.74348 -73.99980 Entire home/apt 200
## 1210 Fort Greene 40.68679 -73.97378 Entire home/apt 99
## 1211 Chelsea 40.75086 -73.99776 Entire home/apt 130
## 1212 Williamsburg 40.71915 -73.95581 Entire home/apt 150
## 1213 Kensington 40.64625 -73.97932 Entire home/apt 90
## 1214 Williamsburg 40.71577 -73.94084 Private room 95
## 1215 Ridgewood 40.70278 -73.90153 Entire home/apt 70
## 1216 Upper East Side 40.77108 -73.95967 Private room 82
## 1217 Bedford-Stuyvesant 40.68812 -73.94627 Entire home/apt 250
## 1218 Harlem 40.82823 -73.94691 Entire home/apt 90
## 1219 Woodside 40.74377 -73.91225 Private room 75
## 1220 Clinton Hill 40.69432 -73.96481 Entire home/apt 160
## 1221 Harlem 40.82749 -73.93820 Private room 115
## 1222 South Slope 40.66777 -73.98367 Private room 150
## 1223 Williamsburg 40.71423 -73.95305 Private room 89
## 1224 Rego Park 40.72719 -73.86166 Entire home/apt 69
## 1225 Chelsea 40.74341 -73.99298 Private room 170
## 1226 South Slope 40.66051 -73.98495 Entire home/apt 375
## 1227 East Village 40.72915 -73.98019 Entire home/apt 118
## 1228 Chelsea 40.74767 -74.01061 Entire home/apt 135
## 1229 Concourse 40.82822 -73.92439 Entire home/apt 250
## 1230 Greenpoint 40.73067 -73.95500 Entire home/apt 200
## 1231 Nolita 40.72246 -73.99552 Entire home/apt 150
## 1232 East Harlem 40.80762 -73.94017 Private room 50
## 1233 Prospect Heights 40.67786 -73.97166 Private room 60
## 1234 Harlem 40.80719 -73.94253 Entire home/apt 100
## 1235 Flatiron District 40.74129 -73.98374 Entire home/apt 265
## 1236 Upper East Side 40.77761 -73.94606 Private room 90
## 1237 Upper East Side 40.76413 -73.96227 Entire home/apt 175
## 1238 Sunset Park 40.66119 -73.98822 Private room 36
## 1239 Upper West Side 40.78339 -73.98003 Entire home/apt 250
## 1240 Harlem 40.80654 -73.95019 Entire home/apt 220
## 1241 Upper West Side 40.78111 -73.97739 Private room 93
## 1242 Crown Heights 40.67147 -73.94979 Entire home/apt 275
## 1243 Astoria 40.75532 -73.91603 Private room 109
## 1244 Williamsburg 40.70762 -73.96764 Entire home/apt 450
## 1245 Greenwich Village 40.73110 -73.99913 Entire home/apt 165
## 1246 Prospect-Lefferts Gardens 40.66199 -73.96294 Entire home/apt 80
## 1247 Greenwich Village 40.73176 -73.99895 Private room 295
## 1248 Williamsburg 40.71606 -73.95526 Entire home/apt 280
## 1249 Nolita 40.72184 -73.99440 Entire home/apt 300
## 1250 East Village 40.72829 -73.98156 Entire home/apt 99
## 1251 Bedford-Stuyvesant 40.69043 -73.95677 Entire home/apt 175
## 1252 Chelsea 40.74403 -73.99581 Entire home/apt 225
## 1253 Chelsea 40.74552 -74.00060 Entire home/apt 230
## 1254 Prospect Heights 40.67440 -73.96558 Private room 90
## 1255 Upper West Side 40.79358 -73.97043 Entire home/apt 102
## 1256 Bushwick 40.70140 -73.91333 Private room 59
## 1257 East Village 40.72924 -73.98113 Entire home/apt 195
## 1258 Astoria 40.75919 -73.91836 Entire home/apt 150
## 1259 Washington Heights 40.83064 -73.94076 Entire home/apt 170
## 1260 Hell's Kitchen 40.76184 -73.99334 Entire home/apt 217
## 1261 Harlem 40.82445 -73.95243 Entire home/apt 185
## 1262 Little Italy 40.72006 -73.99579 Private room 58
## 1263 Williamsburg 40.71872 -73.96042 Entire home/apt 189
## 1264 East Village 40.72855 -73.98265 Entire home/apt 88
## 1265 Hell's Kitchen 40.76304 -73.98880 Entire home/apt 195
## 1266 Ridgewood 40.70878 -73.91727 Entire home/apt 110
## 1267 Sunset Park 40.64437 -74.00304 Entire home/apt 120
## 1268 Greenwich Village 40.72987 -74.00082 Private room 79
## 1269 Upper East Side 40.77424 -73.94839 Entire home/apt 110
## 1270 Clinton Hill 40.68752 -73.96688 Private room 200
## 1271 Prospect-Lefferts Gardens 40.65841 -73.95016 Private room 69
## 1272 Flushing 40.75578 -73.81948 Private room 55
## 1273 Brooklyn Heights 40.69271 -73.99365 Entire home/apt 135
## 1274 Financial District 40.70587 -74.01534 Entire home/apt 500
## 1275 Flatbush 40.64882 -73.96050 Entire home/apt 90
## 1276 Clinton Hill 40.69073 -73.96762 Entire home/apt 135
## 1277 Greenpoint 40.72515 -73.95153 Private room 199
## 1278 East Village 40.72564 -73.98252 Entire home/apt 90
## 1279 Upper East Side 40.78024 -73.94813 Entire home/apt 160
## 1280 Windsor Terrace 40.65990 -73.98279 Private room 65
## 1281 Upper West Side 40.79640 -73.96750 Entire home/apt 210
## 1282 Chelsea 40.74664 -73.99441 Entire home/apt 399
## 1283 Lower East Side 40.71788 -73.98975 Entire home/apt 300
## 1284 Crown Heights 40.67356 -73.94250 Entire home/apt 185
## 1285 Harlem 40.81757 -73.94709 Entire home/apt 220
## 1286 Prospect Heights 40.68052 -73.97254 Entire home/apt 121
## 1287 Inwood 40.86821 -73.92252 Entire home/apt 120
## 1288 Park Slope 40.67981 -73.97967 Private room 152
## 1289 Gowanus 40.68251 -73.98486 Entire home/apt 250
## 1290 East Village 40.72718 -73.98120 Private room 99
## 1291 Greenpoint 40.72363 -73.94570 Entire home/apt 104
## 1292 Greenpoint 40.72697 -73.93921 Entire home/apt 120
## 1293 East Village 40.72274 -73.97934 Entire home/apt 295
## 1294 Carroll Gardens 40.68343 -73.99189 Entire home/apt 90
## 1295 West Village 40.73514 -73.99954 Entire home/apt 197
## 1296 Greenwich Village 40.73481 -73.99845 Entire home/apt 145
## 1297 Upper West Side 40.80053 -73.96651 Entire home/apt 90
## 1298 Chelsea 40.73971 -74.00221 Private room 125
## 1299 Hell's Kitchen 40.75767 -73.99034 Entire home/apt 190
## 1300 Upper West Side 40.80165 -73.96287 Shared room 76
## 1301 Bedford-Stuyvesant 40.68328 -73.93790 Private room 50
## 1302 East Village 40.72819 -73.97933 Private room 107
## 1303 Bedford-Stuyvesant 40.68411 -73.93875 Entire home/apt 80
## 1304 Bedford-Stuyvesant 40.68269 -73.94004 Entire home/apt 150
## 1305 Bushwick 40.70779 -73.92129 Entire home/apt 110
## 1306 Bushwick 40.70202 -73.92402 Entire home/apt 115
## 1307 East Village 40.72603 -73.98751 Entire home/apt 151
## 1308 Fort Greene 40.68522 -73.97771 Entire home/apt 130
## 1309 Crown Heights 40.67391 -73.94039 Entire home/apt 180
## 1310 Crown Heights 40.67436 -73.94807 Private room 95
## 1311 Harlem 40.81199 -73.95116 Private room 79
## 1312 Bedford-Stuyvesant 40.68586 -73.95010 Private room 60
## 1313 East Flatbush 40.65204 -73.94938 Entire home/apt 133
## 1314 Upper West Side 40.78292 -73.97438 Entire home/apt 120
## 1315 Williamsburg 40.71603 -73.95665 Private room 120
## 1316 Harlem 40.82446 -73.95274 Private room 700
## 1317 Hell's Kitchen 40.76410 -73.98803 Entire home/apt 165
## 1318 Upper West Side 40.79785 -73.97202 Entire home/apt 165
## 1319 Ditmars Steinway 40.76961 -73.90451 Entire home/apt 54
## 1320 East Village 40.73047 -73.98229 Entire home/apt 100
## 1321 Crown Heights 40.67720 -73.95060 Private room 80
## 1322 Chinatown 40.71328 -73.99315 Private room 96
## 1323 Park Slope 40.66732 -73.98233 Entire home/apt 159
## 1324 South Slope 40.66488 -73.98079 Private room 50
## 1325 East Harlem 40.78837 -73.94628 Private room 75
## 1326 Clinton Hill 40.68232 -73.96501 Entire home/apt 155
## 1327 Greenpoint 40.73252 -73.95496 Private room 150
## 1328 Arverne 40.59783 -73.80158 Entire home/apt 92
## 1329 Greenpoint 40.72437 -73.94847 Private room 75
## 1330 Astoria 40.77115 -73.92275 Private room 69
## 1331 Carroll Gardens 40.67859 -73.99444 Entire home/apt 115
## 1332 East Village 40.72304 -73.97923 Entire home/apt 120
## 1333 Hell's Kitchen 40.77032 -73.99493 Private room 120
## 1334 Greenwich Village 40.72692 -73.99948 Entire home/apt 215
## 1335 Crown Heights 40.68060 -73.96317 Entire home/apt 195
## 1336 Greenpoint 40.72949 -73.95493 Entire home/apt 175
## 1337 Crown Heights 40.67649 -73.94350 Private room 80
## 1338 Williamsburg 40.71099 -73.95217 Private room 48
## 1339 West Village 40.73041 -74.00326 Entire home/apt 200
## 1340 Williamsburg 40.71970 -73.95741 Entire home/apt 275
## 1341 Gravesend 40.60399 -73.97092 Private room 72
## 1342 SoHo 40.72372 -74.00277 Entire home/apt 199
## 1343 Williamsburg 40.70989 -73.95347 Entire home/apt 250
## 1344 Harlem 40.80797 -73.94890 Private room 75
## 1345 SoHo 40.72466 -73.99632 Private room 125
## 1346 Tribeca 40.71552 -74.00749 Private room 229
## 1347 Brooklyn Heights 40.69464 -73.99885 Entire home/apt 175
## 1348 Bedford-Stuyvesant 40.68770 -73.95824 Entire home/apt 140
## 1349 Bedford-Stuyvesant 40.69079 -73.95809 Private room 54
## 1350 Ridgewood 40.70001 -73.90698 Entire home/apt 75
## 1351 Upper East Side 40.77247 -73.94665 Entire home/apt 110
## 1352 Murray Hill 40.75128 -73.97658 Entire home/apt 165
## 1353 Inwood 40.86345 -73.92039 Private room 55
## 1354 Inwood 40.86284 -73.91955 Private room 55
## 1355 West Village 40.73413 -74.00465 Entire home/apt 300
## 1356 Chelsea 40.74026 -74.00079 Entire home/apt 275
## 1357 Greenwich Village 40.73474 -73.99527 Entire home/apt 331
## 1358 Williamsburg 40.71316 -73.94532 Private room 77
## 1359 Washington Heights 40.83470 -73.94857 Private room 60
## 1360 Brooklyn Heights 40.69082 -73.99281 Entire home/apt 129
## 1361 Sunnyside 40.74124 -73.92273 Private room 100
## 1362 Park Slope 40.67465 -73.97975 Entire home/apt 120
## 1363 Williamsburg 40.72203 -73.95376 Entire home/apt 500
## 1364 Upper West Side 40.78390 -73.97897 Entire home/apt 179
## 1365 Clinton Hill 40.68533 -73.96808 Entire home/apt 149
## 1366 Williamsburg 40.70397 -73.95536 Entire home/apt 180
## 1367 Prospect Heights 40.68084 -73.97429 Private room 100
## 1368 Boerum Hill 40.68379 -73.98313 Entire home/apt 180
## 1369 Greenpoint 40.72188 -73.94963 Entire home/apt 128
## 1370 Prospect Heights 40.67963 -73.97237 Entire home/apt 260
## 1371 Cambria Heights 40.69249 -73.73382 Private room 55
## 1372 Park Slope 40.66860 -73.98342 Private room 65
## 1373 Upper East Side 40.76985 -73.95815 Entire home/apt 200
## 1374 Hell's Kitchen 40.76257 -73.99303 Entire home/apt 249
## 1375 Gowanus 40.68466 -73.98871 Entire home/apt 300
## 1376 East Harlem 40.79183 -73.94743 Entire home/apt 120
## 1377 Upper West Side 40.77471 -73.98261 Private room 120
## 1378 Prospect Heights 40.67293 -73.96399 Entire home/apt 125
## 1379 Elmhurst 40.73587 -73.88279 Entire home/apt 99
## 1380 Bushwick 40.69945 -73.92148 Entire home/apt 115
## 1381 Bushwick 40.70720 -73.92245 Entire home/apt 275
## 1382 Gowanus 40.67376 -73.99648 Entire home/apt 198
## 1383 East Village 40.72560 -73.97857 Entire home/apt 199
## 1384 Cambria Heights 40.69160 -73.73323 Private room 45
## 1385 Upper West Side 40.79196 -73.97065 Private room 125
## 1386 Harlem 40.81726 -73.94583 Entire home/apt 80
## 1387 Tribeca 40.71655 -74.01171 Entire home/apt 130
## 1388 Cypress Hills 40.68375 -73.87065 Private room 35
## 1389 Williamsburg 40.70958 -73.93578 Entire home/apt 90
## 1390 Williamsburg 40.72091 -73.96133 Entire home/apt 250
## 1391 Crown Heights 40.66959 -73.95718 Entire home/apt 115
## 1392 Prospect Heights 40.68066 -73.96644 Entire home/apt 200
## 1393 Williamsburg 40.71447 -73.95237 Private room 64
## 1394 Bedford-Stuyvesant 40.68372 -73.94060 Private room 65
## 1395 Astoria 40.76408 -73.92461 Entire home/apt 175
## 1396 Hell's Kitchen 40.76876 -73.99473 Private room 90
## 1397 Crown Heights 40.66839 -73.96001 Private room 85
## 1398 Midtown 40.74519 -73.98338 Entire home/apt 150
## 1399 Kips Bay 40.74285 -73.97986 Entire home/apt 50
## 1400 Harlem 40.80352 -73.95127 Entire home/apt 136
## 1401 Williamsburg 40.71455 -73.93739 Entire home/apt 400
## 1402 Prospect-Lefferts Gardens 40.65826 -73.95951 Entire home/apt 125
## 1403 East Village 40.73240 -73.98577 Entire home/apt 165
## 1404 Williamsburg 40.71402 -73.93989 Entire home/apt 180
## 1405 Harlem 40.80338 -73.95594 Entire home/apt 105
## 1406 Hell's Kitchen 40.75920 -73.99133 Entire home/apt 148
## 1407 Fort Greene 40.68935 -73.96950 Entire home/apt 120
## 1408 Gramercy 40.73326 -73.98245 Entire home/apt 99
## 1409 East Village 40.73082 -73.98502 Entire home/apt 175
## 1410 Williamsburg 40.71382 -73.94164 Private room 85
## 1411 Upper East Side 40.77975 -73.94977 Private room 80
## 1412 Bedford-Stuyvesant 40.68517 -73.95563 Entire home/apt 119
## 1413 Long Island City 40.74609 -73.94691 Private room 89
## 1414 SoHo 40.72625 -74.00180 Shared room 195
## 1415 Upper West Side 40.77428 -73.98594 Entire home/apt 1000
## 1416 Greenwich Village 40.72812 -74.00191 Entire home/apt 225
## 1417 Williamsburg 40.71657 -73.96264 Entire home/apt 165
## 1418 Windsor Terrace 40.65193 -73.97301 Private room 60
## 1419 West Village 40.73485 -74.00637 Entire home/apt 165
## 1420 Bushwick 40.70074 -73.92333 Private room 80
## 1421 Sunnyside 40.73607 -73.92439 Private room 52
## 1422 Nolita 40.72095 -73.99401 Entire home/apt 160
## 1423 Crown Heights 40.67639 -73.96003 Entire home/apt 110
## 1424 Upper West Side 40.79913 -73.96057 Private room 60
## 1425 Tottenville 40.50868 -74.23986 Entire home/apt 299
## 1426 East Village 40.72389 -73.98934 Entire home/apt 200
## 1427 West Village 40.73727 -74.00213 Entire home/apt 700
## 1428 Cobble Hill 40.68648 -73.99257 Private room 120
## 1429 East Harlem 40.79512 -73.93182 Private room 65
## 1430 Hell's Kitchen 40.76206 -73.99980 Entire home/apt 263
## 1431 Bedford-Stuyvesant 40.69382 -73.95002 Entire home/apt 120
## 1432 Upper West Side 40.78455 -73.97352 Entire home/apt 150
## 1433 Inwood 40.87114 -73.91791 Private room 60
## 1434 Williamsburg 40.71827 -73.96259 Private room 350
## 1435 Tompkinsville 40.63358 -74.08330 Private room 71
## 1436 Harlem 40.82312 -73.94971 Entire home/apt 433
## 1437 Harlem 40.82240 -73.94358 Private room 79
## 1438 Hell's Kitchen 40.76376 -73.99161 Private room 140
## 1439 Astoria 40.75703 -73.91666 Private room 61
## 1440 Midtown 40.74648 -73.98459 Private room 100
## 1441 Nolita 40.72294 -73.99388 Entire home/apt 250
## 1442 Harlem 40.82732 -73.95112 Private room 145
## 1443 Bedford-Stuyvesant 40.69510 -73.95605 Shared room 45
## 1444 Williamsburg 40.71256 -73.96626 Private room 73
## 1445 Prospect Heights 40.67950 -73.96850 Entire home/apt 150
## 1446 NoHo 40.72560 -73.99445 Entire home/apt 234
## 1447 East Village 40.73045 -73.98541 Entire home/apt 150
## 1448 Gramercy 40.73700 -73.98199 Private room 65
## 1449 Williamsburg 40.71227 -73.96776 Entire home/apt 195
## 1450 Chelsea 40.75164 -73.99425 Entire home/apt 135
## 1451 Crown Heights 40.67189 -73.93499 Entire home/apt 90
## 1452 SoHo 40.72381 -73.99684 Entire home/apt 595
## 1453 Gramercy 40.73337 -73.98400 Private room 109
## 1454 Clinton Hill 40.68304 -73.96348 Entire home/apt 200
## 1455 Midtown 40.75743 -73.96939 Entire home/apt 90
## 1456 Kips Bay 40.74190 -73.98160 Entire home/apt 100
## 1457 Hell's Kitchen 40.76758 -73.98722 Entire home/apt 85
## 1458 Kips Bay 40.74189 -73.97833 Entire home/apt 87
## 1459 Upper West Side 40.76934 -73.98464 Entire home/apt 95
## 1460 Upper West Side 40.78363 -73.97797 Entire home/apt 349
## 1461 East Village 40.72171 -73.98334 Entire home/apt 99
## 1462 Hell's Kitchen 40.76803 -73.98767 Entire home/apt 160
## 1463 Chinatown 40.71695 -73.99031 Entire home/apt 149
## 1464 Crown Heights 40.67574 -73.95434 Entire home/apt 60
## 1465 Midtown 40.75663 -73.96681 Entire home/apt 285
## 1466 Kensington 40.64573 -73.98013 Private room 72
## 1467 West Village 40.74004 -74.00426 Entire home/apt 150
## 1468 Columbia St 40.68863 -74.00181 Entire home/apt 200
## 1469 Upper East Side 40.77790 -73.95246 Private room 79
## 1470 Upper West Side 40.78194 -73.98248 Entire home/apt 197
## 1471 Bedford-Stuyvesant 40.68830 -73.95375 Entire home/apt 75
## 1472 Gramercy 40.73354 -73.98593 Entire home/apt 127
## 1473 East Harlem 40.80140 -73.94361 Private room 110
## 1474 Ridgewood 40.69922 -73.90027 Private room 69
## 1475 Williamsburg 40.70653 -73.94421 Private room 100
## 1476 Hell's Kitchen 40.76287 -73.99570 Entire home/apt 99
## 1477 Williamsburg 40.70249 -73.94880 Entire home/apt 139
## 1478 Upper West Side 40.78754 -73.96989 Private room 113
## 1479 Chelsea 40.74100 -73.99957 Entire home/apt 250
## 1480 Kips Bay 40.74027 -73.98061 Entire home/apt 295
## 1481 Upper West Side 40.77516 -73.98573 Entire home/apt 2000
## 1482 Hell's Kitchen 40.75890 -73.99015 Entire home/apt 220
## 1483 East Village 40.72771 -73.98172 Private room 75
## 1484 Williamsburg 40.71157 -73.96360 Entire home/apt 100
## 1485 Williamsburg 40.71112 -73.96338 Entire home/apt 199
## 1486 Chelsea 40.74272 -74.00309 Entire home/apt 200
## 1487 Flatbush 40.64895 -73.95758 Entire home/apt 140
## 1488 Inwood 40.86186 -73.92701 Private room 50
## 1489 Bushwick 40.68888 -73.91911 Private room 45
## 1490 Gowanus 40.67947 -73.98458 Entire home/apt 109
## 1491 East Harlem 40.79591 -73.94801 Private room 108
## 1492 Bushwick 40.68796 -73.91906 Private room 42
## 1493 Crown Heights 40.67138 -73.95577 Private room 70
## 1494 Upper East Side 40.77382 -73.95088 Entire home/apt 141
## 1495 Fort Greene 40.68418 -73.96926 Entire home/apt 355
## 1496 Bedford-Stuyvesant 40.68773 -73.95631 Entire home/apt 80
## 1497 Canarsie 40.62764 -73.90086 Private room 250
## 1498 Ridgewood 40.70719 -73.89632 Private room 75
## 1499 West Village 40.73456 -74.00347 Private room 88
## 1500 Kips Bay 40.74166 -73.97811 Private room 65
## 1501 Jamaica 40.67166 -73.76566 Private room 58
## 1502 Ditmars Steinway 40.77987 -73.91565 Entire home/apt 75
## 1503 Astoria 40.77329 -73.92832 Private room 100
## 1504 Lower East Side 40.71950 -73.99416 Private room 167
## 1505 Ridgewood 40.70866 -73.91537 Private room 65
## 1506 Harlem 40.80829 -73.94260 Entire home/apt 125
## 1507 Upper West Side 40.80114 -73.96378 Private room 95
## 1508 Mariners Harbor 40.62879 -74.16062 Private room 54
## 1509 Flatlands 40.61676 -73.92552 Entire home/apt 89
## 1510 East Harlem 40.79417 -73.95101 Private room 92
## 1511 Chelsea 40.75286 -74.00162 Entire home/apt 199
## 1512 West Village 40.73477 -74.00275 Entire home/apt 179
## 1513 Long Island City 40.74530 -73.95294 Private room 65
## 1514 Harlem 40.80314 -73.95768 Private room 55
## 1515 Murray Hill 40.74888 -73.97828 Entire home/apt 129
## 1516 Murray Hill 40.74851 -73.97796 Entire home/apt 134
## 1517 East New York 40.67635 -73.89124 Private room 35
## 1518 Upper East Side 40.78002 -73.95211 Private room 250
## 1519 Clinton Hill 40.69445 -73.96401 Entire home/apt 249
## 1520 East Elmhurst 40.75772 -73.89530 Private room 62
## 1521 Upper West Side 40.80373 -73.96790 Private room 119
## 1522 South Slope 40.66481 -73.98367 Entire home/apt 179
## 1523 Fort Greene 40.68757 -73.97469 Entire home/apt 220
## 1524 Williamsburg 40.70560 -73.94202 Entire home/apt 198
## 1525 Crown Heights 40.67722 -73.95005 Entire home/apt 155
## 1526 Williamsburg 40.71407 -73.95336 Entire home/apt 199
## 1527 East Village 40.72912 -73.98355 Entire home/apt 95
## 1528 Park Slope 40.68305 -73.97853 Entire home/apt 550
## 1529 Bushwick 40.68161 -73.90796 Private room 60
## 1530 Williamsburg 40.71428 -73.96100 Entire home/apt 380
## 1531 Bushwick 40.70234 -73.91849 Private room 84
## 1532 Upper West Side 40.77563 -73.98065 Entire home/apt 165
## 1533 East Village 40.72866 -73.98048 Entire home/apt 105
## 1534 Fort Greene 40.69096 -73.97241 Entire home/apt 134
## 1535 Bedford-Stuyvesant 40.69114 -73.94601 Private room 68
## 1536 East Village 40.72482 -73.98097 Entire home/apt 73
## 1537 Park Slope 40.67406 -73.97697 Entire home/apt 150
## 1538 Upper West Side 40.77392 -73.97852 Entire home/apt 100
## 1539 Hell's Kitchen 40.76422 -73.99382 Private room 75
## 1540 Midtown 40.76221 -73.97787 Private room 120
## 1541 Bedford-Stuyvesant 40.69128 -73.93653 Entire home/apt 85
## 1542 Inwood 40.86737 -73.91877 Entire home/apt 55
## 1543 Nolita 40.72177 -73.99610 Private room 95
## 1544 Chelsea 40.74034 -74.00259 Private room 72
## 1545 West Village 40.73105 -74.00285 Entire home/apt 250
## 1546 Cobble Hill 40.68902 -73.99517 Private room 69
## 1547 Prospect Heights 40.67793 -73.96577 Private room 78
## 1548 Williamsburg 40.70995 -73.95536 Entire home/apt 220
## 1549 SoHo 40.72756 -74.00239 Entire home/apt 230
## 1550 Bedford-Stuyvesant 40.68906 -73.94103 Entire home/apt 150
## 1551 Fort Greene 40.69670 -73.97622 Private room 80
## 1552 Williamsburg 40.70751 -73.94670 Private room 150
## 1553 Park Slope 40.67507 -73.98093 Entire home/apt 150
## 1554 Upper West Side 40.79507 -73.97568 Entire home/apt 900
## 1555 East Village 40.72225 -73.98496 Entire home/apt 130
## 1556 Prospect-Lefferts Gardens 40.65820 -73.95275 Private room 70
## 1557 Woodside 40.74723 -73.89706 Entire home/apt 120
## 1558 Concord 40.60183 -74.08953 Private room 75
## 1559 Sunset Park 40.66084 -73.99328 Entire home/apt 100
## 1560 Williamsburg 40.71796 -73.95439 Private room 69
## 1561 East Village 40.72558 -73.97929 Entire home/apt 399
## 1562 Harlem 40.80748 -73.94869 Entire home/apt 299
## 1563 Upper West Side 40.79854 -73.96089 Private room 100
## 1564 Jackson Heights 40.74869 -73.88293 Private room 68
## 1565 Borough Park 40.63324 -73.99461 Private room 103
## 1566 Lower East Side 40.71819 -73.99136 Entire home/apt 175
## 1567 Greenpoint 40.72582 -73.95213 Entire home/apt 330
## 1568 Chelsea 40.74225 -73.99492 Entire home/apt 425
## 1569 East Village 40.73016 -73.98643 Entire home/apt 240
## 1570 Concord 40.60213 -74.08930 Private room 75
## 1571 Carroll Gardens 40.68344 -73.99330 Private room 210
## 1572 Clinton Hill 40.68341 -73.96060 Entire home/apt 175
## 1573 Williamsburg 40.71534 -73.94906 Private room 85
## 1574 Woodside 40.74746 -73.89712 Entire home/apt 120
## 1575 Woodside 40.74687 -73.89892 Entire home/apt 120
## 1576 Bedford-Stuyvesant 40.68712 -73.95876 Private room 75
## 1577 West Village 40.73795 -74.00593 Entire home/apt 495
## 1578 Williamsburg 40.71055 -73.94915 Private room 65
## 1579 Allerton 40.85956 -73.87067 Private room 39
## 1580 Fort Greene 40.68811 -73.97236 Entire home/apt 93
## 1581 Williamsburg 40.70985 -73.94520 Private room 146
## 1582 Crown Heights 40.67473 -73.96263 Entire home/apt 120
## 1583 Harlem 40.82655 -73.93943 Private room 79
## 1584 Crown Heights 40.67471 -73.95324 Entire home/apt 100
## 1585 Upper West Side 40.80155 -73.96569 Private room 120
## 1586 Harlem 40.80745 -73.94353 Entire home/apt 150
## 1587 East Village 40.72576 -73.98582 Entire home/apt 144
## 1588 Crown Heights 40.67641 -73.95729 Private room 60
## 1589 Harlem 40.82398 -73.95400 Entire home/apt 350
## 1590 Bedford-Stuyvesant 40.68724 -73.95837 Private room 85
## 1591 Upper West Side 40.79241 -73.97111 Entire home/apt 195
## 1592 Upper East Side 40.77042 -73.96145 Entire home/apt 200
## 1593 Lower East Side 40.71625 -73.98430 Entire home/apt 169
## 1594 Harlem 40.80351 -73.95648 Private room 95
## 1595 Flatiron District 40.74056 -73.99262 Entire home/apt 375
## 1596 Crown Heights 40.66983 -73.94322 Entire home/apt 168
## 1597 Crown Heights 40.67942 -73.96248 Entire home/apt 50
## 1598 Williamsburg 40.71927 -73.95591 Private room 129
## 1599 Astoria 40.76216 -73.92542 Entire home/apt 245
## 1600 Greenpoint 40.73867 -73.95448 Entire home/apt 199
## 1601 Greenpoint 40.73844 -73.95456 Entire home/apt 199
## 1602 Williamsburg 40.70866 -73.95166 Private room 99
## 1603 Brooklyn Heights 40.69127 -73.99552 Entire home/apt 160
## 1604 Williamsburg 40.70061 -73.95520 Private room 65
## 1605 Harlem 40.81073 -73.94370 Private room 70
## 1606 Harlem 40.80517 -73.95404 Private room 80
## 1607 Hell's Kitchen 40.76761 -73.98619 Entire home/apt 100
## 1608 Borough Park 40.64431 -74.00016 Private room 70
## 1609 West Village 40.73616 -74.00400 Entire home/apt 200
## 1610 Sunset Park 40.65989 -73.99536 Private room 66
## 1611 Upper East Side 40.76352 -73.96394 Entire home/apt 200
## 1612 Williamsburg 40.71141 -73.95427 Private room 95
## 1613 Chelsea 40.74092 -74.00037 Entire home/apt 140
## 1614 Harlem 40.81908 -73.94776 Private room 65
## 1615 Midtown 40.75154 -73.97104 Entire home/apt 106
## 1616 Upper West Side 40.78361 -73.97645 Entire home/apt 155
## 1617 East Village 40.72849 -73.98041 Entire home/apt 249
## 1618 East Village 40.72369 -73.98940 Entire home/apt 120
## 1619 Greenpoint 40.72661 -73.94586 Private room 52
## 1620 East Village 40.72320 -73.97927 Private room 75
## 1621 Williamsburg 40.71714 -73.95447 Shared room 195
## 1622 Arrochar 40.59193 -74.06476 Entire home/apt 625
## 1623 Upper West Side 40.78674 -73.97243 Entire home/apt 171
## 1624 Upper West Side 40.78747 -73.97238 Entire home/apt 185
## 1625 Long Island City 40.74975 -73.93688 Private room 55
## 1626 Bushwick 40.70226 -73.92797 Private room 50
## 1627 Kips Bay 40.74231 -73.97839 Entire home/apt 120
## 1628 Tribeca 40.71778 -74.00452 Entire home/apt 210
## 1629 East Village 40.72960 -73.98479 Entire home/apt 133
## 1630 Brighton Beach 40.57728 -73.95362 Entire home/apt 73
## 1631 West Village 40.73454 -74.00365 Entire home/apt 350
## 1632 Tribeca 40.71729 -74.00424 Entire home/apt 259
## 1633 Inwood 40.85963 -73.93107 Private room 97
## 1634 Nolita 40.72290 -73.99574 Entire home/apt 199
## 1635 Morningside Heights 40.80529 -73.96467 Entire home/apt 125
## 1636 Fort Greene 40.68736 -73.97496 Entire home/apt 100
## 1637 Canarsie 40.62580 -73.90004 Private room 39
## 1638 Nolita 40.72064 -73.99605 Entire home/apt 125
## 1639 Harlem 40.80145 -73.95572 Entire home/apt 150
## 1640 Midtown 40.76412 -73.97666 Entire home/apt 170
## 1641 Little Italy 40.71955 -73.99706 Entire home/apt 199
## 1642 Harlem 40.81161 -73.94046 Private room 80
## 1643 Park Slope 40.67470 -73.98245 Private room 125
## 1644 Chelsea 40.74314 -74.00119 Private room 155
## 1645 Gramercy 40.73158 -73.98303 Private room 120
## 1646 Williamsburg 40.70608 -73.93154 Entire home/apt 220
## 1647 Bedford-Stuyvesant 40.68371 -73.95604 Entire home/apt 90
## 1648 Crown Heights 40.67652 -73.96140 Private room 61
## 1649 East Village 40.72699 -73.97969 Entire home/apt 179
## 1650 Flushing 40.76372 -73.79201 Shared room 108
## 1651 Clinton Hill 40.68391 -73.96201 Entire home/apt 575
## 1652 Upper West Side 40.77938 -73.98247 Private room 99
## 1653 Williamsburg 40.71890 -73.95725 Entire home/apt 175
## 1654 Flatbush 40.64294 -73.96016 Entire home/apt 110
## 1655 Park Slope 40.66777 -73.97781 Entire home/apt 250
## 1656 Bedford-Stuyvesant 40.67968 -73.94715 Private room 100
## 1657 Greenwich Village 40.72863 -74.00137 Entire home/apt 200
## 1658 Astoria 40.75583 -73.91839 Entire home/apt 89
## 1659 Chinatown 40.71592 -73.98980 Entire home/apt 400
## 1660 Windsor Terrace 40.65142 -73.97601 Entire home/apt 149
## 1661 SoHo 40.72408 -73.99823 Entire home/apt 500
## 1662 East Village 40.73233 -73.98695 Private room 95
## 1663 Bedford-Stuyvesant 40.67958 -73.93687 Entire home/apt 125
## 1664 Upper West Side 40.80193 -73.96703 Private room 80
## 1665 Bedford-Stuyvesant 40.68522 -73.93557 Entire home/apt 105
## 1666 Long Island City 40.75754 -73.93004 Private room 39
## 1667 Allerton 40.85840 -73.86969 Entire home/apt 49
## 1668 Greenwich Village 40.72714 -73.99581 Entire home/apt 187
## 1669 Bushwick 40.70118 -73.92826 Private room 55
## 1670 Prospect Heights 40.68116 -73.96559 Entire home/apt 250
## 1671 Midtown 40.75982 -73.96521 Entire home/apt 125
## 1672 Clinton Hill 40.68785 -73.96708 Entire home/apt 100
## 1673 Bedford-Stuyvesant 40.68444 -73.95692 Entire home/apt 175
## 1674 Clinton Hill 40.68468 -73.96303 Private room 50
## 1675 Midtown 40.75383 -73.96777 Entire home/apt 133
## 1676 Upper East Side 40.77638 -73.95247 Entire home/apt 155
## 1677 Astoria 40.76361 -73.91793 Entire home/apt 140
## 1678 Astoria 40.76605 -73.92922 Private room 80
## 1679 Bushwick 40.70022 -73.93032 Private room 103
## 1680 Upper West Side 40.78227 -73.98410 Entire home/apt 600
## 1681 Flatbush 40.64073 -73.95832 Private room 70
## 1682 Williamsburg 40.70369 -73.93284 Private room 75
## 1683 Flatbush 40.64232 -73.95720 Private room 55
## 1684 East Harlem 40.80826 -73.93401 Entire home/apt 50
## 1685 Ditmars Steinway 40.77466 -73.91807 Entire home/apt 390
## 1686 Crown Heights 40.67679 -73.93776 Entire home/apt 82
## 1687 Williamsburg 40.70745 -73.94307 Shared room 52
## 1688 Williamsburg 40.71203 -73.95993 Private room 115
## 1689 Bayside 40.75666 -73.76314 Entire home/apt 299
## 1690 Downtown Brooklyn 40.69594 -73.98375 Entire home/apt 175
## 1691 Williamsburg 40.71988 -73.95616 Entire home/apt 100
## 1692 Hell's Kitchen 40.75900 -73.99530 Entire home/apt 95
## 1693 Astoria 40.77016 -73.92316 Private room 55
## 1694 Bushwick 40.69254 -73.91092 Private room 45
## 1695 Williamsburg 40.71572 -73.95574 Entire home/apt 165
## 1696 Chelsea 40.75039 -74.00287 Entire home/apt 105
## 1697 Williamsburg 40.71435 -73.95073 Entire home/apt 200
## 1698 Washington Heights 40.83556 -73.94609 Private room 65
## 1699 East Village 40.72439 -73.97767 Private room 100
## 1700 Williamsburg 40.71790 -73.96107 Entire home/apt 312
## 1701 Flatiron District 40.73997 -73.98789 Entire home/apt 195
## 1702 Upper West Side 40.77734 -73.98770 Entire home/apt 100
## 1703 Prospect Heights 40.67453 -73.96759 Entire home/apt 155
## 1704 Ditmars Steinway 40.78027 -73.90821 Entire home/apt 250
## 1705 Hell's Kitchen 40.76078 -73.99076 Entire home/apt 165
## 1706 East Harlem 40.80343 -73.93514 Entire home/apt 120
## 1707 Allerton 40.85914 -73.86979 Private room 38
## 1708 Bedford-Stuyvesant 40.69407 -73.94551 Shared room 200
## 1709 Fort Greene 40.69377 -73.97009 Private room 90
## 1710 Upper East Side 40.77032 -73.95331 Private room 85
## 1711 Flushing 40.75612 -73.82517 Private room 55
## 1712 West Village 40.73461 -74.00594 Shared room 350
## 1713 East Village 40.72578 -73.98448 Private room 59
## 1714 Harlem 40.81381 -73.94314 Entire home/apt 280
## 1715 Long Island City 40.74527 -73.94629 Private room 69
## 1716 Williamsburg 40.71813 -73.96060 Entire home/apt 230
## 1717 Williamsburg 40.71606 -73.95527 Entire home/apt 200
## 1718 Flatbush 40.64047 -73.96388 Entire home/apt 150
## 1719 Bedford-Stuyvesant 40.69530 -73.95832 Private room 75
## 1720 Upper West Side 40.79767 -73.96114 Private room 120
## 1721 West Village 40.73652 -74.00876 Entire home/apt 140
## 1722 Upper West Side 40.79820 -73.97173 Entire home/apt 200
## 1723 Civic Center 40.71247 -73.99873 Entire home/apt 225
## 1724 Fort Greene 40.68798 -73.97442 Entire home/apt 145
## 1725 Port Morris 40.80461 -73.92276 Private room 60
## 1726 Bedford-Stuyvesant 40.68191 -73.95475 Entire home/apt 119
## 1727 West Village 40.73364 -74.00539 Entire home/apt 189
## 1728 West Village 40.73164 -74.00327 Entire home/apt 190
## 1729 Lower East Side 40.71502 -73.98192 Private room 69
## 1730 Long Island City 40.74997 -73.93970 Private room 70
## 1731 Williamsburg 40.71188 -73.96080 Entire home/apt 155
## 1732 Bedford-Stuyvesant 40.68176 -73.91400 Entire home/apt 149
## 1733 West Village 40.73186 -74.00329 Private room 160
## 1734 Williamsburg 40.70719 -73.95228 Private room 100
## 1735 Lower East Side 40.71818 -73.98206 Entire home/apt 220
## 1736 Washington Heights 40.84448 -73.93978 Private room 85
## 1737 East Village 40.72762 -73.98218 Entire home/apt 135
## 1738 Prospect-Lefferts Gardens 40.65545 -73.95781 Private room 45
## 1739 Harlem 40.82294 -73.94999 Entire home/apt 225
## 1740 Harlem 40.81915 -73.93964 Entire home/apt 100
## 1741 Williamsburg 40.71222 -73.95827 Entire home/apt 145
## 1742 West Village 40.73403 -74.00298 Entire home/apt 210
## 1743 Prospect Heights 40.67708 -73.96649 Entire home/apt 195
## 1744 Nolita 40.72232 -73.99343 Private room 95
## 1745 West Village 40.73761 -74.00043 Entire home/apt 140
## 1746 Harlem 40.79863 -73.95292 Private room 95
## 1747 Upper West Side 40.77775 -73.98732 Entire home/apt 295
## 1748 Washington Heights 40.85082 -73.93780 Private room 80
## 1749 East Village 40.72877 -73.98794 Entire home/apt 250
## 1750 Fieldston 40.88757 -73.90522 Entire home/apt 60
## 1751 Upper East Side 40.76553 -73.96262 Entire home/apt 150
## 1752 Lower East Side 40.71703 -73.98612 Entire home/apt 159
## 1753 Williamsburg 40.72034 -73.95669 Entire home/apt 225
## 1754 Harlem 40.82169 -73.93882 Private room 78
## 1755 Upper West Side 40.77445 -73.98496 Entire home/apt 210
## 1756 Bedford-Stuyvesant 40.68356 -73.94042 Private room 60
## 1757 Greenwich Village 40.73545 -73.99310 Entire home/apt 220
## 1758 Windsor Terrace 40.65954 -73.97805 Entire home/apt 199
## 1759 Windsor Terrace 40.65875 -73.97660 Entire home/apt 225
## 1760 Upper West Side 40.80118 -73.96783 Entire home/apt 350
## 1761 Inwood 40.86780 -73.92619 Private room 65
## 1762 Chelsea 40.75351 -73.99762 Entire home/apt 225
## 1763 Prospect-Lefferts Gardens 40.65586 -73.95953 Private room 82
## 1764 East Village 40.72381 -73.97896 Private room 75
## 1765 Ditmars Steinway 40.77452 -73.90889 Private room 60
## 1766 Upper East Side 40.76660 -73.95903 Entire home/apt 105
## 1767 Bushwick 40.70308 -73.92765 Entire home/apt 115
## 1768 Upper East Side 40.77043 -73.95150 Entire home/apt 150
## 1769 South Slope 40.66882 -73.98841 Private room 65
## 1770 Crown Heights 40.67759 -73.95432 Entire home/apt 150
## 1771 Williamsburg 40.70773 -73.95660 Private room 101
## 1772 Gramercy 40.73493 -73.98655 Entire home/apt 130
## 1773 Bedford-Stuyvesant 40.68561 -73.92029 Private room 165
## 1774 Upper East Side 40.77483 -73.94674 Entire home/apt 175
## 1775 Harlem 40.82536 -73.94923 Entire home/apt 115
## 1776 Fort Greene 40.69075 -73.97192 Entire home/apt 128
## 1777 Kips Bay 40.74490 -73.97656 Entire home/apt 116
## 1778 Washington Heights 40.85262 -73.93821 Entire home/apt 192
## 1779 Prospect Heights 40.67338 -73.96415 Entire home/apt 150
## 1780 Williamsburg 40.70538 -73.92946 Entire home/apt 163
## 1781 Fort Greene 40.68537 -73.97713 Private room 40
## 1782 Williamsburg 40.71760 -73.95234 Entire home/apt 200
## 1783 Lower East Side 40.71956 -73.98574 Entire home/apt 158
## 1784 Park Slope 40.68015 -73.97800 Private room 115
## 1785 Harlem 40.82974 -73.94193 Private room 85
## 1786 Upper West Side 40.78592 -73.97775 Entire home/apt 173
## 1787 Crown Heights 40.67504 -73.95273 Entire home/apt 250
## 1788 NoHo 40.72591 -73.99452 Entire home/apt 465
## 1789 Williamsburg 40.70747 -73.93879 Entire home/apt 275
## 1790 Chinatown 40.71786 -73.99518 Private room 195
## 1791 Clinton Hill 40.68631 -73.96802 Entire home/apt 63
## 1792 Washington Heights 40.83329 -73.93834 Private room 36
## 1793 Carroll Gardens 40.68216 -73.99504 Entire home/apt 130
## 1794 Boerum Hill 40.68418 -73.98039 Entire home/apt 200
## 1795 Greenpoint 40.73159 -73.95048 Private room 85
## 1796 Long Island City 40.76108 -73.92740 Entire home/apt 150
## 1797 Elmhurst 40.73698 -73.87763 Private room 45
## 1798 Elmhurst 40.73842 -73.87609 Private room 45
## 1799 Williamsburg 40.70876 -73.94971 Private room 79
## 1800 Williamsburg 40.71986 -73.95925 Entire home/apt 149
## 1801 East Village 40.72721 -73.98411 Entire home/apt 200
## 1802 Harlem 40.83378 -73.94966 Private room 85
## 1803 Kew Gardens 40.70947 -73.82922 Private room 60
## 1804 Hell's Kitchen 40.76704 -73.98345 Entire home/apt 139
## 1805 Williamsburg 40.71190 -73.96031 Entire home/apt 160
## 1806 East Harlem 40.78728 -73.94579 Private room 95
## 1807 Williamsburg 40.70281 -73.94328 Private room 80
## 1808 Clinton Hill 40.69319 -73.96351 Entire home/apt 250
## 1809 Chelsea 40.74117 -73.99517 Entire home/apt 349
## 1810 Harlem 40.80586 -73.94642 Entire home/apt 165
## 1811 Boerum Hill 40.68515 -73.99055 Entire home/apt 119
## 1812 West Village 40.73713 -74.00232 Entire home/apt 240
## 1813 Bedford-Stuyvesant 40.68194 -73.92757 Private room 79
## 1814 Bedford-Stuyvesant 40.68509 -73.93854 Entire home/apt 215
## 1815 Kensington 40.63547 -73.97417 Private room 49
## 1816 Park Slope 40.67138 -73.97772 Entire home/apt 190
## 1817 Chelsea 40.74082 -73.99581 Entire home/apt 99
## 1818 Fort Greene 40.68871 -73.97181 Private room 68
## 1819 Park Slope 40.67228 -73.97248 Entire home/apt 185
## 1820 Lower East Side 40.71988 -73.98639 Entire home/apt 225
## 1821 Upper East Side 40.77171 -73.95042 Private room 81
## 1822 East Village 40.72699 -73.97894 Entire home/apt 199
## 1823 Bushwick 40.69160 -73.92294 Private room 55
## 1824 West Village 40.73227 -74.00949 Entire home/apt 340
## 1825 Harlem 40.80139 -73.95433 Entire home/apt 135
## 1826 Sunnyside 40.74263 -73.92476 Entire home/apt 85
## 1827 Bushwick 40.69764 -73.93084 Entire home/apt 65
## 1828 Washington Heights 40.85604 -73.93469 Entire home/apt 100
## 1829 Crown Heights 40.67309 -73.94799 Private room 109
## 1830 Greenwich Village 40.72825 -74.00225 Entire home/apt 290
## 1831 Harlem 40.82513 -73.94617 Private room 35
## 1832 Kips Bay 40.74450 -73.97583 Entire home/apt 148
## 1833 Flushing 40.75979 -73.81016 Private room 57
## 1834 Upper East Side 40.76883 -73.95353 Entire home/apt 150
## 1835 Harlem 40.82258 -73.95418 Private room 60
## 1836 Harlem 40.82238 -73.95534 Private room 60
## 1837 East Harlem 40.79106 -73.95058 Shared room 45
## 1838 Harlem 40.82173 -73.95548 Private room 60
## 1839 Clinton Hill 40.68443 -73.96337 Entire home/apt 125
## 1840 Harlem 40.82233 -73.95568 Private room 60
## 1841 Bedford-Stuyvesant 40.68615 -73.93095 Private room 75
## 1842 East Village 40.73131 -73.98609 Entire home/apt 121
## 1843 Clinton Hill 40.69413 -73.96389 Private room 89
## 1844 Greenpoint 40.72103 -73.94798 Entire home/apt 300
## 1845 Greenpoint 40.73319 -73.95623 Private room 110
## 1846 Greenpoint 40.72166 -73.94037 Entire home/apt 99
## 1847 Downtown Brooklyn 40.69379 -73.98525 Entire home/apt 170
## 1848 Crown Heights 40.67231 -73.96032 Private room 90
## 1849 Chelsea 40.75284 -74.00138 Private room 179
## 1850 Harlem 40.81024 -73.94154 Private room 80
## 1851 Harlem 40.80997 -73.93992 Private room 65
## 1852 Lower East Side 40.72125 -73.99272 Private room 69
## 1853 Bushwick 40.69763 -73.93102 Private room 42
## 1854 Williamsburg 40.71622 -73.96042 Private room 70
## 1855 Park Slope 40.67507 -73.97792 Entire home/apt 155
## 1856 Upper East Side 40.76744 -73.96118 Entire home/apt 135
## 1857 Greenwich Village 40.73336 -73.99836 Private room 120
## 1858 Gowanus 40.67869 -73.99197 Entire home/apt 135
## 1859 Tompkinsville 40.63132 -74.08799 Private room 47
## 1860 Harlem 40.80394 -73.95060 Private room 69
## 1861 Crown Heights 40.67828 -73.95646 Private room 100
## 1862 Bedford-Stuyvesant 40.68407 -73.93944 Private room 51
## 1863 Prospect Heights 40.67919 -73.97191 Entire home/apt 4000
## 1864 Chelsea 40.73588 -73.99224 Private room 65
## 1865 Clinton Hill 40.68334 -73.96704 Private room 60
## 1866 Prospect-Lefferts Gardens 40.66229 -73.96296 Private room 70
## 1867 Gramercy 40.73490 -73.98549 Entire home/apt 130
## 1868 Bedford-Stuyvesant 40.69380 -73.94698 Private room 70
## 1869 Clinton Hill 40.68673 -73.96252 Entire home/apt 200
## 1870 Prospect Heights 40.67378 -73.96471 Entire home/apt 150
## 1871 Washington Heights 40.83783 -73.93832 Entire home/apt 130
## 1872 Midwood 40.62908 -73.95965 Private room 68
## 1873 East Village 40.72632 -73.97907 Private room 79
## 1874 Upper West Side 40.77627 -73.98365 Entire home/apt 149
## 1875 Bushwick 40.70738 -73.92213 Private room 120
## 1876 Upper East Side 40.77613 -73.94872 Entire home/apt 250
## 1877 Upper West Side 40.77837 -73.97964 Entire home/apt 175
## 1878 Washington Heights 40.85123 -73.93223 Private room 40
## 1879 Greenpoint 40.73184 -73.95802 Private room 55
## 1880 Lower East Side 40.71921 -73.99116 Private room 99
## 1881 Williamsburg 40.71699 -73.95817 Entire home/apt 500
## 1882 Chelsea 40.74372 -74.00021 Entire home/apt 240
## 1883 College Point 40.78417 -73.83875 Entire home/apt 400
## 1884 Upper East Side 40.77389 -73.95100 Entire home/apt 280
## 1885 Tribeca 40.71969 -74.00876 Entire home/apt 235
## 1886 East Village 40.72250 -73.98267 Entire home/apt 130
## 1887 Bedford-Stuyvesant 40.69165 -73.95456 Entire home/apt 96
## 1888 Long Island City 40.75290 -73.92985 Private room 63
## 1889 Sunset Park 40.66059 -73.99361 Entire home/apt 150
## 1890 Williamsburg 40.71733 -73.95310 Entire home/apt 200
## 1891 Prospect Heights 40.67922 -73.96907 Entire home/apt 90
## 1892 Midtown 40.76188 -73.97193 Entire home/apt 269
## 1893 East Village 40.72876 -73.98413 Private room 80
## 1894 Prospect Heights 40.68062 -73.97042 Private room 80
## 1895 West Village 40.73126 -74.00502 Entire home/apt 400
## 1896 Greenwich Village 40.73075 -73.99265 Entire home/apt 349
## 1897 East Village 40.73345 -73.98956 Entire home/apt 495
## 1898 Prospect Heights 40.67630 -73.96528 Entire home/apt 85
## 1899 Bushwick 40.70366 -73.92690 Entire home/apt 85
## 1900 Chelsea 40.74660 -73.99219 Private room 999
## 1901 Chelsea 40.74712 -73.99514 Private room 109
## 1902 Lower East Side 40.71892 -73.98627 Entire home/apt 175
## 1903 Chinatown 40.71593 -73.99031 Entire home/apt 150
## 1904 Williamsburg 40.71541 -73.94464 Private room 80
## 1905 Upper West Side 40.77886 -73.98444 Entire home/apt 150
## 1906 Hell's Kitchen 40.76194 -73.99346 Entire home/apt 175
## 1907 Astoria 40.75665 -73.92015 Entire home/apt 107
## 1908 Washington Heights 40.84714 -73.94172 Entire home/apt 80
## 1909 Flushing 40.76074 -73.80969 Private room 80
## 1910 Harlem 40.81290 -73.95213 Private room 75
## 1911 Bushwick 40.70234 -73.92424 Entire home/apt 800
## 1912 Flatbush 40.62961 -73.95720 Entire home/apt 130
## 1913 West Village 40.73574 -74.00056 Entire home/apt 250
## 1914 Lower East Side 40.71312 -73.99033 Entire home/apt 260
## 1915 Clinton Hill 40.69691 -73.96713 Private room 36
## 1916 Prospect-Lefferts Gardens 40.66251 -73.95374 Entire home/apt 140
## 1917 Lower East Side 40.72003 -73.98693 Entire home/apt 145
## 1918 Williamsburg 40.71410 -73.96477 Entire home/apt 120
## 1919 Williamsburg 40.70694 -73.95307 Private room 75
## 1920 Bedford-Stuyvesant 40.68941 -73.95247 Private room 60
## 1921 Bushwick 40.70770 -73.92212 Private room 69
## 1922 Lower East Side 40.71275 -73.98682 Private room 95
## 1923 Upper West Side 40.78689 -73.97314 Entire home/apt 300
## 1924 Upper West Side 40.78429 -73.97815 Private room 131
## 1925 Bushwick 40.70160 -73.91868 Entire home/apt 120
## 1926 Bedford-Stuyvesant 40.68196 -73.95168 Entire home/apt 100
## 1927 Kensington 40.64651 -73.97662 Entire home/apt 100
## 1928 East Village 40.73031 -73.98426 Entire home/apt 190
## 1929 Upper East Side 40.76714 -73.95922 Entire home/apt 160
## 1930 Flushing 40.76000 -73.81117 Private room 60
## 1931 Prospect-Lefferts Gardens 40.65930 -73.95686 Private room 75
## 1932 Flushing 40.76014 -73.81146 Private room 45
## 1933 Harlem 40.80712 -73.95316 Private room 65
## 1934 Prospect Heights 40.68099 -73.97446 Entire home/apt 120
## 1935 Inwood 40.86585 -73.92693 Entire home/apt 80
## 1936 Crown Heights 40.67525 -73.94860 Entire home/apt 100
## 1937 Carroll Gardens 40.67771 -73.99428 Entire home/apt 250
## 1938 West Village 40.73118 -74.00290 Entire home/apt 235
## 1939 Williamsburg 40.71060 -73.96532 Private room 85
## 1940 Upper East Side 40.77815 -73.95902 Entire home/apt 195
## 1941 Williamsburg 40.71427 -73.94671 Entire home/apt 145
## 1942 Williamsburg 40.71731 -73.95627 Entire home/apt 55
## 1943 Bushwick 40.68646 -73.91313 Entire home/apt 289
## 1944 Greenwich Village 40.73132 -73.99979 Entire home/apt 120
## 1945 Williamsburg 40.71171 -73.96694 Entire home/apt 149
## 1946 Washington Heights 40.84764 -73.93875 Shared room 100
## 1947 Upper East Side 40.77040 -73.95024 Entire home/apt 166
## 1948 Washington Heights 40.85016 -73.93178 Entire home/apt 99
## 1949 Crown Heights 40.67434 -73.95728 Entire home/apt 150
## 1950 Gowanus 40.66893 -73.99404 Shared room 44
## 1951 Greenwich Village 40.72977 -74.00164 Entire home/apt 195
## 1952 Astoria 40.76488 -73.92970 Entire home/apt 95
## 1953 Civic Center 40.71230 -73.99946 Private room 100
## 1954 Flatbush 40.64890 -73.96872 Entire home/apt 60
## 1955 Harlem 40.80925 -73.95541 Private room 62
## 1956 East Village 40.72957 -73.98406 Private room 99
## 1957 Lower East Side 40.72034 -73.98585 Private room 90
## 1958 Upper West Side 40.79279 -73.97131 Private room 88
## 1959 Harlem 40.80845 -73.94435 Entire home/apt 125
## 1960 Flatbush 40.64830 -73.96440 Private room 74
## 1961 Hell's Kitchen 40.76616 -73.98411 Entire home/apt 176
## 1962 Park Slope 40.67422 -73.98097 Private room 62
## 1963 East Harlem 40.80215 -73.93889 Private room 51
## 1964 Williamsburg 40.71373 -73.94958 Entire home/apt 249
## 1965 Chelsea 40.73818 -73.99770 Entire home/apt 200
## 1966 Mount Eden 40.84058 -73.91382 Private room 30
## 1967 Gowanus 40.66958 -73.98998 Entire home/apt 240
## 1968 East Harlem 40.79541 -73.94465 Private room 100
## 1969 East Harlem 40.78844 -73.94951 Entire home/apt 125
## 1970 Fort Greene 40.68681 -73.97675 Entire home/apt 149
## 1971 Clinton Hill 40.68707 -73.96571 Entire home/apt 170
## 1972 Washington Heights 40.85081 -73.93118 Private room 150
## 1973 Upper West Side 40.77366 -73.98574 Private room 125
## 1974 Sunset Park 40.64902 -74.00897 Private room 68
## 1975 Harlem 40.82719 -73.94484 Private room 90
## 1976 Harlem 40.82316 -73.94129 Private room 65
## 1977 Greenpoint 40.73404 -73.95737 Private room 50
## 1978 Bedford-Stuyvesant 40.68344 -73.92189 Private room 65
## 1979 Crown Heights 40.67813 -73.96355 Entire home/apt 200
## 1980 Bedford-Stuyvesant 40.68411 -73.92973 Private room 65
## 1981 Williamsburg 40.70933 -73.94141 Private room 58
## 1982 Harlem 40.82579 -73.94907 Private room 65
## 1983 Clinton Hill 40.69208 -73.96525 Entire home/apt 185
## 1984 Bensonhurst 40.61010 -73.99591 Entire home/apt 115
## 1985 East Harlem 40.80320 -73.94004 Private room 100
## 1986 East Village 40.73200 -73.98759 Private room 200
## 1987 Flatbush 40.65307 -73.95781 Entire home/apt 115
## 1988 Crown Heights 40.67121 -73.95534 Entire home/apt 140
## 1989 Bushwick 40.68777 -73.91601 Private room 62
## 1990 Kensington 40.64534 -73.97189 Entire home/apt 95
## 1991 Bedford-Stuyvesant 40.68586 -73.95875 Entire home/apt 100
## 1992 West Village 40.73746 -74.00686 Entire home/apt 113
## 1993 Morningside Heights 40.81368 -73.95942 Entire home/apt 108
## 1994 Bedford-Stuyvesant 40.68598 -73.92677 Private room 62
## 1995 Williamsburg 40.71518 -73.94571 Entire home/apt 95
## 1996 Williamsburg 40.71335 -73.94960 Entire home/apt 200
## 1997 Harlem 40.82764 -73.93842 Entire home/apt 165
## 1998 Prospect-Lefferts Gardens 40.65514 -73.95956 Private room 60
## 1999 Williamsburg 40.70502 -73.95262 Private room 80
## 2000 Prospect-Lefferts Gardens 40.66033 -73.96212 Entire home/apt 100
## 2001 Hell's Kitchen 40.76113 -73.98918 Private room 110
## 2002 Bedford-Stuyvesant 40.69132 -73.94205 Shared room 50
## 2003 Clinton Hill 40.69494 -73.96372 Private room 79
## 2004 Carroll Gardens 40.67996 -74.00101 Entire home/apt 140
## 2005 Upper West Side 40.78615 -73.98137 Entire home/apt 339
## 2006 Flushing 40.75088 -73.81029 Private room 55
## 2007 Flushing 40.75250 -73.81126 Entire home/apt 81
## 2008 Williamsburg 40.71437 -73.96054 Entire home/apt 191
## 2009 Bushwick 40.69982 -73.91957 Entire home/apt 139
## 2010 Murray Hill 40.74791 -73.97334 Entire home/apt 500
## 2011 Greenpoint 40.73400 -73.95474 Entire home/apt 120
## 2012 East Harlem 40.78933 -73.94932 Private room 60
## 2013 Jackson Heights 40.75374 -73.89240 Private room 70
## 2014 Crown Heights 40.68015 -73.96299 Entire home/apt 295
## 2015 Clinton Hill 40.68252 -73.96664 Entire home/apt 100
## 2016 Harlem 40.82264 -73.94041 Private room 49
## 2017 West Village 40.73084 -74.00431 Entire home/apt 150
## 2018 Bedford-Stuyvesant 40.68485 -73.93684 Entire home/apt 120
## 2019 East Village 40.72668 -73.98179 Entire home/apt 2500
## 2020 Flatiron District 40.74207 -73.99094 Entire home/apt 175
## 2021 Bedford-Stuyvesant 40.68194 -73.92896 Entire home/apt 107
## 2022 Williamsburg 40.71216 -73.96326 Private room 98
## 2023 Astoria 40.76860 -73.92010 Private room 47
## 2024 Harlem 40.82434 -73.93957 Entire home/apt 100
## 2025 Harlem 40.80706 -73.95403 Entire home/apt 170
## 2026 West Village 40.73276 -74.00074 Entire home/apt 150
## 2027 Briarwood 40.71156 -73.80910 Entire home/apt 63
## 2028 Bedford-Stuyvesant 40.68145 -73.95178 Shared room 110
## 2029 Clinton Hill 40.68753 -73.96002 Entire home/apt 275
## 2030 South Slope 40.66485 -73.98838 Entire home/apt 329
## 2031 Harlem 40.82124 -73.93838 Private room 49
## 2032 Harlem 40.82085 -73.94025 Private room 49
## 2033 Clinton Hill 40.68496 -73.96111 Entire home/apt 165
## 2034 Greenpoint 40.73425 -73.95506 Entire home/apt 160
## 2035 Flatbush 40.64388 -73.95279 Private room 38
## 2036 Upper West Side 40.79626 -73.96145 Entire home/apt 170
## 2037 Morningside Heights 40.80776 -73.96540 Private room 105
## 2038 Greenpoint 40.72676 -73.95529 Private room 50
## 2039 East Harlem 40.80100 -73.94009 Private room 100
## 2040 East Village 40.72784 -73.98486 Entire home/apt 100
## 2041 Park Slope 40.67340 -73.97657 Entire home/apt 890
## 2042 Financial District 40.71078 -74.00995 Private room 160
## 2043 East Village 40.72300 -73.97861 Entire home/apt 145
## 2044 Bedford-Stuyvesant 40.69901 -73.93967 Private room 51
## 2045 South Slope 40.66414 -73.98457 Entire home/apt 150
## 2046 East Village 40.72361 -73.97877 Private room 180
## 2047 Greenwich Village 40.73356 -73.99876 Entire home/apt 225
## 2048 Chelsea 40.73949 -73.99483 Entire home/apt 250
## 2049 Williamsburg 40.70159 -73.94346 Private room 56
## 2050 Prospect Heights 40.67852 -73.97008 Private room 70
## 2051 Park Slope 40.67665 -73.97925 Private room 70
## 2052 Chelsea 40.74605 -73.99906 Private room 125
## 2053 Hell's Kitchen 40.76420 -73.98677 Entire home/apt 399
## 2054 Carroll Gardens 40.67573 -73.99878 Entire home/apt 157
## 2055 Bedford-Stuyvesant 40.68863 -73.94294 Entire home/apt 145
## 2056 Washington Heights 40.84408 -73.93675 Private room 75
## 2057 Bedford-Stuyvesant 40.68336 -73.93648 Entire home/apt 280
## 2058 Williamsburg 40.71579 -73.95880 Entire home/apt 220
## 2059 Upper West Side 40.78860 -73.97553 Entire home/apt 190
## 2060 Upper West Side 40.78775 -73.98152 Entire home/apt 200
## 2061 Briarwood 40.70715 -73.81468 Entire home/apt 77
## 2062 Bedford-Stuyvesant 40.68713 -73.93659 Private room 35
## 2063 Bedford-Stuyvesant 40.68700 -73.93446 Shared room 30
## 2064 East Village 40.72615 -73.98781 Entire home/apt 199
## 2065 Hell's Kitchen 40.75893 -73.99014 Entire home/apt 140
## 2066 Chelsea 40.74435 -74.00038 Entire home/apt 124
## 2067 East Village 40.73194 -73.98939 Entire home/apt 295
## 2068 Chinatown 40.71890 -73.99654 Entire home/apt 160
## 2069 Long Island City 40.74641 -73.94611 Private room 349
## 2070 Clinton Hill 40.68618 -73.96603 Private room 98
## 2071 Flushing 40.75444 -73.83057 Private room 76
## 2072 Upper East Side 40.77543 -73.95499 Entire home/apt 230
## 2073 Vinegar Hill 40.70163 -73.98208 Private room 60
## 2074 Bushwick 40.69958 -73.92006 Private room 40
## 2075 Murray Hill 40.74848 -73.97884 Private room 118
## 2076 DUMBO 40.70434 -73.98989 Private room 125
## 2077 Fort Greene 40.69097 -73.97972 Entire home/apt 195
## 2078 Hell's Kitchen 40.76300 -73.98911 Private room 85
## 2079 Harlem 40.81378 -73.95353 Private room 55
## 2080 Bushwick 40.70627 -73.92223 Entire home/apt 155
## 2081 Williamsburg 40.70780 -73.94827 Private room 99
## 2082 Harlem 40.81071 -73.94493 Entire home/apt 140
## 2083 Bedford-Stuyvesant 40.69430 -73.94538 Private room 85
## 2084 Crown Heights 40.67555 -73.95254 Entire home/apt 75
## 2085 Sunset Park 40.64942 -74.00749 Private room 53
## 2086 Crown Heights 40.67296 -73.95010 Entire home/apt 150
## 2087 Hell's Kitchen 40.76662 -73.99302 Entire home/apt 179
## 2088 Crown Heights 40.67607 -73.95408 Entire home/apt 135
## 2089 West Village 40.73194 -74.00189 Entire home/apt 200
## 2090 Harlem 40.81177 -73.95139 Entire home/apt 200
## 2091 Prospect-Lefferts Gardens 40.65908 -73.96125 Entire home/apt 100
## 2092 DUMBO 40.70447 -73.98754 Entire home/apt 134
## 2093 East Village 40.72836 -73.98163 Private room 100
## 2094 Upper East Side 40.77464 -73.95695 Private room 50
## 2095 Williamsburg 40.71684 -73.94410 Private room 50
## 2096 Gowanus 40.67450 -73.99582 Entire home/apt 400
## 2097 Ridgewood 40.70990 -73.91509 Entire home/apt 115
## 2098 SoHo 40.72493 -74.00307 Entire home/apt 235
## 2099 East Harlem 40.79531 -73.93330 Entire home/apt 125
## 2100 West Village 40.73377 -74.00259 Entire home/apt 250
## 2101 SoHo 40.72256 -73.99767 Entire home/apt 650
## 2102 Prospect Heights 40.67942 -73.97078 Private room 97
## 2103 DUMBO 40.70424 -73.98597 Entire home/apt 189
## 2104 Upper West Side 40.79820 -73.96394 Entire home/apt 100
## 2105 Prospect-Lefferts Gardens 40.66167 -73.95098 Private room 49
## 2106 City Island 40.85235 -73.78873 Entire home/apt 84
## 2107 Williamsburg 40.71765 -73.93999 Entire home/apt 165
## 2108 Chinatown 40.71687 -73.99046 Entire home/apt 87
## 2109 Williamsburg 40.71081 -73.96121 Private room 120
## 2110 SoHo 40.72538 -74.00375 Entire home/apt 195
## 2111 Bedford-Stuyvesant 40.69437 -73.94519 Private room 89
## 2112 Bushwick 40.69288 -73.90374 Private room 62
## 2113 Bay Ridge 40.63463 -74.03621 Entire home/apt 130
## 2114 East Village 40.72726 -73.97573 Private room 75
## 2115 Prospect Heights 40.67501 -73.96651 Private room 64
## 2116 Williamsburg 40.71916 -73.95696 Entire home/apt 150
## 2117 Harlem 40.80667 -73.95562 Private room 100
## 2118 Upper West Side 40.79368 -73.96487 Entire home/apt 190
## 2119 Williamsburg 40.71149 -73.94504 Private room 98
## 2120 Brooklyn Heights 40.69224 -73.99638 Entire home/apt 150
## 2121 East Elmhurst 40.76356 -73.88850 Entire home/apt 99
## 2122 Harlem 40.82421 -73.93996 Entire home/apt 100
## 2123 East Village 40.73055 -73.98875 Entire home/apt 159
## 2124 Bushwick 40.69282 -73.92477 Private room 70
## 2125 East Village 40.72792 -73.98507 Private room 91
## 2126 Brooklyn Heights 40.69293 -73.99679 Entire home/apt 325
## 2127 Fort Hamilton 40.61806 -74.03195 Entire home/apt 149
## 2128 East Village 40.72820 -73.98893 Entire home/apt 200
## 2129 Upper West Side 40.80014 -73.96370 Entire home/apt 169
## 2130 West Village 40.73359 -74.00524 Entire home/apt 249
## 2131 Astoria 40.75751 -73.91678 Entire home/apt 85
## 2132 Astoria 40.76291 -73.91871 Private room 81
## 2133 East Village 40.72658 -73.98907 Entire home/apt 199
## 2134 Harlem 40.82892 -73.94745 Entire home/apt 88
## 2135 West Village 40.73331 -74.00471 Entire home/apt 170
## 2136 Morningside Heights 40.81062 -73.96015 Entire home/apt 100
## 2137 Fort Greene 40.68859 -73.97290 Entire home/apt 130
## 2138 Harlem 40.80421 -73.94302 Entire home/apt 135
## 2139 Bay Ridge 40.63508 -74.03628 Entire home/apt 65
## 2140 Brooklyn Heights 40.70162 -73.99465 Entire home/apt 100
## 2141 East Harlem 40.80626 -73.94009 Entire home/apt 165
## 2142 Astoria 40.76491 -73.92070 Private room 78
## 2143 Cobble Hill 40.68556 -73.99779 Entire home/apt 350
## 2144 Flushing 40.74142 -73.82020 Entire home/apt 160
## 2145 Prospect Heights 40.67682 -73.96586 Entire home/apt 225
## 2146 Harlem 40.80684 -73.94844 Entire home/apt 170
## 2147 Midtown 40.75136 -73.97076 Private room 349
## 2148 East Harlem 40.79218 -73.95076 Private room 65
## 2149 East Village 40.72399 -73.98134 Private room 420
## 2150 Nolita 40.72131 -73.99487 Entire home/apt 119
## 2151 Park Slope 40.67359 -73.97434 Entire home/apt 100
## 2152 Harlem 40.82780 -73.94891 Entire home/apt 97
## 2153 Upper West Side 40.78729 -73.97439 Entire home/apt 191
## 2154 Upper West Side 40.78520 -73.97460 Entire home/apt 187
## 2155 Upper West Side 40.78558 -73.97251 Entire home/apt 172
## 2156 West Village 40.73464 -74.00225 Entire home/apt 950
## 2157 Fort Greene 40.69248 -73.96983 Entire home/apt 275
## 2158 Upper West Side 40.78954 -73.97222 Entire home/apt 99
## 2159 Greenwich Village 40.73506 -73.99728 Entire home/apt 334
## 2160 Upper East Side 40.76896 -73.95898 Private room 60
## 2161 Bedford-Stuyvesant 40.68364 -73.92638 Entire home/apt 145
## 2162 Astoria 40.76030 -73.91395 Private room 75
## 2163 SoHo 40.72602 -74.00318 Entire home/apt 130
## 2164 Tribeca 40.71927 -74.00453 Entire home/apt 575
## 2165 Upper West Side 40.77896 -73.97849 Entire home/apt 295
## 2166 West Village 40.73303 -74.00237 Entire home/apt 300
## 2167 Crown Heights 40.67319 -73.95987 Entire home/apt 120
## 2168 Bushwick 40.68923 -73.91946 Private room 50
## 2169 East Harlem 40.79307 -73.95138 Shared room 56
## 2170 Upper East Side 40.76249 -73.96054 Entire home/apt 191
## 2171 Upper West Side 40.79962 -73.96523 Private room 135
## 2172 South Slope 40.66162 -73.97994 Entire home/apt 195
## 2173 Harlem 40.80132 -73.95568 Shared room 75
## 2174 Harlem 40.81309 -73.95267 Private room 99
## 2175 Carroll Gardens 40.68204 -73.99249 Entire home/apt 350
## 2176 Williamsburg 40.70607 -73.93500 Entire home/apt 40
## 2177 Astoria 40.76295 -73.92652 Entire home/apt 130
## 2178 Prospect-Lefferts Gardens 40.65915 -73.96010 Entire home/apt 225
## 2179 Park Slope 40.67541 -73.97840 Entire home/apt 225
## 2180 Astoria 40.76777 -73.91109 Shared room 38
## 2181 Clinton Hill 40.68924 -73.96810 Entire home/apt 200
## 2182 Hell's Kitchen 40.76777 -73.98932 Entire home/apt 550
## 2183 Clinton Hill 40.68771 -73.96186 Entire home/apt 235
## 2184 Prospect-Lefferts Gardens 40.66270 -73.95875 Private room 75
## 2185 Greenpoint 40.72031 -73.94830 Entire home/apt 249
## 2186 Williamsburg 40.70798 -73.94263 Entire home/apt 120
## 2187 Bedford-Stuyvesant 40.69017 -73.95493 Private room 50
## 2188 Crown Heights 40.66974 -73.95800 Entire home/apt 85
## 2189 Crown Heights 40.67515 -73.95435 Private room 78
## 2190 Lower East Side 40.72198 -73.98932 Private room 110
## 2191 Prospect Heights 40.67870 -73.97065 Private room 50
## 2192 Harlem 40.82153 -73.95512 Private room 52
## 2193 Williamsburg 40.71238 -73.93790 Private room 63
## 2194 Upper East Side 40.77421 -73.95280 Entire home/apt 105
## 2195 Glendale 40.70538 -73.89448 Private room 75
## 2196 Long Island City 40.74417 -73.94823 Private room 69
## 2197 East Village 40.72538 -73.98351 Entire home/apt 165
## 2198 Park Slope 40.67651 -73.98007 Entire home/apt 125
## 2199 Concourse 40.81906 -73.92806 Private room 85
## 2200 East Village 40.72351 -73.98283 Entire home/apt 499
## 2201 East Village 40.72944 -73.98645 Private room 60
## 2202 East Village 40.72346 -73.97907 Private room 95
## 2203 Bedford-Stuyvesant 40.69872 -73.94635 Entire home/apt 105
## 2204 Bushwick 40.69449 -73.91156 Private room 55
## 2205 Williamsburg 40.71132 -73.94493 Entire home/apt 289
## 2206 Sunset Park 40.64871 -74.00774 Private room 70
## 2207 Chelsea 40.74583 -74.00363 Entire home/apt 275
## 2208 Harlem 40.80938 -73.94196 Entire home/apt 130
## 2209 Prospect-Lefferts Gardens 40.65743 -73.96155 Entire home/apt 125
## 2210 Bedford-Stuyvesant 40.68854 -73.95742 Entire home/apt 150
## 2211 Astoria 40.75537 -73.91648 Private room 46
## 2212 Upper East Side 40.77054 -73.95497 Entire home/apt 100
## 2213 Williamsburg 40.71800 -73.96603 Private room 90
## 2214 Williamsburg 40.72091 -73.96124 Entire home/apt 90
## 2215 Midtown 40.75879 -73.96380 Entire home/apt 220
## 2216 Tribeca 40.72008 -74.00430 Entire home/apt 1000
## 2217 Bedford-Stuyvesant 40.68240 -73.93597 Entire home/apt 130
## 2218 Chelsea 40.74398 -73.99624 Entire home/apt 499
## 2219 Harlem 40.82943 -73.94728 Private room 45
## 2220 Bedford-Stuyvesant 40.69235 -73.93836 Entire home/apt 70
## 2221 Flushing 40.75334 -73.81699 Private room 59
## 2222 Chelsea 40.74112 -74.00177 Entire home/apt 160
## 2223 Harlem 40.80350 -73.94764 Entire home/apt 195
## 2224 Flatbush 40.64745 -73.95606 Private room 96
## 2225 Williamsburg 40.71454 -73.95070 Private room 75
## 2226 Williamsburg 40.71797 -73.95508 Entire home/apt 195
## 2227 Ditmars Steinway 40.77117 -73.90427 Private room 200
## 2228 Bedford-Stuyvesant 40.68753 -73.95851 Entire home/apt 139
## 2229 Harlem 40.81241 -73.94371 Entire home/apt 190
## 2230 Harlem 40.80384 -73.95419 Private room 95
## 2231 Lower East Side 40.71886 -73.98497 Entire home/apt 350
## 2232 Gramercy 40.73323 -73.98224 Private room 80
## 2233 East Harlem 40.79535 -73.93274 Entire home/apt 120
## 2234 Inwood 40.85933 -73.92863 Private room 42
## 2235 Williamsburg 40.70851 -73.94900 Entire home/apt 116
## 2236 East Flatbush 40.64851 -73.94667 Private room 60
## 2237 Carroll Gardens 40.67881 -73.99379 Entire home/apt 1395
## 2238 Upper East Side 40.77014 -73.96222 Entire home/apt 425
## 2239 Boerum Hill 40.68554 -73.98924 Entire home/apt 225
## 2240 East Village 40.72650 -73.99000 Entire home/apt 159
## 2241 Port Richmond 40.62922 -74.13354 Entire home/apt 221
## 2242 Midtown 40.76463 -73.98112 Private room 150
## 2243 Upper East Side 40.77440 -73.95578 Entire home/apt 199
## 2244 Crown Heights 40.67418 -73.94661 Private room 70
## 2245 East Harlem 40.79417 -73.94376 Entire home/apt 110
## 2246 Bushwick 40.69935 -73.93713 Private room 60
## 2247 Crown Heights 40.67046 -73.94835 Private room 50
## 2248 Lower East Side 40.72046 -73.98773 Private room 120
## 2249 East Village 40.72390 -73.97869 Entire home/apt 395
## 2250 Crown Heights 40.67414 -73.95667 Private room 60
## 2251 Midtown 40.75783 -73.96383 Entire home/apt 145
## 2252 Williamsburg 40.71273 -73.94399 Entire home/apt 83
## 2253 SoHo 40.72086 -73.99999 Private room 100
## 2254 Crown Heights 40.67151 -73.94885 Entire home/apt 200
## 2255 Harlem 40.82500 -73.94132 Private room 50
## 2256 Chelsea 40.74573 -73.99712 Private room 70
## 2257 Carroll Gardens 40.68304 -73.99819 Entire home/apt 175
## 2258 Crown Heights 40.68030 -73.96059 Entire home/apt 149
## 2259 Red Hook 40.67685 -74.00581 Entire home/apt 125
## 2260 East Harlem 40.79794 -73.93223 Private room 58
## 2261 Astoria 40.76359 -73.92531 Entire home/apt 160
## 2262 Sunnyside 40.74361 -73.91662 Entire home/apt 150
## 2263 Gramercy 40.73807 -73.98187 Entire home/apt 131
## 2264 Gramercy 40.73775 -73.98324 Entire home/apt 250
## 2265 Astoria 40.75959 -73.90835 Private room 70
## 2266 Nolita 40.71972 -73.99438 Entire home/apt 149
## 2267 Sunset Park 40.65475 -74.01211 Entire home/apt 109
## 2268 Theater District 40.75964 -73.98534 Private room 185
## 2269 Greenpoint 40.72428 -73.94472 Entire home/apt 138
## 2270 East Village 40.73099 -73.98762 Private room 150
## 2271 Bedford-Stuyvesant 40.68532 -73.92429 Private room 80
## 2272 Greenpoint 40.72613 -73.93915 Entire home/apt 75
## 2273 Chelsea 40.74877 -73.99940 Entire home/apt 300
## 2274 Chelsea 40.74197 -73.99702 Private room 176
## 2275 East Flatbush 40.65360 -73.94883 Private room 47
## 2276 Washington Heights 40.83535 -73.94334 Private room 40
## 2277 Richmond Hill 40.70170 -73.82316 Shared room 60
## 2278 South Slope 40.66326 -73.98805 Private room 89
## 2279 East Harlem 40.78859 -73.94715 Private room 75
## 2280 Bedford-Stuyvesant 40.69034 -73.95321 Entire home/apt 110
## 2281 Harlem 40.81102 -73.94562 Entire home/apt 85
## 2282 Greenpoint 40.73026 -73.95596 Private room 72
## 2283 St. George 40.64699 -74.08151 Entire home/apt 190
## 2284 Harlem 40.80602 -73.95362 Private room 85
## 2285 East Flatbush 40.63612 -73.94600 Entire home/apt 325
## 2286 Bushwick 40.69305 -73.90398 Entire home/apt 125
## 2287 Upper West Side 40.78264 -73.97803 Entire home/apt 200
## 2288 Cobble Hill 40.68754 -73.99284 Entire home/apt 195
## 2289 Washington Heights 40.83695 -73.94124 Entire home/apt 175
## 2290 Boerum Hill 40.68779 -73.98517 Entire home/apt 189
## 2291 Bedford-Stuyvesant 40.68674 -73.93845 Entire home/apt 182
## 2292 Crown Heights 40.67271 -73.94551 Entire home/apt 105
## 2293 Kips Bay 40.74268 -73.97853 Entire home/apt 240
## 2294 Bushwick 40.68185 -73.90655 Entire home/apt 185
## 2295 Chelsea 40.74570 -73.99775 Entire home/apt 160
## 2296 Gramercy 40.73708 -73.98455 Entire home/apt 250
## 2297 Kips Bay 40.74052 -73.97907 Entire home/apt 650
## 2298 Sunnyside 40.73600 -73.92425 Private room 35
## 2299 Sheepshead Bay 40.58408 -73.94122 Entire home/apt 85
## 2300 Park Slope 40.66698 -73.98162 Entire home/apt 550
## 2301 Bedford-Stuyvesant 40.68068 -73.95350 Private room 80
## 2302 Williamsburg 40.71852 -73.95616 Entire home/apt 175
## 2303 Crown Heights 40.66773 -73.96144 Private room 95
## 2304 Harlem 40.80477 -73.95120 Entire home/apt 158
## 2305 Chinatown 40.71744 -73.99718 Private room 85
## 2306 Nolita 40.72068 -73.99576 Entire home/apt 209
## 2307 Fort Greene 40.68545 -73.97572 Entire home/apt 150
## 2308 Fort Greene 40.68800 -73.97745 Private room 70
## 2309 Ditmars Steinway 40.77103 -73.89461 Private room 73
## 2310 Park Slope 40.67771 -73.98152 Private room 85
## 2311 Bedford-Stuyvesant 40.68798 -73.93903 Entire home/apt 95
## 2312 Williamsburg 40.71353 -73.96216 Entire home/apt 125
## 2313 Nolita 40.72212 -73.99676 Private room 89
## 2314 Greenpoint 40.72541 -73.95670 Private room 50
## 2315 Williamsburg 40.70974 -73.93962 Private room 75
## 2316 Bedford-Stuyvesant 40.68316 -73.93906 Private room 60
## 2317 Washington Heights 40.83479 -73.94345 Private room 45
## 2318 Williamsburg 40.72065 -73.95900 Entire home/apt 130
## 2319 Harlem 40.80815 -73.94325 Private room 70
## 2320 East Village 40.72778 -73.98305 Private room 125
## 2321 Lower East Side 40.71928 -73.98993 Entire home/apt 140
## 2322 Sunset Park 40.66065 -73.98817 Entire home/apt 120
## 2323 Fort Greene 40.68769 -73.97490 Private room 99
## 2324 Kensington 40.64024 -73.96976 Entire home/apt 300
## 2325 South Slope 40.66842 -73.98659 Private room 40
## 2326 Harlem 40.82865 -73.94621 Private room 47
## 2327 Lower East Side 40.71446 -73.98833 Private room 115
## 2328 Bedford-Stuyvesant 40.68310 -73.94434 Entire home/apt 90
## 2329 East Village 40.72271 -73.98478 Entire home/apt 199
## 2330 Harlem 40.82101 -73.94582 Entire home/apt 110
## 2331 Bushwick 40.68767 -73.91261 Entire home/apt 100
## 2332 Prospect Heights 40.67673 -73.96399 Private room 90
## 2333 Bedford-Stuyvesant 40.68312 -73.94082 Private room 40
## 2334 Harlem 40.80745 -73.94279 Entire home/apt 133
## 2335 Prospect Heights 40.68034 -73.97321 Private room 130
## 2336 Upper West Side 40.78898 -73.97589 Entire home/apt 79
## 2337 Greenwich Village 40.72855 -74.00136 Entire home/apt 200
## 2338 Chelsea 40.74119 -74.00234 Entire home/apt 175
## 2339 Red Hook 40.67659 -74.01551 Entire home/apt 200
## 2340 Nolita 40.72404 -73.99529 Entire home/apt 200
## 2341 Williamsburg 40.71756 -73.94839 Entire home/apt 300
## 2342 Upper West Side 40.78892 -73.97435 Private room 135
## 2343 Prospect Heights 40.67678 -73.96692 Entire home/apt 189
## 2344 Jamaica 40.69965 -73.79286 Private room 133
## 2345 Sunset Park 40.66582 -73.99349 Private room 65
## 2346 Upper West Side 40.77097 -73.98083 Entire home/apt 179
## 2347 Chelsea 40.74057 -73.99771 Entire home/apt 90
## 2348 Gowanus 40.67173 -73.98968 Private room 49
## 2349 Williamsburg 40.71666 -73.94552 Entire home/apt 140
## 2350 Midtown 40.74658 -73.98847 Entire home/apt 115
## 2351 Cobble Hill 40.68660 -73.99123 Entire home/apt 190
## 2352 Greenpoint 40.72448 -73.94328 Private room 99
## 2353 Midtown 40.75274 -73.97026 Entire home/apt 110
## 2354 East Village 40.73125 -73.98344 Private room 109
## 2355 West Village 40.73614 -74.00634 Private room 64
## 2356 Upper West Side 40.79208 -73.96482 Entire home/apt 1000
## 2357 East Village 40.73032 -73.98469 Entire home/apt 750
## 2358 Ditmars Steinway 40.77755 -73.90599 Entire home/apt 175
## 2359 East Harlem 40.80421 -73.94037 Private room 47
## 2360 Bedford-Stuyvesant 40.68018 -73.94839 Private room 60
## 2361 Washington Heights 40.83307 -73.93957 Private room 48
## 2362 East Harlem 40.79921 -73.93657 Entire home/apt 100
## 2363 Park Slope 40.68247 -73.97837 Private room 105
## 2364 Fort Greene 40.68798 -73.97182 Entire home/apt 138
## 2365 East Village 40.72520 -73.98261 Entire home/apt 129
## 2366 Morningside Heights 40.80815 -73.96779 Entire home/apt 170
## 2367 Greenpoint 40.73369 -73.95854 Entire home/apt 139
## 2368 Harlem 40.80449 -73.95687 Private room 94
## 2369 Upper East Side 40.77068 -73.95867 Private room 115
## 2370 Fort Greene 40.68675 -73.97713 Entire home/apt 499
## 2371 Bedford-Stuyvesant 40.68683 -73.92922 Entire home/apt 79
## 2372 East Village 40.72845 -73.98598 Entire home/apt 200
## 2373 Greenpoint 40.72897 -73.95132 Private room 152
## 2374 Kensington 40.63381 -73.97140 Private room 50
## 2375 Williamsburg 40.71813 -73.95981 Entire home/apt 212
## 2376 East Harlem 40.79480 -73.94835 Private room 108
## 2377 West Village 40.73804 -74.00416 Private room 89
## 2378 East Harlem 40.79025 -73.94880 Private room 89
## 2379 Sunnyside 40.74239 -73.92213 Private room 65
## 2380 Upper West Side 40.78571 -73.97149 Entire home/apt 239
## 2381 Bushwick 40.69814 -73.92996 Entire home/apt 99
## 2382 Washington Heights 40.84002 -73.93850 Private room 80
## 2383 Washington Heights 40.85320 -73.93225 Private room 125
## 2384 Greenpoint 40.73135 -73.95489 Private room 55
## 2385 Bushwick 40.69776 -73.90939 Entire home/apt 160
## 2386 Nolita 40.72011 -73.99468 Private room 100
## 2387 Hell's Kitchen 40.75930 -73.99143 Entire home/apt 1000
## 2388 Greenwich Village 40.73020 -74.00165 Entire home/apt 225
## 2389 Flatbush 40.63641 -73.96712 Private room 35
## 2390 Midtown 40.74568 -73.98321 Entire home/apt 275
## 2391 Bedford-Stuyvesant 40.68177 -73.93890 Entire home/apt 200
## 2392 SoHo 40.72520 -74.00279 Entire home/apt 190
## 2393 Williamsburg 40.71374 -73.94642 Private room 117
## 2394 Midtown 40.74542 -73.98205 Shared room 80
## 2395 Canarsie 40.64298 -73.89035 Entire home/apt 99
## 2396 Washington Heights 40.85060 -73.94023 Entire home/apt 70
## 2397 East Harlem 40.80393 -73.94046 Private room 44
## 2398 Harlem 40.80040 -73.95645 Private room 125
## 2399 Lower East Side 40.71646 -73.97656 Entire home/apt 130
## 2400 Upper East Side 40.76841 -73.95213 Entire home/apt 130
## 2401 Chelsea 40.74652 -74.00089 Private room 125
## 2402 Hell's Kitchen 40.76636 -73.98550 Entire home/apt 199
## 2403 East Flatbush 40.64513 -73.94944 Private room 89
## 2404 Prospect Heights 40.67839 -73.96623 Entire home/apt 155
## 2405 Long Island City 40.74984 -73.91834 Private room 60
## 2406 Chelsea 40.73984 -74.00187 Entire home/apt 248
## 2407 Upper West Side 40.77938 -73.98721 Entire home/apt 85
## 2408 Upper West Side 40.79631 -73.96152 Private room 85
## 2409 Bay Ridge 40.63719 -74.03489 Entire home/apt 80
## 2410 East Harlem 40.78943 -73.94726 Private room 79
## 2411 Ridgewood 40.70823 -73.89925 Private room 55
## 2412 Port Morris 40.80904 -73.93037 Private room 65
## 2413 Hell's Kitchen 40.76161 -73.99452 Entire home/apt 150
## 2414 Tribeca 40.71976 -74.00571 Entire home/apt 285
## 2415 Astoria 40.76797 -73.92858 Entire home/apt 119
## 2416 Brighton Beach 40.57519 -73.95468 Entire home/apt 137
## 2417 Upper East Side 40.76703 -73.95413 Entire home/apt 190
## 2418 Two Bridges 40.71166 -73.99720 Private room 80
## 2419 Bedford-Stuyvesant 40.68647 -73.95909 Entire home/apt 120
## 2420 East Flatbush 40.65176 -73.93452 Entire home/apt 95
## 2421 Washington Heights 40.83448 -73.94476 Private room 90
## 2422 Clinton Hill 40.69258 -73.96649 Private room 75
## 2423 Astoria 40.75962 -73.92176 Shared room 50
## 2424 Crown Heights 40.67463 -73.91811 Private room 103
## 2425 East Village 40.73138 -73.98807 Entire home/apt 125
## 2426 Fort Greene 40.69486 -73.97132 Entire home/apt 150
## 2427 South Slope 40.66720 -73.98986 Private room 50
## 2428 East Village 40.72499 -73.98127 Private room 148
## 2429 East Village 40.72434 -73.97715 Entire home/apt 120
## 2430 Bedford-Stuyvesant 40.68272 -73.92885 Entire home/apt 99
## 2431 Ditmars Steinway 40.77147 -73.91660 Private room 69
## 2432 Midtown 40.75099 -73.96994 Entire home/apt 200
## 2433 Washington Heights 40.85121 -73.93734 Private room 55
## 2434 Upper West Side 40.78806 -73.97969 Entire home/apt 175
## 2435 Hell's Kitchen 40.76247 -73.99294 Private room 240
## 2436 Harlem 40.82393 -73.95308 Private room 95
## 2437 Arverne 40.59204 -73.78665 Entire home/apt 150
## 2438 Crown Heights 40.67394 -73.95951 Entire home/apt 150
## 2439 Williamsburg 40.71317 -73.94851 Entire home/apt 179
## 2440 Williamsburg 40.71024 -73.95170 Private room 105
## 2441 Williamsburg 40.70653 -73.94620 Entire home/apt 84
## 2442 Richmond Hill 40.69414 -73.82538 Entire home/apt 90
## 2443 East Harlem 40.79293 -73.94048 Entire home/apt 53
## 2444 East Harlem 40.80350 -73.94041 Private room 41
## 2445 Flatiron District 40.74389 -73.99159 Private room 135
## 2446 Queens Village 40.70382 -73.73955 Entire home/apt 84
## 2447 Tribeca 40.71908 -74.00546 Entire home/apt 290
## 2448 Bedford-Stuyvesant 40.69122 -73.95648 Shared room 35
## 2449 Ditmars Steinway 40.77546 -73.91571 Entire home/apt 110
## 2450 Greenpoint 40.72992 -73.95628 Entire home/apt 350
## 2451 Bedford-Stuyvesant 40.69652 -73.93548 Private room 60
## 2452 Williamsburg 40.71333 -73.96605 Entire home/apt 220
## 2453 Williamsburg 40.71704 -73.95789 Entire home/apt 275
## 2454 Fort Greene 40.68764 -73.97545 Entire home/apt 142
## 2455 Crown Heights 40.67322 -73.95847 Private room 38
## 2456 Harlem 40.81691 -73.94251 Entire home/apt 100
## 2457 Hell's Kitchen 40.76168 -73.99490 Entire home/apt 200
## 2458 Williamsburg 40.71038 -73.96299 Entire home/apt 225
## 2459 Upper East Side 40.78104 -73.94916 Entire home/apt 135
## 2460 Harlem 40.82910 -73.94816 Private room 72
## 2461 Bedford-Stuyvesant 40.68185 -73.94108 Private room 59
## 2462 Crown Heights 40.66521 -73.95427 Entire home/apt 350
## 2463 Kensington 40.64120 -73.97860 Private room 75
## 2464 Bushwick 40.69107 -73.91995 Private room 70
## 2465 Harlem 40.80545 -73.95563 Entire home/apt 99
## 2466 Cypress Hills 40.68287 -73.87295 Private room 42
## 2467 Bushwick 40.69822 -73.93517 Private room 60
## 2468 Bedford-Stuyvesant 40.69324 -73.93217 Entire home/apt 125
## 2469 Williamsburg 40.70840 -73.94153 Private room 99
## 2470 Prospect Heights 40.67321 -73.96574 Entire home/apt 99
## 2471 Bedford-Stuyvesant 40.68065 -73.95154 Entire home/apt 165
## 2472 Kensington 40.64580 -73.97097 Entire home/apt 250
## 2473 Williamsburg 40.71490 -73.93983 Private room 135
## 2474 Harlem 40.82427 -73.94428 Private room 58
## 2475 Upper East Side 40.77244 -73.95206 Entire home/apt 250
## 2476 Upper West Side 40.78323 -73.98105 Private room 95
## 2477 Upper East Side 40.76398 -73.95890 Entire home/apt 125
## 2478 Park Slope 40.67157 -73.98520 Entire home/apt 147
## 2479 Harlem 40.80707 -73.94884 Entire home/apt 300
## 2480 Flatiron District 40.74119 -73.99168 Entire home/apt 350
## 2481 Sunset Park 40.66134 -73.98844 Entire home/apt 102
## 2482 Harlem 40.81388 -73.95105 Private room 95
## 2483 Bedford-Stuyvesant 40.68388 -73.95019 Private room 65
## 2484 Prospect-Lefferts Gardens 40.65994 -73.95892 Entire home/apt 350
## 2485 Chelsea 40.74984 -73.99482 Entire home/apt 595
## 2486 Upper West Side 40.78815 -73.97370 Shared room 165
## 2487 Bedford-Stuyvesant 40.68445 -73.93785 Entire home/apt 181
## 2488 Midtown 40.74331 -73.98351 Private room 110
## 2489 Bedford-Stuyvesant 40.68201 -73.95012 Private room 65
## 2490 Clinton Hill 40.68843 -73.96239 Entire home/apt 155
## 2491 Bedford-Stuyvesant 40.68919 -73.95399 Private room 50
## 2492 Glendale 40.70518 -73.89133 Entire home/apt 85
## 2493 Williamsburg 40.70840 -73.92642 Private room 120
## 2494 Bedford-Stuyvesant 40.69585 -73.94460 Private room 75
## 2495 Bedford-Stuyvesant 40.68240 -73.95039 Private room 55
## 2496 Brooklyn Heights 40.70117 -73.99147 Private room 200
## 2497 Williamsburg 40.70971 -73.95621 Entire home/apt 75
## 2498 Windsor Terrace 40.65641 -73.97937 Entire home/apt 150
## 2499 Mott Haven 40.81291 -73.90772 Private room 60
## 2500 Crown Heights 40.66886 -73.95412 Entire home/apt 150
## 2501 Williamsburg 40.71737 -73.96396 Entire home/apt 240
## 2502 East Harlem 40.78747 -73.95276 Private room 150
## 2503 East Village 40.72160 -73.98204 Entire home/apt 200
## 2504 Financial District 40.70735 -74.00971 Entire home/apt 269
## 2505 Williamsburg 40.70794 -73.96077 Private room 112
## 2506 Carroll Gardens 40.68013 -73.99397 Entire home/apt 250
## 2507 Prospect Heights 40.67731 -73.96402 Entire home/apt 390
## 2508 Financial District 40.70946 -74.01235 Entire home/apt 350
## 2509 Lower East Side 40.71910 -73.98866 Entire home/apt 80
## 2510 Williamsburg 40.71787 -73.95585 Entire home/apt 295
## 2511 South Slope 40.66812 -73.99022 Private room 160
## 2512 Chinatown 40.71634 -73.99031 Entire home/apt 399
## 2513 Greenwich Village 40.73104 -73.99957 Entire home/apt 150
## 2514 Bedford-Stuyvesant 40.68322 -73.95085 Private room 60
## 2515 Greenwich Village 40.72948 -73.99957 Entire home/apt 219
## 2516 Chelsea 40.74330 -73.99832 Private room 119
## 2517 Williamsburg 40.71320 -73.96798 Entire home/apt 190
## 2518 Upper West Side 40.79475 -73.97600 Private room 140
## 2519 Williamsburg 40.70894 -73.94135 Private room 125
## 2520 West Village 40.73532 -74.00448 Entire home/apt 144
## 2521 Brooklyn Heights 40.69424 -73.99313 Private room 1500
## 2522 Astoria 40.76788 -73.92334 Entire home/apt 100
## 2523 Fort Greene 40.68846 -73.97567 Private room 115
## 2524 West Village 40.73305 -74.00412 Entire home/apt 1899
## 2525 Washington Heights 40.84346 -73.94471 Entire home/apt 110
## 2526 West Village 40.73384 -74.00462 Entire home/apt 140
## 2527 Morningside Heights 40.80777 -73.96703 Entire home/apt 94
## 2528 Midtown 40.75728 -73.97152 Private room 50
## 2529 Williamsburg 40.70706 -73.95071 Entire home/apt 131
## 2530 Fort Greene 40.68809 -73.97578 Private room 175
## 2531 Kensington 40.64342 -73.97851 Entire home/apt 299
## 2532 SoHo 40.72098 -73.99869 Entire home/apt 145
## 2533 Harlem 40.82612 -73.95216 Entire home/apt 145
## 2534 Greenwich Village 40.72805 -73.99871 Entire home/apt 175
## 2535 Gramercy 40.73227 -73.98451 Private room 109
## 2536 Upper West Side 40.80274 -73.96459 Private room 150
## 2537 Bedford-Stuyvesant 40.69582 -73.94989 Private room 133
## 2538 Hell's Kitchen 40.76248 -73.98597 Entire home/apt 399
## 2539 Crown Heights 40.67396 -73.96083 Private room 48
## 2540 Bushwick 40.68799 -73.91677 Private room 75
## 2541 Clinton Hill 40.68371 -73.96461 Private room 55
## 2542 Crown Heights 40.67782 -73.95386 Private room 75
## 2543 East Village 40.72353 -73.99059 Entire home/apt 465
## 2544 Prospect-Lefferts Gardens 40.65833 -73.94819 Entire home/apt 151
## 2545 Williamsburg 40.71063 -73.96774 Entire home/apt 199
## 2546 Bedford-Stuyvesant 40.68325 -73.94975 Private room 45
## 2547 Clinton Hill 40.68645 -73.96587 Entire home/apt 160
## 2548 Flatbush 40.65393 -73.95845 Private room 36
## 2549 Upper East Side 40.77444 -73.95908 Entire home/apt 235
## 2550 Bedford-Stuyvesant 40.68440 -73.94890 Entire home/apt 225
## 2551 East Village 40.72188 -73.98160 Entire home/apt 300
## 2552 Bedford-Stuyvesant 40.69081 -73.95627 Shared room 35
## 2553 Astoria 40.76062 -73.91750 Entire home/apt 80
## 2554 Woodside 40.74265 -73.89781 Private room 79
## 2555 Washington Heights 40.85704 -73.93789 Private room 82
## 2556 Washington Heights 40.85677 -73.93727 Private room 82
## 2557 Prospect Heights 40.67915 -73.97125 Entire home/apt 215
## 2558 Williamsburg 40.71058 -73.96243 Entire home/apt 147
## 2559 Kips Bay 40.74019 -73.98115 Entire home/apt 145
## 2560 Crown Heights 40.67475 -73.94650 Private room 65
## 2561 South Slope 40.66701 -73.98703 Private room 78
## 2562 Long Island City 40.76592 -73.93428 Entire home/apt 120
## 2563 Flatbush 40.65335 -73.96257 Entire home/apt 120
## 2564 Lower East Side 40.71925 -73.99123 Private room 95
## 2565 Williamsburg 40.71571 -73.95813 Private room 90
## 2566 Williamsburg 40.71276 -73.95022 Entire home/apt 95
## 2567 Williamsburg 40.70392 -73.93635 Entire home/apt 100
## 2568 Midtown 40.76417 -73.97704 Entire home/apt 350
## 2569 Bedford-Stuyvesant 40.69811 -73.95557 Entire home/apt 188
## 2570 Queens Village 40.72512 -73.73986 Private room 80
## 2571 West Village 40.73896 -74.00522 Entire home/apt 175
## 2572 Carroll Gardens 40.68380 -73.99849 Entire home/apt 495
## 2573 Little Italy 40.71833 -73.99826 Entire home/apt 250
## 2574 Williamsburg 40.71657 -73.95970 Entire home/apt 115
## 2575 Bedford-Stuyvesant 40.68243 -73.95167 Private room 55
## 2576 Chelsea 40.74913 -73.99575 Entire home/apt 93
## 2577 Chelsea 40.75032 -73.99676 Entire home/apt 93
## 2578 Chelsea 40.73981 -74.00160 Entire home/apt 199
## 2579 Bedford-Stuyvesant 40.68608 -73.93478 Private room 70
## 2580 Inwood 40.86446 -73.92694 Entire home/apt 125
## 2581 Upper West Side 40.76934 -73.98630 Entire home/apt 125
## 2582 Upper East Side 40.77207 -73.95923 Entire home/apt 169
## 2583 Williamsburg 40.70816 -73.93931 Entire home/apt 150
## 2584 Harlem 40.82343 -73.94507 Private room 61
## 2585 Crown Heights 40.67275 -73.95144 Private room 40
## 2586 Williamsburg 40.71652 -73.94309 Entire home/apt 150
## 2587 Fort Greene 40.69774 -73.97076 Private room 65
## 2588 Kingsbridge 40.88166 -73.91103 Private room 90
## 2589 Harlem 40.80861 -73.94574 Entire home/apt 190
## 2590 Williamsburg 40.71101 -73.95164 Private room 79
## 2591 Bedford-Stuyvesant 40.69376 -73.93776 Entire home/apt 225
## 2592 Harlem 40.80862 -73.94516 Entire home/apt 185
## 2593 Crown Heights 40.67421 -73.95040 Private room 100
## 2594 Harlem 40.80887 -73.94756 Private room 85
## 2595 Morningside Heights 40.80998 -73.95898 Private room 75
## 2596 Williamsburg 40.71449 -73.95905 Private room 85
## 2597 Bedford-Stuyvesant 40.68208 -73.93115 Entire home/apt 98
## 2598 Kensington 40.64734 -73.97334 Entire home/apt 262
## 2599 Long Island City 40.74318 -73.95108 Entire home/apt 145
## 2600 Upper East Side 40.76178 -73.96713 Entire home/apt 280
## 2601 East Village 40.72685 -73.97874 Entire home/apt 210
## 2602 Fort Greene 40.68842 -73.97781 Entire home/apt 70
## 2603 Bedford-Stuyvesant 40.67927 -73.94252 Entire home/apt 100
## 2604 NoHo 40.72631 -73.99387 Entire home/apt 250
## 2605 Bedford-Stuyvesant 40.68420 -73.91770 Private room 59
## 2606 East Village 40.72758 -73.97762 Private room 199
## 2607 Midtown 40.75639 -73.96558 Entire home/apt 219
## 2608 Prospect Heights 40.67738 -73.96509 Private room 100
## 2609 Park Slope 40.67274 -73.97339 Entire home/apt 175
## 2610 West Village 40.73432 -74.00306 Private room 220
## 2611 Cypress Hills 40.68822 -73.87590 Private room 40
## 2612 Harlem 40.82660 -73.94443 Private room 120
## 2613 Park Slope 40.66945 -73.98157 Entire home/apt 140
## 2614 Nolita 40.72122 -73.99395 Private room 105
## 2615 Williamsburg 40.71327 -73.93979 Entire home/apt 110
## 2616 Clinton Hill 40.69074 -73.96619 Entire home/apt 131
## 2617 SoHo 40.72411 -73.99865 Entire home/apt 265
## 2618 Roosevelt Island 40.76175 -73.95012 Private room 54
## 2619 West Village 40.73268 -74.00314 Entire home/apt 800
## 2620 East Flatbush 40.64895 -73.94838 Private room 53
## 2621 Washington Heights 40.83300 -73.93806 Entire home/apt 99
## 2622 Bushwick 40.70410 -73.92418 Private room 65
## 2623 Williamsburg 40.71668 -73.94083 Private room 55
## 2624 East Village 40.72383 -73.98290 Private room 120
## 2625 Upper West Side 40.79801 -73.97045 Entire home/apt 169
## 2626 Chelsea 40.74572 -73.99637 Entire home/apt 180
## 2627 Bedford-Stuyvesant 40.68732 -73.93004 Private room 67
## 2628 Upper East Side 40.76723 -73.95510 Private room 111
## 2629 SoHo 40.72466 -74.00420 Private room 90
## 2630 Carroll Gardens 40.68298 -73.99171 Entire home/apt 259
## 2631 Upper West Side 40.76977 -73.98638 Private room 89
## 2632 Greenpoint 40.72456 -73.94343 Entire home/apt 129
## 2633 Bushwick 40.69731 -73.92417 Private room 69
## 2634 Washington Heights 40.84690 -73.94522 Private room 75
## 2635 Crown Heights 40.67071 -73.94752 Entire home/apt 250
## 2636 Bedford-Stuyvesant 40.68695 -73.92364 Entire home/apt 120
## 2637 Greenpoint 40.72756 -73.94230 Entire home/apt 129
## 2638 Prospect Heights 40.67750 -73.96509 Entire home/apt 199
## 2639 Fort Greene 40.68996 -73.97855 Entire home/apt 450
## 2640 Nolita 40.72352 -73.99498 Entire home/apt 217
## 2641 Fort Hamilton 40.62347 -74.03590 Entire home/apt 90
## 2642 Upper East Side 40.76893 -73.95967 Entire home/apt 350
## 2643 Morningside Heights 40.80684 -73.96404 Entire home/apt 160
## 2644 Greenpoint 40.72991 -73.95208 Private room 45
## 2645 Bedford-Stuyvesant 40.69243 -73.94547 Private room 70
## 2646 East Village 40.72463 -73.98938 Entire home/apt 260
## 2647 Sunnyside 40.74342 -73.92635 Entire home/apt 100
## 2648 Red Hook 40.67611 -74.01635 Entire home/apt 125
## 2649 Sunset Park 40.63947 -74.01888 Entire home/apt 195
## 2650 Bushwick 40.69916 -73.92219 Private room 58
## 2651 Harlem 40.82036 -73.95589 Private room 75
## 2652 SoHo 40.72587 -74.00186 Entire home/apt 200
## 2653 Bedford-Stuyvesant 40.69063 -73.94534 Private room 75
## 2654 Bedford-Stuyvesant 40.69180 -73.94673 Private room 95
## 2655 Williamsburg 40.70759 -73.92678 Private room 99
## 2656 Bedford-Stuyvesant 40.68444 -73.94201 Private room 275
## 2657 Downtown Brooklyn 40.69648 -73.98261 Entire home/apt 162
## 2658 Chelsea 40.74206 -73.99499 Entire home/apt 200
## 2659 SoHo 40.72347 -74.00488 Entire home/apt 285
## 2660 East Harlem 40.79813 -73.93132 Entire home/apt 120
## 2661 Washington Heights 40.83920 -73.94216 Entire home/apt 120
## 2662 West Village 40.73078 -74.00282 Entire home/apt 210
## 2663 Park Slope 40.67317 -73.97676 Private room 160
## 2664 West Village 40.73721 -74.00973 Entire home/apt 110
## 2665 Williamsburg 40.71419 -73.95042 Entire home/apt 200
## 2666 Long Island City 40.74449 -73.95201 Entire home/apt 138
## 2667 Chelsea 40.74036 -74.00138 Private room 90
## 2668 Prospect-Lefferts Gardens 40.65671 -73.96220 Private room 45
## 2669 Sunset Park 40.64674 -74.01043 Entire home/apt 80
## 2670 Williamsburg 40.71406 -73.94965 Private room 70
## 2671 Bedford-Stuyvesant 40.69370 -73.93104 Private room 72
## 2672 East Village 40.72418 -73.98283 Private room 95
## 2673 Bedford-Stuyvesant 40.68584 -73.92630 Private room 75
## 2674 Astoria 40.76781 -73.92684 Entire home/apt 70
## 2675 Williamsburg 40.71385 -73.93861 Entire home/apt 160
## 2676 Flatbush 40.63899 -73.95177 Shared room 29
## 2677 South Slope 40.66453 -73.97912 Entire home/apt 175
## 2678 Astoria 40.76924 -73.91776 Private room 75
## 2679 Greenwich Village 40.72998 -73.99999 Private room 110
## 2680 Williamsburg 40.71362 -73.93561 Entire home/apt 175
## 2681 Hell's Kitchen 40.76800 -73.98695 Private room 99
## 2682 Inwood 40.86457 -73.92749 Private room 100
## 2683 Bedford-Stuyvesant 40.68714 -73.95775 Entire home/apt 144
## 2684 Flatbush 40.63427 -73.95248 Entire home/apt 171
## 2685 Upper West Side 40.78622 -73.97586 Entire home/apt 99
## 2686 West Village 40.73556 -74.00903 Entire home/apt 270
## 2687 Lower East Side 40.71444 -73.98348 Entire home/apt 160
## 2688 Harlem 40.82407 -73.94434 Private room 65
## 2689 Bedford-Stuyvesant 40.68238 -73.93795 Entire home/apt 99
## 2690 Harlem 40.81623 -73.94907 Entire home/apt 125
## 2691 Bedford-Stuyvesant 40.68669 -73.91897 Private room 72
## 2692 Crown Heights 40.67427 -73.95042 Entire home/apt 300
## 2693 Hell's Kitchen 40.76391 -73.99225 Private room 112
## 2694 Carroll Gardens 40.67947 -73.99709 Entire home/apt 100
## 2695 Bushwick 40.70444 -73.92005 Private room 60
## 2696 East Village 40.72620 -73.97913 Entire home/apt 232
## 2697 Williamsburg 40.70823 -73.94405 Private room 138
## 2698 East Village 40.72230 -73.98210 Entire home/apt 140
## 2699 Nolita 40.72193 -73.99379 Entire home/apt 5000
## 2700 Bedford-Stuyvesant 40.68665 -73.93293 Entire home/apt 168
## 2701 Flatbush 40.64965 -73.96154 Entire home/apt 100
## 2702 Bellerose 40.73193 -73.74481 Shared room 150
## 2703 Bushwick 40.69979 -73.92078 Entire home/apt 95
## 2704 Morningside Heights 40.80570 -73.95826 Entire home/apt 175
## 2705 West Village 40.73458 -74.00492 Entire home/apt 220
## 2706 Upper West Side 40.80028 -73.96180 Entire home/apt 178
## 2707 Crown Heights 40.67265 -73.92470 Entire home/apt 85
## 2708 Rego Park 40.72638 -73.85852 Private room 35
## 2709 Greenpoint 40.72732 -73.94076 Entire home/apt 129
## 2710 East Harlem 40.80759 -73.93839 Private room 55
## 2711 Flatbush 40.64187 -73.95860 Private room 69
## 2712 Prospect Heights 40.67620 -73.96671 Private room 68
## 2713 Crown Heights 40.67471 -73.94571 Private room 69
## 2714 Hell's Kitchen 40.76582 -73.99468 Entire home/apt 300
## 2715 Harlem 40.80533 -73.94665 Entire home/apt 175
## 2716 St. Albans 40.68910 -73.77330 Private room 59
## 2717 St. Albans 40.69045 -73.77467 Private room 59
## 2718 Theater District 40.76199 -73.98627 Private room 169
## 2719 Williamsburg 40.70901 -73.95291 Entire home/apt 120
## 2720 Bedford-Stuyvesant 40.69301 -73.94551 Entire home/apt 155
## 2721 Williamsburg 40.71915 -73.94061 Entire home/apt 165
## 2722 Harlem 40.81384 -73.93973 Private room 60
## 2723 Williamsburg 40.71867 -73.95570 Entire home/apt 190
## 2724 West Village 40.73695 -74.00572 Entire home/apt 150
## 2725 Upper West Side 40.77864 -73.98437 Entire home/apt 150
## 2726 Bedford-Stuyvesant 40.69077 -73.95745 Entire home/apt 120
## 2727 Long Island City 40.74632 -73.94799 Private room 349
## 2728 St. Albans 40.68872 -73.77373 Private room 59
## 2729 Theater District 40.76035 -73.98026 Shared room 99
## 2730 St. Albans 40.69054 -73.77306 Private room 59
## 2731 Williamsburg 40.71215 -73.95637 Private room 110
## 2732 East Village 40.72247 -73.97947 Private room 73
## 2733 Chinatown 40.71608 -73.98962 Entire home/apt 179
## 2734 Sunnyside 40.74234 -73.92579 Private room 102
## 2735 Bushwick 40.68786 -73.91722 Private room 62
## 2736 Astoria 40.77030 -73.93306 Entire home/apt 140
## 2737 Midtown 40.76084 -73.96908 Entire home/apt 300
## 2738 Nolita 40.72450 -73.99419 Entire home/apt 299
## 2739 Clinton Hill 40.69332 -73.96543 Entire home/apt 104
## 2740 Chelsea 40.75029 -73.99556 Entire home/apt 98
## 2741 Lower East Side 40.71501 -73.98061 Private room 49
## 2742 Chelsea 40.75028 -73.99533 Entire home/apt 96
## 2743 Williamsburg 40.70952 -73.95078 Private room 80
## 2744 Crown Heights 40.68007 -73.96334 Private room 89
## 2745 Lower East Side 40.71862 -73.99154 Private room 125
## 2746 Cypress Hills 40.68505 -73.87180 Entire home/apt 345
## 2747 Fort Greene 40.68620 -73.97184 Entire home/apt 150
## 2748 Harlem 40.80427 -73.95404 Private room 100
## 2749 Lower East Side 40.72040 -73.99042 Entire home/apt 120
## 2750 Greenpoint 40.72267 -73.94362 Entire home/apt 149
## 2751 Crown Heights 40.67838 -73.95549 Entire home/apt 145
## 2752 Financial District 40.70582 -74.00888 Entire home/apt 390
## 2753 Port Morris 40.80011 -73.91330 Private room 60
## 2754 Park Slope 40.67470 -73.97947 Entire home/apt 190
## 2755 SoHo 40.72822 -74.00429 Private room 80
## 2756 Bedford-Stuyvesant 40.68411 -73.95169 Private room 55
## 2757 Williamsburg 40.71202 -73.96602 Entire home/apt 275
## 2758 Williamsburg 40.71471 -73.94045 Entire home/apt 250
## 2759 Harlem 40.82124 -73.94973 Entire home/apt 100
## 2760 Murray Hill 40.74776 -73.97335 Entire home/apt 600
## 2761 Sunset Park 40.66405 -73.99230 Private room 66
## 2762 Park Slope 40.67171 -73.98079 Private room 65
## 2763 East Harlem 40.80108 -73.94346 Entire home/apt 220
## 2764 Upper East Side 40.77006 -73.95441 Entire home/apt 159
## 2765 Williamsburg 40.70570 -73.93836 Private room 70
## 2766 Prospect-Lefferts Gardens 40.65936 -73.95139 Private room 49
## 2767 Bushwick 40.70121 -73.91883 Private room 47
## 2768 Lower East Side 40.71804 -73.99147 Entire home/apt 299
## 2769 Prospect-Lefferts Gardens 40.66021 -73.96107 Entire home/apt 79
## 2770 Fort Greene 40.69197 -73.97218 Entire home/apt 115
## 2771 Clinton Hill 40.68639 -73.96240 Entire home/apt 229
## 2772 Bedford-Stuyvesant 40.68820 -73.94645 Entire home/apt 115
## 2773 Greenwich Village 40.73051 -73.99518 Entire home/apt 1100
## 2774 Williamsburg 40.71000 -73.95230 Entire home/apt 165
## 2775 Bedford-Stuyvesant 40.69336 -73.94678 Entire home/apt 67
## 2776 Bedford-Stuyvesant 40.69289 -73.94356 Private room 68
## 2777 Canarsie 40.63591 -73.90941 Private room 85
## 2778 Bedford-Stuyvesant 40.68084 -73.92804 Entire home/apt 170
## 2779 Midwood 40.62666 -73.96094 Private room 95
## 2780 Bedford-Stuyvesant 40.68329 -73.95111 Private room 45
## 2781 Williamsburg 40.71041 -73.93847 Private room 178
## 2782 Chelsea 40.74461 -74.00172 Entire home/apt 140
## 2783 Greenpoint 40.72686 -73.94177 Entire home/apt 149
## 2784 Bedford-Stuyvesant 40.69399 -73.93135 Entire home/apt 89
## 2785 Astoria 40.76387 -73.92593 Entire home/apt 108
## 2786 Washington Heights 40.85652 -73.92975 Entire home/apt 138
## 2787 Crown Heights 40.66751 -73.95867 Entire home/apt 115
## 2788 East Harlem 40.79004 -73.94846 Shared room 69
## 2789 West Village 40.73988 -74.00360 Entire home/apt 269
## 2790 Williamsburg 40.70919 -73.95012 Entire home/apt 160
## 2791 SoHo 40.71908 -73.99976 Entire home/apt 150
## 2792 Upper West Side 40.78357 -73.97268 Entire home/apt 121
## 2793 Flatbush 40.63863 -73.95729 Entire home/apt 95
## 2794 Sheepshead Bay 40.58426 -73.95949 Entire home/apt 99
## 2795 Prospect Heights 40.68249 -73.97139 Private room 40
## 2796 East Village 40.72307 -73.97911 Private room 89
## 2797 Greenpoint 40.71938 -73.95136 Private room 50
## 2798 Bedford-Stuyvesant 40.68390 -73.95042 Private room 55
## 2799 South Slope 40.66448 -73.98695 Entire home/apt 224
## 2800 Ditmars Steinway 40.77448 -73.90907 Entire home/apt 120
## 2801 Flushing 40.75431 -73.83131 Private room 59
## 2802 Harlem 40.80330 -73.95008 Entire home/apt 135
## 2803 Lower East Side 40.72317 -73.99290 Entire home/apt 175
## 2804 Long Island City 40.75676 -73.93463 Entire home/apt 250
## 2805 East Village 40.72820 -73.98067 Entire home/apt 156
## 2806 Bedford-Stuyvesant 40.68864 -73.92130 Entire home/apt 75
## 2807 Morningside Heights 40.80610 -73.96620 Entire home/apt 79
## 2808 Upper West Side 40.78981 -73.97518 Entire home/apt 104
## 2809 Williamsburg 40.71330 -73.94602 Entire home/apt 280
## 2810 Nolita 40.72411 -73.99372 Private room 80
## 2811 Williamsburg 40.71171 -73.96101 Entire home/apt 136
## 2812 Upper West Side 40.78024 -73.97942 Entire home/apt 550
## 2813 Flatbush 40.64361 -73.96821 Entire home/apt 190
## 2814 East Village 40.72915 -73.98565 Entire home/apt 199
## 2815 Woodside 40.74409 -73.89864 Private room 75
## 2816 East Village 40.72853 -73.98619 Private room 100
## 2817 Upper West Side 40.78808 -73.97540 Entire home/apt 125
## 2818 Bushwick 40.68585 -73.90686 Private room 75
## 2819 Harlem 40.80355 -73.95227 Private room 99
## 2820 Greenpoint 40.72887 -73.95163 Private room 35
## 2821 Long Island City 40.75909 -73.93217 Private room 51
## 2822 Ditmars Steinway 40.77787 -73.91472 Entire home/apt 188
## 2823 NoHo 40.72545 -73.99492 Entire home/apt 90
## 2824 Crown Heights 40.68034 -73.96150 Entire home/apt 279
## 2825 West Village 40.73078 -74.01040 Entire home/apt 350
## 2826 East Harlem 40.79255 -73.93842 Private room 125
## 2827 Midwood 40.62733 -73.96102 Private room 85
## 2828 Maspeth 40.73732 -73.90168 Private room 48
## 2829 Maspeth 40.74033 -73.89921 Private room 56
## 2830 Flatbush 40.64919 -73.96143 Private room 84
## 2831 Harlem 40.82453 -73.94923 Entire home/apt 155
## 2832 Gramercy 40.73494 -73.98751 Entire home/apt 250
## 2833 Chinatown 40.71702 -73.99566 Entire home/apt 300
## 2834 Williamsburg 40.70951 -73.96262 Entire home/apt 140
## 2835 Upper East Side 40.76142 -73.96086 Private room 120
## 2836 Williamsburg 40.71188 -73.95155 Entire home/apt 99
## 2837 Greenwich Village 40.73158 -73.99254 Entire home/apt 240
## 2838 Washington Heights 40.83399 -73.94474 Entire home/apt 72
## 2839 Astoria 40.76792 -73.92228 Private room 45
## 2840 Port Richmond 40.62947 -74.13378 Entire home/apt 250
## 2841 West Village 40.73254 -74.00467 Private room 100
## 2842 Midtown 40.75290 -73.97094 Entire home/apt 175
## 2843 East Village 40.72694 -73.98304 Entire home/apt 200
## 2844 St. Albans 40.69015 -73.77472 Private room 59
## 2845 Financial District 40.70939 -74.00121 Entire home/apt 420
## 2846 Williamsburg 40.72149 -73.96174 Private room 120
## 2847 Chelsea 40.74611 -73.99209 Entire home/apt 295
## 2848 Williamsburg 40.72079 -73.95641 Entire home/apt 200
## 2849 Bushwick 40.70188 -73.92275 Private room 48
## 2850 Hell's Kitchen 40.76476 -73.99011 Entire home/apt 99
## 2851 Greenpoint 40.72570 -73.94181 Entire home/apt 129
## 2852 East Village 40.73082 -73.98693 Entire home/apt 160
## 2853 Park Slope 40.67477 -73.97404 Entire home/apt 142
## 2854 Astoria 40.76752 -73.92730 Private room 120
## 2855 Battery Park City 40.71239 -74.01620 Entire home/apt 400
## 2856 Clinton Hill 40.68572 -73.96410 Entire home/apt 130
## 2857 Harlem 40.81606 -73.94363 Shared room 85
## 2858 Bedford-Stuyvesant 40.69017 -73.95757 Entire home/apt 600
## 2859 Harlem 40.82184 -73.95031 Private room 69
## 2860 Williamsburg 40.70863 -73.95543 Entire home/apt 150
## 2861 East Village 40.73051 -73.98140 Entire home/apt 10
## 2862 Bedford-Stuyvesant 40.69385 -73.95223 Private room 87
## 2863 Midtown 40.75130 -73.97239 Private room 249
## 2864 Williamsburg 40.70537 -73.92975 Private room 65
## 2865 Canarsie 40.64308 -73.90770 Entire home/apt 175
## 2866 Washington Heights 40.83942 -73.93855 Private room 79
## 2867 SoHo 40.72391 -73.99879 Private room 194
## 2868 Lower East Side 40.71915 -73.99309 Entire home/apt 150
## 2869 Williamsburg 40.70860 -73.94715 Entire home/apt 241
## 2870 Harlem 40.81307 -73.93854 Private room 80
## 2871 Bedford-Stuyvesant 40.68480 -73.92505 Entire home/apt 120
## 2872 Upper East Side 40.78013 -73.95082 Entire home/apt 155
## 2873 West Village 40.73380 -74.00328 Entire home/apt 150
## 2874 Upper East Side 40.76866 -73.95360 Entire home/apt 140
## 2875 East Flatbush 40.63205 -73.94587 Entire home/apt 90
## 2876 Carroll Gardens 40.68468 -73.99145 Entire home/apt 150
## 2877 Bedford-Stuyvesant 40.68019 -73.93042 Entire home/apt 135
## 2878 Park Slope 40.67179 -73.97248 Entire home/apt 140
## 2879 Bedford-Stuyvesant 40.68656 -73.95348 Entire home/apt 130
## 2880 Upper East Side 40.77118 -73.95270 Private room 150
## 2881 South Slope 40.66623 -73.98217 Entire home/apt 115
## 2882 Bedford-Stuyvesant 40.68471 -73.95325 Entire home/apt 130
## 2883 Greenwich Village 40.72831 -73.99870 Entire home/apt 380
## 2884 Williamsburg 40.70773 -73.94144 Entire home/apt 115
## 2885 Morningside Heights 40.81170 -73.95550 Entire home/apt 125
## 2886 Bushwick 40.70045 -73.93832 Private room 65
## 2887 Jackson Heights 40.75238 -73.87746 Entire home/apt 110
## 2888 Bedford-Stuyvesant 40.68708 -73.95126 Private room 31
## 2889 Bedford-Stuyvesant 40.68005 -73.93911 Entire home/apt 135
## 2890 West Village 40.73119 -74.00615 Entire home/apt 200
## 2891 Bedford-Stuyvesant 40.68553 -73.94466 Private room 212
## 2892 Williamsburg 40.70617 -73.93761 Shared room 40
## 2893 Hell's Kitchen 40.76364 -73.99465 Entire home/apt 80
## 2894 Flatbush 40.64233 -73.95655 Entire home/apt 95
## 2895 Hell's Kitchen 40.76544 -73.98820 Entire home/apt 185
## 2896 Bedford-Stuyvesant 40.68194 -73.94068 Entire home/apt 100
## 2897 Flatiron District 40.74096 -73.99270 Entire home/apt 1200
## 2898 Greenpoint 40.72531 -73.94222 Entire home/apt 149
## 2899 West Village 40.73089 -74.00302 Private room 139
## 2900 Greenwich Village 40.72866 -74.00095 Entire home/apt 226
## 2901 Bedford-Stuyvesant 40.68978 -73.93751 Entire home/apt 74
## 2902 West Village 40.73433 -74.00360 Entire home/apt 195
## 2903 East Flatbush 40.65260 -73.94999 Entire home/apt 104
## 2904 SoHo 40.72047 -74.00049 Entire home/apt 275
## 2905 Upper West Side 40.78540 -73.97368 Private room 310
## 2906 East Village 40.72379 -73.98826 Entire home/apt 145
## 2907 Shore Acres 40.61135 -74.06356 Entire home/apt 75
## 2908 Williamsburg 40.71084 -73.94861 Entire home/apt 99
## 2909 Hell's Kitchen 40.76464 -73.98749 Entire home/apt 250
## 2910 Upper West Side 40.79221 -73.97476 Entire home/apt 104
## 2911 Gramercy 40.73681 -73.98366 Entire home/apt 250
## 2912 Hell's Kitchen 40.76493 -73.98652 Entire home/apt 150
## 2913 Hell's Kitchen 40.76703 -73.98874 Entire home/apt 195
## 2914 Hell's Kitchen 40.76671 -73.98666 Entire home/apt 350
## 2915 Williamsburg 40.71346 -73.93883 Private room 75
## 2916 Prospect-Lefferts Gardens 40.66139 -73.96027 Private room 80
## 2917 Bedford-Stuyvesant 40.69143 -73.93933 Entire home/apt 96
## 2918 Kips Bay 40.74011 -73.98185 Entire home/apt 200
## 2919 East Harlem 40.79053 -73.94398 Private room 90
## 2920 Astoria 40.76359 -73.90586 Private room 79
## 2921 Morningside Heights 40.81326 -73.96181 Private room 220
## 2922 Williamsburg 40.71108 -73.96318 Entire home/apt 224
## 2923 Arverne 40.59684 -73.79449 Private room 35
## 2924 Astoria 40.76394 -73.92022 Private room 70
## 2925 Prospect-Lefferts Gardens 40.66359 -73.95235 Private room 85
## 2926 Harlem 40.81740 -73.94629 Entire home/apt 110
## 2927 Bedford-Stuyvesant 40.68208 -73.91040 Private room 65
## 2928 Maspeth 40.72509 -73.89687 Entire home/apt 200
## 2929 Chinatown 40.71570 -73.99183 Entire home/apt 249
## 2930 East New York 40.66759 -73.88584 Private room 62
## 2931 Williamsbridge 40.88296 -73.86264 Private room 50
## 2932 East New York 40.66907 -73.88493 Private room 62
## 2933 Greenpoint 40.72668 -73.95555 Private room 50
## 2934 Murray Hill 40.74722 -73.97734 Private room 55
## 2935 Harlem 40.80339 -73.95167 Private room 71
## 2936 East Harlem 40.79770 -73.93754 Private room 75
## 2937 Williamsburg 40.71251 -73.94700 Private room 115
## 2938 Williamsburg 40.71380 -73.96251 Private room 82
## 2939 East New York 40.66874 -73.88548 Private room 75
## 2940 Harlem 40.81976 -73.94029 Private room 60
## 2941 Chelsea 40.74072 -74.00438 Entire home/apt 200
## 2942 Greenpoint 40.73370 -73.95427 Private room 90
## 2943 Park Slope 40.68242 -73.97904 Entire home/apt 215
## 2944 Hell's Kitchen 40.76796 -73.98601 Private room 100
## 2945 Astoria 40.76720 -73.92799 Private room 38
## 2946 Bushwick 40.69383 -73.90837 Entire home/apt 159
## 2947 Prospect-Lefferts Gardens 40.65763 -73.96029 Private room 64
## 2948 Windsor Terrace 40.64928 -73.97538 Entire home/apt 125
## 2949 Lower East Side 40.71890 -73.99177 Entire home/apt 120
## 2950 Chelsea 40.75224 -73.99487 Private room 76
## 2951 Upper West Side 40.77532 -73.97952 Private room 175
## 2952 Greenpoint 40.72646 -73.95799 Private room 110
## 2953 Greenpoint 40.73487 -73.95789 Private room 75
## 2954 Washington Heights 40.85287 -73.93794 Private room 80
## 2955 Greenpoint 40.72124 -73.93673 Private room 110
## 2956 Williamsburg 40.70833 -73.95395 Private room 89
## 2957 Bushwick 40.70306 -73.92526 Entire home/apt 110
## 2958 Lower East Side 40.71906 -73.98450 Private room 96
## 2959 Harlem 40.81027 -73.94639 Entire home/apt 75
## 2960 Nolita 40.72182 -73.99625 Entire home/apt 185
## 2961 Flatbush 40.63304 -73.95625 Entire home/apt 49
## 2962 West Village 40.74035 -74.00615 Entire home/apt 440
## 2963 Crown Heights 40.67760 -73.93504 Entire home/apt 220
## 2964 Financial District 40.70758 -74.00799 Private room 99
## 2965 Murray Hill 40.74740 -73.97847 Private room 85
## 2966 Williamsburg 40.71316 -73.95648 Entire home/apt 98
## 2967 Prospect-Lefferts Gardens 40.66231 -73.95394 Private room 84
## 2968 Prospect-Lefferts Gardens 40.66182 -73.95338 Private room 65
## 2969 Greenpoint 40.71985 -73.94015 Entire home/apt 160
## 2970 Park Slope 40.67629 -73.97654 Private room 115
## 2971 East Harlem 40.79377 -73.93610 Private room 59
## 2972 Midtown 40.75622 -73.97280 Private room 119
## 2973 Crown Heights 40.67394 -73.92400 Entire home/apt 120
## 2974 Upper West Side 40.79086 -73.96683 Entire home/apt 439
## 2975 Upper East Side 40.77084 -73.95811 Private room 99
## 2976 Greenpoint 40.72716 -73.94971 Entire home/apt 199
## 2977 Williamsburg 40.71790 -73.95103 Private room 99
## 2978 Astoria 40.76135 -73.91571 Private room 195
## 2979 Williamsburg 40.72076 -73.95614 Entire home/apt 180
## 2980 Long Island City 40.76081 -73.93163 Private room 100
## 2981 Bedford-Stuyvesant 40.68972 -73.93073 Entire home/apt 115
## 2982 Prospect-Lefferts Gardens 40.65769 -73.96161 Entire home/apt 115
## 2983 Two Bridges 40.70911 -73.99685 Entire home/apt 180
## 2984 Soundview 40.82138 -73.87603 Private room 45
## 2985 Lower East Side 40.72105 -73.98519 Entire home/apt 300
## 2986 Upper East Side 40.76358 -73.95895 Entire home/apt 90
## 2987 East Harlem 40.79858 -73.93585 Private room 95
## 2988 Sunnyside 40.74609 -73.91406 Entire home/apt 140
## 2989 Upper East Side 40.78031 -73.94653 Entire home/apt 123
## 2990 Hell's Kitchen 40.76708 -73.98600 Entire home/apt 200
## 2991 Astoria 40.76549 -73.92934 Private room 100
## 2992 Williamsburg 40.70982 -73.96420 Entire home/apt 250
## 2993 Williamsburg 40.71973 -73.96071 Private room 85
## 2994 Kips Bay 40.74148 -73.98304 Entire home/apt 100
## 2995 Hell's Kitchen 40.76500 -73.98904 Entire home/apt 109
## 2996 Greenpoint 40.72569 -73.94054 Entire home/apt 159
## 2997 Greenwich Village 40.73236 -73.99920 Entire home/apt 260
## 2998 Chelsea 40.74188 -73.99729 Entire home/apt 555
## 2999 East Harlem 40.80012 -73.94087 Private room 87
## 3000 Mount Eden 40.84367 -73.91718 Private room 43
## 3001 Upper East Side 40.77219 -73.95073 Entire home/apt 199
## 3002 Harlem 40.80247 -73.94531 Private room 90
## 3003 Bedford-Stuyvesant 40.69194 -73.95952 Entire home/apt 195
## 3004 Crown Heights 40.66946 -73.95008 Entire home/apt 185
## 3005 Upper West Side 40.78952 -73.98097 Entire home/apt 400
## 3006 Chelsea 40.74314 -73.99570 Entire home/apt 200
## 3007 East Harlem 40.79692 -73.94434 Private room 100
## 3008 Upper East Side 40.77648 -73.96126 Entire home/apt 225
## 3009 Crown Heights 40.67247 -73.93616 Entire home/apt 450
## 3010 Bedford-Stuyvesant 40.69696 -73.93577 Private room 80
## 3011 Bushwick 40.69366 -73.92281 Entire home/apt 89
## 3012 East Village 40.72714 -73.98397 Entire home/apt 179
## 3013 Chelsea 40.74563 -73.99325 Private room 90
## 3014 Long Island City 40.74849 -73.94947 Entire home/apt 275
## 3015 Williamsburg 40.70942 -73.95302 Private room 35
## 3016 Astoria 40.76451 -73.92942 Private room 86
## 3017 Sunnyside 40.74244 -73.91676 Entire home/apt 95
## 3018 Upper West Side 40.78448 -73.97386 Private room 116
## 3019 Hell's Kitchen 40.76421 -73.99115 Private room 80
## 3020 East Village 40.73100 -73.98427 Entire home/apt 110
## 3021 Woodhaven 40.68968 -73.85219 Private room 29
## 3022 Harlem 40.80266 -73.94728 Entire home/apt 200
## 3023 Upper West Side 40.78852 -73.96746 Entire home/apt 390
## 3024 Battery Park City 40.71078 -74.01623 Shared room 55
## 3025 Forest Hills 40.71697 -73.83396 Shared room 75
## 3026 Crown Heights 40.67528 -73.95741 Private room 75
## 3027 Bedford-Stuyvesant 40.68931 -73.95548 Entire home/apt 120
## 3028 Murray Hill 40.74881 -73.97234 Private room 143
## 3029 Midtown 40.76456 -73.98233 Entire home/apt 250
## 3030 Williamsburg 40.71284 -73.93965 Private room 99
## 3031 Harlem 40.80395 -73.95519 Entire home/apt 150
## 3032 Bedford-Stuyvesant 40.69009 -73.95314 Private room 55
## 3033 Bedford-Stuyvesant 40.69169 -73.96030 Entire home/apt 175
## 3034 Bushwick 40.70818 -73.92202 Private room 69
## 3035 Tribeca 40.71481 -74.00934 Entire home/apt 184
## 3036 Williamsburg 40.70658 -73.96759 Entire home/apt 145
## 3037 Lower East Side 40.72131 -73.98527 Private room 100
## 3038 Prospect-Lefferts Gardens 40.65987 -73.95076 Private room 44
## 3039 Greenpoint 40.72495 -73.95112 Private room 70
## 3040 Bedford-Stuyvesant 40.68273 -73.95437 Entire home/apt 185
## 3041 Nolita 40.72311 -73.99476 Entire home/apt 225
## 3042 Upper East Side 40.78277 -73.95164 Entire home/apt 199
## 3043 Harlem 40.81157 -73.95335 Private room 60
## 3044 Upper West Side 40.77631 -73.97953 Entire home/apt 175
## 3045 East Village 40.73120 -73.98857 Entire home/apt 199
## 3046 Williamsburg 40.70683 -73.95375 Private room 65
## 3047 Williamsburg 40.71295 -73.93874 Entire home/apt 190
## 3048 Crown Heights 40.67204 -73.95147 Entire home/apt 107
## 3049 East Village 40.72878 -73.97854 Entire home/apt 150
## 3050 Woodrow 40.53884 -74.19826 Entire home/apt 700
## 3051 Co-op City 40.86317 -73.82494 Private room 75
## 3052 Williamsburg 40.71870 -73.95133 Private room 45
## 3053 Park Slope 40.67749 -73.98031 Entire home/apt 179
## 3054 Sunnyside 40.73747 -73.92480 Entire home/apt 110
## 3055 Williamsburg 40.71875 -73.94935 Entire home/apt 245
## 3056 Midtown 40.76391 -73.97820 Entire home/apt 799
## 3057 Morningside Heights 40.81569 -73.96058 Private room 100
## 3058 Bedford-Stuyvesant 40.68366 -73.95009 Private room 61
## 3059 Flatiron District 40.74107 -73.98487 Entire home/apt 475
## 3060 Brooklyn Heights 40.70010 -73.99183 Entire home/apt 275
## 3061 Fort Greene 40.68585 -73.97016 Entire home/apt 250
## 3062 Williamsburg 40.70498 -73.92868 Entire home/apt 120
## 3063 Crown Heights 40.67191 -73.93997 Entire home/apt 135
## 3064 West Village 40.73246 -74.00215 Entire home/apt 199
## 3065 Bedford-Stuyvesant 40.69023 -73.94628 Private room 75
## 3066 Bedford-Stuyvesant 40.69096 -73.94613 Private room 75
## 3067 East Harlem 40.80126 -73.94540 Private room 75
## 3068 Harlem 40.81748 -73.94539 Private room 140
## 3069 Chelsea 40.74166 -73.99892 Private room 90
## 3070 Harlem 40.81450 -73.94962 Private room 80
## 3071 Williamsburg 40.71261 -73.94154 Entire home/apt 115
## 3072 Harlem 40.82519 -73.94530 Private room 60
## 3073 NoHo 40.72644 -73.99230 Entire home/apt 175
## 3074 Bushwick 40.68909 -73.91730 Entire home/apt 125
## 3075 Gramercy 40.73689 -73.98451 Entire home/apt 185
## 3076 Briarwood 40.71594 -73.82264 Private room 56
## 3077 Bushwick 40.69048 -73.92193 Private room 64
## 3078 Williamsburg 40.71454 -73.94965 Entire home/apt 300
## 3079 NoHo 40.72569 -73.99227 Entire home/apt 455
## 3080 Canarsie 40.64738 -73.89163 Private room 37
## 3081 Williamsburg 40.71618 -73.94189 Entire home/apt 193
## 3082 Bedford-Stuyvesant 40.69493 -73.94161 Private room 53
## 3083 Chelsea 40.74386 -73.99541 Entire home/apt 161
## 3084 Washington Heights 40.85557 -73.93641 Entire home/apt 99
## 3085 East Village 40.72210 -73.98356 Entire home/apt 420
## 3086 Lower East Side 40.72018 -73.98839 Entire home/apt 92
## 3087 Gramercy 40.73679 -73.98177 Entire home/apt 195
## 3088 Bedford-Stuyvesant 40.68385 -73.92349 Private room 81
## 3089 Harlem 40.82557 -73.95514 Private room 65
## 3090 Flatbush 40.65083 -73.96101 Private room 70
## 3091 Gramercy 40.73285 -73.98245 Entire home/apt 400
## 3092 Williamsburg 40.71766 -73.95634 Entire home/apt 170
## 3093 East Village 40.72982 -73.98532 Entire home/apt 175
## 3094 Bushwick 40.68135 -73.90460 Private room 41
## 3095 Harlem 40.80964 -73.94098 Entire home/apt 149
## 3096 Williamsburg 40.71216 -73.96274 Private room 87
## 3097 Chelsea 40.73865 -73.99620 Entire home/apt 300
## 3098 Chelsea 40.75000 -73.99721 Entire home/apt 92
## 3099 Bedford-Stuyvesant 40.69168 -73.93200 Private room 85
## 3100 East Village 40.73135 -73.98298 Entire home/apt 150
## 3101 Williamsburg 40.71817 -73.96401 Entire home/apt 300
## 3102 Stuyvesant Town 40.73196 -73.97932 Entire home/apt 139
## 3103 Kips Bay 40.74392 -73.98110 Private room 90
## 3104 Kips Bay 40.73544 -73.97465 Private room 118
## 3105 Midtown 40.76547 -73.97729 Entire home/apt 295
## 3106 Cypress Hills 40.67840 -73.89362 Entire home/apt 125
## 3107 Bedford-Stuyvesant 40.68674 -73.95392 Entire home/apt 122
## 3108 Midtown 40.76129 -73.96869 Entire home/apt 280
## 3109 Midtown 40.75250 -73.96492 Entire home/apt 215
## 3110 Boerum Hill 40.68897 -73.98765 Private room 89
## 3111 Harlem 40.82097 -73.93765 Private room 130
## 3112 Bushwick 40.70714 -73.92160 Entire home/apt 201
## 3113 East Flatbush 40.64469 -73.94690 Private room 119
## 3114 East Village 40.72369 -73.97530 Entire home/apt 103
## 3115 South Slope 40.66516 -73.97940 Private room 72
## 3116 East Village 40.72969 -73.98151 Entire home/apt 169
## 3117 Tribeca 40.71417 -74.00678 Entire home/apt 240
## 3118 Carroll Gardens 40.67522 -73.99978 Entire home/apt 180
## 3119 Bedford-Stuyvesant 40.68489 -73.95473 Entire home/apt 150
## 3120 Morningside Heights 40.80738 -73.95855 Entire home/apt 120
## 3121 Bedford-Stuyvesant 40.69322 -73.94581 Entire home/apt 345
## 3122 Bedford-Stuyvesant 40.68890 -73.92469 Entire home/apt 95
## 3123 Upper East Side 40.77593 -73.94927 Entire home/apt 550
## 3124 Harlem 40.82597 -73.95102 Entire home/apt 150
## 3125 East Village 40.72485 -73.98349 Private room 95
## 3126 Hell's Kitchen 40.76254 -73.98712 Private room 90
## 3127 Crown Heights 40.67143 -73.94929 Private room 175
## 3128 East Village 40.72335 -73.98549 Entire home/apt 225
## 3129 Upper East Side 40.76906 -73.95170 Entire home/apt 240
## 3130 East Village 40.72394 -73.98941 Entire home/apt 150
## 3131 Washington Heights 40.84278 -73.93725 Private room 44
## 3132 East Village 40.72898 -73.98051 Private room 1700
## 3133 Upper West Side 40.78618 -73.97339 Entire home/apt 299
## 3134 Bedford-Stuyvesant 40.68864 -73.94166 Entire home/apt 120
## 3135 Hell's Kitchen 40.75562 -73.99736 Entire home/apt 525
## 3136 Upper East Side 40.77585 -73.95566 Entire home/apt 600
## 3137 Williamsburg 40.71338 -73.96833 Private room 88
## 3138 Harlem 40.80491 -73.94752 Entire home/apt 139
## 3139 Chelsea 40.74386 -74.00106 Entire home/apt 200
## 3140 Midtown 40.75820 -73.96692 Entire home/apt 100
## 3141 SoHo 40.72838 -74.00462 Entire home/apt 209
## 3142 Carroll Gardens 40.68283 -73.99813 Entire home/apt 240
## 3143 Bedford-Stuyvesant 40.68185 -73.95336 Entire home/apt 90
## 3144 Long Island City 40.75283 -73.92915 Private room 73
## 3145 Chelsea 40.74599 -73.99775 Private room 90
## 3146 Hell's Kitchen 40.76316 -73.99358 Entire home/apt 200
## 3147 Crown Heights 40.67593 -73.95885 Entire home/apt 94
## 3148 Lower East Side 40.71845 -73.99326 Entire home/apt 145
## 3149 Gramercy 40.73660 -73.98703 Entire home/apt 199
## 3150 Bedford-Stuyvesant 40.68305 -73.94190 Entire home/apt 150
## 3151 Upper East Side 40.77890 -73.95311 Private room 85
## 3152 Murray Hill 40.74855 -73.97700 Entire home/apt 195
## 3153 Greenwich Village 40.72934 -74.00075 Entire home/apt 173
## 3154 Greenpoint 40.72589 -73.94055 Entire home/apt 159
## 3155 Williamsburg 40.71216 -73.96615 Private room 85
## 3156 Bedford-Stuyvesant 40.68413 -73.92693 Entire home/apt 120
## 3157 Midtown 40.75669 -73.96660 Entire home/apt 225
## 3158 Williamsburg 40.71394 -73.94193 Entire home/apt 175
## 3159 Midtown 40.75375 -73.96556 Private room 130
## 3160 West Village 40.73311 -74.00761 Entire home/apt 249
## 3161 Canarsie 40.64448 -73.89222 Private room 38
## 3162 Bushwick 40.70343 -73.91343 Private room 53
## 3163 Hell's Kitchen 40.76296 -73.98641 Private room 125
## 3164 SoHo 40.72617 -74.00141 Entire home/apt 245
## 3165 DUMBO 40.70289 -73.98583 Entire home/apt 150
## 3166 Canarsie 40.64674 -73.89501 Private room 32
## 3167 Hell's Kitchen 40.75406 -73.99376 Entire home/apt 160
## 3168 Prospect-Lefferts Gardens 40.66173 -73.95382 Entire home/apt 175
## 3169 Williamsburg 40.70711 -73.94457 Private room 40
## 3170 Bushwick 40.70565 -73.92254 Private room 58
## 3171 Bedford-Stuyvesant 40.68166 -73.94325 Entire home/apt 149
## 3172 Chelsea 40.75066 -74.00377 Entire home/apt 200
## 3173 Bedford-Stuyvesant 40.68285 -73.95112 Entire home/apt 100
## 3174 Bedford-Stuyvesant 40.68442 -73.95639 Private room 50
## 3175 Bedford-Stuyvesant 40.69181 -73.95366 Entire home/apt 97
## 3176 Chelsea 40.74793 -74.00691 Private room 84
## 3177 Prospect Heights 40.68049 -73.97302 Entire home/apt 275
## 3178 Upper East Side 40.76981 -73.95812 Entire home/apt 99
## 3179 Greenpoint 40.72587 -73.94122 Entire home/apt 70
## 3180 Greenpoint 40.72749 -73.94201 Entire home/apt 149
## 3181 Midtown 40.75463 -73.97062 Entire home/apt 399
## 3182 Gowanus 40.68374 -73.98558 Entire home/apt 145
## 3183 Gowanus 40.68323 -73.98643 Private room 200
## 3184 Bushwick 40.70505 -73.92281 Private room 59
## 3185 Williamsburg 40.71863 -73.94575 Private room 70
## 3186 Gramercy 40.73892 -73.98922 Entire home/apt 249
## 3187 Flatbush 40.64060 -73.96195 Entire home/apt 70
## 3188 Sunnyside 40.73673 -73.92526 Private room 45
## 3189 Chelsea 40.74676 -74.00234 Private room 75
## 3190 Williamsburg 40.71351 -73.94316 Private room 70
## 3191 Williamsburg 40.70727 -73.95459 Entire home/apt 159
## 3192 Hell's Kitchen 40.76019 -73.99586 Entire home/apt 499
## 3193 Bushwick 40.70561 -73.92515 Private room 55
## 3194 Lower East Side 40.72147 -73.98806 Private room 228
## 3195 East Flatbush 40.64913 -73.92525 Private room 67
## 3196 East Village 40.72745 -73.98344 Private room 119
## 3197 Upper West Side 40.77060 -73.98919 Entire home/apt 189
## 3198 Upper East Side 40.77785 -73.94540 Entire home/apt 350
## 3199 Gowanus 40.68396 -73.98914 Entire home/apt 450
## 3200 Bedford-Stuyvesant 40.67814 -73.92375 Private room 45
## 3201 Midtown 40.75876 -73.96854 Entire home/apt 175
## 3202 Crown Heights 40.67801 -73.96106 Entire home/apt 83
## 3203 Fort Greene 40.68516 -73.97461 Entire home/apt 120
## 3204 Crown Heights 40.67138 -73.96058 Private room 35
## 3205 Harlem 40.81056 -73.94300 Entire home/apt 140
## 3206 Harlem 40.82954 -73.94436 Private room 45
## 3207 East Harlem 40.80029 -73.94294 Private room 90
## 3208 Astoria 40.76425 -73.90489 Private room 79
## 3209 Bedford-Stuyvesant 40.69309 -73.95921 Private room 100
## 3210 Chelsea 40.74276 -74.00016 Entire home/apt 225
## 3211 Briarwood 40.71477 -73.82012 Private room 66
## 3212 Clinton Hill 40.69414 -73.96634 Entire home/apt 140
## 3213 Clinton Hill 40.68474 -73.96320 Private room 98
## 3214 Bedford-Stuyvesant 40.67963 -73.93750 Entire home/apt 140
## 3215 Lower East Side 40.72083 -73.98755 Entire home/apt 195
## 3216 Harlem 40.82438 -73.94332 Private room 60
## 3217 Crown Heights 40.67689 -73.95878 Entire home/apt 150
## 3218 Long Island City 40.74404 -73.95233 Private room 40
## 3219 Astoria 40.77453 -73.92833 Entire home/apt 130
## 3220 Williamsburg 40.71278 -73.94035 Private room 75
## 3221 Williamsburg 40.71715 -73.95527 Entire home/apt 248
## 3222 East Village 40.72709 -73.98442 Entire home/apt 450
## 3223 Williamsburg 40.71610 -73.95074 Entire home/apt 120
## 3224 Williamsburg 40.71758 -73.95430 Entire home/apt 250
## 3225 Lower East Side 40.71930 -73.98986 Private room 80
## 3226 Hell's Kitchen 40.76143 -73.99223 Entire home/apt 140
## 3227 Williamsburg 40.71532 -73.94581 Entire home/apt 120
## 3228 Harlem 40.80026 -73.95197 Shared room 45
## 3229 Williamsburg 40.70576 -73.94827 Private room 100
## 3230 Bedford-Stuyvesant 40.69135 -73.95859 Entire home/apt 175
## 3231 Clinton Hill 40.68492 -73.96669 Entire home/apt 130
## 3232 Kips Bay 40.73772 -73.98025 Entire home/apt 175
## 3233 Financial District 40.70602 -74.00720 Private room 40
## 3234 Park Slope 40.67982 -73.98005 Entire home/apt 650
## 3235 Midtown 40.76135 -73.97785 Private room 85
## 3236 East Village 40.72373 -73.99118 Private room 175
## 3237 Hell's Kitchen 40.75887 -73.99475 Private room 105
## 3238 Williamsburg 40.71674 -73.95262 Private room 80
## 3239 Clinton Hill 40.69120 -73.96686 Entire home/apt 150
## 3240 Parkchester 40.83645 -73.86634 Entire home/apt 195
## 3241 Clinton Hill 40.69356 -73.96744 Entire home/apt 750
## 3242 Lower East Side 40.71972 -73.99299 Entire home/apt 249
## 3243 Greenpoint 40.73419 -73.95493 Entire home/apt 140
## 3244 Fort Greene 40.69117 -73.97047 Entire home/apt 180
## 3245 Harlem 40.80688 -73.94932 Private room 90
## 3246 City Island 40.85258 -73.78762 Entire home/apt 120
## 3247 Middle Village 40.71576 -73.86268 Entire home/apt 85
## 3248 Harlem 40.80874 -73.94756 Entire home/apt 174
## 3249 Hell's Kitchen 40.76247 -73.99225 Entire home/apt 150
## 3250 East Village 40.72815 -73.98059 Entire home/apt 295
## 3251 Astoria 40.75820 -73.91687 Entire home/apt 180
## 3252 East Village 40.72997 -73.98497 Entire home/apt 172
## 3253 Gowanus 40.68437 -73.98654 Entire home/apt 130
## 3254 Harlem 40.82024 -73.93799 Private room 52
## 3255 Greenpoint 40.72318 -73.94931 Entire home/apt 220
## 3256 East Harlem 40.80447 -73.94034 Private room 50
## 3257 Bedford-Stuyvesant 40.67769 -73.92303 Private room 37
## 3258 East Harlem 40.79629 -73.94769 Private room 85
## 3259 Bushwick 40.68626 -73.91324 Entire home/apt 249
## 3260 South Slope 40.66583 -73.98956 Entire home/apt 150
## 3261 Fort Greene 40.68605 -73.97517 Entire home/apt 119
## 3262 Williamsburg 40.70139 -73.94499 Entire home/apt 49
## 3263 Harlem 40.80419 -73.95582 Private room 90
## 3264 Chelsea 40.74328 -73.99742 Entire home/apt 200
## 3265 East Flatbush 40.63803 -73.94894 Entire home/apt 97
## 3266 Greenpoint 40.72575 -73.95231 Entire home/apt 399
## 3267 Williamsburg 40.70604 -73.94457 Entire home/apt 151
## 3268 Hell's Kitchen 40.76435 -73.99054 Entire home/apt 200
## 3269 Little Italy 40.71930 -73.99781 Entire home/apt 200
## 3270 Long Island City 40.75401 -73.91757 Entire home/apt 82
## 3271 Upper West Side 40.80009 -73.97009 Entire home/apt 130
## 3272 Fort Greene 40.68508 -73.97393 Private room 69
## 3273 Astoria 40.76266 -73.91451 Entire home/apt 150
## 3274 Washington Heights 40.85516 -73.93717 Entire home/apt 150
## 3275 East Village 40.72187 -73.98083 Entire home/apt 150
## 3276 East Village 40.72810 -73.98671 Entire home/apt 100
## 3277 Kips Bay 40.74423 -73.97614 Entire home/apt 195
## 3278 Chelsea 40.73925 -73.99359 Entire home/apt 251
## 3279 Williamsburg 40.71746 -73.96070 Entire home/apt 200
## 3280 Prospect Heights 40.67475 -73.96385 Entire home/apt 100
## 3281 Port Morris 40.80844 -73.92889 Entire home/apt 140
## 3282 East Village 40.73340 -73.98801 Entire home/apt 146
## 3283 Williamsburg 40.71688 -73.94584 Entire home/apt 250
## 3284 Upper East Side 40.77924 -73.95405 Entire home/apt 499
## 3285 Williamsburg 40.71842 -73.94093 Private room 80
## 3286 Cypress Hills 40.68528 -73.87819 Entire home/apt 80
## 3287 Lower East Side 40.72139 -73.99271 Entire home/apt 220
## 3288 Lower East Side 40.71286 -73.98437 Private room 102
## 3289 Harlem 40.82330 -73.95591 Entire home/apt 120
## 3290 East Village 40.72811 -73.98663 Entire home/apt 170
## 3291 Upper West Side 40.78122 -73.98473 Entire home/apt 235
## 3292 Upper East Side 40.76876 -73.95979 Entire home/apt 149
## 3293 Park Slope 40.67694 -73.98130 Entire home/apt 180
## 3294 Williamsburg 40.71367 -73.95673 Private room 89
## 3295 South Slope 40.66579 -73.98991 Entire home/apt 199
## 3296 Bedford-Stuyvesant 40.69484 -73.93420 Private room 72
## 3297 Bushwick 40.70022 -73.91441 Entire home/apt 80
## 3298 Hell's Kitchen 40.76636 -73.98634 Private room 99
## 3299 Crown Heights 40.67130 -73.94329 Entire home/apt 125
## 3300 Upper West Side 40.77021 -73.98721 Private room 150
## 3301 Windsor Terrace 40.65899 -73.97771 Entire home/apt 100
## 3302 SoHo 40.72493 -74.00193 Private room 106
## 3303 Harlem 40.81381 -73.94166 Entire home/apt 250
## 3304 Greenwich Village 40.72796 -73.99761 Private room 150
## 3305 Williamsburg 40.70978 -73.96854 Private room 100
## 3306 Chelsea 40.74163 -73.99857 Entire home/apt 189
## 3307 East Village 40.72823 -73.98933 Entire home/apt 1999
## 3308 East Village 40.72679 -73.98598 Entire home/apt 120
## 3309 Williamsburg 40.70608 -73.94269 Private room 100
## 3310 Greenpoint 40.72539 -73.94074 Entire home/apt 149
## 3311 East Village 40.72820 -73.98615 Entire home/apt 480
## 3312 Upper East Side 40.76838 -73.95481 Private room 100
## 3313 Upper West Side 40.78468 -73.97137 Entire home/apt 300
## 3314 Canarsie 40.64605 -73.89382 Private room 33
## 3315 Park Slope 40.67122 -73.98618 Entire home/apt 175
## 3316 East Village 40.72862 -73.98885 Entire home/apt 142
## 3317 Ditmars Steinway 40.77906 -73.91265 Entire home/apt 135
## 3318 Bushwick 40.69937 -73.91463 Entire home/apt 135
## 3319 Williamsburg 40.71871 -73.96456 Entire home/apt 350
## 3320 Prospect-Lefferts Gardens 40.66362 -73.94926 Entire home/apt 80
## 3321 Upper West Side 40.79859 -73.96078 Private room 80
## 3322 Upper West Side 40.80168 -73.96253 Private room 87
## 3323 East Village 40.72754 -73.98555 Entire home/apt 450
## 3324 Upper East Side 40.77556 -73.94830 Entire home/apt 275
## 3325 Crown Heights 40.67468 -73.94184 Entire home/apt 150
## 3326 Crown Heights 40.67148 -73.95698 Private room 50
## 3327 Williamsburg 40.71971 -73.95998 Private room 79
## 3328 Bedford-Stuyvesant 40.68248 -73.95149 Private room 60
## 3329 Elmhurst 40.73943 -73.87475 Private room 45
## 3330 Upper West Side 40.78918 -73.97927 Entire home/apt 120
## 3331 Washington Heights 40.84082 -73.93896 Entire home/apt 145
## 3332 Harlem 40.81402 -73.94358 Entire home/apt 175
## 3333 East Village 40.72886 -73.98036 Entire home/apt 137
## 3334 Midtown 40.76316 -73.98109 Entire home/apt 1500
## 3335 East Harlem 40.78813 -73.94495 Private room 86
## 3336 Bushwick 40.70618 -73.91669 Entire home/apt 90
## 3337 Midtown 40.76663 -73.98069 Entire home/apt 345
## 3338 Roosevelt Island 40.77000 -73.94285 Entire home/apt 150
## 3339 Hell's Kitchen 40.76485 -73.98752 Entire home/apt 250
## 3340 Crown Heights 40.67497 -73.95879 Entire home/apt 105
## 3341 Clinton Hill 40.69025 -73.96704 Entire home/apt 130
## 3342 Upper East Side 40.78380 -73.94820 Private room 90
## 3343 Crown Heights 40.66952 -73.94377 Entire home/apt 150
## 3344 Williamsburg 40.71002 -73.95802 Entire home/apt 150
## 3345 Inwood 40.86390 -73.92808 Entire home/apt 225
## 3346 Upper West Side 40.79321 -73.96940 Entire home/apt 1000
## 3347 Williamsburg 40.71044 -73.93987 Private room 80
## 3348 South Slope 40.66928 -73.98662 Entire home/apt 150
## 3349 Upper East Side 40.76273 -73.95866 Private room 120
## 3350 North Riverdale 40.90804 -73.90005 Private room 53
## 3351 Flatbush 40.63524 -73.96602 Entire home/apt 115
## 3352 Williamsburg 40.71861 -73.94362 Shared room 175
## 3353 Harlem 40.80830 -73.94390 Entire home/apt 150
## 3354 SoHo 40.72778 -74.00860 Entire home/apt 162
## 3355 Morningside Heights 40.80446 -73.96366 Private room 95
## 3356 Morningside Heights 40.81615 -73.96156 Private room 55
## 3357 Chinatown 40.71695 -73.99178 Entire home/apt 117
## 3358 Midtown 40.76542 -73.98081 Entire home/apt 175
## 3359 Ridgewood 40.70493 -73.90795 Entire home/apt 75
## 3360 Lower East Side 40.71914 -73.99174 Entire home/apt 189
## 3361 Upper West Side 40.78021 -73.98050 Entire home/apt 150
## 3362 Inwood 40.86888 -73.92059 Private room 45
## 3363 Bedford-Stuyvesant 40.68631 -73.95575 Entire home/apt 190
## 3364 Clinton Hill 40.68410 -73.96691 Entire home/apt 130
## 3365 Bushwick 40.69641 -73.90994 Private room 79
## 3366 West Village 40.73967 -74.00933 Entire home/apt 850
## 3367 Crown Heights 40.66687 -73.95619 Entire home/apt 150
## 3368 Clinton Hill 40.69594 -73.96715 Entire home/apt 100
## 3369 Inwood 40.86317 -73.92873 Entire home/apt 115
## 3370 East Village 40.73003 -73.98576 Entire home/apt 300
## 3371 Midtown 40.74873 -73.98827 Entire home/apt 159
## 3372 Midtown 40.74897 -73.98265 Private room 500
## 3373 Harlem 40.82475 -73.94842 Private room 39
## 3374 Upper East Side 40.78081 -73.95045 Entire home/apt 250
## 3375 Windsor Terrace 40.65391 -73.97401 Entire home/apt 200
## 3376 Hell's Kitchen 40.76709 -73.98577 Entire home/apt 250
## 3377 East Harlem 40.78605 -73.95087 Entire home/apt 120
## 3378 Upper West Side 40.80034 -73.96638 Private room 105
## 3379 Astoria 40.75770 -73.91981 Entire home/apt 100
## 3380 East Village 40.72977 -73.98713 Entire home/apt 175
## 3381 Greenpoint 40.72000 -73.95433 Entire home/apt 500
## 3382 East Village 40.72820 -73.98340 Entire home/apt 120
## 3383 Williamsburg 40.71491 -73.94864 Private room 85
## 3384 Chelsea 40.73985 -74.00138 Entire home/apt 320
## 3385 Astoria 40.75820 -73.92811 Entire home/apt 149
## 3386 SoHo 40.72329 -73.99810 Entire home/apt 400
## 3387 Long Island City 40.75832 -73.92874 Private room 72
## 3388 Harlem 40.82486 -73.93993 Entire home/apt 300
## 3389 Harlem 40.81639 -73.94085 Entire home/apt 115
## 3390 St. Albans 40.70039 -73.75233 Entire home/apt 325
## 3391 Sunset Park 40.64532 -74.02063 Private room 32
## 3392 Upper West Side 40.79675 -73.96916 Private room 100
## 3393 Harlem 40.81858 -73.95590 Entire home/apt 150
## 3394 Harlem 40.81728 -73.94583 Entire home/apt 95
## 3395 East Village 40.72635 -73.97595 Entire home/apt 290
## 3396 Dyker Heights 40.62830 -74.01608 Private room 30
## 3397 Bedford-Stuyvesant 40.68390 -73.94446 Entire home/apt 75
## 3398 East Village 40.72782 -73.98095 Entire home/apt 140
## 3399 West Village 40.73858 -74.00875 Private room 500
## 3400 Astoria 40.76589 -73.92864 Entire home/apt 100
## 3401 Upper East Side 40.76749 -73.95533 Private room 80
## 3402 Park Slope 40.67559 -73.98362 Entire home/apt 125
## 3403 South Slope 40.66719 -73.98361 Entire home/apt 250
## 3404 Bushwick 40.68673 -73.91024 Private room 50
## 3405 Midtown 40.76326 -73.98165 Entire home/apt 395
## 3406 Hell's Kitchen 40.76473 -73.98937 Entire home/apt 100
## 3407 Williamsburg 40.71257 -73.96149 Entire home/apt 250
## 3408 Bushwick 40.70781 -73.92184 Private room 79
## 3409 Lower East Side 40.71892 -73.98383 Entire home/apt 100
## 3410 Bedford-Stuyvesant 40.68671 -73.93346 Private room 52
## 3411 Lower East Side 40.72148 -73.98823 Private room 98
## 3412 Crown Heights 40.66539 -73.95651 Entire home/apt 120
## 3413 Sunset Park 40.66118 -73.98901 Private room 40
## 3414 Kips Bay 40.73987 -73.98317 Entire home/apt 345
## 3415 Sunnyside 40.74817 -73.91886 Private room 50
## 3416 Williamsburg 40.70371 -73.93344 Private room 45
## 3417 Midtown 40.75520 -73.97240 Entire home/apt 250
## 3418 NoHo 40.72717 -73.99270 Entire home/apt 350
## 3419 Flatbush 40.65398 -73.96139 Private room 57
## 3420 Fort Greene 40.69767 -73.97137 Entire home/apt 120
## 3421 West Village 40.73187 -74.00865 Entire home/apt 1000
## 3422 Upper East Side 40.77376 -73.95343 Entire home/apt 125
## 3423 Harlem 40.80163 -73.95413 Entire home/apt 145
## 3424 East Village 40.72852 -73.98705 Entire home/apt 150
## 3425 Fort Greene 40.68560 -73.97418 Private room 89
## 3426 Williamsburg 40.71589 -73.95534 Entire home/apt 164
## 3427 Williamsburg 40.71542 -73.95652 Entire home/apt 210
## 3428 Harlem 40.80121 -73.95063 Private room 115
## 3429 West Village 40.73075 -74.00238 Entire home/apt 110
## 3430 Upper West Side 40.79053 -73.96956 Entire home/apt 199
## 3431 SoHo 40.72577 -74.00279 Entire home/apt 272
## 3432 East Harlem 40.79981 -73.94048 Private room 75
## 3433 East Village 40.72829 -73.98907 Private room 69
## 3434 East Harlem 40.80797 -73.93686 Private room 179
## 3435 Midtown 40.75184 -73.97199 Entire home/apt 106
## 3436 West Village 40.73246 -74.00854 Entire home/apt 800
## 3437 Upper West Side 40.77895 -73.97837 Private room 100
## 3438 Bushwick 40.69220 -73.92399 Private room 60
## 3439 Upper West Side 40.77928 -73.97966 Entire home/apt 120
## 3440 Bronxdale 40.85667 -73.86543 Entire home/apt 80
## 3441 Kips Bay 40.74282 -73.98030 Private room 75
## 3442 Astoria 40.76720 -73.90795 Private room 35
## 3443 Crown Heights 40.67659 -73.95608 Entire home/apt 88
## 3444 Sunnyside 40.74071 -73.91910 Private room 50
## 3445 Harlem 40.82078 -73.93771 Private room 45
## 3446 Upper East Side 40.77127 -73.95033 Entire home/apt 75
## 3447 Kips Bay 40.74221 -73.98121 Private room 79
## 3448 Forest Hills 40.71215 -73.85356 Private room 55
## 3449 Williamsburg 40.71524 -73.94299 Private room 45
## 3450 South Slope 40.66551 -73.98805 Private room 85
## 3451 Bedford-Stuyvesant 40.67828 -73.92965 Private room 80
## 3452 Hell's Kitchen 40.76874 -73.98757 Entire home/apt 599
## 3453 Williamsburg 40.70491 -73.94268 Entire home/apt 110
## 3454 Chelsea 40.74374 -74.00044 Entire home/apt 199
## 3455 Williamsburg 40.71955 -73.96049 Private room 94
## 3456 Boerum Hill 40.68630 -73.98572 Entire home/apt 400
## 3457 Williamsburg 40.70731 -73.94344 Private room 60
## 3458 Murray Hill 40.75053 -73.97747 Entire home/apt 175
## 3459 Greenpoint 40.72323 -73.94915 Entire home/apt 200
## 3460 East Village 40.73033 -73.98742 Private room 100
## 3461 Crown Heights 40.66806 -73.95358 Entire home/apt 50
## 3462 Kips Bay 40.73899 -73.98153 Entire home/apt 175
## 3463 Greenpoint 40.72532 -73.93992 Entire home/apt 199
## 3464 Greenpoint 40.73397 -73.95442 Private room 54
## 3465 Park Slope 40.66952 -73.98285 Entire home/apt 130
## 3466 Bedford-Stuyvesant 40.68637 -73.94170 Entire home/apt 151
## 3467 Morningside Heights 40.81233 -73.96101 Entire home/apt 80
## 3468 Lower East Side 40.71715 -73.98936 Entire home/apt 110
## 3469 Bushwick 40.70180 -73.91823 Entire home/apt 60
## 3470 Bedford-Stuyvesant 40.68171 -73.92085 Entire home/apt 110
## 3471 Greenpoint 40.73303 -73.95153 Private room 73
## 3472 Bedford-Stuyvesant 40.69142 -73.93481 Entire home/apt 177
## 3473 Sunnyside 40.74409 -73.91868 Entire home/apt 90
## 3474 Lower East Side 40.71864 -73.98496 Entire home/apt 190
## 3475 Crown Heights 40.66646 -73.93605 Entire home/apt 105
## 3476 Harlem 40.81286 -73.94385 Entire home/apt 150
## 3477 Longwood 40.82347 -73.89495 Private room 65
## 3478 Williamsburg 40.70674 -73.94365 Private room 35
## 3479 Williamsburg 40.70958 -73.94287 Entire home/apt 700
## 3480 Brooklyn Heights 40.69134 -73.99334 Entire home/apt 185
## 3481 Upper West Side 40.80033 -73.96509 Entire home/apt 150
## 3482 Bedford-Stuyvesant 40.68773 -73.94520 Private room 100
## 3483 Williamsburg 40.71131 -73.96813 Entire home/apt 575
## 3484 Lower East Side 40.71044 -73.98756 Private room 128
## 3485 East Village 40.72247 -73.97923 Entire home/apt 299
## 3486 Chinatown 40.71651 -73.99053 Entire home/apt 169
## 3487 East Village 40.72864 -73.98216 Private room 109
## 3488 Clinton Hill 40.68041 -73.95838 Entire home/apt 99
## 3489 Astoria 40.76165 -73.92179 Entire home/apt 130
## 3490 West Village 40.73552 -74.00716 Entire home/apt 239
## 3491 Clinton Hill 40.68476 -73.96672 Entire home/apt 100
## 3492 Gowanus 40.66983 -73.99040 Entire home/apt 124
## 3493 Flatbush 40.64717 -73.96189 Private room 69
## 3494 Williamsburg 40.70867 -73.94799 Entire home/apt 180
## 3495 Williamsburg 40.71371 -73.96236 Entire home/apt 225
## 3496 Hell's Kitchen 40.75774 -73.99371 Entire home/apt 119
## 3497 Chelsea 40.74611 -74.00014 Entire home/apt 220
## 3498 Crown Heights 40.66876 -73.95633 Entire home/apt 150
## 3499 Prospect Heights 40.67321 -73.96514 Private room 75
## 3500 Greenpoint 40.73408 -73.95601 Private room 51
## 3501 Upper East Side 40.77519 -73.95688 Entire home/apt 150
## 3502 Williamsburg 40.71243 -73.95873 Private room 91
## 3503 Chelsea 40.74978 -73.99686 Entire home/apt 139
## 3504 Fort Greene 40.69286 -73.96993 Entire home/apt 100
## 3505 Ridgewood 40.70716 -73.89906 Private room 60
## 3506 NoHo 40.72477 -73.99323 Entire home/apt 255
## 3507 Sunnyside 40.74409 -73.92471 Entire home/apt 94
## 3508 East Village 40.72287 -73.98462 Entire home/apt 179
## 3509 Upper East Side 40.76352 -73.95548 Entire home/apt 135
## 3510 Flatbush 40.63832 -73.96769 Private room 50
## 3511 Bushwick 40.69067 -73.92207 Entire home/apt 350
## 3512 Upper East Side 40.77452 -73.94951 Entire home/apt 150
## 3513 Nolita 40.72045 -73.99598 Entire home/apt 375
## 3514 Upper West Side 40.77747 -73.98095 Private room 150
## 3515 Hell's Kitchen 40.76204 -73.99143 Entire home/apt 175
## 3516 Park Slope 40.67281 -73.97628 Entire home/apt 170
## 3517 Williamsburg 40.70981 -73.95189 Entire home/apt 275
## 3518 Bushwick 40.70381 -73.92766 Private room 30
## 3519 Cobble Hill 40.68803 -73.99182 Entire home/apt 150
## 3520 Midtown 40.75426 -73.96886 Entire home/apt 140
## 3521 Upper West Side 40.78835 -73.96810 Entire home/apt 200
## 3522 Upper West Side 40.77822 -73.98016 Entire home/apt 560
## 3523 Theater District 40.76263 -73.98271 Entire home/apt 240
## 3524 Ridgewood 40.70988 -73.90845 Entire home/apt 99
## 3525 Gramercy 40.73646 -73.98337 Entire home/apt 195
## 3526 Murray Hill 40.74961 -73.97865 Private room 89
## 3527 Bushwick 40.69472 -73.92874 Private room 65
## 3528 West Village 40.73192 -74.00433 Entire home/apt 156
## 3529 East Village 40.72859 -73.98957 Private room 120
## 3530 Upper West Side 40.79994 -73.97094 Entire home/apt 400
## 3531 Williamsburg 40.70765 -73.94821 Entire home/apt 210
## 3532 Greenpoint 40.72587 -73.94138 Entire home/apt 159
## 3533 Bedford-Stuyvesant 40.69193 -73.92740 Private room 55
## 3534 Greenpoint 40.72546 -73.94136 Entire home/apt 129
## 3535 Upper West Side 40.77517 -73.98829 Entire home/apt 300
## 3536 Bushwick 40.69636 -73.91138 Private room 79
## 3537 Prospect-Lefferts Gardens 40.66261 -73.94673 Private room 100
## 3538 Upper West Side 40.77782 -73.97848 Entire home/apt 6000
## 3539 Maspeth 40.72675 -73.90522 Entire home/apt 64
## 3540 Williamsburg 40.71872 -73.95496 Private room 110
## 3541 Harlem 40.82532 -73.94992 Private room 55
## 3542 Bedford-Stuyvesant 40.68162 -73.94848 Private room 55
## 3543 Bushwick 40.70177 -73.91922 Private room 75
## 3544 Greenpoint 40.72553 -73.94571 Private room 70
## 3545 Upper East Side 40.76860 -73.95307 Shared room 85
## 3546 Windsor Terrace 40.65022 -73.97247 Entire home/apt 130
## 3547 South Slope 40.66639 -73.98706 Private room 120
## 3548 Flatbush 40.64759 -73.96173 Entire home/apt 50
## 3549 Washington Heights 40.83454 -73.94224 Entire home/apt 100
## 3550 Lower East Side 40.71973 -73.99338 Entire home/apt 145
## 3551 Williamsburg 40.71258 -73.96392 Private room 100
## 3552 West Village 40.73236 -74.00353 Entire home/apt 200
## 3553 Harlem 40.82029 -73.93861 Entire home/apt 80
## 3554 Upper West Side 40.78881 -73.98116 Entire home/apt 200
## 3555 West Village 40.72975 -74.00414 Entire home/apt 325
## 3556 Long Island City 40.76304 -73.92777 Entire home/apt 120
## 3557 Hell's Kitchen 40.76466 -73.99325 Private room 180
## 3558 Financial District 40.70912 -74.01322 Entire home/apt 379
## 3559 Borough Park 40.63592 -74.00476 Private room 33
## 3560 Williamsburg 40.71296 -73.95088 Private room 60
## 3561 Greenpoint 40.72552 -73.94195 Entire home/apt 199
## 3562 Greenpoint 40.72722 -73.94167 Entire home/apt 149
## 3563 Upper East Side 40.77924 -73.95092 Entire home/apt 150
## 3564 Harlem 40.81143 -73.94248 Entire home/apt 98
## 3565 East Village 40.72476 -73.97643 Entire home/apt 250
## 3566 Bushwick 40.69312 -73.90582 Private room 60
## 3567 Williamsburg 40.71558 -73.94355 Entire home/apt 149
## 3568 Williamsburg 40.71470 -73.96554 Private room 95
## 3569 Bedford-Stuyvesant 40.68409 -73.95402 Entire home/apt 85
## 3570 Chelsea 40.74193 -74.00170 Entire home/apt 90
## 3571 Astoria 40.77073 -73.93229 Private room 47
## 3572 Hell's Kitchen 40.76613 -73.98721 Entire home/apt 180
## 3573 Battery Park City 40.71000 -74.01540 Private room 110
## 3574 Carroll Gardens 40.68362 -73.99714 Entire home/apt 170
## 3575 Greenwich Village 40.72934 -73.99983 Entire home/apt 210
## 3576 Upper West Side 40.79478 -73.97474 Entire home/apt 900
## 3577 Richmond Hill 40.70171 -73.82788 Entire home/apt 65
## 3578 Bedford-Stuyvesant 40.67927 -73.91130 Private room 60
## 3579 Upper West Side 40.78689 -73.96985 Entire home/apt 225
## 3580 Bushwick 40.68342 -73.91017 Entire home/apt 200
## 3581 Bedford-Stuyvesant 40.68478 -73.92971 Entire home/apt 170
## 3582 Washington Heights 40.83191 -73.94110 Private room 62
## 3583 Murray Hill 40.74487 -73.97452 Entire home/apt 125
## 3584 SoHo 40.72356 -74.00305 Private room 106
## 3585 Harlem 40.81968 -73.95353 Private room 93
## 3586 Upper East Side 40.77459 -73.95149 Private room 85
## 3587 Washington Heights 40.85098 -73.93664 Private room 300
## 3588 Lower East Side 40.71978 -73.98643 Entire home/apt 224
## 3589 Williamsburg 40.71473 -73.96495 Private room 145
## 3590 Crown Heights 40.67177 -73.95221 Private room 40
## 3591 Hell's Kitchen 40.76197 -73.99308 Private room 135
## 3592 Midtown 40.75667 -73.96464 Private room 97
## 3593 Upper East Side 40.76141 -73.96273 Private room 69
## 3594 Bushwick 40.69346 -73.90765 Entire home/apt 225
## 3595 SoHo 40.72615 -74.00123 Entire home/apt 900
## 3596 Hell's Kitchen 40.76213 -73.99376 Entire home/apt 215
## 3597 Bushwick 40.69660 -73.93072 Private room 99
## 3598 East Village 40.72767 -73.98825 Entire home/apt 850
## 3599 Gramercy 40.73545 -73.98238 Entire home/apt 2000
## 3600 Sunnyside 40.74527 -73.91693 Private room 60
## 3601 Upper East Side 40.78360 -73.95093 Entire home/apt 303
## 3602 Upper West Side 40.79752 -73.96298 Entire home/apt 750
## 3603 Bedford-Stuyvesant 40.68922 -73.94626 Entire home/apt 111
## 3604 Greenpoint 40.73107 -73.95712 Private room 60
## 3605 Williamsburg 40.71587 -73.96351 Entire home/apt 320
## 3606 Bedford-Stuyvesant 40.68640 -73.94529 Entire home/apt 112
## 3607 Bedford-Stuyvesant 40.68232 -73.92746 Entire home/apt 185
## 3608 Long Island City 40.75874 -73.92999 Private room 100
## 3609 Bushwick 40.70014 -73.92705 Entire home/apt 150
## 3610 Hell's Kitchen 40.76337 -73.98576 Private room 130
## 3611 Bushwick 40.70751 -73.92058 Entire home/apt 130
## 3612 Financial District 40.70451 -74.00671 Entire home/apt 575
## 3613 Carroll Gardens 40.68497 -73.99020 Entire home/apt 125
## 3614 East Village 40.72671 -73.98437 Entire home/apt 190
## 3615 Bushwick 40.68926 -73.91595 Private room 70
## 3616 Upper West Side 40.77874 -73.98437 Entire home/apt 599
## 3617 Bedford-Stuyvesant 40.69112 -73.95203 Private room 80
## 3618 Upper East Side 40.77464 -73.95226 Entire home/apt 99
## 3619 Upper East Side 40.76040 -73.96029 Entire home/apt 100
## 3620 Theater District 40.76252 -73.98376 Entire home/apt 200
## 3621 Harlem 40.82252 -73.94462 Private room 60
## 3622 Prospect-Lefferts Gardens 40.65910 -73.96116 Private room 100
## 3623 Murray Hill 40.74855 -73.98001 Entire home/apt 2000
## 3624 Harlem 40.81200 -73.95367 Private room 90
## 3625 Clinton Hill 40.68214 -73.96474 Private room 61
## 3626 Williamsburg 40.71557 -73.96149 Private room 99
## 3627 Ridgewood 40.70218 -73.91005 Private room 100
## 3628 Upper West Side 40.77608 -73.97614 Entire home/apt 340
## 3629 Williamsburg 40.71354 -73.96183 Private room 75
## 3630 Williamsburg 40.71364 -73.96427 Entire home/apt 130
## 3631 Williamsburg 40.71328 -73.95154 Entire home/apt 140
## 3632 Harlem 40.81562 -73.94426 Entire home/apt 112
## 3633 East Village 40.72456 -73.98004 Entire home/apt 160
## 3634 Harlem 40.81333 -73.94194 Entire home/apt 165
## 3635 Chelsea 40.74106 -74.00262 Private room 80
## 3636 Hell's Kitchen 40.76000 -73.99009 Entire home/apt 850
## 3637 Midtown 40.75764 -73.96827 Entire home/apt 950
## 3638 Tribeca 40.71725 -74.00528 Entire home/apt 1500
## 3639 Chelsea 40.74259 -73.99708 Entire home/apt 160
## 3640 West Village 40.73818 -74.00433 Entire home/apt 300
## 3641 Bedford-Stuyvesant 40.67892 -73.95156 Entire home/apt 150
## 3642 Park Slope 40.66587 -73.97737 Entire home/apt 250
## 3643 East Village 40.72358 -73.98670 Entire home/apt 100
## 3644 Harlem 40.82811 -73.94372 Private room 49
## 3645 Upper East Side 40.78401 -73.94863 Entire home/apt 675
## 3646 Hell's Kitchen 40.76293 -73.98981 Entire home/apt 150
## 3647 Upper East Side 40.78328 -73.95273 Entire home/apt 300
## 3648 Lower East Side 40.71735 -73.99095 Private room 79
## 3649 East Village 40.72422 -73.98211 Entire home/apt 225
## 3650 Bedford-Stuyvesant 40.68775 -73.95210 Private room 90
## 3651 Fort Greene 40.68683 -73.96981 Entire home/apt 285
## 3652 Upper West Side 40.78731 -73.97805 Entire home/apt 300
## 3653 Bushwick 40.69972 -73.92244 Private room 55
## 3654 Washington Heights 40.84058 -73.93885 Entire home/apt 80
## 3655 Washington Heights 40.84119 -73.93900 Private room 90
## 3656 Upper East Side 40.77590 -73.94921 Entire home/apt 325
## 3657 Washington Heights 40.84531 -73.93583 Private room 55
## 3658 NoHo 40.72780 -73.99205 Private room 208
## 3659 West Village 40.73776 -73.99996 Entire home/apt 156
## 3660 Bedford-Stuyvesant 40.69587 -73.94037 Entire home/apt 85
## 3661 Fort Greene 40.69093 -73.97936 Entire home/apt 200
## 3662 East Village 40.73087 -73.98713 Entire home/apt 180
## 3663 Williamsburg 40.71577 -73.95408 Entire home/apt 250
## 3664 Williamsburg 40.71292 -73.95876 Entire home/apt 325
## 3665 Midtown 40.75701 -73.96781 Entire home/apt 140
## 3666 Chinatown 40.71539 -73.99379 Entire home/apt 160
## 3667 Lower East Side 40.72053 -73.98901 Private room 130
## 3668 West Village 40.73747 -74.00014 Private room 110
## 3669 Kips Bay 40.74361 -73.97677 Entire home/apt 150
## 3670 Upper West Side 40.78616 -73.97348 Private room 149
## 3671 Chelsea 40.74798 -74.00314 Entire home/apt 900
## 3672 Chelsea 40.74047 -73.99508 Entire home/apt 215
## 3673 Upper West Side 40.79558 -73.96969 Entire home/apt 155
## 3674 Gowanus 40.68019 -73.98119 Private room 50
## 3675 Greenpoint 40.72764 -73.95557 Entire home/apt 225
## 3676 Harlem 40.82649 -73.95253 Private room 65
## 3677 Bedford-Stuyvesant 40.68631 -73.93993 Entire home/apt 112
## 3678 Lower East Side 40.71969 -73.99287 Entire home/apt 250
## 3679 Williamsburg 40.71527 -73.94038 Private room 65
## 3680 Greenpoint 40.72572 -73.94031 Entire home/apt 159
## 3681 Upper West Side 40.78605 -73.97354 Entire home/apt 99
## 3682 Upper West Side 40.78340 -73.97904 Entire home/apt 395
## 3683 Bushwick 40.70039 -73.92867 Private room 145
## 3684 West Village 40.73311 -74.00401 Entire home/apt 185
## 3685 Kips Bay 40.74262 -73.97945 Entire home/apt 1500
## 3686 Williamsburg 40.70046 -73.95133 Private room 45
## 3687 Upper West Side 40.78835 -73.97257 Entire home/apt 60
## 3688 Kips Bay 40.73879 -73.98226 Entire home/apt 749
## 3689 Washington Heights 40.83426 -73.94758 Private room 55
## 3690 Midtown 40.74364 -73.98303 Entire home/apt 1000
## 3691 West Village 40.73823 -74.00233 Entire home/apt 165
## 3692 Chelsea 40.74502 -74.00429 Entire home/apt 285
## 3693 Upper East Side 40.77266 -73.95257 Entire home/apt 220
## 3694 Kingsbridge 40.86467 -73.90125 Private room 75
## 3695 Bushwick 40.70147 -73.92005 Entire home/apt 120
## 3696 Upper West Side 40.79476 -73.97299 Entire home/apt 4000
## 3697 Gramercy 40.73588 -73.98252 Entire home/apt 650
## 3698 Midtown 40.76402 -73.97770 Entire home/apt 750
## 3699 Bushwick 40.70054 -73.92374 Entire home/apt 100
## 3700 Harlem 40.80922 -73.95306 Private room 95
## 3701 Financial District 40.70511 -74.00943 Shared room 1000
## 3702 Greenwich Village 40.72926 -73.99890 Private room 119
## 3703 Williamsburg 40.70949 -73.94221 Entire home/apt 1200
## 3704 East Village 40.73215 -73.98821 Entire home/apt 200
## 3705 Crown Heights 40.67167 -73.92434 Shared room 48
## 3706 East Village 40.72672 -73.98851 Shared room 30
## 3707 Astoria 40.76437 -73.91950 Entire home/apt 65
## 3708 Long Island City 40.74495 -73.95146 Private room 79
## 3709 Kips Bay 40.74163 -73.97533 Entire home/apt 105
## 3710 Kips Bay 40.74383 -73.97909 Entire home/apt 420
## 3711 Upper East Side 40.77331 -73.95067 Entire home/apt 250
## 3712 Bushwick 40.70422 -73.91405 Entire home/apt 95
## 3713 Sunset Park 40.66296 -73.98955 Entire home/apt 290
## 3714 Harlem 40.81085 -73.94768 Entire home/apt 100
## 3715 Chelsea 40.75000 -73.99637 Entire home/apt 395
## 3716 Upper East Side 40.77226 -73.95895 Entire home/apt 180
## 3717 Upper West Side 40.77775 -73.98485 Entire home/apt 380
## 3718 Bensonhurst 40.60918 -73.99799 Entire home/apt 40
## 3719 Bensonhurst 40.60931 -73.99847 Entire home/apt 45
## 3720 Lower East Side 40.72082 -73.99028 Entire home/apt 300
## 3721 Little Italy 40.71895 -73.99793 Entire home/apt 5250
## 3722 Upper West Side 40.80020 -73.96045 Entire home/apt 1500
## 3723 Upper West Side 40.79859 -73.96970 Private room 125
## 3724 West Village 40.73295 -74.00755 Entire home/apt 1500
## 3725 Upper East Side 40.78158 -73.94808 Entire home/apt 110
## 3726 Crown Heights 40.67112 -73.94536 Entire home/apt 105
## 3727 Park Slope 40.67232 -73.97879 Private room 45
## 3728 Greenwich Village 40.73411 -73.99723 Entire home/apt 1000
## 3729 Prospect-Lefferts Gardens 40.66155 -73.94579 Entire home/apt 80
## 3730 Upper West Side 40.78531 -73.96988 Entire home/apt 375
## 3731 Upper West Side 40.78574 -73.97640 Entire home/apt 1000
## 3732 Stuyvesant Town 40.73205 -73.98094 Entire home/apt 1500
## 3733 Kips Bay 40.74422 -73.97822 Entire home/apt 1550
## 3734 Upper West Side 40.79891 -73.96705 Private room 89
## 3735 East Village 40.72847 -73.99029 Private room 129
## 3736 East Village 40.73046 -73.99210 Private room 500
## 3737 Upper East Side 40.78290 -73.94721 Entire home/apt 500
## 3738 Tribeca 40.71960 -74.00571 Entire home/apt 250
## 3739 West Village 40.73341 -74.00791 Entire home/apt 250
## 3740 Upper East Side 40.78021 -73.95044 Entire home/apt 175
## 3741 Bedford-Stuyvesant 40.68835 -73.95568 Private room 40
## 3742 Upper East Side 40.77320 -73.95082 Entire home/apt 400
## 3743 Williamsburg 40.71801 -73.95869 Private room 85
## 3744 Clinton Hill 40.68255 -73.96124 Entire home/apt 219
## 3745 Upper East Side 40.76886 -73.95877 Entire home/apt 130
## 3746 Greenpoint 40.72599 -73.94172 Entire home/apt 149
## 3747 Kips Bay 40.73876 -73.98108 Entire home/apt 100
## 3748 Greenwich Village 40.72832 -73.99916 Entire home/apt 289
## 3749 Upper West Side 40.78409 -73.97886 Private room 67
## 3750 Chelsea 40.74440 -73.99940 Entire home/apt 221
## 3751 Chelsea 40.74344 -73.99826 Entire home/apt 750
## 3752 Williamsburg 40.71357 -73.96279 Private room 75
## 3753 Hell's Kitchen 40.75361 -73.99501 Entire home/apt 350
## 3754 Battery Park City 40.70517 -74.01753 Entire home/apt 425
## 3755 SoHo 40.72706 -74.00043 Entire home/apt 200
## 3756 Chelsea 40.74999 -73.99687 Entire home/apt 1000
## 3757 Williamsburg 40.70943 -73.95101 Private room 100
## 3758 Astoria 40.76427 -73.91562 Shared room 65
## 3759 Greenwich Village 40.73532 -73.99473 Private room 1250
## 3760 East Village 40.72959 -73.98112 Entire home/apt 112
## 3761 Murray Hill 40.74610 -73.97628 Entire home/apt 175
## 3762 Sea Gate 40.57645 -74.01065 Entire home/apt 1485
## 3763 Sunnyside 40.74622 -73.92296 Entire home/apt 120
## 3764 Upper West Side 40.79432 -73.97269 Entire home/apt 150
## 3765 Kips Bay 40.74438 -73.97965 Entire home/apt 369
## 3766 Harlem 40.80119 -73.95295 Private room 81
## 3767 Williamsburg 40.70868 -73.95343 Private room 89
## 3768 Greenpoint 40.72569 -73.94017 Entire home/apt 199
## 3769 Greenpoint 40.72537 -73.94076 Entire home/apt 149
## 3770 Sunset Park 40.65500 -74.00676 Private room 45
## 3771 Greenpoint 40.72720 -73.94176 Entire home/apt 149
## 3772 Sunnyside 40.73817 -73.92463 Entire home/apt 600
## 3773 Kips Bay 40.74438 -73.97744 Entire home/apt 400
## 3774 Jamaica 40.70950 -73.78828 Private room 65
## 3775 Clinton Hill 40.68766 -73.96439 Entire home/apt 6500
## 3776 Upper West Side 40.78345 -73.97858 Entire home/apt 150
## 3777 Gowanus 40.68107 -73.98245 Entire home/apt 265
## 3778 Greenwich Village 40.73580 -73.99677 Entire home/apt 199
## 3779 Hell's Kitchen 40.76726 -73.98285 Entire home/apt 395
## 3780 Upper West Side 40.77018 -73.98643 Entire home/apt 150
## 3781 Gowanus 40.67632 -73.99204 Entire home/apt 130
## 3782 Greenwich Village 40.73357 -73.99767 Private room 175
## 3783 Kips Bay 40.74215 -73.98018 Entire home/apt 2750
## 3784 Hell's Kitchen 40.76040 -73.99220 Private room 90
## 3785 Midtown 40.75225 -73.98725 Entire home/apt 1500
## 3786 Greenwich Village 40.73350 -73.99834 Entire home/apt 2500
## 3787 Upper West Side 40.78498 -73.97284 Entire home/apt 350
## 3788 Williamsburg 40.71947 -73.95520 Entire home/apt 250
## 3789 East Village 40.73323 -73.98859 Entire home/apt 3750
## 3790 Midtown 40.76292 -73.98128 Private room 250
## 3791 Williamsburg 40.71969 -73.95830 Entire home/apt 500
## 3792 Carroll Gardens 40.68123 -73.99558 Entire home/apt 180
## 3793 Upper West Side 40.78269 -73.98390 Entire home/apt 800
## 3794 Upper East Side 40.76904 -73.95435 Entire home/apt 1600
## 3795 Upper West Side 40.79822 -73.97059 Entire home/apt 85
## 3796 Bushwick 40.69982 -73.92490 Private room 49
## 3797 Upper West Side 40.77859 -73.97964 Entire home/apt 750
## 3798 Greenpoint 40.73052 -73.95568 Private room 91
## 3799 West Village 40.73521 -74.00089 Private room 100
## 3800 Kips Bay 40.74398 -73.97662 Entire home/apt 152
## 3801 Williamsburg 40.71725 -73.96249 Entire home/apt 250
## 3802 Murray Hill 40.74576 -73.97821 Private room 110
## 3803 Williamsburg 40.71558 -73.94881 Private room 73
## 3804 Astoria 40.76895 -73.92360 Shared room 300
## 3805 Upper East Side 40.77477 -73.95503 Entire home/apt 1000
## 3806 Upper East Side 40.77715 -73.94788 Entire home/apt 135
## 3807 Upper East Side 40.78103 -73.95069 Entire home/apt 75
## 3808 Midtown 40.76486 -73.97885 Private room 600
## 3809 Hell's Kitchen 40.75786 -73.99485 Entire home/apt 800
## 3810 Riverdale 40.88579 -73.91599 Entire home/apt 250
## 3811 Hell's Kitchen 40.76182 -73.99003 Entire home/apt 200
## 3812 Bedford-Stuyvesant 40.69329 -73.95607 Private room 75
## 3813 Financial District 40.70825 -74.00495 Entire home/apt 1000
## 3814 Boerum Hill 40.68497 -73.98900 Entire home/apt 900
## 3815 Tribeca 40.72035 -74.00493 Private room 70
## 3816 Rego Park 40.72988 -73.85773 Entire home/apt 88
## 3817 Hell's Kitchen 40.76774 -73.98503 Entire home/apt 425
## 3818 Theater District 40.76096 -73.98646 Entire home/apt 975
## 3819 Park Slope 40.67262 -73.97351 Entire home/apt 305
## 3820 Lower East Side 40.72153 -73.99331 Entire home/apt 220
## 3821 Hell's Kitchen 40.76532 -73.99061 Entire home/apt 150
## 3822 Bushwick 40.70544 -73.92192 Private room 49
## 3823 Bay Ridge 40.62455 -74.02756 Entire home/apt 86
## 3824 Flatbush 40.63449 -73.95742 Entire home/apt 140
## 3825 Kew Gardens Hills 40.72664 -73.82795 Entire home/apt 86
## 3826 Upper West Side 40.78263 -73.97415 Entire home/apt 650
## 3827 East Village 40.73259 -73.98681 Entire home/apt 350
## 3828 Upper East Side 40.77469 -73.96327 Entire home/apt 225
## 3829 Chinatown 40.71627 -73.99404 Private room 75
## 3830 Chelsea 40.74935 -73.99723 Entire home/apt 150
## 3831 Harlem 40.82016 -73.94559 Private room 199
## 3832 Williamsburg 40.70972 -73.93864 Entire home/apt 95
## 3833 Clinton Hill 40.68583 -73.96558 Entire home/apt 200
## 3834 Upper West Side 40.78030 -73.98347 Entire home/apt 200
## 3835 Cobble Hill 40.68554 -73.99499 Entire home/apt 175
## 3836 Greenpoint 40.72727 -73.93986 Entire home/apt 129
## 3837 Williamsburg 40.70771 -73.94344 Entire home/apt 200
## 3838 Harlem 40.80269 -73.94637 Private room 60
## 3839 Financial District 40.70583 -74.00612 Private room 130
## 3840 East Harlem 40.79160 -73.94686 Private room 115
## 3841 West Village 40.73374 -74.00121 Private room 135
## 3842 Upper East Side 40.76225 -73.96165 Private room 300
## 3843 Ridgewood 40.70206 -73.90936 Private room 59
## 3844 Clinton Hill 40.68568 -73.96244 Entire home/apt 196
## 3845 Bushwick 40.69856 -73.93162 Private room 128
## 3846 Upper West Side 40.77794 -73.97699 Entire home/apt 400
## 3847 Theater District 40.76054 -73.98508 Entire home/apt 200
## 3848 Lower East Side 40.72171 -73.99053 Entire home/apt 180
## 3849 Williamsburg 40.70874 -73.93818 Private room 60
## 3850 Williamsburg 40.71216 -73.94612 Private room 70
## 3851 Washington Heights 40.84966 -73.93945 Private room 40
## 3852 Prospect-Lefferts Gardens 40.65747 -73.95798 Entire home/apt 250
## 3853 Crown Heights 40.67026 -73.92587 Entire home/apt 80
## 3854 Harlem 40.81128 -73.94117 Entire home/apt 85
## 3855 Chinatown 40.71590 -73.99059 Private room 70
## 3856 Williamsburg 40.70941 -73.95220 Private room 55
## 3857 Bedford-Stuyvesant 40.69010 -73.94524 Private room 60
## 3858 Greenpoint 40.73421 -73.95698 Private room 100
## 3859 Williamsburg 40.71165 -73.96716 Private room 73
## 3860 Crown Heights 40.66732 -73.95794 Entire home/apt 145
## 3861 Astoria 40.76315 -73.92617 Private room 65
## 3862 Crown Heights 40.67286 -73.92566 Entire home/apt 162
## 3863 Rego Park 40.73243 -73.86773 Entire home/apt 275
## 3864 Williamsburg 40.71338 -73.95738 Private room 56
## 3865 Greenwich Village 40.72946 -74.00189 Entire home/apt 200
## 3866 Hell's Kitchen 40.76349 -73.98985 Entire home/apt 250
## 3867 Bedford-Stuyvesant 40.68172 -73.93236 Entire home/apt 500
## 3868 Crown Heights 40.67935 -73.96330 Entire home/apt 120
## 3869 Flatbush 40.65173 -73.96035 Private room 55
## 3870 South Slope 40.66468 -73.98777 Private room 59
## 3871 Williamsburg 40.71100 -73.95403 Entire home/apt 99
## 3872 Upper East Side 40.78092 -73.95162 Entire home/apt 155
## 3873 Kips Bay 40.73997 -73.98137 Entire home/apt 200
## 3874 Civic Center 40.71654 -74.00138 Private room 60
## 3875 Ozone Park 40.67657 -73.84083 Entire home/apt 85
## 3876 SoHo 40.72541 -74.01015 Private room 150
## 3877 Ridgewood 40.70375 -73.90940 Private room 45
## 3878 Hell's Kitchen 40.76046 -73.99131 Entire home/apt 200
## 3879 Crown Heights 40.67380 -73.93985 Entire home/apt 120
## 3880 Hell's Kitchen 40.76394 -73.99448 Entire home/apt 100
## 3881 East Harlem 40.80021 -73.94142 Entire home/apt 195
## 3882 Crown Heights 40.67343 -73.96291 Private room 38
## 3883 Crown Heights 40.67690 -73.95130 Private room 75
## 3884 Bensonhurst 40.61518 -73.98874 Entire home/apt 76
## 3885 Bedford-Stuyvesant 40.69392 -73.95446 Entire home/apt 175
## 3886 Greenpoint 40.73334 -73.95478 Entire home/apt 500
## 3887 Bedford-Stuyvesant 40.68843 -73.93678 Entire home/apt 179
## 3888 Flatbush 40.64846 -73.96186 Private room 200
## 3889 Lower East Side 40.71762 -73.98334 Entire home/apt 400
## 3890 Kingsbridge 40.88437 -73.89746 Shared room 32
## 3891 Williamsburg 40.71060 -73.95325 Private room 50
## 3892 Lower East Side 40.71968 -73.98726 Private room 75
## 3893 Harlem 40.82039 -73.95514 Private room 40
## 3894 Bushwick 40.70054 -73.92954 Private room 62
## 3895 Clinton Hill 40.69045 -73.96762 Private room 239
## 3896 Williamsburg 40.71919 -73.94180 Entire home/apt 179
## 3897 Williamsburg 40.71952 -73.96281 Entire home/apt 250
## 3898 West Village 40.73618 -74.00256 Entire home/apt 400
## 3899 Harlem 40.81904 -73.94325 Private room 98
## 3900 Williamsburg 40.71023 -73.94657 Private room 89
## 3901 Upper East Side 40.78331 -73.94489 Entire home/apt 185
## 3902 East Village 40.72916 -73.98022 Private room 125
## 3903 Carroll Gardens 40.68008 -73.99392 Entire home/apt 180
## 3904 Flatbush 40.64307 -73.95455 Shared room 30
## 3905 Crown Heights 40.67019 -73.95541 Private room 60
## 3906 Lower East Side 40.71962 -73.99178 Private room 115
## 3907 Kensington 40.64742 -73.97559 Entire home/apt 200
## 3908 Williamsburg 40.71860 -73.94510 Private room 70
## 3909 Upper West Side 40.78327 -73.97343 Entire home/apt 179
## 3910 Bushwick 40.69980 -73.92913 Entire home/apt 109
## 3911 Hell's Kitchen 40.76589 -73.98536 Private room 124
## 3912 Chelsea 40.74530 -74.00704 Entire home/apt 159
## 3913 Crown Heights 40.67422 -73.95569 Entire home/apt 85
## 3914 Greenpoint 40.73169 -73.95540 Private room 109
## 3915 Tribeca 40.72034 -74.01122 Entire home/apt 110
## 3916 Tribeca 40.71590 -74.00834 Private room 500
## 3917 Harlem 40.82301 -73.94907 Private room 65
## 3918 Washington Heights 40.83358 -73.94462 Private room 112
## 3919 Bedford-Stuyvesant 40.68642 -73.93440 Shared room 25
## 3920 Upper West Side 40.78090 -73.98215 Entire home/apt 220
## 3921 Bushwick 40.69110 -73.92125 Entire home/apt 79
## 3922 Greenpoint 40.72545 -73.95405 Entire home/apt 200
## 3923 Crown Heights 40.66586 -73.95128 Private room 55
## 3924 Soundview 40.82528 -73.86004 Private room 50
## 3925 Greenpoint 40.72669 -73.94190 Entire home/apt 129
## 3926 Upper West Side 40.78510 -73.97397 Entire home/apt 195
## 3927 Flatbush 40.64815 -73.96486 Entire home/apt 79
## 3928 Two Bridges 40.71149 -73.99721 Private room 65
## 3929 Hell's Kitchen 40.76453 -73.99515 Entire home/apt 123
## 3930 Williamsburg 40.71124 -73.94990 Private room 70
## 3931 Long Island City 40.74955 -73.95081 Private room 100
## 3932 South Slope 40.66443 -73.98792 Private room 69
## 3933 Tribeca 40.72023 -74.00715 Entire home/apt 450
## 3934 SoHo 40.72512 -74.00024 Entire home/apt 650
## 3935 East Harlem 40.79926 -73.94499 Entire home/apt 125
## 3936 Greenpoint 40.73418 -73.95683 Private room 75
## 3937 Greenpoint 40.73348 -73.95689 Entire home/apt 154
## 3938 Morningside Heights 40.80490 -73.96315 Entire home/apt 60
## 3939 Greenwich Village 40.72908 -73.99650 Entire home/apt 279
## 3940 Harlem 40.82349 -73.94193 Private room 80
## 3941 East Village 40.72598 -73.97778 Private room 84
## 3942 Gowanus 40.67906 -73.99093 Entire home/apt 180
## 3943 Crown Heights 40.67652 -73.95713 Entire home/apt 100
## 3944 Bedford-Stuyvesant 40.69011 -73.96026 Private room 86
## 3945 Park Slope 40.67348 -73.97790 Entire home/apt 189
## 3946 Financial District 40.70781 -74.00701 Entire home/apt 130
## 3947 Hell's Kitchen 40.76852 -73.98735 Entire home/apt 150
## 3948 Greenpoint 40.72708 -73.94171 Entire home/apt 149
## 3949 Astoria 40.75705 -73.91771 Entire home/apt 83
## 3950 Upper East Side 40.78474 -73.94974 Entire home/apt 180
## 3951 Bedford-Stuyvesant 40.68948 -73.93528 Private room 18
## 3952 Park Slope 40.68091 -73.97660 Entire home/apt 100
## 3953 Greenpoint 40.72559 -73.95033 Private room 145
## 3954 Lower East Side 40.72007 -73.98946 Entire home/apt 133
## 3955 Astoria 40.75799 -73.92006 Private room 75
## 3956 Williamsburg 40.70669 -73.93578 Private room 100
## 3957 East Village 40.73237 -73.98918 Shared room 99
## 3958 Fort Greene 40.68825 -73.98038 Entire home/apt 132
## 3959 Harlem 40.79841 -73.95257 Private room 72
## 3960 Astoria 40.76122 -73.91163 Entire home/apt 125
## 3961 Williamsburg 40.71512 -73.94978 Entire home/apt 102
## 3962 Greenpoint 40.72574 -73.94146 Entire home/apt 129
## 3963 Columbia St 40.68727 -74.00352 Entire home/apt 107
## 3964 Nolita 40.72297 -73.99539 Entire home/apt 250
## 3965 Bay Terrace 40.78645 -73.77958 Private room 90
## 3966 Upper West Side 40.78792 -73.97758 Entire home/apt 200
## 3967 Williamsburg 40.71841 -73.95992 Private room 90
## 3968 Upper West Side 40.79838 -73.96388 Private room 200
## 3969 Boerum Hill 40.68955 -73.98885 Entire home/apt 160
## 3970 Hell's Kitchen 40.76269 -73.99070 Private room 124
## 3971 Bedford-Stuyvesant 40.68950 -73.95279 Private room 95
## 3972 Greenpoint 40.72591 -73.94220 Entire home/apt 129
## 3973 Williamsburg 40.71492 -73.94124 Private room 110
## 3974 Harlem 40.80121 -73.95002 Private room 92
## 3975 Harlem 40.80705 -73.94452 Entire home/apt 175
## 3976 Ozone Park 40.67948 -73.85335 Private room 30
## 3977 Red Hook 40.68075 -74.00961 Entire home/apt 134
## 3978 SoHo 40.72337 -74.00175 Entire home/apt 400
## 3979 Kips Bay 40.74400 -73.98054 Entire home/apt 152
## 3980 Jackson Heights 40.75484 -73.87640 Shared room 75
## 3981 Financial District 40.70933 -74.00381 Private room 169
## 3982 Williamsburg 40.71116 -73.96078 Private room 95
## 3983 Williamsburg 40.71072 -73.96143 Private room 90
## 3984 Harlem 40.81510 -73.95147 Private room 60
## 3985 Lower East Side 40.72005 -73.98609 Entire home/apt 180
## 3986 Upper East Side 40.77194 -73.94773 Private room 84
## 3987 Bushwick 40.70451 -73.92588 Entire home/apt 98
## 3988 Flatlands 40.62338 -73.94078 Entire home/apt 90
## 3989 Greenpoint 40.72771 -73.95382 Entire home/apt 134
## 3990 Chelsea 40.75066 -73.99720 Private room 119
## 3991 Upper East Side 40.77574 -73.95240 Entire home/apt 141
## 3992 Greenwich Village 40.73405 -73.99725 Entire home/apt 199
## 3993 Bushwick 40.69587 -73.90960 Entire home/apt 108
## 3994 Hell's Kitchen 40.76730 -73.98809 Entire home/apt 150
## 3995 Williamsburg 40.71009 -73.95741 Entire home/apt 175
## 3996 Boerum Hill 40.68844 -73.98513 Private room 90
## 3997 Prospect-Lefferts Gardens 40.65740 -73.96174 Private room 45
## 3998 Borough Park 40.63256 -73.99453 Private room 49
## 3999 Jamaica 40.67349 -73.76951 Entire home/apt 63
## 4000 Harlem 40.81456 -73.94583 Private room 100
## 4001 Williamsburg 40.71683 -73.95623 Private room 110
## 4002 Upper East Side 40.77979 -73.96153 Entire home/apt 600
## 4003 Long Island City 40.74263 -73.95594 Entire home/apt 395
## 4004 Astoria 40.76441 -73.92878 Private room 70
## 4005 Midtown 40.75879 -73.96413 Entire home/apt 399
## 4006 Upper West Side 40.79732 -73.97259 Entire home/apt 145
## 4007 Astoria 40.76374 -73.90965 Private room 59
## 4008 Astoria 40.75879 -73.91185 Private room 50
## 4009 Nolita 40.72276 -73.99499 Entire home/apt 145
## 4010 East Village 40.73101 -73.98936 Entire home/apt 245
## 4011 Hell's Kitchen 40.76152 -73.98793 Private room 149
## 4012 Bushwick 40.70365 -73.92711 Private room 50
## 4013 Ditmars Steinway 40.77804 -73.91623 Entire home/apt 150
## 4014 Lower East Side 40.71934 -73.98196 Private room 110
## 4015 Crown Heights 40.67571 -73.95161 Entire home/apt 60
## 4016 South Slope 40.66517 -73.98637 Entire home/apt 165
## 4017 Borough Park 40.64426 -73.99555 Private room 53
## 4018 East Village 40.72314 -73.98491 Entire home/apt 160
## 4019 Borough Park 40.64601 -73.99765 Private room 38
## 4020 Borough Park 40.64447 -73.99574 Private room 49
## 4021 Borough Park 40.64492 -73.99612 Private room 47
## 4022 Bushwick 40.69728 -73.93066 Entire home/apt 120
## 4023 Financial District 40.70558 -74.01533 Entire home/apt 175
## 4024 Theater District 40.76084 -73.98367 Entire home/apt 129
## 4025 Crown Heights 40.67901 -73.96237 Private room 105
## 4026 Carroll Gardens 40.68287 -73.99082 Entire home/apt 275
## 4027 Harlem 40.81927 -73.94631 Private room 99
## 4028 Kips Bay 40.73905 -73.98161 Entire home/apt 210
## 4029 Upper West Side 40.77929 -73.97787 Private room 65
## 4030 Sunset Park 40.63747 -74.01153 Private room 52
## 4031 Astoria 40.76163 -73.91783 Private room 100
## 4032 Battery Park City 40.70657 -74.01676 Private room 91
## 4033 Harlem 40.81472 -73.94291 Entire home/apt 124
## 4034 Harlem 40.82277 -73.94981 Private room 200
## 4035 Prospect Heights 40.67454 -73.96803 Entire home/apt 550
## 4036 Norwood 40.87605 -73.88047 Private room 70
## 4037 Nolita 40.72224 -73.99491 Entire home/apt 150
## 4038 Bedford-Stuyvesant 40.68709 -73.95558 Entire home/apt 176
## 4039 Morningside Heights 40.80750 -73.95844 Entire home/apt 99
## 4040 Gramercy 40.73237 -73.98288 Entire home/apt 130
## 4041 Hell's Kitchen 40.76518 -73.98746 Entire home/apt 109
## 4042 East Village 40.72939 -73.98319 Private room 75
## 4043 Hell's Kitchen 40.76791 -73.98735 Private room 95
## 4044 Crown Heights 40.68027 -73.96379 Private room 50
## 4045 Williamsburg 40.71685 -73.94246 Private room 100
## 4046 Harlem 40.82350 -73.95144 Private room 68
## 4047 Harlem 40.80290 -73.95694 Private room 104
## 4048 Flatbush 40.64576 -73.95871 Private room 30
## 4049 Clinton Hill 40.68420 -73.96360 Entire home/apt 595
## 4050 Williamsburg 40.70819 -73.94813 Private room 65
## 4051 East Harlem 40.79731 -73.94231 Shared room 55
## 4052 Boerum Hill 40.68611 -73.99031 Entire home/apt 250
## 4053 Williamsburg 40.71075 -73.95676 Entire home/apt 85
## 4054 East Village 40.73112 -73.98558 Private room 90
## 4055 Washington Heights 40.84309 -73.94127 Private room 90
## 4056 Williamsburg 40.72002 -73.95780 Entire home/apt 90
## 4057 Upper West Side 40.78283 -73.97206 Entire home/apt 199
## 4058 Chelsea 40.74311 -74.00718 Entire home/apt 275
## 4059 Bay Ridge 40.63113 -74.02767 Entire home/apt 125
## 4060 Harlem 40.81270 -73.94367 Private room 150
## 4061 Rockaway Beach 40.58451 -73.81500 Entire home/apt 140
## 4062 East Harlem 40.79249 -73.94592 Entire home/apt 120
## 4063 Williamsburg 40.71997 -73.95945 Private room 60
## 4064 Bushwick 40.69304 -73.92079 Private room 36
## 4065 Harlem 40.80546 -73.95221 Private room 85
## 4066 Crown Heights 40.67656 -73.95825 Private room 85
## 4067 Flatbush 40.64772 -73.96273 Private room 45
## 4068 Bedford-Stuyvesant 40.68830 -73.95644 Entire home/apt 92
## 4069 Bedford-Stuyvesant 40.69135 -73.94694 Private room 30
## 4070 Greenpoint 40.72707 -73.95681 Private room 75
## 4071 Midtown 40.75529 -73.96897 Entire home/apt 99
## 4072 Williamsburg 40.70942 -73.94693 Entire home/apt 100
## 4073 Boerum Hill 40.68647 -73.98595 Entire home/apt 115
## 4074 Bushwick 40.69911 -73.93713 Entire home/apt 175
## 4075 Crown Heights 40.67648 -73.95098 Entire home/apt 112
## 4076 Harlem 40.80007 -73.95620 Entire home/apt 450
## 4077 Upper East Side 40.77231 -73.95588 Entire home/apt 103
## 4078 Upper East Side 40.77263 -73.95567 Entire home/apt 117
## 4079 Morningside Heights 40.81503 -73.96029 Entire home/apt 150
## 4080 Concord 40.60375 -74.08065 Private room 129
## 4081 Upper West Side 40.79071 -73.97408 Entire home/apt 145
## 4082 Bushwick 40.70318 -73.91462 Entire home/apt 115
## 4083 Upper West Side 40.79733 -73.96104 Entire home/apt 90
## 4084 Hell's Kitchen 40.76608 -73.99203 Entire home/apt 90
## 4085 Williamsburg 40.71650 -73.94842 Entire home/apt 100
## 4086 Concourse 40.83012 -73.92714 Private room 41
## 4087 Upper East Side 40.77265 -73.95740 Entire home/apt 145
## 4088 Upper East Side 40.77276 -73.95675 Entire home/apt 139
## 4089 Upper East Side 40.77107 -73.95682 Entire home/apt 117
## 4090 Bushwick 40.70065 -73.93862 Private room 50
## 4091 Upper West Side 40.79827 -73.96881 Private room 80
## 4092 Prospect Heights 40.67318 -73.96738 Entire home/apt 100
## 4093 Fort Greene 40.68661 -73.97054 Entire home/apt 225
## 4094 Flatbush 40.64851 -73.96121 Private room 70
## 4095 Co-op City 40.86646 -73.82154 Private room 80
## 4096 Harlem 40.82424 -73.94664 Private room 70
## 4097 Borough Park 40.63081 -73.99638 Private room 31
## 4098 Bushwick 40.69616 -73.93201 Private room 40
## 4099 Harlem 40.80029 -73.95362 Entire home/apt 290
## 4100 Fort Greene 40.68914 -73.97760 Entire home/apt 235
## 4101 Williamsburg 40.70719 -73.96407 Entire home/apt 200
## 4102 Bedford-Stuyvesant 40.69471 -73.94184 Entire home/apt 180
## 4103 South Slope 40.66141 -73.98097 Entire home/apt 110
## 4104 East Village 40.72839 -73.98613 Private room 120
## 4105 Upper East Side 40.77278 -73.95753 Entire home/apt 142
## 4106 Lower East Side 40.72073 -73.98954 Private room 105
## 4107 Upper East Side 40.78061 -73.94980 Entire home/apt 100
## 4108 Hell's Kitchen 40.76503 -73.98827 Private room 102
## 4109 Williamsburg 40.71498 -73.96104 Entire home/apt 152
## 4110 Crown Heights 40.67228 -73.93352 Entire home/apt 150
## 4111 Ditmars Steinway 40.77594 -73.91786 Entire home/apt 95
## 4112 East Flatbush 40.64942 -73.92482 Private room 67
## 4113 Crown Heights 40.67265 -73.94850 Private room 65
## 4114 Williamsburg 40.71112 -73.96268 Private room 79
## 4115 Flatbush 40.65403 -73.95904 Private room 55
## 4116 Morningside Heights 40.80980 -73.95722 Entire home/apt 83
## 4117 Gramercy 40.73409 -73.98559 Entire home/apt 200
## 4118 Carroll Gardens 40.67909 -73.99600 Private room 150
## 4119 East Village 40.72816 -73.98035 Entire home/apt 160
## 4120 Maspeth 40.71827 -73.90647 Entire home/apt 80
## 4121 Upper West Side 40.79592 -73.97024 Entire home/apt 159
## 4122 Upper East Side 40.77645 -73.94865 Entire home/apt 90
## 4123 Crown Heights 40.67799 -73.94709 Shared room 45
## 4124 Two Bridges 40.71226 -73.99416 Private room 100
## 4125 Greenpoint 40.73282 -73.95780 Entire home/apt 125
## 4126 Harlem 40.81060 -73.94647 Shared room 100
## 4127 East Village 40.72100 -73.98169 Private room 80
## 4128 Upper East Side 40.76791 -73.96509 Entire home/apt 2300
## 4129 Bedford-Stuyvesant 40.68852 -73.93588 Entire home/apt 90
## 4130 East Harlem 40.79130 -73.94265 Entire home/apt 140
## 4131 Greenpoint 40.72561 -73.94745 Private room 52
## 4132 Chinatown 40.71675 -73.99092 Entire home/apt 200
## 4133 Williamsburg 40.70844 -73.95191 Entire home/apt 94
## 4134 Clinton Hill 40.69172 -73.96934 Shared room 40
## 4135 Rego Park 40.72786 -73.86946 Private room 55
## 4136 Williamsburg 40.70585 -73.92698 Private room 69
## 4137 Gramercy 40.73657 -73.98019 Entire home/apt 200
## 4138 Bushwick 40.69987 -73.92552 Entire home/apt 100
## 4139 Bay Ridge 40.63465 -74.02366 Entire home/apt 53
## 4140 Upper West Side 40.79512 -73.97092 Private room 425
## 4141 Claremont Village 40.84192 -73.91108 Private room 40
## 4142 Williamsburg 40.71209 -73.95196 Private room 40
## 4143 Williamsburg 40.71639 -73.95271 Entire home/apt 150
## 4144 Washington Heights 40.83677 -73.94314 Private room 65
## 4145 Upper West Side 40.77848 -73.98334 Private room 109
## 4146 Jackson Heights 40.75107 -73.87654 Private room 60
## 4147 Williamsburg 40.71262 -73.95292 Entire home/apt 180
## 4148 Long Island City 40.74627 -73.94666 Private room 95
## 4149 Midtown 40.76419 -73.98018 Private room 140
## 4150 Long Island City 40.74749 -73.92089 Entire home/apt 155
## 4151 Harlem 40.80494 -73.95638 Entire home/apt 105
## 4152 Bedford-Stuyvesant 40.68210 -73.91632 Private room 45
## 4153 Williamsburg 40.70934 -73.96270 Entire home/apt 330
## 4154 Crown Heights 40.66733 -73.95667 Private room 50
## 4155 Midtown 40.75413 -73.96792 Private room 100
## 4156 Clinton Hill 40.68274 -73.96487 Private room 49
## 4157 Bedford-Stuyvesant 40.68571 -73.95033 Entire home/apt 65
## 4158 Harlem 40.82305 -73.93739 Private room 70
## 4159 Gramercy 40.73701 -73.98242 Entire home/apt 180
## 4160 Long Island City 40.74606 -73.95765 Entire home/apt 130
## 4161 Fort Greene 40.69265 -73.97009 Entire home/apt 225
## 4162 Hell's Kitchen 40.76711 -73.98371 Entire home/apt 225
## 4163 Washington Heights 40.84203 -73.93985 Private room 85
## 4164 Kips Bay 40.74035 -73.98114 Entire home/apt 125
## 4165 Hell's Kitchen 40.76479 -73.98455 Entire home/apt 99
## 4166 Long Island City 40.74332 -73.95426 Private room 95
## 4167 Whitestone 40.79721 -73.81600 Entire home/apt 400
## 4168 Harlem 40.80840 -73.95123 Private room 99
## 4169 Harlem 40.80697 -73.95203 Private room 85
## 4170 Harlem 40.82907 -73.94939 Entire home/apt 90
## 4171 Bushwick 40.69574 -73.93111 Entire home/apt 85
## 4172 Washington Heights 40.83482 -73.94617 Entire home/apt 130
## 4173 Nolita 40.72173 -73.99383 Private room 95
## 4174 Greenpoint 40.72595 -73.94143 Entire home/apt 149
## 4175 Greenpoint 40.72812 -73.94704 Entire home/apt 225
## 4176 Williamsburg 40.70666 -73.95060 Entire home/apt 135
## 4177 Hell's Kitchen 40.76780 -73.98680 Entire home/apt 140
## 4178 Upper East Side 40.77518 -73.95618 Entire home/apt 200
## 4179 Greenpoint 40.72713 -73.94141 Entire home/apt 159
## 4180 Red Hook 40.67795 -74.00747 Entire home/apt 200
## 4181 Crown Heights 40.67203 -73.93494 Entire home/apt 155
## 4182 South Slope 40.66481 -73.97807 Entire home/apt 125
## 4183 Port Morris 40.80091 -73.91449 Private room 71
## 4184 Bushwick 40.69895 -73.93249 Private room 75
## 4185 Upper East Side 40.77107 -73.95322 Entire home/apt 275
## 4186 Williamsburg 40.70024 -73.95047 Private room 70
## 4187 Theater District 40.76351 -73.98431 Entire home/apt 250
## 4188 Williamsburg 40.70404 -73.93496 Entire home/apt 200
## 4189 Prospect-Lefferts Gardens 40.65820 -73.95688 Entire home/apt 90
## 4190 Bedford-Stuyvesant 40.69026 -73.92701 Private room 50
## 4191 Clinton Hill 40.69418 -73.96770 Entire home/apt 124
## 4192 Chelsea 40.73942 -73.99629 Entire home/apt 110
## 4193 Astoria 40.75580 -73.92377 Private room 50
## 4194 East Harlem 40.79121 -73.94793 Private room 75
## 4195 East Village 40.72210 -73.98259 Private room 90
## 4196 Bedford-Stuyvesant 40.68058 -73.93856 Entire home/apt 130
## 4197 Upper West Side 40.79496 -73.97349 Entire home/apt 140
## 4198 Kensington 40.64468 -73.97208 Entire home/apt 200
## 4199 Carroll Gardens 40.68322 -73.99248 Entire home/apt 350
## 4200 Harlem 40.80966 -73.94711 Entire home/apt 100
## 4201 Long Island City 40.76250 -73.93919 Entire home/apt 225
## 4202 Bedford-Stuyvesant 40.68286 -73.93055 Private room 65
## 4203 Bushwick 40.69686 -73.93042 Entire home/apt 145
## 4204 Hell's Kitchen 40.75927 -73.99223 Entire home/apt 189
## 4205 Greenwich Village 40.73085 -73.99421 Entire home/apt 265
## 4206 Midtown 40.76544 -73.98186 Entire home/apt 409
## 4207 Fort Greene 40.69226 -73.98056 Private room 95
## 4208 Harlem 40.81677 -73.94371 Private room 175
## 4209 Ditmars Steinway 40.77138 -73.90895 Private room 55
## 4210 Hell's Kitchen 40.76450 -73.99314 Entire home/apt 200
## 4211 East Village 40.73243 -73.98906 Entire home/apt 200
## 4212 Bushwick 40.69820 -73.92852 Private room 69
## 4213 Williamsburg 40.71813 -73.95869 Entire home/apt 135
## 4214 Carroll Gardens 40.68009 -74.00009 Entire home/apt 325
## 4215 Lower East Side 40.71542 -73.98511 Private room 95
## 4216 Upper East Side 40.77249 -73.95756 Entire home/apt 117
## 4217 Washington Heights 40.84915 -73.93848 Private room 59
## 4218 Chelsea 40.74389 -73.99835 Shared room 85
## 4219 Flushing 40.75606 -73.81954 Private room 55
## 4220 Williamsburg 40.71614 -73.96134 Private room 80
## 4221 Park Slope 40.66587 -73.97881 Entire home/apt 115
## 4222 Midtown 40.75967 -73.96595 Private room 78
## 4223 East Village 40.72278 -73.98497 Private room 150
## 4224 Park Slope 40.67736 -73.98084 Entire home/apt 195
## 4225 Clinton Hill 40.68998 -73.96072 Entire home/apt 142
## 4226 Upper West Side 40.78694 -73.97384 Entire home/apt 150
## 4227 Fordham 40.86705 -73.88545 Shared room 55
## 4228 Windsor Terrace 40.66044 -73.97977 Entire home/apt 97
## 4229 Flatbush 40.64602 -73.95964 Entire home/apt 70
## 4230 Upper West Side 40.77024 -73.98746 Shared room 70
## 4231 Upper West Side 40.77852 -73.98577 Private room 155
## 4232 Bedford-Stuyvesant 40.69707 -73.93914 Entire home/apt 68
## 4233 Harlem 40.83252 -73.94916 Private room 68
## 4234 Carroll Gardens 40.68235 -74.00047 Entire home/apt 150
## 4235 Carroll Gardens 40.68238 -73.99481 Entire home/apt 150
## 4236 Upper East Side 40.77349 -73.95137 Entire home/apt 150
## 4237 East Village 40.72105 -73.98140 Private room 100
## 4238 Harlem 40.81781 -73.94577 Entire home/apt 110
## 4239 Fort Greene 40.69056 -73.98038 Entire home/apt 150
## 4240 Boerum Hill 40.68671 -73.98952 Entire home/apt 160
## 4241 Chelsea 40.74309 -73.99436 Entire home/apt 218
## 4242 Nolita 40.72106 -73.99417 Entire home/apt 430
## 4243 Williamsburg 40.71173 -73.94955 Private room 79
## 4244 West Village 40.73571 -74.00375 Entire home/apt 120
## 4245 Brooklyn Heights 40.69297 -73.99758 Entire home/apt 200
## 4246 Chinatown 40.71418 -73.99295 Private room 120
## 4247 East Village 40.72266 -73.98337 Private room 250
## 4248 Upper West Side 40.79194 -73.96913 Entire home/apt 200
## 4249 Clifton 40.62578 -74.07356 Entire home/apt 75
## 4250 Cobble Hill 40.68811 -73.99421 Entire home/apt 175
## 4251 Bedford-Stuyvesant 40.68211 -73.93876 Entire home/apt 76
## 4252 Upper West Side 40.78414 -73.97830 Entire home/apt 75
## 4253 Crown Heights 40.67301 -73.95312 Entire home/apt 400
## 4254 Flushing 40.75611 -73.81957 Private room 75
## 4255 Hell's Kitchen 40.76420 -73.99133 Entire home/apt 189
## 4256 Woodside 40.74235 -73.90375 Private room 55
## 4257 Williamsburg 40.71389 -73.96570 Private room 80
## 4258 Bushwick 40.70012 -73.93062 Private room 69
## 4259 Morningside Heights 40.80504 -73.96454 Private room 100
## 4260 Sunnyside 40.74405 -73.91502 Entire home/apt 100
## 4261 West Village 40.73390 -74.00177 Entire home/apt 300
## 4262 Washington Heights 40.83333 -73.94182 Private room 53
## 4263 Upper West Side 40.78882 -73.97945 Entire home/apt 179
## 4264 Flatbush 40.64350 -73.96065 Entire home/apt 100
## 4265 Astoria 40.75760 -73.92698 Entire home/apt 130
## 4266 Port Morris 40.80554 -73.92606 Entire home/apt 120
## 4267 Greenpoint 40.72020 -73.95191 Private room 150
## 4268 Upper East Side 40.77125 -73.95735 Entire home/apt 105
## 4269 Bedford-Stuyvesant 40.68576 -73.92211 Entire home/apt 150
## 4270 Upper West Side 40.77589 -73.98188 Entire home/apt 200
## 4271 Washington Heights 40.83418 -73.94274 Private room 39
## 4272 Harlem 40.80680 -73.94258 Entire home/apt 67
## 4273 Midtown 40.76147 -73.97610 Entire home/apt 200
## 4274 Greenpoint 40.72540 -73.94136 Entire home/apt 129
## 4275 Bedford-Stuyvesant 40.68191 -73.95136 Private room 55
## 4276 Astoria 40.76123 -73.92177 Private room 65
## 4277 Upper East Side 40.77065 -73.95495 Entire home/apt 100
## 4278 Harlem 40.80925 -73.94226 Private room 55
## 4279 Midtown 40.75546 -73.96762 Entire home/apt 240
## 4280 Greenwich Village 40.73083 -74.00060 Entire home/apt 150
## 4281 Upper West Side 40.77397 -73.98242 Entire home/apt 299
## 4282 Ditmars Steinway 40.77297 -73.91604 Entire home/apt 160
## 4283 East Harlem 40.78833 -73.94888 Private room 299
## 4284 Prospect Heights 40.67446 -73.96324 Entire home/apt 99
## 4285 Greenpoint 40.72733 -73.94040 Entire home/apt 199
## 4286 Greenwich Village 40.72842 -73.99903 Private room 100
## 4287 Washington Heights 40.83687 -73.94324 Private room 45
## 4288 University Heights 40.85711 -73.91594 Private room 44
## 4289 Carroll Gardens 40.68108 -73.99381 Entire home/apt 150
## 4290 Bushwick 40.69727 -73.92373 Private room 100
## 4291 Lower East Side 40.71484 -73.98977 Entire home/apt 185
## 4292 Fort Greene 40.68879 -73.97589 Entire home/apt 150
## 4293 East Harlem 40.78587 -73.94764 Entire home/apt 650
## 4294 Williamsburg 40.71055 -73.95553 Private room 100
## 4295 Harlem 40.80005 -73.95212 Private room 111
## 4296 Hell's Kitchen 40.76634 -73.98719 Entire home/apt 99
## 4297 Williamsburg 40.70665 -73.95067 Private room 75
## 4298 Upper East Side 40.77233 -73.95627 Entire home/apt 103
## 4299 Astoria 40.77182 -73.93129 Entire home/apt 130
## 4300 Upper West Side 40.79193 -73.97443 Entire home/apt 109
## 4301 Williamsburg 40.71960 -73.96335 Private room 95
## 4302 Fort Greene 40.69053 -73.97910 Entire home/apt 100
## 4303 Park Slope 40.66977 -73.98305 Entire home/apt 155
## 4304 Sunnyside 40.74547 -73.93184 Private room 60
## 4305 South Slope 40.66372 -73.97793 Entire home/apt 195
## 4306 Jackson Heights 40.75625 -73.87542 Entire home/apt 69
## 4307 Washington Heights 40.85084 -73.94125 Private room 72
## 4308 Crown Heights 40.67007 -73.94729 Entire home/apt 300
## 4309 Upper East Side 40.77105 -73.95727 Entire home/apt 119
## 4310 Williamsburg 40.71242 -73.96793 Private room 100
## 4311 Clinton Hill 40.69070 -73.96732 Private room 199
## 4312 Harlem 40.82149 -73.93718 Private room 75
## 4313 Williamsburg 40.71376 -73.94239 Private room 100
## 4314 Morningside Heights 40.81153 -73.95856 Entire home/apt 125
## 4315 Ridgewood 40.71046 -73.91786 Entire home/apt 95
## 4316 Williamsburg 40.71923 -73.95684 Entire home/apt 295
## 4317 Astoria 40.77162 -73.92626 Private room 149
## 4318 Upper West Side 40.79972 -73.96418 Entire home/apt 150
## 4319 Crown Heights 40.67335 -73.91881 Entire home/apt 100
## 4320 Prospect Heights 40.67353 -73.96505 Private room 45
## 4321 West Village 40.72965 -74.00397 Entire home/apt 385
## 4322 Flatbush 40.64350 -73.96208 Entire home/apt 87
## 4323 Kips Bay 40.74288 -73.98030 Entire home/apt 180
## 4324 Flushing 40.75494 -73.81818 Private room 59
## 4325 St. George 40.64270 -74.08001 Private room 95
## 4326 Upper East Side 40.77291 -73.95176 Entire home/apt 130
## 4327 Bedford-Stuyvesant 40.68470 -73.91624 Entire home/apt 120
## 4328 East Village 40.73362 -73.98920 Private room 113
## 4329 Ditmars Steinway 40.77503 -73.91882 Private room 60
## 4330 Bedford-Stuyvesant 40.68105 -73.95783 Private room 40
## 4331 Murray Hill 40.74923 -73.97849 Entire home/apt 250
## 4332 Williamsburg 40.71853 -73.96287 Entire home/apt 150
## 4333 Prospect Heights 40.68183 -73.97195 Entire home/apt 450
## 4334 Carroll Gardens 40.67786 -73.99871 Entire home/apt 149
## 4335 Williamsburg 40.71264 -73.94017 Entire home/apt 169
## 4336 Park Slope 40.68006 -73.97759 Private room 105
## 4337 Bedford-Stuyvesant 40.69924 -73.94057 Private room 42
## 4338 Battery Park City 40.71620 -74.01565 Entire home/apt 325
## 4339 Upper West Side 40.78352 -73.97482 Entire home/apt 200
## 4340 East Flatbush 40.66411 -73.92905 Entire home/apt 160
## 4341 Williamsburg 40.71288 -73.95822 Private room 155
## 4342 Bedford-Stuyvesant 40.68432 -73.94250 Entire home/apt 151
## 4343 Chelsea 40.74411 -74.00290 Entire home/apt 200
## 4344 Bushwick 40.70071 -73.92468 Private room 80
## 4345 Long Island City 40.74923 -73.94962 Entire home/apt 119
## 4346 Bedford-Stuyvesant 40.69572 -73.95731 Private room 5000
## 4347 Flatbush 40.65387 -73.95973 Private room 45
## 4348 East Flatbush 40.65267 -73.94850 Entire home/apt 115
## 4349 Greenpoint 40.73026 -73.95513 Private room 65
## 4350 Chinatown 40.71782 -73.99422 Private room 87
## 4351 Midtown 40.75293 -73.97173 Private room 110
## 4352 Williamsburg 40.71416 -73.94880 Private room 80
## 4353 Hell's Kitchen 40.76761 -73.98497 Entire home/apt 250
## 4354 South Slope 40.66449 -73.99047 Private room 63
## 4355 Windsor Terrace 40.65541 -73.97610 Entire home/apt 200
## 4356 Greenpoint 40.73487 -73.95627 Entire home/apt 185
## 4357 SoHo 40.72410 -74.00420 Entire home/apt 250
## 4358 West Village 40.73704 -74.01049 Entire home/apt 130
## 4359 Brooklyn Heights 40.69683 -73.99206 Entire home/apt 185
## 4360 Crown Heights 40.67512 -73.96278 Private room 75
## 4361 East Harlem 40.78880 -73.94844 Entire home/apt 240
## 4362 Bedford-Stuyvesant 40.69393 -73.94689 Private room 65
## 4363 Upper West Side 40.77435 -73.97889 Entire home/apt 195
## 4364 Battery Park City 40.71097 -74.01658 Entire home/apt 200
## 4365 Greenwich Village 40.73034 -73.99992 Private room 120
## 4366 Gowanus 40.68322 -73.98968 Entire home/apt 180
## 4367 Woodhaven 40.69550 -73.86281 Private room 53
## 4368 Lower East Side 40.71615 -73.98478 Entire home/apt 200
## 4369 Harlem 40.80071 -73.95340 Private room 100
## 4370 Flatbush 40.63615 -73.95148 Entire home/apt 86
## 4371 Chelsea 40.73936 -73.99965 Entire home/apt 225
## 4372 Woodhaven 40.69414 -73.86324 Private room 40
## 4373 Washington Heights 40.83549 -73.94765 Entire home/apt 60
## 4374 Bayswater 40.60549 -73.75547 Private room 70
## 4375 Maspeth 40.73726 -73.89792 Private room 35
## 4376 Hell's Kitchen 40.76375 -73.99240 Entire home/apt 250
## 4377 Clinton Hill 40.69127 -73.96563 Entire home/apt 4500
## 4378 Clinton Hill 40.69137 -73.96723 Entire home/apt 8000
## 4379 Murray Hill 40.74551 -73.97757 Entire home/apt 169
## 4380 Richmond Hill 40.70061 -73.84107 Entire home/apt 255
## 4381 Harlem 40.80879 -73.94127 Entire home/apt 290
## 4382 Midtown 40.75969 -73.96644 Entire home/apt 140
## 4383 Washington Heights 40.85504 -73.93648 Entire home/apt 115
## 4384 Gowanus 40.67024 -73.99351 Entire home/apt 299
## 4385 West Village 40.73279 -74.00322 Entire home/apt 160
## 4386 Upper East Side 40.78139 -73.95261 Shared room 175
## 4387 Hell's Kitchen 40.75971 -73.98979 Private room 120
## 4388 Clinton Hill 40.68975 -73.96724 Private room 179
## 4389 Williamsburg 40.71587 -73.95934 Private room 74
## 4390 Hell's Kitchen 40.76794 -73.98781 Private room 68
## 4391 Chelsea 40.73726 -73.99399 Private room 235
## 4392 Williamsburg 40.70775 -73.94214 Private room 100
## 4393 Greenpoint 40.72292 -73.94924 Entire home/apt 270
## 4394 Prospect Heights 40.67925 -73.96880 Entire home/apt 200
## 4395 Greenwich Village 40.72603 -73.99746 Entire home/apt 161
## 4396 Crown Heights 40.67479 -73.95722 Private room 60
## 4397 East Village 40.72310 -73.98494 Entire home/apt 155
## 4398 East Harlem 40.79285 -73.94482 Private room 95
## 4399 Chinatown 40.71433 -73.99028 Entire home/apt 125
## 4400 Upper East Side 40.77233 -73.95720 Entire home/apt 118
## 4401 Harlem 40.80095 -73.95410 Private room 80
## 4402 Williamsburg 40.71593 -73.95642 Entire home/apt 210
## 4403 Brooklyn Heights 40.69443 -73.99068 Entire home/apt 150
## 4404 Sunset Park 40.65841 -73.99664 Entire home/apt 135
## 4405 Upper East Side 40.77222 -73.95544 Entire home/apt 118
## 4406 Upper West Side 40.78504 -73.97959 Private room 110
## 4407 Greenpoint 40.73057 -73.95023 Private room 70
## 4408 Bensonhurst 40.62019 -73.99624 Private room 43
## 4409 Bedford-Stuyvesant 40.68271 -73.94295 Entire home/apt 140
## 4410 Upper East Side 40.77126 -73.95671 Entire home/apt 116
## 4411 Greenpoint 40.72525 -73.94180 Entire home/apt 159
## 4412 Bedford-Stuyvesant 40.68548 -73.92039 Entire home/apt 135
## 4413 Washington Heights 40.83383 -73.94469 Private room 39
## 4414 Bushwick 40.69666 -73.93248 Private room 59
## 4415 Battery Park City 40.70633 -74.01837 Entire home/apt 600
## 4416 Crown Heights 40.67401 -73.92833 Private room 66
## 4417 Civic Center 40.71662 -74.00352 Entire home/apt 130
## 4418 Bedford-Stuyvesant 40.68426 -73.95054 Entire home/apt 100
## 4419 Prospect-Lefferts Gardens 40.65595 -73.95412 Private room 50
## 4420 Washington Heights 40.85719 -73.93573 Private room 185
## 4421 Sunset Park 40.66528 -73.99382 Private room 54
## 4422 Flatbush 40.64661 -73.95999 Entire home/apt 100
## 4423 Chelsea 40.74227 -73.99362 Entire home/apt 180
## 4424 East Flatbush 40.65262 -73.94867 Entire home/apt 115
## 4425 Prospect Heights 40.67553 -73.96376 Entire home/apt 350
## 4426 Crown Heights 40.67690 -73.94483 Private room 32
## 4427 Williamsburg 40.71756 -73.95579 Entire home/apt 165
## 4428 Chelsea 40.73893 -73.99464 Entire home/apt 350
## 4429 Cobble Hill 40.68494 -73.99685 Entire home/apt 795
## 4430 Williamsburg 40.70971 -73.96390 Entire home/apt 200
## 4431 Bushwick 40.70113 -73.91119 Entire home/apt 175
## 4432 Inwood 40.86786 -73.92077 Private room 50
## 4433 West Village 40.73722 -74.00043 Entire home/apt 190
## 4434 Harlem 40.80453 -73.95699 Private room 110
## 4435 Gowanus 40.67729 -73.99164 Entire home/apt 414
## 4436 Downtown Brooklyn 40.68968 -73.98404 Entire home/apt 135
## 4437 Murray Hill 40.74318 -73.97193 Entire home/apt 150
## 4438 Chelsea 40.74873 -73.99557 Entire home/apt 93
## 4439 Upper East Side 40.76712 -73.95668 Private room 70
## 4440 St. George 40.64444 -74.08302 Entire home/apt 175
## 4441 Bedford-Stuyvesant 40.68596 -73.95837 Entire home/apt 155
## 4442 Greenpoint 40.72760 -73.94029 Entire home/apt 129
## 4443 Concourse Village 40.83288 -73.91834 Private room 50
## 4444 Kensington 40.64638 -73.97723 Entire home/apt 499
## 4445 Sunset Park 40.65513 -74.00621 Shared room 80
## 4446 Midtown 40.76132 -73.96612 Entire home/apt 115
## 4447 Ditmars Steinway 40.77748 -73.90971 Private room 47
## 4448 Prospect-Lefferts Gardens 40.66020 -73.95043 Private room 95
## 4449 East Village 40.72889 -73.98853 Entire home/apt 249
## 4450 Murray Hill 40.74475 -73.97201 Entire home/apt 150
## 4451 Lower East Side 40.72232 -73.98987 Private room 77
## 4452 East Village 40.72687 -73.97995 Entire home/apt 225
## 4453 Brooklyn Heights 40.69405 -73.99634 Private room 70
## 4454 Murray Hill 40.74462 -73.97488 Entire home/apt 100
## 4455 Hell's Kitchen 40.76866 -73.98616 Entire home/apt 87
## 4456 Park Slope 40.67280 -73.97166 Entire home/apt 245
## 4457 Upper West Side 40.78576 -73.97594 Entire home/apt 300
## 4458 Upper East Side 40.77401 -73.94570 Private room 55
## 4459 West Village 40.72916 -74.00433 Entire home/apt 120
## 4460 Washington Heights 40.83568 -73.94457 Private room 40
## 4461 Nolita 40.72118 -73.99682 Private room 115
## 4462 Chelsea 40.74897 -73.99680 Entire home/apt 93
## 4463 East Harlem 40.79245 -73.94563 Private room 37
## 4464 Williamsburg 40.71720 -73.96160 Entire home/apt 240
## 4465 West Village 40.73229 -74.00400 Private room 130
## 4466 Long Island City 40.74902 -73.94066 Private room 70
## 4467 Greenpoint 40.72691 -73.94041 Entire home/apt 149
## 4468 Williamsburg 40.71477 -73.94105 Private room 100
## 4469 East Village 40.73057 -73.99034 Entire home/apt 200
## 4470 Prospect-Lefferts Gardens 40.65962 -73.96063 Entire home/apt 99
## 4471 Chelsea 40.74221 -73.99740 Entire home/apt 220
## 4472 Upper East Side 40.78145 -73.95588 Entire home/apt 250
## 4473 Upper East Side 40.77209 -73.95630 Entire home/apt 103
## 4474 Upper East Side 40.77224 -73.95629 Entire home/apt 108
## 4475 Harlem 40.80392 -73.94685 Private room 75
## 4476 Bushwick 40.69158 -73.92115 Entire home/apt 78
## 4477 Williamsburg 40.70442 -73.95413 Private room 75
## 4478 Navy Yard 40.70481 -73.97755 Entire home/apt 152
## 4479 Lower East Side 40.71987 -73.98641 Entire home/apt 150
## 4480 Nolita 40.72293 -73.99413 Entire home/apt 320
## 4481 Williamsburg 40.70789 -73.94632 Entire home/apt 220
## 4482 Crown Heights 40.67489 -73.91405 Entire home/apt 99
## 4483 East Village 40.72592 -73.97991 Entire home/apt 950
## 4484 Upper West Side 40.78087 -73.97812 Entire home/apt 120
## 4485 Morningside Heights 40.80739 -73.95918 Entire home/apt 100
## 4486 Borough Park 40.61098 -73.97420 Entire home/apt 199
## 4487 Hell's Kitchen 40.75771 -73.99407 Private room 100
## 4488 Williamsburg 40.71520 -73.95445 Private room 75
## 4489 Kips Bay 40.74175 -73.97741 Entire home/apt 84
## 4490 Greenpoint 40.72450 -73.95022 Entire home/apt 100
## 4491 Crown Heights 40.67104 -73.94562 Private room 75
## 4492 Clinton Hill 40.68541 -73.96728 Private room 93
## 4493 Bedford-Stuyvesant 40.69205 -73.93144 Entire home/apt 140
## 4494 Fort Greene 40.69071 -73.97057 Entire home/apt 200
## 4495 Williamsburg 40.71770 -73.94612 Entire home/apt 200
## 4496 South Slope 40.66508 -73.98974 Entire home/apt 200
## 4497 Forest Hills 40.72713 -73.84946 Entire home/apt 100
## 4498 Harlem 40.80399 -73.94665 Private room 100
## 4499 Upper East Side 40.77590 -73.94227 Entire home/apt 120
## 4500 Flatbush 40.65235 -73.96350 Entire home/apt 109
## 4501 Greenpoint 40.72126 -73.93961 Private room 126
## 4502 Harlem 40.82243 -73.94786 Private room 50
## 4503 Chelsea 40.74765 -74.00420 Entire home/apt 325
## 4504 Upper East Side 40.77766 -73.95610 Entire home/apt 750
## 4505 Crown Heights 40.67228 -73.96239 Entire home/apt 135
## 4506 Rego Park 40.72460 -73.85744 Entire home/apt 52
## 4507 Lower East Side 40.71848 -73.98159 Entire home/apt 124
## 4508 Flushing 40.76428 -73.83225 Private room 59
## 4509 Upper West Side 40.77573 -73.98264 Entire home/apt 215
## 4510 East Village 40.72488 -73.97996 Private room 240
## 4511 Harlem 40.81736 -73.93921 Private room 150
## 4512 Greenpoint 40.72418 -73.94528 Private room 83
## 4513 Ridgewood 40.70124 -73.90941 Entire home/apt 70
## 4514 Lower East Side 40.72165 -73.98573 Entire home/apt 160
## 4515 Harlem 40.80699 -73.94227 Shared room 200
## 4516 Williamsburg 40.71662 -73.95993 Entire home/apt 50
## 4517 Hell's Kitchen 40.76745 -73.98489 Entire home/apt 87
## 4518 Harlem 40.81595 -73.94470 Private room 125
## 4519 Upper East Side 40.78276 -73.95299 Entire home/apt 250
## 4520 South Slope 40.66790 -73.98720 Entire home/apt 162
## 4521 Prospect Heights 40.67527 -73.96604 Entire home/apt 67
## 4522 Upper East Side 40.76282 -73.96370 Private room 147
## 4523 Bedford-Stuyvesant 40.68176 -73.92883 Entire home/apt 149
## 4524 Crown Heights 40.67231 -73.94426 Entire home/apt 65
## 4525 Park Slope 40.67668 -73.97718 Entire home/apt 250
## 4526 Flatbush 40.63463 -73.95899 Private room 160
## 4527 Upper East Side 40.76299 -73.96166 Entire home/apt 150
## 4528 Gramercy 40.73666 -73.97960 Private room 199
## 4529 Williamsburg 40.70921 -73.95178 Private room 64
## 4530 Bushwick 40.69545 -73.91967 Private room 33
## 4531 Harlem 40.82584 -73.94673 Private room 500
## 4532 Boerum Hill 40.68474 -73.97959 Entire home/apt 150
## 4533 Lower East Side 40.71973 -73.98993 Private room 110
## 4534 Bedford-Stuyvesant 40.68452 -73.95535 Entire home/apt 145
## 4535 Flatbush 40.64056 -73.96571 Private room 40
## 4536 Williamsburg 40.70724 -73.94217 Private room 95
## 4537 Bedford-Stuyvesant 40.68208 -73.92994 Entire home/apt 185
## 4538 Bedford-Stuyvesant 40.68695 -73.95427 Entire home/apt 500
## 4539 West Village 40.72976 -74.00445 Entire home/apt 115
## 4540 St. George 40.64553 -74.08323 Entire home/apt 195
## 4541 Prospect Heights 40.67391 -73.96739 Entire home/apt 105
## 4542 Bushwick 40.69465 -73.92675 Entire home/apt 67
## 4543 Bedford-Stuyvesant 40.68898 -73.94120 Entire home/apt 75
## 4544 Battery Park City 40.71029 -74.01725 Private room 100
## 4545 Bedford-Stuyvesant 40.69394 -73.95017 Entire home/apt 125
## 4546 Williamsburg 40.71572 -73.94058 Entire home/apt 350
## 4547 Williamsburg 40.71808 -73.95511 Entire home/apt 150
## 4548 Astoria 40.77221 -73.92493 Entire home/apt 200
## 4549 Park Slope 40.67800 -73.98049 Entire home/apt 270
## 4550 Windsor Terrace 40.65516 -73.97633 Entire home/apt 184
## 4551 Prospect Heights 40.67765 -73.96378 Entire home/apt 275
## 4552 East Village 40.72854 -73.98434 Entire home/apt 171
## 4553 Williamsburg 40.71765 -73.96240 Entire home/apt 425
## 4554 West Village 40.73509 -74.00323 Entire home/apt 200
## 4555 Fort Greene 40.68731 -73.97450 Entire home/apt 165
## 4556 South Slope 40.66257 -73.98777 Private room 85
## 4557 Williamsburg 40.71262 -73.95676 Entire home/apt 170
## 4558 Williamsburg 40.70675 -73.94984 Private room 70
## 4559 Crown Heights 40.66638 -73.95229 Private room 125
## 4560 Chelsea 40.74449 -73.99445 Entire home/apt 275
## 4561 Crown Heights 40.67476 -73.95312 Private room 120
## 4562 Midtown 40.76552 -73.97738 Entire home/apt 429
## 4563 South Slope 40.66488 -73.98725 Entire home/apt 225
## 4564 Astoria 40.76068 -73.91359 Entire home/apt 119
## 4565 Upper East Side 40.77737 -73.95032 Entire home/apt 175
## 4566 Bedford-Stuyvesant 40.68291 -73.94613 Entire home/apt 155
## 4567 Inwood 40.85893 -73.92985 Entire home/apt 100
## 4568 Harlem 40.82165 -73.95491 Private room 70
## 4569 Williamsbridge 40.88075 -73.84845 Entire home/apt 95
## 4570 Park Slope 40.67507 -73.97706 Entire home/apt 450
## 4571 Fort Greene 40.69117 -73.97421 Entire home/apt 215
## 4572 Flatbush 40.64996 -73.96150 Private room 60
## 4573 Fieldston 40.89603 -73.89958 Private room 75
## 4574 Williamsburg 40.70667 -73.94921 Private room 99
## 4575 Park Slope 40.67561 -73.97823 Entire home/apt 300
## 4576 Harlem 40.80185 -73.95667 Entire home/apt 175
## 4577 Upper West Side 40.79739 -73.96945 Entire home/apt 195
## 4578 Forest Hills 40.73381 -73.85366 Private room 50
## 4579 Hell's Kitchen 40.76309 -73.99155 Entire home/apt 175
## 4580 Crown Heights 40.67499 -73.92427 Entire home/apt 120
## 4581 Flatbush 40.64677 -73.96946 Private room 54
## 4582 Harlem 40.82931 -73.94358 Entire home/apt 345
## 4583 Crown Heights 40.67138 -73.94949 Entire home/apt 225
## 4584 Boerum Hill 40.68823 -73.98604 Entire home/apt 151
## 4585 Bushwick 40.69368 -73.92295 Entire home/apt 110
## 4586 Upper East Side 40.77059 -73.94991 Entire home/apt 280
## 4587 Boerum Hill 40.68558 -73.99030 Private room 99
## 4588 Carroll Gardens 40.67863 -73.99399 Entire home/apt 350
## 4589 Williamsburg 40.71042 -73.94702 Private room 70
## 4590 Upper West Side 40.77802 -73.98256 Entire home/apt 120
## 4591 Lower East Side 40.71254 -73.98535 Private room 89
## 4592 Fort Greene 40.69802 -73.97614 Private room 120
## 4593 East Village 40.72150 -73.97747 Private room 85
## 4594 Little Italy 40.71883 -73.99716 Entire home/apt 220
## 4595 Midtown 40.76429 -73.98043 Private room 125
## 4596 Murray Hill 40.74814 -73.97277 Entire home/apt 189
## 4597 Crown Heights 40.66985 -73.95675 Private room 100
## 4598 Lower East Side 40.71981 -73.98701 Private room 81
## 4599 East Harlem 40.79794 -73.93876 Shared room 45
## 4600 Williamsburg 40.71622 -73.93942 Private room 150
## 4601 Washington Heights 40.84919 -73.94021 Private room 62
## 4602 Park Slope 40.68193 -73.97636 Entire home/apt 330
## 4603 Upper East Side 40.76158 -73.96031 Private room 80
## 4604 Washington Heights 40.83650 -73.93688 Shared room 65
## 4605 Nolita 40.72243 -73.99655 Private room 125
## 4606 Flatbush 40.63649 -73.96508 Entire home/apt 165
## 4607 Greenwich Village 40.72928 -74.00135 Private room 90
## 4608 South Slope 40.66565 -73.98782 Entire home/apt 120
## 4609 Windsor Terrace 40.65779 -73.97595 Entire home/apt 250
## 4610 Clinton Hill 40.68331 -73.96568 Entire home/apt 115
## 4611 Prospect-Lefferts Gardens 40.65684 -73.95719 Private room 55
## 4612 Lower East Side 40.71813 -73.99063 Entire home/apt 200
## 4613 SoHo 40.72652 -74.00266 Entire home/apt 149
## 4614 Bushwick 40.69436 -73.92530 Entire home/apt 55
## 4615 Gowanus 40.68338 -73.98927 Entire home/apt 400
## 4616 Clinton Hill 40.68717 -73.96690 Entire home/apt 200
## 4617 Greenpoint 40.72150 -73.94136 Entire home/apt 111
## 4618 Fort Greene 40.68727 -73.97200 Entire home/apt 175
## 4619 Harlem 40.80118 -73.95451 Entire home/apt 150
## 4620 Harlem 40.82075 -73.93790 Private room 52
## 4621 Sunset Park 40.64811 -74.01366 Entire home/apt 88
## 4622 Carroll Gardens 40.68252 -73.99224 Entire home/apt 425
## 4623 East Village 40.72780 -73.97997 Entire home/apt 175
## 4624 Williamsburg 40.72123 -73.95891 Entire home/apt 270
## 4625 Flatbush 40.64964 -73.96017 Private room 180
## 4626 Williamsburg 40.70552 -73.93842 Private room 55
## 4627 Bedford-Stuyvesant 40.67994 -73.94318 Private room 105
## 4628 Boerum Hill 40.68554 -73.98471 Entire home/apt 265
## 4629 Kips Bay 40.74059 -73.97953 Private room 60
## 4630 Washington Heights 40.83686 -73.94393 Private room 45
## 4631 East Harlem 40.80801 -73.93854 Private room 89
## 4632 Upper East Side 40.76590 -73.96611 Entire home/apt 200
## 4633 Greenpoint 40.72380 -73.94859 Entire home/apt 149
## 4634 Harlem 40.81198 -73.94370 Private room 80
## 4635 Park Slope 40.67794 -73.97398 Entire home/apt 125
## 4636 Harlem 40.82524 -73.94186 Entire home/apt 78
## 4637 Williamsburg 40.71207 -73.95077 Private room 65
## 4638 Fort Greene 40.68833 -73.97606 Entire home/apt 350
## 4639 Brooklyn Heights 40.69060 -73.99339 Entire home/apt 115
## 4640 Chelsea 40.74156 -73.99476 Entire home/apt 289
## 4641 Sunset Park 40.66592 -73.99434 Entire home/apt 158
## 4642 East Harlem 40.79848 -73.93908 Private room 50
## 4643 Midtown 40.76016 -73.96597 Entire home/apt 234
## 4644 Crown Heights 40.66758 -73.95033 Private room 50
## 4645 Upper West Side 40.80131 -73.96750 Private room 69
## 4646 Chinatown 40.71338 -73.99226 Entire home/apt 135
## 4647 Williamsburg 40.71601 -73.95870 Private room 89
## 4648 Upper East Side 40.76866 -73.95553 Entire home/apt 16
## 4649 Crown Heights 40.67658 -73.93122 Entire home/apt 300
## 4650 Kips Bay 40.74436 -73.97977 Entire home/apt 250
## 4651 Flatbush 40.65148 -73.95847 Entire home/apt 70
## 4652 Upper East Side 40.76572 -73.95541 Private room 140
## 4653 Midtown 40.75182 -73.97052 Entire home/apt 175
## 4654 Carroll Gardens 40.68120 -74.00116 Entire home/apt 160
## 4655 Upper West Side 40.78980 -73.97080 Entire home/apt 200
## 4656 Prospect Heights 40.67303 -73.96424 Private room 57
## 4657 Chelsea 40.74956 -73.99671 Private room 90
## 4658 Elmhurst 40.74644 -73.88656 Private room 89
## 4659 Park Slope 40.67766 -73.98191 Entire home/apt 90
## 4660 West Village 40.73547 -74.00510 Entire home/apt 200
## 4661 Park Slope 40.67751 -73.98143 Entire home/apt 100
## 4662 Bedford-Stuyvesant 40.68174 -73.93444 Entire home/apt 68
## 4663 East Village 40.72823 -73.98170 Entire home/apt 170
## 4664 Crown Heights 40.67740 -73.94566 Private room 40
## 4665 Chinatown 40.71613 -73.99266 Entire home/apt 500
## 4666 Cobble Hill 40.68785 -73.99181 Entire home/apt 145
## 4667 Park Slope 40.67592 -73.98107 Entire home/apt 250
## 4668 West Village 40.73504 -74.00658 Entire home/apt 288
## 4669 Williamsburg 40.71314 -73.96719 Entire home/apt 245
## 4670 Harlem 40.80407 -73.94603 Entire home/apt 80
## 4671 Prospect Heights 40.68033 -73.96528 Entire home/apt 125
## 4672 West Village 40.73691 -74.00013 Entire home/apt 166
## 4673 Upper West Side 40.78206 -73.97797 Entire home/apt 330
## 4674 Williamsburg 40.70943 -73.94948 Private room 60
## 4675 East Harlem 40.80080 -73.94347 Private room 130
## 4676 Gravesend 40.59601 -73.96862 Private room 45
## 4677 Chelsea 40.75180 -73.99690 Entire home/apt 165
## 4678 Harlem 40.80002 -73.95559 Private room 155
## 4679 Upper East Side 40.77449 -73.96228 Entire home/apt 119
## 4680 Boerum Hill 40.68460 -73.98454 Entire home/apt 158
## 4681 Williamsburg 40.71165 -73.94708 Entire home/apt 169
## 4682 Bedford-Stuyvesant 40.68562 -73.92375 Entire home/apt 139
## 4683 Upper East Side 40.77787 -73.95104 Entire home/apt 125
## 4684 Astoria 40.76310 -73.92262 Private room 70
## 4685 East New York 40.67517 -73.89814 Private room 135
## 4686 Lower East Side 40.71769 -73.98953 Entire home/apt 99
## 4687 Williamsburg 40.71189 -73.96282 Entire home/apt 175
## 4688 Greenpoint 40.72096 -73.94424 Entire home/apt 150
## 4689 Nolita 40.72235 -73.99543 Entire home/apt 250
## 4690 Long Island City 40.75930 -73.92884 Private room 100
## 4691 Fort Greene 40.69236 -73.97254 Private room 100
## 4692 Bedford-Stuyvesant 40.68073 -73.90915 Entire home/apt 128
## 4693 Sunset Park 40.66294 -73.99675 Entire home/apt 121
## 4694 Crown Heights 40.67045 -73.95716 Entire home/apt 160
## 4695 Upper West Side 40.80118 -73.97063 Private room 135
## 4696 Gramercy 40.73548 -73.98896 Entire home/apt 275
## 4697 West Village 40.73810 -74.00489 Entire home/apt 180
## 4698 East Village 40.72749 -73.99071 Entire home/apt 189
## 4699 Woodhaven 40.69165 -73.84841 Entire home/apt 250
## 4700 Cypress Hills 40.67731 -73.90733 Entire home/apt 99
## 4701 Bedford-Stuyvesant 40.68207 -73.94994 Entire home/apt 200
## 4702 Harlem 40.82888 -73.94997 Entire home/apt 145
## 4703 East Harlem 40.79269 -73.94218 Private room 100
## 4704 West Village 40.73993 -74.00619 Entire home/apt 240
## 4705 Bedford-Stuyvesant 40.67822 -73.93890 Private room 90
## 4706 Crown Heights 40.66939 -73.94839 Entire home/apt 220
## 4707 Williamsburg 40.70648 -73.95444 Private room 100
## 4708 Ridgewood 40.70476 -73.90874 Private room 59
## 4709 Bedford-Stuyvesant 40.68975 -73.93460 Entire home/apt 78
## 4710 Mott Haven 40.81444 -73.92516 Entire home/apt 75
## 4711 Bedford-Stuyvesant 40.68172 -73.94095 Private room 78
## 4712 Upper East Side 40.76884 -73.95826 Entire home/apt 250
## 4713 Bedford-Stuyvesant 40.69790 -73.94126 Entire home/apt 150
## 4714 Upper West Side 40.80048 -73.96621 Private room 44
## 4715 Greenpoint 40.73535 -73.95650 Private room 69
## 4716 Bushwick 40.70247 -73.92061 Private room 65
## 4717 Flatbush 40.65376 -73.95336 Entire home/apt 90
## 4718 East Flatbush 40.64082 -73.94818 Entire home/apt 125
## 4719 Flatbush 40.65320 -73.96216 Entire home/apt 78
## 4720 Chinatown 40.71556 -73.99234 Entire home/apt 785
## 4721 Middle Village 40.71347 -73.88199 Entire home/apt 99
## 4722 Sunnyside 40.73873 -73.92435 Private room 74
## 4723 Upper West Side 40.79950 -73.96965 Entire home/apt 130
## 4724 Woodside 40.74549 -73.90872 Entire home/apt 105
## 4725 Upper West Side 40.79921 -73.96704 Entire home/apt 145
## 4726 Upper West Side 40.79893 -73.96249 Private room 90
## 4727 Bedford-Stuyvesant 40.68510 -73.95655 Entire home/apt 215
## 4728 East Harlem 40.78728 -73.94976 Entire home/apt 100
## 4729 Prospect-Lefferts Gardens 40.65752 -73.95728 Entire home/apt 92
## 4730 Kips Bay 40.73953 -73.98009 Entire home/apt 185
## 4731 Boerum Hill 40.68732 -73.98254 Entire home/apt 1000
## 4732 Chelsea 40.74259 -74.00128 Entire home/apt 160
## 4733 Chelsea 40.75045 -73.99662 Entire home/apt 93
## 4734 West Village 40.73316 -74.00632 Entire home/apt 300
## 4735 Greenpoint 40.72285 -73.95192 Private room 75
## 4736 Chelsea 40.74934 -74.00274 Entire home/apt 370
## 4737 Kips Bay 40.74369 -73.98153 Entire home/apt 425
## 4738 South Slope 40.66740 -73.98273 Entire home/apt 200
## 4739 Midtown 40.75958 -73.96231 Private room 125
## 4740 Chelsea 40.74646 -73.99678 Entire home/apt 179
## 4741 Bushwick 40.69893 -73.91549 Private room 46
## 4742 Williamsburg 40.70972 -73.95576 Entire home/apt 150
## 4743 Crown Heights 40.66959 -73.95664 Private room 52
## 4744 Washington Heights 40.83473 -73.93706 Private room 80
## 4745 Boerum Hill 40.68687 -73.98472 Entire home/apt 120
## 4746 Sheepshead Bay 40.58527 -73.93534 Entire home/apt 300
## 4747 Brooklyn Heights 40.69846 -73.99312 Private room 110
## 4748 South Slope 40.66691 -73.98507 Entire home/apt 200
## 4749 Windsor Terrace 40.65181 -73.97648 Entire home/apt 75
## 4750 Upper East Side 40.76649 -73.96453 Entire home/apt 200
## 4751 Chelsea 40.74722 -74.00466 Entire home/apt 300
## 4752 Harlem 40.81742 -73.95358 Private room 22
## 4753 Greenpoint 40.72428 -73.94348 Entire home/apt 129
## 4754 Lower East Side 40.71866 -73.98592 Entire home/apt 125
## 4755 East Flatbush 40.65284 -73.94413 Private room 150
## 4756 Upper East Side 40.77486 -73.94857 Entire home/apt 185
## 4757 Williamsburg 40.71626 -73.95795 Entire home/apt 158
## 4758 Flatbush 40.65287 -73.96353 Private room 30
## 4759 Fort Greene 40.68981 -73.97768 Entire home/apt 316
## 4760 Park Slope 40.67978 -73.97458 Entire home/apt 175
## 4761 Astoria 40.77430 -73.92579 Entire home/apt 97
## 4762 Hell's Kitchen 40.75524 -73.99839 Entire home/apt 175
## 4763 Williamsburg 40.70586 -73.94135 Shared room 60
## 4764 Crown Heights 40.67591 -73.93985 Private room 72
## 4765 Bedford-Stuyvesant 40.68753 -73.93656 Entire home/apt 175
## 4766 Upper West Side 40.78818 -73.97133 Entire home/apt 225
## 4767 Flatbush 40.64615 -73.96410 Entire home/apt 85
## 4768 Lower East Side 40.71307 -73.99025 Entire home/apt 150
## 4769 Williamsburg 40.71122 -73.94985 Entire home/apt 225
## 4770 Midtown 40.76423 -73.98187 Private room 400
## 4771 Williamsburg 40.70926 -73.94673 Private room 125
## 4772 Crown Heights 40.66911 -73.94824 Entire home/apt 200
## 4773 Washington Heights 40.85304 -73.93555 Entire home/apt 88
## 4774 Williamsburg 40.70935 -73.94614 Private room 250
## 4775 Hell's Kitchen 40.76125 -73.99642 Entire home/apt 300
## 4776 Ridgewood 40.70026 -73.90721 Entire home/apt 89
## 4777 Kips Bay 40.73873 -73.98100 Entire home/apt 165
## 4778 Financial District 40.70885 -74.00200 Private room 84
## 4779 Williamsburg 40.71649 -73.96166 Entire home/apt 285
## 4780 Windsor Terrace 40.64846 -73.97338 Entire home/apt 150
## 4781 Crown Heights 40.66955 -73.95027 Private room 70
## 4782 Upper East Side 40.78193 -73.94884 Entire home/apt 300
## 4783 Brooklyn Heights 40.69100 -73.99467 Entire home/apt 220
## 4784 Harlem 40.82491 -73.94774 Entire home/apt 149
## 4785 West Village 40.73817 -74.00274 Entire home/apt 249
## 4786 Crown Heights 40.67321 -73.93093 Entire home/apt 90
## 4787 Washington Heights 40.83367 -73.94298 Private room 69
## 4788 Greenpoint 40.71959 -73.95153 Entire home/apt 120
## 4789 East Harlem 40.80174 -73.93925 Private room 69
## 4790 Harlem 40.83058 -73.94950 Private room 54
## 4791 Washington Heights 40.83132 -73.94101 Private room 50
## 4792 Washington Heights 40.83328 -73.94511 Private room 51
## 4793 Hell's Kitchen 40.76496 -73.99073 Private room 99
## 4794 Upper West Side 40.79390 -73.97485 Entire home/apt 290
## 4795 Williamsburg 40.71852 -73.94165 Entire home/apt 240
## 4796 Allerton 40.86677 -73.85938 Private room 49
## 4797 Boerum Hill 40.68572 -73.98602 Entire home/apt 115
## 4798 Crown Heights 40.67132 -73.93250 Private room 78
## 4799 Bushwick 40.69195 -73.92068 Entire home/apt 125
## 4800 East Harlem 40.79191 -73.94433 Entire home/apt 135
## 4801 Battery Park City 40.71062 -74.01537 Private room 110
## 4802 Financial District 40.70765 -74.00761 Entire home/apt 205
## 4803 Harlem 40.82967 -73.94428 Entire home/apt 95
## 4804 Bushwick 40.69502 -73.90645 Private room 55
## 4805 Brownsville 40.66682 -73.92303 Private room 47
## 4806 Washington Heights 40.85083 -73.92870 Private room 39
## 4807 Chelsea 40.74760 -73.99195 Entire home/apt 349
## 4808 Williamsburg 40.71082 -73.95186 Entire home/apt 250
## 4809 East Village 40.73165 -73.98715 Entire home/apt 290
## 4810 Vinegar Hill 40.70440 -73.98153 Private room 85
## 4811 Bushwick 40.69349 -73.92211 Entire home/apt 170
## 4812 Lower East Side 40.72012 -73.99092 Entire home/apt 146
## 4813 Astoria 40.77056 -73.92159 Entire home/apt 99
## 4814 Prospect Heights 40.68148 -73.96674 Entire home/apt 150
## 4815 Williamsburg 40.71122 -73.94893 Entire home/apt 240
## 4816 Williamsburg 40.71170 -73.96321 Entire home/apt 500
## 4817 Sunnyside 40.74680 -73.92218 Private room 48
## 4818 Williamsburg 40.70791 -73.93396 Entire home/apt 129
## 4819 Hell's Kitchen 40.76477 -73.98542 Entire home/apt 750
## 4820 SoHo 40.72511 -74.00016 Entire home/apt 180
## 4821 Long Island City 40.76844 -73.93819 Private room 70
## 4822 Upper East Side 40.77565 -73.95086 Entire home/apt 150
## 4823 Park Slope 40.66891 -73.97987 Entire home/apt 240
## 4824 Park Slope 40.67505 -73.97795 Entire home/apt 100
## 4825 East Village 40.73005 -73.98525 Entire home/apt 122
## 4826 Upper East Side 40.76349 -73.95969 Entire home/apt 400
## 4827 Allerton 40.86689 -73.85776 Private room 47
## 4828 Prospect Heights 40.67998 -73.96743 Entire home/apt 140
## 4829 Mott Haven 40.81055 -73.92482 Private room 55
## 4830 Crown Heights 40.67183 -73.95491 Entire home/apt 110
## 4831 Bedford-Stuyvesant 40.68571 -73.95792 Entire home/apt 175
## 4832 Civic Center 40.71663 -74.00231 Entire home/apt 80
## 4833 Midtown 40.75812 -73.96171 Entire home/apt 150
## 4834 Upper West Side 40.79037 -73.97195 Entire home/apt 200
## 4835 Sunset Park 40.66201 -73.99719 Private room 50
## 4836 Upper East Side 40.77343 -73.95979 Private room 99
## 4837 Harlem 40.82186 -73.95672 Private room 60
## 4838 Greenwich Village 40.73232 -74.00020 Entire home/apt 225
## 4839 Washington Heights 40.85529 -73.93980 Entire home/apt 175
## 4840 Williamsburg 40.71409 -73.93979 Private room 60
## 4841 Upper East Side 40.78284 -73.94825 Entire home/apt 255
## 4842 Williamsburg 40.71266 -73.94829 Private room 75
## 4843 Gowanus 40.68094 -73.98205 Entire home/apt 190
## 4844 Park Slope 40.67224 -73.97837 Entire home/apt 495
## 4845 Crown Heights 40.67432 -73.95949 Entire home/apt 98
## 4846 Williamsburg 40.71936 -73.96181 Private room 150
## 4847 Williamsburg 40.71644 -73.95876 Entire home/apt 250
## 4848 Harlem 40.80493 -73.95677 Entire home/apt 215
## 4849 Williamsburg 40.72154 -73.95449 Entire home/apt 200
## 4850 Clinton Hill 40.68266 -73.96743 Entire home/apt 100
## 4851 Williamsburg 40.71204 -73.95628 Entire home/apt 200
## 4852 Harlem 40.81525 -73.95279 Entire home/apt 200
## 4853 Lower East Side 40.72120 -73.98893 Entire home/apt 110
## 4854 Harlem 40.81511 -73.94315 Entire home/apt 115
## 4855 East Harlem 40.80278 -73.94001 Private room 75
## 4856 West Village 40.73476 -74.00100 Entire home/apt 289
## 4857 Upper East Side 40.76717 -73.95532 Private room 95
## 4858 Lower East Side 40.71812 -73.98619 Entire home/apt 197
## 4859 Hell's Kitchen 40.76753 -73.98397 Entire home/apt 150
## 4860 Ridgewood 40.70706 -73.91437 Entire home/apt 225
## 4861 Fort Greene 40.68570 -73.97088 Entire home/apt 375
## 4862 Eltingville 40.54268 -74.16254 Private room 56
## 4863 Upper West Side 40.78478 -73.97668 Entire home/apt 225
## 4864 East Harlem 40.80409 -73.93988 Entire home/apt 70
## 4865 Upper West Side 40.79098 -73.96745 Entire home/apt 264
## 4866 Upper West Side 40.79219 -73.96862 Entire home/apt 199
## 4867 Park Slope 40.67050 -73.97954 Entire home/apt 149
## 4868 Red Hook 40.67851 -74.01591 Entire home/apt 142
## 4869 East Harlem 40.80422 -73.93841 Entire home/apt 299
## 4870 Bedford-Stuyvesant 40.68887 -73.95013 Entire home/apt 50
## 4871 Park Slope 40.67926 -73.97711 Entire home/apt 160
## 4872 Bedford-Stuyvesant 40.68422 -73.95666 Entire home/apt 127
## 4873 Clinton Hill 40.68407 -73.96715 Entire home/apt 110
## 4874 Lower East Side 40.71922 -73.98472 Private room 69
## 4875 Bedford-Stuyvesant 40.68448 -73.95854 Entire home/apt 175
## 4876 East Village 40.72402 -73.98771 Entire home/apt 179
## 4877 Bushwick 40.69642 -73.93361 Entire home/apt 144
## 4878 Nolita 40.72044 -73.99645 Entire home/apt 175
## 4879 Harlem 40.80790 -73.94887 Entire home/apt 150
## 4880 Williamsburg 40.71023 -73.95688 Entire home/apt 109
## 4881 Upper East Side 40.77097 -73.94848 Entire home/apt 350
## 4882 Bay Ridge 40.63195 -74.02140 Entire home/apt 75
## 4883 Harlem 40.82639 -73.94186 Entire home/apt 135
## 4884 Maspeth 40.74064 -73.89956 Private room 39
## 4885 Astoria 40.77100 -73.92563 Private room 38
## 4886 Bedford-Stuyvesant 40.68885 -73.92354 Entire home/apt 195
## 4887 Morningside Heights 40.80810 -73.95647 Entire home/apt 146
## 4888 Williamsburg 40.71788 -73.96021 Entire home/apt 318
## 4889 Kips Bay 40.74593 -73.97915 Entire home/apt 184
## 4890 Williamsburg 40.71390 -73.93530 Entire home/apt 140
## 4891 Chelsea 40.74977 -73.99647 Private room 85
## 4892 Harlem 40.80724 -73.94739 Entire home/apt 170
## 4893 Ditmars Steinway 40.77902 -73.90768 Private room 100
## 4894 Nolita 40.72080 -73.99436 Entire home/apt 350
## 4895 Upper West Side 40.78273 -73.97319 Entire home/apt 199
## 4896 Williamsburg 40.71119 -73.96703 Private room 77
## 4897 Kips Bay 40.73877 -73.98171 Private room 80
## 4898 Mott Haven 40.81049 -73.90430 Private room 79
## 4899 Bushwick 40.69601 -73.92236 Private room 550
## 4900 Brooklyn Heights 40.69088 -73.99416 Entire home/apt 155
## 4901 Greenwich Village 40.73331 -73.99410 Entire home/apt 275
## 4902 Williamsburg 40.71187 -73.93593 Entire home/apt 119
## 4903 Greenpoint 40.73689 -73.95488 Entire home/apt 85
## 4904 Harlem 40.82947 -73.95104 Private room 84
## 4905 Harlem 40.82774 -73.95080 Private room 90
## 4906 Crown Heights 40.67619 -73.94389 Entire home/apt 135
## 4907 Williamsburg 40.70848 -73.95323 Private room 90
## 4908 Williamsburg 40.71784 -73.95521 Entire home/apt 150
## 4909 Flatbush 40.64246 -73.95443 Private room 38
## 4910 Kips Bay 40.74318 -73.97858 Entire home/apt 87
## 4911 Kensington 40.64510 -73.97798 Entire home/apt 210
## 4912 Inwood 40.86176 -73.93082 Private room 80
## 4913 Fort Greene 40.68902 -73.96976 Entire home/apt 250
## 4914 Chelsea 40.74252 -73.99750 Entire home/apt 175
## 4915 Clinton Hill 40.68250 -73.95888 Private room 65
## 4916 East Village 40.73136 -73.98714 Entire home/apt 140
## 4917 Harlem 40.80297 -73.95132 Entire home/apt 129
## 4918 East Village 40.73041 -73.98960 Entire home/apt 159
## 4919 Fresh Meadows 40.75037 -73.79154 Private room 125
## 4920 West Village 40.73022 -74.00421 Entire home/apt 249
## 4921 Bedford-Stuyvesant 40.68388 -73.94427 Entire home/apt 151
## 4922 Bedford-Stuyvesant 40.69334 -73.94608 Private room 79
## 4923 Crown Heights 40.66919 -73.95079 Entire home/apt 125
## 4924 Harlem 40.81792 -73.94236 Entire home/apt 135
## 4925 Lower East Side 40.72274 -73.99169 Entire home/apt 151
## 4926 Tribeca 40.72113 -74.00478 Entire home/apt 600
## 4927 Bedford-Stuyvesant 40.68476 -73.92975 Entire home/apt 59
## 4928 Lower East Side 40.72007 -73.99078 Entire home/apt 273
## 4929 Harlem 40.82435 -73.94507 Private room 70
## 4930 Harlem 40.82447 -73.95076 Private room 95
## 4931 Bedford-Stuyvesant 40.68837 -73.92560 Entire home/apt 399
## 4932 Bushwick 40.70399 -73.92813 Private room 96
## 4933 West Village 40.73622 -74.00147 Shared room 110
## 4934 Hell's Kitchen 40.76878 -73.98719 Private room 110
## 4935 Harlem 40.82233 -73.93779 Private room 69
## 4936 Prospect-Lefferts Gardens 40.65732 -73.95991 Private room 85
## 4937 Lower East Side 40.71867 -73.98612 Entire home/apt 150
## 4938 Kips Bay 40.73788 -73.98048 Entire home/apt 170
## 4939 Lower East Side 40.72165 -73.98759 Entire home/apt 125
## 4940 East Village 40.72673 -73.98004 Private room 130
## 4941 East Village 40.72454 -73.97836 Entire home/apt 145
## 4942 Williamsburg 40.71466 -73.96429 Entire home/apt 500
## 4943 Harlem 40.82193 -73.94499 Private room 95
## 4944 Crown Heights 40.67893 -73.96262 Entire home/apt 150
## 4945 Forest Hills 40.73334 -73.85433 Entire home/apt 150
## 4946 Bedford-Stuyvesant 40.68643 -73.92208 Private room 56
## 4947 Greenpoint 40.72472 -73.94135 Private room 60
## 4948 East Flatbush 40.66123 -73.93428 Entire home/apt 85
## 4949 Lower East Side 40.71306 -73.98856 Private room 80
## 4950 West Village 40.73326 -74.00604 Private room 100
## 4951 Bushwick 40.70228 -73.92824 Private room 54
## 4952 Bedford-Stuyvesant 40.68537 -73.95693 Entire home/apt 113
## 4953 Williamsburg 40.71474 -73.95662 Entire home/apt 200
## 4954 Harlem 40.81813 -73.93980 Private room 75
## 4955 Harlem 40.82140 -73.95675 Shared room 200
## 4956 South Slope 40.66308 -73.98309 Entire home/apt 110
## 4957 Clinton Hill 40.68761 -73.96096 Entire home/apt 500
## 4958 Midtown 40.75503 -73.96711 Entire home/apt 180
## 4959 Williamsburg 40.71707 -73.94708 Entire home/apt 200
## 4960 Upper East Side 40.76189 -73.96298 Private room 69
## 4961 West Village 40.73496 -74.00005 Entire home/apt 200
## 4962 Prospect-Lefferts Gardens 40.65586 -73.95972 Entire home/apt 140
## 4963 Crown Heights 40.66518 -73.95109 Private room 45
## 4964 Sunset Park 40.64993 -74.00191 Private room 35
## 4965 Greenpoint 40.73220 -73.95882 Private room 80
## 4966 South Slope 40.66252 -73.98433 Entire home/apt 150
## 4967 Washington Heights 40.83365 -73.94059 Entire home/apt 70
## 4968 Hell's Kitchen 40.76553 -73.99530 Private room 200
## 4969 Midtown 40.76524 -73.98018 Entire home/apt 308
## 4970 Nolita 40.71987 -73.99470 Entire home/apt 270
## 4971 Clinton Hill 40.68695 -73.96310 Entire home/apt 150
## 4972 East Village 40.72832 -73.98520 Entire home/apt 365
## 4973 Clinton Hill 40.68180 -73.96238 Private room 99
## 4974 Lower East Side 40.72110 -73.98397 Entire home/apt 175
## 4975 Gramercy 40.73711 -73.98985 Entire home/apt 220
## 4976 Washington Heights 40.83620 -73.94033 Private room 80
## 4977 Park Slope 40.66617 -73.97593 Entire home/apt 230
## 4978 Harlem 40.81464 -73.95351 Private room 60
## 4979 Greenwich Village 40.72802 -73.99644 Private room 120
## 4980 Prospect-Lefferts Gardens 40.65698 -73.95761 Private room 45
## 4981 East Harlem 40.79805 -73.94533 Entire home/apt 100
## 4982 Harlem 40.80612 -73.95678 Entire home/apt 138
## 4983 Sunset Park 40.66273 -73.99111 Entire home/apt 100
## 4984 Chelsea 40.74767 -73.99393 Entire home/apt 230
## 4985 Harlem 40.80411 -73.95624 Entire home/apt 225
## 4986 Bedford-Stuyvesant 40.68652 -73.95031 Entire home/apt 120
## 4987 Crown Heights 40.67089 -73.93323 Private room 99
## 4988 Washington Heights 40.85153 -73.93815 Entire home/apt 150
## 4989 Bushwick 40.68258 -73.90472 Entire home/apt 122
## 4990 Bushwick 40.70204 -73.92109 Entire home/apt 150
## 4991 Harlem 40.80900 -73.94263 Entire home/apt 140
## 4992 Lower East Side 40.72158 -73.98998 Entire home/apt 150
## 4993 Windsor Terrace 40.65015 -73.97945 Private room 38
## 4994 West Village 40.73002 -74.00653 Entire home/apt 200
## 4995 Prospect-Lefferts Gardens 40.65598 -73.95512 Private room 50
## 4996 Harlem 40.82071 -73.93813 Private room 45
## 4997 Williamsburg 40.71659 -73.94580 Private room 90
## 4998 Astoria 40.76972 -73.92060 Private room 85
## 4999 East Village 40.72960 -73.99054 Private room 85
## 5000 St. Albans 40.69283 -73.75828 Entire home/apt 108
## 5001 Prospect Heights 40.67510 -73.96558 Entire home/apt 129
## 5002 Fort Greene 40.68744 -73.97470 Entire home/apt 275
## 5003 Midtown 40.74596 -73.98411 Entire home/apt 148
## 5004 Gramercy 40.73389 -73.98724 Entire home/apt 250
## 5005 East Village 40.72974 -73.98372 Entire home/apt 160
## 5006 Crown Heights 40.66529 -73.95570 Entire home/apt 130
## 5007 Park Slope 40.66884 -73.97575 Private room 180
## 5008 Washington Heights 40.84943 -73.93146 Private room 50
## 5009 Washington Heights 40.83473 -73.93982 Private room 145
## 5010 Chinatown 40.71445 -73.99287 Private room 94
## 5011 Upper East Side 40.77487 -73.94900 Entire home/apt 180
## 5012 Nolita 40.72061 -73.99472 Private room 80
## 5013 Bedford-Stuyvesant 40.68274 -73.91856 Entire home/apt 97
## 5014 Bedford-Stuyvesant 40.69576 -73.94082 Entire home/apt 90
## 5015 Brownsville 40.66748 -73.92554 Entire home/apt 70
## 5016 Astoria 40.75997 -73.90926 Entire home/apt 120
## 5017 Kips Bay 40.74173 -73.97906 Entire home/apt 120
## 5018 Financial District 40.70550 -74.00866 Entire home/apt 165
## 5019 Washington Heights 40.84464 -73.93550 Private room 59
## 5020 Flatbush 40.64802 -73.97095 Private room 91
## 5021 Bay Terrace 40.77995 -73.78506 Entire home/apt 184
## 5022 Bedford-Stuyvesant 40.69200 -73.93852 Private room 45
## 5023 Gramercy 40.73755 -73.98595 Private room 150
## 5024 Harlem 40.80465 -73.95365 Entire home/apt 139
## 5025 Harlem 40.82544 -73.94020 Private room 65
## 5026 East Village 40.72966 -73.98515 Private room 65
## 5027 Prospect Heights 40.67426 -73.96586 Private room 150
## 5028 Astoria 40.76380 -73.91622 Entire home/apt 115
## 5029 Financial District 40.70883 -74.01266 Entire home/apt 299
## 5030 Flatbush 40.63981 -73.95712 Entire home/apt 80
## 5031 Carroll Gardens 40.68184 -73.99308 Private room 80
## 5032 Clinton Hill 40.69741 -73.96942 Entire home/apt 100
## 5033 Chelsea 40.74016 -74.00049 Private room 135
## 5034 Prospect-Lefferts Gardens 40.65554 -73.96046 Private room 80
## 5035 Flatbush 40.63631 -73.95313 Private room 69
## 5036 East Harlem 40.79460 -73.94105 Private room 75
## 5037 Park Slope 40.66981 -73.98462 Entire home/apt 94
## 5038 South Slope 40.66748 -73.98971 Entire home/apt 192
## 5039 East Harlem 40.79319 -73.94209 Private room 50
## 5040 East Harlem 40.79420 -73.94136 Private room 58
## 5041 Long Island City 40.76481 -73.93163 Entire home/apt 120
## 5042 Williamsburg 40.71286 -73.96244 Private room 69
## 5043 Jackson Heights 40.75193 -73.89085 Private room 50
## 5044 Harlem 40.82279 -73.94947 Entire home/apt 125
## 5045 Bushwick 40.69217 -73.90768 Private room 50
## 5046 Sunset Park 40.64894 -74.00621 Private room 85
## 5047 Ridgewood 40.70554 -73.90729 Private room 59
## 5048 Upper East Side 40.77274 -73.95732 Entire home/apt 130
## 5049 Lower East Side 40.71749 -73.99016 Entire home/apt 104
## 5050 Sunnyside 40.74365 -73.91632 Entire home/apt 95
## 5051 Hell's Kitchen 40.76385 -73.99050 Entire home/apt 199
## 5052 Concourse 40.81954 -73.92715 Private room 105
## 5053 Bedford-Stuyvesant 40.68599 -73.95182 Private room 34
## 5054 Flatbush 40.64372 -73.95969 Entire home/apt 120
## 5055 Concourse Village 40.82603 -73.92312 Entire home/apt 87
## 5056 Queens Village 40.72290 -73.74620 Entire home/apt 125
## 5057 Bushwick 40.68779 -73.90521 Entire home/apt 170
## 5058 Upper East Side 40.77242 -73.96212 Entire home/apt 250
## 5059 East Harlem 40.79032 -73.94523 Private room 55
## 5060 Sunnyside 40.74269 -73.91518 Private room 80
## 5061 Sunnyside 40.74493 -73.91528 Entire home/apt 95
## 5062 Morningside Heights 40.80309 -73.96367 Private room 150
## 5063 Windsor Terrace 40.65413 -73.97684 Entire home/apt 140
## 5064 Bedford-Stuyvesant 40.67927 -73.93208 Entire home/apt 150
## 5065 Lower East Side 40.72138 -73.98371 Entire home/apt 159
## 5066 Chelsea 40.74994 -73.99612 Entire home/apt 95
## 5067 Greenpoint 40.72705 -73.94033 Entire home/apt 159
## 5068 Bushwick 40.69942 -73.91209 Private room 65
## 5069 Sunset Park 40.65046 -74.00402 Entire home/apt 100
## 5070 East Village 40.72135 -73.98000 Private room 85
## 5071 Prospect Heights 40.67860 -73.96694 Entire home/apt 175
## 5072 Carroll Gardens 40.68235 -73.99806 Entire home/apt 175
## 5073 Sheepshead Bay 40.58363 -73.93553 Entire home/apt 260
## 5074 Prospect-Lefferts Gardens 40.65530 -73.95816 Entire home/apt 80
## 5075 Bedford-Stuyvesant 40.68635 -73.93246 Private room 69
## 5076 Bedford-Stuyvesant 40.68949 -73.92784 Entire home/apt 100
## 5077 Ditmars Steinway 40.77591 -73.91450 Private room 85
## 5078 Bay Ridge 40.63777 -74.02497 Entire home/apt 95
## 5079 Upper East Side 40.76043 -73.95992 Entire home/apt 160
## 5080 Kensington 40.63402 -73.97556 Private room 49
## 5081 Williamsburg 40.71566 -73.94100 Private room 65
## 5082 Gramercy 40.73568 -73.98062 Entire home/apt 150
## 5083 Hell's Kitchen 40.76073 -73.99215 Entire home/apt 115
## 5084 Rockaway Beach 40.59030 -73.81430 Private room 113
## 5085 Hell's Kitchen 40.76882 -73.98699 Entire home/apt 110
## 5086 East Harlem 40.78698 -73.94400 Private room 75
## 5087 Midtown 40.75090 -73.96963 Entire home/apt 250
## 5088 Wakefield 40.88855 -73.85127 Private room 50
## 5089 Crown Heights 40.67370 -73.95335 Entire home/apt 81
## 5090 Hell's Kitchen 40.76625 -73.99387 Private room 69
## 5091 Greenpoint 40.71952 -73.94844 Private room 125
## 5092 Williamsburg 40.71202 -73.96665 Private room 65
## 5093 East Village 40.73312 -73.99097 Entire home/apt 150
## 5094 Upper East Side 40.77448 -73.96102 Entire home/apt 175
## 5095 Midwood 40.62401 -73.95775 Private room 49
## 5096 Nolita 40.72168 -73.99544 Entire home/apt 191
## 5097 Flatiron District 40.74110 -73.98455 Entire home/apt 200
## 5098 Hell's Kitchen 40.76522 -73.99486 Entire home/apt 250
## 5099 Crown Heights 40.67541 -73.94408 Entire home/apt 216
## 5100 Bedford-Stuyvesant 40.68412 -73.95039 Entire home/apt 200
## 5101 Williamsburg 40.70917 -73.94918 Private room 119
## 5102 Upper East Side 40.77222 -73.95604 Entire home/apt 118
## 5103 Midtown 40.74911 -73.98202 Private room 95
## 5104 Greenpoint 40.73526 -73.95375 Entire home/apt 110
## 5105 Bay Ridge 40.62356 -74.02400 Entire home/apt 170
## 5106 Upper East Side 40.77290 -73.95276 Entire home/apt 99
## 5107 Bedford-Stuyvesant 40.68337 -73.95819 Entire home/apt 172
## 5108 Sunnyside 40.74532 -73.91974 Private room 75
## 5109 Bedford-Stuyvesant 40.69437 -73.95841 Private room 50
## 5110 Bedford-Stuyvesant 40.69160 -73.94714 Private room 77
## 5111 Navy Yard 40.69839 -73.97666 Entire home/apt 125
## 5112 Sunnyside 40.74189 -73.92375 Private room 75
## 5113 Harlem 40.80677 -73.94977 Entire home/apt 350
## 5114 Crown Heights 40.66709 -73.95140 Private room 55
## 5115 Bedford-Stuyvesant 40.68138 -73.95018 Entire home/apt 99
## 5116 Park Slope 40.67164 -73.97761 Entire home/apt 545
## 5117 Washington Heights 40.84686 -73.94181 Private room 70
## 5118 Bedford-Stuyvesant 40.68908 -73.92893 Private room 250
## 5119 Bushwick 40.68781 -73.91377 Entire home/apt 150
## 5120 Bushwick 40.69753 -73.93619 Private room 55
## 5121 Crown Heights 40.67472 -73.94737 Entire home/apt 100
## 5122 Clinton Hill 40.69494 -73.96888 Entire home/apt 100
## 5123 Bedford-Stuyvesant 40.68822 -73.94357 Entire home/apt 95
## 5124 Gramercy 40.73632 -73.98475 Entire home/apt 175
## 5125 Upper West Side 40.77905 -73.97939 Entire home/apt 200
## 5126 Greenwich Village 40.72858 -73.99951 Entire home/apt 190
## 5127 Bedford-Stuyvesant 40.68769 -73.95333 Private room 65
## 5128 Fort Greene 40.68927 -73.96957 Entire home/apt 400
## 5129 Kensington 40.64644 -73.97560 Entire home/apt 95
## 5130 West Village 40.73419 -74.00213 Entire home/apt 197
## 5131 Kensington 40.64295 -73.97632 Entire home/apt 395
## 5132 Bedford-Stuyvesant 40.69134 -73.94468 Private room 100
## 5133 Bedford-Stuyvesant 40.68592 -73.95502 Entire home/apt 200
## 5134 Williamsburg 40.71385 -73.94156 Entire home/apt 165
## 5135 Carroll Gardens 40.68431 -73.99782 Entire home/apt 145
## 5136 Brownsville 40.66827 -73.92509 Entire home/apt 75
## 5137 Gramercy 40.73343 -73.98634 Entire home/apt 180
## 5138 Upper East Side 40.77542 -73.95437 Private room 73
## 5139 Upper East Side 40.77579 -73.95570 Private room 87
## 5140 Upper East Side 40.77688 -73.95616 Private room 74
## 5141 Prospect Heights 40.67948 -73.97219 Private room 65
## 5142 Greenwich Village 40.72840 -73.99812 Entire home/apt 199
## 5143 Park Slope 40.67916 -73.97454 Private room 65
## 5144 Upper West Side 40.77918 -73.98740 Entire home/apt 160
## 5145 Bushwick 40.69825 -73.92788 Private room 175
## 5146 Upper West Side 40.77817 -73.97844 Entire home/apt 200
## 5147 East Village 40.73268 -73.98689 Entire home/apt 195
## 5148 Crown Heights 40.66935 -73.94850 Private room 99
## 5149 Clinton Hill 40.69034 -73.96675 Entire home/apt 175
## 5150 Hell's Kitchen 40.76027 -73.99081 Entire home/apt 190
## 5151 Bedford-Stuyvesant 40.68473 -73.95697 Entire home/apt 99
## 5152 Nolita 40.72160 -73.99558 Private room 100
## 5153 Prospect-Lefferts Gardens 40.66271 -73.95392 Entire home/apt 199
## 5154 Bedford-Stuyvesant 40.67862 -73.94687 Entire home/apt 199
## 5155 Sunnyside 40.74502 -73.91690 Entire home/apt 100
## 5156 Astoria 40.76977 -73.91596 Shared room 45
## 5157 East Harlem 40.79508 -73.94895 Private room 72
## 5158 East Village 40.72669 -73.98419 Entire home/apt 129
## 5159 Bedford-Stuyvesant 40.68205 -73.94239 Entire home/apt 100
## 5160 Bedford-Stuyvesant 40.69141 -73.95886 Entire home/apt 85
## 5161 Kensington 40.64130 -73.98233 Private room 70
## 5162 Williamsburg 40.70536 -73.94229 Entire home/apt 100
## 5163 Williamsburg 40.70914 -73.95236 Entire home/apt 160
## 5164 Upper East Side 40.77883 -73.95498 Entire home/apt 185
## 5165 Gowanus 40.67790 -73.98421 Entire home/apt 162
## 5166 Forest Hills 40.73538 -73.85300 Private room 80
## 5167 Harlem 40.80257 -73.95480 Private room 200
## 5168 Bedford-Stuyvesant 40.68905 -73.92685 Private room 45
## 5169 Greenpoint 40.72533 -73.94204 Entire home/apt 129
## 5170 Williamsburg 40.71795 -73.95804 Private room 55
## 5171 Bushwick 40.69865 -73.92972 Private room 68
## 5172 Williamsburg 40.71985 -73.94422 Entire home/apt 120
## 5173 Bedford-Stuyvesant 40.68732 -73.94058 Private room 55
## 5174 Bushwick 40.70033 -73.91197 Private room 50
## 5175 Bushwick 40.70010 -73.91204 Private room 50
## 5176 Navy Yard 40.69817 -73.96540 Entire home/apt 150
## 5177 Williamsburg 40.72037 -73.95960 Entire home/apt 140
## 5178 Midtown 40.75068 -73.98177 Entire home/apt 136
## 5179 Nolita 40.72339 -73.99477 Private room 92
## 5180 Hell's Kitchen 40.76215 -73.99036 Private room 125
## 5181 Flatbush 40.65136 -73.95974 Private room 48
## 5182 Upper East Side 40.77693 -73.95632 Private room 82
## 5183 Harlem 40.81217 -73.95303 Entire home/apt 150
## 5184 Bedford-Stuyvesant 40.68237 -73.94811 Entire home/apt 90
## 5185 Bedford-Stuyvesant 40.68667 -73.93897 Entire home/apt 117
## 5186 Upper East Side 40.77707 -73.95652 Private room 71
## 5187 Chelsea 40.74944 -73.99631 Entire home/apt 390
## 5188 St. George 40.64408 -74.07834 Private room 58
## 5189 Woodside 40.74626 -73.90090 Private room 50
## 5190 Park Slope 40.67256 -73.97212 Entire home/apt 150
## 5191 Williamsburg 40.71858 -73.95711 Private room 150
## 5192 East Harlem 40.79416 -73.93984 Private room 80
## 5193 Williamsburg 40.71623 -73.96415 Private room 115
## 5194 Windsor Terrace 40.65084 -73.97334 Private room 70
## 5195 Upper East Side 40.77175 -73.95742 Entire home/apt 95
## 5196 Bedford-Stuyvesant 40.69411 -73.93987 Private room 85
## 5197 Bedford-Stuyvesant 40.68772 -73.95484 Entire home/apt 180
## 5198 Murray Hill 40.74735 -73.97671 Entire home/apt 149
## 5199 Tribeca 40.71726 -74.01134 Entire home/apt 200
## 5200 Gramercy 40.73601 -73.98205 Private room 69
## 5201 Morningside Heights 40.80645 -73.95804 Private room 85
## 5202 Crown Heights 40.67472 -73.93000 Entire home/apt 117
## 5203 West Village 40.73243 -74.00052 Entire home/apt 219
## 5204 Astoria 40.75508 -73.91673 Entire home/apt 100
## 5205 Prospect Heights 40.67609 -73.96459 Entire home/apt 320
## 5206 Kips Bay 40.74213 -73.98010 Private room 95
## 5207 Bushwick 40.70322 -73.92913 Private room 110
## 5208 Harlem 40.80581 -73.95374 Entire home/apt 105
## 5209 Williamsburg 40.71510 -73.95422 Entire home/apt 134
## 5210 Flatbush 40.65441 -73.96257 Private room 45
## 5211 Kips Bay 40.73967 -73.98041 Entire home/apt 200
## 5212 Hell's Kitchen 40.76559 -73.99221 Private room 110
## 5213 East Harlem 40.80592 -73.93653 Entire home/apt 150
## 5214 Bushwick 40.68250 -73.90818 Entire home/apt 149
## 5215 Morningside Heights 40.81065 -73.96312 Private room 85
## 5216 Bedford-Stuyvesant 40.68818 -73.95900 Entire home/apt 200
## 5217 Astoria 40.76403 -73.92162 Entire home/apt 170
## 5218 Mount Hope 40.84611 -73.91036 Private room 40
## 5219 Midtown 40.75911 -73.96299 Private room 70
## 5220 Upper East Side 40.77632 -73.95458 Private room 95
## 5221 Lower East Side 40.72144 -73.99356 Private room 95
## 5222 Midtown 40.76514 -73.98058 Private room 350
## 5223 Bedford-Stuyvesant 40.68720 -73.93805 Entire home/apt 165
## 5224 Prospect Heights 40.67262 -73.96542 Entire home/apt 120
## 5225 Midtown 40.74596 -73.98678 Private room 130
## 5226 Bedford-Stuyvesant 40.68826 -73.93850 Private room 40
## 5227 Bedford-Stuyvesant 40.68250 -73.92519 Entire home/apt 130
## 5228 Harlem 40.80919 -73.94815 Entire home/apt 120
## 5229 Bushwick 40.70716 -73.92171 Entire home/apt 90
## 5230 Bedford-Stuyvesant 40.68358 -73.94838 Private room 120
## 5231 Harlem 40.81022 -73.94266 Shared room 115
## 5232 Chelsea 40.73986 -74.00035 Entire home/apt 150
## 5233 Greenwich Village 40.73110 -74.00014 Private room 170
## 5234 Williamsburg 40.70967 -73.94945 Entire home/apt 124
## 5235 Upper West Side 40.79253 -73.97378 Entire home/apt 104
## 5236 Upper West Side 40.79203 -73.97299 Entire home/apt 99
## 5237 Harlem 40.82217 -73.94149 Private room 85
## 5238 Fort Greene 40.68961 -73.97781 Entire home/apt 158
## 5239 Lower East Side 40.72046 -73.99237 Entire home/apt 400
## 5240 Washington Heights 40.85672 -73.93020 Shared room 100
## 5241 Greenpoint 40.72793 -73.95011 Entire home/apt 115
## 5242 Mott Haven 40.81050 -73.92507 Private room 55
## 5243 Harlem 40.82621 -73.94596 Private room 72
## 5244 West Village 40.73254 -74.00698 Entire home/apt 170
## 5245 Clinton Hill 40.69352 -73.96556 Entire home/apt 150
## 5246 Inwood 40.85988 -73.92709 Private room 39
## 5247 Ridgewood 40.70120 -73.90008 Private room 49
## 5248 Woodside 40.75338 -73.90618 Private room 39
## 5249 East Village 40.72695 -73.98617 Entire home/apt 200
## 5250 Williamsburg 40.71601 -73.95359 Entire home/apt 185
## 5251 West Village 40.73223 -74.00355 Entire home/apt 200
## 5252 Boerum Hill 40.68558 -73.98150 Private room 110
## 5253 Park Slope 40.68098 -73.97925 Entire home/apt 275
## 5254 Williamsburg 40.71231 -73.95313 Private room 105
## 5255 East Village 40.72328 -73.98926 Entire home/apt 260
## 5256 Williamsburg 40.71283 -73.96714 Entire home/apt 175
## 5257 Canarsie 40.64287 -73.90228 Entire home/apt 90
## 5258 Williamsburg 40.71694 -73.96017 Entire home/apt 125
## 5259 St. Albans 40.70120 -73.75041 Entire home/apt 239
## 5260 Chelsea 40.73996 -73.99919 Entire home/apt 195
## 5261 Mott Haven 40.80772 -73.91791 Private room 53
## 5262 Hell's Kitchen 40.75882 -73.99168 Private room 99
## 5263 Inwood 40.86711 -73.92742 Private room 52
## 5264 Battery Park City 40.71019 -74.01705 Entire home/apt 130
## 5265 Battery Park City 40.71031 -74.01557 Entire home/apt 325
## 5266 Bedford-Stuyvesant 40.68419 -73.92217 Entire home/apt 135
## 5267 Prospect Heights 40.67548 -73.96802 Private room 85
## 5268 Harlem 40.80384 -73.94692 Private room 68
## 5269 Astoria 40.76315 -73.92709 Private room 45
## 5270 Hell's Kitchen 40.76867 -73.98541 Entire home/apt 87
## 5271 Prospect-Lefferts Gardens 40.66082 -73.95419 Private room 89
## 5272 Bushwick 40.70784 -73.92224 Entire home/apt 150
## 5273 Flatiron District 40.73923 -73.98589 Entire home/apt 124
## 5274 Upper West Side 40.77885 -73.98178 Entire home/apt 169
## 5275 Forest Hills 40.72356 -73.83982 Private room 125
## 5276 Forest Hills 40.72700 -73.83924 Private room 145
## 5277 Bushwick 40.70248 -73.93225 Private room 75
## 5278 Bushwick 40.70315 -73.93124 Private room 75
## 5279 Murray Hill 40.74915 -73.97196 Entire home/apt 87
## 5280 Sunnyside 40.74219 -73.92585 Private room 50
## 5281 Hell's Kitchen 40.76620 -73.98612 Entire home/apt 150
## 5282 Upper West Side 40.79744 -73.97098 Private room 95
## 5283 Murray Hill 40.74445 -73.97181 Entire home/apt 200
## 5284 Harlem 40.80293 -73.95586 Entire home/apt 120
## 5285 Upper West Side 40.77627 -73.98081 Entire home/apt 325
## 5286 Greenwich Village 40.72774 -74.00004 Entire home/apt 165
## 5287 Upper West Side 40.79082 -73.97452 Entire home/apt 140
## 5288 Bedford-Stuyvesant 40.69634 -73.94410 Private room 33
## 5289 Lower East Side 40.71962 -73.98434 Entire home/apt 169
## 5290 Williamsburg 40.71863 -73.94416 Entire home/apt 75
## 5291 Gramercy 40.73293 -73.98360 Entire home/apt 190
## 5292 Astoria 40.76577 -73.91471 Private room 39
## 5293 Bedford-Stuyvesant 40.68252 -73.94443 Entire home/apt 165
## 5294 Long Island City 40.74622 -73.94277 Private room 79
## 5295 Harlem 40.82654 -73.94620 Entire home/apt 125
## 5296 West Village 40.73016 -74.00259 Entire home/apt 349
## 5297 Williamsburg 40.71328 -73.95787 Private room 130
## 5298 Canarsie 40.63881 -73.91751 Private room 40
## 5299 Crown Heights 40.67767 -73.95162 Entire home/apt 76
## 5300 Flatbush 40.64699 -73.96307 Entire home/apt 50
## 5301 Bushwick 40.70098 -73.93959 Private room 45
## 5302 Bedford-Stuyvesant 40.68655 -73.93797 Entire home/apt 80
## 5303 West Village 40.72912 -74.00298 Entire home/apt 265
## 5304 Sunset Park 40.64752 -74.00590 Shared room 65
## 5305 Bedford-Stuyvesant 40.68127 -73.94865 Entire home/apt 90
## 5306 Greenwich Village 40.72917 -73.99974 Private room 115
## 5307 Upper West Side 40.79998 -73.96404 Entire home/apt 145
## 5308 Canarsie 40.63888 -73.91729 Private room 45
## 5309 Ditmars Steinway 40.77478 -73.91913 Private room 50
## 5310 Bedford-Stuyvesant 40.68769 -73.93074 Private room 72
## 5311 Ditmars Steinway 40.77376 -73.91855 Private room 50
## 5312 Bedford-Stuyvesant 40.68565 -73.93249 Private room 57
## 5313 West Village 40.73648 -74.00173 Entire home/apt 225
## 5314 Bedford-Stuyvesant 40.69291 -73.95142 Private room 80
## 5315 East Elmhurst 40.76287 -73.88367 Entire home/apt 120
## 5316 Williamsburg 40.71241 -73.96530 Entire home/apt 450
## 5317 Upper West Side 40.79903 -73.96451 Entire home/apt 249
## 5318 Washington Heights 40.83818 -73.94303 Entire home/apt 100
## 5319 Prospect-Lefferts Gardens 40.65806 -73.95815 Entire home/apt 225
## 5320 Fieldston 40.89022 -73.90390 Entire home/apt 95
## 5321 Williamsburg 40.70955 -73.95085 Entire home/apt 90
## 5322 Bedford-Stuyvesant 40.68056 -73.91510 Entire home/apt 101
## 5323 Williamsburg 40.71159 -73.94043 Entire home/apt 246
## 5324 Williamsburg 40.70859 -73.94639 Entire home/apt 120
## 5325 Downtown Brooklyn 40.69054 -73.99039 Entire home/apt 150
## 5326 Bay Ridge 40.63592 -74.02704 Entire home/apt 119
## 5327 Lower East Side 40.72174 -73.98501 Entire home/apt 150
## 5328 Upper East Side 40.77993 -73.94939 Private room 80
## 5329 Sheepshead Bay 40.58581 -73.93830 Entire home/apt 189
## 5330 Bedford-Stuyvesant 40.68082 -73.93599 Private room 90
## 5331 West Village 40.73123 -74.00428 Entire home/apt 200
## 5332 Harlem 40.82019 -73.95448 Entire home/apt 120
## 5333 SoHo 40.72569 -74.00331 Private room 149
## 5334 Upper East Side 40.76236 -73.96642 Entire home/apt 130
## 5335 Bushwick 40.69980 -73.93265 Private room 35
## 5336 Flatlands 40.62250 -73.92578 Entire home/apt 139
## 5337 Crown Heights 40.66920 -73.94739 Entire home/apt 100
## 5338 Upper West Side 40.78802 -73.97509 Private room 65
## 5339 Greenwich Village 40.73380 -73.99498 Entire home/apt 200
## 5340 Gramercy 40.73608 -73.98570 Entire home/apt 99
## 5341 Bedford-Stuyvesant 40.68470 -73.94523 Entire home/apt 115
## 5342 Arverne 40.58835 -73.79565 Private room 149
## 5343 Sunset Park 40.65957 -73.99253 Entire home/apt 135
## 5344 Prospect-Lefferts Gardens 40.65575 -73.96090 Private room 150
## 5345 Washington Heights 40.83602 -73.94294 Private room 105
## 5346 Columbia St 40.68404 -74.00400 Entire home/apt 75
## 5347 West Village 40.73824 -74.00027 Entire home/apt 175
## 5348 Bedford-Stuyvesant 40.68695 -73.92947 Entire home/apt 135
## 5349 Bedford-Stuyvesant 40.68989 -73.95428 Private room 72
## 5350 Williamsburg 40.70684 -73.94227 Private room 60
## 5351 Greenpoint 40.72241 -73.94179 Private room 97
## 5352 Hell's Kitchen 40.76052 -73.99115 Entire home/apt 860
## 5353 Hell's Kitchen 40.76053 -73.99002 Private room 200
## 5354 Upper West Side 40.78789 -73.97427 Entire home/apt 98
## 5355 Upper West Side 40.76908 -73.98483 Entire home/apt 87
## 5356 Midtown 40.74950 -73.98313 Entire home/apt 150
## 5357 Bushwick 40.69349 -73.90726 Private room 50
## 5358 Upper West Side 40.79370 -73.96590 Entire home/apt 185
## 5359 Lower East Side 40.72168 -73.98876 Entire home/apt 225
## 5360 Bedford-Stuyvesant 40.68374 -73.94200 Entire home/apt 151
## 5361 Greenpoint 40.73385 -73.95418 Entire home/apt 75
## 5362 Upper East Side 40.78124 -73.95227 Entire home/apt 110
## 5363 Bushwick 40.70818 -73.92256 Entire home/apt 150
## 5364 East Village 40.73263 -73.98728 Entire home/apt 145
## 5365 East Village 40.72471 -73.98673 Entire home/apt 250
## 5366 Elmhurst 40.74122 -73.88641 Private room 170
## 5367 Clinton Hill 40.68423 -73.96242 Entire home/apt 145
## 5368 East Village 40.72915 -73.98501 Entire home/apt 200
## 5369 Crown Heights 40.67490 -73.95166 Private room 50
## 5370 Upper West Side 40.79254 -73.97531 Private room 250
## 5371 Murray Hill 40.74712 -73.97434 Entire home/apt 229
## 5372 East Harlem 40.78697 -73.94999 Entire home/apt 129
## 5373 Hell's Kitchen 40.76665 -73.98660 Entire home/apt 250
## 5374 Upper West Side 40.79563 -73.96640 Entire home/apt 168
## 5375 Harlem 40.81419 -73.94717 Private room 80
## 5376 Crown Heights 40.66856 -73.95619 Entire home/apt 104
## 5377 Prospect-Lefferts Gardens 40.66021 -73.96001 Entire home/apt 100
## 5378 East Harlem 40.79887 -73.94178 Private room 95
## 5379 Flushing 40.75664 -73.79975 Private room 95
## 5380 Prospect Heights 40.67420 -73.96639 Entire home/apt 200
## 5381 East Village 40.73177 -73.98598 Entire home/apt 180
## 5382 Longwood 40.81321 -73.90259 Private room 100
## 5383 Upper West Side 40.77571 -73.97757 Entire home/apt 195
## 5384 Chelsea 40.74057 -73.99977 Entire home/apt 299
## 5385 Bushwick 40.69439 -73.90715 Private room 45
## 5386 Financial District 40.70940 -74.00278 Private room 139
## 5387 Nolita 40.72241 -73.99592 Entire home/apt 200
## 5388 Clifton 40.62050 -74.07451 Entire home/apt 70
## 5389 Greenpoint 40.72829 -73.95354 Private room 50
## 5390 Crown Heights 40.67658 -73.94683 Private room 42
## 5391 Greenpoint 40.71959 -73.94795 Entire home/apt 116
## 5392 Chelsea 40.73957 -74.00027 Entire home/apt 200
## 5393 East Village 40.72859 -73.97915 Private room 129
## 5394 Park Slope 40.67927 -73.97434 Private room 125
## 5395 Park Slope 40.67053 -73.98558 Private room 55
## 5396 Financial District 40.70943 -74.01405 Entire home/apt 200
## 5397 Fort Greene 40.69098 -73.97989 Entire home/apt 165
## 5398 West Village 40.73377 -74.00570 Entire home/apt 199
## 5399 Greenwich Village 40.73374 -73.99760 Entire home/apt 150
## 5400 Williamsburg 40.71751 -73.95895 Private room 95
## 5401 Williamsburg 40.70830 -73.94846 Private room 90
## 5402 Gramercy 40.73640 -73.98436 Entire home/apt 120
## 5403 Bedford-Stuyvesant 40.69458 -73.94314 Private room 40
## 5404 Williamsburg 40.71223 -73.94169 Private room 75
## 5405 Williamsburg 40.70617 -73.93674 Private room 68
## 5406 Bedford-Stuyvesant 40.68137 -73.95650 Private room 75
## 5407 Morningside Heights 40.81488 -73.96058 Entire home/apt 45
## 5408 East Harlem 40.79332 -73.94105 Shared room 45
## 5409 Kensington 40.64487 -73.97895 Private room 65
## 5410 South Slope 40.66714 -73.98401 Private room 75
## 5411 Hell's Kitchen 40.76008 -73.99200 Private room 84
## 5412 Chinatown 40.71672 -73.99184 Entire home/apt 130
## 5413 Prospect Heights 40.67652 -73.96442 Private room 50
## 5414 Upper West Side 40.78099 -73.97416 Private room 150
## 5415 East Flatbush 40.66165 -73.92536 Private room 95
## 5416 Murray Hill 40.74933 -73.97240 Entire home/apt 300
## 5417 Upper West Side 40.76904 -73.98494 Entire home/apt 113
## 5418 Harlem 40.82079 -73.95115 Entire home/apt 145
## 5419 Williamsburg 40.71981 -73.95558 Entire home/apt 150
## 5420 East Harlem 40.79882 -73.94266 Private room 90
## 5421 Chelsea 40.75076 -73.99588 Entire home/apt 95
## 5422 Upper East Side 40.77237 -73.95536 Entire home/apt 118
## 5423 Flatbush 40.64117 -73.96167 Entire home/apt 75
## 5424 Upper West Side 40.77595 -73.97966 Entire home/apt 225
## 5425 East Flatbush 40.66336 -73.92656 Private room 81
## 5426 Williamsburg 40.71267 -73.95721 Entire home/apt 190
## 5427 Crown Heights 40.67297 -73.95489 Private room 75
## 5428 Flatbush 40.65271 -73.96074 Private room 59
## 5429 Harlem 40.82035 -73.95529 Private room 99
## 5430 Williamsburg 40.71293 -73.95321 Entire home/apt 270
## 5431 Lower East Side 40.71957 -73.98630 Entire home/apt 140
## 5432 Financial District 40.70563 -74.00878 Entire home/apt 275
## 5433 Bushwick 40.68450 -73.91193 Entire home/apt 1000
## 5434 Greenpoint 40.72942 -73.95291 Entire home/apt 120
## 5435 Greenpoint 40.72300 -73.94237 Entire home/apt 125
## 5436 Williamsburg 40.71494 -73.93906 Private room 75
## 5437 East Village 40.72509 -73.97898 Entire home/apt 117
## 5438 Washington Heights 40.85749 -73.93258 Entire home/apt 80
## 5439 Long Island City 40.75120 -73.94019 Private room 60
## 5440 Fort Greene 40.69260 -73.97337 Private room 103
## 5441 Jackson Heights 40.74946 -73.89505 Entire home/apt 65
## 5442 Mott Haven 40.80866 -73.92069 Private room 45
## 5443 Briarwood 40.71009 -73.81960 Private room 70
## 5444 Washington Heights 40.85722 -73.93354 Entire home/apt 90
## 5445 Battery Park City 40.70797 -74.01693 Entire home/apt 225
## 5446 East Village 40.72186 -73.97663 Entire home/apt 125
## 5447 Williamsburg 40.71713 -73.95669 Entire home/apt 175
## 5448 East Harlem 40.79508 -73.93256 Entire home/apt 195
## 5449 Theater District 40.75848 -73.98414 Private room 130
## 5450 Crown Heights 40.67081 -73.95761 Private room 96
## 5451 Brooklyn Heights 40.69417 -73.99443 Private room 129
## 5452 Gramercy 40.73845 -73.98373 Entire home/apt 200
## 5453 Kips Bay 40.74533 -73.97956 Private room 95
## 5454 Theater District 40.75977 -73.98763 Entire home/apt 189
## 5455 Upper West Side 40.80075 -73.96770 Entire home/apt 450
## 5456 East Harlem 40.79480 -73.93457 Entire home/apt 264
## 5457 Elmhurst 40.74471 -73.88075 Private room 45
## 5458 Clinton Hill 40.68646 -73.95975 Entire home/apt 150
## 5459 East Harlem 40.79365 -73.93490 Entire home/apt 540
## 5460 Flatbush 40.65101 -73.95517 Private room 95
## 5461 Upper West Side 40.78829 -73.97053 Entire home/apt 230
## 5462 Astoria 40.76957 -73.91502 Private room 65
## 5463 Bushwick 40.68819 -73.91594 Private room 70
## 5464 Upper West Side 40.79407 -73.97513 Entire home/apt 160
## 5465 Williamsburg 40.71305 -73.94334 Entire home/apt 200
## 5466 Windsor Terrace 40.65527 -73.97853 Entire home/apt 138
## 5467 Clason Point 40.81192 -73.85334 Entire home/apt 155
## 5468 Clason Point 40.81225 -73.85349 Private room 75
## 5469 Harlem 40.82546 -73.94629 Private room 39
## 5470 Crown Heights 40.67042 -73.95608 Entire home/apt 115
## 5471 SoHo 40.72699 -74.00120 Entire home/apt 110
## 5472 Upper West Side 40.77323 -73.98014 Private room 100
## 5473 Battery Park City 40.71185 -74.01719 Entire home/apt 225
## 5474 Flatlands 40.61938 -73.92471 Entire home/apt 125
## 5475 Gramercy 40.73371 -73.98576 Private room 150
## 5476 Bedford-Stuyvesant 40.68295 -73.91472 Entire home/apt 199
## 5477 East Village 40.73152 -73.98676 Entire home/apt 250
## 5478 Bedford-Stuyvesant 40.68043 -73.93705 Entire home/apt 210
## 5479 Stapleton 40.63628 -74.07763 Entire home/apt 180
## 5480 East Village 40.72777 -73.99005 Entire home/apt 129
## 5481 East Harlem 40.79347 -73.95029 Private room 90
## 5482 Harlem 40.82257 -73.95565 Private room 50
## 5483 Greenwich Village 40.72818 -73.99810 Entire home/apt 140
## 5484 Bedford-Stuyvesant 40.68692 -73.93113 Entire home/apt 150
## 5485 East Village 40.72088 -73.98149 Entire home/apt 233
## 5486 East Village 40.73057 -73.98726 Entire home/apt 170
## 5487 East Flatbush 40.66303 -73.92526 Private room 60
## 5488 Crown Heights 40.67230 -73.95951 Entire home/apt 200
## 5489 Cobble Hill 40.68781 -73.99415 Entire home/apt 160
## 5490 Gramercy 40.73771 -73.98058 Entire home/apt 150
## 5491 Williamsburg 40.71276 -73.95114 Entire home/apt 140
## 5492 Flatbush 40.63762 -73.96155 Private room 65
## 5493 Carroll Gardens 40.67845 -73.99983 Private room 60
## 5494 Bay Ridge 40.63562 -74.02350 Entire home/apt 130
## 5495 Clinton Hill 40.68316 -73.96163 Entire home/apt 103
## 5496 Williamsburg 40.70974 -73.95612 Private room 89
## 5497 Upper West Side 40.78789 -73.97679 Private room 50
## 5498 Woodside 40.74433 -73.91172 Entire home/apt 150
## 5499 Midtown 40.74819 -73.98560 Entire home/apt 240
## 5500 Roosevelt Island 40.75592 -73.95515 Entire home/apt 1400
## 5501 Jackson Heights 40.74892 -73.88883 Entire home/apt 200
## 5502 Harlem 40.80950 -73.95395 Private room 88
## 5503 Harlem 40.80120 -73.95424 Shared room 75
## 5504 Chelsea 40.73923 -73.99827 Entire home/apt 500
## 5505 Chelsea 40.74496 -73.99934 Entire home/apt 125
## 5506 Upper West Side 40.80311 -73.96648 Private room 75
## 5507 Gramercy 40.73731 -73.98338 Entire home/apt 130
## 5508 East Village 40.73256 -73.98558 Entire home/apt 170
## 5509 Chelsea 40.75319 -74.00159 Entire home/apt 300
## 5510 Bedford-Stuyvesant 40.68084 -73.94779 Entire home/apt 115
## 5511 Bushwick 40.68760 -73.91670 Entire home/apt 93
## 5512 Bedford-Stuyvesant 40.68313 -73.94130 Entire home/apt 119
## 5513 Lower East Side 40.71421 -73.98793 Entire home/apt 180
## 5514 Harlem 40.81453 -73.94807 Entire home/apt 226
## 5515 Park Slope 40.67814 -73.97780 Entire home/apt 155
## 5516 West Village 40.73455 -74.00614 Entire home/apt 115
## 5517 Flatbush 40.64119 -73.96295 Private room 50
## 5518 Morningside Heights 40.80395 -73.96436 Entire home/apt 600
## 5519 Morningside Heights 40.80452 -73.96393 Private room 200
## 5520 Clinton Hill 40.68329 -73.96090 Entire home/apt 157
## 5521 Bedford-Stuyvesant 40.68350 -73.92754 Entire home/apt 145
## 5522 Glendale 40.70591 -73.89264 Private room 95
## 5523 Harlem 40.80489 -73.95759 Entire home/apt 115
## 5524 Astoria 40.76294 -73.91545 Private room 65
## 5525 Harlem 40.80655 -73.94854 Entire home/apt 275
## 5526 Astoria 40.75568 -73.91578 Private room 250
## 5527 Little Italy 40.72023 -73.99693 Private room 95
## 5528 Park Slope 40.66972 -73.97954 Entire home/apt 185
## 5529 East Harlem 40.80732 -73.93775 Private room 55
## 5530 Nolita 40.72322 -73.99351 Entire home/apt 350
## 5531 Lower East Side 40.71891 -73.98592 Private room 170
## 5532 Park Slope 40.66723 -73.98043 Entire home/apt 100
## 5533 Washington Heights 40.84787 -73.93306 Private room 36
## 5534 Gowanus 40.68163 -73.98088 Private room 60
## 5535 Bedford-Stuyvesant 40.67918 -73.95318 Private room 125
## 5536 Williamsburg 40.71908 -73.95675 Entire home/apt 120
## 5537 Financial District 40.70457 -74.00733 Shared room 90
## 5538 Harlem 40.81586 -73.94117 Entire home/apt 129
## 5539 Elmhurst 40.74561 -73.88514 Entire home/apt 78
## 5540 Lower East Side 40.72102 -73.98622 Entire home/apt 120
## 5541 Greenwich Village 40.72924 -74.00148 Private room 99
## 5542 Norwood 40.87786 -73.87641 Private room 50
## 5543 Washington Heights 40.83456 -73.94344 Private room 16
## 5544 University Heights 40.85696 -73.91439 Private room 47
## 5545 Bedford-Stuyvesant 40.68693 -73.95725 Entire home/apt 150
## 5546 Lighthouse Hill 40.57718 -74.13981 Entire home/apt 200
## 5547 Crown Heights 40.66649 -73.92855 Entire home/apt 125
## 5548 Crown Heights 40.67441 -73.92371 Entire home/apt 60
## 5549 Jackson Heights 40.75250 -73.88592 Private room 200
## 5550 Flatbush 40.62918 -73.96348 Entire home/apt 100
## 5551 Astoria 40.76269 -73.90816 Private room 99
## 5552 Washington Heights 40.83428 -73.94738 Private room 75
## 5553 Williamsburg 40.70588 -73.95422 Private room 140
## 5554 Concourse Village 40.83331 -73.91742 Entire home/apt 90
## 5555 Theater District 40.75974 -73.98660 Shared room 59
## 5556 East Village 40.73118 -73.98794 Entire home/apt 111
## 5557 Washington Heights 40.83469 -73.93961 Entire home/apt 80
## 5558 Crown Heights 40.67152 -73.92687 Private room 80
## 5559 Harlem 40.81118 -73.93977 Private room 50
## 5560 Chinatown 40.71399 -73.99107 Entire home/apt 300
## 5561 Fort Greene 40.68780 -73.97167 Entire home/apt 90
## 5562 East Village 40.72087 -73.97952 Private room 119
## 5563 Astoria 40.76530 -73.92661 Private room 69
## 5564 Upper West Side 40.79080 -73.97723 Entire home/apt 260
## 5565 Greenpoint 40.72414 -73.95355 Entire home/apt 185
## 5566 Jackson Heights 40.75170 -73.89478 Entire home/apt 100
## 5567 Upper West Side 40.77222 -73.98923 Shared room 85
## 5568 SoHo 40.71972 -73.99986 Private room 135
## 5569 Park Slope 40.66898 -73.97831 Private room 169
## 5570 Bedford-Stuyvesant 40.68852 -73.92393 Private room 38
## 5571 Bushwick 40.70102 -73.92864 Private room 90
## 5572 Harlem 40.82420 -73.93789 Private room 45
## 5573 Windsor Terrace 40.65010 -73.97985 Entire home/apt 149
## 5574 Clinton Hill 40.68436 -73.96223 Entire home/apt 200
## 5575 Roosevelt Island 40.76365 -73.94914 Entire home/apt 125
## 5576 Greenpoint 40.72607 -73.95103 Private room 65
## 5577 Greenpoint 40.72527 -73.95016 Entire home/apt 174
## 5578 Bedford-Stuyvesant 40.69361 -73.93848 Private room 89
## 5579 South Slope 40.66202 -73.98589 Entire home/apt 150
## 5580 Prospect-Lefferts Gardens 40.66042 -73.95915 Private room 75
## 5581 Ozone Park 40.68440 -73.84720 Private room 58
## 5582 Park Slope 40.67017 -73.97752 Private room 103
## 5583 Hell's Kitchen 40.76331 -73.99262 Entire home/apt 383
## 5584 Clinton Hill 40.68454 -73.96382 Private room 40
## 5585 Long Island City 40.75977 -73.92904 Private room 76
## 5586 Upper West Side 40.79408 -73.97570 Private room 170
## 5587 East Harlem 40.80617 -73.93868 Private room 45
## 5588 Bedford-Stuyvesant 40.69587 -73.95114 Private room 100
## 5589 SoHo 40.72525 -73.99636 Entire home/apt 199
## 5590 Inwood 40.87279 -73.91991 Entire home/apt 99
## 5591 Sunset Park 40.64047 -74.00842 Private room 39
## 5592 Ridgewood 40.70046 -73.90692 Entire home/apt 60
## 5593 Bedford-Stuyvesant 40.68439 -73.92811 Entire home/apt 130
## 5594 Williamsburg 40.71236 -73.93790 Entire home/apt 200
## 5595 East Flatbush 40.64434 -73.94831 Private room 65
## 5596 Upper East Side 40.77462 -73.95461 Private room 105
## 5597 East Flatbush 40.65301 -73.95241 Entire home/apt 115
## 5598 Harlem 40.81575 -73.95370 Entire home/apt 145
## 5599 Greenpoint 40.73357 -73.95439 Entire home/apt 75
## 5600 DUMBO 40.70452 -73.98583 Entire home/apt 250
## 5601 East Harlem 40.79410 -73.94045 Private room 80
## 5602 SoHo 40.71995 -73.99975 Private room 120
## 5603 Williamsburg 40.71413 -73.94868 Private room 100
## 5604 Hell's Kitchen 40.75735 -73.99603 Private room 125
## 5605 Williamsburg 40.71009 -73.96471 Entire home/apt 132
## 5606 South Slope 40.66693 -73.98801 Entire home/apt 225
## 5607 Williamsburg 40.70808 -73.94757 Entire home/apt 175
## 5608 Chinatown 40.71585 -73.99014 Entire home/apt 225
## 5609 Bedford-Stuyvesant 40.69013 -73.92805 Entire home/apt 215
## 5610 Red Hook 40.67815 -74.01443 Entire home/apt 300
## 5611 Harlem 40.80856 -73.94573 Entire home/apt 130
## 5612 Springfield Gardens 40.67425 -73.75796 Entire home/apt 110
## 5613 Eastchester 40.88060 -73.83433 Private room 75
## 5614 Greenpoint 40.72631 -73.94127 Private room 36
## 5615 Bedford-Stuyvesant 40.68634 -73.92516 Entire home/apt 299
## 5616 East Village 40.72878 -73.98521 Entire home/apt 200
## 5617 East New York 40.65741 -73.87854 Entire home/apt 110
## 5618 Williamsburg 40.71381 -73.96065 Entire home/apt 160
## 5619 Bedford-Stuyvesant 40.68407 -73.95487 Entire home/apt 152
## 5620 Clinton Hill 40.69210 -73.96797 Entire home/apt 145
## 5621 Bushwick 40.70794 -73.92168 Private room 120
## 5622 Bushwick 40.70410 -73.92476 Entire home/apt 84
## 5623 Upper East Side 40.76965 -73.96258 Entire home/apt 160
## 5624 Bedford-Stuyvesant 40.68387 -73.95373 Entire home/apt 150
## 5625 Forest Hills 40.71291 -73.84678 Entire home/apt 180
## 5626 Eastchester 40.88009 -73.83442 Private room 68
## 5627 SoHo 40.72651 -74.00014 Entire home/apt 125
## 5628 Bushwick 40.69216 -73.90859 Private room 25
## 5629 Bedford-Stuyvesant 40.68663 -73.93790 Entire home/apt 155
## 5630 East Village 40.73131 -73.98321 Private room 105
## 5631 Canarsie 40.63056 -73.89043 Entire home/apt 75
## 5632 Harlem 40.82360 -73.94743 Private room 80
## 5633 Lower East Side 40.71273 -73.98820 Private room 72
## 5634 Bedford-Stuyvesant 40.68641 -73.94735 Private room 52
## 5635 Carroll Gardens 40.67335 -73.99886 Entire home/apt 125
## 5636 Upper West Side 40.78156 -73.97796 Private room 85
## 5637 Windsor Terrace 40.65157 -73.97383 Private room 58
## 5638 Greenpoint 40.72122 -73.94121 Private room 100
## 5639 East Village 40.72333 -73.98838 Private room 65
## 5640 Greenpoint 40.72452 -73.93916 Entire home/apt 300
## 5641 Bushwick 40.70569 -73.92268 Private room 40
## 5642 Astoria 40.76177 -73.91359 Entire home/apt 110
## 5643 Bay Ridge 40.63745 -74.02534 Private room 85
## 5644 South Slope 40.66617 -73.98627 Entire home/apt 158
## 5645 Crown Heights 40.67284 -73.95210 Private room 65
## 5646 Hell's Kitchen 40.76032 -73.99076 Private room 100
## 5647 Williamsburg 40.71673 -73.94316 Private room 64
## 5648 Carroll Gardens 40.67823 -73.99515 Entire home/apt 395
## 5649 Sunnyside 40.74947 -73.91472 Entire home/apt 120
## 5650 Norwood 40.87184 -73.88622 Private room 51
## 5651 Two Bridges 40.70989 -74.00105 Entire home/apt 149
## 5652 Williamsburg 40.71050 -73.94380 Private room 65
## 5653 Forest Hills 40.71293 -73.84915 Private room 70
## 5654 Upper West Side 40.79145 -73.97709 Entire home/apt 170
## 5655 Financial District 40.70499 -74.00819 Entire home/apt 150
## 5656 East Harlem 40.80738 -73.93707 Entire home/apt 75
## 5657 Upper West Side 40.78732 -73.97489 Private room 100
## 5658 Crown Heights 40.67673 -73.93620 Private room 38
## 5659 Gramercy 40.73327 -73.98503 Entire home/apt 200
## 5660 Hell's Kitchen 40.76468 -73.98514 Entire home/apt 145
## 5661 Crown Heights 40.67822 -73.95883 Entire home/apt 150
## 5662 Long Island City 40.74264 -73.95122 Entire home/apt 200
## 5663 Bedford-Stuyvesant 40.67879 -73.93653 Entire home/apt 125
## 5664 Murray Hill 40.74713 -73.98075 Private room 175
## 5665 Cobble Hill 40.68830 -73.99132 Entire home/apt 180
## 5666 East Village 40.72884 -73.98277 Entire home/apt 175
## 5667 Chelsea 40.75097 -73.99562 Entire home/apt 175
## 5668 Kensington 40.64449 -73.97238 Private room 50
## 5669 Flatbush 40.64335 -73.96316 Entire home/apt 109
## 5670 Bedford-Stuyvesant 40.68706 -73.93077 Private room 67
## 5671 Bedford-Stuyvesant 40.68707 -73.93247 Private room 57
## 5672 Bedford-Stuyvesant 40.68627 -73.93131 Private room 77
## 5673 Bedford-Stuyvesant 40.69485 -73.93387 Private room 80
## 5674 Flatbush 40.63146 -73.96486 Entire home/apt 85
## 5675 Bedford-Stuyvesant 40.69562 -73.93792 Private room 86
## 5676 Flatbush 40.63268 -73.96059 Private room 120
## 5677 Downtown Brooklyn 40.69682 -73.98370 Entire home/apt 140
## 5678 Fort Greene 40.68786 -73.97339 Entire home/apt 300
## 5679 Harlem 40.82498 -73.93629 Private room 90
## 5680 Harlem 40.81892 -73.94647 Private room 70
## 5681 Harlem 40.80985 -73.94348 Private room 90
## 5682 Lower East Side 40.72005 -73.98649 Entire home/apt 200
## 5683 East Village 40.72934 -73.98603 Entire home/apt 135
## 5684 Bushwick 40.70495 -73.92090 Private room 37
## 5685 Williamsburg 40.71243 -73.95655 Private room 60
## 5686 Upper West Side 40.77607 -73.98035 Entire home/apt 419
## 5687 Ridgewood 40.70293 -73.90771 Entire home/apt 130
## 5688 Windsor Terrace 40.65282 -73.97394 Entire home/apt 180
## 5689 Upper East Side 40.76968 -73.95930 Entire home/apt 160
## 5690 Greenpoint 40.72126 -73.94328 Entire home/apt 125
## 5691 Bedford-Stuyvesant 40.68514 -73.93207 Entire home/apt 100
## 5692 Forest Hills 40.71146 -73.84677 Private room 65
## 5693 Sunset Park 40.66355 -73.99547 Entire home/apt 140
## 5694 Sunnyside 40.74059 -73.91985 Private room 79
## 5695 Williamsburg 40.71794 -73.95682 Private room 125
## 5696 Chelsea 40.74411 -74.00204 Entire home/apt 115
## 5697 Hell's Kitchen 40.75550 -73.99260 Private room 100
## 5698 Crown Heights 40.67205 -73.95092 Private room 90
## 5699 Harlem 40.80709 -73.94952 Entire home/apt 135
## 5700 Prospect-Lefferts Gardens 40.66079 -73.95693 Private room 50
## 5701 Prospect Heights 40.67579 -73.96790 Private room 71
## 5702 Ridgewood 40.70599 -73.89755 Entire home/apt 80
## 5703 Hell's Kitchen 40.76444 -73.98965 Private room 103
## 5704 Upper West Side 40.79545 -73.96595 Entire home/apt 250
## 5705 East Village 40.72784 -73.99104 Entire home/apt 219
## 5706 Canarsie 40.62864 -73.89265 Entire home/apt 225
## 5707 East Harlem 40.79591 -73.93316 Entire home/apt 99
## 5708 Sunset Park 40.64076 -74.02240 Private room 35
## 5709 Upper East Side 40.76805 -73.95424 Private room 90
## 5710 Ridgewood 40.69518 -73.90380 Private room 47
## 5711 Crown Heights 40.67495 -73.93845 Private room 75
## 5712 Windsor Terrace 40.65337 -73.97483 Entire home/apt 170
## 5713 Flatbush 40.63512 -73.95815 Entire home/apt 150
## 5714 Flatbush 40.63995 -73.96196 Shared room 30
## 5715 Upper West Side 40.78398 -73.97795 Private room 119
## 5716 Midwood 40.62510 -73.96163 Private room 40
## 5717 Fort Greene 40.68880 -73.97635 Entire home/apt 85
## 5718 Williamsburg 40.71007 -73.95653 Private room 99
## 5719 Upper West Side 40.78085 -73.98471 Entire home/apt 250
## 5720 Lower East Side 40.71906 -73.98433 Private room 79
## 5721 Williamsburg 40.72022 -73.96055 Private room 60
## 5722 Bedford-Stuyvesant 40.68050 -73.93775 Entire home/apt 115
## 5723 Ditmars Steinway 40.77375 -73.91646 Private room 90
## 5724 Bushwick 40.70732 -73.91926 Private room 65
## 5725 Bedford-Stuyvesant 40.69560 -73.94827 Private room 65
## 5726 Harlem 40.80849 -73.94460 Entire home/apt 131
## 5727 Bushwick 40.69917 -73.93146 Entire home/apt 150
## 5728 Williamsburg 40.70950 -73.94945 Private room 55
## 5729 Crown Heights 40.67412 -73.93833 Private room 70
## 5730 Astoria 40.75637 -73.92132 Entire home/apt 160
## 5731 Bedford-Stuyvesant 40.69420 -73.95269 Entire home/apt 95
## 5732 Harlem 40.81619 -73.94003 Entire home/apt 99
## 5733 SoHo 40.72440 -73.99763 Entire home/apt 500
## 5734 Bushwick 40.69358 -73.91914 Private room 35
## 5735 Ridgewood 40.70780 -73.90177 Private room 50
## 5736 Crown Heights 40.67599 -73.93995 Private room 77
## 5737 Williamsburg 40.71961 -73.95837 Entire home/apt 380
## 5738 Flatbush 40.64251 -73.95970 Private room 65
## 5739 Lower East Side 40.71814 -73.98411 Entire home/apt 150
## 5740 Hell's Kitchen 40.76239 -73.99227 Entire home/apt 125
## 5741 Bedford-Stuyvesant 40.68312 -73.92507 Entire home/apt 199
## 5742 Williamsburg 40.70969 -73.96225 Private room 150
## 5743 West Village 40.73314 -74.00475 Entire home/apt 145
## 5744 Crown Heights 40.67196 -73.93824 Private room 70
## 5745 Bedford-Stuyvesant 40.68454 -73.93178 Entire home/apt 120
## 5746 Harlem 40.80606 -73.95061 Private room 86
## 5747 Upper East Side 40.76610 -73.95730 Entire home/apt 139
## 5748 Bay Ridge 40.62433 -74.02892 Private room 85
## 5749 Upper East Side 40.77065 -73.95064 Entire home/apt 94
## 5750 Bedford-Stuyvesant 40.69389 -73.93058 Entire home/apt 116
## 5751 Prospect-Lefferts Gardens 40.66018 -73.96005 Private room 72
## 5752 Park Slope 40.67925 -73.97463 Entire home/apt 95
## 5753 Bedford-Stuyvesant 40.69525 -73.93768 Private room 100
## 5754 Murray Hill 40.74643 -73.97536 Entire home/apt 200
## 5755 Bushwick 40.69233 -73.90579 Private room 72
## 5756 Inwood 40.86496 -73.92620 Entire home/apt 100
## 5757 SoHo 40.72149 -73.99815 Entire home/apt 900
## 5758 Sunnyside 40.74944 -73.91361 Private room 80
## 5759 Greenpoint 40.72401 -73.94016 Entire home/apt 75
## 5760 Upper East Side 40.76169 -73.95682 Entire home/apt 92
## 5761 East Village 40.72956 -73.98275 Entire home/apt 160
## 5762 Midwood 40.62735 -73.95704 Private room 50
## 5763 East Village 40.73062 -73.99122 Entire home/apt 350
## 5764 South Slope 40.66560 -73.98575 Entire home/apt 135
## 5765 Financial District 40.70956 -74.01341 Entire home/apt 160
## 5766 Kips Bay 40.74440 -73.98031 Entire home/apt 270
## 5767 Bedford-Stuyvesant 40.67890 -73.94001 Entire home/apt 129
## 5768 Greenwich Village 40.73293 -73.99782 Entire home/apt 180
## 5769 NoHo 40.72577 -73.99337 Entire home/apt 350
## 5770 Williamsburg 40.71564 -73.95107 Private room 75
## 5771 Sunset Park 40.66423 -73.99565 Entire home/apt 119
## 5772 Tompkinsville 40.63481 -74.09591 Entire home/apt 99
## 5773 Prospect-Lefferts Gardens 40.66066 -73.95965 Entire home/apt 120
## 5774 Crown Heights 40.67417 -73.94028 Private room 73
## 5775 Fort Greene 40.68526 -73.97154 Entire home/apt 500
## 5776 Greenwich Village 40.73473 -73.99244 Entire home/apt 225
## 5777 Prospect-Lefferts Gardens 40.66302 -73.95198 Entire home/apt 275
## 5778 Ditmars Steinway 40.76989 -73.90735 Private room 50
## 5779 Lower East Side 40.71329 -73.99047 Shared room 40
## 5780 Williamsburg 40.71543 -73.94159 Entire home/apt 115
## 5781 Kingsbridge 40.88399 -73.89502 Entire home/apt 110
## 5782 Crown Heights 40.67658 -73.94440 Private room 100
## 5783 Williamsburg 40.71722 -73.95862 Entire home/apt 150
## 5784 Greenpoint 40.72309 -73.93767 Entire home/apt 200
## 5785 Washington Heights 40.84261 -73.93771 Entire home/apt 75
## 5786 Ridgewood 40.70729 -73.91697 Entire home/apt 98
## 5787 Bedford-Stuyvesant 40.68266 -73.91971 Entire home/apt 199
## 5788 Harlem 40.81422 -73.94844 Entire home/apt 109
## 5789 Harlem 40.80653 -73.95194 Entire home/apt 110
## 5790 Bedford-Stuyvesant 40.69527 -73.94786 Private room 59
## 5791 Bushwick 40.70071 -73.92913 Entire home/apt 95
## 5792 Chelsea 40.74588 -74.00055 Entire home/apt 159
## 5793 Midtown 40.75576 -73.96548 Entire home/apt 225
## 5794 Boerum Hill 40.68449 -73.98524 Entire home/apt 195
## 5795 Astoria 40.76273 -73.90579 Entire home/apt 96
## 5796 Clinton Hill 40.68275 -73.96542 Entire home/apt 73
## 5797 Upper West Side 40.78883 -73.97616 Private room 88
## 5798 Williamsburg 40.70013 -73.95165 Entire home/apt 90
## 5799 Crown Heights 40.67210 -73.95372 Entire home/apt 99
## 5800 Williamsburg 40.71752 -73.94187 Shared room 150
## 5801 Bedford-Stuyvesant 40.68724 -73.94218 Private room 35
## 5802 Bedford-Stuyvesant 40.68542 -73.95184 Entire home/apt 1050
## 5803 South Slope 40.66752 -73.98892 Entire home/apt 175
## 5804 Chelsea 40.74724 -74.00355 Entire home/apt 395
## 5805 Woodside 40.74260 -73.90706 Entire home/apt 195
## 5806 Bay Ridge 40.62605 -74.03014 Private room 49
## 5807 Upper East Side 40.77065 -73.95163 Entire home/apt 150
## 5808 Upper West Side 40.78278 -73.97437 Entire home/apt 250
## 5809 Williamsburg 40.70680 -73.93772 Entire home/apt 150
## 5810 Upper West Side 40.77715 -73.98235 Entire home/apt 260
## 5811 Flushing 40.73303 -73.79736 Entire home/apt 100
## 5812 East Harlem 40.78627 -73.94316 Private room 55
## 5813 Chelsea 40.74366 -73.99721 Entire home/apt 275
## 5814 West Village 40.73408 -74.00570 Private room 110
## 5815 Clinton Hill 40.69191 -73.96624 Entire home/apt 150
## 5816 Bushwick 40.69108 -73.91443 Private room 80
## 5817 Jamaica 40.68520 -73.79620 Entire home/apt 89
## 5818 East Village 40.72685 -73.98638 Entire home/apt 280
## 5819 Woodside 40.74808 -73.90404 Private room 100
## 5820 Greenpoint 40.73235 -73.95106 Private room 80
## 5821 Bedford-Stuyvesant 40.69496 -73.93949 Private room 70
## 5822 Greenpoint 40.73093 -73.95332 Private room 75
## 5823 Williamsburg 40.71295 -73.96230 Private room 80
## 5824 Washington Heights 40.85440 -73.93091 Shared room 41
## 5825 West Village 40.73545 -74.00097 Entire home/apt 195
## 5826 Upper West Side 40.77881 -73.97726 Entire home/apt 250
## 5827 East Village 40.73175 -73.98756 Entire home/apt 96
## 5828 Financial District 40.70948 -74.00654 Private room 98
## 5829 Bushwick 40.69271 -73.92535 Entire home/apt 140
## 5830 Williamsburg 40.70028 -73.95439 Private room 99
## 5831 West Village 40.73539 -74.00818 Entire home/apt 175
## 5832 Upper West Side 40.78245 -73.98163 Entire home/apt 120
## 5833 Morningside Heights 40.80490 -73.96558 Private room 89
## 5834 Bushwick 40.69863 -73.91235 Private room 90
## 5835 Fort Greene 40.68796 -73.97735 Entire home/apt 178
## 5836 Crown Heights 40.67027 -73.94033 Entire home/apt 210
## 5837 Harlem 40.81774 -73.94595 Entire home/apt 150
## 5838 Harlem 40.80936 -73.94454 Entire home/apt 149
## 5839 Hell's Kitchen 40.76443 -73.99184 Entire home/apt 225
## 5840 Upper West Side 40.76810 -73.98377 Entire home/apt 2695
## 5841 Howard Beach 40.65443 -73.84605 Entire home/apt 63
## 5842 Hell's Kitchen 40.76842 -73.98589 Entire home/apt 150
## 5843 Crown Heights 40.67566 -73.93944 Entire home/apt 106
## 5844 Fort Greene 40.68562 -73.96930 Entire home/apt 165
## 5845 Crown Heights 40.67009 -73.93290 Private room 75
## 5846 Astoria 40.76496 -73.91169 Private room 39
## 5847 Astoria 40.75896 -73.91530 Private room 39
## 5848 Bedford-Stuyvesant 40.68676 -73.95801 Shared room 30
## 5849 Lower East Side 40.72156 -73.98712 Private room 70
## 5850 East Harlem 40.79608 -73.93819 Private room 100
## 5851 Astoria 40.76369 -73.92291 Entire home/apt 125
## 5852 Astoria 40.76386 -73.91002 Entire home/apt 110
## 5853 Greenpoint 40.73527 -73.95398 Entire home/apt 145
## 5854 Upper West Side 40.76845 -73.98320 Private room 112
## 5855 Bedford-Stuyvesant 40.68690 -73.92254 Private room 69
## 5856 Upper East Side 40.76751 -73.96309 Entire home/apt 300
## 5857 Midtown 40.75195 -73.97191 Private room 260
## 5858 Ridgewood 40.70439 -73.91111 Private room 49
## 5859 Tribeca 40.71743 -74.00623 Entire home/apt 215
## 5860 East Harlem 40.80751 -73.94097 Entire home/apt 200
## 5861 Bushwick 40.69341 -73.92266 Entire home/apt 100
## 5862 Harlem 40.80469 -73.94594 Entire home/apt 1000
## 5863 Chelsea 40.75238 -73.99450 Entire home/apt 120
## 5864 Harlem 40.83048 -73.94370 Entire home/apt 310
## 5865 Gowanus 40.67044 -73.99157 Private room 70
## 5866 Williamsburg 40.71484 -73.96742 Entire home/apt 195
## 5867 Crown Heights 40.67484 -73.95751 Entire home/apt 110
## 5868 Midtown 40.75062 -73.98247 Entire home/apt 75
## 5869 Clason Point 40.81231 -73.85535 Shared room 45
## 5870 Lower East Side 40.72184 -73.98755 Entire home/apt 165
## 5871 Ridgewood 40.70463 -73.90132 Entire home/apt 150
## 5872 Prospect-Lefferts Gardens 40.65681 -73.94840 Private room 80
## 5873 Lower East Side 40.71912 -73.98630 Entire home/apt 180
## 5874 Bedford-Stuyvesant 40.68206 -73.95441 Private room 80
## 5875 Bushwick 40.70741 -73.92239 Private room 60
## 5876 Greenwich Village 40.73341 -73.99489 Entire home/apt 149
## 5877 Bedford-Stuyvesant 40.69724 -73.94914 Private room 53
## 5878 Kips Bay 40.74092 -73.97817 Entire home/apt 200
## 5879 Chelsea 40.74305 -73.99733 Entire home/apt 160
## 5880 East Village 40.72833 -73.98917 Private room 199
## 5881 Lower East Side 40.71281 -73.99174 Entire home/apt 140
## 5882 East Village 40.73045 -73.98392 Entire home/apt 199
## 5883 Greenwich Village 40.73032 -73.99976 Entire home/apt 190
## 5884 Sunset Park 40.65031 -74.00239 Entire home/apt 125
## 5885 Upper East Side 40.76051 -73.96083 Entire home/apt 145
## 5886 East Village 40.73046 -73.98808 Entire home/apt 150
## 5887 Forest Hills 40.72690 -73.83952 Private room 95
## 5888 Williamsburg 40.70407 -73.93562 Private room 100
## 5889 Crown Heights 40.67391 -73.94720 Private room 99
## 5890 Greenpoint 40.72230 -73.94938 Entire home/apt 130
## 5891 Williamsburg 40.71613 -73.95336 Private room 56
## 5892 Greenwich Village 40.73175 -73.99518 Entire home/apt 450
## 5893 East Harlem 40.80161 -73.94277 Private room 75
## 5894 Brooklyn Heights 40.69276 -73.99630 Private room 240
## 5895 Greenpoint 40.72550 -73.94090 Entire home/apt 129
## 5896 East Flatbush 40.64768 -73.95138 Private room 45
## 5897 Hell's Kitchen 40.75550 -73.99369 Entire home/apt 259
## 5898 East Harlem 40.78907 -73.94877 Entire home/apt 75
## 5899 Kingsbridge 40.86809 -73.90201 Private room 37
## 5900 Canarsie 40.63621 -73.89407 Entire home/apt 210
## 5901 Chelsea 40.74920 -73.99847 Entire home/apt 199
## 5902 Clinton Hill 40.68566 -73.96022 Entire home/apt 189
## 5903 Long Island City 40.74742 -73.94647 Private room 58
## 5904 Bedford-Stuyvesant 40.68531 -73.95185 Private room 60
## 5905 Long Island City 40.74853 -73.95068 Entire home/apt 190
## 5906 Clinton Hill 40.68147 -73.96488 Entire home/apt 139
## 5907 Hell's Kitchen 40.76502 -73.98932 Entire home/apt 125
## 5908 Williamsburg 40.71603 -73.95470 Private room 94
## 5909 Upper East Side 40.77254 -73.96193 Entire home/apt 100
## 5910 East Village 40.72607 -73.98867 Private room 149
## 5911 East Village 40.72603 -73.98897 Private room 128
## 5912 Bedford-Stuyvesant 40.68568 -73.95266 Entire home/apt 160
## 5913 Park Slope 40.66651 -73.97922 Entire home/apt 160
## 5914 East Village 40.72627 -73.98915 Private room 110
## 5915 Williamsburg 40.71436 -73.96362 Entire home/apt 285
## 5916 Bedford-Stuyvesant 40.67920 -73.90937 Entire home/apt 75
## 5917 Chelsea 40.74039 -74.00356 Entire home/apt 650
## 5918 Harlem 40.81599 -73.94676 Entire home/apt 133
## 5919 East Village 40.73073 -73.98105 Entire home/apt 149
## 5920 Upper East Side 40.78535 -73.94997 Entire home/apt 210
## 5921 Upper West Side 40.78667 -73.96924 Entire home/apt 200
## 5922 Chelsea 40.74751 -74.00086 Private room 110
## 5923 Hell's Kitchen 40.75579 -73.99154 Entire home/apt 375
## 5924 Lower East Side 40.71845 -73.98600 Entire home/apt 95
## 5925 Harlem 40.81618 -73.94517 Entire home/apt 94
## 5926 South Slope 40.66310 -73.98603 Entire home/apt 120
## 5927 Williamsburg 40.71104 -73.95917 Entire home/apt 150
## 5928 Chelsea 40.73947 -74.00114 Entire home/apt 160
## 5929 Morningside Heights 40.80801 -73.95820 Entire home/apt 132
## 5930 Bedford-Stuyvesant 40.68450 -73.93968 Entire home/apt 102
## 5931 Bedford-Stuyvesant 40.69330 -73.94976 Entire home/apt 85
## 5932 Fort Greene 40.69172 -73.97030 Entire home/apt 142
## 5933 Astoria 40.76261 -73.91767 Private room 70
## 5934 Bushwick 40.69890 -73.92904 Entire home/apt 200
## 5935 Greenpoint 40.72603 -73.94147 Entire home/apt 199
## 5936 East Flatbush 40.65337 -73.91229 Entire home/apt 100
## 5937 Williamsburg 40.71874 -73.94055 Entire home/apt 123
## 5938 Flatlands 40.62677 -73.93260 Entire home/apt 175
## 5939 Upper East Side 40.76810 -73.96018 Private room 100
## 5940 Harlem 40.80733 -73.95642 Private room 57
## 5941 Crown Heights 40.67122 -73.91813 Private room 39
## 5942 Morningside Heights 40.80670 -73.95799 Private room 107
## 5943 Flatiron District 40.73956 -73.98774 Entire home/apt 2000
## 5944 Flatbush 40.64507 -73.95933 Private room 69
## 5945 Greenpoint 40.72623 -73.94298 Entire home/apt 137
## 5946 East Village 40.72390 -73.98312 Entire home/apt 150
## 5947 Harlem 40.81588 -73.94591 Private room 65
## 5948 East Harlem 40.79008 -73.94766 Private room 66
## 5949 Clinton Hill 40.68485 -73.96430 Private room 77
## 5950 Prospect Heights 40.67757 -73.96412 Entire home/apt 110
## 5951 Gramercy 40.73541 -73.98061 Private room 64
## 5952 Canarsie 40.63969 -73.89548 Entire home/apt 90
## 5953 Williamsburg 40.70941 -73.94556 Private room 50
## 5954 Upper East Side 40.77860 -73.95104 Entire home/apt 146
## 5955 Ditmars Steinway 40.77172 -73.91769 Entire home/apt 200
## 5956 Bay Terrace 40.77774 -73.78376 Entire home/apt 189
## 5957 Park Slope 40.67761 -73.97667 Entire home/apt 985
## 5958 Bedford-Stuyvesant 40.69103 -73.95441 Entire home/apt 285
## 5959 Bushwick 40.69584 -73.90794 Entire home/apt 140
## 5960 Long Island City 40.75259 -73.94104 Private room 97
## 5961 Astoria 40.76720 -73.91198 Entire home/apt 180
## 5962 East Village 40.72841 -73.98231 Entire home/apt 199
## 5963 Park Slope 40.67683 -73.97617 Entire home/apt 220
## 5964 Lower East Side 40.71847 -73.98246 Entire home/apt 180
## 5965 Williamsburg 40.70874 -73.95439 Entire home/apt 88
## 5966 Upper West Side 40.77859 -73.98160 Entire home/apt 350
## 5967 Williamsburg 40.70698 -73.95406 Entire home/apt 170
## 5968 East Village 40.72325 -73.98336 Private room 120
## 5969 East Village 40.72242 -73.98262 Private room 105
## 5970 Bedford-Stuyvesant 40.68288 -73.93678 Entire home/apt 110
## 5971 East Flatbush 40.63213 -73.94598 Private room 55
## 5972 Williamsburg 40.71759 -73.95407 Entire home/apt 150
## 5973 Bedford-Stuyvesant 40.68204 -73.95642 Entire home/apt 180
## 5974 Greenpoint 40.72668 -73.94728 Entire home/apt 110
## 5975 Upper West Side 40.78000 -73.97793 Entire home/apt 160
## 5976 Nolita 40.72046 -73.99550 Entire home/apt 215
## 5977 Astoria 40.76575 -73.92092 Private room 75
## 5978 East Harlem 40.80006 -73.94590 Entire home/apt 200
## 5979 East Harlem 40.79872 -73.94110 Entire home/apt 120
## 5980 East Village 40.72627 -73.98303 Entire home/apt 198
## 5981 Bushwick 40.70253 -73.92898 Private room 60
## 5982 Bedford-Stuyvesant 40.68578 -73.93965 Entire home/apt 170
## 5983 East Village 40.72902 -73.98814 Entire home/apt 248
## 5984 Cobble Hill 40.68874 -73.99855 Private room 100
## 5985 West Village 40.73858 -74.00145 Entire home/apt 180
## 5986 Bushwick 40.69435 -73.91852 Private room 60
## 5987 Bedford-Stuyvesant 40.69017 -73.93951 Entire home/apt 83
## 5988 Crown Heights 40.67054 -73.95668 Private room 45
## 5989 Williamsburg 40.71797 -73.95981 Private room 135
## 5990 Lower East Side 40.71938 -73.98906 Entire home/apt 275
## 5991 East Village 40.72478 -73.97771 Entire home/apt 230
## 5992 Lower East Side 40.71962 -73.98567 Entire home/apt 180
## 5993 Upper West Side 40.78749 -73.97087 Entire home/apt 175
## 5994 Belle Harbor 40.57321 -73.85769 Private room 110
## 5995 Williamsburg 40.71142 -73.95535 Entire home/apt 160
## 5996 Bedford-Stuyvesant 40.68708 -73.95770 Entire home/apt 115
## 5997 Upper East Side 40.77126 -73.95483 Shared room 169
## 5998 Williamsburg 40.70903 -73.93940 Private room 100
## 5999 Kips Bay 40.74111 -73.97951 Entire home/apt 87
## 6000 Ditmars Steinway 40.77431 -73.91140 Private room 75
## 6001 Upper West Side 40.78568 -73.97698 Entire home/apt 130
## 6002 West Village 40.73220 -74.00423 Entire home/apt 115
## 6003 Forest Hills 40.71320 -73.84901 Private room 50
## 6004 Hell's Kitchen 40.76590 -73.99543 Entire home/apt 200
## 6005 Forest Hills 40.71233 -73.84848 Private room 55
## 6006 Upper East Side 40.77626 -73.95246 Entire home/apt 125
## 6007 Long Island City 40.75227 -73.95012 Entire home/apt 160
## 6008 Brownsville 40.66938 -73.91831 Private room 39
## 6009 Hell's Kitchen 40.76049 -73.99569 Private room 89
## 6010 Canarsie 40.63269 -73.90358 Entire home/apt 85
## 6011 Crown Heights 40.67828 -73.96228 Private room 50
## 6012 Bedford-Stuyvesant 40.67849 -73.91672 Entire home/apt 229
## 6013 Morningside Heights 40.80699 -73.95937 Entire home/apt 130
## 6014 Kew Gardens Hills 40.72891 -73.82588 Entire home/apt 149
## 6015 Prospect-Lefferts Gardens 40.66025 -73.96270 Entire home/apt 120
## 6016 Williamsburg 40.70953 -73.95994 Private room 45
## 6017 Ridgewood 40.70216 -73.90716 Private room 56
## 6018 Upper East Side 40.77891 -73.94840 Entire home/apt 295
## 6019 Bushwick 40.69703 -73.93207 Private room 75
## 6020 Washington Heights 40.85104 -73.93617 Entire home/apt 110
## 6021 East Harlem 40.78802 -73.95026 Entire home/apt 115
## 6022 Prospect-Lefferts Gardens 40.66201 -73.95414 Private room 90
## 6023 Lower East Side 40.71287 -73.98685 Private room 109
## 6024 Allerton 40.86682 -73.85812 Private room 49
## 6025 East Flatbush 40.66428 -73.92911 Entire home/apt 100
## 6026 East Village 40.73112 -73.98572 Entire home/apt 295
## 6027 Red Hook 40.68039 -74.01729 Entire home/apt 245
## 6028 East Harlem 40.79765 -73.94022 Private room 79
## 6029 Hell's Kitchen 40.76638 -73.98741 Private room 60
## 6030 Bedford-Stuyvesant 40.69024 -73.95197 Entire home/apt 125
## 6031 Bushwick 40.69787 -73.93202 Private room 55
## 6032 Midtown 40.76564 -73.98013 Private room 425
## 6033 Windsor Terrace 40.65783 -73.97501 Entire home/apt 150
## 6034 Bedford-Stuyvesant 40.69367 -73.93981 Entire home/apt 130
## 6035 Upper East Side 40.77371 -73.95007 Entire home/apt 250
## 6036 Flatbush 40.65339 -73.96200 Private room 49
## 6037 East Village 40.72801 -73.98336 Entire home/apt 250
## 6038 Upper West Side 40.79913 -73.95932 Private room 97
## 6039 Harlem 40.80479 -73.95290 Entire home/apt 115
## 6040 Upper West Side 40.80188 -73.96808 Entire home/apt 200
## 6041 Upper East Side 40.78278 -73.94820 Entire home/apt 250
## 6042 Upper East Side 40.78368 -73.94942 Entire home/apt 200
## 6043 Park Slope 40.67099 -73.98791 Entire home/apt 160
## 6044 Harlem 40.81613 -73.93765 Entire home/apt 90
## 6045 Fort Greene 40.68499 -73.97403 Entire home/apt 239
## 6046 Washington Heights 40.85083 -73.94093 Entire home/apt 290
## 6047 Prospect Heights 40.67734 -73.96814 Entire home/apt 150
## 6048 Greenpoint 40.72951 -73.95525 Private room 55
## 6049 South Slope 40.66421 -73.98706 Entire home/apt 380
## 6050 Williamsburg 40.70789 -73.94811 Entire home/apt 120
## 6051 Bedford-Stuyvesant 40.68858 -73.95225 Entire home/apt 200
## 6052 Carroll Gardens 40.68592 -73.99285 Private room 188
## 6053 Bedford-Stuyvesant 40.69175 -73.92834 Entire home/apt 103
## 6054 Jamaica Estates 40.71873 -73.80324 Entire home/apt 64
## 6055 East Village 40.72847 -73.98682 Entire home/apt 195
## 6056 Chelsea 40.74726 -74.00213 Shared room 70
## 6057 Harlem 40.80066 -73.95147 Entire home/apt 150
## 6058 West Village 40.73191 -74.00679 Entire home/apt 300
## 6059 Sunset Park 40.66063 -73.98894 Entire home/apt 60
## 6060 Crown Heights 40.66825 -73.95304 Private room 150
## 6061 Nolita 40.72144 -73.99435 Private room 105
## 6062 Chelsea 40.74635 -73.99604 Entire home/apt 360
## 6063 Harlem 40.80743 -73.95663 Private room 165
## 6064 Chelsea 40.73974 -73.99985 Entire home/apt 325
## 6065 East Village 40.72607 -73.98045 Private room 105
## 6066 Inwood 40.86626 -73.92543 Private room 57
## 6067 East Village 40.72624 -73.99018 Private room 100
## 6068 Bedford-Stuyvesant 40.68687 -73.94518 Entire home/apt 129
## 6069 Harlem 40.82272 -73.94942 Entire home/apt 229
## 6070 Bedford-Stuyvesant 40.69181 -73.95952 Private room 64
## 6071 Bushwick 40.70260 -73.92787 Entire home/apt 100
## 6072 Lower East Side 40.72169 -73.98773 Entire home/apt 99
## 6073 Upper West Side 40.79795 -73.96175 Entire home/apt 300
## 6074 South Slope 40.66483 -73.98892 Private room 84
## 6075 Flatbush 40.63826 -73.96815 Entire home/apt 125
## 6076 Crown Heights 40.67512 -73.96146 Private room 50
## 6077 West Village 40.73634 -74.00841 Entire home/apt 200
## 6078 Gramercy 40.73577 -73.98455 Entire home/apt 350
## 6079 Upper West Side 40.77783 -73.98150 Entire home/apt 80
## 6080 Harlem 40.81693 -73.95421 Private room 180
## 6081 Concourse 40.82636 -73.92655 Entire home/apt 105
## 6082 Bushwick 40.69796 -73.93124 Entire home/apt 200
## 6083 East Flatbush 40.63395 -73.94772 Entire home/apt 100
## 6084 Richmond Hill 40.69947 -73.82795 Entire home/apt 90
## 6085 Hell's Kitchen 40.76221 -73.99028 Entire home/apt 160
## 6086 Williamsburg 40.71909 -73.95897 Entire home/apt 250
## 6087 Harlem 40.81071 -73.94433 Entire home/apt 115
## 6088 Upper East Side 40.77481 -73.95562 Entire home/apt 250
## 6089 Upper West Side 40.79820 -73.97119 Entire home/apt 130
## 6090 West Village 40.73014 -74.00754 Private room 159
## 6091 Clinton Hill 40.68653 -73.96412 Entire home/apt 110
## 6092 Bushwick 40.70112 -73.91201 Private room 60
## 6093 Kingsbridge 40.87829 -73.89337 Private room 57
## 6094 South Slope 40.66347 -73.98438 Entire home/apt 180
## 6095 Bedford-Stuyvesant 40.69725 -73.94908 Entire home/apt 250
## 6096 East Harlem 40.79849 -73.93843 Private room 92
## 6097 Nolita 40.72421 -73.99304 Entire home/apt 195
## 6098 Allerton 40.86814 -73.85874 Private room 47
## 6099 Lower East Side 40.71331 -73.98189 Entire home/apt 175
## 6100 West Village 40.73066 -74.00371 Entire home/apt 175
## 6101 Upper West Side 40.78962 -73.97718 Entire home/apt 165
## 6102 Flatbush 40.64890 -73.96374 Private room 79
## 6103 Chelsea 40.74998 -73.99772 Entire home/apt 345
## 6104 Williamsburg 40.71156 -73.95826 Private room 80
## 6105 Harlem 40.80521 -73.94519 Entire home/apt 300
## 6106 Lower East Side 40.71777 -73.99011 Entire home/apt 325
## 6107 Gramercy 40.73549 -73.98311 Entire home/apt 249
## 6108 Theater District 40.75607 -73.98593 Entire home/apt 699
## 6109 Van Nest 40.84230 -73.87055 Private room 25
## 6110 Hell's Kitchen 40.75531 -73.99945 Entire home/apt 195
## 6111 East Harlem 40.80020 -73.94079 Entire home/apt 165
## 6112 East Harlem 40.78834 -73.94720 Private room 65
## 6113 Upper West Side 40.77706 -73.98407 Entire home/apt 550
## 6114 Harlem 40.81056 -73.94627 Entire home/apt 149
## 6115 Long Island City 40.74681 -73.94586 Entire home/apt 225
## 6116 Williamsburg 40.71234 -73.94158 Entire home/apt 135
## 6117 SoHo 40.72736 -74.00192 Entire home/apt 495
## 6118 Chinatown 40.71759 -73.99220 Entire home/apt 200
## 6119 Bedford-Stuyvesant 40.68256 -73.94326 Entire home/apt 125
## 6120 Ridgewood 40.69945 -73.90651 Entire home/apt 95
## 6121 Bedford-Stuyvesant 40.68339 -73.94220 Entire home/apt 135
## 6122 Bushwick 40.69815 -73.93616 Entire home/apt 120
## 6123 Park Slope 40.66767 -73.98280 Entire home/apt 160
## 6124 Williamsburg 40.71498 -73.96437 Entire home/apt 225
## 6125 Williamsburg 40.71880 -73.95775 Private room 139
## 6126 Upper East Side 40.77473 -73.94859 Private room 69
## 6127 Bedford-Stuyvesant 40.68622 -73.92508 Private room 100
## 6128 Harlem 40.80743 -73.94256 Private room 71
## 6129 Gramercy 40.73730 -73.98392 Private room 250
## 6130 Williamsburg 40.71594 -73.95649 Private room 70
## 6131 East Village 40.72908 -73.97901 Entire home/apt 225
## 6132 Financial District 40.70388 -74.00633 Entire home/apt 170
## 6133 Flatlands 40.62598 -73.92509 Entire home/apt 125
## 6134 Bushwick 40.68488 -73.91225 Entire home/apt 139
## 6135 Long Island City 40.76063 -73.92801 Private room 69
## 6136 Upper West Side 40.78137 -73.98183 Entire home/apt 199
## 6137 East Village 40.72724 -73.98639 Entire home/apt 175
## 6138 Boerum Hill 40.68348 -73.98087 Entire home/apt 120
## 6139 Financial District 40.70428 -74.00952 Private room 100
## 6140 West Village 40.73647 -73.99814 Private room 150
## 6141 Williamsburg 40.71256 -73.94188 Entire home/apt 100
## 6142 West Village 40.73604 -74.00560 Entire home/apt 130
## 6143 East Village 40.72347 -73.98116 Entire home/apt 150
## 6144 Sunset Park 40.65188 -74.00611 Private room 50
## 6145 Flatbush 40.64617 -73.97018 Private room 80
## 6146 West Village 40.73474 -74.00867 Entire home/apt 250
## 6147 Bedford-Stuyvesant 40.68400 -73.95002 Entire home/apt 227
## 6148 Harlem 40.82257 -73.94543 Entire home/apt 300
## 6149 Upper West Side 40.77998 -73.98462 Entire home/apt 130
## 6150 Upper West Side 40.78878 -73.97386 Entire home/apt 225
## 6151 Murray Hill 40.74685 -73.97598 Entire home/apt 149
## 6152 Chelsea 40.75005 -73.99718 Entire home/apt 320
## 6153 Washington Heights 40.83714 -73.93713 Private room 75
## 6154 Kensington 40.64687 -73.98182 Entire home/apt 115
## 6155 East Village 40.73325 -73.98789 Private room 97
## 6156 Harlem 40.80204 -73.95656 Shared room 80
## 6157 Upper East Side 40.76710 -73.96968 Entire home/apt 275
## 6158 Park Slope 40.66763 -73.98156 Entire home/apt 163
## 6159 Williamsbridge 40.87896 -73.84978 Private room 55
## 6160 Crown Heights 40.67710 -73.95994 Private room 75
## 6161 Fort Greene 40.69059 -73.97853 Entire home/apt 110
## 6162 West Village 40.73553 -74.00546 Entire home/apt 247
## 6163 Upper West Side 40.76885 -73.98254 Entire home/apt 180
## 6164 Harlem 40.82412 -73.93872 Private room 69
## 6165 Chelsea 40.73984 -74.00060 Entire home/apt 150
## 6166 Gramercy 40.73505 -73.98212 Entire home/apt 140
## 6167 West Village 40.73277 -74.00413 Entire home/apt 205
## 6168 Upper West Side 40.78294 -73.98474 Entire home/apt 148
## 6169 Upper West Side 40.79994 -73.97001 Private room 299
## 6170 Washington Heights 40.83089 -73.94125 Private room 49
## 6171 Harlem 40.82624 -73.94527 Entire home/apt 150
## 6172 East Harlem 40.79917 -73.93995 Entire home/apt 195
## 6173 Bushwick 40.69213 -73.92371 Private room 80
## 6174 Bedford-Stuyvesant 40.69414 -73.93467 Private room 68
## 6175 Bedford-Stuyvesant 40.69454 -73.93427 Private room 72
## 6176 Harlem 40.82014 -73.95433 Private room 97
## 6177 Long Island City 40.74236 -73.95641 Entire home/apt 170
## 6178 Washington Heights 40.83335 -73.94048 Entire home/apt 67
## 6179 Astoria 40.76369 -73.91601 Entire home/apt 80
## 6180 Washington Heights 40.85181 -73.93824 Private room 29
## 6181 Lower East Side 40.71452 -73.98710 Private room 120
## 6182 Midwood 40.62403 -73.96180 Private room 100
## 6183 Inwood 40.86644 -73.92677 Private room 250
## 6184 East Village 40.73337 -73.98828 Private room 200
## 6185 Gowanus 40.66694 -73.99299 Private room 90
## 6186 Upper West Side 40.78304 -73.98146 Entire home/apt 125
## 6187 Jackson Heights 40.75034 -73.89215 Entire home/apt 90
## 6188 East Village 40.72949 -73.97894 Entire home/apt 180
## 6189 South Slope 40.66388 -73.99050 Private room 53
## 6190 Williamsburg 40.71906 -73.95798 Entire home/apt 200
## 6191 Washington Heights 40.83488 -73.93843 Entire home/apt 66
## 6192 East Village 40.72568 -73.98823 Entire home/apt 200
## 6193 Bedford-Stuyvesant 40.68157 -73.92023 Private room 75
## 6194 Williamsburg 40.70798 -73.95374 Entire home/apt 165
## 6195 Williamsburg 40.71909 -73.95998 Private room 45
## 6196 Washington Heights 40.85520 -73.93354 Entire home/apt 80
## 6197 Bensonhurst 40.61576 -73.99166 Private room 125
## 6198 Williamsburg 40.71130 -73.94938 Private room 90
## 6199 Rego Park 40.72937 -73.86804 Entire home/apt 40
## 6200 Midtown 40.76377 -73.98103 Private room 400
## 6201 Astoria 40.76496 -73.92820 Private room 39
## 6202 Boerum Hill 40.68750 -73.99027 Entire home/apt 125
## 6203 Harlem 40.82102 -73.94633 Private room 85
## 6204 Brownsville 40.67061 -73.91672 Private room 39
## 6205 Kips Bay 40.74010 -73.97994 Entire home/apt 150
## 6206 Astoria 40.77002 -73.91498 Entire home/apt 100
## 6207 Williamsburg 40.70826 -73.94059 Entire home/apt 189
## 6208 Harlem 40.80583 -73.95712 Entire home/apt 99
## 6209 Crown Heights 40.67771 -73.96286 Entire home/apt 167
## 6210 Hell's Kitchen 40.75381 -73.99491 Entire home/apt 205
## 6211 Greenpoint 40.71910 -73.94964 Private room 50
## 6212 East Flatbush 40.65262 -73.94211 Entire home/apt 109
## 6213 Ditmars Steinway 40.77672 -73.90878 Entire home/apt 127
## 6214 Upper East Side 40.78110 -73.94567 Entire home/apt 220
## 6215 Crown Heights 40.67414 -73.95368 Private room 45
## 6216 Washington Heights 40.84769 -73.93512 Private room 75
## 6217 Williamsburg 40.71171 -73.94575 Entire home/apt 120
## 6218 Bedford-Stuyvesant 40.69580 -73.94515 Private room 55
## 6219 Upper West Side 40.78316 -73.97269 Entire home/apt 120
## 6220 East Harlem 40.80985 -73.93919 Entire home/apt 108
## 6221 Williamsburg 40.71901 -73.95618 Entire home/apt 200
## 6222 Upper West Side 40.79407 -73.97679 Shared room 55
## 6223 Harlem 40.81208 -73.94243 Private room 205
## 6224 Hell's Kitchen 40.75506 -73.99622 Private room 129
## 6225 Upper East Side 40.77127 -73.95108 Entire home/apt 150
## 6226 West Village 40.73033 -74.00284 Private room 110
## 6227 East Elmhurst 40.76539 -73.87636 Private room 65
## 6228 Ditmars Steinway 40.77648 -73.91595 Entire home/apt 150
## 6229 East Elmhurst 40.76680 -73.87759 Private room 65
## 6230 Crown Heights 40.67590 -73.95274 Private room 75
## 6231 Crown Heights 40.67565 -73.95121 Private room 85
## 6232 Williamsburg 40.71839 -73.95996 Private room 58
## 6233 Williamsburg 40.71994 -73.95990 Private room 90
## 6234 Prospect Heights 40.67376 -73.96373 Entire home/apt 120
## 6235 Prospect Heights 40.68030 -73.97185 Entire home/apt 115
## 6236 Long Island City 40.75985 -73.92979 Entire home/apt 99
## 6237 Astoria 40.76542 -73.92115 Entire home/apt 105
## 6238 Harlem 40.82083 -73.95436 Private room 69
## 6239 Greenpoint 40.73298 -73.95813 Private room 80
## 6240 Astoria 40.76587 -73.92157 Entire home/apt 125
## 6241 Inwood 40.86335 -73.92822 Entire home/apt 90
## 6242 Crown Heights 40.66953 -73.92686 Entire home/apt 80
## 6243 Hell's Kitchen 40.75856 -73.99569 Private room 125
## 6244 Hell's Kitchen 40.76575 -73.99241 Entire home/apt 215
## 6245 Hell's Kitchen 40.75811 -73.99073 Entire home/apt 107
## 6246 Lower East Side 40.72082 -73.98952 Private room 89
## 6247 East Village 40.72312 -73.98255 Entire home/apt 175
## 6248 Greenpoint 40.73351 -73.95459 Entire home/apt 245
## 6249 Greenpoint 40.73455 -73.95489 Entire home/apt 245
## minimum_nights number_of_reviews last_review reviews_per_month
## 1 1 9 2018-10-19 0.21
## 2 1 45 2019-05-21 0.38
## 3 3 0 NA
## 4 1 270 2019-07-05 4.64
## 5 10 9 2018-11-19 0.10
## 6 3 74 2019-06-22 0.59
## 7 45 49 2017-10-05 0.40
## 8 2 430 2019-06-24 3.47
## 9 2 118 2017-07-21 0.99
## 10 1 160 2019-06-09 1.33
## 11 5 53 2019-06-22 0.43
## 12 2 188 2019-06-23 1.50
## 13 4 167 2019-06-24 1.34
## 14 2 113 2019-07-05 0.91
## 15 90 27 2018-10-31 0.22
## 16 2 148 2019-06-29 1.20
## 17 2 198 2019-06-28 1.72
## 18 1 260 2019-07-01 2.12
## 19 3 53 2019-06-22 4.44
## 20 7 0 NA
## 21 3 9 2011-12-28 0.07
## 22 2 130 2019-07-01 1.09
## 23 1 39 2019-01-01 0.37
## 24 2 71 2019-07-02 0.61
## 25 2 88 2019-06-19 0.73
## 26 1 19 2019-06-23 1.37
## 27 4 0 NA
## 28 10 58 2017-08-13 0.49
## 29 3 108 2019-06-15 1.11
## 30 14 29 2019-04-19 0.24
## 31 3 242 2019-06-01 2.04
## 32 2 88 2019-06-14 1.42
## 33 4 197 2019-06-15 1.65
## 34 3 273 2019-07-01 2.37
## 35 1 74 2019-05-12 0.66
## 36 4 168 2019-06-21 1.41
## 37 60 0 NA
## 38 2 231 2019-06-22 1.96
## 39 1 0 NA
## 40 1 214 2019-07-05 1.81
## 41 2 245 2019-06-21 2.08
## 42 3 15 2019-05-27 0.39
## 43 7 25 2018-09-30 0.23
## 44 4 81 2019-06-16 0.69
## 45 7 97 2019-06-13 0.84
## 46 29 11 2019-06-05 0.49
## 47 3 248 2019-07-01 2.25
## 48 7 61 2019-05-25 0.52
## 49 3 11 2017-01-01 0.10
## 50 3 135 2019-06-17 1.16
## 51 1 112 2019-06-16 1.01
## 52 2 73 2019-07-07 0.63
## 53 3 82 2019-05-17 0.70
## 54 2 328 2019-06-29 2.82
## 55 7 19 2019-03-25 0.22
## 56 30 105 2019-06-22 0.90
## 57 5 19 2019-05-18 0.17
## 58 2 289 2019-06-09 2.49
## 59 4 138 2019-06-04 1.19
## 60 30 21 2019-06-29 0.30
## 61 2 42 2019-06-30 0.38
## 62 180 5 2018-11-03 0.12
## 63 2 66 2019-03-30 0.57
## 64 30 143 2019-01-26 1.33
## 65 7 27 2017-09-30 0.23
## 66 30 191 2019-05-16 1.65
## 67 3 4 2017-09-24 0.16
## 68 1 338 2019-07-01 4.72
## 69 1 148 2019-06-23 1.40
## 70 1 106 2019-06-21 1.26
## 71 4 190 2019-06-23 1.64
## 72 9 49 2018-05-14 0.43
## 73 7 23 2019-06-01 0.43
## 74 2 49 2019-06-18 1.60
## 75 2 105 2019-06-26 0.92
## 76 5 21 2019-01-02 0.20
## 77 1 142 2019-07-06 1.50
## 78 30 25 2019-05-31 0.22
## 79 3 143 2019-06-16 1.28
## 80 3 167 2019-05-28 1.65
## 81 3 61 2019-04-22 0.54
## 82 31 54 2019-03-23 0.49
## 83 5 70 2019-06-30 0.62
## 84 6 16 2019-06-15 0.15
## 85 30 94 2019-04-08 0.84
## 86 1 25 2016-08-04 0.24
## 87 3 61 2018-08-09 0.53
## 88 3 194 2019-06-30 1.73
## 89 1 2 2016-02-14 0.05
## 90 3 174 2019-06-22 1.54
## 91 4 24 2019-05-26 0.28
## 92 4 166 2019-06-27 3.40
## 93 7 16 2019-05-31 0.20
## 94 7 21 2019-05-21 0.30
## 95 5 168 2018-07-22 1.57
## 96 3 118 2019-06-18 1.05
## 97 3 81 2019-07-07 0.71
## 98 1 1 2018-10-09 0.11
## 99 30 30 2019-05-01 0.27
## 100 7 139 2018-10-28 1.23
## 101 3 11 2019-01-03 0.87
## 102 2 233 2019-06-24 2.09
## 103 2 68 2012-11-01 0.60
## 104 4 46 2019-05-18 0.55
## 105 3 335 2019-05-29 3.02
## 106 30 88 2018-11-02 0.79
## 107 90 162 2019-06-28 1.46
## 108 30 29 2018-05-26 0.40
## 109 2 170 2019-06-23 1.61
## 110 30 19 2017-03-17 0.20
## 111 2 334 2019-06-16 3.00
## 112 2 19 2019-06-02 0.20
## 113 7 12 2017-12-11 0.13
## 114 30 467 2018-12-30 4.22
## 115 2 7 2017-08-09 0.06
## 116 5 38 2015-12-02 0.38
## 117 3 324 2019-06-23 3.01
## 118 6 27 2019-04-27 0.27
## 119 1 115 2019-06-07 1.05
## 120 2 354 2019-05-20 3.20
## 121 2 195 2019-07-01 2.03
## 122 2 16 2018-12-30 0.24
## 123 7 13 2019-06-26 0.12
## 124 4 25 2011-12-10 0.23
## 125 2 9 2018-10-05 0.08
## 126 1 9 2011-09-18 0.08
## 127 5 21 2017-08-15 0.19
## 128 15 36 2017-08-17 0.33
## 129 3 63 2019-05-14 0.58
## 130 3 155 2019-06-20 1.42
## 131 3 260 2019-07-03 2.35
## 132 5 73 2019-06-25 0.66
## 133 3 193 2019-05-20 1.86
## 134 3 32 2019-06-14 0.29
## 135 2 50 2019-05-26 0.45
## 136 29 26 2019-07-01 0.25
## 137 2 2 2019-01-01 0.02
## 138 2 426 2019-06-24 3.89
## 139 3 227 2019-06-23 2.09
## 140 4 84 2019-07-01 0.77
## 141 29 3 2017-07-30 0.03
## 142 3 10 2018-06-11 0.10
## 143 2 4 2016-04-24 0.04
## 144 2 1 2011-09-19 0.01
## 145 3 124 2019-06-20 1.72
## 146 3 11 2019-07-02 0.11
## 147 4 240 2019-06-17 2.19
## 148 3 30 2019-06-17 0.28
## 149 3 200 2019-06-22 1.86
## 150 8 27 2019-06-29 1.05
## 151 4 79 2019-06-22 0.74
## 152 15 9 2013-05-10 0.09
## 153 3 155 2019-06-13 1.61
## 154 15 4 2018-08-27 0.05
## 155 2 34 2017-05-29 0.32
## 156 45 134 2019-03-31 1.24
## 157 6 27 2018-12-27 0.25
## 158 4 126 2019-06-26 1.16
## 159 3 23 2018-12-31 0.27
## 160 1 234 2019-06-08 2.60
## 161 4 202 2019-05-28 1.86
## 162 30 28 2019-04-12 0.26
## 163 2 309 2019-06-22 2.86
## 164 3 14 2011-04-25 0.13
## 165 3 4 2016-09-23 0.08
## 166 2 80 2019-07-06 2.17
## 167 3 2 2015-11-02 0.04
## 168 2 294 2019-06-24 3.47
## 169 2 150 2019-06-18 1.40
## 170 2 166 2019-06-13 1.66
## 171 2 47 2019-06-19 0.94
## 172 1 219 2019-07-04 2.04
## 173 2 193 2016-07-06 1.78
## 174 1 84 2019-06-23 0.78
## 175 3 114 2019-06-20 1.06
## 176 2 213 2019-06-24 2.00
## 177 3 86 2019-06-01 0.80
## 178 3 80 2019-05-26 0.75
## 179 26 38 2016-04-20 0.36
## 180 2 18 2018-12-17 1.79
## 181 2 206 2019-06-30 1.92
## 182 8 10 2019-05-12 0.11
## 183 4 122 2019-05-14 1.18
## 184 4 33 2019-04-08 0.58
## 185 5 52 2019-06-05 0.50
## 186 3 126 2019-05-19 1.17
## 187 3 51 2019-06-24 0.48
## 188 3 199 2019-06-24 1.85
## 189 26 30 2012-09-03 0.29
## 190 3 3 2015-07-17 0.03
## 191 1 41 2019-06-26 0.38
## 192 2 109 2019-06-15 1.04
## 193 5 151 2019-06-22 1.43
## 194 14 0 NA
## 195 1 285 2019-06-22 2.69
## 196 1 375 2019-06-18 3.52
## 197 2 52 2019-05-20 0.49
## 198 5 10 2019-07-01 1.01
## 199 2 11 2017-11-13 0.48
## 200 30 33 2015-05-09 0.31
## 201 7 6 2015-10-08 0.06
## 202 7 38 2019-04-27 0.38
## 203 2 358 2019-06-20 3.44
## 204 6 10 2014-01-07 0.09
## 205 30 0 NA
## 206 2 226 2019-06-06 2.12
## 207 1 104 2019-06-22 1.00
## 208 1 138 2019-06-30 1.45
## 209 5 204 2019-06-23 1.92
## 210 2 253 2019-07-02 3.04
## 211 2 23 2019-07-01 0.22
## 212 2 115 2018-12-05 1.17
## 213 5 129 2019-05-19 1.22
## 214 4 82 2019-06-10 1.13
## 215 3 37 2018-12-31 0.35
## 216 1 204 2019-07-01 2.04
## 217 2 69 2019-06-13 0.65
## 218 1 192 2019-06-03 1.84
## 219 2 17 2019-06-17 0.16
## 220 2 222 2019-06-24 2.12
## 221 3 205 2019-06-23 1.96
## 222 3 94 2019-06-09 0.96
## 223 3 7 2019-05-24 0.07
## 224 2 108 2019-06-30 1.09
## 225 3 222 2019-06-26 2.10
## 226 1 458 2019-07-03 4.58
## 227 2 21 2019-05-17 0.26
## 228 7 17 2019-05-08 0.30
## 229 3 41 2019-01-02 0.39
## 230 14 1 2012-09-17 0.01
## 231 2 69 2019-05-19 0.67
## 232 4 18 2019-07-01 0.18
## 233 30 82 2016-01-05 0.78
## 234 4 94 2019-06-23 0.99
## 235 5 10 2019-05-11 0.10
## 236 28 183 2018-09-29 1.83
## 237 1 189 2019-06-11 1.82
## 238 2 1 2018-10-07 0.11
## 239 2 127 2019-06-20 1.22
## 240 4 4 2017-08-25 0.04
## 241 3 135 2019-06-20 1.30
## 242 2 21 2015-12-12 0.20
## 243 2 35 2017-07-27 0.34
## 244 14 10 2019-06-01 2.21
## 245 4 171 2019-06-23 1.80
## 246 200 92 2019-04-30 0.90
## 247 3 238 2019-06-14 2.30
## 248 50 56 2019-05-26 0.58
## 249 3 111 2019-06-22 2.13
## 250 2 193 2019-06-25 1.85
## 251 2 147 2019-06-10 1.44
## 252 2 177 2019-07-02 1.71
## 253 3 185 2019-05-24 1.78
## 254 9 62 2019-06-21 0.70
## 255 3 124 2019-06-16 1.22
## 256 2 181 2019-06-23 1.77
## 257 2 333 2019-07-02 3.19
## 258 5 441 2019-06-24 4.50
## 259 1 45 2019-05-16 0.46
## 260 14 9 2016-08-29 0.09
## 261 2 0 NA
## 262 2 38 2019-06-27 0.50
## 263 2 248 2019-06-25 2.39
## 264 5 143 2019-06-19 1.38
## 265 3 36 2018-08-19 0.41
## 266 7 0 NA
## 267 17 14 2019-01-07 0.14
## 268 3 0 NA
## 269 3 279 2019-06-24 2.69
## 270 4 18 2019-01-02 0.22
## 271 6 50 2019-05-26 3.55
## 272 2 227 2019-06-27 2.27
## 273 14 1 2019-01-02 0.16
## 274 2 203 2019-06-23 1.96
## 275 2 210 2019-07-06 2.10
## 276 5 64 2019-01-05 0.67
## 277 3 0 NA
## 278 7 5 2019-01-03 0.15
## 279 10 49 2019-06-29 0.48
## 280 4 132 2019-07-07 1.27
## 281 3 20 2019-01-02 0.26
## 282 2 11 2013-05-02 0.11
## 283 3 51 2019-07-01 0.57
## 284 21 15 2019-06-30 0.15
## 285 3 67 2019-06-25 1.31
## 286 1 109 2019-06-23 1.11
## 287 2 9 2019-02-16 0.11
## 288 6 187 2019-06-23 1.87
## 289 2 214 2019-06-23 2.08
## 290 3 69 2019-07-01 0.79
## 291 28 22 2019-06-15 0.26
## 292 30 56 2019-05-06 0.56
## 293 3 93 2019-06-22 0.93
## 294 1 104 2019-06-25 1.05
## 295 30 64 2018-07-06 0.68
## 296 3 127 2019-06-24 1.25
## 297 11 30 2019-06-13 0.32
## 298 2 106 2019-06-27 1.34
## 299 3 6 2016-11-13 0.10
## 300 2 191 2019-06-20 1.88
## 301 30 48 2019-06-11 0.55
## 302 5 47 2019-06-29 0.49
## 303 2 120 2019-06-30 1.27
## 304 3 52 2019-01-10 0.63
## 305 2 48 2019-06-16 0.48
## 306 3 32 2019-05-24 0.43
## 307 25 43 2019-06-17 0.42
## 308 30 39 2019-06-25 0.44
## 309 1 50 2014-05-13 0.50
## 310 30 4 2019-01-02 0.35
## 311 13 38 2019-02-15 0.39
## 312 3 29 2019-06-16 0.36
## 313 4 59 2019-06-23 0.60
## 314 1 68 2019-06-07 0.67
## 315 14 26 2015-11-25 0.27
## 316 14 31 2012-08-22 0.31
## 317 2 198 2019-05-31 2.01
## 318 2 1 2011-03-28 0.01
## 319 2 220 2019-06-22 2.17
## 320 3 286 2019-06-27 2.81
## 321 2 398 2019-06-28 3.97
## 322 3 36 2019-07-01 0.36
## 323 3 36 2019-06-14 0.36
## 324 4 6 2016-02-05 0.10
## 325 6 14 2019-04-20 0.30
## 326 14 76 2019-03-31 0.76
## 327 2 182 2019-07-04 1.81
## 328 3 8 2016-03-27 0.09
## 329 3 7 2019-05-24 0.07
## 330 30 34 2018-09-25 0.51
## 331 3 2 2011-05-12 0.02
## 332 3 66 2016-09-16 0.68
## 333 3 80 2019-06-30 0.85
## 334 4 240 2019-06-06 2.40
## 335 3 46 2019-07-02 1.07
## 336 2 228 2019-06-10 2.27
## 337 35 5 2018-09-03 0.05
## 338 30 8 2018-08-26 0.11
## 339 2 33 2019-01-02 0.33
## 340 3 13 2019-06-27 0.14
## 341 5 5 2018-07-22 0.05
## 342 1 388 2019-06-26 3.88
## 343 3 223 2019-06-23 2.22
## 344 15 11 2019-01-14 0.11
## 345 2 151 2019-06-24 1.51
## 346 5 0 NA
## 347 3 218 2019-06-28 2.26
## 348 2 75 2019-06-23 0.76
## 349 1 42 2019-07-06 1.21
## 350 90 0 NA
## 351 2 370 2019-07-05 3.74
## 352 5 104 2019-06-21 1.04
## 353 7 13 2016-07-18 0.13
## 354 5 4 2018-12-26 0.07
## 355 4 11 2019-06-07 0.11
## 356 4 1 2012-01-03 0.01
## 357 30 19 2018-06-11 0.19
## 358 7 131 2019-05-26 1.31
## 359 30 15 2019-05-01 0.15
## 360 2 136 2019-06-17 1.37
## 361 1 43 2019-07-08 0.45
## 362 7 98 2019-06-28 0.99
## 363 3 31 2019-03-01 0.31
## 364 21 45 2018-01-01 0.46
## 365 3 124 2019-06-26 1.76
## 366 3 9 2018-05-19 0.09
## 367 5 166 2019-05-27 1.68
## 368 27 13 2015-09-21 0.13
## 369 30 15 2019-01-05 0.16
## 370 3 380 2019-06-26 3.83
## 371 2 86 2019-06-16 0.87
## 372 3 248 2019-06-20 2.53
## 373 5 49 2019-06-19 0.56
## 374 18 54 2019-07-03 0.57
## 375 7 3 2013-01-01 0.03
## 376 1 1 2016-01-02 0.02
## 377 2 56 2018-12-28 0.57
## 378 2 163 2019-05-24 1.66
## 379 2 247 2019-06-21 2.51
## 380 10 116 2019-05-11 1.17
## 381 14 27 2019-05-19 0.28
## 382 1 52 2019-06-08 0.60
## 383 6 39 2018-09-24 0.40
## 384 14 35 2019-06-01 0.35
## 385 1 320 2019-06-23 3.23
## 386 4 30 2019-06-16 0.32
## 387 3 225 2019-06-24 2.27
## 388 30 95 2018-05-26 0.96
## 389 4 70 2019-06-28 0.75
## 390 2 35 2019-01-03 0.36
## 391 2 0 NA
## 392 4 50 2019-07-02 0.51
## 393 2 29 2019-06-23 0.31
## 394 2 23 2016-05-02 0.23
## 395 2 142 2019-06-16 1.44
## 396 2 70 2019-07-01 0.73
## 397 2 38 2019-06-03 0.54
## 398 1 82 2019-05-19 0.94
## 399 2 403 2019-07-07 4.10
## 400 1 3 2014-11-06 0.03
## 401 30 3 2014-08-04 0.03
## 402 1 116 2019-06-13 1.18
## 403 2 175 2019-07-07 1.79
## 404 3 28 2019-07-01 1.21
## 405 4 24 2017-12-26 0.25
## 406 2 15 2016-06-06 0.15
## 407 4 105 2019-06-06 1.07
## 408 10 22 2019-05-30 0.38
## 409 2 263 2019-06-24 2.69
## 410 3 86 2019-06-20 0.91
## 411 4 10 2017-01-01 0.10
## 412 7 18 2019-05-27 0.21
## 413 5 8 2018-07-08 0.21
## 414 20 70 2019-01-31 0.73
## 415 3 150 2019-07-05 1.55
## 416 2 115 2017-05-25 1.18
## 417 2 69 2019-05-26 0.71
## 418 3 232 2019-06-22 2.41
## 419 1 35 2018-01-13 0.41
## 420 3 18 2013-10-01 0.21
## 421 3 68 2019-06-10 0.69
## 422 4 22 2014-11-10 0.23
## 423 8 17 2019-05-18 0.17
## 424 1 34 2016-01-05 0.58
## 425 7 8 2014-06-06 0.08
## 426 4 0 NA
## 427 5 2 2018-07-06 0.08
## 428 4 52 2019-04-27 0.72
## 429 2 74 2019-06-16 0.76
## 430 3 18 2013-05-31 0.19
## 431 2 72 2019-05-11 0.86
## 432 2 191 2019-06-29 2.18
## 433 4 0 NA
## 434 1 197 2019-06-23 2.49
## 435 4 19 2019-07-06 0.20
## 436 1 414 2019-07-03 4.34
## 437 2 8 2018-12-11 0.09
## 438 2 0 NA
## 439 7 25 2019-02-12 0.30
## 440 3 119 2019-05-28 1.22
## 441 2 203 2019-07-06 2.14
## 442 40 53 2018-11-16 0.55
## 443 2 104 2019-06-16 1.09
## 444 3 175 2019-06-28 1.80
## 445 3 38 2018-05-08 0.42
## 446 45 39 2019-05-02 0.50
## 447 31 88 2019-06-16 0.91
## 448 1 27 2017-10-08 0.28
## 449 5 117 2019-06-29 1.28
## 450 3 43 2019-05-20 0.44
## 451 5 4 2015-03-13 0.05
## 452 2 385 2019-06-29 4.00
## 453 1 64 2019-07-01 0.68
## 454 1 39 2019-06-24 0.41
## 455 2 37 2019-07-03 1.79
## 456 3 10 2019-01-01 0.12
## 457 2 103 2019-06-24 1.08
## 458 40 41 2019-06-01 0.43
## 459 6 3 2014-08-31 0.03
## 460 3 227 2019-06-26 2.33
## 461 5 37 2018-12-27 0.79
## 462 2 29 2019-06-28 0.35
## 463 3 205 2017-12-31 2.31
## 464 5 42 2019-06-03 0.44
## 465 2 280 2019-07-05 2.92
## 466 4 86 2019-06-08 0.89
## 467 2 54 2019-06-16 0.56
## 468 7 7 2018-08-29 0.07
## 469 5 57 2019-01-01 0.59
## 470 44 31 2019-05-01 0.32
## 471 31 188 2018-08-23 1.94
## 472 3 480 2019-07-07 6.70
## 473 2 34 2019-06-15 0.35
## 474 5 6 2015-08-08 0.06
## 475 9 3 2018-05-13 0.04
## 476 5 2 2014-08-31 0.03
## 477 1 20 2018-08-24 0.21
## 478 2 129 2019-06-07 1.33
## 479 3 147 2019-06-30 1.60
## 480 28 101 2019-07-01 1.06
## 481 2 11 2016-01-02 0.12
## 482 65 11 2013-10-15 0.12
## 483 2 41 2019-06-16 0.43
## 484 2 87 2017-04-18 1.09
## 485 4 117 2019-05-21 1.21
## 486 2 86 2019-05-16 0.89
## 487 7 0 NA
## 488 2 15 2016-02-15 0.16
## 489 2 35 2019-07-02 0.55
## 490 2 17 2015-10-01 0.18
## 491 3 3 2016-02-15 0.04
## 492 5 43 2018-01-03 0.47
## 493 3 168 2019-07-06 4.60
## 494 3 241 2019-06-24 2.49
## 495 2 105 2019-06-23 1.13
## 496 2 11 2018-10-28 0.46
## 497 30 30 2018-05-05 0.33
## 498 3 31 2018-10-23 0.32
## 499 4 49 2019-05-07 0.51
## 500 4 23 2019-04-13 0.24
## 501 2 20 2019-06-24 0.21
## 502 10 18 2019-06-24 0.90
## 503 6 90 2019-06-23 0.95
## 504 2 99 2019-06-27 1.04
## 505 1 6 2019-06-28 0.06
## 506 30 21 2018-12-01 0.22
## 507 30 24 2019-04-04 0.26
## 508 2 111 2019-06-02 1.17
## 509 2 86 2019-06-20 0.91
## 510 15 66 2019-04-29 0.69
## 511 2 271 2019-06-20 2.84
## 512 2 227 2019-06-18 2.40
## 513 4 80 2019-07-06 1.55
## 514 30 5 2018-12-03 0.07
## 515 2 187 2019-06-10 1.97
## 516 1 2 2015-08-28 0.02
## 517 6 1 2016-01-01 0.02
## 518 3 67 2018-10-20 0.70
## 519 1 63 2018-01-12 0.68
## 520 1 89 2019-07-01 1.00
## 521 4 1 2014-04-20 0.02
## 522 3 177 2019-06-29 1.86
## 523 4 90 2019-06-30 0.94
## 524 7 39 2019-07-07 0.41
## 525 3 42 2019-05-18 0.44
## 526 3 33 2019-05-08 0.35
## 527 3 179 2019-05-29 2.02
## 528 3 81 2019-03-28 0.85
## 529 28 43 2019-06-29 0.45
## 530 30 52 2018-10-31 0.54
## 531 2 160 2019-06-25 1.68
## 532 6 23 2018-05-21 0.27
## 533 6 35 2017-06-18 0.37
## 534 1 225 2019-06-12 2.35
## 535 1 401 2019-07-04 6.62
## 536 1 72 2019-06-17 0.84
## 537 1 46 2018-12-30 0.97
## 538 3 83 2019-06-23 1.19
## 539 1 211 2019-06-15 2.21
## 540 5 15 2015-06-14 0.16
## 541 1 122 2019-06-23 1.29
## 542 2 295 2019-06-12 3.90
## 543 3 207 2019-07-07 2.18
## 544 3 50 2019-03-30 0.65
## 545 2 273 2019-06-24 2.85
## 546 1 0 NA
## 547 30 25 2018-04-30 0.26
## 548 4 105 2019-05-11 1.62
## 549 4 72 2016-12-26 0.76
## 550 1 8 2016-09-18 0.08
## 551 2 58 2019-06-04 0.61
## 552 6 8 2015-09-17 0.09
## 553 3 172 2019-07-02 1.84
## 554 1 330 2019-06-20 7.14
## 555 3 123 2019-06-11 1.29
## 556 2 55 2019-04-30 0.59
## 557 4 87 2019-07-03 0.99
## 558 3 258 2019-06-25 2.70
## 559 2 4 2018-08-27 0.18
## 560 14 31 2019-05-26 0.33
## 561 4 128 2016-11-15 1.34
## 562 3 14 2015-08-31 0.15
## 563 3 30 2019-06-24 0.32
## 564 28 258 2019-05-28 2.90
## 565 3 228 2018-04-25 2.39
## 566 1 60 2019-07-01 0.65
## 567 90 9 2019-06-30 0.20
## 568 2 179 2019-06-19 1.88
## 569 7 9 2016-06-23 0.10
## 570 1 1 2019-04-21 0.37
## 571 30 25 2018-08-29 0.49
## 572 2 2 2018-02-08 0.05
## 573 3 152 2019-06-25 1.60
## 574 30 24 2019-03-31 0.25
## 575 2 45 2019-04-22 0.47
## 576 30 7 2018-11-14 0.08
## 577 7 19 2019-06-03 0.35
## 578 1 24 2019-01-19 0.26
## 579 4 8 2017-10-14 0.09
## 580 1 29 2015-06-03 0.31
## 581 1 14 2015-07-20 0.15
## 582 1 33 2019-05-25 0.38
## 583 4 99 2019-02-28 1.04
## 584 3 59 2017-01-05 0.62
## 585 3 142 2019-06-16 1.50
## 586 2 0 NA
## 587 29 22 2019-03-15 0.23
## 588 3 82 2019-05-21 0.87
## 589 2 23 2018-09-15 0.24
## 590 4 32 2019-05-08 0.34
## 591 5 24 2019-06-23 0.25
## 592 1 59 2018-10-26 0.63
## 593 55 6 2015-01-02 0.08
## 594 4 18 2018-07-05 0.21
## 595 4 3 2018-12-26 0.03
## 596 3 115 2019-07-05 1.21
## 597 3 154 2019-06-19 1.63
## 598 1 164 2019-07-01 1.73
## 599 6 76 2019-06-13 0.80
## 600 3 116 2019-06-30 1.23
## 601 3 234 2019-06-30 2.47
## 602 2 120 2019-06-24 1.27
## 603 4 82 2019-05-18 0.87
## 604 3 13 2019-05-26 0.15
## 605 30 59 2019-06-24 0.64
## 606 7 63 2019-06-26 1.87
## 607 2 52 2018-08-14 0.55
## 608 1 278 2019-07-03 2.95
## 609 5 1 2012-01-02 0.01
## 610 2 35 2019-06-09 0.40
## 611 5 235 2019-06-29 2.49
## 612 28 115 2019-06-30 1.21
## 613 1 109 2015-10-02 1.15
## 614 5 1 2013-07-09 0.01
## 615 3 305 2019-06-27 3.24
## 616 1 102 2019-06-18 1.52
## 617 30 83 2019-05-31 0.88
## 618 1 19 2018-07-31 0.25
## 619 2 61 2019-05-18 0.65
## 620 5 89 2019-06-30 0.94
## 621 30 65 2017-07-31 0.74
## 622 1 40 2019-06-16 0.44
## 623 30 80 2019-04-26 0.86
## 624 30 136 2019-06-19 1.45
## 625 3 100 2018-05-28 1.06
## 626 2 125 2019-07-06 1.36
## 627 5 40 2019-04-14 0.50
## 628 4 0 NA
## 629 30 139 2019-04-28 1.59
## 630 30 0 NA
## 631 7 2 2014-10-06 0.03
## 632 28 49 2019-06-26 0.53
## 633 5 8 2018-05-18 0.11
## 634 1 0 NA
## 635 5 124 2019-05-25 1.32
## 636 21 5 2018-12-19 0.12
## 637 1 147 2019-06-30 1.57
## 638 1 43 2019-04-14 0.46
## 639 6 8 2019-01-03 0.33
## 640 2 37 2019-01-02 0.39
## 641 1 120 2019-06-19 1.28
## 642 1 24 2019-01-01 0.29
## 643 3 5 2017-07-09 0.05
## 644 30 242 2019-04-01 2.59
## 645 4 229 2019-06-21 2.45
## 646 2 108 2019-06-19 1.36
## 647 2 181 2019-06-05 1.92
## 648 5 34 2019-07-01 0.39
## 649 3 5 2016-10-02 0.05
## 650 1 5 2015-08-17 0.06
## 651 4 60 2019-06-25 0.64
## 652 1 238 2019-06-23 2.59
## 653 3 34 2019-04-22 0.37
## 654 3 131 2019-06-24 1.40
## 655 4 6 2017-06-28 0.16
## 656 60 4 2015-07-03 0.06
## 657 1 7 2018-10-07 0.08
## 658 5 125 2019-07-07 3.04
## 659 3 0 NA
## 660 1 49 2014-12-03 0.58
## 661 1 11 2017-09-25 0.12
## 662 5 0 NA
## 663 3 107 2019-05-23 1.15
## 664 2 241 2019-06-29 2.60
## 665 1 176 2019-06-29 1.89
## 666 4 151 2019-06-16 1.63
## 667 3 49 2018-08-09 0.53
## 668 120 13 2018-09-01 0.14
## 669 3 33 2019-06-24 0.47
## 670 3 24 2018-11-06 0.32
## 671 3 59 2019-06-24 0.66
## 672 1 2 2015-06-25 0.04
## 673 2 16 2019-06-28 0.23
## 674 2 72 2018-11-26 0.77
## 675 3 24 2019-04-25 0.26
## 676 3 23 2019-06-22 0.26
## 677 3 43 2019-07-02 0.47
## 678 3 30 2019-07-03 0.32
## 679 3 39 2019-06-29 0.44
## 680 3 8 2018-07-26 0.09
## 681 3 3 2015-11-03 0.03
## 682 3 6 2018-04-19 0.10
## 683 3 4 2015-12-04 0.05
## 684 5 56 2019-07-06 0.66
## 685 3 7 2018-11-16 0.08
## 686 1 2 2014-01-13 0.03
## 687 2 178 2019-06-24 2.69
## 688 30 30 2019-05-31 0.80
## 689 2 190 2019-06-23 2.04
## 690 7 25 2019-06-30 0.27
## 691 10 81 2019-05-31 0.98
## 692 2 7 2019-06-22 0.08
## 693 4 216 2019-07-01 2.31
## 694 30 31 2019-01-28 0.33
## 695 90 53 2017-08-12 0.57
## 696 3 247 2019-06-21 2.65
## 697 3 233 2019-04-10 2.50
## 698 3 135 2019-06-24 1.45
## 699 4 20 2015-12-30 0.23
## 700 4 46 2019-06-02 0.50
## 701 365 10 2014-10-26 0.12
## 702 1 143 2018-06-30 2.83
## 703 2 21 2019-05-22 0.26
## 704 7 0 NA
## 705 2 8 2019-05-19 0.09
## 706 7 4 2017-08-28 0.05
## 707 2 314 2019-07-01 3.45
## 708 3 18 2019-06-18 0.25
## 709 7 11 2015-05-27 0.12
## 710 7 51 2019-06-02 0.55
## 711 5 20 2017-04-01 0.33
## 712 7 8 2017-12-30 0.12
## 713 31 59 2019-06-06 0.63
## 714 4 54 2019-06-24 0.62
## 715 5 10 2018-12-31 0.46
## 716 4 153 2019-06-25 1.66
## 717 3 110 2019-06-02 1.20
## 718 2 69 2019-01-01 0.91
## 719 1 1 2019-01-27 0.18
## 720 180 24 2015-08-19 0.26
## 721 2 95 2019-01-02 1.02
## 722 2 129 2019-04-28 1.41
## 723 7 171 2019-03-31 1.84
## 724 2 20 2019-06-09 0.59
## 725 90 17 2017-05-03 0.27
## 726 5 8 2015-01-08 0.09
## 727 7 11 2015-11-01 0.12
## 728 5 5 2018-07-05 0.09
## 729 4 0 NA
## 730 30 36 2019-03-19 0.39
## 731 30 16 2019-03-31 0.17
## 732 15 5 2018-07-12 0.12
## 733 4 0 NA
## 734 4 68 2019-06-03 0.77
## 735 28 89 2018-06-30 0.99
## 736 30 10 2019-06-24 1.02
## 737 1 38 2019-07-01 0.85
## 738 2 15 2019-06-09 0.17
## 739 2 20 2019-01-21 0.42
## 740 3 25 2019-06-15 0.96
## 741 2 35 2019-05-27 0.42
## 742 30 1 2013-09-24 0.01
## 743 3 64 2019-06-02 0.70
## 744 3 26 2019-02-16 0.33
## 745 2 244 2019-06-25 2.74
## 746 15 21 2019-01-15 0.29
## 747 2 270 2019-07-07 2.95
## 748 10 16 2019-03-27 0.19
## 749 3 24 2019-06-27 0.26
## 750 1 30 2019-06-28 0.33
## 751 2 5 2015-09-07 0.06
## 752 4 115 2019-06-12 1.25
## 753 5 9 2019-06-25 0.19
## 754 5 45 2019-05-26 0.52
## 755 365 19 2015-09-08 0.21
## 756 3 5 2018-12-31 0.08
## 757 2 203 2019-06-20 2.22
## 758 122 20 2018-01-02 0.41
## 759 3 49 2018-10-27 0.53
## 760 4 6 2019-04-21 0.07
## 761 5 7 2017-06-18 0.08
## 762 2 35 2019-06-30 0.38
## 763 5 28 2018-09-25 0.31
## 764 6 0 NA
## 765 2 54 2019-06-24 0.88
## 766 3 115 2019-06-25 1.75
## 767 5 6 2019-06-24 0.13
## 768 15 1 2014-08-31 0.02
## 769 3 204 2019-06-30 2.31
## 770 180 1 2016-09-01 0.03
## 771 3 89 2019-06-23 0.97
## 772 6 130 2019-06-02 1.42
## 773 7 15 2019-06-08 0.25
## 774 30 52 2019-05-13 0.60
## 775 6 58 2017-12-29 0.63
## 776 3 208 2019-06-11 2.32
## 777 5 3 2017-06-20 0.03
## 778 30 7 2013-04-21 0.08
## 779 1 1 2017-03-18 0.04
## 780 3 2 2018-04-10 0.06
## 781 4 122 2019-07-02 1.37
## 782 3 63 2019-06-18 0.72
## 783 5 26 2014-10-31 0.28
## 784 27 1 2012-10-02 0.01
## 785 5 14 2019-06-19 0.16
## 786 1 107 2019-06-25 2.38
## 787 30 3 2017-07-30 0.05
## 788 3 107 2019-05-18 1.17
## 789 3 29 2019-06-25 1.57
## 790 6 69 2019-06-21 0.76
## 791 3 232 2019-07-06 2.52
## 792 7 0 NA
## 793 7 24 2018-08-10 0.26
## 794 7 0 NA
## 795 19 5 2016-08-03 0.06
## 796 3 10 2019-04-21 0.23
## 797 4 36 2018-11-12 0.47
## 798 5 94 2019-06-19 1.10
## 799 6 1 2013-05-06 0.01
## 800 1 63 2018-08-03 0.71
## 801 15 5 2013-09-11 0.06
## 802 3 238 2019-07-02 2.60
## 803 2 101 2015-10-31 1.10
## 804 3 21 2019-06-24 0.23
## 805 2 72 2018-07-31 0.82
## 806 2 40 2019-06-23 0.68
## 807 3 103 2017-08-01 1.13
## 808 6 66 2019-05-01 0.72
## 809 3 35 2019-06-27 0.40
## 810 31 121 2019-07-01 1.33
## 811 8 15 2018-08-29 0.19
## 812 2 13 2016-09-05 0.18
## 813 2 129 2019-05-11 1.42
## 814 20 157 2016-08-11 1.71
## 815 5 8 2016-11-26 0.11
## 816 2 5 2014-09-09 0.06
## 817 4 46 2019-06-23 0.52
## 818 30 37 2019-02-16 0.41
## 819 7 14 2019-06-25 0.16
## 820 5 37 2018-04-15 0.45
## 821 5 1 2016-08-30 0.03
## 822 3 209 2019-07-04 2.38
## 823 3 4 2018-09-12 0.07
## 824 60 17 2019-04-01 0.19
## 825 5 0 NA
## 826 1 0 NA
## 827 4 54 2019-06-11 0.66
## 828 3 43 2019-06-22 0.49
## 829 3 7 2017-04-18 0.08
## 830 3 75 2019-06-05 0.93
## 831 1 88 2019-06-07 0.99
## 832 3 73 2019-06-30 0.84
## 833 3 89 2019-07-01 1.06
## 834 3 23 2019-04-23 0.26
## 835 3 11 2019-06-23 0.16
## 836 28 84 2019-02-16 1.12
## 837 3 54 2019-06-10 0.61
## 838 3 17 2015-05-20 0.19
## 839 7 1 2014-03-24 0.02
## 840 1 73 2019-06-19 0.89
## 841 3 36 2019-05-01 0.47
## 842 2 98 2019-05-31 1.07
## 843 1 63 2019-05-18 0.89
## 844 5 2 2017-09-21 0.09
## 845 5 18 2018-10-10 0.20
## 846 3 24 2013-12-04 0.28
## 847 3 1 2018-05-13 0.07
## 848 1 2 2018-01-02 0.05
## 849 14 23 2016-11-08 0.25
## 850 2 93 2019-07-07 1.12
## 851 3 0 NA
## 852 3 0 NA
## 853 5 152 2019-06-23 1.69
## 854 1 119 2019-06-30 1.39
## 855 4 9 2018-04-02 0.10
## 856 2 44 2019-06-26 0.49
## 857 2 158 2019-01-02 1.77
## 858 7 12 2016-03-26 0.14
## 859 3 51 2019-05-04 0.57
## 860 1 0 NA
## 861 2 11 2019-06-09 0.13
## 862 3 236 2019-06-18 2.74
## 863 3 16 2018-09-01 0.18
## 864 5 123 2019-02-28 1.42
## 865 3 14 2015-08-19 0.22
## 866 14 65 2018-12-30 0.73
## 867 1 50 2019-06-03 0.56
## 868 3 33 2019-06-10 0.39
## 869 3 30 2019-01-01 0.35
## 870 3 13 2019-01-31 0.15
## 871 30 18 2019-06-07 0.20
## 872 4 1 2013-04-21 0.01
## 873 3 216 2019-05-14 2.44
## 874 2 98 2019-05-01 1.09
## 875 2 61 2019-06-02 0.86
## 876 30 13 2019-04-23 0.34
## 877 3 136 2019-07-01 1.52
## 878 2 39 2019-06-09 0.47
## 879 14 65 2019-07-01 0.73
## 880 3 62 2019-01-02 0.71
## 881 3 47 2019-06-30 0.57
## 882 2 42 2019-06-20 0.48
## 883 3 207 2019-06-16 2.29
## 884 4 72 2019-07-03 0.81
## 885 14 22 2019-05-02 0.25
## 886 30 25 2019-03-31 0.28
## 887 2 215 2019-06-30 2.42
## 888 4 26 2017-06-24 0.73
## 889 5 18 2018-01-02 0.21
## 890 3 18 2018-12-31 0.21
## 891 2 320 2019-07-07 3.60
## 892 2 160 2019-07-02 1.80
## 893 2 78 2019-02-08 1.22
## 894 30 64 2018-08-03 0.72
## 895 2 219 2019-06-19 2.44
## 896 1 66 2017-12-10 0.94
## 897 3 25 2018-12-22 0.29
## 898 4 102 2019-06-28 1.15
## 899 2 32 2019-06-23 0.47
## 900 3 15 2019-04-22 0.18
## 901 5 1 2015-11-16 0.02
## 902 3 12 2019-06-30 0.14
## 903 10 19 2019-06-11 0.27
## 904 3 297 2019-06-24 3.37
## 905 3 12 2019-07-07 0.13
## 906 4 9 2017-01-02 0.11
## 907 15 9 2016-05-14 0.10
## 908 7 46 2019-05-25 0.62
## 909 4 42 2019-06-24 0.47
## 910 2 118 2019-07-01 2.11
## 911 30 53 2019-05-03 0.60
## 912 1 15 2019-06-24 0.21
## 913 3 64 2019-05-11 0.72
## 914 3 51 2019-04-27 0.58
## 915 3 79 2019-04-29 0.88
## 916 3 202 2019-06-19 2.29
## 917 1 23 2018-12-31 0.63
## 918 6 62 2019-06-01 0.76
## 919 2 36 2015-08-23 0.45
## 920 1 16 2019-06-16 0.19
## 921 4 24 2017-09-21 0.27
## 922 2 77 2019-07-01 0.88
## 923 5 110 2019-05-26 1.27
## 924 1 56 2018-07-16 0.64
## 925 1 7 2012-06-07 0.08
## 926 21 0 NA
## 927 18 19 2016-07-13 0.22
## 928 3 7 2015-05-31 0.09
## 929 1 53 2014-10-28 0.60
## 930 3 265 2019-06-24 2.99
## 931 5 0 NA
## 932 30 8 2018-01-02 0.10
## 933 14 46 2018-06-19 0.52
## 934 5 6 2018-11-04 0.08
## 935 4 75 2019-07-01 0.86
## 936 5 11 2019-06-23 0.13
## 937 3 5 2019-06-29 1.47
## 938 3 132 2019-06-23 1.49
## 939 6 41 2019-06-07 0.47
## 940 7 34 2019-04-07 0.39
## 941 3 34 2014-06-09 0.39
## 942 7 27 2019-03-01 0.31
## 943 4 30 2019-04-13 0.34
## 944 3 214 2019-06-02 2.45
## 945 30 12 2018-04-15 0.14
## 946 2 6 2018-07-30 0.09
## 947 7 0 NA
## 948 3 156 2019-07-04 1.80
## 949 2 30 2018-12-29 0.74
## 950 5 1 2014-09-04 0.02
## 951 5 3 2019-04-24 0.09
## 952 2 272 2019-06-27 3.18
## 953 3 63 2019-01-01 0.82
## 954 30 58 2019-07-01 0.66
## 955 2 5 2015-10-12 0.10
## 956 3 63 2019-06-30 0.71
## 957 5 268 2019-07-02 3.04
## 958 3 80 2019-05-26 0.92
## 959 3 22 2017-04-14 0.25
## 960 7 13 2019-06-17 0.15
## 961 4 23 2019-04-30 0.67
## 962 30 3 2018-12-04 0.08
## 963 3 10 2018-10-24 0.12
## 964 3 14 2019-04-04 0.16
## 965 1 20 2019-06-06 0.28
## 966 5 2 2015-05-15 0.02
## 967 2 47 2019-07-03 1.22
## 968 2 6 2019-01-01 0.19
## 969 7 93 2019-06-07 1.06
## 970 3 116 2016-01-03 1.32
## 971 240 15 2018-09-04 0.17
## 972 2 70 2019-06-03 0.80
## 973 3 4 2019-03-04 0.41
## 974 30 128 2019-06-11 1.46
## 975 1 59 2018-11-09 0.69
## 976 1 8 2015-09-30 0.11
## 977 2 106 2019-06-24 1.22
## 978 15 15 2019-06-26 0.57
## 979 2 133 2019-05-05 1.51
## 980 4 27 2019-05-25 0.31
## 981 5 61 2018-01-02 0.70
## 982 2 2 2018-10-08 0.02
## 983 1 16 2017-01-01 0.18
## 984 7 0 NA
## 985 5 38 2019-05-16 0.44
## 986 1 25 2013-06-22 0.28
## 987 3 93 2015-11-17 1.05
## 988 3 6 2017-09-05 0.07
## 989 7 30 2016-12-04 0.34
## 990 3 17 2019-07-05 0.46
## 991 10 67 2019-05-16 0.77
## 992 30 53 2017-06-30 0.68
## 993 30 32 2016-10-11 0.37
## 994 30 131 2019-06-23 1.84
## 995 4 19 2019-05-21 0.22
## 996 1 0 NA
## 997 3 74 2019-05-28 0.84
## 998 3 165 2019-07-03 1.88
## 999 2 16 2019-01-02 0.18
## 1000 3 269 2019-06-05 3.09
## 1001 3 243 2019-06-24 2.75
## 1002 2 59 2019-07-01 0.94
## 1003 3 134 2019-06-22 1.53
## 1004 28 81 2019-07-03 0.93
## 1005 3 7 2016-10-22 0.08
## 1006 3 112 2019-05-26 1.28
## 1007 5 0 NA
## 1008 2 92 2019-06-09 1.05
## 1009 29 23 2019-02-14 0.26
## 1010 3 67 2019-05-28 0.76
## 1011 2 8 2016-09-18 0.10
## 1012 2 244 2019-07-01 2.81
## 1013 6 62 2019-05-17 0.70
## 1014 5 125 2019-07-02 1.47
## 1015 30 58 2019-06-01 0.67
## 1016 5 9 2018-09-03 0.10
## 1017 3 137 2019-06-13 1.57
## 1018 2 16 2019-05-09 0.24
## 1019 1 36 2018-09-26 0.57
## 1020 1 54 2019-03-24 0.65
## 1021 14 1 2016-05-31 0.03
## 1022 6 39 2019-03-13 0.47
## 1023 1 145 2019-06-22 1.76
## 1024 3 28 2019-06-25 0.33
## 1025 2 206 2019-06-30 2.40
## 1026 7 4 2019-05-04 0.22
## 1027 15 37 2016-10-30 0.52
## 1028 30 27 2017-08-11 0.31
## 1029 30 18 2016-05-21 0.21
## 1030 1 134 2019-04-02 1.54
## 1031 2 197 2019-06-20 2.25
## 1032 7 5 2015-05-21 0.09
## 1033 28 5 2015-10-06 0.06
## 1034 4 8 2018-01-02 0.09
## 1035 2 62 2019-05-11 0.71
## 1036 2 13 2017-01-31 0.15
## 1037 1 8 2014-08-22 0.09
## 1038 3 50 2019-06-30 0.87
## 1039 180 69 2016-09-28 0.79
## 1040 4 41 2019-05-20 0.47
## 1041 20 89 2019-06-28 1.04
## 1042 4 40 2019-06-17 0.46
## 1043 3 106 2019-06-07 1.22
## 1044 4 33 2018-11-25 0.39
## 1045 5 2 2017-10-03 0.09
## 1046 88 19 2016-12-24 0.22
## 1047 6 100 2019-06-14 1.14
## 1048 3 16 2018-09-25 0.19
## 1049 2 64 2019-06-09 0.76
## 1050 1 17 2019-04-27 0.31
## 1051 2 7 2016-10-11 0.08
## 1052 115 15 2018-12-31 0.17
## 1053 5 4 2015-10-07 0.07
## 1054 3 87 2019-06-16 1.00
## 1055 150 10 2018-05-19 0.14
## 1056 20 0 NA
## 1057 3 289 2019-06-24 3.30
## 1058 9 10 2018-08-22 0.11
## 1059 14 39 2019-05-16 0.45
## 1060 7 7 2017-04-17 0.10
## 1061 1 23 2018-03-27 0.27
## 1062 4 22 2019-06-10 0.27
## 1063 1 1 2014-08-21 0.02
## 1064 2 5 2016-01-09 0.06
## 1065 5 30 2019-05-24 0.37
## 1066 7 55 2018-09-30 0.64
## 1067 1 155 2019-06-07 1.78
## 1068 1 95 2019-06-28 1.09
## 1069 2 118 2019-06-16 1.35
## 1070 5 82 2018-12-15 0.96
## 1071 5 105 2019-06-09 1.21
## 1072 3 73 2019-06-07 0.84
## 1073 7 28 2019-05-12 0.32
## 1074 2 0 NA
## 1075 1 3 2015-08-16 0.06
## 1076 3 120 2019-07-01 1.40
## 1077 2 339 2019-06-23 3.88
## 1078 2 7 2018-06-23 0.09
## 1079 4 13 2019-04-29 0.15
## 1080 21 6 2013-11-01 0.07
## 1081 1 3 2014-12-31 0.03
## 1082 20 11 2018-08-16 0.18
## 1083 2 67 2019-07-02 1.33
## 1084 2 123 2019-07-02 1.47
## 1085 4 109 2018-09-19 1.25
## 1086 4 23 2015-10-04 0.27
## 1087 2 269 2019-06-29 3.15
## 1088 3 7 2016-08-29 0.08
## 1089 3 36 2019-06-23 1.76
## 1090 1 178 2019-07-01 2.06
## 1091 4 132 2019-06-10 1.51
## 1092 3 12 2019-05-28 0.15
## 1093 2 23 2019-01-01 0.27
## 1094 2 47 2019-06-08 0.55
## 1095 8 8 2019-03-28 0.11
## 1096 3 17 2016-05-12 0.20
## 1097 5 4 2018-03-24 0.06
## 1098 90 19 2018-12-16 0.22
## 1099 7 2 2012-05-29 0.02
## 1100 2 35 2018-01-01 0.54
## 1101 3 108 2019-07-02 1.25
## 1102 3 182 2019-07-01 2.15
## 1103 3 31 2019-06-11 0.41
## 1104 1 454 2019-06-18 5.27
## 1105 2 199 2019-07-05 2.30
## 1106 1 0 NA
## 1107 1 230 2019-07-01 2.65
## 1108 4 101 2019-06-24 1.19
## 1109 2 8 2015-12-22 0.13
## 1110 30 154 2018-12-12 1.87
## 1111 28 69 2019-05-26 0.81
## 1112 10 3 2018-06-19 0.05
## 1113 14 3 2013-09-01 0.04
## 1114 4 12 2019-04-26 0.16
## 1115 5 13 2014-08-22 0.15
## 1116 2 10 2016-05-23 0.17
## 1117 15 5 2019-01-04 0.06
## 1118 1 144 2019-06-17 1.68
## 1119 5 10 2017-02-19 0.12
## 1120 7 0 NA
## 1121 2 17 2015-07-27 0.20
## 1122 30 57 2019-05-05 0.67
## 1123 30 70 2019-03-09 0.83
## 1124 30 62 2019-01-10 0.74
## 1125 6 17 2018-10-11 0.20
## 1126 1 439 2019-07-05 5.12
## 1127 4 48 2019-01-06 0.56
## 1128 3 134 2019-06-29 1.56
## 1129 6 2 2014-05-20 0.03
## 1130 3 16 2017-11-04 0.19
## 1131 2 31 2019-07-03 1.14
## 1132 30 36 2019-01-19 0.42
## 1133 3 1 2012-12-30 0.01
## 1134 2 338 2019-07-07 3.90
## 1135 3 117 2017-12-11 1.41
## 1136 1 261 2019-06-22 3.24
## 1137 30 32 2017-01-31 0.37
## 1138 2 112 2019-06-30 1.30
## 1139 2 22 2019-05-20 0.26
## 1140 2 319 2019-07-02 3.78
## 1141 7 69 2019-06-20 0.85
## 1142 4 10 2018-09-12 0.12
## 1143 2 24 2019-02-20 0.39
## 1144 30 3 2017-08-12 0.05
## 1145 31 17 2014-06-30 0.20
## 1146 7 13 2016-08-21 0.15
## 1147 2 58 2019-05-27 0.67
## 1148 2 62 2019-06-23 0.74
## 1149 3 203 2019-06-27 2.85
## 1150 2 33 2019-06-30 0.39
## 1151 3 47 2019-03-09 0.66
## 1152 5 0 NA
## 1153 14 30 2018-03-02 0.35
## 1154 3 2 2017-03-29 0.05
## 1155 2 121 2019-06-17 1.60
## 1156 3 27 2019-05-17 0.45
## 1157 3 24 2016-10-09 0.30
## 1158 5 22 2019-05-11 0.26
## 1159 2 162 2019-06-16 1.92
## 1160 1 66 2019-05-19 0.76
## 1161 7 0 NA
## 1162 2 63 2019-07-07 0.76
## 1163 1 219 2019-06-14 2.63
## 1164 4 2 2013-03-31 0.03
## 1165 3 12 2019-07-01 0.27
## 1166 2 35 2017-05-30 0.41
## 1167 1 124 2019-06-10 1.46
## 1168 7 2 2018-07-23 0.17
## 1169 4 63 2019-07-06 1.27
## 1170 4 162 2019-06-21 1.88
## 1171 3 103 2019-06-15 1.25
## 1172 7 0 NA
## 1173 30 185 2019-06-07 2.15
## 1174 4 219 2019-06-15 2.54
## 1175 1 280 2019-06-23 3.51
## 1176 1 61 2017-05-07 0.71
## 1177 1 184 2019-06-10 2.14
## 1178 3 116 2019-07-07 1.37
## 1179 2 11 2018-10-22 0.24
## 1180 3 9 2019-02-23 0.10
## 1181 5 4 2013-07-14 0.05
## 1182 2 15 2019-06-03 0.29
## 1183 4 22 2019-05-26 0.28
## 1184 3 18 2017-07-01 0.21
## 1185 3 56 2019-07-04 0.65
## 1186 4 2 2014-09-03 0.03
## 1187 3 57 2019-06-30 0.70
## 1188 4 13 2018-11-16 0.17
## 1189 1 1 2012-06-22 0.01
## 1190 2 37 2019-06-23 0.49
## 1191 5 451 2019-06-30 5.26
## 1192 30 24 2019-04-30 0.29
## 1193 7 19 2019-03-22 0.32
## 1194 3 190 2019-06-06 2.21
## 1195 2 46 2019-05-27 0.54
## 1196 1 169 2019-06-23 2.08
## 1197 2 165 2019-06-18 1.92
## 1198 3 2 2016-06-23 0.02
## 1199 3 1 2018-05-26 0.07
## 1200 5 3 2015-09-20 0.04
## 1201 1 15 2016-05-09 0.18
## 1202 3 60 2019-01-01 0.70
## 1203 2 320 2019-06-22 3.85
## 1204 2 182 2019-06-11 2.20
## 1205 30 1 2012-07-11 0.01
## 1206 2 134 2019-07-07 1.56
## 1207 10 10 2019-05-26 0.17
## 1208 30 0 NA
## 1209 1 60 2019-06-02 0.78
## 1210 30 5 2019-05-12 0.06
## 1211 5 9 2016-08-04 0.10
## 1212 3 1 2013-01-04 0.01
## 1213 10 33 2019-05-22 0.39
## 1214 1 10 2014-12-03 0.14
## 1215 30 3 2015-08-15 0.04
## 1216 3 10 2019-05-15 0.13
## 1217 30 62 2019-07-02 0.73
## 1218 4 266 2019-07-04 3.17
## 1219 2 251 2019-07-07 2.92
## 1220 14 3 2016-04-28 0.04
## 1221 7 8 2012-12-25 0.09
## 1222 4 5 2012-12-31 0.06
## 1223 4 160 2019-06-21 1.92
## 1224 5 5 2019-05-17 0.10
## 1225 2 183 2019-06-14 2.19
## 1226 5 19 2018-12-30 0.23
## 1227 3 141 2019-06-24 1.66
## 1228 6 42 2019-05-27 0.49
## 1229 3 119 2019-07-01 1.41
## 1230 7 20 2019-06-23 0.24
## 1231 5 5 2015-06-28 0.06
## 1232 2 16 2018-07-04 0.62
## 1233 2 0 NA
## 1234 2 24 2018-09-10 0.29
## 1235 3 26 2019-06-15 0.32
## 1236 30 3 2018-09-14 0.04
## 1237 2 0 NA
## 1238 10 5 2019-04-30 0.07
## 1239 4 2 2014-06-28 0.03
## 1240 3 194 2019-07-04 2.42
## 1241 14 88 2019-06-28 1.03
## 1242 5 2 2018-10-18 0.10
## 1243 30 304 2019-06-19 3.70
## 1244 2 11 2014-07-08 0.13
## 1245 30 19 2018-10-15 0.23
## 1246 7 23 2019-06-05 0.27
## 1247 5 103 2019-06-30 1.25
## 1248 7 82 2019-06-21 0.98
## 1249 30 92 2019-06-08 1.09
## 1250 30 66 2019-07-03 0.77
## 1251 3 18 2018-10-08 0.35
## 1252 4 153 2019-06-24 2.03
## 1253 6 6 2015-06-12 0.09
## 1254 7 43 2019-06-29 0.52
## 1255 3 36 2019-07-02 0.50
## 1256 10 19 2019-06-20 0.27
## 1257 2 160 2019-06-11 2.31
## 1258 3 74 2019-05-15 0.87
## 1259 1 47 2019-04-28 0.58
## 1260 2 43 2018-09-14 0.51
## 1261 1 102 2019-06-13 1.19
## 1262 6 18 2019-01-20 0.21
## 1263 4 33 2019-04-07 0.44
## 1264 30 60 2019-06-09 0.72
## 1265 3 22 2019-06-23 1.61
## 1266 5 107 2019-06-21 1.25
## 1267 14 0 NA
## 1268 4 87 2019-07-04 1.02
## 1269 10 16 2018-08-07 0.20
## 1270 3 2 2015-08-07 0.02
## 1271 4 19 2019-05-20 0.24
## 1272 1 474 2019-05-25 5.53
## 1273 4 5 2016-05-16 0.06
## 1274 2 63 2019-05-19 0.75
## 1275 3 0 NA
## 1276 3 28 2019-06-01 0.40
## 1277 1 0 NA
## 1278 2 5 2015-05-25 0.09
## 1279 4 16 2019-02-12 0.20
## 1280 20 6 2018-09-30 0.32
## 1281 3 25 2019-06-10 0.30
## 1282 3 15 2017-08-10 0.31
## 1283 1 45 2019-06-08 0.62
## 1284 1 215 2019-06-16 2.55
## 1285 3 33 2019-06-22 0.51
## 1286 2 46 2017-01-02 0.54
## 1287 10 25 2019-06-01 0.30
## 1288 2 23 2018-10-08 0.27
## 1289 2 57 2019-07-02 0.67
## 1290 6 80 2019-05-26 1.01
## 1291 11 22 2019-05-10 0.26
## 1292 5 40 2016-04-22 0.54
## 1293 3 85 2019-06-23 1.02
## 1294 4 1 2012-07-11 0.01
## 1295 14 29 2016-12-05 0.36
## 1296 5 1 2012-09-05 0.01
## 1297 30 23 2017-02-15 0.27
## 1298 2 42 2019-05-31 0.50
## 1299 1 195 2019-06-25 2.83
## 1300 2 158 2019-05-05 1.91
## 1301 2 1 2016-12-28 0.03
## 1302 1 115 2019-06-07 1.40
## 1303 4 42 2019-05-28 0.49
## 1304 5 3 2015-08-17 0.04
## 1305 90 32 2019-06-10 0.40
## 1306 370 6 2018-04-15 0.09
## 1307 2 214 2019-07-06 2.53
## 1308 2 11 2019-05-06 0.13
## 1309 2 221 2019-06-23 2.60
## 1310 1 123 2019-06-02 1.47
## 1311 1 132 2019-06-16 1.56
## 1312 30 41 2019-02-23 0.65
## 1313 4 104 2019-06-06 1.32
## 1314 30 18 2019-05-27 0.22
## 1315 2 143 2019-06-30 4.14
## 1316 28 4 2016-10-03 0.05
## 1317 3 25 2014-04-15 0.30
## 1318 4 4 2017-08-22 0.05
## 1319 45 198 2019-06-15 2.33
## 1320 5 6 2012-09-14 0.07
## 1321 7 10 2019-05-21 0.48
## 1322 19 30 2019-04-08 0.36
## 1323 2 4 2015-09-21 0.08
## 1324 2 201 2019-07-01 2.42
## 1325 2 51 2019-06-30 0.61
## 1326 30 63 2019-05-26 0.75
## 1327 2 28 2018-08-05 0.59
## 1328 1 55 2017-06-01 0.66
## 1329 5 1 2018-11-13 0.13
## 1330 40 23 2016-07-01 0.27
## 1331 4 61 2019-03-09 0.72
## 1332 60 5 2013-06-20 0.06
## 1333 2 67 2019-06-25 0.80
## 1334 30 110 2019-04-02 1.30
## 1335 2 160 2019-06-18 1.95
## 1336 3 102 2019-06-25 1.23
## 1337 2 5 2017-05-08 0.08
## 1338 5 1 2015-03-31 0.02
## 1339 7 34 2019-06-30 0.41
## 1340 30 6 2015-10-31 0.07
## 1341 1 61 2019-07-06 0.81
## 1342 60 11 2019-06-21 0.13
## 1343 30 1 2012-08-10 0.01
## 1344 5 46 2019-05-05 0.60
## 1345 1 132 2019-06-05 1.75
## 1346 1 62 2014-04-27 0.73
## 1347 10 8 2018-08-24 0.17
## 1348 3 16 2017-04-17 0.27
## 1349 2 19 2016-07-15 0.23
## 1350 2 17 2017-01-01 0.20
## 1351 7 12 2016-11-18 0.14
## 1352 1 321 2019-06-15 3.93
## 1353 4 160 2019-06-12 1.89
## 1354 4 142 2019-06-03 1.68
## 1355 1 5 2015-10-11 0.06
## 1356 6 61 2019-06-30 0.73
## 1357 7 0 NA
## 1358 3 5 2018-10-21 0.08
## 1359 30 36 2017-01-25 0.44
## 1360 1 109 2019-06-14 1.51
## 1361 3 28 2019-03-31 0.38
## 1362 4 14 2019-05-20 0.16
## 1363 2 250 2019-06-26 2.99
## 1364 4 12 2018-05-28 0.25
## 1365 2 20 2018-12-30 0.24
## 1366 14 27 2019-05-13 0.36
## 1367 2 73 2019-06-27 0.89
## 1368 3 2 2015-12-29 0.05
## 1369 5 38 2019-05-06 0.45
## 1370 14 5 2014-10-18 0.07
## 1371 3 0 NA
## 1372 3 31 2018-08-10 0.50
## 1373 2 17 2015-12-07 0.21
## 1374 3 35 2019-05-27 0.42
## 1375 30 63 2019-04-18 0.77
## 1376 7 149 2019-06-29 1.78
## 1377 20 107 2018-06-05 1.29
## 1378 5 7 2015-12-31 0.08
## 1379 3 48 2019-06-23 0.58
## 1380 3 54 2019-06-19 0.65
## 1381 31 17 2015-10-18 0.20
## 1382 2 103 2019-06-08 1.62
## 1383 3 243 2019-06-24 2.95
## 1384 3 0 NA
## 1385 3 93 2019-06-18 1.17
## 1386 2 54 2019-07-01 0.74
## 1387 30 2 2015-10-31 0.03
## 1388 28 88 2019-05-22 1.05
## 1389 30 15 2017-07-29 0.18
## 1390 3 25 2017-11-21 0.30
## 1391 3 0 NA
## 1392 4 11 2019-04-28 0.13
## 1393 30 17 2019-05-30 0.26
## 1394 3 5 2014-08-31 0.06
## 1395 14 0 NA
## 1396 2 28 2018-09-13 0.34
## 1397 2 0 NA
## 1398 30 0 NA
## 1399 30 8 2018-08-21 0.11
## 1400 2 15 2019-04-27 0.18
## 1401 3 2 2018-10-22 0.17
## 1402 4 40 2019-01-01 0.57
## 1403 7 57 2019-05-06 0.68
## 1404 3 0 NA
## 1405 14 6 2018-08-16 0.07
## 1406 4 57 2019-05-24 0.69
## 1407 3 22 2015-10-28 0.27
## 1408 8 6 2013-09-04 0.07
## 1409 1 17 2015-10-13 0.20
## 1410 2 14 2018-10-28 0.19
## 1411 1 160 2019-06-27 1.90
## 1412 2 85 2019-06-23 1.02
## 1413 1 165 2019-06-22 1.99
## 1414 2 13 2014-04-22 0.16
## 1415 30 44 2015-09-28 0.53
## 1416 4 51 2019-05-02 0.62
## 1417 2 179 2019-06-17 2.20
## 1418 2 206 2019-06-15 2.49
## 1419 5 4 2018-07-08 0.05
## 1420 14 2 2019-06-23 0.11
## 1421 3 1 2018-06-04 0.08
## 1422 4 2 2013-04-03 0.02
## 1423 5 3 2016-01-11 0.04
## 1424 2 19 2015-09-23 0.23
## 1425 3 59 2019-07-08 0.82
## 1426 6 1 2019-01-05 0.16
## 1427 5 1 2012-09-18 0.01
## 1428 3 254 2019-06-23 3.05
## 1429 2 129 2019-04-06 1.56
## 1430 30 11 2013-03-08 0.13
## 1431 20 32 2019-04-21 0.68
## 1432 5 8 2016-08-21 0.12
## 1433 2 261 2019-07-03 3.16
## 1434 2 3 2012-09-23 0.04
## 1435 2 23 2018-10-07 0.33
## 1436 5 108 2019-06-03 1.44
## 1437 3 9 2019-06-30 0.11
## 1438 2 248 2019-06-24 2.99
## 1439 4 107 2019-06-22 1.29
## 1440 3 41 2015-09-25 0.52
## 1441 4 43 2019-06-02 0.52
## 1442 3 39 2016-12-08 0.47
## 1443 4 31 2017-06-01 0.37
## 1444 6 6 2019-05-13 0.07
## 1445 3 18 2019-04-06 0.26
## 1446 20 29 2019-04-30 0.37
## 1447 1 11 2013-12-25 0.13
## 1448 4 161 2019-07-01 1.92
## 1449 1 39 2019-04-28 0.47
## 1450 365 0 NA
## 1451 7 2 2015-08-25 0.03
## 1452 5 59 2019-06-27 0.77
## 1453 1 323 2019-06-20 3.89
## 1454 3 56 2019-05-21 0.96
## 1455 30 3 2016-12-31 0.05
## 1456 30 2 2018-06-30 0.04
## 1457 30 2 2016-08-15 0.04
## 1458 30 3 2018-08-15 0.05
## 1459 30 1 2012-11-01 0.01
## 1460 3 58 2019-06-18 0.70
## 1461 3 10 2015-10-24 0.14
## 1462 2 83 2019-05-23 1.01
## 1463 4 12 2019-06-03 0.14
## 1464 3 1 2012-08-25 0.01
## 1465 7 10 2019-07-06 3.53
## 1466 1 48 2019-02-28 0.59
## 1467 16 5 2019-07-03 0.06
## 1468 3 15 2018-07-09 0.18
## 1469 1 347 2019-07-04 4.24
## 1470 1 108 2019-07-05 1.31
## 1471 3 163 2019-06-19 1.96
## 1472 3 182 2019-06-23 2.30
## 1473 1 37 2019-06-02 0.45
## 1474 1 30 2019-06-22 0.40
## 1475 60 3 2015-05-15 0.04
## 1476 3 46 2018-01-04 0.56
## 1477 2 211 2019-07-04 2.57
## 1478 1 93 2019-05-21 1.12
## 1479 2 10 2016-05-07 0.13
## 1480 4 72 2019-06-22 1.02
## 1481 30 59 2016-01-28 0.71
## 1482 2 18 2018-12-01 0.24
## 1483 5 6 2013-07-11 0.07
## 1484 31 15 2015-10-12 0.18
## 1485 4 78 2019-06-07 1.26
## 1486 3 17 2018-06-24 0.21
## 1487 4 15 2017-08-03 0.18
## 1488 7 1 2015-07-16 0.02
## 1489 5 69 2019-05-25 0.89
## 1490 31 114 2019-06-10 1.38
## 1491 3 161 2019-06-15 1.98
## 1492 5 70 2019-04-29 0.88
## 1493 3 0 NA
## 1494 2 46 2019-06-14 0.57
## 1495 5 19 2018-11-02 0.24
## 1496 3 162 2019-06-24 1.97
## 1497 2 70 2018-10-10 0.85
## 1498 14 11 2018-08-31 0.15
## 1499 2 2 2019-07-04 0.05
## 1500 5 39 2019-01-18 0.55
## 1501 2 56 2019-07-01 0.67
## 1502 3 1 2012-09-18 0.01
## 1503 2 35 2019-06-21 0.42
## 1504 5 32 2018-09-14 0.39
## 1505 2 1 2018-01-03 0.05
## 1506 21 12 2018-12-20 0.15
## 1507 2 211 2019-06-21 2.54
## 1508 2 48 2019-06-11 0.59
## 1509 2 219 2019-06-12 2.63
## 1510 3 218 2019-06-23 2.63
## 1511 6 40 2017-10-15 0.50
## 1512 14 37 2019-06-08 0.46
## 1513 20 28 2017-05-20 0.34
## 1514 3 66 2019-06-17 0.80
## 1515 30 43 2019-07-04 0.67
## 1516 30 9 2018-11-04 0.11
## 1517 3 13 2019-05-29 0.16
## 1518 1 60 2019-05-16 0.93
## 1519 4 19 2019-06-07 0.23
## 1520 1 296 2019-06-29 3.92
## 1521 1 96 2017-05-18 1.16
## 1522 2 77 2019-06-24 0.97
## 1523 1 115 2019-06-24 1.40
## 1524 1 294 2019-07-04 3.59
## 1525 3 66 2019-06-30 1.75
## 1526 7 4 2018-08-10 0.09
## 1527 3 39 2019-06-18 0.47
## 1528 4 173 2019-07-01 2.12
## 1529 2 295 2019-06-16 3.56
## 1530 4 62 2019-01-02 0.75
## 1531 2 138 2019-07-02 1.69
## 1532 30 27 2019-06-24 0.34
## 1533 30 96 2019-06-16 1.17
## 1534 2 119 2018-01-25 1.46
## 1535 5 8 2018-09-07 0.10
## 1536 30 100 2019-07-01 1.25
## 1537 5 1 2015-07-16 0.02
## 1538 3 89 2019-06-27 1.12
## 1539 2 176 2019-06-21 2.22
## 1540 4 31 2016-08-26 0.38
## 1541 4 239 2019-06-26 2.89
## 1542 2 79 2019-04-24 0.96
## 1543 10 13 2019-04-15 0.33
## 1544 14 11 2017-12-08 0.16
## 1545 80 5 2017-05-03 0.06
## 1546 2 13 2016-12-31 0.37
## 1547 4 190 2019-01-04 2.30
## 1548 1 404 2019-06-25 4.90
## 1549 2 27 2019-07-06 1.40
## 1550 4 79 2019-05-20 0.97
## 1551 2 14 2017-10-06 0.17
## 1552 3 32 2018-10-20 0.42
## 1553 3 76 2019-06-01 0.98
## 1554 1 7 2019-01-01 0.09
## 1555 7 11 2016-10-02 0.14
## 1556 5 18 2019-05-30 0.22
## 1557 3 60 2019-07-04 1.59
## 1558 30 59 2019-03-30 0.72
## 1559 15 22 2018-12-10 0.47
## 1560 3 2 2013-05-06 0.03
## 1561 7 104 2019-07-02 1.28
## 1562 3 6 2019-05-24 0.09
## 1563 3 326 2019-07-01 3.96
## 1564 28 55 2019-06-01 0.67
## 1565 3 0 NA
## 1566 5 56 2019-07-06 0.79
## 1567 3 51 2019-06-22 0.62
## 1568 5 7 2015-04-11 0.09
## 1569 5 86 2019-06-30 1.15
## 1570 30 36 2017-08-29 0.44
## 1571 2 75 2019-06-19 0.92
## 1572 1 363 2019-06-16 4.55
## 1573 2 146 2019-06-23 1.78
## 1574 3 51 2019-07-03 1.52
## 1575 3 55 2019-06-04 0.67
## 1576 5 1 2013-08-08 0.01
## 1577 3 29 2019-03-12 0.38
## 1578 14 30 2018-09-02 0.76
## 1579 2 169 2019-06-12 2.07
## 1580 4 1 2015-05-14 0.02
## 1581 2 8 2019-03-09 0.11
## 1582 3 12 2019-03-17 0.18
## 1583 3 19 2018-10-26 0.30
## 1584 5 9 2017-04-16 0.11
## 1585 1 5 2014-05-19 0.06
## 1586 5 17 2018-06-25 0.26
## 1587 4 70 2019-06-19 0.86
## 1588 7 0 NA
## 1589 1 1 2015-10-05 0.02
## 1590 5 1 2019-01-07 0.16
## 1591 3 17 2018-09-18 0.43
## 1592 2 59 2017-08-21 0.73
## 1593 5 62 2019-07-01 0.75
## 1594 10 6 2019-05-11 0.07
## 1595 2 33 2019-05-15 0.84
## 1596 2 158 2019-06-16 1.93
## 1597 4 8 2019-04-29 0.12
## 1598 2 129 2019-04-25 1.67
## 1599 6 1 2015-08-29 0.02
## 1600 3 50 2019-07-02 0.67
## 1601 3 116 2019-06-28 1.56
## 1602 6 89 2017-12-12 1.09
## 1603 1 17 2016-03-15 0.21
## 1604 2 164 2017-01-01 2.07
## 1605 7 67 2019-01-01 0.87
## 1606 1 135 2019-06-22 1.67
## 1607 30 3 2018-11-01 0.12
## 1608 1 139 2019-06-04 1.70
## 1609 2 23 2018-12-07 0.32
## 1610 3 51 2019-05-30 0.64
## 1611 3 203 2019-06-20 2.53
## 1612 2 164 2019-06-23 2.07
## 1613 1 6 2016-05-25 0.07
## 1614 1 327 2019-06-29 4.01
## 1615 7 10 2019-07-06 10.00
## 1616 181 82 2016-08-26 1.07
## 1617 2 111 2019-07-06 4.44
## 1618 7 6 2018-01-02 0.08
## 1619 5 35 2019-01-03 0.44
## 1620 26 57 2019-05-20 0.70
## 1621 2 80 2017-05-26 0.98
## 1622 4 1 2015-11-01 0.02
## 1623 30 4 2018-08-02 0.06
## 1624 30 8 2018-10-15 0.10
## 1625 7 39 2019-06-25 0.48
## 1626 2 27 2019-06-12 0.35
## 1627 30 3 2015-08-02 0.05
## 1628 14 10 2019-07-04 10.00
## 1629 2 1 2018-07-24 0.09
## 1630 30 21 2017-04-18 0.26
## 1631 1 237 2018-09-16 2.96
## 1632 2 20 2015-12-30 0.25
## 1633 7 2 2018-09-05 0.06
## 1634 7 66 2019-06-09 0.83
## 1635 2 7 2017-12-15 0.09
## 1636 1 273 2019-06-20 3.35
## 1637 5 60 2019-06-09 0.95
## 1638 28 19 2019-06-18 0.25
## 1639 1 2 2013-01-05 0.03
## 1640 7 83 2019-06-23 1.04
## 1641 3 219 2019-06-16 2.68
## 1642 3 0 NA
## 1643 3 270 2019-07-02 3.34
## 1644 5 18 2019-06-05 0.24
## 1645 4 132 2019-07-02 1.62
## 1646 3 151 2019-06-22 1.86
## 1647 1 3 2015-07-06 0.06
## 1648 2 167 2019-07-03 4.16
## 1649 4 213 2019-07-01 2.62
## 1650 5 2 2017-08-01 0.08
## 1651 3 12 2019-07-01 0.15
## 1652 1 353 2019-06-25 4.33
## 1653 3 3 2016-10-15 0.05
## 1654 1 3 2016-08-21 0.05
## 1655 10 4 2015-12-28 0.05
## 1656 1 113 2018-08-27 1.43
## 1657 4 11 2017-05-20 0.14
## 1658 3 17 2019-03-15 0.31
## 1659 3 46 2019-06-27 0.57
## 1660 21 52 2017-06-24 0.64
## 1661 10 10 2019-04-28 0.22
## 1662 5 64 2019-06-29 0.88
## 1663 3 104 2019-06-24 1.36
## 1664 4 75 2019-07-01 0.93
## 1665 5 227 2019-07-03 2.79
## 1666 30 13 2015-12-13 0.16
## 1667 2 189 2019-06-23 2.32
## 1668 14 1 2013-01-04 0.01
## 1669 3 10 2015-10-27 0.15
## 1670 3 61 2017-05-22 0.76
## 1671 4 3 2015-04-28 0.04
## 1672 2 27 2018-09-15 0.33
## 1673 7 1 2015-05-23 0.02
## 1674 4 32 2019-05-30 0.40
## 1675 6 22 2019-06-29 0.33
## 1676 5 63 2019-07-05 0.78
## 1677 5 15 2019-05-31 0.19
## 1678 2 72 2019-06-30 0.89
## 1679 2 58 2019-06-20 0.94
## 1680 3 9 2018-10-20 0.12
## 1681 3 169 2019-07-01 3.07
## 1682 3 2 2014-11-03 0.03
## 1683 3 66 2019-06-07 1.16
## 1684 4 24 2015-03-02 0.30
## 1685 3 1 2016-12-27 0.03
## 1686 8 108 2019-06-16 1.33
## 1687 3 19 2019-06-30 0.44
## 1688 2 91 2017-04-30 1.18
## 1689 2 67 2019-06-20 0.95
## 1690 13 64 2019-03-31 0.80
## 1691 90 4 2013-09-04 0.05
## 1692 1 0 NA
## 1693 80 3 2012-11-10 0.04
## 1694 2 77 2019-06-02 0.95
## 1695 1 41 2018-06-29 0.52
## 1696 7 2 2019-03-19 0.50
## 1697 3 4 2015-12-31 0.05
## 1698 30 1 2017-07-01 0.04
## 1699 7 1 2016-05-01 0.03
## 1700 2 302 2019-06-23 4.18
## 1701 1 1 2014-09-22 0.02
## 1702 29 3 2019-02-11 0.11
## 1703 3 13 2016-04-21 0.16
## 1704 28 0 NA
## 1705 3 276 2019-07-06 3.44
## 1706 3 22 2019-07-02 0.31
## 1707 1 187 2019-06-23 2.34
## 1708 1 0 NA
## 1709 10 1 2018-09-30 0.11
## 1710 2 138 2019-07-07 2.06
## 1711 2 31 2018-06-28 0.53
## 1712 2 13 2015-10-19 0.17
## 1713 4 12 2019-06-23 0.16
## 1714 4 97 2019-06-28 1.25
## 1715 1 153 2019-01-18 1.89
## 1716 5 72 2019-06-30 0.91
## 1717 2 72 2019-06-23 0.95
## 1718 5 52 2019-05-28 0.65
## 1719 1 28 2019-06-01 0.36
## 1720 3 2 2018-08-03 0.02
## 1721 30 18 2019-06-22 0.29
## 1722 2 8 2019-06-02 0.53
## 1723 3 3 2017-01-02 0.07
## 1724 7 4 2018-11-03 0.05
## 1725 3 86 2017-12-12 1.13
## 1726 5 7 2016-04-23 0.09
## 1727 2 68 2019-07-01 0.92
## 1728 2 185 2019-06-24 2.30
## 1729 7 48 2019-06-21 0.61
## 1730 1 148 2019-06-01 1.90
## 1731 2 8 2014-04-28 0.10
## 1732 2 67 2019-07-06 0.88
## 1733 1 148 2019-06-21 1.83
## 1734 20 1 2014-06-10 0.02
## 1735 25 1 2013-10-17 0.01
## 1736 2 211 2019-07-02 2.63
## 1737 5 18 2016-11-13 0.24
## 1738 1 168 2019-06-01 2.30
## 1739 1 50 2019-06-14 0.72
## 1740 7 11 2015-09-07 0.18
## 1741 3 121 2019-07-02 1.51
## 1742 1 108 2019-07-02 1.35
## 1743 4 10 2019-03-16 0.13
## 1744 7 46 2017-11-18 0.57
## 1745 2 34 2018-08-31 0.43
## 1746 2 25 2018-01-04 0.48
## 1747 10 11 2017-06-24 0.14
## 1748 3 0 NA
## 1749 9 2 2019-04-26 0.20
## 1750 1 25 2019-07-05 0.67
## 1751 2 4 2015-06-09 0.06
## 1752 2 260 2019-06-27 3.58
## 1753 1 0 NA
## 1754 1 52 2017-08-14 0.66
## 1755 30 48 2019-01-03 0.60
## 1756 14 12 2016-09-01 0.22
## 1757 6 23 2017-01-02 0.29
## 1758 265 20 2018-07-27 0.32
## 1759 300 13 2018-04-07 0.23
## 1760 6 13 2015-06-15 0.16
## 1761 2 93 2018-08-03 1.16
## 1762 7 3 2015-09-26 0.06
## 1763 3 62 2019-06-22 0.80
## 1764 26 58 2019-06-07 0.73
## 1765 1 0 NA
## 1766 14 7 2019-01-06 0.16
## 1767 4 12 2018-09-21 0.18
## 1768 25 1 2017-09-30 0.05
## 1769 5 5 2016-09-28 0.14
## 1770 4 13 2019-01-02 0.30
## 1771 2 32 2017-08-19 0.40
## 1772 3 26 2019-06-28 0.32
## 1773 1 0 NA
## 1774 3 1 2017-01-03 0.03
## 1775 3 186 2019-06-17 2.32
## 1776 5 154 2019-05-13 1.93
## 1777 30 5 2019-03-11 0.09
## 1778 2 41 2017-12-30 0.60
## 1779 17 3 2016-09-26 0.07
## 1780 1 3 2016-06-27 0.04
## 1781 8 32 2019-06-29 0.40
## 1782 10 6 2018-04-30 0.09
## 1783 5 39 2019-01-04 0.55
## 1784 2 25 2019-05-26 0.36
## 1785 1 190 2019-06-30 3.70
## 1786 4 16 2018-11-10 0.20
## 1787 4 6 2019-01-02 0.08
## 1788 30 47 2019-05-31 0.67
## 1789 7 2 2016-01-07 0.03
## 1790 3 61 2019-06-30 0.77
## 1791 5 5 2015-11-14 0.06
## 1792 1 33 2019-06-18 0.77
## 1793 5 2 2015-06-26 0.04
## 1794 4 13 2019-01-04 0.22
## 1795 2 36 2019-06-14 0.45
## 1796 14 0 NA
## 1797 3 89 2019-06-28 1.12
## 1798 3 125 2019-06-23 1.57
## 1799 5 5 2019-01-02 0.21
## 1800 4 1 2013-06-30 0.01
## 1801 7 3 2015-11-13 0.04
## 1802 1 1 2013-11-01 0.01
## 1803 3 12 2019-06-08 0.31
## 1804 45 16 2017-11-20 0.21
## 1805 30 19 2019-04-26 0.26
## 1806 4 150 2019-06-23 1.88
## 1807 10 15 2017-06-01 0.30
## 1808 5 2 2017-01-01 0.03
## 1809 3 3 2016-11-13 0.07
## 1810 7 8 2016-08-15 0.10
## 1811 5 42 2017-01-02 0.53
## 1812 7 7 2018-07-24 0.10
## 1813 4 1 2015-01-02 0.02
## 1814 3 1 2013-01-01 0.01
## 1815 1 61 2019-06-23 0.95
## 1816 3 76 2019-06-13 0.95
## 1817 2 52 2018-04-07 0.65
## 1818 8 37 2019-07-02 0.50
## 1819 30 36 2019-05-28 0.58
## 1820 4 92 2019-06-24 1.47
## 1821 10 64 2019-05-04 0.93
## 1822 5 23 2019-05-24 0.38
## 1823 2 2 2019-05-12 0.03
## 1824 7 38 2018-01-02 0.54
## 1825 3 205 2019-06-11 3.19
## 1826 2 108 2019-06-23 1.35
## 1827 7 4 2017-04-01 0.09
## 1828 30 13 2018-11-28 0.18
## 1829 1 73 2019-06-23 0.92
## 1830 2 70 2019-05-31 0.92
## 1831 7 0 NA
## 1832 5 29 2019-06-01 0.37
## 1833 2 17 2019-06-22 0.21
## 1834 6 23 2018-01-07 0.31
## 1835 2 67 2019-06-28 0.88
## 1836 2 48 2019-06-23 0.61
## 1837 2 107 2019-06-24 1.50
## 1838 2 33 2019-05-28 0.46
## 1839 3 124 2019-05-27 1.56
## 1840 2 36 2019-05-19 0.54
## 1841 2 38 2019-01-02 0.51
## 1842 2 6 2018-09-05 0.09
## 1843 2 89 2019-01-01 1.12
## 1844 30 1 2014-09-12 0.02
## 1845 1 4 2017-12-28 0.18
## 1846 7 10 2019-01-01 0.13
## 1847 7 41 2019-01-12 0.55
## 1848 2 24 2019-07-03 0.30
## 1849 2 251 2019-07-03 3.15
## 1850 4 41 2019-06-20 0.52
## 1851 5 29 2019-05-18 0.40
## 1852 1 322 2019-07-04 4.46
## 1853 1 18 2016-10-03 0.35
## 1854 1 8 2015-01-07 0.10
## 1855 5 22 2019-05-09 0.28
## 1856 1 225 2019-06-18 2.83
## 1857 21 79 2019-07-07 1.04
## 1858 8 7 2019-04-27 0.14
## 1859 1 20 2016-11-06 0.26
## 1860 4 18 2019-04-25 0.23
## 1861 2 37 2015-11-10 0.52
## 1862 3 36 2019-06-23 3.04
## 1863 4 0 NA
## 1864 180 2 2019-06-02 0.07
## 1865 3 126 2019-06-27 3.59
## 1866 1 84 2016-10-08 1.06
## 1867 3 26 2019-06-23 0.41
## 1868 1 37 2019-06-10 0.48
## 1869 2 267 2019-06-19 3.37
## 1870 3 11 2014-12-26 0.14
## 1871 5 47 2019-06-12 0.59
## 1872 7 1 2012-12-12 0.01
## 1873 1 137 2019-06-20 1.98
## 1874 10 9 2017-06-09 0.19
## 1875 1 0 NA
## 1876 4 1 2016-05-24 0.03
## 1877 7 23 2019-03-02 0.29
## 1878 15 4 2019-01-01 0.05
## 1879 11 11 2018-08-31 0.23
## 1880 2 540 2019-07-06 6.95
## 1881 5 0 NA
## 1882 7 26 2019-05-13 0.37
## 1883 2 47 2019-06-11 0.61
## 1884 2 0 NA
## 1885 3 5 2015-10-04 0.08
## 1886 5 4 2015-01-03 0.05
## 1887 5 224 2019-06-21 2.82
## 1888 2 26 2014-07-13 0.33
## 1889 10 8 2018-06-23 0.17
## 1890 2 11 2019-04-27 0.23
## 1891 7 6 2018-01-03 0.08
## 1892 5 15 2017-01-03 0.22
## 1893 7 0 NA
## 1894 2 24 2015-08-31 0.33
## 1895 7 7 2018-10-13 0.10
## 1896 3 17 2016-11-26 0.21
## 1897 2 66 2019-07-01 0.93
## 1898 14 13 2019-01-26 0.17
## 1899 15 22 2016-10-22 0.28
## 1900 10 30 2016-10-12 0.40
## 1901 3 26 2019-05-27 0.36
## 1902 3 50 2019-06-30 0.63
## 1903 4 14 2019-05-28 0.31
## 1904 4 80 2017-10-18 1.08
## 1905 7 1 2013-11-09 0.01
## 1906 1 33 2016-03-30 0.44
## 1907 30 15 2019-04-30 0.19
## 1908 60 22 2019-04-17 0.28
## 1909 3 8 2019-01-04 0.17
## 1910 1 4 2015-01-02 0.06
## 1911 1 34 2019-07-01 0.45
## 1912 1 219 2019-06-13 2.91
## 1913 7 0 NA
## 1914 6 23 2019-05-20 0.30
## 1915 1 8 2019-05-26 0.10
## 1916 2 11 2019-06-27 0.18
## 1917 2 220 2019-06-21 2.97
## 1918 3 8 2017-09-25 0.13
## 1919 18 5 2019-05-11 0.06
## 1920 2 2 2015-08-02 0.04
## 1921 30 51 2017-05-24 0.67
## 1922 1 7 2015-08-15 0.12
## 1923 30 93 2019-06-08 1.24
## 1924 2 220 2019-06-23 2.85
## 1925 5 6 2015-09-27 0.10
## 1926 5 15 2019-06-04 0.25
## 1927 4 20 2017-09-10 0.26
## 1928 1 0 NA
## 1929 1 187 2019-05-24 2.36
## 1930 2 17 2018-10-07 0.22
## 1931 3 46 2019-06-06 0.82
## 1932 2 39 2019-06-07 0.52
## 1933 2 15 2018-05-16 0.20
## 1934 5 145 2019-07-01 1.82
## 1935 4 16 2018-05-11 0.20
## 1936 7 52 2019-06-15 0.67
## 1937 2 82 2016-02-29 1.08
## 1938 2 97 2019-04-10 1.47
## 1939 2 35 2019-05-04 0.55
## 1940 31 8 2013-06-28 0.10
## 1941 3 166 2019-06-20 2.15
## 1942 30 0 NA
## 1943 3 38 2019-05-20 0.51
## 1944 30 17 2019-06-30 0.27
## 1945 5 26 2019-04-22 0.41
## 1946 1 31 2018-10-08 0.40
## 1947 1 15 2014-09-06 0.19
## 1948 3 106 2019-07-04 1.43
## 1949 2 37 2019-05-19 0.58
## 1950 2 155 2019-07-01 2.11
## 1951 2 12 2019-05-15 0.18
## 1952 30 0 NA
## 1953 4 8 2019-04-21 0.11
## 1954 5 3 2019-04-30 0.06
## 1955 2 45 2019-07-04 0.64
## 1956 5 8 2015-11-05 0.14
## 1957 15 25 2018-10-10 0.46
## 1958 1 100 2019-07-05 1.41
## 1959 1 64 2019-07-01 1.37
## 1960 1 8 2015-10-19 0.10
## 1961 7 33 2019-05-02 0.42
## 1962 2 11 2018-10-29 0.14
## 1963 1 4 2019-06-26 0.10
## 1964 3 31 2015-09-27 0.40
## 1965 2 82 2019-06-08 2.02
## 1966 2 291 2019-06-20 3.69
## 1967 2 22 2018-10-27 0.29
## 1968 1 58 2019-07-02 0.83
## 1969 2 71 2019-07-02 0.90
## 1970 29 86 2018-09-01 1.10
## 1971 1 315 2019-06-22 4.03
## 1972 2 3 2019-05-31 0.15
## 1973 4 77 2019-05-25 0.99
## 1974 5 43 2019-05-26 0.56
## 1975 7 35 2019-04-30 0.48
## 1976 3 68 2019-07-05 0.88
## 1977 31 10 2018-07-20 0.25
## 1978 3 132 2019-06-30 1.68
## 1979 30 1 2015-07-19 0.02
## 1980 3 116 2019-05-21 1.47
## 1981 10 7 2018-05-02 0.10
## 1982 2 2 2015-12-08 0.05
## 1983 4 8 2018-08-27 0.22
## 1984 4 6 2017-12-06 0.08
## 1985 30 0 NA
## 1986 1 0 NA
## 1987 2 20 2019-05-19 0.25
## 1988 4 125 2019-06-11 1.60
## 1989 2 22 2019-06-30 0.37
## 1990 3 154 2019-07-01 2.00
## 1991 3 7 2019-01-27 0.11
## 1992 3 71 2019-06-09 0.95
## 1993 30 5 2019-01-19 0.07
## 1994 3 112 2019-06-30 1.43
## 1995 3 36 2019-06-16 0.95
## 1996 4 4 2018-10-25 0.42
## 1997 2 21 2019-01-02 0.30
## 1998 1 109 2019-06-04 1.52
## 1999 2 37 2019-05-04 0.56
## 2000 6 78 2018-12-28 1.07
## 2001 3 213 2019-06-24 2.79
## 2002 3 15 2017-09-16 0.20
## 2003 2 102 2019-06-17 1.41
## 2004 3 93 2019-05-04 1.24
## 2005 4 28 2019-07-06 0.37
## 2006 1 116 2019-06-14 1.51
## 2007 1 313 2019-07-05 4.09
## 2008 3 156 2019-06-30 2.08
## 2009 3 106 2019-05-08 1.42
## 2010 5 1 2015-03-25 0.02
## 2011 2 27 2019-01-01 0.35
## 2012 2 53 2019-06-19 0.86
## 2013 2 0 NA
## 2014 2 8 2019-05-28 0.11
## 2015 6 10 2017-07-03 0.13
## 2016 1 594 2019-06-15 7.57
## 2017 3 9 2015-03-30 0.12
## 2018 2 163 2019-07-05 2.12
## 2019 30 15 2019-07-01 0.26
## 2020 25 49 2016-10-17 0.63
## 2021 2 147 2019-06-22 1.89
## 2022 3 78 2019-05-27 1.01
## 2023 1 71 2018-09-04 1.05
## 2024 180 0 NA
## 2025 5 86 2019-06-21 1.13
## 2026 3 90 2019-03-24 1.17
## 2027 3 104 2019-06-19 1.35
## 2028 3 28 2019-04-11 0.36
## 2029 3 0 NA
## 2030 4 2 2016-08-18 0.05
## 2031 1 597 2019-06-23 7.72
## 2032 1 607 2019-06-21 7.75
## 2033 4 37 2018-09-30 0.47
## 2034 5 152 2019-06-19 2.10
## 2035 3 66 2019-06-10 0.93
## 2036 7 28 2019-05-22 0.37
## 2037 2 233 2019-06-23 3.01
## 2038 2 30 2019-07-02 0.42
## 2039 30 0 NA
## 2040 3 2 2017-08-02 0.06
## 2041 3 26 2018-11-27 0.34
## 2042 3 24 2018-02-12 0.31
## 2043 2 157 2019-06-23 2.03
## 2044 3 4 2019-01-03 0.06
## 2045 3 136 2019-07-07 1.80
## 2046 3 5 2017-02-19 0.08
## 2047 1 3 2019-01-01 0.04
## 2048 3 48 2019-06-23 0.66
## 2049 1 103 2019-06-10 1.60
## 2050 7 73 2019-06-16 0.94
## 2051 2 163 2019-06-18 2.13
## 2052 2 153 2019-06-28 2.17
## 2053 2 287 2019-06-10 3.69
## 2054 6 1 2017-01-03 0.03
## 2055 7 28 2018-08-27 0.39
## 2056 1 120 2019-06-21 1.89
## 2057 3 68 2019-06-24 0.89
## 2058 4 22 2019-02-23 0.30
## 2059 28 28 2019-05-31 0.41
## 2060 6 22 2019-01-04 0.28
## 2061 1 78 2019-07-05 1.02
## 2062 5 69 2019-06-15 0.91
## 2063 5 91 2019-06-01 1.18
## 2064 29 12 2017-08-22 0.17
## 2065 3 25 2015-01-03 0.33
## 2066 30 4 2016-06-10 0.07
## 2067 7 92 2019-06-24 1.23
## 2068 7 13 2019-06-10 0.17
## 2069 1 30 2016-10-16 0.39
## 2070 2 38 2019-02-16 0.50
## 2071 1 75 2017-01-01 1.00
## 2072 3 20 2019-06-10 0.26
## 2073 3 13 2019-06-18 0.66
## 2074 5 0 NA
## 2075 30 116 2019-06-23 1.93
## 2076 20 35 2015-01-05 0.45
## 2077 29 55 2019-05-31 0.72
## 2078 2 100 2019-06-24 1.31
## 2079 14 17 2019-06-30 0.23
## 2080 2 20 2019-07-01 0.26
## 2081 1 94 2019-06-16 1.22
## 2082 30 81 2019-05-31 1.05
## 2083 1 32 2019-05-19 0.43
## 2084 7 15 2019-06-29 0.23
## 2085 5 39 2019-04-28 0.52
## 2086 2 42 2019-05-20 0.72
## 2087 3 209 2019-06-11 2.70
## 2088 1 67 2019-06-23 0.87
## 2089 4 45 2019-07-01 0.59
## 2090 3 1 2018-01-02 0.05
## 2091 5 117 2019-05-18 1.61
## 2092 14 14 2019-01-29 0.18
## 2093 1 414 2019-06-22 5.39
## 2094 20 11 2019-06-03 0.16
## 2095 40 16 2019-06-09 0.21
## 2096 30 30 2019-06-01 0.39
## 2097 2 74 2019-05-19 0.96
## 2098 3 73 2019-07-05 0.94
## 2099 7 50 2018-05-06 0.66
## 2100 2 56 2019-07-01 0.73
## 2101 5 7 2014-06-27 0.09
## 2102 7 13 2018-11-01 0.17
## 2103 2 236 2019-06-21 3.08
## 2104 1 129 2019-06-21 1.76
## 2105 5 114 2019-06-09 1.49
## 2106 3 67 2018-06-10 0.91
## 2107 7 5 2016-01-03 0.09
## 2108 59 51 2019-02-01 0.66
## 2109 6 15 2019-01-01 0.21
## 2110 10 10 2018-06-26 0.13
## 2111 1 21 2018-10-14 0.30
## 2112 2 324 2019-06-28 4.30
## 2113 28 14 2019-02-28 0.69
## 2114 3 51 2018-11-25 0.70
## 2115 2 35 2019-02-03 0.46
## 2116 2 11 2018-10-15 0.14
## 2117 2 53 2019-06-23 0.70
## 2118 3 159 2019-07-03 2.09
## 2119 2 7 2018-12-21 0.09
## 2120 30 48 2016-11-11 0.63
## 2121 3 158 2019-07-02 2.08
## 2122 185 0 NA
## 2123 4 65 2019-06-16 0.85
## 2124 1 18 2019-05-13 0.32
## 2125 5 395 2019-06-21 5.16
## 2126 1 11 2018-12-09 0.19
## 2127 4 33 2018-01-07 0.46
## 2128 10 35 2019-01-02 0.46
## 2129 2 61 2019-06-23 0.80
## 2130 3 10 2019-01-01 0.30
## 2131 2 260 2019-07-03 3.44
## 2132 2 183 2019-06-15 2.45
## 2133 2 54 2019-07-02 0.72
## 2134 3 37 2018-09-08 0.48
## 2135 4 1 2013-04-09 0.01
## 2136 1 0 NA
## 2137 9 3 2018-09-25 0.04
## 2138 30 190 2019-06-04 2.63
## 2139 30 25 2018-12-22 0.36
## 2140 180 0 NA
## 2141 3 281 2019-06-21 3.68
## 2142 4 70 2019-06-12 1.64
## 2143 5 12 2016-08-20 0.17
## 2144 3 96 2019-06-22 1.29
## 2145 5 6 2016-08-26 0.08
## 2146 5 25 2019-06-01 0.34
## 2147 3 3 2014-09-24 0.04
## 2148 2 57 2019-06-26 0.78
## 2149 3 182 2019-05-29 2.39
## 2150 3 17 2018-06-11 0.22
## 2151 365 1 2013-08-01 0.01
## 2152 3 185 2019-06-14 2.46
## 2153 30 8 2019-06-03 0.11
## 2154 30 13 2019-06-15 0.20
## 2155 30 4 2018-03-31 0.08
## 2156 3 28 2019-07-03 1.52
## 2157 4 81 2019-05-21 1.07
## 2158 30 1 2014-10-05 0.02
## 2159 11 14 2018-05-29 0.24
## 2160 7 1 2015-12-22 0.02
## 2161 3 200 2019-07-04 2.62
## 2162 4 19 2019-04-25 0.52
## 2163 20 33 2019-06-02 0.43
## 2164 1 447 2019-07-01 5.89
## 2165 7 2 2017-08-19 0.03
## 2166 3 108 2019-07-01 1.44
## 2167 28 1 2015-10-29 0.02
## 2168 3 92 2019-06-19 1.22
## 2169 2 117 2019-06-24 1.53
## 2170 2 66 2019-05-28 0.94
## 2171 7 70 2018-08-12 0.93
## 2172 7 98 2019-06-26 1.39
## 2173 1 43 2019-06-02 0.61
## 2174 10 45 2015-08-05 0.60
## 2175 3 41 2019-05-27 0.59
## 2176 15 10 2013-11-09 0.13
## 2177 1 58 2019-07-06 0.77
## 2178 2 48 2019-05-05 0.64
## 2179 7 8 2015-08-29 0.11
## 2180 1 127 2019-06-23 1.67
## 2181 7 10 2018-08-19 0.17
## 2182 1 0 NA
## 2183 6 5 2018-07-03 0.07
## 2184 5 8 2014-05-27 0.11
## 2185 30 71 2019-05-31 0.94
## 2186 5 7 2016-10-26 0.10
## 2187 28 1 2017-01-03 0.03
## 2188 3 10 2019-04-27 0.85
## 2189 3 10 2017-08-26 0.14
## 2190 3 49 2018-09-05 0.69
## 2191 3 138 2019-06-22 1.82
## 2192 3 163 2019-06-05 2.17
## 2193 2 0 NA
## 2194 45 20 2017-01-03 0.26
## 2195 2 132 2019-06-25 1.74
## 2196 7 12 2019-07-05 0.18
## 2197 60 11 2015-10-15 0.15
## 2198 2 45 2017-06-19 0.66
## 2199 2 11 2018-09-02 0.18
## 2200 5 47 2019-06-08 0.63
## 2201 5 66 2019-06-26 0.87
## 2202 5 35 2019-06-10 0.46
## 2203 5 12 2019-05-30 1.01
## 2204 2 65 2019-06-05 0.86
## 2205 2 39 2019-06-05 0.58
## 2206 2 45 2018-01-01 0.60
## 2207 7 0 NA
## 2208 7 5 2017-06-03 0.16
## 2209 2 38 2019-06-10 0.61
## 2210 2 17 2019-05-01 0.23
## 2211 4 70 2019-05-23 0.93
## 2212 3 226 2019-07-01 2.97
## 2213 5 8 2017-05-31 0.11
## 2214 3 166 2018-07-28 2.21
## 2215 360 1 2015-01-02 0.02
## 2216 1 25 2019-06-22 0.36
## 2217 30 52 2018-01-03 0.72
## 2218 6 127 2019-06-14 1.68
## 2219 2 18 2019-06-16 3.05
## 2220 2 210 2019-07-06 2.79
## 2221 1 281 2019-06-11 3.70
## 2222 5 70 2018-10-26 1.16
## 2223 4 128 2019-06-22 1.76
## 2224 3 58 2019-05-19 0.77
## 2225 3 179 2019-06-09 2.39
## 2226 3 173 2019-06-06 2.34
## 2227 1 16 2019-06-30 0.68
## 2228 30 26 2019-05-20 0.38
## 2229 30 31 2018-01-04 0.43
## 2230 2 27 2019-05-26 0.57
## 2231 3 7 2017-12-10 0.10
## 2232 3 7 2016-09-05 0.10
## 2233 5 83 2019-06-10 1.11
## 2234 1 46 2019-07-07 0.79
## 2235 4 112 2019-07-02 1.49
## 2236 1 356 2019-07-05 4.72
## 2237 1 55 2019-06-02 0.73
## 2238 2 68 2019-06-06 0.91
## 2239 4 95 2019-04-14 1.26
## 2240 5 16 2018-09-27 0.25
## 2241 30 0 NA
## 2242 7 44 2019-05-31 0.74
## 2243 1 116 2019-06-17 1.54
## 2244 1 4 2017-08-01 0.06
## 2245 31 235 2019-05-31 3.14
## 2246 2 10 2019-06-23 0.13
## 2247 3 2 2017-05-29 0.08
## 2248 1 360 2019-06-24 4.79
## 2249 5 0 NA
## 2250 2 51 2019-06-30 0.68
## 2251 2 146 2019-06-09 1.94
## 2252 30 16 2017-12-02 0.21
## 2253 3 64 2019-05-06 0.87
## 2254 2 3 2017-05-29 0.08
## 2255 3 145 2019-06-09 1.97
## 2256 1 206 2019-06-19 2.72
## 2257 2 279 2019-06-22 3.68
## 2258 28 18 2019-04-29 0.36
## 2259 3 162 2019-06-26 2.15
## 2260 1 323 2019-07-01 4.30
## 2261 2 13 2018-10-14 0.26
## 2262 30 9 2016-08-20 0.12
## 2263 30 23 2019-05-18 0.61
## 2264 30 17 2019-01-31 0.39
## 2265 1 136 2019-06-23 1.81
## 2266 5 26 2019-06-01 0.35
## 2267 2 70 2019-06-24 0.96
## 2268 2 243 2019-06-27 3.22
## 2269 14 6 2018-10-06 0.10
## 2270 10 36 2018-12-01 0.48
## 2271 1 14 2019-03-08 0.20
## 2272 2 2 2014-10-02 0.03
## 2273 5 44 2019-07-03 0.62
## 2274 2 123 2019-06-23 1.63
## 2275 2 248 2019-05-05 3.27
## 2276 7 26 2019-06-25 0.67
## 2277 7 0 NA
## 2278 1 49 2019-06-24 0.66
## 2279 2 152 2019-05-31 2.03
## 2280 7 195 2019-07-03 2.72
## 2281 30 23 2017-12-07 0.47
## 2282 4 54 2019-06-02 0.72
## 2283 2 0 NA
## 2284 2 233 2019-06-25 3.12
## 2285 2 19 2018-12-27 0.31
## 2286 2 116 2019-07-04 1.55
## 2287 3 3 2016-10-14 0.06
## 2288 30 38 2019-06-01 0.51
## 2289 2 0 NA
## 2290 4 227 2019-06-17 3.01
## 2291 9 27 2019-05-21 0.37
## 2292 1 349 2019-06-30 4.73
## 2293 1 67 2019-06-15 0.89
## 2294 4 95 2019-06-13 1.33
## 2295 4 5 2019-01-01 0.07
## 2296 4 23 2019-06-30 0.31
## 2297 30 36 2019-06-29 0.48
## 2298 5 59 2019-07-05 1.76
## 2299 4 72 2016-05-28 0.97
## 2300 3 21 2018-11-26 0.30
## 2301 2 44 2019-06-29 0.62
## 2302 6 32 2019-05-10 0.43
## 2303 2 132 2019-06-30 1.75
## 2304 4 37 2019-06-23 0.49
## 2305 3 37 2019-07-07 0.58
## 2306 1 23 2018-07-23 0.46
## 2307 2 21 2019-06-02 0.29
## 2308 2 55 2019-06-22 0.88
## 2309 1 6 2019-03-31 0.13
## 2310 2 1 2015-09-12 0.02
## 2311 3 218 2019-06-19 2.92
## 2312 2 16 2018-12-19 0.26
## 2313 3 29 2019-07-01 0.41
## 2314 2 36 2019-04-24 0.51
## 2315 5 73 2019-06-07 0.99
## 2316 1 65 2019-05-24 0.87
## 2317 5 20 2019-06-23 0.54
## 2318 14 1 2015-01-09 0.02
## 2319 28 16 2018-01-01 0.22
## 2320 2 246 2019-06-11 3.30
## 2321 3 126 2019-06-30 1.68
## 2322 3 13 2018-12-31 0.18
## 2323 5 4 2017-09-29 0.17
## 2324 5 1 2015-01-01 0.02
## 2325 90 0 NA
## 2326 3 61 2019-06-15 0.81
## 2327 3 29 2019-06-29 0.48
## 2328 2 4 2018-05-28 0.05
## 2329 3 42 2019-06-15 0.63
## 2330 3 82 2019-06-30 1.09
## 2331 3 308 2019-07-05 4.11
## 2332 14 79 2019-05-12 1.09
## 2333 1 66 2019-06-17 0.89
## 2334 14 19 2019-05-02 0.26
## 2335 2 8 2018-06-24 0.11
## 2336 30 12 2016-04-01 0.16
## 2337 2 26 2017-05-21 0.35
## 2338 3 19 2019-06-24 0.25
## 2339 1 7 2019-04-21 0.52
## 2340 3 0 NA
## 2341 5 34 2019-06-15 0.46
## 2342 3 13 2016-08-23 0.17
## 2343 3 173 2019-06-10 2.36
## 2344 1 0 NA
## 2345 1 4 2016-08-17 0.11
## 2346 4 27 2018-07-07 0.36
## 2347 45 11 2019-02-19 0.18
## 2348 1 9 2017-08-19 0.19
## 2349 3 60 2019-06-15 1.19
## 2350 2 70 2019-06-03 0.95
## 2351 1 221 2019-07-01 3.00
## 2352 5 179 2019-05-28 2.61
## 2353 30 3 2016-07-04 0.06
## 2354 2 292 2019-06-08 3.90
## 2355 5 42 2019-04-10 0.56
## 2356 30 24 2016-01-27 0.33
## 2357 3 9 2018-08-30 0.18
## 2358 7 2 2014-07-12 0.03
## 2359 1 6 2019-06-01 0.08
## 2360 3 140 2019-01-01 1.87
## 2361 14 46 2019-05-17 0.62
## 2362 1 54 2019-07-07 0.75
## 2363 1 127 2019-06-30 1.72
## 2364 7 1 2013-05-24 0.01
## 2365 1 96 2019-01-13 1.31
## 2366 30 4 2018-01-01 0.07
## 2367 1 284 2019-06-19 3.80
## 2368 1 30 2019-07-05 0.40
## 2369 3 1 2016-11-07 0.03
## 2370 2 126 2019-06-25 1.75
## 2371 2 198 2019-06-21 2.66
## 2372 4 26 2019-06-10 1.34
## 2373 5 13 2019-01-02 0.17
## 2374 30 10 2016-11-30 0.13
## 2375 2 51 2019-06-15 0.91
## 2376 14 4 2015-09-22 0.06
## 2377 30 13 2018-04-30 0.18
## 2378 1 273 2019-06-23 3.66
## 2379 2 12 2018-09-30 0.16
## 2380 4 3 2017-05-20 0.04
## 2381 30 13 2018-09-14 0.25
## 2382 2 56 2019-06-22 0.76
## 2383 56 0 NA
## 2384 7 116 2019-06-09 1.57
## 2385 2 31 2018-10-26 0.42
## 2386 15 5 2019-04-30 0.08
## 2387 1 0 NA
## 2388 2 136 2019-06-22 1.83
## 2389 30 0 NA
## 2390 7 6 2016-10-09 0.08
## 2391 2 80 2019-07-01 3.93
## 2392 4 25 2017-01-03 0.34
## 2393 2 43 2019-05-28 0.59
## 2394 1 66 2019-05-04 0.89
## 2395 1 93 2019-06-23 1.28
## 2396 6 19 2017-07-24 0.26
## 2397 30 2 2017-08-12 0.03
## 2398 1 85 2019-06-29 1.15
## 2399 2 32 2019-04-06 0.44
## 2400 14 8 2016-01-09 0.11
## 2401 2 228 2019-07-01 3.07
## 2402 7 30 2019-01-26 0.52
## 2403 2 0 NA
## 2404 4 125 2018-12-29 1.68
## 2405 1 0 NA
## 2406 2 9 2015-05-17 0.12
## 2407 4 42 2019-06-16 1.44
## 2408 3 118 2019-01-23 1.61
## 2409 3 38 2019-05-01 0.53
## 2410 1 38 2019-05-04 0.60
## 2411 1 224 2019-07-02 3.87
## 2412 2 64 2019-06-20 0.87
## 2413 60 7 2018-10-17 0.10
## 2414 2 124 2019-06-22 1.70
## 2415 7 11 2019-04-30 0.63
## 2416 2 59 2019-06-28 0.81
## 2417 2 191 2019-06-23 2.60
## 2418 1 1 2016-07-01 0.03
## 2419 3 155 2019-06-15 2.39
## 2420 3 105 2019-06-24 1.42
## 2421 1 33 2016-05-09 0.48
## 2422 3 11 2018-10-22 0.16
## 2423 1 0 NA
## 2424 8 5 2018-08-25 0.21
## 2425 2 28 2019-05-20 0.45
## 2426 2 213 2019-07-06 2.87
## 2427 90 0 NA
## 2428 3 14 2019-05-17 0.24
## 2429 29 10 2019-01-18 0.17
## 2430 3 68 2019-06-26 0.97
## 2431 2 103 2019-06-23 1.39
## 2432 1 7 2019-04-12 0.10
## 2433 5 4 2016-08-19 0.07
## 2434 8 3 2018-07-31 0.04
## 2435 4 77 2019-06-19 1.81
## 2436 7 2 2014-10-12 0.03
## 2437 1 109 2019-06-22 1.49
## 2438 2 1 2017-06-22 0.04
## 2439 3 146 2019-06-26 2.08
## 2440 1 374 2019-06-23 5.06
## 2441 45 45 2019-06-04 0.61
## 2442 30 33 2017-12-08 0.46
## 2443 7 7 2019-02-19 0.33
## 2444 30 4 2018-07-01 0.09
## 2445 1 17 2016-09-27 0.25
## 2446 2 172 2019-06-27 2.32
## 2447 1 21 2019-06-23 0.29
## 2448 5 110 2018-01-03 1.49
## 2449 3 23 2019-01-04 0.67
## 2450 7 4 2015-07-01 0.06
## 2451 3 13 2019-05-15 0.22
## 2452 5 0 NA
## 2453 4 27 2019-01-02 0.37
## 2454 7 6 2018-12-02 0.11
## 2455 5 1 2015-08-01 0.02
## 2456 60 0 NA
## 2457 2 52 2019-04-10 0.71
## 2458 3 56 2019-06-26 0.79
## 2459 1 190 2019-06-21 2.57
## 2460 30 3 2015-08-23 0.05
## 2461 3 13 2017-08-18 0.26
## 2462 2 23 2019-04-20 0.37
## 2463 2 8 2014-01-07 0.11
## 2464 3 12 2018-07-27 0.65
## 2465 30 4 2018-08-03 0.09
## 2466 3 28 2018-01-01 0.74
## 2467 2 11 2019-06-04 0.15
## 2468 1 153 2019-06-17 2.21
## 2469 6 148 2019-06-26 2.09
## 2470 5 12 2017-06-29 0.25
## 2471 3 130 2017-12-14 1.84
## 2472 5 11 2019-01-01 0.15
## 2473 4 12 2018-10-24 0.17
## 2474 5 66 2018-12-16 0.91
## 2475 3 0 NA
## 2476 3 191 2019-06-24 2.61
## 2477 1 92 2019-06-15 1.27
## 2478 7 42 2019-07-01 0.61
## 2479 3 66 2019-06-13 1.62
## 2480 14 4 2018-07-28 0.06
## 2481 2 24 2019-01-08 0.34
## 2482 5 206 2019-06-21 2.89
## 2483 1 85 2019-06-03 1.16
## 2484 5 0 NA
## 2485 3 106 2019-06-18 1.51
## 2486 3 21 2015-10-12 0.29
## 2487 3 153 2019-06-16 3.17
## 2488 1 4 2015-09-08 0.05
## 2489 1 119 2019-06-30 1.61
## 2490 2 114 2019-06-17 1.82
## 2491 30 1 2017-01-01 0.03
## 2492 2 1 2015-03-16 0.02
## 2493 5 6 2019-05-21 0.26
## 2494 1 2 2014-08-13 0.03
## 2495 1 127 2019-06-14 1.77
## 2496 1 3 2015-10-01 0.05
## 2497 7 10 2015-12-19 0.15
## 2498 1 1 2014-05-17 0.02
## 2499 2 147 2019-06-24 2.02
## 2500 50 4 2017-08-20 0.07
## 2501 1 77 2019-06-27 1.08
## 2502 3 18 2019-05-04 0.25
## 2503 3 0 NA
## 2504 5 18 2018-10-13 0.29
## 2505 2 9 2018-01-02 0.37
## 2506 5 49 2019-01-02 0.67
## 2507 3 0 NA
## 2508 3 27 2018-09-08 0.37
## 2509 3 67 2017-01-16 0.92
## 2510 2 114 2019-07-05 1.59
## 2511 30 1 2019-06-19 1.00
## 2512 2 2 2016-09-19 0.05
## 2513 12 16 2019-03-16 0.22
## 2514 1 142 2019-06-13 1.95
## 2515 6 45 2018-09-11 0.64
## 2516 4 106 2019-06-17 1.47
## 2517 4 1 2014-09-22 0.02
## 2518 5 90 2019-06-30 1.37
## 2519 2 4 2018-08-23 0.08
## 2520 4 27 2017-01-01 0.39
## 2521 1 0 NA
## 2522 1 102 2019-07-03 1.73
## 2523 2 57 2019-06-30 2.67
## 2524 7 18 2015-10-09 0.28
## 2525 29 10 2018-08-20 0.14
## 2526 14 51 2018-01-31 0.70
## 2527 2 1 2018-10-27 0.12
## 2528 1 49 2017-12-30 0.91
## 2529 4 68 2019-06-16 1.06
## 2530 2 5 2019-03-10 0.13
## 2531 3 4 2017-07-30 0.06
## 2532 30 12 2018-11-30 0.17
## 2533 2 64 2019-07-02 0.91
## 2534 2 2 2016-09-04 0.03
## 2535 5 5 2018-07-27 0.07
## 2536 1 28 2019-05-23 0.51
## 2537 7 0 NA
## 2538 3 108 2019-06-22 1.51
## 2539 25 4 2015-04-03 0.06
## 2540 3 73 2018-12-08 1.00
## 2541 1 3 2015-12-20 0.06
## 2542 3 107 2019-07-02 1.70
## 2543 30 11 2019-05-29 0.18
## 2544 1 173 2019-07-05 2.36
## 2545 3 6 2018-04-21 0.08
## 2546 1 117 2019-05-30 1.61
## 2547 3 24 2019-05-18 0.33
## 2548 1 173 2019-06-29 2.38
## 2549 2 10 2019-05-26 0.20
## 2550 4 5 2016-01-01 0.07
## 2551 3 19 2019-01-31 0.27
## 2552 5 120 2018-01-03 1.66
## 2553 70 44 2019-04-26 0.61
## 2554 2 61 2019-05-20 0.93
## 2555 1 6 2017-09-07 0.10
## 2556 1 5 2015-06-28 0.07
## 2557 3 2 2018-08-16 0.09
## 2558 3 14 2019-03-11 0.20
## 2559 2 26 2019-06-01 0.43
## 2560 3 72 2017-07-01 1.22
## 2561 3 24 2019-05-27 0.33
## 2562 3 2 2016-05-29 0.05
## 2563 3 13 2016-08-27 0.28
## 2564 1 86 2019-06-23 2.87
## 2565 1 115 2019-05-21 1.63
## 2566 25 11 2017-07-31 0.15
## 2567 7 41 2019-03-29 0.58
## 2568 6 3 2019-01-02 0.22
## 2569 3 38 2019-06-30 0.54
## 2570 1 5 2019-07-01 0.07
## 2571 4 5 2017-12-03 0.07
## 2572 7 4 2018-12-29 0.08
## 2573 3 155 2019-06-22 2.18
## 2574 7 3 2013-11-21 0.04
## 2575 1 75 2019-06-13 1.04
## 2576 39 25 2019-05-13 0.35
## 2577 120 34 2019-05-16 0.47
## 2578 3 35 2019-06-28 0.49
## 2579 2 6 2015-09-07 0.10
## 2580 6 0 NA
## 2581 30 2 2018-10-13 0.04
## 2582 7 11 2019-01-05 0.20
## 2583 2 24 2019-01-03 0.53
## 2584 1 86 2019-06-30 1.83
## 2585 7 14 2019-03-02 0.20
## 2586 3 52 2019-04-22 0.72
## 2587 2 14 2019-05-31 0.20
## 2588 3 0 NA
## 2589 3 123 2019-07-02 1.73
## 2590 2 11 2019-04-21 0.80
## 2591 3 230 2019-07-01 3.31
## 2592 3 141 2019-06-25 2.00
## 2593 2 8 2018-11-26 0.11
## 2594 2 146 2019-06-30 2.01
## 2595 2 20 2019-06-07 0.33
## 2596 3 2 2019-02-03 0.32
## 2597 3 144 2019-06-23 2.87
## 2598 30 1 2015-04-03 0.02
## 2599 2 30 2018-09-03 0.42
## 2600 2 7 2019-04-01 0.11
## 2601 5 11 2019-06-11 0.18
## 2602 15 2 2016-01-30 0.03
## 2603 3 162 2019-07-02 2.24
## 2604 1 0 NA
## 2605 1 123 2019-06-30 2.23
## 2606 1 141 2019-06-27 4.51
## 2607 1 78 2019-06-22 1.10
## 2608 1 96 2019-06-28 1.36
## 2609 30 58 2019-06-30 0.81
## 2610 1 2 2013-10-09 0.03
## 2611 28 91 2019-06-24 1.25
## 2612 15 0 NA
## 2613 2 24 2019-07-01 0.38
## 2614 1 16 2019-06-19 0.23
## 2615 10 6 2019-05-16 0.08
## 2616 7 140 2019-06-25 1.94
## 2617 4 95 2019-06-19 1.31
## 2618 30 5 2018-08-18 0.15
## 2619 1 2 2014-08-23 0.03
## 2620 1 245 2019-07-06 3.41
## 2621 3 5 2015-01-02 0.07
## 2622 5 39 2017-05-28 0.56
## 2623 28 0 NA
## 2624 3 90 2019-06-14 1.25
## 2625 120 3 2013-09-06 0.04
## 2626 4 28 2016-05-18 0.40
## 2627 7 2 2019-06-21 1.00
## 2628 2 77 2019-06-17 1.10
## 2629 1 77 2019-07-05 2.00
## 2630 1 2 2016-08-22 0.04
## 2631 3 231 2019-06-27 4.67
## 2632 30 7 2019-03-27 0.11
## 2633 2 98 2019-06-16 1.36
## 2634 4 14 2017-09-29 0.23
## 2635 5 25 2019-01-02 0.35
## 2636 1 226 2019-07-04 3.22
## 2637 30 6 2018-09-02 0.09
## 2638 28 33 2019-05-11 0.47
## 2639 3 82 2019-07-01 1.19
## 2640 30 0 NA
## 2641 7 0 NA
## 2642 3 53 2018-10-03 0.79
## 2643 24 10 2018-08-31 0.18
## 2644 4 7 2018-10-12 0.21
## 2645 3 54 2019-06-17 0.77
## 2646 1 320 2019-06-12 5.68
## 2647 30 2 2018-08-31 0.06
## 2648 3 23 2019-06-03 0.64
## 2649 2 220 2019-06-27 3.10
## 2650 5 31 2019-02-28 0.43
## 2651 5 3 2018-12-31 0.16
## 2652 4 68 2019-04-27 0.95
## 2653 2 33 2019-05-23 0.52
## 2654 2 44 2019-01-25 0.64
## 2655 2 189 2017-12-20 2.63
## 2656 3 20 2019-04-28 0.34
## 2657 2 11 2019-01-01 0.44
## 2658 3 0 NA
## 2659 5 11 2017-06-18 0.16
## 2660 7 64 2019-04-03 0.91
## 2661 1 76 2019-01-13 1.07
## 2662 2 140 2019-06-10 2.10
## 2663 30 25 2018-08-22 0.35
## 2664 6 1 2018-09-01 0.10
## 2665 7 0 NA
## 2666 1 4 2016-07-05 0.06
## 2667 3 5 2016-07-25 0.11
## 2668 30 21 2019-04-30 0.45
## 2669 30 18 2017-09-30 0.31
## 2670 10 0 NA
## 2671 7 41 2019-06-11 0.58
## 2672 14 172 2019-05-25 2.39
## 2673 5 13 2019-05-22 0.56
## 2674 20 75 2018-09-15 1.05
## 2675 6 1 2013-09-07 0.01
## 2676 2 5 2014-10-20 0.07
## 2677 3 62 2019-05-12 1.46
## 2678 6 0 NA
## 2679 3 7 2018-12-10 0.12
## 2680 3 199 2019-06-30 2.78
## 2681 1 123 2019-06-25 1.99
## 2682 2 7 2015-12-07 0.15
## 2683 5 3 2016-10-09 0.06
## 2684 2 34 2019-07-02 1.47
## 2685 30 23 2019-04-20 0.32
## 2686 1 4 2015-10-04 0.06
## 2687 3 220 2019-06-28 3.19
## 2688 7 40 2019-06-13 0.86
## 2689 3 208 2019-06-25 2.89
## 2690 3 232 2019-06-13 3.22
## 2691 3 0 NA
## 2692 2 16 2019-06-09 0.24
## 2693 1 196 2019-07-03 5.40
## 2694 30 4 2019-01-28 0.06
## 2695 2 64 2019-06-01 0.89
## 2696 10 2 2015-09-01 0.03
## 2697 1 0 NA
## 2698 2 149 2019-06-16 2.41
## 2699 1 2 2013-09-28 0.03
## 2700 2 1 2016-05-04 0.03
## 2701 30 49 2017-01-02 0.69
## 2702 2 0 NA
## 2703 4 21 2019-01-02 0.29
## 2704 2 1 2017-10-28 0.05
## 2705 2 13 2019-06-09 0.23
## 2706 32 132 2018-05-01 1.84
## 2707 2 67 2018-11-12 0.97
## 2708 4 76 2019-02-04 1.07
## 2709 30 6 2018-09-11 0.08
## 2710 1 167 2019-05-07 2.78
## 2711 4 34 2019-01-01 0.72
## 2712 3 11 2019-01-27 0.33
## 2713 2 90 2019-07-02 1.25
## 2714 2 23 2018-09-23 0.32
## 2715 1 152 2019-07-04 4.54
## 2716 1 190 2019-06-16 2.64
## 2717 1 19 2016-06-29 0.26
## 2718 2 33 2019-04-10 0.47
## 2719 2 1 2015-05-17 0.02
## 2720 3 227 2019-06-14 3.16
## 2721 2 80 2017-07-19 1.28
## 2722 2 125 2019-06-28 1.77
## 2723 3 10 2019-05-26 0.26
## 2724 5 3 2018-01-01 0.13
## 2725 30 18 2019-05-20 0.29
## 2726 4 26 2019-07-05 0.53
## 2727 1 26 2016-12-13 0.36
## 2728 1 14 2016-10-22 0.19
## 2729 2 62 2019-05-23 2.22
## 2730 1 32 2016-09-21 0.45
## 2731 3 23 2019-05-06 0.32
## 2732 12 11 2019-06-29 0.16
## 2733 3 201 2019-06-14 2.84
## 2734 5 8 2018-01-02 0.24
## 2735 3 95 2019-02-11 1.32
## 2736 2 13 2014-09-01 0.18
## 2737 15 6 2018-11-07 0.58
## 2738 2 26 2017-09-30 0.37
## 2739 12 11 2017-07-30 0.15
## 2740 120 38 2019-05-15 0.54
## 2741 1 90 2019-01-01 1.29
## 2742 115 45 2019-03-15 0.63
## 2743 3 130 2017-05-04 1.85
## 2744 3 147 2019-07-01 2.05
## 2745 1 1 2013-09-16 0.01
## 2746 2 78 2019-06-30 2.49
## 2747 3 17 2016-09-24 0.43
## 2748 2 15 2019-05-20 0.21
## 2749 5 9 2016-09-28 0.16
## 2750 30 9 2018-02-18 0.13
## 2751 4 18 2018-11-25 0.25
## 2752 3 1 2018-09-13 0.10
## 2753 21 19 2019-01-02 0.28
## 2754 3 17 2018-10-22 0.28
## 2755 3 51 2019-04-26 0.79
## 2756 1 162 2019-06-19 2.26
## 2757 2 195 2019-06-30 2.74
## 2758 1 87 2019-06-27 1.23
## 2759 2 271 2019-06-30 3.85
## 2760 4 7 2015-09-04 0.10
## 2761 2 4 2019-05-12 0.08
## 2762 7 58 2019-03-29 0.83
## 2763 4 60 2019-06-19 0.85
## 2764 2 114 2019-06-23 1.62
## 2765 2 31 2017-03-31 0.44
## 2766 5 84 2019-06-16 1.17
## 2767 5 21 2018-11-30 0.36
## 2768 1 200 2019-06-02 2.80
## 2769 7 19 2019-02-18 0.43
## 2770 4 12 2019-02-22 0.17
## 2771 3 38 2019-06-25 0.54
## 2772 5 3 2014-04-02 0.04
## 2773 2 17 2018-10-20 0.25
## 2774 4 10 2018-10-06 0.14
## 2775 6 10 2018-05-30 0.39
## 2776 3 52 2019-06-24 2.44
## 2777 3 1 2019-01-04 0.16
## 2778 3 134 2019-06-20 2.00
## 2779 3 46 2019-07-01 0.76
## 2780 3 2 2016-07-09 0.05
## 2781 2 2 2016-09-04 0.06
## 2782 5 50 2019-06-13 0.91
## 2783 30 7 2018-10-31 0.11
## 2784 3 86 2019-05-26 1.29
## 2785 4 3 2015-12-01 0.06
## 2786 7 14 2019-04-24 0.30
## 2787 2 121 2019-05-31 1.70
## 2788 1 136 2019-04-04 2.13
## 2789 2 68 2019-06-20 1.14
## 2790 30 13 2014-01-05 0.18
## 2791 1 2 2015-03-18 0.03
## 2792 7 76 2019-06-30 1.11
## 2793 7 22 2019-06-21 0.49
## 2794 3 66 2019-05-27 1.05
## 2795 1 73 2019-05-13 1.10
## 2796 28 23 2019-05-05 0.38
## 2797 2 11 2014-02-03 0.16
## 2798 1 126 2019-06-19 1.77
## 2799 2 229 2019-06-24 3.28
## 2800 2 2 2018-09-12 0.19
## 2801 1 116 2017-09-06 1.63
## 2802 31 177 2019-06-06 2.49
## 2803 3 105 2019-06-19 1.49
## 2804 3 184 2019-06-26 2.65
## 2805 2 31 2019-05-16 0.44
## 2806 2 36 2019-06-25 0.66
## 2807 5 9 2016-10-12 0.13
## 2808 30 27 2019-05-31 0.38
## 2809 1 124 2019-06-23 1.77
## 2810 4 131 2019-06-07 1.88
## 2811 30 50 2018-07-08 0.72
## 2812 4 17 2019-04-29 0.27
## 2813 2 95 2019-06-29 1.65
## 2814 2 29 2019-06-30 0.47
## 2815 2 25 2018-10-28 0.40
## 2816 1 212 2019-06-23 3.05
## 2817 1 15 2016-05-24 0.21
## 2818 2 12 2018-07-01 0.24
## 2819 2 30 2019-06-29 2.61
## 2820 30 5 2014-04-23 0.07
## 2821 1 165 2019-06-23 2.36
## 2822 2 260 2019-07-07 3.97
## 2823 7 2 2015-12-23 0.04
## 2824 3 9 2018-12-31 0.19
## 2825 4 9 2018-06-11 0.14
## 2826 2 59 2019-06-16 0.84
## 2827 4 38 2019-05-14 0.56
## 2828 20 33 2019-04-21 0.46
## 2829 28 14 2017-04-15 0.20
## 2830 2 68 2019-05-27 0.96
## 2831 1 123 2019-06-24 1.74
## 2832 365 0 NA
## 2833 5 31 2019-06-23 0.45
## 2834 1 1 2015-07-16 0.02
## 2835 7 19 2019-04-19 0.27
## 2836 2 198 2019-06-17 2.78
## 2837 7 19 2019-05-23 0.27
## 2838 7 27 2019-05-25 0.46
## 2839 4 68 2019-01-01 0.96
## 2840 30 1 2015-10-07 0.02
## 2841 2 48 2019-01-02 0.90
## 2842 5 116 2019-05-27 1.65
## 2843 5 10 2019-04-26 0.14
## 2844 1 8 2017-05-11 0.12
## 2845 2 285 2019-07-02 4.02
## 2846 3 142 2019-07-07 2.01
## 2847 30 3 2016-09-19 0.04
## 2848 120 12 2014-07-21 0.17
## 2849 7 61 2019-02-15 0.87
## 2850 2 55 2019-06-30 0.78
## 2851 30 8 2019-01-30 0.12
## 2852 2 44 2018-01-01 0.64
## 2853 4 41 2019-06-18 0.58
## 2854 3 12 2019-05-21 0.17
## 2855 1000 0 NA
## 2856 7 26 2018-03-07 0.41
## 2857 3 38 2019-05-27 0.56
## 2858 1 48 2015-10-11 0.68
## 2859 5 152 2019-06-29 2.14
## 2860 3 1 2016-07-18 0.03
## 2861 30 0 NA
## 2862 1 4 2019-06-30 2.26
## 2863 3 1 2015-09-30 0.02
## 2864 4 142 2019-06-26 2.03
## 2865 3 158 2019-07-07 2.27
## 2866 5 112 2019-07-02 1.59
## 2867 2 141 2019-06-21 2.00
## 2868 3 19 2019-06-16 0.27
## 2869 2 1 2018-12-26 0.15
## 2870 1 73 2019-05-24 1.08
## 2871 4 72 2019-06-15 1.02
## 2872 4 13 2019-06-07 0.22
## 2873 7 40 2017-11-25 0.57
## 2874 6 36 2019-06-06 0.69
## 2875 1 5 2019-05-03 0.08
## 2876 3 94 2019-07-01 1.33
## 2877 2 127 2019-06-23 1.80
## 2878 2 45 2019-05-27 1.64
## 2879 3 220 2019-06-23 3.11
## 2880 2 121 2019-06-29 1.72
## 2881 3 185 2019-06-05 2.62
## 2882 3 229 2019-06-29 3.32
## 2883 6 29 2019-04-29 0.43
## 2884 20 1 2014-08-10 0.02
## 2885 2 21 2019-05-07 0.30
## 2886 5 1 2015-06-01 0.02
## 2887 9 11 2019-06-01 0.16
## 2888 6 41 2019-07-03 0.58
## 2889 3 173 2019-06-23 2.47
## 2890 3 20 2016-10-01 0.29
## 2891 3 1 2019-04-09 0.33
## 2892 1 34 2019-01-24 0.48
## 2893 30 12 2019-06-16 0.18
## 2894 2 147 2019-06-17 2.09
## 2895 30 7 2018-12-26 0.13
## 2896 1 59 2019-06-19 0.84
## 2897 1 0 NA
## 2898 30 9 2018-10-13 0.14
## 2899 1 203 2019-07-01 2.87
## 2900 3 25 2019-01-02 0.36
## 2901 2 189 2019-06-30 3.02
## 2902 5 52 2019-02-07 0.74
## 2903 59 48 2018-10-18 0.69
## 2904 2 6 2019-04-28 0.51
## 2905 4 12 2017-09-22 0.18
## 2906 29 3 2016-10-02 0.04
## 2907 3 19 2019-05-30 0.28
## 2908 2 201 2019-06-19 2.85
## 2909 6 79 2019-01-01 1.12
## 2910 30 24 2018-11-18 0.34
## 2911 5 5 2018-09-19 0.07
## 2912 30 18 2019-04-04 0.27
## 2913 30 17 2019-04-12 0.35
## 2914 30 14 2019-06-17 0.22
## 2915 1 23 2019-06-29 0.33
## 2916 31 28 2016-07-12 0.40
## 2917 2 14 2019-06-25 4.62
## 2918 1 0 NA
## 2919 3 139 2019-07-06 2.38
## 2920 1 274 2019-04-25 4.02
## 2921 1 0 NA
## 2922 31 14 2018-08-05 0.20
## 2923 2 201 2019-06-18 3.28
## 2924 7 34 2019-03-31 0.48
## 2925 1 40 2019-06-07 0.83
## 2926 30 128 2019-06-28 1.82
## 2927 3 2 2019-05-07 0.06
## 2928 4 24 2019-06-01 0.38
## 2929 31 6 2015-11-01 0.09
## 2930 3 52 2019-05-27 0.74
## 2931 1 19 2019-03-30 0.83
## 2932 3 48 2019-06-17 0.68
## 2933 2 13 2019-06-17 0.22
## 2934 1 0 NA
## 2935 2 64 2019-06-26 1.02
## 2936 1 37 2019-06-30 0.53
## 2937 3 146 2019-06-09 2.08
## 2938 2 144 2019-04-02 3.37
## 2939 3 34 2019-04-06 0.49
## 2940 3 101 2019-06-10 1.44
## 2941 7 11 2019-06-22 1.17
## 2942 1 0 NA
## 2943 3 59 2019-05-23 0.84
## 2944 2 244 2019-07-05 3.49
## 2945 30 7 2018-11-03 0.19
## 2946 3 11 2019-04-27 0.20
## 2947 2 108 2019-06-16 1.61
## 2948 15 53 2019-03-27 0.75
## 2949 4 182 2019-07-05 2.60
## 2950 3 164 2019-06-24 2.34
## 2951 2 4 2016-08-05 0.10
## 2952 5 7 2019-01-02 0.10
## 2953 1 69 2019-06-30 4.43
## 2954 2 28 2019-07-02 0.40
## 2955 4 2 2017-09-04 0.06
## 2956 1 214 2019-06-28 3.07
## 2957 3 23 2019-06-23 0.33
## 2958 1 274 2019-06-29 3.94
## 2959 5 31 2016-04-11 0.49
## 2960 3 65 2019-06-07 1.04
## 2961 2 23 2019-07-03 3.50
## 2962 3 6 2015-11-21 0.09
## 2963 7 18 2019-06-30 0.27
## 2964 4 11 2019-06-20 0.18
## 2965 1 135 2018-12-12 1.93
## 2966 7 7 2017-01-07 0.10
## 2967 1 60 2019-06-26 1.05
## 2968 1 38 2019-05-30 0.60
## 2969 2 19 2017-12-04 0.32
## 2970 3 200 2019-05-28 3.16
## 2971 14 30 2019-06-04 0.43
## 2972 2 27 2019-05-10 0.58
## 2973 2 92 2019-06-24 1.37
## 2974 5 79 2019-06-29 1.15
## 2975 1 20 2019-06-30 0.42
## 2976 2 25 2016-10-18 0.44
## 2977 1 340 2019-07-01 4.90
## 2978 3 231 2019-06-30 3.51
## 2979 30 183 2017-12-17 2.63
## 2980 20 52 2015-08-25 0.75
## 2981 2 210 2019-06-14 3.58
## 2982 30 2 2019-05-16 0.03
## 2983 3 18 2019-06-30 0.26
## 2984 3 53 2018-08-18 0.82
## 2985 2 65 2019-06-28 0.96
## 2986 80 20 2016-10-31 0.29
## 2987 1 0 NA
## 2988 2 40 2019-05-20 0.60
## 2989 5 14 2019-05-30 0.20
## 2990 2 119 2019-07-07 1.89
## 2991 3 4 2019-06-02 0.07
## 2992 3 144 2019-07-05 2.06
## 2993 1 221 2019-06-26 4.10
## 2994 3 3 2015-09-10 0.05
## 2995 2 26 2019-05-18 0.49
## 2996 30 6 2019-06-10 0.10
## 2997 5 13 2018-10-25 0.21
## 2998 3 111 2019-07-03 1.63
## 2999 2 235 2019-06-29 3.37
## 3000 2 11 2014-09-28 0.16
## 3001 1 29 2019-05-29 0.42
## 3002 2 17 2015-09-01 0.24
## 3003 3 78 2019-05-12 1.13
## 3004 3 115 2019-06-08 2.09
## 3005 7 19 2019-04-27 0.28
## 3006 2 144 2019-07-05 2.07
## 3007 1 41 2019-06-02 0.87
## 3008 4 10 2019-05-28 0.17
## 3009 1 9 2019-03-30 0.25
## 3010 3 112 2018-01-01 1.61
## 3011 4 123 2019-06-17 1.76
## 3012 4 127 2019-05-28 1.83
## 3013 3 6 2019-06-03 0.10
## 3014 7 0 NA
## 3015 2 3 2017-06-24 0.12
## 3016 2 107 2018-11-01 1.58
## 3017 1 41 2016-06-13 0.59
## 3018 1 43 2018-08-01 0.63
## 3019 5 62 2019-06-23 1.72
## 3020 1 233 2019-07-06 3.39
## 3021 2 386 2019-06-19 5.53
## 3022 60 74 2019-04-14 1.08
## 3023 5 108 2019-07-06 2.63
## 3024 1 205 2019-06-15 3.04
## 3025 5 63 2019-05-19 0.91
## 3026 1 0 NA
## 3027 7 39 2019-06-22 0.91
## 3028 2 37 2018-12-08 0.53
## 3029 3 1 2016-01-03 0.02
## 3030 3 19 2018-06-28 0.41
## 3031 3 50 2019-05-07 0.74
## 3032 10 20 2019-05-20 0.29
## 3033 2 85 2019-06-17 1.31
## 3034 1 142 2019-06-17 2.12
## 3035 4 22 2018-07-19 0.33
## 3036 2 6 2017-06-11 0.09
## 3037 3 210 2019-07-05 3.01
## 3038 5 79 2019-06-29 1.14
## 3039 3 0 NA
## 3040 1 0 NA
## 3041 3 10 2016-09-01 0.15
## 3042 2 2 2014-10-19 0.03
## 3043 1 57 2019-05-24 0.91
## 3044 3 258 2019-06-25 3.80
## 3045 5 4 2015-12-01 0.06
## 3046 1 10 2019-05-20 0.44
## 3047 2 11 2019-06-15 0.24
## 3048 3 143 2019-06-17 2.07
## 3049 1 26 2016-09-05 0.38
## 3050 7 0 NA
## 3051 2 32 2019-01-01 0.46
## 3052 2 14 2014-02-01 0.20
## 3053 2 15 2015-08-07 0.22
## 3054 1 92 2019-07-03 6.30
## 3055 2 14 2019-05-20 0.76
## 3056 6 40 2018-09-01 0.58
## 3057 2 12 2019-03-31 0.17
## 3058 1 71 2019-07-04 1.06
## 3059 1 0 NA
## 3060 5 16 2018-08-28 0.23
## 3061 4 134 2019-07-02 1.95
## 3062 3 2 2015-01-02 0.03
## 3063 3 190 2019-06-25 2.77
## 3064 10 4 2019-01-02 0.06
## 3065 1 19 2019-06-22 0.29
## 3066 7 30 2019-02-16 0.43
## 3067 3 22 2016-01-05 0.32
## 3068 1 0 NA
## 3069 30 83 2017-10-23 1.20
## 3070 1 1 2015-11-16 0.02
## 3071 2 2 2016-02-12 0.05
## 3072 1 93 2019-07-02 1.34
## 3073 2 25 2018-12-29 0.36
## 3074 2 240 2019-06-11 3.53
## 3075 1 80 2018-01-02 1.16
## 3076 5 80 2019-06-08 1.16
## 3077 1 336 2019-06-28 4.83
## 3078 2 10 2019-06-08 0.15
## 3079 30 93 2019-01-03 1.36
## 3080 5 54 2019-07-03 0.78
## 3081 3 164 2019-06-30 2.39
## 3082 3 35 2019-06-21 0.72
## 3083 2 8 2016-07-29 0.18
## 3084 7 3 2018-04-08 0.04
## 3085 1 53 2019-04-28 1.04
## 3086 2 0 NA
## 3087 30 104 2019-04-06 1.51
## 3088 1 36 2016-01-02 0.53
## 3089 7 9 2019-05-21 0.14
## 3090 3 3 2016-07-03 0.04
## 3091 2 40 2019-05-28 0.63
## 3092 3 61 2019-07-06 0.90
## 3093 2 53 2018-01-01 0.79
## 3094 3 7 2017-09-04 0.11
## 3095 4 35 2019-06-19 0.52
## 3096 3 85 2019-06-17 1.35
## 3097 5 0 NA
## 3098 110 13 2019-03-09 0.21
## 3099 2 0 NA
## 3100 1 0 NA
## 3101 5 14 2015-02-06 0.22
## 3102 5 27 2017-07-21 0.48
## 3103 3 12 2016-03-08 0.18
## 3104 5 51 2019-06-10 0.76
## 3105 2 0 NA
## 3106 1 319 2019-07-08 8.52
## 3107 7 122 2019-06-17 1.91
## 3108 3 21 2016-10-12 0.34
## 3109 4 130 2019-05-31 1.92
## 3110 90 47 2015-12-11 0.73
## 3111 1 1 2016-09-11 0.03
## 3112 2 8 2019-06-24 0.12
## 3113 2 23 2018-10-31 0.34
## 3114 2 29 2019-06-28 0.86
## 3115 2 166 2019-07-02 2.49
## 3116 5 9 2016-06-05 0.13
## 3117 3 60 2019-05-04 0.91
## 3118 2 29 2019-06-30 0.63
## 3119 7 108 2019-06-17 1.72
## 3120 5 4 2017-10-06 0.07
## 3121 3 181 2019-06-28 2.69
## 3122 3 134 2019-06-21 2.00
## 3123 1 0 NA
## 3124 5 29 2019-05-18 0.43
## 3125 3 97 2019-06-24 1.45
## 3126 1 61 2019-06-25 1.04
## 3127 5 0 NA
## 3128 3 10 2016-09-07 0.15
## 3129 5 6 2015-07-13 0.10
## 3130 4 43 2018-12-30 0.68
## 3131 3 79 2019-06-23 1.15
## 3132 1 0 NA
## 3133 4 38 2018-01-01 0.56
## 3134 1 93 2018-04-29 1.51
## 3135 5 42 2019-05-25 0.61
## 3136 3 46 2019-05-27 0.67
## 3137 1 220 2019-06-21 3.53
## 3138 5 0 NA
## 3139 2 2 2016-03-13 0.05
## 3140 2 19 2016-02-20 0.28
## 3141 2 7 2018-01-01 0.10
## 3142 3 14 2019-05-27 0.21
## 3143 7 8 2019-05-10 0.35
## 3144 2 97 2019-06-09 1.44
## 3145 6 4 2015-12-28 0.07
## 3146 2 6 2019-06-09 0.09
## 3147 20 46 2019-02-26 0.72
## 3148 1 0 NA
## 3149 2 240 2019-07-02 3.49
## 3150 1 0 NA
## 3151 3 134 2019-06-18 1.96
## 3152 4 31 2019-07-01 0.46
## 3153 5 143 2019-06-26 2.13
## 3154 30 5 2019-01-01 0.07
## 3155 3 92 2019-06-28 1.57
## 3156 3 207 2019-06-23 3.04
## 3157 3 1 2018-01-01 0.05
## 3158 2 111 2019-06-23 2.40
## 3159 2 128 2019-05-28 1.88
## 3160 60 0 NA
## 3161 5 72 2018-03-16 1.11
## 3162 1 38 2019-05-25 0.55
## 3163 4 108 2019-06-23 1.69
## 3164 1 0 NA
## 3165 9 0 NA
## 3166 5 85 2019-06-16 1.25
## 3167 3 158 2019-06-15 2.33
## 3168 1 0 NA
## 3169 7 0 NA
## 3170 1 236 2019-06-24 3.45
## 3171 2 20 2019-06-09 0.31
## 3172 3 35 2016-08-22 0.55
## 3173 4 10 2017-06-06 0.24
## 3174 2 6 2017-10-24 0.12
## 3175 5 44 2018-12-31 1.50
## 3176 2 143 2019-05-04 2.13
## 3177 4 19 2018-08-07 0.28
## 3178 2 249 2019-06-20 3.63
## 3179 5 2 2016-08-23 0.06
## 3180 30 7 2019-05-31 0.11
## 3181 5 33 2018-03-31 0.49
## 3182 3 266 2019-07-02 4.49
## 3183 2 0 NA
## 3184 1 238 2019-05-12 3.46
## 3185 3 30 2018-11-07 0.60
## 3186 4 26 2019-01-03 0.62
## 3187 4 26 2018-05-19 0.39
## 3188 5 70 2019-06-30 2.23
## 3189 1 202 2019-06-05 3.19
## 3190 6 1 2017-08-26 0.04
## 3191 1 15 2019-05-26 0.22
## 3192 4 8 2016-05-25 0.12
## 3193 1 227 2019-06-14 3.31
## 3194 1 2 2019-06-23 0.22
## 3195 5 17 2018-09-23 0.25
## 3196 3 1 2013-12-15 0.01
## 3197 1 7 2016-05-06 0.13
## 3198 1 0 NA
## 3199 30 14 2018-08-08 0.21
## 3200 29 12 2018-11-11 0.18
## 3201 30 2 2015-03-23 0.04
## 3202 7 2 2014-10-14 0.03
## 3203 1 2 2015-10-26 0.03
## 3204 30 7 2019-05-04 0.15
## 3205 2 322 2019-07-01 4.71
## 3206 4 7 2019-06-23 2.26
## 3207 3 7 2016-02-27 0.11
## 3208 1 108 2019-05-30 2.68
## 3209 3 15 2018-08-16 0.22
## 3210 2 0 NA
## 3211 5 95 2019-05-25 1.39
## 3212 3 123 2019-06-07 1.80
## 3213 4 245 2019-06-10 3.61
## 3214 3 156 2019-04-25 2.36
## 3215 2 71 2019-06-23 1.04
## 3216 1 245 2019-07-07 3.60
## 3217 5 11 2017-05-25 0.16
## 3218 25 8 2017-06-11 0.12
## 3219 4 17 2017-05-06 0.25
## 3220 3 1 2015-11-13 0.02
## 3221 3 57 2019-06-06 0.90
## 3222 2 18 2017-01-15 0.28
## 3223 14 29 2016-10-04 0.43
## 3224 8 79 2019-07-01 1.16
## 3225 1 1 2015-11-01 0.02
## 3226 5 17 2019-04-08 0.25
## 3227 3 5 2018-11-04 0.26
## 3228 3 229 2019-06-22 3.36
## 3229 1 1 2015-09-06 0.02
## 3230 2 52 2019-07-04 1.26
## 3231 1 16 2017-04-17 0.38
## 3232 3 9 2014-06-21 0.13
## 3233 1 0 NA
## 3234 2 166 2019-06-24 2.87
## 3235 4 29 2017-04-01 0.42
## 3236 30 20 2018-08-21 0.31
## 3237 4 10 2016-06-26 0.20
## 3238 10 5 2014-11-01 0.07
## 3239 7 37 2019-06-09 0.60
## 3240 5 1 2015-01-01 0.02
## 3241 3 32 2019-05-19 1.66
## 3242 2 230 2019-06-28 3.39
## 3243 7 1 2016-08-16 0.03
## 3244 2 72 2019-07-07 3.12
## 3245 3 1 2015-10-14 0.02
## 3246 3 84 2018-12-01 1.26
## 3247 2 97 2019-07-01 1.43
## 3248 3 177 2019-06-11 2.62
## 3249 21 2 2015-12-17 0.04
## 3250 1 261 2019-06-08 3.82
## 3251 3 77 2019-06-11 1.35
## 3252 1 18 2018-07-16 0.27
## 3253 5 36 2019-06-29 0.53
## 3254 7 19 2019-01-31 0.28
## 3255 1 2 2014-08-03 0.03
## 3256 30 0 NA
## 3257 25 16 2018-12-06 0.24
## 3258 2 36 2019-06-26 0.53
## 3259 3 76 2019-07-05 1.13
## 3260 14 10 2016-08-06 0.21
## 3261 6 7 2019-06-11 0.25
## 3262 7 0 NA
## 3263 4 57 2019-07-05 2.67
## 3264 4 4 2018-08-20 0.06
## 3265 3 177 2019-07-07 2.64
## 3266 30 13 2016-06-20 0.19
## 3267 5 39 2019-06-18 0.58
## 3268 5 0 NA
## 3269 3 41 2019-06-10 0.60
## 3270 5 2 2015-07-25 0.03
## 3271 1 87 2019-07-07 1.42
## 3272 2 12 2019-06-24 0.18
## 3273 1 89 2019-01-20 1.32
## 3274 4 0 NA
## 3275 2 221 2019-06-18 3.30
## 3276 3 2 2014-12-19 0.03
## 3277 4 30 2019-05-28 0.45
## 3278 5 26 2018-11-23 0.43
## 3279 1 1 2015-01-02 0.02
## 3280 6 5 2017-12-30 0.07
## 3281 30 16 2018-09-26 0.24
## 3282 18 34 2018-06-01 0.50
## 3283 2 88 2019-05-28 1.31
## 3284 1 6 2014-10-26 0.10
## 3285 31 0 NA
## 3286 3 225 2019-06-30 3.49
## 3287 2 85 2019-06-20 1.27
## 3288 2 6 2016-01-02 0.13
## 3289 5 8 2016-04-04 0.12
## 3290 2 7 2016-09-25 0.11
## 3291 1 0 NA
## 3292 1 1 2016-04-11 0.03
## 3293 3 6 2018-07-30 0.13
## 3294 1 25 2019-06-16 0.43
## 3295 2 31 2019-06-17 0.52
## 3296 5 62 2019-07-01 1.05
## 3297 7 6 2016-11-14 0.12
## 3298 3 160 2019-05-31 2.36
## 3299 30 26 2019-06-25 0.38
## 3300 1 157 2019-06-28 2.49
## 3301 15 0 NA
## 3302 2 191 2019-06-23 2.81
## 3303 30 19 2019-07-05 0.30
## 3304 2 7 2017-12-02 0.12
## 3305 3 15 2019-06-04 0.24
## 3306 3 9 2019-05-13 0.87
## 3307 1 20 2015-08-20 0.39
## 3308 1 73 2019-01-01 1.07
## 3309 4 3 2014-09-30 0.05
## 3310 30 7 2018-05-04 0.11
## 3311 10 59 2019-05-21 0.87
## 3312 1 1 2014-01-02 0.01
## 3313 1 0 NA
## 3314 5 84 2019-06-27 1.25
## 3315 1 0 NA
## 3316 1 214 2019-07-05 3.17
## 3317 3 38 2019-07-02 0.62
## 3318 3 164 2019-01-05 2.45
## 3319 5 0 NA
## 3320 5 19 2018-08-18 0.28
## 3321 3 38 2019-06-26 0.59
## 3322 2 272 2019-06-16 4.02
## 3323 3 12 2019-01-02 0.19
## 3324 2 2 2015-05-08 0.03
## 3325 2 43 2019-04-27 0.64
## 3326 5 3 2019-01-03 0.16
## 3327 3 176 2019-06-21 2.63
## 3328 1 93 2019-04-22 1.38
## 3329 3 49 2019-04-25 0.77
## 3330 2 5 2016-01-01 0.07
## 3331 3 1 2014-01-02 0.01
## 3332 3 136 2019-07-02 2.00
## 3333 7 6 2016-03-25 0.11
## 3334 1 0 NA
## 3335 4 37 2019-06-30 0.97
## 3336 3 0 NA
## 3337 5 19 2019-06-12 0.33
## 3338 1 0 NA
## 3339 5 7 2019-06-16 0.32
## 3340 4 2 2014-12-31 0.03
## 3341 2 15 2019-04-21 0.41
## 3342 3 97 2019-07-01 2.39
## 3343 3 154 2019-06-24 2.27
## 3344 4 42 2019-06-11 0.62
## 3345 3 127 2019-06-08 1.89
## 3346 1 0 NA
## 3347 30 4 2019-01-02 0.08
## 3348 1 3 2014-08-01 0.04
## 3349 1 12 2016-09-22 0.19
## 3350 2 143 2019-06-30 2.13
## 3351 30 4 2016-01-15 0.07
## 3352 1 7 2016-11-26 0.10
## 3353 1 5 2015-08-19 0.08
## 3354 2 18 2019-06-22 0.26
## 3355 4 9 2018-10-13 0.13
## 3356 2 19 2018-01-08 0.79
## 3357 5 221 2019-06-13 3.27
## 3358 2 4 2018-11-25 0.12
## 3359 30 64 2015-11-02 0.95
## 3360 5 220 2019-06-23 3.25
## 3361 2 7 2016-10-10 0.18
## 3362 2 36 2016-06-11 0.57
## 3363 2 237 2019-07-06 3.70
## 3364 5 9 2016-01-06 0.13
## 3365 1 13 2018-12-01 0.49
## 3366 3 0 NA
## 3367 5 68 2019-07-01 1.07
## 3368 2 100 2019-07-03 1.49
## 3369 1 78 2019-06-21 1.81
## 3370 2 17 2019-01-02 0.55
## 3371 7 0 NA
## 3372 5 0 NA
## 3373 12 26 2019-04-26 0.42
## 3374 1 0 NA
## 3375 4 20 2018-12-31 0.30
## 3376 3 16 2016-10-15 0.24
## 3377 6 4 2016-04-09 0.06
## 3378 1 31 2019-06-22 0.46
## 3379 3 1 2018-01-01 0.05
## 3380 4 0 NA
## 3381 5 0 NA
## 3382 5 0 NA
## 3383 2 7 2018-05-31 0.11
## 3384 30 24 2018-12-07 0.36
## 3385 3 19 2019-07-07 0.56
## 3386 3 1 2015-07-23 0.02
## 3387 3 26 2019-03-14 0.41
## 3388 3 0 NA
## 3389 7 57 2019-05-25 0.89
## 3390 3 82 2019-01-01 1.37
## 3391 1 111 2019-04-20 1.70
## 3392 3 11 2016-06-07 0.16
## 3393 4 12 2018-01-01 0.20
## 3394 4 72 2019-05-19 1.10
## 3395 1 114 2018-10-07 1.71
## 3396 1 67 2019-01-22 0.99
## 3397 4 1 2014-01-03 0.01
## 3398 5 25 2019-06-13 0.37
## 3399 365 0 NA
## 3400 1 2 2015-12-30 0.03
## 3401 24 89 2019-06-13 1.40
## 3402 3 1 2016-08-28 0.03
## 3403 4 11 2016-09-06 0.17
## 3404 2 2 2019-04-15 0.50
## 3405 5 37 2019-06-09 0.55
## 3406 2 11 2015-05-27 0.16
## 3407 4 0 NA
## 3408 1 89 2019-04-24 1.39
## 3409 7 0 NA
## 3410 2 203 2019-05-26 3.13
## 3411 4 67 2019-07-02 1.09
## 3412 2 3 2016-08-29 0.04
## 3413 25 0 NA
## 3414 1 56 2016-06-13 0.83
## 3415 1 1 2017-08-12 0.04
## 3416 7 0 NA
## 3417 1 0 NA
## 3418 2 1 2014-09-07 0.02
## 3419 2 199 2019-06-29 2.98
## 3420 2 4 2019-01-02 0.06
## 3421 3 0 NA
## 3422 5 54 2019-06-01 0.90
## 3423 3 58 2017-01-01 0.97
## 3424 1 0 NA
## 3425 90 13 2018-10-08 0.19
## 3426 1 200 2019-07-05 3.37
## 3427 1 215 2019-07-02 3.20
## 3428 7 1 2015-09-27 0.02
## 3429 45 21 2018-01-02 0.31
## 3430 5 8 2019-01-01 0.12
## 3431 5 4 2016-04-22 0.08
## 3432 7 7 2018-10-15 0.12
## 3433 13 42 2019-05-25 0.62
## 3434 1 1 2013-12-14 0.01
## 3435 7 3 2019-05-24 0.09
## 3436 1 0 NA
## 3437 2 0 NA
## 3438 2 226 2019-06-30 3.42
## 3439 7 3 2016-01-05 0.04
## 3440 1 1 2014-08-19 0.02
## 3441 30 42 2018-12-10 0.67
## 3442 7 0 NA
## 3443 2 14 2018-07-13 0.21
## 3444 1 0 NA
## 3445 4 19 2019-04-10 0.31
## 3446 3 2 2017-07-25 0.08
## 3447 2 2 2017-01-02 0.06
## 3448 15 6 2018-04-21 0.10
## 3449 1 17 2019-05-12 0.55
## 3450 10 0 NA
## 3451 3 130 2019-06-10 2.00
## 3452 1 0 NA
## 3453 3 3 2015-05-30 0.05
## 3454 2 177 2019-07-01 2.85
## 3455 2 129 2019-02-23 2.22
## 3456 5 34 2019-06-22 0.50
## 3457 7 5 2018-08-05 0.14
## 3458 2 31 2019-05-26 0.46
## 3459 5 0 NA
## 3460 5 2 2016-10-22 0.06
## 3461 3 9 2016-11-18 0.13
## 3462 3 0 NA
## 3463 30 8 2018-07-17 0.14
## 3464 4 4 2014-05-20 0.06
## 3465 4 8 2016-12-30 0.12
## 3466 2 43 2019-07-01 0.65
## 3467 1 1 2016-03-20 0.02
## 3468 8 5 2016-01-06 0.07
## 3469 3 14 2017-02-20 0.21
## 3470 10 58 2019-06-03 0.92
## 3471 2 19 2016-01-05 0.28
## 3472 3 209 2019-06-26 3.11
## 3473 14 6 2016-09-11 0.09
## 3474 1 2 2015-07-13 0.04
## 3475 5 1 2015-01-08 0.02
## 3476 14 1 2014-01-13 0.01
## 3477 4 26 2019-05-28 0.85
## 3478 1 2 2016-06-01 0.03
## 3479 3 1 2014-01-02 0.01
## 3480 2 10 2017-09-20 0.20
## 3481 90 54 2019-01-10 0.86
## 3482 1 0 NA
## 3483 1 0 NA
## 3484 1 16 2018-02-28 0.75
## 3485 28 92 2018-07-25 1.37
## 3486 3 2 2015-05-19 0.03
## 3487 7 130 2019-07-03 3.38
## 3488 4 74 2019-06-11 1.93
## 3489 5 0 NA
## 3490 4 52 2019-06-26 0.82
## 3491 30 17 2017-08-30 0.25
## 3492 4 52 2019-06-30 0.80
## 3493 1 64 2019-06-15 0.96
## 3494 2 0 NA
## 3495 2 28 2018-10-31 0.55
## 3496 2 3 2015-12-14 0.04
## 3497 7 55 2019-06-04 1.12
## 3498 4 6 2019-05-09 0.10
## 3499 1 0 NA
## 3500 3 19 2018-01-23 0.32
## 3501 9 9 2017-09-05 0.13
## 3502 1 9 2016-07-04 0.14
## 3503 90 20 2018-12-15 0.31
## 3504 4 45 2019-01-03 1.01
## 3505 1 275 2019-07-05 4.64
## 3506 2 8 2017-01-02 0.12
## 3507 7 27 2016-08-28 0.40
## 3508 2 21 2016-10-10 0.31
## 3509 4 105 2019-06-29 1.56
## 3510 5 77 2018-12-16 1.14
## 3511 2 6 2019-05-01 0.95
## 3512 30 26 2019-04-21 0.41
## 3513 3 6 2015-05-19 0.10
## 3514 3 10 2019-05-27 0.16
## 3515 1 0 NA
## 3516 2 24 2017-12-21 0.38
## 3517 3 3 2014-11-30 0.05
## 3518 3 2 2014-01-03 0.03
## 3519 1 19 2015-06-22 0.28
## 3520 3 2 2017-04-07 0.07
## 3521 30 1 2014-06-02 0.02
## 3522 1 0 NA
## 3523 4 0 NA
## 3524 2 57 2017-03-08 0.89
## 3525 3 3 2019-01-03 0.21
## 3526 2 10 2017-01-29 0.32
## 3527 3 87 2019-06-11 1.37
## 3528 1 0 NA
## 3529 1 0 NA
## 3530 1 0 NA
## 3531 3 7 2019-06-10 0.10
## 3532 30 5 2019-04-21 0.14
## 3533 3 70 2019-05-27 1.11
## 3534 30 4 2018-01-05 0.06
## 3535 3 4 2015-04-21 0.06
## 3536 1 20 2019-06-15 0.32
## 3537 4 0 NA
## 3538 14 17 2015-02-17 0.27
## 3539 3 7 2019-06-22 0.69
## 3540 10 72 2018-12-30 1.07
## 3541 14 66 2019-04-30 1.12
## 3542 5 8 2018-04-30 0.21
## 3543 5 0 NA
## 3544 1 0 NA
## 3545 2 16 2017-05-21 0.25
## 3546 29 16 2018-12-19 0.26
## 3547 7 0 NA
## 3548 10 4 2014-07-13 0.06
## 3549 1 205 2019-06-30 3.05
## 3550 2 4 2016-11-05 0.06
## 3551 5 44 2019-05-26 1.68
## 3552 1 4 2016-12-22 0.06
## 3553 1 353 2019-06-19 5.26
## 3554 6 4 2015-09-21 0.06
## 3555 1 0 NA
## 3556 3 80 2019-07-02 1.74
## 3557 3 191 2019-06-19 3.29
## 3558 2 96 2018-06-27 1.52
## 3559 1 98 2019-06-16 1.55
## 3560 4 0 NA
## 3561 30 4 2018-08-14 0.07
## 3562 30 4 2018-09-28 0.06
## 3563 1 0 NA
## 3564 8 37 2018-12-12 0.59
## 3565 4 34 2016-11-21 0.52
## 3566 1 4 2014-06-10 0.06
## 3567 2 49 2019-07-07 0.73
## 3568 5 0 NA
## 3569 3 122 2019-06-15 1.93
## 3570 3 23 2015-12-06 0.36
## 3571 5 11 2018-03-10 0.16
## 3572 30 16 2019-04-22 0.25
## 3573 3 1 2017-05-25 0.04
## 3574 2 131 2019-06-16 2.02
## 3575 5 25 2018-08-24 0.42
## 3576 1 0 NA
## 3577 2 162 2019-06-26 2.45
## 3578 7 0 NA
## 3579 2 14 2016-05-15 0.29
## 3580 7 0 NA
## 3581 3 125 2019-06-22 1.86
## 3582 2 4 2019-04-01 0.19
## 3583 2 8 2015-01-02 0.13
## 3584 1 1 2014-04-23 0.02
## 3585 2 138 2019-06-05 2.23
## 3586 5 44 2019-06-28 0.77
## 3587 2 0 NA
## 3588 2 12 2018-11-25 0.21
## 3589 1 52 2019-06-17 0.82
## 3590 1 1 2014-01-04 0.01
## 3591 2 150 2019-06-28 2.42
## 3592 3 177 2019-06-28 2.69
## 3593 60 43 2016-05-29 0.65
## 3594 4 233 2019-06-29 3.55
## 3595 1 0 NA
## 3596 3 2 2015-08-04 0.04
## 3597 2 8 2018-06-19 0.25
## 3598 1 0 NA
## 3599 1 0 NA
## 3600 1 10 2014-10-12 0.16
## 3601 7 29 2018-11-25 0.46
## 3602 3 0 NA
## 3603 3 104 2019-06-17 1.65
## 3604 30 10 2018-05-28 0.15
## 3605 2 172 2019-07-04 2.99
## 3606 200 314 2019-06-20 4.82
## 3607 2 159 2019-06-30 3.20
## 3608 29 37 2018-12-08 0.57
## 3609 1 1 2015-10-14 0.02
## 3610 5 98 2019-06-24 1.73
## 3611 5 9 2017-06-26 0.18
## 3612 1 0 NA
## 3613 5 2 2019-04-19 0.32
## 3614 4 216 2019-07-06 3.34
## 3615 3 40 2019-05-19 0.63
## 3616 1 5 2016-08-25 0.14
## 3617 3 90 2019-06-17 1.39
## 3618 1 0 NA
## 3619 6 29 2019-05-30 0.47
## 3620 30 2 2017-12-06 0.05
## 3621 2 13 2017-08-17 0.45
## 3622 2 13 2019-05-19 0.36
## 3623 1 0 NA
## 3624 3 82 2018-04-23 1.29
## 3625 4 3 2015-08-17 0.06
## 3626 1 0 NA
## 3627 7 14 2019-05-08 0.24
## 3628 6 1 2019-04-26 0.41
## 3629 2 183 2019-06-30 3.03
## 3630 30 6 2018-07-05 0.17
## 3631 2 6 2019-01-02 0.10
## 3632 3 22 2019-06-04 0.34
## 3633 3 25 2017-05-23 0.40
## 3634 3 142 2019-06-14 2.27
## 3635 30 8 2017-01-31 0.12
## 3636 1 0 NA
## 3637 1 0 NA
## 3638 1 0 NA
## 3639 4 8 2017-12-25 0.12
## 3640 2 0 NA
## 3641 2 94 2019-06-23 2.55
## 3642 1 0 NA
## 3643 10 0 NA
## 3644 2 79 2019-06-09 1.22
## 3645 5 3 2014-09-09 0.05
## 3646 5 9 2018-09-04 0.15
## 3647 1 0 NA
## 3648 1 259 2017-12-20 3.93
## 3649 2 46 2019-04-30 0.80
## 3650 2 145 2019-06-29 2.26
## 3651 8 23 2019-06-15 0.36
## 3652 2 2 2017-01-05 0.06
## 3653 2 1 2018-12-28 0.16
## 3654 5 81 2019-07-03 1.26
## 3655 1 271 2019-06-23 4.32
## 3656 2 3 2016-01-02 0.05
## 3657 7 9 2017-09-22 0.14
## 3658 2 38 2019-06-18 0.60
## 3659 1 8 2019-02-09 0.15
## 3660 4 9 2019-06-03 0.22
## 3661 2 4 2018-05-21 0.06
## 3662 2 2 2014-09-29 0.03
## 3663 10 0 NA
## 3664 3 169 2019-07-01 3.33
## 3665 3 0 NA
## 3666 6 65 2019-07-05 1.19
## 3667 1 59 2018-08-26 1.00
## 3668 1 136 2019-07-01 3.10
## 3669 2 120 2019-07-01 3.25
## 3670 2 121 2019-06-23 2.06
## 3671 1 0 NA
## 3672 3 9 2018-08-26 0.27
## 3673 1 21 2018-07-01 0.38
## 3674 3 3 2016-04-07 0.07
## 3675 5 0 NA
## 3676 2 2 2016-09-23 0.05
## 3677 4 138 2019-06-29 2.21
## 3678 3 107 2019-06-24 1.64
## 3679 4 8 2018-08-31 0.19
## 3680 30 0 NA
## 3681 1 153 2019-05-26 2.39
## 3682 3 1 2014-09-14 0.02
## 3683 1 0 NA
## 3684 7 19 2016-07-31 0.31
## 3685 1 0 NA
## 3686 2 26 2019-03-01 0.68
## 3687 1 0 NA
## 3688 1 0 NA
## 3689 2 17 2018-10-22 0.27
## 3690 3 0 NA
## 3691 7 1 2019-06-30 1.00
## 3692 2 47 2019-07-01 0.74
## 3693 3 20 2019-01-02 0.32
## 3694 2 11 2015-12-06 0.20
## 3695 5 11 2017-09-30 0.27
## 3696 1 0 NA
## 3697 1 0 NA
## 3698 4 0 NA
## 3699 3 10 2019-01-01 0.15
## 3700 1 4 2018-07-29 0.11
## 3701 1 0 NA
## 3702 2 146 2019-06-24 2.21
## 3703 1 0 NA
## 3704 1 28 2015-06-08 0.45
## 3705 1 146 2019-07-06 2.21
## 3706 30 125 2017-12-31 1.88
## 3707 4 2 2014-04-21 0.03
## 3708 15 15 2019-05-23 0.29
## 3709 7 22 2019-06-29 0.46
## 3710 2 2 2015-09-27 0.04
## 3711 1 0 NA
## 3712 5 1 2018-01-06 0.05
## 3713 2 25 2019-04-27 0.39
## 3714 1 0 NA
## 3715 3 0 NA
## 3716 2 2 2015-06-22 0.03
## 3717 3 11 2018-08-03 0.18
## 3718 2 0 NA
## 3719 2 28 2018-01-02 0.43
## 3720 1 2 2016-03-13 0.05
## 3721 1 0 NA
## 3722 1 0 NA
## 3723 2 0 NA
## 3724 1 0 NA
## 3725 1 3 2017-08-29 0.06
## 3726 2 281 2019-06-30 4.29
## 3727 5 42 2019-06-30 0.64
## 3728 1 0 NA
## 3729 13 109 2019-04-01 1.66
## 3730 1 0 NA
## 3731 1 0 NA
## 3732 1 0 NA
## 3733 2 0 NA
## 3734 3 7 2019-05-22 0.15
## 3735 5 1 2016-02-24 0.02
## 3736 1 0 NA
## 3737 3 0 NA
## 3738 30 4 2018-11-11 0.06
## 3739 1 2 2014-06-26 0.03
## 3740 2 5 2016-12-30 0.08
## 3741 3 10 2018-01-08 0.16
## 3742 2 0 NA
## 3743 14 1 2014-08-20 0.02
## 3744 4 21 2019-02-15 0.33
## 3745 30 3 2019-06-30 0.39
## 3746 30 4 2019-04-20 0.09
## 3747 1 5 2016-03-29 0.12
## 3748 3 41 2019-06-17 0.96
## 3749 1 21 2018-10-11 0.36
## 3750 2 252 2019-07-06 4.91
## 3751 2 0 NA
## 3752 4 3 2016-01-05 0.05
## 3753 1 0 NA
## 3754 2 0 NA
## 3755 1 0 NA
## 3756 3 0 NA
## 3757 7 0 NA
## 3758 1 0 NA
## 3759 1 0 NA
## 3760 30 22 2019-05-11 0.34
## 3761 1 15 2015-09-25 0.29
## 3762 2 6 2019-06-30 0.24
## 3763 2 5 2019-05-27 0.19
## 3764 26 1 2014-08-24 0.02
## 3765 2 1 2015-10-01 0.02
## 3766 1 133 2019-06-04 2.23
## 3767 3 152 2019-06-26 2.67
## 3768 30 3 2019-02-28 0.06
## 3769 30 0 NA
## 3770 2 211 2019-06-23 3.25
## 3771 30 2 2014-08-18 0.03
## 3772 4 0 NA
## 3773 1 0 NA
## 3774 2 13 2018-07-14 0.22
## 3775 1 0 NA
## 3776 2 48 2016-11-27 0.73
## 3777 3 0 NA
## 3778 3 8 2015-06-21 0.16
## 3779 5 9 2015-11-19 0.19
## 3780 1 0 NA
## 3781 30 28 2019-05-20 0.43
## 3782 3 1 2018-05-18 0.07
## 3783 1 0 NA
## 3784 1 170 2019-06-10 2.92
## 3785 1 0 NA
## 3786 1 0 NA
## 3787 1 7 2019-01-02 0.14
## 3788 2 3 2015-10-19 0.06
## 3789 1 0 NA
## 3790 3 6 2019-05-19 0.58
## 3791 1 0 NA
## 3792 2 97 2019-07-06 1.83
## 3793 7 0 NA
## 3794 1 0 NA
## 3795 5 0 NA
## 3796 4 2 2015-12-27 0.04
## 3797 1 0 NA
## 3798 4 106 2019-06-03 2.82
## 3799 5 8 2019-06-07 0.26
## 3800 1 5 2018-01-05 0.14
## 3801 1 0 NA
## 3802 1 227 2019-06-30 3.50
## 3803 14 0 NA
## 3804 1 0 NA
## 3805 1 0 NA
## 3806 2 3 2016-06-15 0.06
## 3807 2 14 2019-06-01 0.33
## 3808 1 0 NA
## 3809 1 0 NA
## 3810 7 2 2019-01-02 0.04
## 3811 1 8 2016-09-25 0.16
## 3812 3 5 2019-01-27 0.08
## 3813 1 0 NA
## 3814 1 0 NA
## 3815 14 0 NA
## 3816 3 33 2019-04-20 0.77
## 3817 1 0 NA
## 3818 2 1 2015-10-09 0.02
## 3819 10 8 2018-08-11 0.12
## 3820 2 146 2019-06-30 3.45
## 3821 1 11 2018-07-01 0.26
## 3822 4 4 2015-03-11 0.07
## 3823 2 0 NA
## 3824 1 141 2019-07-01 2.41
## 3825 1 52 2019-07-01 0.79
## 3826 2 30 2016-06-02 0.47
## 3827 1 0 NA
## 3828 2 3 2017-07-30 0.09
## 3829 1 4 2015-02-22 0.06
## 3830 1 49 2019-06-16 0.75
## 3831 3 1 2019-05-16 0.56
## 3832 4 204 2019-06-16 3.10
## 3833 2 110 2019-06-24 1.73
## 3834 3 45 2019-04-06 0.73
## 3835 7 32 2019-06-02 0.50
## 3836 30 3 2019-05-24 0.08
## 3837 3 13 2017-01-01 0.22
## 3838 3 11 2018-01-01 0.18
## 3839 7 0 NA
## 3840 3 242 2019-06-17 3.69
## 3841 2 80 2019-07-03 1.22
## 3842 1 0 NA
## 3843 3 106 2019-07-01 1.61
## 3844 2 232 2019-07-07 4.31
## 3845 3 52 2018-01-06 0.80
## 3846 1 0 NA
## 3847 30 11 2018-09-16 0.18
## 3848 5 13 2019-03-05 0.22
## 3849 30 16 2019-07-05 0.28
## 3850 90 2 2014-08-31 0.03
## 3851 2 76 2019-04-07 1.29
## 3852 5 7 2017-08-01 0.11
## 3853 2 17 2018-03-07 0.39
## 3854 3 82 2019-06-30 1.38
## 3855 1 196 2018-09-17 3.03
## 3856 5 4 2016-09-06 0.08
## 3857 2 0 NA
## 3858 2 9 2015-05-04 0.14
## 3859 10 19 2019-04-23 0.30
## 3860 2 0 NA
## 3861 2 183 2019-06-10 2.82
## 3862 1 75 2019-06-08 1.20
## 3863 30 9 2017-08-03 0.14
## 3864 12 0 NA
## 3865 2 26 2017-10-22 0.55
## 3866 5 176 2018-10-08 2.72
## 3867 1 11 2015-10-20 0.19
## 3868 30 14 2018-07-21 0.22
## 3869 3 8 2018-10-25 0.36
## 3870 1 126 2019-06-01 2.15
## 3871 1 1 2016-01-12 0.02
## 3872 1 75 2017-02-19 1.30
## 3873 3 4 2015-10-13 0.08
## 3874 4 23 2017-09-15 0.35
## 3875 3 106 2019-06-27 1.66
## 3876 3 30 2019-01-02 0.48
## 3877 2 27 2019-05-15 0.42
## 3878 2 53 2019-07-04 2.51
## 3879 2 193 2019-07-01 2.97
## 3880 1 0 NA
## 3881 4 137 2019-07-01 2.13
## 3882 3 0 NA
## 3883 2 0 NA
## 3884 30 28 2018-11-07 0.44
## 3885 27 0 NA
## 3886 3 74 2019-06-24 1.17
## 3887 3 149 2019-07-04 2.33
## 3888 1 30 2019-05-19 0.50
## 3889 7 0 NA
## 3890 2 6 2016-09-22 0.16
## 3891 3 16 2016-07-11 0.25
## 3892 1 0 NA
## 3893 1 5 2016-01-03 0.08
## 3894 21 39 2019-05-23 0.65
## 3895 1 16 2019-05-19 0.28
## 3896 5 22 2019-07-01 0.37
## 3897 5 21 2019-03-28 0.35
## 3898 5 8 2017-12-10 0.13
## 3899 2 182 2019-06-23 2.85
## 3900 1 99 2017-11-18 1.55
## 3901 2 3 2019-06-09 0.27
## 3902 3 13 2017-06-26 0.34
## 3903 2 1 2014-06-10 0.02
## 3904 5 34 2019-06-29 0.52
## 3905 1 35 2018-04-24 0.54
## 3906 2 130 2019-03-24 2.30
## 3907 2 13 2018-08-18 0.21
## 3908 1 0 NA
## 3909 30 14 2015-09-21 0.27
## 3910 1 12 2018-09-03 0.19
## 3911 5 263 2019-06-02 4.10
## 3912 2 43 2019-06-23 1.10
## 3913 10 9 2018-01-02 0.14
## 3914 2 107 2019-06-24 1.64
## 3915 10 1 2016-01-05 0.02
## 3916 1 0 NA
## 3917 2 2 2015-10-12 0.04
## 3918 2 20 2019-06-23 1.44
## 3919 5 76 2019-06-06 1.22
## 3920 5 0 NA
## 3921 3 43 2018-07-07 0.71
## 3922 3 2 2018-06-30 0.03
## 3923 4 21 2019-04-08 0.34
## 3924 2 32 2019-04-07 0.51
## 3925 30 9 2019-04-30 0.16
## 3926 30 45 2019-05-31 0.73
## 3927 2 8 2017-09-05 0.13
## 3928 3 8 2019-07-02 1.71
## 3929 2 8 2017-03-13 0.13
## 3930 5 8 2015-07-22 0.15
## 3931 2 37 2018-10-06 0.58
## 3932 1 143 2019-06-04 2.41
## 3933 1 10 2016-05-26 0.16
## 3934 5 0 NA
## 3935 3 2 2018-04-15 0.13
## 3936 1 35 2019-06-21 0.55
## 3937 1 7 2019-06-21 0.11
## 3938 14 12 2017-06-22 0.19
## 3939 1 78 2019-05-12 1.22
## 3940 3 3 2017-10-03 0.05
## 3941 1 184 2019-07-01 2.86
## 3942 6 1 2019-07-05 1.00
## 3943 5 7 2018-08-21 0.11
## 3944 2 20 2019-06-30 0.31
## 3945 7 13 2019-06-20 0.39
## 3946 365 6 2016-10-02 0.10
## 3947 1 94 2019-06-23 1.48
## 3948 30 1 2018-04-14 0.07
## 3949 14 0 NA
## 3950 1 0 NA
## 3951 1 0 NA
## 3952 2 1 2014-06-09 0.02
## 3953 2 21 2019-04-22 0.45
## 3954 14 177 2019-05-03 2.82
## 3955 7 186 2019-06-10 2.93
## 3956 2 16 2016-07-28 0.25
## 3957 1 94 2015-05-10 1.46
## 3958 3 5 2016-11-26 0.14
## 3959 2 27 2019-04-12 0.44
## 3960 1 13 2015-09-28 0.22
## 3961 7 26 2019-05-27 0.41
## 3962 30 3 2017-11-06 0.05
## 3963 30 35 2019-07-04 0.55
## 3964 1 2 2016-01-02 0.05
## 3965 3 8 2019-01-15 0.25
## 3966 4 0 NA
## 3967 1 2 2015-04-30 0.03
## 3968 5 20 2019-01-01 0.33
## 3969 7 7 2016-09-12 0.15
## 3970 5 196 2017-12-06 3.02
## 3971 4 171 2019-06-30 2.72
## 3972 30 2 2017-10-31 0.04
## 3973 4 66 2019-06-22 1.04
## 3974 2 173 2019-06-19 2.71
## 3975 3 157 2019-06-22 2.46
## 3976 7 0 NA
## 3977 2 157 2019-06-25 2.45
## 3978 1 18 2019-01-02 0.28
## 3979 270 5 2016-01-06 0.10
## 3980 2 0 NA
## 3981 8 15 2019-06-10 0.24
## 3982 2 156 2019-06-10 2.43
## 3983 2 142 2019-06-16 2.22
## 3984 1 19 2018-10-22 1.34
## 3985 6 55 2019-06-15 0.85
## 3986 3 150 2019-06-21 2.38
## 3987 4 32 2019-05-15 0.50
## 3988 7 21 2015-12-29 0.33
## 3989 6 6 2017-02-07 0.09
## 3990 2 32 2017-10-30 1.09
## 3991 1 20 2018-06-05 0.33
## 3992 4 3 2015-07-13 0.05
## 3993 3 232 2019-07-06 3.62
## 3994 5 3 2015-01-05 0.05
## 3995 2 46 2019-02-18 0.72
## 3996 3 5 2016-09-12 0.08
## 3997 2 3 2015-09-21 0.06
## 3998 3 0 NA
## 3999 3 146 2019-06-20 2.28
## 4000 6 13 2019-05-31 0.22
## 4001 1 38 2018-04-22 0.63
## 4002 1 0 NA
## 4003 7 50 2019-05-01 0.80
## 4004 3 1 2015-04-06 0.02
## 4005 1 87 2017-12-18 1.37
## 4006 14 22 2018-11-29 0.35
## 4007 14 19 2019-05-07 0.31
## 4008 10 1 2016-07-31 0.03
## 4009 2 52 2019-06-18 0.86
## 4010 2 3 2015-12-22 0.07
## 4011 1 158 2019-06-13 3.11
## 4012 1 1 2014-04-11 0.02
## 4013 1 1 2014-08-28 0.02
## 4014 3 0 NA
## 4015 1 2 2014-04-21 0.03
## 4016 5 7 2015-12-31 0.11
## 4017 1 162 2019-06-13 2.51
## 4018 5 0 NA
## 4019 1 40 2019-06-16 0.62
## 4020 1 96 2019-06-12 1.51
## 4021 1 90 2019-06-08 1.43
## 4022 2 15 2019-03-10 0.24
## 4023 2 45 2016-02-21 0.76
## 4024 30 16 2017-12-01 0.25
## 4025 1 1 2014-05-02 0.02
## 4026 2 3 2018-06-24 0.05
## 4027 1 0 NA
## 4028 1 32 2018-05-08 0.50
## 4029 1 1 2015-09-01 0.02
## 4030 3 5 2019-06-03 0.11
## 4031 1 13 2019-05-20 0.51
## 4032 2 26 2017-07-27 0.44
## 4033 5 124 2019-06-25 1.93
## 4034 1 0 NA
## 4035 1 24 2017-02-19 0.38
## 4036 6 40 2019-03-01 0.73
## 4037 1 156 2019-05-31 2.46
## 4038 3 168 2019-06-15 2.64
## 4039 30 9 2015-01-02 0.14
## 4040 6 2 2017-01-01 0.06
## 4041 1 208 2019-06-22 3.22
## 4042 2 124 2019-07-07 1.92
## 4043 4 7 2018-10-08 0.11
## 4044 7 1 2016-01-03 0.02
## 4045 2 38 2016-01-05 0.61
## 4046 1 86 2019-06-10 1.36
## 4047 3 298 2019-06-27 4.67
## 4048 15 1 2018-06-20 0.08
## 4049 4 22 2019-01-01 0.39
## 4050 9 12 2019-01-31 0.19
## 4051 1 10 2015-08-18 0.20
## 4052 6 6 2019-04-21 0.09
## 4053 10 40 2019-06-26 0.64
## 4054 5 109 2019-06-22 1.73
## 4055 3 2 2016-07-16 0.03
## 4056 14 2 2018-05-08 0.14
## 4057 13 2 2019-01-01 0.03
## 4058 30 2 2014-10-05 0.03
## 4059 5 0 NA
## 4060 3 23 2017-07-01 0.36
## 4061 2 14 2014-10-31 0.22
## 4062 7 0 NA
## 4063 1 44 2018-03-28 1.24
## 4064 10 2 2017-10-01 0.03
## 4065 3 51 2019-06-22 1.27
## 4066 1 4 2017-03-05 0.11
## 4067 7 30 2019-06-16 0.48
## 4068 3 227 2019-07-01 3.61
## 4069 1 1 2014-03-28 0.02
## 4070 1 3 2018-01-01 0.05
## 4071 6 15 2018-08-26 0.24
## 4072 20 7 2018-09-29 0.21
## 4073 3 54 2018-07-26 0.94
## 4074 5 16 2018-12-31 0.25
## 4075 4 19 2019-06-05 0.52
## 4076 7 6 2018-08-18 0.16
## 4077 30 7 2019-04-30 0.23
## 4078 30 0 NA
## 4079 5 9 2018-12-30 0.14
## 4080 1 40 2018-10-14 0.85
## 4081 3 8 2016-06-13 0.13
## 4082 14 0 NA
## 4083 5 0 NA
## 4084 2 1 2014-04-24 0.02
## 4085 30 99 2019-01-09 1.57
## 4086 2 12 2018-01-01 0.35
## 4087 30 1 2018-09-30 0.11
## 4088 30 4 2018-07-29 0.07
## 4089 30 6 2019-03-31 0.11
## 4090 5 5 2017-09-05 0.12
## 4091 1 254 2019-06-23 4.02
## 4092 5 10 2016-10-13 0.16
## 4093 3 12 2017-04-16 0.19
## 4094 1 7 2019-07-01 2.21
## 4095 3 2 2015-10-13 0.03
## 4096 2 228 2019-07-06 4.27
## 4097 1 60 2019-04-01 0.97
## 4098 1 25 2018-09-15 0.39
## 4099 4 12 2019-07-07 0.20
## 4100 4 23 2019-06-21 0.36
## 4101 1 2 2016-12-12 0.06
## 4102 1 0 NA
## 4103 1 5 2019-04-28 0.88
## 4104 3 5 2016-05-30 0.09
## 4105 30 1 2016-08-13 0.03
## 4106 3 21 2019-07-02 0.33
## 4107 10 4 2015-11-06 0.06
## 4108 2 6 2017-11-12 0.26
## 4109 1 334 2019-06-27 5.20
## 4110 28 22 2019-01-05 0.38
## 4111 3 25 2019-05-31 3.04
## 4112 5 50 2018-09-19 0.80
## 4113 2 51 2019-06-20 0.81
## 4114 22 21 2019-06-14 0.34
## 4115 1 151 2019-06-23 2.37
## 4116 60 1 2016-01-08 0.02
## 4117 30 38 2019-01-14 0.65
## 4118 4 0 NA
## 4119 10 18 2019-07-03 0.28
## 4120 2 61 2019-06-16 3.13
## 4121 2 1 2017-11-20 0.05
## 4122 30 13 2016-04-30 0.25
## 4123 4 11 2015-11-16 0.19
## 4124 1 103 2019-06-23 2.21
## 4125 3 16 2019-07-01 0.25
## 4126 1 0 NA
## 4127 4 143 2019-06-23 2.24
## 4128 3 32 2018-09-23 0.53
## 4129 30 62 2019-06-01 1.20
## 4130 3 2 2015-12-13 0.04
## 4131 5 7 2019-06-20 0.18
## 4132 2 9 2017-11-04 0.18
## 4133 2 0 NA
## 4134 5 8 2015-02-25 0.13
## 4135 2 12 2019-06-23 0.20
## 4136 5 6 2019-05-07 0.10
## 4137 3 6 2016-08-13 0.09
## 4138 1 104 2019-06-23 1.65
## 4139 20 16 2019-06-02 0.27
## 4140 3 24 2019-06-08 0.39
## 4141 3 46 2019-05-31 0.72
## 4142 2 32 2018-08-12 0.50
## 4143 4 0 NA
## 4144 3 1 2014-04-22 0.02
## 4145 1 288 2019-07-02 4.58
## 4146 5 66 2019-05-27 1.05
## 4147 3 13 2018-12-29 0.21
## 4148 2 126 2019-06-29 1.98
## 4149 7 49 2019-06-13 0.82
## 4150 3 4 2015-10-13 0.07
## 4151 5 132 2019-06-20 2.09
## 4152 2 53 2019-07-01 0.83
## 4153 10 1 2014-08-07 0.02
## 4154 30 0 NA
## 4155 2 198 2019-06-09 3.10
## 4156 3 74 2019-06-17 1.16
## 4157 1 1 2018-08-14 0.09
## 4158 1 6 2015-10-12 0.11
## 4159 3 7 2018-12-30 0.11
## 4160 30 1 2014-08-04 0.02
## 4161 3 95 2019-06-21 1.51
## 4162 30 0 NA
## 4163 2 24 2019-06-28 0.63
## 4164 2 0 NA
## 4165 30 8 2019-05-01 0.14
## 4166 2 185 2019-06-30 2.92
## 4167 3 7 2018-09-04 0.15
## 4168 3 81 2019-07-01 1.28
## 4169 3 100 2019-06-30 1.60
## 4170 5 16 2019-06-08 0.25
## 4171 5 32 2019-06-16 0.66
## 4172 6 5 2014-08-20 0.08
## 4173 1 32 2018-09-09 0.75
## 4174 30 2 2017-07-03 0.08
## 4175 7 2 2015-10-29 0.04
## 4176 2 2 2015-04-14 0.03
## 4177 2 41 2017-11-14 0.73
## 4178 5 4 2018-09-29 0.07
## 4179 30 7 2019-01-07 0.12
## 4180 2 17 2019-07-03 1.68
## 4181 28 23 2018-11-03 0.36
## 4182 150 18 2014-10-13 0.29
## 4183 4 18 2018-12-30 0.37
## 4184 2 26 2019-06-18 1.22
## 4185 3 7 2017-01-01 0.11
## 4186 7 0 NA
## 4187 1 1 2014-05-05 0.02
## 4188 2 129 2019-07-04 2.03
## 4189 30 3 2018-03-02 0.08
## 4190 4 2 2018-01-01 0.09
## 4191 4 65 2019-07-01 1.06
## 4192 25 0 NA
## 4193 5 37 2019-04-22 0.59
## 4194 2 1 2014-04-17 0.02
## 4195 4 1 2016-06-13 0.03
## 4196 3 92 2019-06-19 1.45
## 4197 1 19 2018-08-08 0.30
## 4198 3 2 2014-10-12 0.03
## 4199 5 6 2016-08-28 0.12
## 4200 2 23 2016-12-11 0.39
## 4201 1 1 2014-05-29 0.02
## 4202 1 3 2016-05-18 0.07
## 4203 5 171 2019-07-01 2.75
## 4204 5 14 2016-06-02 0.25
## 4205 3 6 2018-10-12 0.10
## 4206 1 3 2016-09-11 0.05
## 4207 4 12 2017-11-12 0.19
## 4208 3 89 2019-05-28 1.41
## 4209 1 115 2019-06-23 1.82
## 4210 4 36 2019-06-08 0.57
## 4211 5 51 2019-06-23 0.81
## 4212 1 159 2019-06-24 2.89
## 4213 5 33 2019-07-06 0.53
## 4214 4 12 2018-08-10 0.20
## 4215 2 267 2019-06-23 4.20
## 4216 30 3 2018-01-04 0.09
## 4217 30 65 2019-06-06 1.33
## 4218 2 65 2019-06-23 1.03
## 4219 1 51 2019-05-26 0.82
## 4220 2 349 2019-06-17 5.54
## 4221 13 2 2016-03-23 0.04
## 4222 12 43 2019-04-29 0.74
## 4223 3 38 2019-06-17 0.60
## 4224 5 3 2016-10-27 0.05
## 4225 10 8 2019-01-03 0.13
## 4226 20 0 NA
## 4227 7 10 2018-10-13 0.16
## 4228 30 5 2019-06-15 0.12
## 4229 20 11 2018-12-30 0.21
## 4230 1 225 2019-07-07 3.53
## 4231 5 24 2018-10-14 0.40
## 4232 30 3 2016-12-13 0.09
## 4233 9 31 2019-06-22 0.61
## 4234 2 52 2019-07-01 1.33
## 4235 4 0 NA
## 4236 6 1 2014-04-28 0.02
## 4237 1 1 2018-05-25 0.07
## 4238 30 101 2019-03-09 1.61
## 4239 3 1 2015-05-19 0.02
## 4240 5 0 NA
## 4241 6 53 2019-07-01 0.90
## 4242 1 24 2019-05-22 0.38
## 4243 3 115 2019-07-01 2.83
## 4244 1 58 2019-06-23 0.91
## 4245 5 42 2018-06-08 0.67
## 4246 5 12 2018-10-17 0.19
## 4247 3 0 NA
## 4248 30 28 2018-01-15 0.45
## 4249 1 1 2014-04-19 0.02
## 4250 1 2 2015-04-26 0.03
## 4251 31 1 2017-04-28 0.04
## 4252 1 2 2018-02-22 0.10
## 4253 30 22 2015-02-22 0.35
## 4254 1 48 2019-06-23 0.77
## 4255 3 1 2014-10-04 0.02
## 4256 1 1 2015-09-05 0.02
## 4257 5 11 2016-05-22 0.18
## 4258 3 19 2017-11-24 0.31
## 4259 4 1 2015-04-25 0.02
## 4260 1 1 2014-05-27 0.02
## 4261 5 19 2019-01-02 0.30
## 4262 3 209 2019-07-03 3.29
## 4263 2 15 2017-05-20 0.26
## 4264 8 0 NA
## 4265 4 45 2019-06-16 0.82
## 4266 4 89 2017-11-11 1.54
## 4267 7 25 2017-11-12 0.42
## 4268 30 5 2019-03-23 0.09
## 4269 1 197 2019-07-01 3.19
## 4270 1 1 2014-07-15 0.02
## 4271 30 18 2019-05-27 0.30
## 4272 5 6 2017-08-17 0.12
## 4273 4 7 2019-06-24 0.93
## 4274 30 3 2015-11-06 0.05
## 4275 1 67 2019-06-28 1.11
## 4276 50 30 2015-11-15 0.48
## 4277 3 18 2016-10-04 0.29
## 4278 5 0 NA
## 4279 1 1 2014-05-19 0.02
## 4280 3 33 2019-05-31 0.52
## 4281 2 155 2019-06-21 2.46
## 4282 2 175 2019-07-01 2.78
## 4283 1 0 NA
## 4284 17 0 NA
## 4285 30 5 2019-06-01 0.08
## 4286 1 34 2016-09-18 0.55
## 4287 4 120 2019-06-24 1.92
## 4288 2 135 2019-06-16 2.13
## 4289 2 0 NA
## 4290 20 0 NA
## 4291 5 4 2018-09-29 0.08
## 4292 3 0 NA
## 4293 2 67 2019-06-23 1.76
## 4294 2 11 2015-10-05 0.18
## 4295 3 104 2019-06-23 1.65
## 4296 30 8 2018-07-09 0.19
## 4297 7 18 2015-08-12 0.31
## 4298 30 3 2018-04-07 0.06
## 4299 4 56 2019-06-15 1.55
## 4300 30 20 2019-06-07 0.34
## 4301 3 0 NA
## 4302 5 3 2015-05-01 0.05
## 4303 29 5 2017-08-31 0.08
## 4304 2 55 2019-06-02 2.64
## 4305 6 11 2018-07-22 0.18
## 4306 6 78 2019-06-22 1.25
## 4307 2 65 2019-06-03 1.05
## 4308 2 13 2018-09-08 0.24
## 4309 30 4 2019-06-08 0.13
## 4310 30 5 2018-09-30 0.09
## 4311 1 72 2019-06-08 1.14
## 4312 1 3 2019-05-19 0.33
## 4313 21 62 2019-06-30 1.22
## 4314 2 27 2019-06-16 1.00
## 4315 5 25 2015-12-25 0.40
## 4316 2 110 2019-07-05 1.74
## 4317 1 10 2018-10-08 0.17
## 4318 10 6 2016-06-29 0.10
## 4319 5 177 2019-07-01 2.87
## 4320 20 0 NA
## 4321 5 44 2019-05-25 0.75
## 4322 2 132 2019-06-14 3.31
## 4323 4 5 2015-11-03 0.10
## 4324 2 48 2019-06-22 0.78
## 4325 2 234 2019-06-30 3.74
## 4326 25 3 2018-07-18 0.05
## 4327 5 136 2019-06-30 2.20
## 4328 2 255 2019-07-07 4.05
## 4329 1 135 2019-06-16 2.14
## 4330 7 16 2019-05-18 0.50
## 4331 5 2 2015-04-22 0.03
## 4332 3 0 NA
## 4333 30 0 NA
## 4334 6 2 2015-08-07 0.04
## 4335 4 33 2015-10-21 0.54
## 4336 2 88 2019-07-05 1.40
## 4337 7 6 2017-09-10 0.10
## 4338 1 0 NA
## 4339 1 9 2015-07-28 0.14
## 4340 1 44 2018-04-27 0.74
## 4341 2 42 2016-12-11 0.67
## 4342 3 34 2018-12-04 0.54
## 4343 1 1 2014-06-13 0.02
## 4344 2 9 2015-10-16 0.14
## 4345 3 2 2016-10-03 0.05
## 4346 6 10 2016-01-02 0.16
## 4347 1 91 2019-06-22 1.58
## 4348 7 5 2016-03-24 0.08
## 4349 1 56 2019-05-07 1.06
## 4350 4 9 2018-11-04 0.63
## 4351 14 9 2019-06-01 0.14
## 4352 2 71 2019-02-26 1.13
## 4353 1 0 NA
## 4354 4 65 2019-01-02 1.34
## 4355 5 37 2019-05-27 0.78
## 4356 3 9 2017-04-20 0.16
## 4357 2 18 2019-06-30 1.83
## 4358 2 57 2019-04-09 0.94
## 4359 4 65 2019-06-30 1.18
## 4360 2 5 2015-10-24 0.08
## 4361 4 229 2019-07-01 3.67
## 4362 1 4 2015-10-18 0.08
## 4363 2 32 2016-12-19 0.51
## 4364 1 46 2017-10-22 0.74
## 4365 2 209 2019-06-19 4.07
## 4366 1 183 2019-06-23 2.90
## 4367 3 89 2019-01-03 1.44
## 4368 1 10 2015-05-04 0.16
## 4369 3 60 2019-06-08 2.26
## 4370 3 62 2017-11-04 1.07
## 4371 3 6 2016-05-06 0.10
## 4372 3 136 2019-06-09 2.21
## 4373 365 9 2019-06-15 0.15
## 4374 1 13 2015-05-25 0.21
## 4375 30 1 2019-06-28 1.00
## 4376 3 136 2019-06-21 2.17
## 4377 1 5 2018-12-29 0.09
## 4378 1 1 2016-09-15 0.03
## 4379 5 0 NA
## 4380 2 60 2019-06-24 0.97
## 4381 1 77 2019-07-01 1.25
## 4382 300 0 NA
## 4383 7 11 2019-04-22 0.30
## 4384 3 13 2019-04-24 0.56
## 4385 2 13 2018-11-25 0.55
## 4386 1 1 2015-09-28 0.02
## 4387 1 365 2019-07-05 5.81
## 4388 1 8 2018-10-07 0.13
## 4389 4 106 2019-05-25 1.71
## 4390 1 152 2019-05-23 2.42
## 4391 1 34 2019-07-01 0.68
## 4392 5 2 2018-01-03 0.07
## 4393 3 13 2017-04-23 0.22
## 4394 14 2 2015-06-18 0.04
## 4395 21 0 NA
## 4396 2 2 2015-09-07 0.04
## 4397 4 44 2019-05-20 0.70
## 4398 1 270 2019-06-17 4.50
## 4399 2 11 2019-05-31 0.27
## 4400 30 1 2017-02-04 0.03
## 4401 7 95 2019-06-14 1.56
## 4402 3 4 2016-09-27 0.11
## 4403 2 10 2018-09-14 0.16
## 4404 2 133 2019-05-27 2.19
## 4405 30 3 2018-08-30 0.06
## 4406 3 40 2019-05-16 1.48
## 4407 2 8 2016-07-03 0.17
## 4408 1 127 2019-06-27 2.77
## 4409 2 205 2019-07-07 3.26
## 4410 30 1 2014-06-14 0.02
## 4411 30 6 2018-10-13 0.12
## 4412 2 296 2019-06-25 4.84
## 4413 7 13 2019-05-11 0.36
## 4414 20 16 2018-10-11 0.28
## 4415 30 2 2014-05-27 0.03
## 4416 1 6 2019-06-30 0.11
## 4417 30 2 2015-02-21 0.03
## 4418 3 284 2019-06-24 4.57
## 4419 7 1 2019-06-08 0.94
## 4420 2 34 2018-08-07 0.56
## 4421 1 4 2018-05-15 0.07
## 4422 6 2 2018-07-01 0.11
## 4423 1 6 2014-08-25 0.10
## 4424 30 43 2019-07-01 0.70
## 4425 3 11 2019-04-28 0.19
## 4426 7 3 2018-06-15 0.07
## 4427 8 23 2019-04-21 0.38
## 4428 2 12 2015-11-02 0.19
## 4429 6 0 NA
## 4430 4 15 2017-08-18 0.32
## 4431 5 5 2019-06-17 0.10
## 4432 2 58 2017-10-20 0.96
## 4433 1 11 2018-10-17 0.18
## 4434 2 37 2018-12-09 0.60
## 4435 3 2 2016-08-22 0.06
## 4436 2 0 NA
## 4437 30 2 2016-11-29 0.03
## 4438 365 10 2018-02-12 0.17
## 4439 2 0 NA
## 4440 3 22 2019-06-20 0.40
## 4441 25 3 2015-04-02 0.05
## 4442 30 4 2019-06-06 0.08
## 4443 1 21 2019-06-02 0.36
## 4444 7 2 2015-08-11 0.03
## 4445 1 7 2019-05-21 0.15
## 4446 30 0 NA
## 4447 2 14 2018-01-02 0.28
## 4448 1 1 2015-06-30 0.02
## 4449 1 150 2019-06-24 2.52
## 4450 30 2 2016-08-31 0.04
## 4451 3 139 2019-07-07 2.29
## 4452 8 0 NA
## 4453 14 16 2019-07-02 0.61
## 4454 30 6 2017-06-30 0.11
## 4455 30 6 2018-10-04 0.10
## 4456 4 3 2014-08-17 0.05
## 4457 3 92 2019-05-06 1.53
## 4458 1 2 2016-12-31 0.03
## 4459 3 5 2016-10-28 0.08
## 4460 31 2 2019-06-16 0.15
## 4461 2 9 2019-07-07 0.29
## 4462 75 16 2019-05-15 0.30
## 4463 30 1 2015-07-31 0.02
## 4464 2 18 2015-11-12 0.29
## 4465 2 0 NA
## 4466 3 145 2019-06-23 2.33
## 4467 30 5 2017-12-11 0.10
## 4468 21 10 2019-07-04 0.17
## 4469 2 12 2019-06-09 1.52
## 4470 4 43 2019-05-06 0.70
## 4471 8 5 2018-07-23 0.08
## 4472 3 3 2015-10-11 0.06
## 4473 30 12 2019-02-26 0.20
## 4474 30 7 2018-06-02 0.14
## 4475 3 5 2016-10-20 0.10
## 4476 3 10 2015-05-20 0.16
## 4477 4 6 2015-12-01 0.13
## 4478 2 3 2017-04-22 0.10
## 4479 1 32 2018-12-12 0.51
## 4480 3 168 2019-06-30 2.70
## 4481 29 4 2014-08-15 0.07
## 4482 2 190 2019-07-01 3.67
## 4483 3 42 2019-06-10 0.69
## 4484 1 1 2014-07-10 0.02
## 4485 1 5 2014-12-22 0.08
## 4486 4 4 2018-08-25 0.11
## 4487 1 257 2019-06-13 4.20
## 4488 1 52 2019-06-16 1.29
## 4489 30 7 2018-10-04 0.12
## 4490 14 1 2017-08-07 0.04
## 4491 3 85 2019-06-19 1.41
## 4492 6 108 2019-05-01 1.73
## 4493 4 64 2019-06-29 1.38
## 4494 30 38 2017-07-31 0.63
## 4495 2 2 2014-08-21 0.03
## 4496 2 14 2018-06-10 0.60
## 4497 1 1 2014-09-04 0.02
## 4498 250 91 2018-08-10 1.47
## 4499 7 100 2019-06-18 1.61
## 4500 2 2 2017-06-28 0.08
## 4501 2 15 2019-05-11 0.80
## 4502 2 2 2016-01-03 0.04
## 4503 4 6 2016-12-06 0.12
## 4504 6 0 NA
## 4505 5 4 2015-10-17 0.07
## 4506 2 1 2014-05-24 0.02
## 4507 28 13 2018-01-12 0.21
## 4508 3 35 2016-12-31 0.61
## 4509 2 8 2015-06-21 0.13
## 4510 2 8 2017-12-30 0.13
## 4511 1 2 2019-05-19 0.19
## 4512 2 2 2016-08-25 0.03
## 4513 10 0 NA
## 4514 2 6 2015-06-19 0.10
## 4515 1 8 2016-09-29 0.13
## 4516 7 4 2016-03-09 0.07
## 4517 30 8 2018-08-15 0.20
## 4518 1 0 NA
## 4519 5 22 2019-04-26 0.36
## 4520 2 123 2019-06-28 3.47
## 4521 1 0 NA
## 4522 1 25 2019-04-21 0.51
## 4523 2 225 2019-06-30 3.70
## 4524 5 6 2018-06-21 0.14
## 4525 5 2 2018-12-31 0.21
## 4526 2 156 2019-07-01 2.54
## 4527 5 10 2017-09-23 0.16
## 4528 1 0 NA
## 4529 3 47 2019-06-10 0.77
## 4530 2 182 2019-06-21 3.62
## 4531 1 3 2014-09-27 0.05
## 4532 3 55 2019-06-17 0.94
## 4533 14 2 2015-01-11 0.03
## 4534 2 119 2019-05-15 1.96
## 4535 10 0 NA
## 4536 3 10 2015-11-02 0.17
## 4537 5 60 2019-03-29 1.30
## 4538 1 28 2018-11-02 0.71
## 4539 3 2 2017-11-11 0.03
## 4540 3 105 2019-06-14 1.73
## 4541 21 5 2018-07-31 0.08
## 4542 30 10 2019-05-23 0.16
## 4543 1 1 2015-02-12 0.02
## 4544 1 4 2016-07-26 0.08
## 4545 7 56 2019-05-15 0.93
## 4546 2 2 2015-08-02 0.04
## 4547 1 12 2016-08-28 0.33
## 4548 5 22 2018-05-17 0.37
## 4549 3 6 2019-01-01 0.16
## 4550 5 22 2018-08-27 0.37
## 4551 4 19 2019-07-05 0.32
## 4552 2 1 2014-06-30 0.02
## 4553 5 0 NA
## 4554 4 4 2016-09-22 0.07
## 4555 3 7 2019-04-21 0.19
## 4556 2 23 2019-06-10 0.45
## 4557 7 20 2019-06-30 0.33
## 4558 3 69 2019-04-30 1.13
## 4559 2 36 2018-12-01 0.60
## 4560 3 63 2019-06-16 1.02
## 4561 2 8 2019-06-17 2.20
## 4562 2 0 NA
## 4563 4 2 2018-12-30 0.11
## 4564 2 217 2019-06-21 3.67
## 4565 3 6 2016-06-13 0.10
## 4566 3 44 2019-05-27 0.71
## 4567 3 1 2016-01-03 0.02
## 4568 3 16 2016-07-31 0.26
## 4569 3 58 2019-06-10 0.96
## 4570 2 12 2019-04-22 0.20
## 4571 5 28 2019-05-25 0.53
## 4572 3 4 2015-07-23 0.07
## 4573 5 35 2019-05-11 0.67
## 4574 3 22 2017-09-04 0.36
## 4575 2 85 2019-06-16 1.81
## 4576 2 142 2019-06-29 2.39
## 4577 3 8 2017-07-09 0.13
## 4578 7 2 2018-08-20 0.15
## 4579 4 1 2017-01-02 0.03
## 4580 5 175 2019-06-19 2.86
## 4581 10 11 2015-07-03 0.19
## 4582 3 141 2019-07-05 2.34
## 4583 3 76 2019-05-18 1.24
## 4584 28 12 2016-10-24 0.30
## 4585 1 189 2019-06-15 3.06
## 4586 2 17 2018-03-23 0.28
## 4587 1 75 2019-05-31 1.28
## 4588 3 8 2018-08-18 0.14
## 4589 5 0 NA
## 4590 3 214 2019-06-21 3.47
## 4591 3 231 2019-07-07 3.72
## 4592 3 1 2014-09-17 0.02
## 4593 5 142 2019-07-05 2.30
## 4594 2 119 2018-03-03 1.93
## 4595 7 17 2019-07-01 0.29
## 4596 1 3 2016-01-05 0.05
## 4597 7 0 NA
## 4598 3 9 2017-10-15 0.19
## 4599 2 136 2019-06-23 2.22
## 4600 21 0 NA
## 4601 3 37 2017-05-09 0.61
## 4602 2 122 2019-06-12 1.98
## 4603 2 10 2017-05-03 0.25
## 4604 2 9 2017-03-02 0.21
## 4605 6 3 2015-07-11 0.05
## 4606 2 172 2019-07-06 3.10
## 4607 4 3 2017-01-01 0.05
## 4608 3 8 2017-09-02 0.13
## 4609 1 0 NA
## 4610 7 6 2015-01-12 0.10
## 4611 1 47 2019-06-22 0.79
## 4612 30 0 NA
## 4613 1 0 NA
## 4614 1 115 2019-06-23 1.91
## 4615 6 34 2018-12-30 0.56
## 4616 5 3 2015-07-03 0.05
## 4617 2 45 2019-02-24 3.08
## 4618 3 12 2016-07-31 0.20
## 4619 2 31 2019-06-16 0.54
## 4620 7 17 2018-10-07 0.28
## 4621 30 2 2019-01-07 0.09
## 4622 6 5 2019-07-05 0.08
## 4623 1 2 2017-07-01 0.05
## 4624 14 0 NA
## 4625 1 0 NA
## 4626 13 0 NA
## 4627 14 26 2019-06-05 0.42
## 4628 2 10 2016-09-07 0.18
## 4629 2 15 2019-04-27 0.25
## 4630 3 13 2016-01-02 0.21
## 4631 2 7 2019-05-13 0.92
## 4632 4 102 2019-06-26 1.70
## 4633 1 2 2019-03-18 0.28
## 4634 1 134 2019-07-03 4.36
## 4635 1 154 2019-06-25 3.05
## 4636 5 13 2018-09-16 0.22
## 4637 2 152 2019-06-18 2.50
## 4638 7 5 2018-07-18 0.14
## 4639 5 0 NA
## 4640 2 1 2014-06-28 0.02
## 4641 30 1 2018-12-07 0.14
## 4642 2 6 2016-07-06 0.11
## 4643 4 5 2015-10-09 0.08
## 4644 1 0 NA
## 4645 5 2 2017-03-08 0.03
## 4646 1 18 2016-12-16 0.35
## 4647 3 73 2019-01-07 1.19
## 4648 2 21 2019-06-30 1.69
## 4649 1 32 2019-05-25 0.52
## 4650 5 49 2019-06-30 0.83
## 4651 1 5 2015-12-01 0.08
## 4652 3 118 2019-06-24 1.91
## 4653 3 18 2017-09-11 0.30
## 4654 3 2 2015-08-12 0.03
## 4655 1 0 NA
## 4656 7 11 2019-04-27 0.18
## 4657 3 2 2019-06-28 1.58
## 4658 2 40 2018-01-02 0.65
## 4659 4 22 2018-11-15 0.37
## 4660 4 48 2019-07-02 0.82
## 4661 2 52 2019-06-30 1.08
## 4662 30 14 2019-04-19 0.41
## 4663 4 14 2017-10-23 0.23
## 4664 28 13 2018-12-24 0.22
## 4665 4 6 2018-12-12 0.18
## 4666 3 13 2016-08-14 0.22
## 4667 3 16 2019-07-05 0.27
## 4668 7 14 2017-11-06 0.23
## 4669 3 18 2017-09-03 0.30
## 4670 3 12 2019-04-07 0.25
## 4671 5 5 2016-01-05 0.08
## 4672 14 18 2019-06-24 0.30
## 4673 4 11 2017-11-25 0.18
## 4674 5 6 2017-09-06 0.16
## 4675 1 3 2015-06-06 0.05
## 4676 30 4 2016-09-01 0.07
## 4677 3 159 2019-05-25 2.71
## 4678 2 14 2018-12-09 0.23
## 4679 60 1 2017-06-06 0.04
## 4680 3 12 2015-06-08 0.19
## 4681 5 51 2019-06-02 0.83
## 4682 2 124 2019-06-25 2.09
## 4683 4 7 2015-11-15 0.11
## 4684 3 25 2016-07-30 0.41
## 4685 1 173 2019-07-02 4.69
## 4686 30 8 2018-02-27 0.13
## 4687 10 0 NA
## 4688 7 0 NA
## 4689 3 30 2019-05-24 0.51
## 4690 1 0 NA
## 4691 30 5 2018-07-30 0.08
## 4692 3 89 2018-12-29 1.53
## 4693 12 8 2019-04-27 0.13
## 4694 30 36 2019-06-15 0.63
## 4695 2 0 NA
## 4696 5 30 2019-06-22 0.50
## 4697 3 3 2017-10-29 0.07
## 4698 2 138 2019-06-23 2.86
## 4699 5 0 NA
## 4700 2 148 2019-06-26 2.46
## 4701 5 120 2019-06-29 2.00
## 4702 4 115 2019-06-29 1.90
## 4703 3 64 2019-06-01 1.05
## 4704 1 22 2015-10-24 0.37
## 4705 3 52 2018-10-23 0.85
## 4706 2 55 2019-01-01 0.91
## 4707 20 62 2019-05-26 1.01
## 4708 1 142 2019-06-16 2.34
## 4709 30 81 2018-08-31 1.33
## 4710 2 85 2019-06-09 1.41
## 4711 3 86 2019-06-30 1.43
## 4712 1 4 2016-01-03 0.07
## 4713 1 0 NA
## 4714 1 2 2016-06-30 0.05
## 4715 2 25 2019-02-12 0.47
## 4716 1 0 NA
## 4717 7 4 2016-05-18 0.07
## 4718 4 10 2016-08-27 0.17
## 4719 18 11 2015-08-03 0.20
## 4720 2 85 2019-06-30 1.52
## 4721 3 160 2019-07-05 2.65
## 4722 30 9 2018-08-24 0.16
## 4723 4 2 2018-01-02 0.06
## 4724 2 216 2019-06-18 3.54
## 4725 7 6 2016-10-06 0.10
## 4726 1 146 2019-06-23 2.67
## 4727 4 14 2018-04-05 0.23
## 4728 3 1 2016-05-15 0.03
## 4729 5 192 2019-07-06 3.14
## 4730 29 5 2018-07-03 0.08
## 4731 4 0 NA
## 4732 4 11 2017-01-02 0.18
## 4733 110 12 2019-02-18 0.26
## 4734 30 13 2019-05-20 0.24
## 4735 1 3 2015-10-19 0.05
## 4736 1 8 2014-08-28 0.13
## 4737 2 4 2015-09-14 0.07
## 4738 30 4 2019-06-28 0.18
## 4739 2 55 2019-06-27 0.89
## 4740 10 1 2017-01-03 0.03
## 4741 2 55 2019-01-02 1.24
## 4742 5 37 2019-04-26 0.76
## 4743 4 37 2017-03-04 0.60
## 4744 1 1 2019-05-25 0.67
## 4745 2 4 2015-09-27 0.08
## 4746 5 8 2017-01-09 0.13
## 4747 2 1 2015-10-01 0.02
## 4748 1 4 2019-04-27 0.07
## 4749 5 9 2017-08-10 0.16
## 4750 5 49 2018-12-02 0.84
## 4751 3 11 2016-04-17 0.19
## 4752 10 3 2015-08-08 0.05
## 4753 30 15 2019-06-30 0.27
## 4754 7 4 2015-01-30 0.07
## 4755 1 0 NA
## 4756 5 18 2019-05-20 0.30
## 4757 4 17 2017-07-24 0.28
## 4758 1 0 NA
## 4759 3 29 2019-06-23 0.49
## 4760 3 176 2019-06-26 2.88
## 4761 3 33 2016-01-02 0.65
## 4762 1 1 2014-09-24 0.02
## 4763 1 0 NA
## 4764 3 6 2016-06-15 0.10
## 4765 5 82 2019-01-01 1.41
## 4766 3 0 NA
## 4767 5 1 2017-07-03 0.04
## 4768 1 60 2019-06-25 1.00
## 4769 2 257 2019-06-23 4.21
## 4770 7 5 2017-12-30 0.09
## 4771 4 14 2018-03-20 0.30
## 4772 3 153 2019-06-24 2.64
## 4773 2 0 NA
## 4774 1 0 NA
## 4775 1 0 NA
## 4776 10 10 2019-03-18 0.18
## 4777 2 25 2019-05-27 0.41
## 4778 15 0 NA
## 4779 1 89 2019-06-23 1.47
## 4780 4 26 2015-09-15 0.44
## 4781 2 10 2019-06-08 0.16
## 4782 30 3 2017-11-30 0.05
## 4783 5 3 2018-11-04 0.13
## 4784 31 0 NA
## 4785 3 6 2016-08-11 0.10
## 4786 7 0 NA
## 4787 3 18 2019-05-04 0.29
## 4788 30 77 2016-05-16 1.30
## 4789 2 60 2019-06-29 1.05
## 4790 5 21 2019-04-29 0.34
## 4791 5 24 2019-06-27 0.39
## 4792 6 20 2019-06-15 0.33
## 4793 3 10 2018-07-15 0.58
## 4794 7 1 2016-09-22 0.03
## 4795 365 0 NA
## 4796 2 114 2019-06-29 1.87
## 4797 3 6 2017-09-15 0.10
## 4798 21 60 2016-12-01 0.99
## 4799 7 25 2018-08-13 0.41
## 4800 3 225 2019-07-01 3.69
## 4801 1 0 NA
## 4802 2 8 2017-01-01 0.16
## 4803 30 36 2019-04-30 0.61
## 4804 3 225 2019-06-30 3.70
## 4805 2 118 2019-06-10 1.99
## 4806 4 48 2019-06-12 0.82
## 4807 5 19 2019-05-04 0.45
## 4808 1 7 2019-04-26 0.12
## 4809 7 90 2019-06-14 1.53
## 4810 1 83 2019-05-31 1.51
## 4811 2 1 2015-12-09 0.02
## 4812 11 50 2019-06-04 0.82
## 4813 2 7 2018-09-04 0.12
## 4814 3 25 2019-07-06 0.42
## 4815 2 87 2019-06-28 1.46
## 4816 2 48 2019-05-05 0.80
## 4817 2 33 2019-06-28 0.92
## 4818 1 21 2016-09-05 0.36
## 4819 3 16 2015-08-19 0.27
## 4820 5 9 2019-04-14 0.15
## 4821 3 1 2018-08-25 0.09
## 4822 2 0 NA
## 4823 1 1 2017-10-31 0.05
## 4824 5 10 2018-01-05 0.17
## 4825 30 7 2019-05-16 0.12
## 4826 3 9 2019-04-28 0.36
## 4827 2 75 2018-07-05 1.27
## 4828 3 12 2017-09-04 0.20
## 4829 1 231 2019-06-22 3.95
## 4830 4 3 2016-01-03 0.05
## 4831 3 1 2014-10-24 0.02
## 4832 7 6 2018-05-29 0.18
## 4833 2 4 2016-11-10 0.07
## 4834 4 4 2015-08-11 0.07
## 4835 10 1 2016-11-08 0.03
## 4836 1 21 2019-06-15 0.47
## 4837 7 11 2018-08-26 0.18
## 4838 1 39 2019-06-18 2.73
## 4839 3 5 2016-09-09 0.08
## 4840 7 16 2019-04-05 0.26
## 4841 2 1 2015-09-28 0.02
## 4842 15 4 2015-09-30 0.07
## 4843 3 2 2015-08-16 0.03
## 4844 3 15 2019-05-27 0.27
## 4845 5 11 2019-06-17 0.18
## 4846 1 0 NA
## 4847 1 0 NA
## 4848 1 107 2019-06-22 1.80
## 4849 5 7 2016-01-02 0.12
## 4850 2 45 2016-11-27 0.98
## 4851 30 0 NA
## 4852 6 0 NA
## 4853 1 1 2014-08-09 0.02
## 4854 3 64 2019-06-19 1.05
## 4855 1 3 2015-10-04 0.05
## 4856 1 7 2015-09-24 0.12
## 4857 1 202 2019-05-27 3.31
## 4858 1 285 2019-06-30 4.83
## 4859 1 0 NA
## 4860 7 0 NA
## 4861 3 6 2018-08-27 0.10
## 4862 1 145 2019-07-05 2.38
## 4863 15 15 2019-06-16 0.45
## 4864 7 1 2014-07-28 0.02
## 4865 30 6 2018-05-24 0.10
## 4866 30 11 2019-04-24 0.19
## 4867 2 19 2019-04-07 0.33
## 4868 1 169 2019-06-24 2.80
## 4869 4 58 2019-06-22 0.97
## 4870 3 15 2016-06-21 0.25
## 4871 1 488 2019-07-01 8.14
## 4872 4 142 2019-05-28 2.34
## 4873 3 39 2019-01-01 0.85
## 4874 2 36 2019-06-30 0.60
## 4875 3 4 2014-11-02 0.07
## 4876 5 72 2016-11-22 1.18
## 4877 1 51 2019-06-15 0.84
## 4878 7 0 NA
## 4879 1 1 2014-12-30 0.02
## 4880 2 214 2019-06-27 4.58
## 4881 1 0 NA
## 4882 3 4 2019-04-28 0.08
## 4883 3 3 2015-09-08 0.05
## 4884 30 0 NA
## 4885 30 8 2019-06-12 0.14
## 4886 2 231 2019-06-22 3.82
## 4887 3 91 2019-06-06 1.52
## 4888 5 19 2019-06-01 0.32
## 4889 3 0 NA
## 4890 2 133 2019-06-27 2.52
## 4891 1 145 2019-06-24 3.48
## 4892 1 1 2014-08-05 0.02
## 4893 2 2 2014-09-22 0.03
## 4894 4 8 2017-05-06 0.13
## 4895 3 25 2016-12-31 0.42
## 4896 6 17 2015-09-01 0.29
## 4897 1 2 2014-07-11 0.03
## 4898 2 11 2016-03-19 0.19
## 4899 3 5 2015-06-05 0.10
## 4900 5 7 2018-07-17 0.12
## 4901 30 12 2016-09-25 0.20
## 4902 2 10 2017-10-09 0.18
## 4903 20 5 2017-07-31 0.09
## 4904 1 0 NA
## 4905 2 127 2019-07-06 2.15
## 4906 5 53 2019-06-24 0.90
## 4907 3 230 2019-06-16 3.79
## 4908 1 5 2015-12-17 0.08
## 4909 3 76 2019-06-03 1.30
## 4910 30 4 2019-06-30 0.07
## 4911 5 3 2018-08-13 0.05
## 4912 2 50 2017-05-21 0.83
## 4913 3 20 2019-06-23 0.39
## 4914 1 18 2016-05-11 0.31
## 4915 1 52 2019-06-09 0.87
## 4916 1 48 2016-01-17 0.81
## 4917 4 17 2019-06-24 0.28
## 4918 4 45 2019-06-12 0.75
## 4919 7 0 NA
## 4920 3 44 2019-06-21 0.74
## 4921 5 52 2019-06-19 0.91
## 4922 4 70 2019-06-24 1.19
## 4923 3 10 2017-03-10 0.22
## 4924 5 76 2019-07-06 1.28
## 4925 2 5 2019-04-08 0.10
## 4926 3 73 2019-06-14 1.23
## 4927 1 142 2019-07-01 2.63
## 4928 4 85 2019-07-05 1.41
## 4929 2 28 2019-04-26 0.82
## 4930 1 2 2014-10-20 0.03
## 4931 3 49 2019-06-12 0.96
## 4932 1 332 2019-07-06 5.57
## 4933 1 47 2019-06-03 0.81
## 4934 1 0 NA
## 4935 2 249 2019-06-16 4.12
## 4936 2 67 2019-07-04 1.56
## 4937 2 121 2019-02-03 2.02
## 4938 1 9 2015-05-21 0.15
## 4939 5 12 2015-12-31 0.20
## 4940 1 191 2019-05-27 3.17
## 4941 1 358 2018-12-03 5.96
## 4942 1 138 2017-12-20 2.34
## 4943 3 160 2019-07-01 2.78
## 4944 4 9 2017-12-31 0.15
## 4945 1 0 NA
## 4946 2 180 2019-01-02 3.04
## 4947 1 1 2014-08-18 0.02
## 4948 3 37 2018-08-06 0.62
## 4949 5 3 2015-08-29 0.05
## 4950 3 16 2016-03-22 0.26
## 4951 3 2 2017-01-02 0.05
## 4952 4 38 2019-07-07 0.63
## 4953 2 175 2019-07-02 2.93
## 4954 5 5 2018-06-30 0.10
## 4955 1 31 2016-11-01 0.53
## 4956 30 4 2016-05-19 0.07
## 4957 3 19 2019-05-05 0.36
## 4958 1 0 NA
## 4959 1 14 2019-06-30 0.24
## 4960 60 9 2016-04-04 0.16
## 4961 5 64 2019-06-24 1.09
## 4962 5 7 2019-01-01 0.15
## 4963 4 37 2019-06-24 0.64
## 4964 7 0 NA
## 4965 3 0 NA
## 4966 2 0 NA
## 4967 180 7 2018-07-06 0.12
## 4968 2 62 2019-06-09 1.06
## 4969 2 9 2018-12-02 0.15
## 4970 5 8 2018-08-24 0.21
## 4971 3 0 NA
## 4972 2 62 2019-07-01 1.02
## 4973 1 83 2019-06-12 1.39
## 4974 7 9 2018-12-07 0.27
## 4975 4 60 2019-06-24 1.01
## 4976 1 3 2015-10-19 0.05
## 4977 2 7 2016-01-02 0.15
## 4978 30 2 2018-11-12 0.19
## 4979 14 1 2016-09-23 0.03
## 4980 14 8 2019-06-09 0.81
## 4981 4 50 2019-05-12 0.83
## 4982 4 0 NA
## 4983 4 25 2019-01-03 1.11
## 4984 1 29 2019-05-26 0.49
## 4985 1 5 2016-07-29 0.09
## 4986 2 60 2019-06-30 1.00
## 4987 2 8 2016-06-24 0.17
## 4988 3 0 NA
## 4989 1 157 2019-07-01 2.64
## 4990 1 2 2016-01-05 0.03
## 4991 2 292 2019-06-26 4.95
## 4992 3 18 2018-05-16 0.30
## 4993 30 77 2019-04-28 1.28
## 4994 7 16 2019-07-02 1.09
## 4995 1 12 2019-01-01 0.31
## 4996 6 13 2018-07-14 0.23
## 4997 30 1 2015-07-26 0.02
## 4998 2 2 2015-08-25 0.04
## 4999 1 0 NA
## 5000 2 81 2019-06-27 1.35
## 5001 3 15 2019-05-23 0.25
## 5002 2 180 2019-06-19 2.99
## 5003 30 9 2019-03-25 0.15
## 5004 31 0 NA
## 5005 2 5 2015-08-20 0.08
## 5006 5 150 2019-07-03 2.48
## 5007 3 192 2019-06-29 3.20
## 5008 1 14 2018-01-01 0.23
## 5009 6 61 2019-05-17 1.17
## 5010 7 17 2017-04-17 0.28
## 5011 2 24 2015-09-27 0.41
## 5012 6 3 2016-03-26 0.07
## 5013 3 15 2018-09-30 0.25
## 5014 2 51 2018-10-29 0.86
## 5015 2 56 2018-10-29 0.94
## 5016 3 29 2016-08-02 0.55
## 5017 3 116 2019-05-29 1.95
## 5018 1 0 NA
## 5019 9 26 2019-05-25 0.44
## 5020 3 33 2019-07-01 0.65
## 5021 3 146 2019-06-19 2.46
## 5022 1 13 2017-07-31 0.26
## 5023 4 147 2019-06-14 2.44
## 5024 3 24 2017-04-26 0.49
## 5025 7 45 2019-06-09 0.92
## 5026 2 13 2019-05-05 0.28
## 5027 2 13 2016-05-01 0.26
## 5028 2 5 2015-12-30 0.08
## 5029 7 6 2018-04-29 0.19
## 5030 2 103 2019-05-27 1.70
## 5031 21 88 2018-04-02 1.50
## 5032 1 0 NA
## 5033 1 14 2015-12-14 0.27
## 5034 2 122 2019-06-06 2.07
## 5035 1 4 2015-10-20 0.09
## 5036 30 2 2018-08-05 0.04
## 5037 10 26 2019-06-22 0.52
## 5038 4 6 2019-04-28 0.14
## 5039 21 3 2019-02-12 0.30
## 5040 21 2 2017-07-04 0.04
## 5041 6 25 2019-05-21 0.42
## 5042 2 11 2016-04-29 0.18
## 5043 4 2 2014-09-20 0.03
## 5044 3 8 2018-08-13 0.13
## 5045 30 14 2019-06-10 0.23
## 5046 3 47 2019-06-23 0.81
## 5047 1 173 2019-06-19 2.87
## 5048 30 3 2018-08-10 0.08
## 5049 30 11 2019-03-16 0.19
## 5050 30 8 2018-11-21 0.16
## 5051 5 40 2019-05-20 0.68
## 5052 1 3 2018-09-16 0.14
## 5053 6 81 2019-07-04 1.35
## 5054 3 12 2018-08-19 0.22
## 5055 6 11 2019-06-04 0.28
## 5056 1 30 2019-03-14 0.50
## 5057 2 41 2016-01-25 0.69
## 5058 7 3 2016-12-31 0.06
## 5059 1 3 2014-08-27 0.05
## 5060 1 57 2019-06-08 0.97
## 5061 30 10 2019-04-19 0.28
## 5062 1 13 2019-04-15 1.27
## 5063 5 28 2019-07-07 0.60
## 5064 3 117 2019-06-21 1.96
## 5065 3 1 2014-08-28 0.02
## 5066 75 13 2019-04-30 0.23
## 5067 30 3 2016-09-09 0.08
## 5068 4 18 2015-12-22 0.30
## 5069 1 26 2019-03-24 2.52
## 5070 5 12 2016-09-06 0.20
## 5071 2 25 2019-01-05 0.43
## 5072 3 4 2016-10-03 0.07
## 5073 7 3 2017-03-13 0.05
## 5074 3 24 2019-06-23 0.40
## 5075 2 56 2019-07-02 0.95
## 5076 3 36 2018-08-02 0.60
## 5077 1 31 2019-06-04 0.51
## 5078 3 2 2015-08-23 0.03
## 5079 30 15 2019-04-07 0.25
## 5080 2 6 2016-09-05 0.10
## 5081 1 35 2016-11-13 0.88
## 5082 30 2 2015-08-07 0.03
## 5083 30 3 2016-02-22 0.06
## 5084 2 36 2019-07-07 0.74
## 5085 30 10 2019-03-15 0.18
## 5086 11 14 2018-03-15 0.23
## 5087 5 2 2017-08-07 0.04
## 5088 7 12 2018-09-15 0.55
## 5089 30 99 2019-01-06 1.67
## 5090 3 168 2019-06-23 2.88
## 5091 5 1 2016-05-14 0.03
## 5092 5 2 2015-01-04 0.03
## 5093 62 0 NA
## 5094 30 2 2019-05-30 0.06
## 5095 2 26 2019-04-15 0.54
## 5096 3 51 2019-06-30 0.88
## 5097 4 0 NA
## 5098 2 6 2016-06-17 0.11
## 5099 1 233 2019-07-02 3.89
## 5100 3 0 NA
## 5101 2 43 2016-06-30 0.72
## 5102 30 4 2019-02-02 0.08
## 5103 3 67 2019-06-11 1.65
## 5104 3 34 2018-05-19 0.57
## 5105 4 137 2019-07-04 2.55
## 5106 3 9 2019-05-30 0.15
## 5107 30 9 2019-03-27 0.16
## 5108 2 3 2015-07-23 0.06
## 5109 5 18 2019-05-19 0.79
## 5110 2 145 2019-06-02 2.42
## 5111 14 15 2019-06-18 0.41
## 5112 2 111 2019-06-24 1.89
## 5113 2 13 2017-06-09 0.35
## 5114 4 27 2019-07-05 0.46
## 5115 2 216 2019-06-24 3.61
## 5116 2 6 2018-12-29 0.12
## 5117 2 277 2019-06-13 4.67
## 5118 2 0 NA
## 5119 4 2 2014-08-21 0.03
## 5120 2 20 2019-06-25 0.41
## 5121 7 46 2019-06-29 0.87
## 5122 5 7 2017-01-04 0.12
## 5123 2 116 2019-05-29 2.18
## 5124 30 0 NA
## 5125 4 22 2019-07-01 0.45
## 5126 1 20 2016-05-04 0.33
## 5127 2 3 2016-08-08 0.06
## 5128 2 120 2019-06-23 2.05
## 5129 1 10 2018-12-29 0.21
## 5130 2 207 2019-06-30 3.46
## 5131 3 20 2018-08-14 0.34
## 5132 1 2 2016-08-28 0.04
## 5133 3 6 2016-01-01 0.10
## 5134 3 6 2017-04-01 0.10
## 5135 5 4 2015-11-07 0.07
## 5136 1 135 2019-07-01 2.27
## 5137 3 72 2019-01-02 1.22
## 5138 4 48 2019-01-19 0.80
## 5139 3 61 2019-05-29 1.01
## 5140 3 60 2019-06-27 1.00
## 5141 1 6 2015-08-21 0.12
## 5142 8 48 2019-06-19 1.06
## 5143 60 2 2016-09-07 0.03
## 5144 7 5 2016-07-05 0.09
## 5145 1 6 2015-11-04 0.10
## 5146 1 0 NA
## 5147 30 7 2017-10-22 0.14
## 5148 5 27 2018-10-25 0.70
## 5149 1 121 2019-01-21 2.03
## 5150 1 0 NA
## 5151 3 10 2018-11-13 0.28
## 5152 2 6 2018-01-01 0.16
## 5153 2 18 2018-08-25 0.30
## 5154 3 118 2019-07-01 2.12
## 5155 3 70 2019-07-01 1.21
## 5156 2 38 2019-07-04 1.60
## 5157 1 204 2019-07-05 3.41
## 5158 2 179 2019-06-08 2.99
## 5159 3 168 2019-06-27 2.81
## 5160 7 2 2017-05-15 0.03
## 5161 1 2 2015-07-06 0.03
## 5162 2 5 2015-12-27 0.09
## 5163 3 1 2014-09-01 0.02
## 5164 30 1 2014-09-15 0.02
## 5165 1 9 2016-09-06 0.23
## 5166 1 2 2014-10-22 0.03
## 5167 1 0 NA
## 5168 5 8 2019-05-01 0.31
## 5169 30 6 2019-04-01 0.12
## 5170 1 1 2015-06-17 0.02
## 5171 5 12 2018-12-05 0.26
## 5172 2 1 2016-03-13 0.02
## 5173 2 41 2019-01-04 1.09
## 5174 5 0 NA
## 5175 5 2 2016-06-01 0.03
## 5176 1 7 2016-07-11 0.12
## 5177 30 21 2016-09-13 0.38
## 5178 30 9 2018-12-16 0.17
## 5179 5 0 NA
## 5180 3 133 2019-06-26 2.25
## 5181 5 0 NA
## 5182 3 56 2019-06-29 0.94
## 5183 1 3 2016-01-02 0.05
## 5184 8 17 2019-03-12 0.42
## 5185 5 105 2019-06-27 1.77
## 5186 3 55 2019-06-01 1.03
## 5187 3 10 2019-01-02 0.17
## 5188 3 93 2019-05-06 2.10
## 5189 5 3 2015-08-07 0.05
## 5190 5 10 2018-01-03 0.17
## 5191 1 9 2016-06-07 0.19
## 5192 7 47 2019-05-23 0.80
## 5193 1 78 2019-07-01 1.31
## 5194 10 0 NA
## 5195 30 10 2018-11-10 0.22
## 5196 2 1 2018-01-01 0.05
## 5197 3 72 2019-06-17 1.31
## 5198 3 8 2018-01-02 0.17
## 5199 7 16 2017-09-19 0.34
## 5200 2 177 2019-06-22 2.98
## 5201 5 25 2019-01-02 0.44
## 5202 1 82 2019-06-16 1.39
## 5203 1 68 2019-06-25 1.15
## 5204 2 141 2019-07-02 2.43
## 5205 3 39 2019-04-21 0.71
## 5206 30 54 2018-12-16 0.91
## 5207 1 16 2019-06-15 0.32
## 5208 24 2 2018-08-31 0.04
## 5209 4 46 2019-06-18 0.89
## 5210 10 9 2018-05-16 0.26
## 5211 13 3 2016-05-15 0.05
## 5212 2 79 2019-06-24 1.33
## 5213 3 72 2019-04-29 1.23
## 5214 2 234 2019-06-23 3.90
## 5215 2 52 2019-06-05 0.91
## 5216 7 5 2016-09-10 0.09
## 5217 3 116 2019-06-13 1.96
## 5218 3 59 2019-04-05 1.00
## 5219 1 0 NA
## 5220 1 389 2019-07-01 6.51
## 5221 1 64 2019-06-23 1.12
## 5222 1 9 2018-08-25 0.20
## 5223 3 173 2019-07-06 2.97
## 5224 2 21 2019-05-19 0.51
## 5225 3 10 2017-09-19 0.38
## 5226 1 8 2019-06-05 0.16
## 5227 3 135 2019-05-28 2.27
## 5228 3 80 2019-06-29 1.37
## 5229 1 40 2016-01-16 0.68
## 5230 2 82 2019-06-21 1.60
## 5231 1 16 2019-05-26 0.27
## 5232 2 1 2014-09-01 0.02
## 5233 1 20 2019-05-02 0.40
## 5234 5 85 2019-06-23 1.45
## 5235 30 16 2018-12-23 0.28
## 5236 30 14 2019-06-19 0.24
## 5237 3 0 NA
## 5238 30 5 2019-03-30 0.10
## 5239 3 0 NA
## 5240 2 0 NA
## 5241 1 2 2015-06-18 0.03
## 5242 1 276 2019-06-17 4.63
## 5243 3 154 2019-06-22 2.72
## 5244 30 12 2018-08-12 0.22
## 5245 7 15 2019-05-25 0.27
## 5246 1 13 2019-06-30 1.18
## 5247 2 77 2019-06-22 1.53
## 5248 30 9 2019-05-14 0.16
## 5249 3 78 2019-05-12 1.33
## 5250 30 12 2018-08-13 0.20
## 5251 4 17 2019-06-28 0.29
## 5252 3 1 2014-08-19 0.02
## 5253 3 4 2016-09-17 0.07
## 5254 1 372 2019-06-21 6.23
## 5255 1 299 2019-06-23 5.04
## 5256 25 4 2016-04-08 0.07
## 5257 3 96 2019-06-24 1.66
## 5258 21 1 2015-04-30 0.02
## 5259 3 11 2018-11-20 0.45
## 5260 2 31 2018-12-09 0.52
## 5261 1 321 2019-06-12 5.46
## 5262 1 147 2019-05-19 2.84
## 5263 7 0 NA
## 5264 60 4 2015-05-07 0.07
## 5265 30 9 2015-06-17 0.16
## 5266 2 252 2019-06-22 4.37
## 5267 2 206 2019-06-18 3.50
## 5268 3 164 2019-06-21 2.85
## 5269 14 1 2014-08-16 0.02
## 5270 30 6 2019-04-21 0.11
## 5271 1 52 2018-09-23 1.44
## 5272 3 203 2019-06-22 3.42
## 5273 30 10 2016-08-13 0.17
## 5274 7 0 NA
## 5275 2 128 2019-05-18 2.17
## 5276 2 75 2019-05-19 1.27
## 5277 1 0 NA
## 5278 2 2 2015-11-01 0.04
## 5279 30 7 2019-05-31 0.12
## 5280 5 6 2019-06-24 1.41
## 5281 30 11 2019-03-23 0.20
## 5282 30 2 2016-05-27 0.04
## 5283 30 7 2018-08-20 0.14
## 5284 1 23 2019-01-07 0.45
## 5285 3 70 2019-05-26 1.19
## 5286 2 2 2015-06-26 0.04
## 5287 30 4 2017-09-04 0.09
## 5288 1 52 2019-04-08 0.87
## 5289 4 7 2016-01-03 0.14
## 5290 24 0 NA
## 5291 5 5 2016-01-02 0.08
## 5292 30 9 2018-07-26 0.19
## 5293 4 138 2019-06-24 2.66
## 5294 1 39 2019-07-06 0.83
## 5295 1 10 2019-06-12 0.17
## 5296 4 10 2016-09-05 0.17
## 5297 1 0 NA
## 5298 3 41 2019-05-03 0.70
## 5299 5 14 2019-04-11 0.28
## 5300 24 0 NA
## 5301 30 25 2019-03-28 0.53
## 5302 3 2 2016-08-15 0.06
## 5303 4 21 2019-03-30 0.36
## 5304 2 7 2017-05-13 0.12
## 5305 3 2 2016-09-11 0.05
## 5306 25 70 2018-08-26 1.27
## 5307 15 0 NA
## 5308 3 23 2019-06-23 0.39
## 5309 1 164 2019-06-20 2.78
## 5310 2 36 2019-06-29 0.61
## 5311 1 207 2019-06-21 3.48
## 5312 2 43 2019-05-26 0.72
## 5313 3 5 2016-06-19 0.08
## 5314 1 0 NA
## 5315 3 102 2019-06-04 1.73
## 5316 4 0 NA
## 5317 2 80 2019-07-06 1.35
## 5318 1 0 NA
## 5319 4 3 2014-10-19 0.05
## 5320 14 3 2019-07-05 0.13
## 5321 4 17 2019-01-24 0.29
## 5322 10 16 2018-05-27 0.29
## 5323 2 25 2019-03-31 0.54
## 5324 5 18 2019-02-26 0.32
## 5325 3 68 2019-06-13 1.35
## 5326 1 1 2016-01-09 0.02
## 5327 1 8 2015-06-19 0.13
## 5328 5 18 2017-11-18 0.30
## 5329 2 13 2016-10-25 0.27
## 5330 3 39 2015-05-23 0.67
## 5331 5 1 2014-08-30 0.02
## 5332 25 6 2019-01-23 0.11
## 5333 1 55 2019-05-22 0.94
## 5334 30 2 2016-07-16 0.04
## 5335 10 20 2018-02-01 0.34
## 5336 3 108 2019-07-06 1.83
## 5337 2 11 2016-08-08 0.24
## 5338 30 12 2017-09-30 0.21
## 5339 5 7 2019-01-05 0.18
## 5340 4 26 2017-04-27 0.49
## 5341 2 59 2019-06-08 1.02
## 5342 1 91 2019-07-01 1.53
## 5343 3 15 2019-07-07 0.32
## 5344 5 11 2016-10-31 0.23
## 5345 3 104 2019-06-24 1.79
## 5346 8 1 2014-08-25 0.02
## 5347 3 45 2018-07-17 1.05
## 5348 3 8 2015-09-10 0.14
## 5349 5 0 NA
## 5350 1 0 NA
## 5351 5 3 2015-09-16 0.06
## 5352 4 39 2016-08-17 0.67
## 5353 1 0 NA
## 5354 3 233 2019-06-26 3.97
## 5355 30 5 2019-03-16 0.10
## 5356 30 13 2019-05-05 0.23
## 5357 4 3 2019-01-09 0.06
## 5358 30 2 2018-07-16 0.13
## 5359 2 16 2019-04-28 0.28
## 5360 5 51 2019-06-07 0.87
## 5361 1 42 2019-06-18 0.72
## 5362 1 0 NA
## 5363 2 254 2019-06-20 4.33
## 5364 4 17 2019-06-17 0.29
## 5365 4 28 2019-06-09 0.49
## 5366 1 4 2015-09-27 0.07
## 5367 5 53 2019-06-02 0.90
## 5368 6 19 2017-07-06 0.32
## 5369 1 5 2016-09-25 0.09
## 5370 1 6 2015-05-19 0.10
## 5371 2 21 2018-12-31 0.36
## 5372 2 12 2016-05-10 0.20
## 5373 30 0 NA
## 5374 30 4 2019-03-31 0.16
## 5375 4 27 2018-10-29 0.46
## 5376 5 45 2019-06-30 0.77
## 5377 2 7 2018-08-26 0.12
## 5378 1 297 2019-07-03 5.03
## 5379 2 2 2019-05-19 0.06
## 5380 7 2 2015-06-24 0.03
## 5381 5 0 NA
## 5382 3 2 2019-01-02 0.22
## 5383 1 401 2019-06-30 6.76
## 5384 5 1 2018-03-03 0.06
## 5385 30 7 2019-01-02 0.74
## 5386 365 13 2015-07-15 0.23
## 5387 4 3 2015-09-13 0.05
## 5388 2 242 2019-06-30 4.09
## 5389 7 1 2014-08-28 0.02
## 5390 4 4 2018-07-17 0.11
## 5391 28 45 2019-05-31 0.76
## 5392 4 1 2015-09-19 0.02
## 5393 4 32 2019-05-25 0.56
## 5394 2 117 2019-06-30 1.99
## 5395 3 4 2016-09-19 0.07
## 5396 2 6 2015-10-12 0.10
## 5397 29 7 2019-01-04 0.27
## 5398 5 5 2016-04-29 0.08
## 5399 3 15 2016-07-30 0.26
## 5400 1 0 NA
## 5401 1 10 2019-01-03 0.17
## 5402 10 51 2019-07-01 0.86
## 5403 1 73 2019-06-08 1.23
## 5404 3 174 2019-07-01 2.96
## 5405 5 5 2017-09-20 0.11
## 5406 2 99 2019-06-11 1.67
## 5407 2 7 2017-07-16 0.12
## 5408 1 6 2017-09-14 0.21
## 5409 1 74 2019-07-02 1.26
## 5410 3 14 2019-05-19 0.24
## 5411 2 5 2018-12-23 0.09
## 5412 2 101 2017-07-28 1.71
## 5413 30 12 2017-05-09 0.20
## 5414 3 50 2019-01-01 0.85
## 5415 2 7 2018-10-13 0.13
## 5416 1 2 2014-12-08 0.03
## 5417 30 8 2018-07-01 0.13
## 5418 1 23 2019-06-02 0.39
## 5419 3 0 NA
## 5420 1 295 2019-06-27 4.99
## 5421 30 15 2019-01-15 0.27
## 5422 30 3 2018-08-31 0.10
## 5423 5 2 2015-09-23 0.03
## 5424 7 26 2019-05-23 0.68
## 5425 2 4 2016-10-31 0.08
## 5426 2 4 2015-09-29 0.08
## 5427 1 3 2015-10-11 0.05
## 5428 2 12 2017-02-10 0.20
## 5429 1 75 2018-06-27 1.31
## 5430 7 0 NA
## 5431 70 0 NA
## 5432 3 9 2018-05-26 0.19
## 5433 2 0 NA
## 5434 28 12 2016-12-22 0.22
## 5435 3 11 2015-10-24 0.19
## 5436 30 1 2019-04-28 0.42
## 5437 3 7 2018-05-25 0.12
## 5438 1 4 2015-12-07 0.07
## 5439 6 3 2016-07-26 0.08
## 5440 3 169 2018-12-30 2.88
## 5441 1 1 2018-02-12 0.06
## 5442 5 14 2017-08-26 0.28
## 5443 3 64 2018-09-26 1.16
## 5444 7 1 2014-10-17 0.02
## 5445 5 7 2015-12-31 0.12
## 5446 14 2 2018-08-26 0.04
## 5447 2 76 2019-06-21 1.29
## 5448 3 25 2018-11-05 0.43
## 5449 4 177 2019-06-21 3.01
## 5450 3 1 2014-09-18 0.02
## 5451 2 199 2019-07-06 3.42
## 5452 7 10 2018-06-29 0.17
## 5453 4 11 2019-01-02 0.19
## 5454 2 57 2019-07-07 1.18
## 5455 1 1 2016-12-30 0.03
## 5456 3 38 2018-10-01 0.65
## 5457 30 20 2018-11-09 0.34
## 5458 2 11 2018-06-08 0.42
## 5459 3 20 2018-12-05 0.38
## 5460 3 0 NA
## 5461 6 1 2014-10-24 0.02
## 5462 2 16 2019-07-01 0.27
## 5463 30 0 NA
## 5464 4 75 2019-06-29 1.31
## 5465 6 0 NA
## 5466 5 1 2018-09-26 0.10
## 5467 1 19 2019-07-01 0.35
## 5468 2 0 NA
## 5469 4 33 2019-06-04 0.57
## 5470 2 76 2019-06-16 1.30
## 5471 30 3 2017-03-26 0.05
## 5472 3 172 2019-07-01 2.93
## 5473 3 2 2015-11-03 0.04
## 5474 14 10 2019-01-25 0.21
## 5475 1 1 2014-09-14 0.02
## 5476 4 9 2017-07-01 0.23
## 5477 3 12 2018-02-11 0.25
## 5478 2 10 2019-05-18 0.21
## 5479 2 139 2019-06-23 2.42
## 5480 5 26 2019-06-03 0.58
## 5481 1 265 2019-01-06 4.50
## 5482 30 46 2017-08-24 0.79
## 5483 1 37 2019-06-26 0.66
## 5484 2 5 2018-12-29 0.09
## 5485 30 17 2018-07-15 0.33
## 5486 2 1 2019-01-01 0.16
## 5487 2 6 2019-02-03 0.26
## 5488 2 3 2015-05-26 0.05
## 5489 4 0 NA
## 5490 30 1 2014-10-08 0.02
## 5491 2 3 2017-09-04 0.12
## 5492 1 0 NA
## 5493 3 3 2017-12-01 0.07
## 5494 3 1 2018-05-26 0.07
## 5495 1 0 NA
## 5496 2 30 2019-05-26 0.52
## 5497 5 0 NA
## 5498 2 110 2019-06-27 1.86
## 5499 3 7 2015-04-07 0.13
## 5500 90 31 2015-12-03 0.53
## 5501 2 0 NA
## 5502 2 171 2019-06-16 2.93
## 5503 1 6 2019-06-13 0.10
## 5504 1 27 2016-09-17 0.46
## 5505 4 1 2018-07-19 0.08
## 5506 1 65 2019-07-05 1.12
## 5507 30 2 2015-10-30 0.04
## 5508 30 11 2019-05-09 0.19
## 5509 2 11 2019-05-20 0.19
## 5510 2 259 2019-06-30 4.43
## 5511 30 23 2018-06-24 0.40
## 5512 2 209 2019-06-19 3.62
## 5513 6 24 2018-10-10 0.41
## 5514 3 8 2015-10-19 0.14
## 5515 2 2 2015-12-01 0.04
## 5516 4 16 2017-03-17 0.27
## 5517 2 4 2015-10-29 0.07
## 5518 1 0 NA
## 5519 1 30 2018-04-30 0.52
## 5520 4 3 2014-10-22 0.05
## 5521 3 122 2019-06-10 2.14
## 5522 2 46 2017-06-23 1.15
## 5523 1 1 2014-09-25 0.02
## 5524 2 5 2019-07-07 5.00
## 5525 1 0 NA
## 5526 2 22 2018-01-02 0.43
## 5527 3 135 2019-06-16 2.31
## 5528 4 111 2019-06-07 1.90
## 5529 1 163 2019-05-14 2.76
## 5530 1 1 2016-01-05 0.02
## 5531 5 22 2018-10-14 0.38
## 5532 2 18 2019-06-24 0.31
## 5533 2 10 2017-10-01 0.20
## 5534 1 1 2014-09-21 0.02
## 5535 2 1 2015-06-05 0.02
## 5536 2 135 2019-07-03 2.32
## 5537 1 8 2015-05-21 0.14
## 5538 5 91 2019-06-17 1.63
## 5539 2 133 2019-06-23 2.26
## 5540 1 0 NA
## 5541 2 21 2017-11-02 0.36
## 5542 1 108 2019-06-28 1.84
## 5543 14 0 NA
## 5544 2 122 2019-07-02 2.15
## 5545 5 18 2019-06-26 2.57
## 5546 2 49 2018-12-31 0.92
## 5547 2 130 2019-06-23 2.23
## 5548 6 144 2019-06-18 2.50
## 5549 30 0 NA
## 5550 3 9 2016-04-05 0.16
## 5551 1 15 2019-02-16 0.26
## 5552 2 25 2019-05-30 0.53
## 5553 5 1 2014-09-14 0.02
## 5554 30 1 2017-05-12 0.04
## 5555 2 58 2019-06-01 0.99
## 5556 3 51 2019-04-29 0.88
## 5557 4 3 2018-12-06 0.05
## 5558 1 0 NA
## 5559 14 5 2017-05-26 0.14
## 5560 4 7 2016-04-02 0.12
## 5561 4 3 2017-07-30 0.12
## 5562 1 49 2019-06-19 1.40
## 5563 4 22 2019-06-04 0.38
## 5564 2 0 NA
## 5565 2 114 2019-07-07 1.94
## 5566 2 24 2018-12-30 0.42
## 5567 1 33 2015-12-28 0.56
## 5568 2 125 2019-06-16 2.14
## 5569 1 151 2019-01-19 2.58
## 5570 2 50 2019-06-25 1.35
## 5571 2 52 2019-05-22 2.21
## 5572 4 1 2016-06-02 0.03
## 5573 4 143 2019-06-24 2.62
## 5574 2 14 2016-11-29 0.24
## 5575 60 6 2019-06-30 0.11
## 5576 2 26 2019-06-20 0.45
## 5577 2 31 2019-06-02 0.54
## 5578 2 24 2019-05-31 0.41
## 5579 3 8 2019-05-27 0.15
## 5580 18 0 NA
## 5581 1 2 2015-08-16 0.04
## 5582 30 45 2016-10-05 0.82
## 5583 3 24 2019-06-28 0.41
## 5584 1 1 2015-06-07 0.02
## 5585 1 14 2019-04-11 0.41
## 5586 1 3 2015-11-10 0.05
## 5587 1 151 2019-05-09 2.59
## 5588 3 0 NA
## 5589 2 167 2019-06-23 3.17
## 5590 5 61 2019-04-21 1.06
## 5591 1 51 2019-06-09 0.88
## 5592 21 5 2017-10-31 0.10
## 5593 3 132 2019-06-21 2.53
## 5594 1 170 2019-06-30 2.96
## 5595 1 0 NA
## 5596 1 239 2019-06-29 4.13
## 5597 3 64 2018-06-08 1.13
## 5598 7 34 2017-10-23 0.58
## 5599 2 102 2019-06-30 4.27
## 5600 2 150 2019-07-05 2.57
## 5601 2 2 2016-08-26 0.06
## 5602 3 71 2019-06-11 1.21
## 5603 4 32 2019-06-09 0.56
## 5604 10 12 2016-10-16 0.20
## 5605 3 2 2017-12-30 0.05
## 5606 2 66 2019-01-02 1.13
## 5607 2 2 2014-10-12 0.03
## 5608 3 2 2015-10-04 0.03
## 5609 1 167 2019-06-20 2.86
## 5610 7 9 2019-04-23 0.18
## 5611 2 185 2019-06-17 3.76
## 5612 1 279 2019-06-16 5.02
## 5613 2 37 2019-06-16 0.73
## 5614 14 18 2019-04-27 0.34
## 5615 4 8 2017-08-02 0.15
## 5616 1 1 2015-05-24 0.02
## 5617 3 9 2018-12-21 0.16
## 5618 30 44 2019-06-10 0.76
## 5619 3 146 2019-05-24 2.51
## 5620 3 16 2019-06-15 0.31
## 5621 2 11 2019-06-22 0.20
## 5622 3 120 2019-06-19 2.29
## 5623 5 13 2016-09-20 0.22
## 5624 5 14 2017-12-27 0.28
## 5625 2 105 2019-06-25 1.80
## 5626 2 41 2019-01-01 0.74
## 5627 1 0 NA
## 5628 1 8 2015-01-15 0.14
## 5629 3 1 2019-07-01 1.00
## 5630 2 0 NA
## 5631 2 91 2019-06-09 1.56
## 5632 4 2 2015-12-31 0.05
## 5633 3 56 2019-06-30 0.96
## 5634 2 29 2019-05-05 0.50
## 5635 3 93 2019-06-21 1.82
## 5636 29 10 2018-12-01 0.36
## 5637 4 18 2019-07-01 0.42
## 5638 1 36 2019-06-21 2.69
## 5639 1 139 2019-06-27 3.64
## 5640 1 12 2018-03-30 0.32
## 5641 28 191 2019-05-15 3.36
## 5642 2 47 2019-07-07 0.81
## 5643 2 45 2019-06-22 0.77
## 5644 3 87 2019-06-26 1.53
## 5645 1 0 NA
## 5646 2 8 2018-12-09 0.97
## 5647 5 4 2016-09-11 0.07
## 5648 4 33 2018-05-18 0.65
## 5649 10 30 2017-06-22 0.52
## 5650 4 109 2019-07-04 1.88
## 5651 6 1 2018-01-01 0.05
## 5652 1 113 2019-06-21 3.99
## 5653 1 11 2016-11-05 0.19
## 5654 5 1 2014-10-19 0.02
## 5655 1 2 2015-06-07 0.04
## 5656 30 6 2019-05-22 0.12
## 5657 1 10 2016-08-17 0.21
## 5658 2 12 2018-01-01 0.21
## 5659 3 13 2015-10-19 0.22
## 5660 7 37 2019-02-11 0.65
## 5661 5 14 2016-11-01 0.29
## 5662 1 2 2015-12-01 0.04
## 5663 2 191 2019-06-23 3.27
## 5664 2 8 2019-06-07 0.43
## 5665 2 2 2014-10-18 0.03
## 5666 3 6 2016-06-05 0.13
## 5667 14 78 2019-03-10 1.36
## 5668 3 8 2016-07-25 0.14
## 5669 2 37 2019-06-16 0.64
## 5670 2 21 2019-05-21 0.36
## 5671 2 22 2019-03-06 0.38
## 5672 2 38 2019-03-16 0.66
## 5673 2 61 2019-05-09 1.05
## 5674 3 12 2018-09-21 0.21
## 5675 2 11 2018-01-01 0.19
## 5676 2 114 2019-04-07 1.96
## 5677 3 131 2019-06-29 3.24
## 5678 1 5 2015-07-10 0.09
## 5679 1 5 2017-08-26 0.11
## 5680 3 86 2019-01-15 1.48
## 5681 2 82 2018-02-01 1.53
## 5682 30 35 2019-06-26 0.61
## 5683 1 6 2015-12-27 0.10
## 5684 1 202 2019-07-01 3.74
## 5685 1 1 2014-09-23 0.02
## 5686 2 10 2019-04-21 0.47
## 5687 7 2 2016-01-07 0.03
## 5688 3 56 2019-05-28 0.99
## 5689 2 7 2016-05-03 0.12
## 5690 2 204 2019-06-30 3.51
## 5691 1 0 NA
## 5692 4 20 2019-05-25 0.35
## 5693 1 0 NA
## 5694 3 23 2018-08-31 0.40
## 5695 2 0 NA
## 5696 3 33 2019-06-15 0.57
## 5697 23 12 2018-08-04 0.22
## 5698 12 24 2017-06-19 0.41
## 5699 2 232 2019-06-23 4.01
## 5700 3 47 2019-03-31 0.84
## 5701 2 174 2019-07-03 3.00
## 5702 30 4 2017-02-01 0.08
## 5703 1 394 2019-06-30 6.79
## 5704 30 5 2017-08-02 0.10
## 5705 2 9 2017-09-22 0.15
## 5706 2 11 2019-06-02 0.22
## 5707 1 50 2019-07-06 0.87
## 5708 6 1 2014-11-28 0.02
## 5709 4 87 2019-06-13 2.01
## 5710 30 4 2017-08-05 0.07
## 5711 5 125 2019-06-27 2.15
## 5712 4 43 2019-06-27 0.77
## 5713 3 37 2019-07-01 0.86
## 5714 1 81 2019-06-29 1.39
## 5715 4 7 2017-05-11 0.12
## 5716 15 1 2014-11-03 0.02
## 5717 2 1 2016-10-22 0.03
## 5718 3 19 2019-07-06 0.33
## 5719 1 0 NA
## 5720 9 5 2016-08-15 0.09
## 5721 3 5 2016-05-19 0.10
## 5722 3 131 2019-06-22 2.27
## 5723 3 17 2019-06-30 0.31
## 5724 1 32 2015-11-10 0.55
## 5725 1 357 2019-06-22 6.19
## 5726 3 10 2019-07-01 0.27
## 5727 1 3 2016-01-02 0.05
## 5728 2 86 2019-06-11 1.49
## 5729 5 92 2019-07-06 1.58
## 5730 2 1 2017-07-03 0.04
## 5731 7 69 2018-12-07 1.79
## 5732 3 5 2016-07-02 0.09
## 5733 3 3 2015-05-05 0.05
## 5734 15 1 2016-04-15 0.03
## 5735 21 38 2018-09-30 0.76
## 5736 5 108 2019-06-28 2.14
## 5737 3 105 2019-06-30 1.82
## 5738 30 0 NA
## 5739 60 9 2019-03-27 0.16
## 5740 30 0 NA
## 5741 3 82 2019-07-07 1.78
## 5742 1 12 2019-06-02 0.21
## 5743 3 11 2019-04-08 0.34
## 5744 7 20 2016-01-21 0.35
## 5745 30 131 2019-01-07 2.29
## 5746 3 34 2019-05-23 1.00
## 5747 2 160 2019-06-27 2.76
## 5748 2 1 2015-05-09 0.02
## 5749 30 15 2016-02-21 0.26
## 5750 2 148 2019-06-16 2.56
## 5751 1 229 2019-06-24 3.94
## 5752 4 0 NA
## 5753 1 0 NA
## 5754 1 1 2014-10-27 0.02
## 5755 1 360 2019-07-07 6.22
## 5756 3 15 2018-01-02 0.27
## 5757 3 10 2018-12-30 0.17
## 5758 2 76 2019-06-24 1.31
## 5759 2 0 NA
## 5760 4 179 2019-06-17 3.14
## 5761 3 0 NA
## 5762 7 7 2016-07-31 0.12
## 5763 2 0 NA
## 5764 2 128 2019-04-24 2.23
## 5765 7 3 2015-01-03 0.05
## 5766 1 0 NA
## 5767 1 223 2019-06-20 3.91
## 5768 1250 2 2014-11-09 0.03
## 5769 2 0 NA
## 5770 1 10 2016-04-19 0.17
## 5771 5 6 2015-12-27 0.11
## 5772 7 35 2019-05-30 0.61
## 5773 1 4 2015-05-03 0.07
## 5774 5 102 2019-07-06 1.88
## 5775 7 11 2018-07-31 0.20
## 5776 1 1 2015-01-01 0.02
## 5777 3 3 2015-01-01 0.05
## 5778 1 127 2019-06-20 2.25
## 5779 1 88 2019-05-19 1.53
## 5780 2 3 2015-01-04 0.05
## 5781 2 0 NA
## 5782 1 0 NA
## 5783 2 4 2015-11-16 0.07
## 5784 3 95 2019-06-26 1.65
## 5785 7 1 2018-08-12 0.09
## 5786 2 157 2019-07-05 2.73
## 5787 2 222 2019-07-04 3.92
## 5788 2 11 2016-10-03 0.19
## 5789 4 26 2019-06-24 0.45
## 5790 1 350 2019-06-24 6.05
## 5791 2 19 2019-05-27 0.44
## 5792 1 202 2019-06-19 3.53
## 5793 1 10 2018-08-22 0.18
## 5794 2 116 2019-07-03 2.02
## 5795 1 196 2019-07-07 3.44
## 5796 2 7 2018-08-13 0.13
## 5797 1 319 2019-06-25 5.60
## 5798 2 3 2016-05-24 0.05
## 5799 5 16 2018-12-06 0.28
## 5800 1 0 NA
## 5801 2 11 2019-06-02 0.81
## 5802 3 121 2019-06-10 2.19
## 5803 2 76 2019-07-01 1.33
## 5804 4 73 2018-01-03 1.27
## 5805 3 124 2019-06-26 2.20
## 5806 10 7 2019-03-05 0.14
## 5807 1 0 NA
## 5808 1 1 2015-11-01 0.02
## 5809 4 17 2019-06-08 0.30
## 5810 1 0 NA
## 5811 7 9 2019-06-28 0.16
## 5812 30 4 2018-08-27 0.07
## 5813 3 1 2016-07-07 0.03
## 5814 1 0 NA
## 5815 3 0 NA
## 5816 2 129 2019-06-16 2.24
## 5817 1 352 2019-06-16 6.10
## 5818 2 92 2019-07-04 1.59
## 5819 1 0 NA
## 5820 2 0 NA
## 5821 1 110 2019-06-23 1.96
## 5822 1 1 2015-07-10 0.02
## 5823 1 52 2019-05-27 1.12
## 5824 1 1 2015-06-05 0.02
## 5825 4 1 2014-12-27 0.02
## 5826 2 5 2015-11-27 0.11
## 5827 1 198 2019-06-21 3.47
## 5828 7 23 2019-06-01 0.55
## 5829 4 120 2019-06-10 2.09
## 5830 1 0 NA
## 5831 2 105 2019-05-04 1.88
## 5832 6 5 2016-04-21 0.09
## 5833 1 46 2019-07-05 1.33
## 5834 3 0 NA
## 5835 3 11 2019-07-02 0.24
## 5836 6 27 2019-05-02 0.47
## 5837 4 82 2019-05-22 1.53
## 5838 2 82 2019-06-05 1.43
## 5839 3 2 2015-01-03 0.03
## 5840 1 0 NA
## 5841 30 2 2014-10-11 0.03
## 5842 1 0 NA
## 5843 3 15 2019-04-22 0.26
## 5844 10 36 2019-06-25 0.63
## 5845 2 25 2016-10-09 0.43
## 5846 31 5 2018-01-26 0.10
## 5847 30 13 2018-09-09 0.26
## 5848 2 13 2019-07-01 0.37
## 5849 1 2 2015-06-10 0.03
## 5850 3 140 2019-07-06 2.45
## 5851 2 112 2018-06-18 1.94
## 5852 3 3 2019-01-07 0.05
## 5853 2 7 2016-08-16 0.13
## 5854 3 126 2019-07-01 2.92
## 5855 1 121 2019-06-22 2.68
## 5856 4 57 2016-11-28 1.08
## 5857 2 1 2016-05-17 0.03
## 5858 2 37 2019-05-28 0.73
## 5859 2 23 2017-04-12 0.40
## 5860 3 162 2019-06-15 2.84
## 5861 15 0 NA
## 5862 3 38 2019-06-09 0.72
## 5863 3 18 2018-01-03 0.31
## 5864 1 64 2019-07-07 1.32
## 5865 4 91 2018-12-29 3.64
## 5866 2 57 2019-06-24 0.99
## 5867 2 32 2019-06-13 0.56
## 5868 30 13 2019-01-17 0.23
## 5869 1 7 2019-07-01 0.14
## 5870 3 23 2019-05-27 0.41
## 5871 2 77 2019-06-09 1.50
## 5872 1 2 2014-11-09 0.03
## 5873 2 122 2019-07-01 2.15
## 5874 2 100 2019-06-27 1.73
## 5875 3 2 2016-06-22 0.04
## 5876 1 26 2016-07-31 0.45
## 5877 1 351 2019-06-24 6.09
## 5878 7 9 2019-01-05 0.16
## 5879 2 79 2019-06-06 1.38
## 5880 1 0 NA
## 5881 1 16 2019-04-06 0.28
## 5882 4 8 2018-12-14 0.19
## 5883 1 43 2019-07-01 0.75
## 5884 2 51 2019-07-01 0.89
## 5885 3 62 2019-05-28 1.10
## 5886 3 1 2014-11-14 0.02
## 5887 2 42 2019-05-09 0.74
## 5888 1 0 NA
## 5889 1 74 2019-06-09 1.34
## 5890 1 43 2019-05-05 0.84
## 5891 1 1 2014-10-26 0.02
## 5892 1 1 2015-01-03 0.02
## 5893 1 7 2016-12-08 0.20
## 5894 2 45 2019-05-22 0.79
## 5895 30 1 2015-03-27 0.02
## 5896 1 5 2018-07-27 0.27
## 5897 4 25 2019-06-17 0.44
## 5898 1 107 2019-06-27 1.91
## 5899 2 63 2019-06-24 1.15
## 5900 3 11 2019-07-07 2.75
## 5901 2 194 2019-07-06 3.37
## 5902 8 33 2019-06-22 0.58
## 5903 1 33 2019-06-06 1.98
## 5904 30 44 2019-05-19 0.78
## 5905 1 34 2019-03-10 0.60
## 5906 2 88 2019-06-22 1.53
## 5907 1 186 2019-06-30 3.28
## 5908 2 46 2019-06-03 0.90
## 5909 2 58 2019-06-11 1.02
## 5910 364 8 2019-01-07 0.17
## 5911 7 15 2019-04-13 0.26
## 5912 3 149 2019-06-24 2.61
## 5913 31 8 2018-10-29 0.17
## 5914 3 64 2019-06-30 1.26
## 5915 3 43 2019-05-26 0.75
## 5916 10 2 2018-11-02 0.10
## 5917 7 6 2019-07-02 0.13
## 5918 1 20 2019-05-22 0.36
## 5919 2 36 2018-06-30 0.79
## 5920 1 0 NA
## 5921 2 56 2019-06-28 0.98
## 5922 6 20 2018-01-01 0.36
## 5923 3 13 2018-06-23 0.23
## 5924 10 2 2016-11-17 0.04
## 5925 1 23 2019-07-03 0.57
## 5926 3 118 2019-06-23 2.07
## 5927 5 1 2015-01-02 0.02
## 5928 30 6 2018-10-04 0.12
## 5929 2 9 2017-01-04 0.16
## 5930 1 10 2019-01-26 0.18
## 5931 1 84 2019-07-01 1.46
## 5932 6 2 2015-11-28 0.04
## 5933 3 2 2019-05-23 0.05
## 5934 90 91 2016-10-04 1.59
## 5935 30 5 2018-03-24 0.09
## 5936 3 62 2019-06-24 1.19
## 5937 3 21 2017-11-22 0.61
## 5938 2 17 2018-08-27 0.49
## 5939 4 14 2016-07-06 0.25
## 5940 7 3 2019-07-06 0.22
## 5941 1 153 2019-06-14 2.66
## 5942 6 12 2019-01-03 0.47
## 5943 7 0 NA
## 5944 1 33 2017-10-30 0.59
## 5945 5 26 2019-05-06 1.16
## 5946 5 0 NA
## 5947 3 1 2015-10-21 0.02
## 5948 4 1 2015-11-27 0.02
## 5949 14 9 2017-11-24 0.16
## 5950 3 8 2018-12-30 0.14
## 5951 26 47 2019-02-04 0.82
## 5952 2 112 2019-06-16 1.96
## 5953 5 0 NA
## 5954 5 21 2019-03-24 1.01
## 5955 1 0 NA
## 5956 3 85 2019-06-15 1.88
## 5957 2 20 2019-07-05 1.60
## 5958 2 37 2016-05-09 0.65
## 5959 3 122 2019-06-19 2.21
## 5960 2 14 2019-04-20 0.55
## 5961 2 7 2018-12-19 0.31
## 5962 2 10 2016-05-10 0.18
## 5963 2 83 2019-04-29 1.48
## 5964 3 5 2018-10-09 0.13
## 5965 14 5 2018-05-13 0.09
## 5966 4 0 NA
## 5967 1 141 2019-06-22 3.05
## 5968 14 14 2015-10-25 0.24
## 5969 2 9 2015-10-18 0.16
## 5970 2 192 2019-07-02 3.35
## 5971 4 10 2019-01-01 0.20
## 5972 5 7 2019-02-18 0.12
## 5973 3 50 2018-10-28 0.97
## 5974 2 4 2017-01-04 0.12
## 5975 3 5 2016-03-29 0.09
## 5976 7 5 2016-01-02 0.09
## 5977 5 1 2014-11-10 0.02
## 5978 5 0 NA
## 5979 3 6 2019-06-18 0.96
## 5980 4 180 2019-06-18 3.22
## 5981 2 63 2019-06-17 1.68
## 5982 3 207 2019-06-22 3.76
## 5983 6 1 2014-11-02 0.02
## 5984 8 1 2015-01-05 0.02
## 5985 2 1 2016-06-17 0.03
## 5986 2 12 2016-12-19 0.21
## 5987 2 88 2019-06-30 4.66
## 5988 2 1 2016-06-29 0.03
## 5989 1 1 2014-11-04 0.02
## 5990 3 0 NA
## 5991 3 12 2019-06-10 0.21
## 5992 2 178 2019-07-01 3.11
## 5993 21 1 2014-11-15 0.02
## 5994 2 1 2019-06-23 1.00
## 5995 3 87 2019-06-19 1.63
## 5996 2 9 2015-09-06 0.16
## 5997 2 3 2016-07-09 0.07
## 5998 1 0 NA
## 5999 30 4 2018-08-12 0.09
## 6000 1 4 2019-05-26 1.85
## 6001 1 10 2016-09-23 0.19
## 6002 30 7 2017-03-08 0.13
## 6003 1 1 2015-08-10 0.02
## 6004 2 2 2015-01-02 0.04
## 6005 1 13 2016-12-01 0.23
## 6006 1 7 2016-10-03 0.13
## 6007 4 79 2019-06-30 1.38
## 6008 1 158 2019-06-24 2.77
## 6009 4 56 2019-06-01 0.98
## 6010 4 60 2019-06-22 1.12
## 6011 1 4 2019-03-25 0.11
## 6012 2 195 2019-06-24 3.41
## 6013 4 4 2015-09-26 0.07
## 6014 3 82 2019-06-23 1.55
## 6015 3 3 2018-08-28 0.05
## 6016 1 1 2016-03-16 0.02
## 6017 3 45 2019-06-15 0.88
## 6018 6 0 NA
## 6019 2 53 2019-06-17 1.23
## 6020 7 0 NA
## 6021 4 68 2019-06-25 1.20
## 6022 4 12 2019-06-10 0.37
## 6023 3 83 2019-06-02 1.57
## 6024 2 42 2019-06-21 0.74
## 6025 1 102 2019-06-16 1.85
## 6026 2 4 2016-08-24 0.09
## 6027 1 50 2019-06-02 0.92
## 6028 3 56 2019-05-27 1.10
## 6029 1 22 2018-02-10 0.63
## 6030 3 7 2018-07-16 0.12
## 6031 1 8 2016-08-20 0.17
## 6032 7 1 2015-01-02 0.02
## 6033 14 1 2016-08-17 0.03
## 6034 5 0 NA
## 6035 1 0 NA
## 6036 3 7 2016-01-06 0.12
## 6037 3 0 NA
## 6038 2 114 2019-06-24 2.00
## 6039 1 8 2016-04-12 0.16
## 6040 2 22 2019-05-21 0.50
## 6041 30 4 2018-05-15 0.07
## 6042 30 8 2018-09-05 0.14
## 6043 1 323 2019-06-22 5.81
## 6044 30 20 2019-06-01 0.36
## 6045 3 19 2018-12-25 0.33
## 6046 4 21 2019-01-03 0.37
## 6047 6 5 2016-01-01 0.09
## 6048 1 75 2019-06-19 1.52
## 6049 4 7 2018-08-29 0.12
## 6050 2 19 2019-07-06 1.82
## 6051 7 0 NA
## 6052 2 0 NA
## 6053 2 5 2019-01-03 0.09
## 6054 2 192 2019-06-17 3.47
## 6055 5 3 2015-08-03 0.05
## 6056 2 126 2019-06-29 2.61
## 6057 2 36 2018-11-06 0.78
## 6058 3 0 NA
## 6059 1 0 NA
## 6060 7 21 2019-06-10 0.54
## 6061 1 102 2019-06-16 1.79
## 6062 3 28 2019-04-22 0.50
## 6063 2 6 2019-01-02 0.12
## 6064 2 19 2016-09-08 0.34
## 6065 2 9 2017-11-19 0.19
## 6066 4 0 NA
## 6067 6 10 2019-07-01 0.61
## 6068 2 179 2019-06-16 3.14
## 6069 5 38 2019-06-03 0.75
## 6070 1 14 2018-11-05 0.28
## 6071 3 4 2016-06-04 0.08
## 6072 30 21 2019-03-11 0.38
## 6073 30 4 2015-10-06 0.07
## 6074 2 11 2018-09-04 0.20
## 6075 3 6 2016-07-08 0.11
## 6076 1 0 NA
## 6077 2 9 2018-05-19 0.16
## 6078 1 0 NA
## 6079 30 5 2018-08-12 0.09
## 6080 1 26 2019-06-25 0.47
## 6081 30 18 2019-06-02 0.48
## 6082 7 0 NA
## 6083 2 1 2018-10-07 0.11
## 6084 30 11 2019-03-04 0.20
## 6085 1 8 2015-10-18 0.14
## 6086 2 103 2019-06-20 1.87
## 6087 2 84 2019-06-18 1.51
## 6088 2 0 NA
## 6089 5 9 2015-12-31 0.16
## 6090 2 150 2019-06-28 3.19
## 6091 3 189 2019-07-01 3.40
## 6092 3 4 2016-06-12 0.09
## 6093 3 20 2019-06-30 0.43
## 6094 1 7 2017-01-01 0.12
## 6095 1 4 2016-02-29 0.07
## 6096 3 48 2019-06-17 0.94
## 6097 3 66 2018-04-15 1.24
## 6098 2 97 2019-06-12 1.81
## 6099 3 2 2015-12-08 0.05
## 6100 1 0 NA
## 6101 2 9 2015-05-19 0.16
## 6102 3 35 2018-10-28 0.62
## 6103 7 95 2019-06-29 1.70
## 6104 2 108 2019-06-01 1.93
## 6105 4 143 2019-06-23 2.56
## 6106 4 0 NA
## 6107 1 0 NA
## 6108 6 186 2019-07-05 3.27
## 6109 30 6 2019-05-28 0.17
## 6110 1 136 2019-07-05 2.94
## 6111 2 146 2019-06-22 2.60
## 6112 2 219 2019-06-28 3.88
## 6113 4 0 NA
## 6114 3 28 2019-05-19 0.50
## 6115 1 1 2015-01-04 0.02
## 6116 2 0 NA
## 6117 30 159 2019-06-12 2.83
## 6118 2 23 2016-10-24 0.41
## 6119 3 24 2019-06-19 0.44
## 6120 4 44 2019-07-01 0.81
## 6121 3 15 2019-07-02 0.27
## 6122 3 4 2017-01-06 0.08
## 6123 14 1 2015-01-04 0.02
## 6124 2 0 NA
## 6125 2 6 2017-07-29 0.12
## 6126 2 11 2019-01-10 0.19
## 6127 30 2 2015-04-28 0.04
## 6128 3 211 2019-07-05 3.72
## 6129 1 4 2015-09-16 0.08
## 6130 2 15 2018-03-23 0.29
## 6131 1 0 NA
## 6132 1 2 2015-08-03 0.04
## 6133 3 2 2016-09-21 0.05
## 6134 2 190 2019-07-04 4.15
## 6135 1 0 NA
## 6136 2 19 2019-05-20 0.35
## 6137 1 2 2015-01-06 0.04
## 6138 3 3 2016-01-05 0.05
## 6139 5 2 2016-01-01 0.04
## 6140 1 0 NA
## 6141 8 14 2016-03-24 0.25
## 6142 30 1 2018-12-24 0.15
## 6143 5 0 NA
## 6144 30 2 2017-06-27 0.04
## 6145 2 11 2015-10-11 0.19
## 6146 2 0 NA
## 6147 1 17 2018-08-27 0.31
## 6148 5 91 2019-06-21 1.65
## 6149 2 17 2019-05-27 0.37
## 6150 30 17 2018-06-15 0.31
## 6151 2 1 2016-01-01 0.02
## 6152 3 0 NA
## 6153 1 9 2016-05-06 0.20
## 6154 7 6 2018-08-19 0.11
## 6155 3 64 2017-07-24 1.15
## 6156 1 0 NA
## 6157 2 20 2019-01-02 0.45
## 6158 4 58 2019-05-29 1.38
## 6159 28 27 2019-05-28 0.53
## 6160 2 2 2015-11-15 0.04
## 6161 5 0 NA
## 6162 2 21 2018-05-02 0.41
## 6163 14 0 NA
## 6164 1 22 2017-01-03 0.47
## 6165 30 7 2019-06-14 0.15
## 6166 30 9 2018-08-11 0.17
## 6167 2 6 2016-03-27 0.13
## 6168 3 35 2019-07-01 0.63
## 6169 1 1 2019-05-23 0.64
## 6170 3 3 2016-07-14 0.05
## 6171 30 1 2016-07-30 0.03
## 6172 2 0 NA
## 6173 1 4 2019-05-28 0.34
## 6174 5 81 2019-06-07 1.47
## 6175 5 89 2019-05-22 1.65
## 6176 2 146 2019-06-10 2.59
## 6177 2 84 2019-05-28 1.51
## 6178 74 7 2018-08-31 0.14
## 6179 1 3 2016-01-02 0.05
## 6180 7 0 NA
## 6181 3 66 2019-06-15 1.27
## 6182 1 0 NA
## 6183 3 18 2018-10-29 0.35
## 6184 2 109 2019-06-21 2.15
## 6185 1 0 NA
## 6186 1 0 NA
## 6187 3 0 NA
## 6188 1 2 2016-05-28 0.05
## 6189 1 105 2019-06-21 2.11
## 6190 3 7 2016-06-27 0.12
## 6191 180 7 2018-12-16 0.14
## 6192 2 0 NA
## 6193 1 0 NA
## 6194 3 15 2018-05-12 0.27
## 6195 1 170 2019-06-20 5.90
## 6196 1 150 2019-06-28 2.68
## 6197 2 4 2018-04-11 0.07
## 6198 3 4 2016-06-11 0.07
## 6199 7 53 2019-06-25 0.94
## 6200 3 0 NA
## 6201 31 2 2017-09-29 0.04
## 6202 1 2 2015-01-01 0.04
## 6203 1 21 2018-01-01 0.38
## 6204 1 130 2019-06-21 2.32
## 6205 2 23 2018-10-28 0.41
## 6206 2 18 2019-05-27 0.38
## 6207 1 0 NA
## 6208 3 18 2017-08-26 0.33
## 6209 4 6 2019-01-02 0.12
## 6210 2 0 NA
## 6211 1 0 NA
## 6212 30 23 2019-05-01 0.44
## 6213 2 12 2016-11-23 0.25
## 6214 3 28 2019-05-23 0.50
## 6215 1 22 2019-07-02 0.96
## 6216 2 24 2019-06-30 0.44
## 6217 5 1 2014-12-31 0.02
## 6218 1 0 NA
## 6219 3 33 2019-07-01 0.62
## 6220 4 3 2016-08-29 0.07
## 6221 3 3 2015-10-22 0.05
## 6222 2 54 2019-06-26 1.40
## 6223 2 3 2018-07-10 0.05
## 6224 4 0 NA
## 6225 3 74 2019-05-27 1.33
## 6226 1 0 NA
## 6227 1 356 2019-06-23 6.31
## 6228 28 50 2019-05-05 0.89
## 6229 1 426 2019-06-17 7.53
## 6230 1 77 2019-06-11 1.40
## 6231 2 37 2019-05-19 0.67
## 6232 1 210 2019-07-02 3.80
## 6233 1 194 2019-07-05 3.81
## 6234 5 1 2016-05-17 0.03
## 6235 6 3 2017-08-27 0.06
## 6236 2 0 NA
## 6237 25 14 2018-07-31 0.27
## 6238 7 15 2019-06-11 0.27
## 6239 1 0 NA
## 6240 5 27 2019-06-05 0.50
## 6241 7 7 2019-06-21 0.15
## 6242 7 0 NA
## 6243 1 186 2019-07-07 3.33
## 6244 6 39 2019-06-01 1.57
## 6245 21 193 2017-10-27 3.42
## 6246 4 91 2019-06-01 1.86
## 6247 2 81 2018-06-27 1.59
## 6248 3 0 NA
## 6249 3 0 NA
## calculated_host_listings_count availability_365
## 1 6 365
## 2 2 355
## 3 1 365
## 4 1 194
## 5 1 0
## 6 1 129
## 7 1 0
## 8 1 220
## 9 1 0
## 10 4 188
## 11 1 6
## 12 1 39
## 13 3 314
## 14 1 333
## 15 1 0
## 16 1 46
## 17 1 321
## 18 1 12
## 19 1 21
## 20 2 249
## 21 1 0
## 22 6 347
## 23 6 364
## 24 6 304
## 25 2 233
## 26 2 85
## 27 1 0
## 28 1 75
## 29 3 311
## 30 1 67
## 31 3 355
## 32 1 255
## 33 3 284
## 34 3 359
## 35 2 269
## 36 3 340
## 37 1 365
## 38 2 22
## 39 1 365
## 40 4 188
## 41 2 96
## 42 1 345
## 43 1 311
## 44 1 273
## 45 1 309
## 46 1 95
## 47 1 215
## 48 1 265
## 49 1 0
## 50 2 192
## 51 3 251
## 52 1 302
## 53 1 140
## 54 1 234
## 55 1 257
## 56 1 30
## 57 1 301
## 58 2 294
## 59 3 320
## 60 1 154
## 61 1 263
## 62 1 180
## 63 2 231
## 64 2 297
## 65 2 292
## 66 1 191
## 67 1 0
## 68 2 72
## 69 1 362
## 70 2 336
## 71 1 215
## 72 1 116
## 73 1 88
## 74 2 336
## 75 1 304
## 76 1 224
## 77 1 322
## 78 1 324
## 79 1 132
## 80 1 295
## 81 4 238
## 82 1 209
## 83 1 328
## 84 1 38
## 85 1 188
## 86 1 7
## 87 1 272
## 88 1 26
## 89 1 0
## 90 4 288
## 91 1 317
## 92 1 207
## 93 6 185
## 94 1 158
## 95 1 0
## 96 2 9
## 97 1 198
## 98 1 365
## 99 2 364
## 100 2 311
## 101 3 219
## 102 3 342
## 103 1 312
## 104 2 243
## 105 1 152
## 106 1 9
## 107 2 137
## 108 1 222
## 109 1 346
## 110 1 208
## 111 2 279
## 112 6 250
## 113 1 164
## 114 2 192
## 115 4 298
## 116 1 260
## 117 1 107
## 118 1 199
## 119 4 299
## 120 3 20
## 121 1 318
## 122 2 216
## 123 1 224
## 124 1 0
## 125 1 324
## 126 1 245
## 127 1 189
## 128 1 307
## 129 2 310
## 130 3 213
## 131 1 278
## 132 1 209
## 133 1 0
## 134 1 16
## 135 3 234
## 136 1 12
## 137 1 178
## 138 3 275
## 139 2 163
## 140 3 365
## 141 1 34
## 142 1 280
## 143 1 0
## 144 1 1
## 145 2 170
## 146 1 188
## 147 1 214
## 148 1 248
## 149 4 262
## 150 5 280
## 151 1 307
## 152 1 339
## 153 1 1
## 154 1 269
## 155 1 10
## 156 1 312
## 157 1 189
## 158 2 290
## 159 1 230
## 160 2 164
## 161 2 53
## 162 1 126
## 163 2 3
## 164 1 189
## 165 1 365
## 166 1 0
## 167 1 0
## 168 3 336
## 169 3 342
## 170 1 312
## 171 1 37
## 172 3 353
## 173 1 177
## 174 4 310
## 175 1 0
## 176 2 321
## 177 1 246
## 178 3 231
## 179 1 225
## 180 1 0
## 181 2 0
## 182 5 365
## 183 2 233
## 184 1 1
## 185 1 18
## 186 4 343
## 187 3 250
## 188 1 326
## 189 1 364
## 190 1 0
## 191 1 299
## 192 1 207
## 193 3 162
## 194 2 0
## 195 1 7
## 196 1 328
## 197 2 365
## 198 1 0
## 199 1 0
## 200 5 240
## 201 5 365
## 202 5 365
## 203 2 164
## 204 1 363
## 205 1 365
## 206 3 250
## 207 5 247
## 208 3 323
## 209 1 192
## 210 1 125
## 211 1 91
## 212 1 75
## 213 1 286
## 214 2 60
## 215 1 0
## 216 1 192
## 217 1 58
## 218 5 245
## 219 1 292
## 220 1 279
## 221 1 0
## 222 1 3
## 223 1 351
## 224 1 201
## 225 2 232
## 226 2 258
## 227 1 272
## 228 1 341
## 229 1 244
## 230 5 365
## 231 1 12
## 232 2 265
## 233 1 0
## 234 1 329
## 235 1 91
## 236 2 365
## 237 5 253
## 238 1 365
## 239 1 320
## 240 1 0
## 241 3 192
## 242 1 0
## 243 1 348
## 244 2 0
## 245 2 353
## 246 1 140
## 247 1 2
## 248 1 56
## 249 1 68
## 250 6 360
## 251 6 0
## 252 6 320
## 253 2 326
## 254 2 76
## 255 3 279
## 256 2 15
## 257 6 340
## 258 1 226
## 259 2 365
## 260 2 0
## 261 7 349
## 262 13 365
## 263 2 11
## 264 2 316
## 265 4 281
## 266 2 323
## 267 4 362
## 268 1 0
## 269 1 301
## 270 4 189
## 271 1 0
## 272 2 287
## 273 1 14
## 274 2 86
## 275 1 261
## 276 1 68
## 277 1 0
## 278 1 231
## 279 1 152
## 280 1 46
## 281 1 364
## 282 1 246
## 283 1 288
## 284 5 331
## 285 1 51
## 286 3 364
## 287 1 254
## 288 1 189
## 289 2 263
## 290 2 258
## 291 1 103
## 292 1 42
## 293 1 246
## 294 2 364
## 295 1 318
## 296 2 72
## 297 1 249
## 298 3 272
## 299 1 325
## 300 1 298
## 301 1 35
## 302 1 203
## 303 1 132
## 304 1 5
## 305 4 297
## 306 2 276
## 307 1 102
## 308 1 251
## 309 1 188
## 310 2 346
## 311 1 0
## 312 1 15
## 313 1 71
## 314 2 215
## 315 3 253
## 316 1 78
## 317 1 257
## 318 1 0
## 319 2 8
## 320 1 191
## 321 3 182
## 322 28 79
## 323 1 49
## 324 1 0
## 325 1 156
## 326 6 343
## 327 1 200
## 328 28 60
## 329 28 60
## 330 2 189
## 331 28 60
## 332 2 0
## 333 2 106
## 334 1 276
## 335 1 248
## 336 1 194
## 337 1 135
## 338 1 30
## 339 1 0
## 340 28 81
## 341 1 0
## 342 1 142
## 343 2 60
## 344 5 179
## 345 2 52
## 346 3 365
## 347 4 324
## 348 2 237
## 349 2 365
## 350 1 365
## 351 1 204
## 352 1 272
## 353 1 0
## 354 1 9
## 355 3 365
## 356 3 181
## 357 1 189
## 358 2 0
## 359 1 189
## 360 1 296
## 361 1 88
## 362 1 35
## 363 1 0
## 364 1 35
## 365 1 359
## 366 28 60
## 367 2 365
## 368 1 335
## 369 5 282
## 370 2 247
## 371 1 102
## 372 3 274
## 373 1 201
## 374 1 98
## 375 1 157
## 376 1 0
## 377 1 312
## 378 2 331
## 379 2 275
## 380 1 174
## 381 2 223
## 382 3 361
## 383 1 0
## 384 1 283
## 385 1 220
## 386 1 363
## 387 4 315
## 388 1 281
## 389 1 283
## 390 1 20
## 391 1 0
## 392 1 331
## 393 1 36
## 394 2 7
## 395 2 301
## 396 1 170
## 397 2 307
## 398 2 365
## 399 3 201
## 400 1 0
## 401 1 316
## 402 5 271
## 403 1 139
## 404 3 209
## 405 1 0
## 406 1 0
## 407 1 193
## 408 1 52
## 409 2 136
## 410 2 286
## 411 1 0
## 412 1 18
## 413 1 9
## 414 1 3
## 415 1 277
## 416 1 0
## 417 1 233
## 418 1 221
## 419 1 355
## 420 1 0
## 421 1 277
## 422 1 0
## 423 1 343
## 424 1 0
## 425 1 0
## 426 1 0
## 427 1 0
## 428 1 188
## 429 2 264
## 430 1 0
## 431 1 331
## 432 1 236
## 433 1 0
## 434 1 309
## 435 1 0
## 436 1 245
## 437 4 0
## 438 1 8
## 439 1 359
## 440 5 333
## 441 3 258
## 442 3 236
## 443 1 22
## 444 1 236
## 445 3 365
## 446 1 89
## 447 1 164
## 448 4 311
## 449 1 23
## 450 2 365
## 451 1 0
## 452 1 222
## 453 3 238
## 454 3 218
## 455 1 0
## 456 1 0
## 457 1 235
## 458 3 246
## 459 1 0
## 460 1 247
## 461 1 15
## 462 1 119
## 463 3 0
## 464 2 234
## 465 3 257
## 466 3 350
## 467 1 221
## 468 1 0
## 469 2 201
## 470 3 161
## 471 1 259
## 472 1 0
## 473 1 222
## 474 1 0
## 475 2 76
## 476 1 0
## 477 6 258
## 478 1 14
## 479 1 27
## 480 1 167
## 481 2 68
## 482 1 358
## 483 2 59
## 484 1 0
## 485 1 232
## 486 2 15
## 487 2 0
## 488 1 0
## 489 2 161
## 490 2 88
## 491 2 337
## 492 2 247
## 493 1 248
## 494 1 287
## 495 1 304
## 496 1 0
## 497 11 0
## 498 1 193
## 499 2 43
## 500 1 25
## 501 2 127
## 502 1 0
## 503 1 303
## 504 1 345
## 505 3 115
## 506 8 200
## 507 8 271
## 508 1 12
## 509 1 268
## 510 2 89
## 511 2 347
## 512 1 37
## 513 1 0
## 514 1 359
## 515 2 287
## 516 1 0
## 517 1 233
## 518 1 129
## 519 1 0
## 520 1 353
## 521 1 365
## 522 1 297
## 523 1 56
## 524 1 44
## 525 1 355
## 526 1 156
## 527 1 273
## 528 2 274
## 529 2 258
## 530 1 276
## 531 1 65
## 532 2 0
## 533 1 180
## 534 1 343
## 535 2 43
## 536 2 96
## 537 1 59
## 538 1 255
## 539 2 252
## 540 1 0
## 541 1 20
## 542 2 188
## 543 1 304
## 544 2 38
## 545 1 254
## 546 1 0
## 547 1 46
## 548 1 328
## 549 3 0
## 550 1 0
## 551 6 199
## 552 1 249
## 553 2 64
## 554 1 111
## 555 1 287
## 556 1 286
## 557 1 263
## 558 2 276
## 559 1 0
## 560 1 263
## 561 2 90
## 562 1 0
## 563 3 11
## 564 1 287
## 565 3 1
## 566 1 0
## 567 1 338
## 568 1 44
## 569 1 0
## 570 1 5
## 571 1 0
## 572 1 158
## 573 3 192
## 574 8 358
## 575 3 31
## 576 1 241
## 577 1 285
## 578 1 183
## 579 2 189
## 580 2 162
## 581 2 158
## 582 1 84
## 583 1 260
## 584 3 0
## 585 1 166
## 586 1 0
## 587 1 335
## 588 2 90
## 589 6 342
## 590 1 28
## 591 1 363
## 592 2 86
## 593 2 83
## 594 1 0
## 595 1 0
## 596 3 264
## 597 2 305
## 598 11 356
## 599 1 278
## 600 2 135
## 601 4 308
## 602 1 229
## 603 1 273
## 604 1 83
## 605 1 281
## 606 1 321
## 607 1 303
## 608 3 192
## 609 1 0
## 610 1 36
## 611 2 271
## 612 2 341
## 613 1 333
## 614 1 210
## 615 1 231
## 616 1 308
## 617 1 292
## 618 1 311
## 619 1 264
## 620 1 153
## 621 3 219
## 622 1 0
## 623 2 332
## 624 1 120
## 625 1 191
## 626 3 248
## 627 1 67
## 628 1 0
## 629 4 325
## 630 1 249
## 631 1 0
## 632 1 313
## 633 1 0
## 634 1 12
## 635 1 69
## 636 1 0
## 637 1 293
## 638 11 363
## 639 1 4
## 640 1 257
## 641 11 362
## 642 1 0
## 643 1 365
## 644 1 102
## 645 1 26
## 646 2 302
## 647 1 280
## 648 1 302
## 649 1 281
## 650 1 0
## 651 2 297
## 652 1 246
## 653 28 60
## 654 4 296
## 655 1 0
## 656 1 364
## 657 4 281
## 658 1 0
## 659 1 0
## 660 1 0
## 661 2 365
## 662 2 365
## 663 1 249
## 664 1 303
## 665 1 300
## 666 2 323
## 667 2 0
## 668 1 204
## 669 28 60
## 670 28 84
## 671 28 60
## 672 1 303
## 673 1 261
## 674 1 0
## 675 28 60
## 676 28 60
## 677 28 60
## 678 28 56
## 679 28 84
## 680 28 58
## 681 28 60
## 682 28 60
## 683 28 81
## 684 3 365
## 685 28 60
## 686 1 0
## 687 1 297
## 688 1 91
## 689 1 315
## 690 2 338
## 691 2 40
## 692 1 361
## 693 1 288
## 694 1 218
## 695 2 1
## 696 2 117
## 697 1 0
## 698 1 204
## 699 1 0
## 700 1 20
## 701 1 0
## 702 1 0
## 703 4 333
## 704 4 189
## 705 4 353
## 706 2 0
## 707 2 206
## 708 1 1
## 709 1 0
## 710 1 307
## 711 1 0
## 712 1 0
## 713 1 27
## 714 1 27
## 715 1 348
## 716 4 246
## 717 1 15
## 718 2 0
## 719 1 5
## 720 1 0
## 721 2 0
## 722 1 107
## 723 2 144
## 724 1 98
## 725 2 0
## 726 1 0
## 727 1 0
## 728 1 89
## 729 1 354
## 730 5 286
## 731 5 252
## 732 1 189
## 733 1 0
## 734 1 271
## 735 1 0
## 736 1 0
## 737 1 0
## 738 1 337
## 739 1 347
## 740 2 127
## 741 1 41
## 742 1 0
## 743 1 18
## 744 1 158
## 745 1 270
## 746 3 88
## 747 2 306
## 748 3 216
## 749 1 16
## 750 2 365
## 751 2 365
## 752 1 312
## 753 2 33
## 754 2 0
## 755 1 365
## 756 1 27
## 757 1 300
## 758 1 216
## 759 1 365
## 760 1 303
## 761 1 0
## 762 2 161
## 763 4 297
## 764 1 0
## 765 1 50
## 766 2 28
## 767 1 317
## 768 1 275
## 769 1 80
## 770 1 365
## 771 1 340
## 772 2 97
## 773 3 365
## 774 1 314
## 775 1 0
## 776 1 339
## 777 1 0
## 778 1 35
## 779 1 0
## 780 1 365
## 781 1 257
## 782 2 5
## 783 1 0
## 784 1 0
## 785 1 0
## 786 1 304
## 787 1 286
## 788 1 0
## 789 1 118
## 790 1 265
## 791 1 303
## 792 1 0
## 793 2 125
## 794 2 354
## 795 2 6
## 796 1 0
## 797 2 80
## 798 1 134
## 799 1 0
## 800 1 364
## 801 1 0
## 802 1 297
## 803 1 0
## 804 3 43
## 805 1 10
## 806 1 0
## 807 1 189
## 808 2 17
## 809 1 289
## 810 1 305
## 811 1 0
## 812 1 0
## 813 1 220
## 814 1 0
## 815 1 0
## 816 1 362
## 817 1 121
## 818 1 153
## 819 1 205
## 820 1 310
## 821 1 0
## 822 1 236
## 823 1 200
## 824 2 74
## 825 1 0
## 826 1 0
## 827 2 12
## 828 28 84
## 829 1 0
## 830 28 84
## 831 1 0
## 832 28 56
## 833 28 62
## 834 28 81
## 835 1 0
## 836 6 310
## 837 28 60
## 838 1 0
## 839 2 0
## 840 1 0
## 841 1 29
## 842 2 264
## 843 2 341
## 844 1 0
## 845 3 0
## 846 3 0
## 847 1 0
## 848 1 363
## 849 1 25
## 850 4 0
## 851 1 358
## 852 2 0
## 853 1 109
## 854 2 289
## 855 1 188
## 856 1 260
## 857 1 168
## 858 1 0
## 859 1 311
## 860 1 146
## 861 1 2
## 862 2 242
## 863 1 0
## 864 1 46
## 865 1 365
## 866 1 364
## 867 1 352
## 868 3 301
## 869 3 322
## 870 1 298
## 871 5 285
## 872 1 342
## 873 1 250
## 874 1 326
## 875 1 90
## 876 9 289
## 877 1 193
## 878 2 293
## 879 1 155
## 880 1 189
## 881 1 248
## 882 1 238
## 883 2 284
## 884 2 343
## 885 1 268
## 886 1 249
## 887 1 291
## 888 1 0
## 889 1 0
## 890 1 31
## 891 1 0
## 892 2 79
## 893 1 0
## 894 1 157
## 895 2 277
## 896 1 353
## 897 1 0
## 898 2 280
## 899 1 7
## 900 6 266
## 901 1 0
## 902 1 271
## 903 1 101
## 904 1 205
## 905 1 343
## 906 1 0
## 907 1 190
## 908 2 310
## 909 2 52
## 910 3 312
## 911 1 0
## 912 1 329
## 913 4 333
## 914 4 327
## 915 4 349
## 916 1 217
## 917 1 0
## 918 2 80
## 919 1 0
## 920 2 351
## 921 1 362
## 922 2 144
## 923 2 43
## 924 1 365
## 925 1 129
## 926 1 0
## 927 1 0
## 928 1 0
## 929 1 0
## 930 2 355
## 931 1 0
## 932 1 280
## 933 1 38
## 934 1 31
## 935 1 324
## 936 3 365
## 937 9 0
## 938 1 171
## 939 1 36
## 940 1 332
## 941 1 0
## 942 1 192
## 943 1 139
## 944 2 167
## 945 1 0
## 946 4 10
## 947 1 365
## 948 1 110
## 949 1 0
## 950 1 0
## 951 1 242
## 952 3 22
## 953 1 0
## 954 1 200
## 955 1 0
## 956 2 87
## 957 2 202
## 958 1 226
## 959 1 0
## 960 1 327
## 961 2 262
## 962 1 0
## 963 3 359
## 964 3 348
## 965 1 0
## 966 1 0
## 967 1 318
## 968 1 363
## 969 1 70
## 970 1 0
## 971 1 90
## 972 4 15
## 973 1 335
## 974 4 0
## 975 2 0
## 976 2 364
## 977 1 34
## 978 4 242
## 979 1 147
## 980 1 169
## 981 1 188
## 982 2 89
## 983 2 189
## 984 1 0
## 985 1 253
## 986 1 311
## 987 1 0
## 988 1 363
## 989 1 224
## 990 1 5
## 991 1 301
## 992 1 0
## 993 1 50
## 994 2 296
## 995 1 84
## 996 1 365
## 997 3 212
## 998 2 181
## 999 1 0
## 1000 3 158
## 1001 1 217
## 1002 1 335
## 1003 1 231
## 1004 1 122
## 1005 1 270
## 1006 8 330
## 1007 1 0
## 1008 1 321
## 1009 2 312
## 1010 3 345
## 1011 1 2
## 1012 2 252
## 1013 2 15
## 1014 3 169
## 1015 2 212
## 1016 1 0
## 1017 1 296
## 1018 1 167
## 1019 1 365
## 1020 4 365
## 1021 1 0
## 1022 2 258
## 1023 2 257
## 1024 1 364
## 1025 1 236
## 1026 1 0
## 1027 2 54
## 1028 1 189
## 1029 1 364
## 1030 1 265
## 1031 1 207
## 1032 1 0
## 1033 1 196
## 1034 1 0
## 1035 2 57
## 1036 1 0
## 1037 1 0
## 1038 2 277
## 1039 1 0
## 1040 1 10
## 1041 1 247
## 1042 1 273
## 1043 1 189
## 1044 1 0
## 1045 1 365
## 1046 1 249
## 1047 1 310
## 1048 1 291
## 1049 1 74
## 1050 2 289
## 1051 1 0
## 1052 1 219
## 1053 1 0
## 1054 1 73
## 1055 1 97
## 1056 1 149
## 1057 1 85
## 1058 1 0
## 1059 1 50
## 1060 2 303
## 1061 1 333
## 1062 1 239
## 1063 1 6
## 1064 3 0
## 1065 3 180
## 1066 3 318
## 1067 3 328
## 1068 1 18
## 1069 1 353
## 1070 1 63
## 1071 3 34
## 1072 1 284
## 1073 2 333
## 1074 1 0
## 1075 1 0
## 1076 1 222
## 1077 3 333
## 1078 1 0
## 1079 1 195
## 1080 3 0
## 1081 1 0
## 1082 1 249
## 1083 1 78
## 1084 1 21
## 1085 3 0
## 1086 1 0
## 1087 2 167
## 1088 1 0
## 1089 1 47
## 1090 1 0
## 1091 2 195
## 1092 1 319
## 1093 1 0
## 1094 1 177
## 1095 1 0
## 1096 1 67
## 1097 1 0
## 1098 1 311
## 1099 3 0
## 1100 3 0
## 1101 2 144
## 1102 1 220
## 1103 1 28
## 1104 1 353
## 1105 1 19
## 1106 1 0
## 1107 1 319
## 1108 4 170
## 1109 1 0
## 1110 1 157
## 1111 1 80
## 1112 1 0
## 1113 1 0
## 1114 1 330
## 1115 1 0
## 1116 1 0
## 1117 1 311
## 1118 2 340
## 1119 1 0
## 1120 1 0
## 1121 1 0
## 1122 6 0
## 1123 6 4
## 1124 6 8
## 1125 1 0
## 1126 2 238
## 1127 1 96
## 1128 1 236
## 1129 1 0
## 1130 1 0
## 1131 1 30
## 1132 1 342
## 1133 1 330
## 1134 2 225
## 1135 1 0
## 1136 1 212
## 1137 7 365
## 1138 2 12
## 1139 4 297
## 1140 1 112
## 1141 1 261
## 1142 1 0
## 1143 1 23
## 1144 1 30
## 1145 2 331
## 1146 2 0
## 1147 1 0
## 1148 1 0
## 1149 1 38
## 1150 1 20
## 1151 2 0
## 1152 1 342
## 1153 1 317
## 1154 1 0
## 1155 1 361
## 1156 1 68
## 1157 1 0
## 1158 1 316
## 1159 1 231
## 1160 2 363
## 1161 1 0
## 1162 1 26
## 1163 2 305
## 1164 2 34
## 1165 1 26
## 1166 1 189
## 1167 1 292
## 1168 1 90
## 1169 1 323
## 1170 1 341
## 1171 2 344
## 1172 1 0
## 1173 1 302
## 1174 1 30
## 1175 1 246
## 1176 2 0
## 1177 5 362
## 1178 1 203
## 1179 1 88
## 1180 1 0
## 1181 1 0
## 1182 1 64
## 1183 1 77
## 1184 1 0
## 1185 1 160
## 1186 1 141
## 1187 1 6
## 1188 1 0
## 1189 1 0
## 1190 1 23
## 1191 2 13
## 1192 8 262
## 1193 1 24
## 1194 2 329
## 1195 4 301
## 1196 1 344
## 1197 1 259
## 1198 1 0
## 1199 1 0
## 1200 1 0
## 1201 1 0
## 1202 1 67
## 1203 1 260
## 1204 1 272
## 1205 1 341
## 1206 1 56
## 1207 2 185
## 1208 1 352
## 1209 1 260
## 1210 1 242
## 1211 1 0
## 1212 1 0
## 1213 1 269
## 1214 1 0
## 1215 1 0
## 1216 2 251
## 1217 3 292
## 1218 1 150
## 1219 2 317
## 1220 1 0
## 1221 1 178
## 1222 1 0
## 1223 1 23
## 1224 1 4
## 1225 2 254
## 1226 1 43
## 1227 1 13
## 1228 1 170
## 1229 1 339
## 1230 1 365
## 1231 1 0
## 1232 1 60
## 1233 1 0
## 1234 1 0
## 1235 1 341
## 1236 1 128
## 1237 1 0
## 1238 2 44
## 1239 2 0
## 1240 1 338
## 1241 1 176
## 1242 1 357
## 1243 1 0
## 1244 1 0
## 1245 1 259
## 1246 1 20
## 1247 3 350
## 1248 1 41
## 1249 1 106
## 1250 6 0
## 1251 2 0
## 1252 1 205
## 1253 1 0
## 1254 1 38
## 1255 1 21
## 1256 1 0
## 1257 1 68
## 1258 2 365
## 1259 2 17
## 1260 1 0
## 1261 2 91
## 1262 1 0
## 1263 2 1
## 1264 6 0
## 1265 2 59
## 1266 1 276
## 1267 1 0
## 1268 1 30
## 1269 1 0
## 1270 1 365
## 1271 3 43
## 1272 3 332
## 1273 1 0
## 1274 1 79
## 1275 1 157
## 1276 1 211
## 1277 1 365
## 1278 1 0
## 1279 1 0
## 1280 1 311
## 1281 1 347
## 1282 1 0
## 1283 1 111
## 1284 3 348
## 1285 2 174
## 1286 1 0
## 1287 1 129
## 1288 1 365
## 1289 1 25
## 1290 1 0
## 1291 1 0
## 1292 1 0
## 1293 1 261
## 1294 1 0
## 1295 1 0
## 1296 1 0
## 1297 1 0
## 1298 1 172
## 1299 1 69
## 1300 3 324
## 1301 1 0
## 1302 1 85
## 1303 1 245
## 1304 1 0
## 1305 1 330
## 1306 1 365
## 1307 3 256
## 1308 1 0
## 1309 1 264
## 1310 3 359
## 1311 2 335
## 1312 8 245
## 1313 1 338
## 1314 5 337
## 1315 1 102
## 1316 1 22
## 1317 1 0
## 1318 1 0
## 1319 1 80
## 1320 1 0
## 1321 1 365
## 1322 1 165
## 1323 1 0
## 1324 1 54
## 1325 1 77
## 1326 1 249
## 1327 1 72
## 1328 1 8
## 1329 1 0
## 1330 1 207
## 1331 1 15
## 1332 1 0
## 1333 1 179
## 1334 1 332
## 1335 1 255
## 1336 2 215
## 1337 4 311
## 1338 1 0
## 1339 1 217
## 1340 1 363
## 1341 2 335
## 1342 1 281
## 1343 2 250
## 1344 1 343
## 1345 1 365
## 1346 1 36
## 1347 1 0
## 1348 1 0
## 1349 1 220
## 1350 1 0
## 1351 1 0
## 1352 1 185
## 1353 2 79
## 1354 2 179
## 1355 1 0
## 1356 1 69
## 1357 1 189
## 1358 1 0
## 1359 1 365
## 1360 1 261
## 1361 1 188
## 1362 1 0
## 1363 1 307
## 1364 1 11
## 1365 1 4
## 1366 1 312
## 1367 3 257
## 1368 1 0
## 1369 1 20
## 1370 1 0
## 1371 2 365
## 1372 1 22
## 1373 1 0
## 1374 1 38
## 1375 3 365
## 1376 1 16
## 1377 1 144
## 1378 1 0
## 1379 2 301
## 1380 1 3
## 1381 1 364
## 1382 1 299
## 1383 1 142
## 1384 2 365
## 1385 1 58
## 1386 2 193
## 1387 52 116
## 1388 4 326
## 1389 1 0
## 1390 2 188
## 1391 1 0
## 1392 1 0
## 1393 2 230
## 1394 2 341
## 1395 1 0
## 1396 1 358
## 1397 1 0
## 1398 1 352
## 1399 1 91
## 1400 2 6
## 1401 1 83
## 1402 1 29
## 1403 1 32
## 1404 1 0
## 1405 1 0
## 1406 1 0
## 1407 1 189
## 1408 1 0
## 1409 1 0
## 1410 1 0
## 1411 1 319
## 1412 1 338
## 1413 2 50
## 1414 1 0
## 1415 11 364
## 1416 1 172
## 1417 1 0
## 1418 2 86
## 1419 1 87
## 1420 1 67
## 1421 1 0
## 1422 1 0
## 1423 1 15
## 1424 1 0
## 1425 1 245
## 1426 1 128
## 1427 1 365
## 1428 1 271
## 1429 2 32
## 1430 2 33
## 1431 1 149
## 1432 3 0
## 1433 1 156
## 1434 1 365
## 1435 2 352
## 1436 2 318
## 1437 1 329
## 1438 1 0
## 1439 2 335
## 1440 1 0
## 1441 1 347
## 1442 1 44
## 1443 1 0
## 1444 2 310
## 1445 1 68
## 1446 1 302
## 1447 1 0
## 1448 1 182
## 1449 1 270
## 1450 1 365
## 1451 1 0
## 1452 1 169
## 1453 1 276
## 1454 1 365
## 1455 52 358
## 1456 52 342
## 1457 52 223
## 1458 52 363
## 1459 52 365
## 1460 1 341
## 1461 1 0
## 1462 1 105
## 1463 1 203
## 1464 1 0
## 1465 1 0
## 1466 1 312
## 1467 1 339
## 1468 1 0
## 1469 2 247
## 1470 2 269
## 1471 2 218
## 1472 1 264
## 1473 1 365
## 1474 1 0
## 1475 1 365
## 1476 1 31
## 1477 1 19
## 1478 1 2
## 1479 1 0
## 1480 1 122
## 1481 11 364
## 1482 1 0
## 1483 1 0
## 1484 1 223
## 1485 1 65
## 1486 1 5
## 1487 1 365
## 1488 1 0
## 1489 3 223
## 1490 2 110
## 1491 2 24
## 1492 3 236
## 1493 1 0
## 1494 1 346
## 1495 1 301
## 1496 2 249
## 1497 3 0
## 1498 1 332
## 1499 1 348
## 1500 1 318
## 1501 2 365
## 1502 1 0
## 1503 1 144
## 1504 1 341
## 1505 2 0
## 1506 2 267
## 1507 3 126
## 1508 1 232
## 1509 2 319
## 1510 2 12
## 1511 1 0
## 1512 1 284
## 1513 3 188
## 1514 2 13
## 1515 6 256
## 1516 6 313
## 1517 1 2
## 1518 1 148
## 1519 1 362
## 1520 2 234
## 1521 1 0
## 1522 1 0
## 1523 2 96
## 1524 1 233
## 1525 3 309
## 1526 1 0
## 1527 1 15
## 1528 1 258
## 1529 2 210
## 1530 2 170
## 1531 1 225
## 1532 1 128
## 1533 1 295
## 1534 1 0
## 1535 1 281
## 1536 1 3
## 1537 1 27
## 1538 1 0
## 1539 2 23
## 1540 1 0
## 1541 2 1
## 1542 1 3
## 1543 1 51
## 1544 3 297
## 1545 2 78
## 1546 1 0
## 1547 2 188
## 1548 2 341
## 1549 1 101
## 1550 1 246
## 1551 2 364
## 1552 2 365
## 1553 1 266
## 1554 2 365
## 1555 1 0
## 1556 3 365
## 1557 3 281
## 1558 2 354
## 1559 2 5
## 1560 3 284
## 1561 1 42
## 1562 1 348
## 1563 1 90
## 1564 2 89
## 1565 1 0
## 1566 1 263
## 1567 1 19
## 1568 1 0
## 1569 1 344
## 1570 2 362
## 1571 1 309
## 1572 2 323
## 1573 1 46
## 1574 3 253
## 1575 3 289
## 1576 2 0
## 1577 1 22
## 1578 2 38
## 1579 4 306
## 1580 1 0
## 1581 4 88
## 1582 1 15
## 1583 1 365
## 1584 1 0
## 1585 2 0
## 1586 2 36
## 1587 1 198
## 1588 1 0
## 1589 1 0
## 1590 2 189
## 1591 1 26
## 1592 1 0
## 1593 1 249
## 1594 2 63
## 1595 1 346
## 1596 2 253
## 1597 1 220
## 1598 3 36
## 1599 1 164
## 1600 28 47
## 1601 28 36
## 1602 2 89
## 1603 1 0
## 1604 2 0
## 1605 1 0
## 1606 1 365
## 1607 52 365
## 1608 1 364
## 1609 1 0
## 1610 1 329
## 1611 1 260
## 1612 2 93
## 1613 1 0
## 1614 1 287
## 1615 1 0
## 1616 1 188
## 1617 1 28
## 1618 1 0
## 1619 3 1
## 1620 3 98
## 1621 1 364
## 1622 4 335
## 1623 8 346
## 1624 8 346
## 1625 1 46
## 1626 1 2
## 1627 52 365
## 1628 1 0
## 1629 1 50
## 1630 1 251
## 1631 1 0
## 1632 1 17
## 1633 1 87
## 1634 1 142
## 1635 1 358
## 1636 1 45
## 1637 3 34
## 1638 1 267
## 1639 1 0
## 1640 1 203
## 1641 1 212
## 1642 1 362
## 1643 1 300
## 1644 1 90
## 1645 1 267
## 1646 1 115
## 1647 1 0
## 1648 1 320
## 1649 1 277
## 1650 1 0
## 1651 1 0
## 1652 4 73
## 1653 1 0
## 1654 1 0
## 1655 1 0
## 1656 1 0
## 1657 1 259
## 1658 1 0
## 1659 1 175
## 1660 2 0
## 1661 1 33
## 1662 1 316
## 1663 1 275
## 1664 1 15
## 1665 2 234
## 1666 18 360
## 1667 4 238
## 1668 1 0
## 1669 1 0
## 1670 1 0
## 1671 1 0
## 1672 1 159
## 1673 1 0
## 1674 1 347
## 1675 1 5
## 1676 1 235
## 1677 1 260
## 1678 1 364
## 1679 3 69
## 1680 2 353
## 1681 3 188
## 1682 1 0
## 1683 3 264
## 1684 1 25
## 1685 1 89
## 1686 2 238
## 1687 2 88
## 1688 1 258
## 1689 2 322
## 1690 1 116
## 1691 1 250
## 1692 1 0
## 1693 1 119
## 1694 5 167
## 1695 1 19
## 1696 1 0
## 1697 1 0
## 1698 1 249
## 1699 1 0
## 1700 1 246
## 1701 1 0
## 1702 1 301
## 1703 1 0
## 1704 1 88
## 1705 1 146
## 1706 1 365
## 1707 4 241
## 1708 1 365
## 1709 1 0
## 1710 1 196
## 1711 2 282
## 1712 1 0
## 1713 1 12
## 1714 2 48
## 1715 2 132
## 1716 1 325
## 1717 1 52
## 1718 1 311
## 1719 1 365
## 1720 3 0
## 1721 1 182
## 1722 1 337
## 1723 2 189
## 1724 1 36
## 1725 2 1
## 1726 1 0
## 1727 1 63
## 1728 5 0
## 1729 1 235
## 1730 2 303
## 1731 1 0
## 1732 3 329
## 1733 1 295
## 1734 6 214
## 1735 1 350
## 1736 2 339
## 1737 1 0
## 1738 5 359
## 1739 1 265
## 1740 1 0
## 1741 1 45
## 1742 1 305
## 1743 1 95
## 1744 1 0
## 1745 1 159
## 1746 1 0
## 1747 1 0
## 1748 1 0
## 1749 2 126
## 1750 1 311
## 1751 1 0
## 1752 1 141
## 1753 1 0
## 1754 1 0
## 1755 1 36
## 1756 2 0
## 1757 1 0
## 1758 2 90
## 1759 2 0
## 1760 2 0
## 1761 1 0
## 1762 1 250
## 1763 1 247
## 1764 3 129
## 1765 1 0
## 1766 1 84
## 1767 1 0
## 1768 2 207
## 1769 1 0
## 1770 2 15
## 1771 1 0
## 1772 2 19
## 1773 4 0
## 1774 1 0
## 1775 1 237
## 1776 1 301
## 1777 52 311
## 1778 2 0
## 1779 1 0
## 1780 1 0
## 1781 5 284
## 1782 1 174
## 1783 1 0
## 1784 6 89
## 1785 2 178
## 1786 1 0
## 1787 1 250
## 1788 1 277
## 1789 1 0
## 1790 1 134
## 1791 1 0
## 1792 1 211
## 1793 1 0
## 1794 1 0
## 1795 1 278
## 1796 1 0
## 1797 3 213
## 1798 3 208
## 1799 2 198
## 1800 1 0
## 1801 1 0
## 1802 1 365
## 1803 1 351
## 1804 8 0
## 1805 1 59
## 1806 1 192
## 1807 1 0
## 1808 1 0
## 1809 1 0
## 1810 1 234
## 1811 1 0
## 1812 1 0
## 1813 1 359
## 1814 2 300
## 1815 1 100
## 1816 1 48
## 1817 1 30
## 1818 5 280
## 1819 1 358
## 1820 1 67
## 1821 1 311
## 1822 1 0
## 1823 1 0
## 1824 1 302
## 1825 2 184
## 1826 1 0
## 1827 1 0
## 1828 1 219
## 1829 3 284
## 1830 1 339
## 1831 1 0
## 1832 1 188
## 1833 4 308
## 1834 1 0
## 1835 4 117
## 1836 4 114
## 1837 1 313
## 1838 4 211
## 1839 1 158
## 1840 4 133
## 1841 1 365
## 1842 1 156
## 1843 3 318
## 1844 1 0
## 1845 1 0
## 1846 1 81
## 1847 1 0
## 1848 1 30
## 1849 1 157
## 1850 2 119
## 1851 2 186
## 1852 1 84
## 1853 1 60
## 1854 1 0
## 1855 1 189
## 1856 1 19
## 1857 2 34
## 1858 1 0
## 1859 1 323
## 1860 1 280
## 1861 1 2
## 1862 2 32
## 1863 1 83
## 1864 1 263
## 1865 2 120
## 1866 1 188
## 1867 2 23
## 1868 3 325
## 1869 1 266
## 1870 1 0
## 1871 1 9
## 1872 1 87
## 1873 2 298
## 1874 1 0
## 1875 1 0
## 1876 1 0
## 1877 1 0
## 1878 3 353
## 1879 3 11
## 1880 1 179
## 1881 1 0
## 1882 1 330
## 1883 1 361
## 1884 1 0
## 1885 1 177
## 1886 1 0
## 1887 1 77
## 1888 3 249
## 1889 2 176
## 1890 1 0
## 1891 1 0
## 1892 1 0
## 1893 1 31
## 1894 1 0
## 1895 1 365
## 1896 1 356
## 1897 1 334
## 1898 1 22
## 1899 1 0
## 1900 1 365
## 1901 2 18
## 1902 1 1
## 1903 1 18
## 1904 1 245
## 1905 1 0
## 1906 1 0
## 1907 8 268
## 1908 1 226
## 1909 4 342
## 1910 2 0
## 1911 1 365
## 1912 1 237
## 1913 1 0
## 1914 1 0
## 1915 1 83
## 1916 1 35
## 1917 1 268
## 1918 1 0
## 1919 6 112
## 1920 1 0
## 1921 1 7
## 1922 1 0
## 1923 1 284
## 1924 1 1
## 1925 1 0
## 1926 1 94
## 1927 1 0
## 1928 1 0
## 1929 1 221
## 1930 4 314
## 1931 3 311
## 1932 4 292
## 1933 1 361
## 1934 1 0
## 1935 1 0
## 1936 1 56
## 1937 1 0
## 1938 1 40
## 1939 2 365
## 1940 1 273
## 1941 2 151
## 1942 1 159
## 1943 4 354
## 1944 1 231
## 1945 2 14
## 1946 1 364
## 1947 1 188
## 1948 1 331
## 1949 2 230
## 1950 1 325
## 1951 1 90
## 1952 1 0
## 1953 2 7
## 1954 1 189
## 1955 2 310
## 1956 1 0
## 1957 1 35
## 1958 3 98
## 1959 1 135
## 1960 1 283
## 1961 1 0
## 1962 2 158
## 1963 5 0
## 1964 1 365
## 1965 3 157
## 1966 1 208
## 1967 1 280
## 1968 2 316
## 1969 1 199
## 1970 2 125
## 1971 1 275
## 1972 1 365
## 1973 1 326
## 1974 2 282
## 1975 1 312
## 1976 2 361
## 1977 3 193
## 1978 3 35
## 1979 1 283
## 1980 3 73
## 1981 1 0
## 1982 1 0
## 1983 1 8
## 1984 1 0
## 1985 2 365
## 1986 1 0
## 1987 1 282
## 1988 1 239
## 1989 1 87
## 1990 1 310
## 1991 1 0
## 1992 1 343
## 1993 1 230
## 1994 3 59
## 1995 1 89
## 1996 2 0
## 1997 1 347
## 1998 1 2
## 1999 2 89
## 2000 1 0
## 2001 1 281
## 2002 1 365
## 2003 3 361
## 2004 1 65
## 2005 1 167
## 2006 2 298
## 2007 2 263
## 2008 1 21
## 2009 1 248
## 2010 1 281
## 2011 1 280
## 2012 4 0
## 2013 1 188
## 2014 3 365
## 2015 1 0
## 2016 3 339
## 2017 1 0
## 2018 1 161
## 2019 1 89
## 2020 1 188
## 2021 1 27
## 2022 1 268
## 2023 1 0
## 2024 4 365
## 2025 3 29
## 2026 1 184
## 2027 1 256
## 2028 1 34
## 2029 1 0
## 2030 1 0
## 2031 3 342
## 2032 3 293
## 2033 1 343
## 2034 1 281
## 2035 3 283
## 2036 1 333
## 2037 1 294
## 2038 3 249
## 2039 2 365
## 2040 1 0
## 2041 1 341
## 2042 2 352
## 2043 1 221
## 2044 1 188
## 2045 1 301
## 2046 2 31
## 2047 1 188
## 2048 1 217
## 2049 1 65
## 2050 4 212
## 2051 1 163
## 2052 1 161
## 2053 1 284
## 2054 1 24
## 2055 1 188
## 2056 1 90
## 2057 1 280
## 2058 1 8
## 2059 1 283
## 2060 2 354
## 2061 1 168
## 2062 3 244
## 2063 3 248
## 2064 1 31
## 2065 1 157
## 2066 1 42
## 2067 1 316
## 2068 1 335
## 2069 2 365
## 2070 6 158
## 2071 2 0
## 2072 1 282
## 2073 1 0
## 2074 1 0
## 2075 1 228
## 2076 1 311
## 2077 2 233
## 2078 1 63
## 2079 1 41
## 2080 1 0
## 2081 1 358
## 2082 2 194
## 2083 3 340
## 2084 1 178
## 2085 2 282
## 2086 1 365
## 2087 1 202
## 2088 1 348
## 2089 1 48
## 2090 1 0
## 2091 2 73
## 2092 1 0
## 2093 2 231
## 2094 1 269
## 2095 1 324
## 2096 1 67
## 2097 2 314
## 2098 1 44
## 2099 1 188
## 2100 1 134
## 2101 2 90
## 2102 4 204
## 2103 2 279
## 2104 1 281
## 2105 3 323
## 2106 1 0
## 2107 1 0
## 2108 1 0
## 2109 2 9
## 2110 1 270
## 2111 3 365
## 2112 1 267
## 2113 2 340
## 2114 1 127
## 2115 1 329
## 2116 1 364
## 2117 1 350
## 2118 1 244
## 2119 4 273
## 2120 1 0
## 2121 2 322
## 2122 4 358
## 2123 1 1
## 2124 3 146
## 2125 2 1
## 2126 1 363
## 2127 1 313
## 2128 1 51
## 2129 1 59
## 2130 1 5
## 2131 1 254
## 2132 2 326
## 2133 1 322
## 2134 1 47
## 2135 1 273
## 2136 1 0
## 2137 1 329
## 2138 4 253
## 2139 2 188
## 2140 1 365
## 2141 2 177
## 2142 2 348
## 2143 1 0
## 2144 1 298
## 2145 1 188
## 2146 1 177
## 2147 2 87
## 2148 4 251
## 2149 1 301
## 2150 1 0
## 2151 1 365
## 2152 1 6
## 2153 8 346
## 2154 8 346
## 2155 8 346
## 2156 1 357
## 2157 2 310
## 2158 8 113
## 2159 1 238
## 2160 1 0
## 2161 1 303
## 2162 1 10
## 2163 1 11
## 2164 3 207
## 2165 2 0
## 2166 1 318
## 2167 2 280
## 2168 3 171
## 2169 1 303
## 2170 1 347
## 2171 1 44
## 2172 1 94
## 2173 1 9
## 2174 1 83
## 2175 2 22
## 2176 3 365
## 2177 1 301
## 2178 1 339
## 2179 1 342
## 2180 4 55
## 2181 1 11
## 2182 1 365
## 2183 1 3
## 2184 1 365
## 2185 1 273
## 2186 1 0
## 2187 2 343
## 2188 1 149
## 2189 2 95
## 2190 1 0
## 2191 4 315
## 2192 2 0
## 2193 1 66
## 2194 1 109
## 2195 1 333
## 2196 1 365
## 2197 1 311
## 2198 1 0
## 2199 2 363
## 2200 1 341
## 2201 1 232
## 2202 1 320
## 2203 1 0
## 2204 5 235
## 2205 4 88
## 2206 3 0
## 2207 1 188
## 2208 1 231
## 2209 1 3
## 2210 2 23
## 2211 2 173
## 2212 1 221
## 2213 1 0
## 2214 1 104
## 2215 1 0
## 2216 3 37
## 2217 3 171
## 2218 2 303
## 2219 2 197
## 2220 2 288
## 2221 3 322
## 2222 1 0
## 2223 1 278
## 2224 1 364
## 2225 2 136
## 2226 3 273
## 2227 2 364
## 2228 1 205
## 2229 2 84
## 2230 1 320
## 2231 1 364
## 2232 3 217
## 2233 2 242
## 2234 2 357
## 2235 1 127
## 2236 3 19
## 2237 2 362
## 2238 1 358
## 2239 1 251
## 2240 2 0
## 2241 3 0
## 2242 3 365
## 2243 1 300
## 2244 1 0
## 2245 2 84
## 2246 2 18
## 2247 1 0
## 2248 1 240
## 2249 1 0
## 2250 2 57
## 2251 1 148
## 2252 2 26
## 2253 2 355
## 2254 1 0
## 2255 1 211
## 2256 1 15
## 2257 1 218
## 2258 1 265
## 2259 1 300
## 2260 1 284
## 2261 2 56
## 2262 2 365
## 2263 2 33
## 2264 2 327
## 2265 2 359
## 2266 1 0
## 2267 1 339
## 2268 1 127
## 2269 1 356
## 2270 2 0
## 2271 2 283
## 2272 1 0
## 2273 1 87
## 2274 1 268
## 2275 2 0
## 2276 6 272
## 2277 1 362
## 2278 4 24
## 2279 4 12
## 2280 2 284
## 2281 1 0
## 2282 1 71
## 2283 1 365
## 2284 1 72
## 2285 4 328
## 2286 1 365
## 2287 1 0
## 2288 1 345
## 2289 1 280
## 2290 1 247
## 2291 1 23
## 2292 2 277
## 2293 1 321
## 2294 2 215
## 2295 1 168
## 2296 1 11
## 2297 1 256
## 2298 4 250
## 2299 2 360
## 2300 1 1
## 2301 1 159
## 2302 1 291
## 2303 1 354
## 2304 3 314
## 2305 1 5
## 2306 1 365
## 2307 3 3
## 2308 3 13
## 2309 1 363
## 2310 1 0
## 2311 1 246
## 2312 1 0
## 2313 2 190
## 2314 3 232
## 2315 2 307
## 2316 4 26
## 2317 6 244
## 2318 1 296
## 2319 3 365
## 2320 1 216
## 2321 1 228
## 2322 1 201
## 2323 1 250
## 2324 1 15
## 2325 2 311
## 2326 1 285
## 2327 2 339
## 2328 1 0
## 2329 1 330
## 2330 1 15
## 2331 1 99
## 2332 1 336
## 2333 4 118
## 2334 1 279
## 2335 1 0
## 2336 8 36
## 2337 1 188
## 2338 1 194
## 2339 1 0
## 2340 1 0
## 2341 1 365
## 2342 1 219
## 2343 1 265
## 2344 1 281
## 2345 1 0
## 2346 1 0
## 2347 1 279
## 2348 1 98
## 2349 1 197
## 2350 1 120
## 2351 1 238
## 2352 1 0
## 2353 52 365
## 2354 2 231
## 2355 1 0
## 2356 11 364
## 2357 2 364
## 2358 1 8
## 2359 5 353
## 2360 1 189
## 2361 1 287
## 2362 1 0
## 2363 1 88
## 2364 1 0
## 2365 1 324
## 2366 1 1
## 2367 2 160
## 2368 1 218
## 2369 1 0
## 2370 1 256
## 2371 1 250
## 2372 1 0
## 2373 1 241
## 2374 1 205
## 2375 1 147
## 2376 3 38
## 2377 1 282
## 2378 2 47
## 2379 1 332
## 2380 1 184
## 2381 2 280
## 2382 1 249
## 2383 1 365
## 2384 1 308
## 2385 1 0
## 2386 1 197
## 2387 1 365
## 2388 1 10
## 2389 1 317
## 2390 1 191
## 2391 1 109
## 2392 1 0
## 2393 1 88
## 2394 1 365
## 2395 1 311
## 2396 1 188
## 2397 5 325
## 2398 1 301
## 2399 1 184
## 2400 1 332
## 2401 1 53
## 2402 1 184
## 2403 1 365
## 2404 1 297
## 2405 1 0
## 2406 1 363
## 2407 1 9
## 2408 1 0
## 2409 1 192
## 2410 4 106
## 2411 2 356
## 2412 1 307
## 2413 1 188
## 2414 1 131
## 2415 1 143
## 2416 1 80
## 2417 1 282
## 2418 1 0
## 2419 1 18
## 2420 1 333
## 2421 1 189
## 2422 1 318
## 2423 1 0
## 2424 1 2
## 2425 1 179
## 2426 1 288
## 2427 2 0
## 2428 1 365
## 2429 1 3
## 2430 2 270
## 2431 2 124
## 2432 1 358
## 2433 1 218
## 2434 1 68
## 2435 1 21
## 2436 2 365
## 2437 1 358
## 2438 1 0
## 2439 2 282
## 2440 2 69
## 2441 1 244
## 2442 3 298
## 2443 2 0
## 2444 5 217
## 2445 1 365
## 2446 2 345
## 2447 1 128
## 2448 4 0
## 2449 1 14
## 2450 2 0
## 2451 1 294
## 2452 1 234
## 2453 1 197
## 2454 1 188
## 2455 2 0
## 2456 1 365
## 2457 1 193
## 2458 1 55
## 2459 1 105
## 2460 1 179
## 2461 2 100
## 2462 1 188
## 2463 1 312
## 2464 2 0
## 2465 1 0
## 2466 2 355
## 2467 2 296
## 2468 1 1
## 2469 3 252
## 2470 1 0
## 2471 1 0
## 2472 1 34
## 2473 1 365
## 2474 1 242
## 2475 1 10
## 2476 1 207
## 2477 1 247
## 2478 1 365
## 2479 1 286
## 2480 1 5
## 2481 1 0
## 2482 1 252
## 2483 15 345
## 2484 1 365
## 2485 1 247
## 2486 1 363
## 2487 1 174
## 2488 1 0
## 2489 15 313
## 2490 1 314
## 2491 2 253
## 2492 1 0
## 2493 1 66
## 2494 1 0
## 2495 15 318
## 2496 1 0
## 2497 1 0
## 2498 3 129
## 2499 1 213
## 2500 1 312
## 2501 1 116
## 2502 1 0
## 2503 1 0
## 2504 1 179
## 2505 2 0
## 2506 1 0
## 2507 1 28
## 2508 1 22
## 2509 1 85
## 2510 3 79
## 2511 2 39
## 2512 1 0
## 2513 1 35
## 2514 15 321
## 2515 1 188
## 2516 2 23
## 2517 1 0
## 2518 1 16
## 2519 1 364
## 2520 1 0
## 2521 1 0
## 2522 1 33
## 2523 2 288
## 2524 1 0
## 2525 1 205
## 2526 1 298
## 2527 1 3
## 2528 1 14
## 2529 1 5
## 2530 2 334
## 2531 1 321
## 2532 1 342
## 2533 1 132
## 2534 1 0
## 2535 1 22
## 2536 1 364
## 2537 1 0
## 2538 2 351
## 2539 1 311
## 2540 8 341
## 2541 2 343
## 2542 4 255
## 2543 1 273
## 2544 1 213
## 2545 1 12
## 2546 15 236
## 2547 1 365
## 2548 5 360
## 2549 1 345
## 2550 1 365
## 2551 1 0
## 2552 4 0
## 2553 1 198
## 2554 1 353
## 2555 2 334
## 2556 2 311
## 2557 4 189
## 2558 2 0
## 2559 1 269
## 2560 1 157
## 2561 3 28
## 2562 1 0
## 2563 2 327
## 2564 1 86
## 2565 3 359
## 2566 1 168
## 2567 1 45
## 2568 1 351
## 2569 1 261
## 2570 1 363
## 2571 1 0
## 2572 1 256
## 2573 1 159
## 2574 1 0
## 2575 15 285
## 2576 19 245
## 2577 19 316
## 2578 1 69
## 2579 1 0
## 2580 1 0
## 2581 52 282
## 2582 1 24
## 2583 1 296
## 2584 1 233
## 2585 2 221
## 2586 1 342
## 2587 1 275
## 2588 1 353
## 2589 3 248
## 2590 1 73
## 2591 1 259
## 2592 3 258
## 2593 1 156
## 2594 1 129
## 2595 1 29
## 2596 1 89
## 2597 1 249
## 2598 1 16
## 2599 1 278
## 2600 1 365
## 2601 1 8
## 2602 1 0
## 2603 4 141
## 2604 1 0
## 2605 1 336
## 2606 1 130
## 2607 5 301
## 2608 2 333
## 2609 1 220
## 2610 2 364
## 2611 4 325
## 2612 1 365
## 2613 1 255
## 2614 2 308
## 2615 1 13
## 2616 1 32
## 2617 1 257
## 2618 1 2
## 2619 2 364
## 2620 3 90
## 2621 1 365
## 2622 1 187
## 2623 1 365
## 2624 2 173
## 2625 1 36
## 2626 1 280
## 2627 1 14
## 2628 2 259
## 2629 1 269
## 2630 1 0
## 2631 2 38
## 2632 52 189
## 2633 1 20
## 2634 3 0
## 2635 1 220
## 2636 2 274
## 2637 52 249
## 2638 1 315
## 2639 1 258
## 2640 1 293
## 2641 1 0
## 2642 1 87
## 2643 1 218
## 2644 2 88
## 2645 5 316
## 2646 2 253
## 2647 1 250
## 2648 1 77
## 2649 2 287
## 2650 1 297
## 2651 1 0
## 2652 1 21
## 2653 5 201
## 2654 5 47
## 2655 1 0
## 2656 1 257
## 2657 1 0
## 2658 1 345
## 2659 1 173
## 2660 2 184
## 2661 2 314
## 2662 5 319
## 2663 1 363
## 2664 2 0
## 2665 1 345
## 2666 1 41
## 2667 1 0
## 2668 1 21
## 2669 1 161
## 2670 1 365
## 2671 1 68
## 2672 1 14
## 2673 1 3
## 2674 1 364
## 2675 1 0
## 2676 1 321
## 2677 1 213
## 2678 1 180
## 2679 1 0
## 2680 1 272
## 2681 2 245
## 2682 1 36
## 2683 1 0
## 2684 3 243
## 2685 8 89
## 2686 1 0
## 2687 1 24
## 2688 1 64
## 2689 1 206
## 2690 1 47
## 2691 1 365
## 2692 2 41
## 2693 1 71
## 2694 1 321
## 2695 2 87
## 2696 1 234
## 2697 1 29
## 2698 1 16
## 2699 1 365
## 2700 1 0
## 2701 1 342
## 2702 1 365
## 2703 1 98
## 2704 1 0
## 2705 1 3
## 2706 1 211
## 2707 1 8
## 2708 1 5
## 2709 52 277
## 2710 10 363
## 2711 3 68
## 2712 2 187
## 2713 1 186
## 2714 1 365
## 2715 3 248
## 2716 5 359
## 2717 5 359
## 2718 2 340
## 2719 1 0
## 2720 1 244
## 2721 1 188
## 2722 4 167
## 2723 2 0
## 2724 1 0
## 2725 2 135
## 2726 1 10
## 2727 2 365
## 2728 5 359
## 2729 1 21
## 2730 5 359
## 2731 1 159
## 2732 1 21
## 2733 1 256
## 2734 1 0
## 2735 8 338
## 2736 1 0
## 2737 2 98
## 2738 1 88
## 2739 1 15
## 2740 19 290
## 2741 1 0
## 2742 19 210
## 2743 1 0
## 2744 1 362
## 2745 1 364
## 2746 1 185
## 2747 1 0
## 2748 2 326
## 2749 1 0
## 2750 52 343
## 2751 1 0
## 2752 1 0
## 2753 2 178
## 2754 1 167
## 2755 3 276
## 2756 15 334
## 2757 1 331
## 2758 1 272
## 2759 2 270
## 2760 1 0
## 2761 1 365
## 2762 2 333
## 2763 1 332
## 2764 1 46
## 2765 2 20
## 2766 3 296
## 2767 1 56
## 2768 4 100
## 2769 1 0
## 2770 1 0
## 2771 1 364
## 2772 1 0
## 2773 2 364
## 2774 1 49
## 2775 1 0
## 2776 3 72
## 2777 2 132
## 2778 3 209
## 2779 3 86
## 2780 1 0
## 2781 1 0
## 2782 1 328
## 2783 52 281
## 2784 1 223
## 2785 1 0
## 2786 1 13
## 2787 1 39
## 2788 4 103
## 2789 1 311
## 2790 2 252
## 2791 1 207
## 2792 1 151
## 2793 1 20
## 2794 5 365
## 2795 1 65
## 2796 3 125
## 2797 2 157
## 2798 15 343
## 2799 1 257
## 2800 1 0
## 2801 2 0
## 2802 4 340
## 2803 1 274
## 2804 1 84
## 2805 1 3
## 2806 1 0
## 2807 1 0
## 2808 8 137
## 2809 1 359
## 2810 1 34
## 2811 1 0
## 2812 1 201
## 2813 2 349
## 2814 1 361
## 2815 1 365
## 2816 1 278
## 2817 1 362
## 2818 1 0
## 2819 1 24
## 2820 1 97
## 2821 1 361
## 2822 1 312
## 2823 1 0
## 2824 1 0
## 2825 1 13
## 2826 1 360
## 2827 3 81
## 2828 2 297
## 2829 2 310
## 2830 3 362
## 2831 2 170
## 2832 1 365
## 2833 1 278
## 2834 1 0
## 2835 2 245
## 2836 2 89
## 2837 1 158
## 2838 1 73
## 2839 1 0
## 2840 3 0
## 2841 1 78
## 2842 1 299
## 2843 1 0
## 2844 5 359
## 2845 1 294
## 2846 1 37
## 2847 1 235
## 2848 1 306
## 2849 1 0
## 2850 1 182
## 2851 52 344
## 2852 2 0
## 2853 1 151
## 2854 2 365
## 2855 1 362
## 2856 1 182
## 2857 1 157
## 2858 1 89
## 2859 2 110
## 2860 1 0
## 2861 4 137
## 2862 1 12
## 2863 2 87
## 2864 1 115
## 2865 1 317
## 2866 3 1
## 2867 2 340
## 2868 1 9
## 2869 1 0
## 2870 1 309
## 2871 1 284
## 2872 1 0
## 2873 1 0
## 2874 1 71
## 2875 1 361
## 2876 3 250
## 2877 1 354
## 2878 1 31
## 2879 2 0
## 2880 1 225
## 2881 1 163
## 2882 2 259
## 2883 1 365
## 2884 1 0
## 2885 1 363
## 2886 1 169
## 2887 1 362
## 2888 3 55
## 2889 2 277
## 2890 1 0
## 2891 3 109
## 2892 3 75
## 2893 7 365
## 2894 3 275
## 2895 39 347
## 2896 4 165
## 2897 1 0
## 2898 52 341
## 2899 2 32
## 2900 1 80
## 2901 2 131
## 2902 1 0
## 2903 1 122
## 2904 1 5
## 2905 1 358
## 2906 1 35
## 2907 1 258
## 2908 2 106
## 2909 1 137
## 2910 8 57
## 2911 1 358
## 2912 39 340
## 2913 39 333
## 2914 39 327
## 2915 1 0
## 2916 1 167
## 2917 1 50
## 2918 1 0
## 2919 1 293
## 2920 3 308
## 2921 1 365
## 2922 1 219
## 2923 2 88
## 2924 1 140
## 2925 10 293
## 2926 2 314
## 2927 2 365
## 2928 2 157
## 2929 1 365
## 2930 8 361
## 2931 1 311
## 2932 8 340
## 2933 3 282
## 2934 1 0
## 2935 2 18
## 2936 1 139
## 2937 1 277
## 2938 1 0
## 2939 8 341
## 2940 1 340
## 2941 1 11
## 2942 1 0
## 2943 1 356
## 2944 1 52
## 2945 1 137
## 2946 4 77
## 2947 2 296
## 2948 1 5
## 2949 1 72
## 2950 1 27
## 2951 1 0
## 2952 1 300
## 2953 2 49
## 2954 2 327
## 2955 1 0
## 2956 2 354
## 2957 1 67
## 2958 1 145
## 2959 2 0
## 2960 1 106
## 2961 1 262
## 2962 1 70
## 2963 2 156
## 2964 2 365
## 2965 1 15
## 2966 1 0
## 2967 10 302
## 2968 10 239
## 2969 1 0
## 2970 1 256
## 2971 2 36
## 2972 1 325
## 2973 1 311
## 2974 2 154
## 2975 2 278
## 2976 1 5
## 2977 2 263
## 2978 1 304
## 2979 1 0
## 2980 1 182
## 2981 2 106
## 2982 1 0
## 2983 1 72
## 2984 1 249
## 2985 1 350
## 2986 1 203
## 2987 1 0
## 2988 1 20
## 2989 1 0
## 2990 1 216
## 2991 2 364
## 2992 1 128
## 2993 3 206
## 2994 1 0
## 2995 1 139
## 2996 52 310
## 2997 1 167
## 2998 1 191
## 2999 1 23
## 3000 1 338
## 3001 5 339
## 3002 3 177
## 3003 1 312
## 3004 3 314
## 3005 1 46
## 3006 1 263
## 3007 2 355
## 3008 1 348
## 3009 3 364
## 3010 2 0
## 3011 2 18
## 3012 1 17
## 3013 1 11
## 3014 1 0
## 3015 2 0
## 3016 1 0
## 3017 2 177
## 3018 1 0
## 3019 2 23
## 3020 2 17
## 3021 3 50
## 3022 1 233
## 3023 2 156
## 3024 1 326
## 3025 5 19
## 3026 1 58
## 3027 2 50
## 3028 1 364
## 3029 1 0
## 3030 2 310
## 3031 1 152
## 3032 1 184
## 3033 1 287
## 3034 3 329
## 3035 1 12
## 3036 1 0
## 3037 1 256
## 3038 3 251
## 3039 1 0
## 3040 1 0
## 3041 1 0
## 3042 1 0
## 3043 1 301
## 3044 1 235
## 3045 1 0
## 3046 1 73
## 3047 1 331
## 3048 1 23
## 3049 1 0
## 3050 1 0
## 3051 13 363
## 3052 2 36
## 3053 1 0
## 3054 2 147
## 3055 1 65
## 3056 1 365
## 3057 1 252
## 3058 15 314
## 3059 1 0
## 3060 1 12
## 3061 1 222
## 3062 1 0
## 3063 1 267
## 3064 1 3
## 3065 5 289
## 3066 5 216
## 3067 3 177
## 3068 1 365
## 3069 1 282
## 3070 1 0
## 3071 1 0
## 3072 3 358
## 3073 1 273
## 3074 2 242
## 3075 1 0
## 3076 2 298
## 3077 1 133
## 3078 1 214
## 3079 2 332
## 3080 5 353
## 3081 2 256
## 3082 1 113
## 3083 1 0
## 3084 1 0
## 3085 3 250
## 3086 1 0
## 3087 4 333
## 3088 1 0
## 3089 2 332
## 3090 1 188
## 3091 1 190
## 3092 1 190
## 3093 2 0
## 3094 1 0
## 3095 1 16
## 3096 2 38
## 3097 1 0
## 3098 19 327
## 3099 1 0
## 3100 1 0
## 3101 1 188
## 3102 1 0
## 3103 3 0
## 3104 1 201
## 3105 1 0
## 3106 1 357
## 3107 2 364
## 3108 1 98
## 3109 2 270
## 3110 1 365
## 3111 2 0
## 3112 1 177
## 3113 1 311
## 3114 1 55
## 3115 1 78
## 3116 1 0
## 3117 1 348
## 3118 1 45
## 3119 2 359
## 3120 1 0
## 3121 2 213
## 3122 1 281
## 3123 1 0
## 3124 1 260
## 3125 1 11
## 3126 1 316
## 3127 1 359
## 3128 1 0
## 3129 1 0
## 3130 1 188
## 3131 1 191
## 3132 1 0
## 3133 1 3
## 3134 1 0
## 3135 1 80
## 3136 1 210
## 3137 2 100
## 3138 1 0
## 3139 1 0
## 3140 1 0
## 3141 1 265
## 3142 1 199
## 3143 2 301
## 3144 3 359
## 3145 1 0
## 3146 1 20
## 3147 1 0
## 3148 1 0
## 3149 1 152
## 3150 1 0
## 3151 1 108
## 3152 1 78
## 3153 1 144
## 3154 52 346
## 3155 1 123
## 3156 1 237
## 3157 1 0
## 3158 2 108
## 3159 1 294
## 3160 1 363
## 3161 5 349
## 3162 1 312
## 3163 1 285
## 3164 1 0
## 3165 1 0
## 3166 5 155
## 3167 1 188
## 3168 1 0
## 3169 1 331
## 3170 3 350
## 3171 1 355
## 3172 1 0
## 3173 1 0
## 3174 1 0
## 3175 1 66
## 3176 1 311
## 3177 2 205
## 3178 1 172
## 3179 1 26
## 3180 52 340
## 3181 1 36
## 3182 1 224
## 3183 1 365
## 3184 3 320
## 3185 1 364
## 3186 1 281
## 3187 1 81
## 3188 4 250
## 3189 1 0
## 3190 2 0
## 3191 2 194
## 3192 1 0
## 3193 3 341
## 3194 2 365
## 3195 5 308
## 3196 1 0
## 3197 1 0
## 3198 1 0
## 3199 1 1
## 3200 3 337
## 3201 1 342
## 3202 1 0
## 3203 1 0
## 3204 2 318
## 3205 1 258
## 3206 1 32
## 3207 1 310
## 3208 3 313
## 3209 1 0
## 3210 1 17
## 3211 2 301
## 3212 3 244
## 3213 1 247
## 3214 2 230
## 3215 1 222
## 3216 3 336
## 3217 1 0
## 3218 3 0
## 3219 1 347
## 3220 1 0
## 3221 1 344
## 3222 1 363
## 3223 1 0
## 3224 1 78
## 3225 1 0
## 3226 2 2
## 3227 1 0
## 3228 2 312
## 3229 2 44
## 3230 1 264
## 3231 2 0
## 3232 1 0
## 3233 1 0
## 3234 1 215
## 3235 1 13
## 3236 1 83
## 3237 1 0
## 3238 1 0
## 3239 1 39
## 3240 1 0
## 3241 1 141
## 3242 2 166
## 3243 1 0
## 3244 1 290
## 3245 3 177
## 3246 1 16
## 3247 1 230
## 3248 3 165
## 3249 1 203
## 3250 1 245
## 3251 1 254
## 3252 1 0
## 3253 1 224
## 3254 8 324
## 3255 1 0
## 3256 5 356
## 3257 3 179
## 3258 1 288
## 3259 1 40
## 3260 1 0
## 3261 1 0
## 3262 3 0
## 3263 1 74
## 3264 1 0
## 3265 1 272
## 3266 1 363
## 3267 2 0
## 3268 1 0
## 3269 1 0
## 3270 1 0
## 3271 1 5
## 3272 1 6
## 3273 1 148
## 3274 1 0
## 3275 1 215
## 3276 1 0
## 3277 1 4
## 3278 1 14
## 3279 1 320
## 3280 1 0
## 3281 1 365
## 3282 1 0
## 3283 1 223
## 3284 1 0
## 3285 1 0
## 3286 2 250
## 3287 1 305
## 3288 4 0
## 3289 1 0
## 3290 1 312
## 3291 1 0
## 3292 1 0
## 3293 1 0
## 3294 1 78
## 3295 2 220
## 3296 6 140
## 3297 1 3
## 3298 1 133
## 3299 1 264
## 3300 1 365
## 3301 1 0
## 3302 1 291
## 3303 1 318
## 3304 1 0
## 3305 1 358
## 3306 1 0
## 3307 1 0
## 3308 1 49
## 3309 2 0
## 3310 52 277
## 3311 1 24
## 3312 1 0
## 3313 1 0
## 3314 5 295
## 3315 1 0
## 3316 1 242
## 3317 1 243
## 3318 1 325
## 3319 1 365
## 3320 1 0
## 3321 1 344
## 3322 3 133
## 3323 2 0
## 3324 1 0
## 3325 1 285
## 3326 1 0
## 3327 1 37
## 3328 15 305
## 3329 3 307
## 3330 1 0
## 3331 1 0
## 3332 1 171
## 3333 1 0
## 3334 1 0
## 3335 1 22
## 3336 1 0
## 3337 1 192
## 3338 1 0
## 3339 1 314
## 3340 1 0
## 3341 1 0
## 3342 3 332
## 3343 1 218
## 3344 2 0
## 3345 3 157
## 3346 1 0
## 3347 2 254
## 3348 1 0
## 3349 2 206
## 3350 1 263
## 3351 1 47
## 3352 1 0
## 3353 1 0
## 3354 1 247
## 3355 1 0
## 3356 2 0
## 3357 2 163
## 3358 1 0
## 3359 1 178
## 3360 2 271
## 3361 1 0
## 3362 2 188
## 3363 1 266
## 3364 1 0
## 3365 2 315
## 3366 1 0
## 3367 1 202
## 3368 1 280
## 3369 1 93
## 3370 2 169
## 3371 1 0
## 3372 1 0
## 3373 3 155
## 3374 1 0
## 3375 1 279
## 3376 1 0
## 3377 1 0
## 3378 2 365
## 3379 1 0
## 3380 1 0
## 3381 1 0
## 3382 1 0
## 3383 1 207
## 3384 1 66
## 3385 2 291
## 3386 1 0
## 3387 2 307
## 3388 1 0
## 3389 1 125
## 3390 2 359
## 3391 5 208
## 3392 1 0
## 3393 1 0
## 3394 1 11
## 3395 1 157
## 3396 5 150
## 3397 1 0
## 3398 1 13
## 3399 1 0
## 3400 2 0
## 3401 1 146
## 3402 1 0
## 3403 1 0
## 3404 1 35
## 3405 2 350
## 3406 1 0
## 3407 1 0
## 3408 3 310
## 3409 1 0
## 3410 1 323
## 3411 3 102
## 3412 1 0
## 3413 1 0
## 3414 1 0
## 3415 1 0
## 3416 1 0
## 3417 1 0
## 3418 1 0
## 3419 1 265
## 3420 1 42
## 3421 1 0
## 3422 2 274
## 3423 1 0
## 3424 1 0
## 3425 1 101
## 3426 2 208
## 3427 2 224
## 3428 2 0
## 3429 1 0
## 3430 1 9
## 3431 1 0
## 3432 3 328
## 3433 1 84
## 3434 1 0
## 3435 1 4
## 3436 1 0
## 3437 1 0
## 3438 2 164
## 3439 1 0
## 3440 1 0
## 3441 26 345
## 3442 1 0
## 3443 1 16
## 3444 1 0
## 3445 8 42
## 3446 1 0
## 3447 2 0
## 3448 1 255
## 3449 1 354
## 3450 1 0
## 3451 3 220
## 3452 1 0
## 3453 1 0
## 3454 2 112
## 3455 1 188
## 3456 3 333
## 3457 1 3
## 3458 1 33
## 3459 1 0
## 3460 1 0
## 3461 1 0
## 3462 1 0
## 3463 52 308
## 3464 1 0
## 3465 1 0
## 3466 1 220
## 3467 1 0
## 3468 1 333
## 3469 1 0
## 3470 1 282
## 3471 1 0
## 3472 2 237
## 3473 1 0
## 3474 1 0
## 3475 1 0
## 3476 1 35
## 3477 2 7
## 3478 1 0
## 3479 1 0
## 3480 1 0
## 3481 1 153
## 3482 1 220
## 3483 1 0
## 3484 1 0
## 3485 1 14
## 3486 1 0
## 3487 1 78
## 3488 1 261
## 3489 1 0
## 3490 1 84
## 3491 1 0
## 3492 1 147
## 3493 3 362
## 3494 1 0
## 3495 1 0
## 3496 1 0
## 3497 1 13
## 3498 2 0
## 3499 1 188
## 3500 4 0
## 3501 1 0
## 3502 1 0
## 3503 19 219
## 3504 1 190
## 3505 2 329
## 3506 1 0
## 3507 1 0
## 3508 1 0
## 3509 1 267
## 3510 1 33
## 3511 2 99
## 3512 1 269
## 3513 1 0
## 3514 1 42
## 3515 1 0
## 3516 1 0
## 3517 1 0
## 3518 1 0
## 3519 1 0
## 3520 1 0
## 3521 1 365
## 3522 1 0
## 3523 1 0
## 3524 1 42
## 3525 1 0
## 3526 2 0
## 3527 2 305
## 3528 1 0
## 3529 1 0
## 3530 1 0
## 3531 2 343
## 3532 52 338
## 3533 2 285
## 3534 52 322
## 3535 1 0
## 3536 2 285
## 3537 2 0
## 3538 1 359
## 3539 1 333
## 3540 1 42
## 3541 1 17
## 3542 1 270
## 3543 1 0
## 3544 2 0
## 3545 1 0
## 3546 1 217
## 3547 3 0
## 3548 1 0
## 3549 1 1
## 3550 1 0
## 3551 1 41
## 3552 1 0
## 3553 1 258
## 3554 2 364
## 3555 1 0
## 3556 2 69
## 3557 1 161
## 3558 1 0
## 3559 5 0
## 3560 2 0
## 3561 52 365
## 3562 52 343
## 3563 1 0
## 3564 1 170
## 3565 2 239
## 3566 1 0
## 3567 1 171
## 3568 1 0
## 3569 1 41
## 3570 1 0
## 3571 3 162
## 3572 39 337
## 3573 1 0
## 3574 1 26
## 3575 1 0
## 3576 1 0
## 3577 1 302
## 3578 1 365
## 3579 1 0
## 3580 1 0
## 3581 2 314
## 3582 2 336
## 3583 1 0
## 3584 1 0
## 3585 1 7
## 3586 1 299
## 3587 1 365
## 3588 1 0
## 3589 1 291
## 3590 1 0
## 3591 3 98
## 3592 1 58
## 3593 2 90
## 3594 1 89
## 3595 1 0
## 3596 1 0
## 3597 2 88
## 3598 1 0
## 3599 1 0
## 3600 2 184
## 3601 1 3
## 3602 1 0
## 3603 1 261
## 3604 1 92
## 3605 1 330
## 3606 2 42
## 3607 1 348
## 3608 1 305
## 3609 1 0
## 3610 1 48
## 3611 1 0
## 3612 1 0
## 3613 1 196
## 3614 1 55
## 3615 1 365
## 3616 2 0
## 3617 1 199
## 3618 1 0
## 3619 1 128
## 3620 1 339
## 3621 1 33
## 3622 1 365
## 3623 1 0
## 3624 1 0
## 3625 1 0
## 3626 1 0
## 3627 1 365
## 3628 1 365
## 3629 3 154
## 3630 1 39
## 3631 1 0
## 3632 1 313
## 3633 1 0
## 3634 2 301
## 3635 3 301
## 3636 1 0
## 3637 1 0
## 3638 1 0
## 3639 1 0
## 3640 1 0
## 3641 1 144
## 3642 1 0
## 3643 1 0
## 3644 3 52
## 3645 1 0
## 3646 1 6
## 3647 1 0
## 3648 1 2
## 3649 1 320
## 3650 1 250
## 3651 4 364
## 3652 1 0
## 3653 2 157
## 3654 1 315
## 3655 1 281
## 3656 1 0
## 3657 1 0
## 3658 1 313
## 3659 3 300
## 3660 1 1
## 3661 1 0
## 3662 1 0
## 3663 1 0
## 3664 1 277
## 3665 1 0
## 3666 1 7
## 3667 1 0
## 3668 1 63
## 3669 1 29
## 3670 2 270
## 3671 1 0
## 3672 1 0
## 3673 1 0
## 3674 1 0
## 3675 1 0
## 3676 2 114
## 3677 1 248
## 3678 1 273
## 3679 2 19
## 3680 52 349
## 3681 4 327
## 3682 1 340
## 3683 1 0
## 3684 1 0
## 3685 1 0
## 3686 2 241
## 3687 1 0
## 3688 1 0
## 3689 2 34
## 3690 1 0
## 3691 1 8
## 3692 1 194
## 3693 1 31
## 3694 1 365
## 3695 1 2
## 3696 1 0
## 3697 1 0
## 3698 1 0
## 3699 1 10
## 3700 1 270
## 3701 1 0
## 3702 2 265
## 3703 1 0
## 3704 1 341
## 3705 1 0
## 3706 1 304
## 3707 1 0
## 3708 2 238
## 3709 1 121
## 3710 1 0
## 3711 1 0
## 3712 1 0
## 3713 1 195
## 3714 1 0
## 3715 1 0
## 3716 1 0
## 3717 1 43
## 3718 2 0
## 3719 2 0
## 3720 1 0
## 3721 1 0
## 3722 1 0
## 3723 1 0
## 3724 1 0
## 3725 1 0
## 3726 1 248
## 3727 2 221
## 3728 1 0
## 3729 1 15
## 3730 1 0
## 3731 1 0
## 3732 1 0
## 3733 1 0
## 3734 1 10
## 3735 1 0
## 3736 1 0
## 3737 1 0
## 3738 1 310
## 3739 1 0
## 3740 1 0
## 3741 1 0
## 3742 1 0
## 3743 1 0
## 3744 2 31
## 3745 1 156
## 3746 52 330
## 3747 1 0
## 3748 2 247
## 3749 4 331
## 3750 1 256
## 3751 1 0
## 3752 1 0
## 3753 1 0
## 3754 1 0
## 3755 1 0
## 3756 1 0
## 3757 1 0
## 3758 1 0
## 3759 1 0
## 3760 6 244
## 3761 1 0
## 3762 1 260
## 3763 1 81
## 3764 1 0
## 3765 1 0
## 3766 2 13
## 3767 1 147
## 3768 52 127
## 3769 52 330
## 3770 1 270
## 3771 52 337
## 3772 1 0
## 3773 1 0
## 3774 1 362
## 3775 1 0
## 3776 1 0
## 3777 1 0
## 3778 1 0
## 3779 1 0
## 3780 1 0
## 3781 1 297
## 3782 1 0
## 3783 1 0
## 3784 1 255
## 3785 1 0
## 3786 1 0
## 3787 1 365
## 3788 1 0
## 3789 1 0
## 3790 2 170
## 3791 1 0
## 3792 1 24
## 3793 1 0
## 3794 1 0
## 3795 1 0
## 3796 1 0
## 3797 1 0
## 3798 1 113
## 3799 1 0
## 3800 1 0
## 3801 1 0
## 3802 1 239
## 3803 1 0
## 3804 1 0
## 3805 1 0
## 3806 1 0
## 3807 1 0
## 3808 1 0
## 3809 1 0
## 3810 1 338
## 3811 1 0
## 3812 2 334
## 3813 1 0
## 3814 1 365
## 3815 1 0
## 3816 5 262
## 3817 1 0
## 3818 1 0
## 3819 1 30
## 3820 1 112
## 3821 1 0
## 3822 2 8
## 3823 1 0
## 3824 1 307
## 3825 1 53
## 3826 1 0
## 3827 1 0
## 3828 1 88
## 3829 1 0
## 3830 1 0
## 3831 1 0
## 3832 2 22
## 3833 1 51
## 3834 1 346
## 3835 1 24
## 3836 52 365
## 3837 1 0
## 3838 3 365
## 3839 1 157
## 3840 1 55
## 3841 1 296
## 3842 1 0
## 3843 1 87
## 3844 1 261
## 3845 1 219
## 3846 1 0
## 3847 1 363
## 3848 1 0
## 3849 2 190
## 3850 1 264
## 3851 1 291
## 3852 1 195
## 3853 1 0
## 3854 1 35
## 3855 1 0
## 3856 1 0
## 3857 1 0
## 3858 1 0
## 3859 1 13
## 3860 2 0
## 3861 1 146
## 3862 2 103
## 3863 1 342
## 3864 2 0
## 3865 1 0
## 3866 1 0
## 3867 1 365
## 3868 1 108
## 3869 1 0
## 3870 4 22
## 3871 1 0
## 3872 1 0
## 3873 2 0
## 3874 1 0
## 3875 1 238
## 3876 2 4
## 3877 1 190
## 3878 2 223
## 3879 2 292
## 3880 1 4
## 3881 2 233
## 3882 1 0
## 3883 1 0
## 3884 1 282
## 3885 2 148
## 3886 1 364
## 3887 1 242
## 3888 3 362
## 3889 1 365
## 3890 1 83
## 3891 2 0
## 3892 1 0
## 3893 2 0
## 3894 3 110
## 3895 11 363
## 3896 1 336
## 3897 1 284
## 3898 1 35
## 3899 1 312
## 3900 1 0
## 3901 1 0
## 3902 1 0
## 3903 1 0
## 3904 2 288
## 3905 1 333
## 3906 1 276
## 3907 2 0
## 3908 1 0
## 3909 2 365
## 3910 1 0
## 3911 2 236
## 3912 1 25
## 3913 1 12
## 3914 1 269
## 3915 1 0
## 3916 1 0
## 3917 1 0
## 3918 1 179
## 3919 3 258
## 3920 1 0
## 3921 2 0
## 3922 1 205
## 3923 4 129
## 3924 2 156
## 3925 52 325
## 3926 2 327
## 3927 1 6
## 3928 1 123
## 3929 1 0
## 3930 1 0
## 3931 2 97
## 3932 4 22
## 3933 1 0
## 3934 2 83
## 3935 1 249
## 3936 2 306
## 3937 2 213
## 3938 1 0
## 3939 1 363
## 3940 2 178
## 3941 2 59
## 3942 1 26
## 3943 1 0
## 3944 2 35
## 3945 1 33
## 3946 1 262
## 3947 2 215
## 3948 52 0
## 3949 1 0
## 3950 1 0
## 3951 1 0
## 3952 1 0
## 3953 1 64
## 3954 2 221
## 3955 1 193
## 3956 1 341
## 3957 1 0
## 3958 1 0
## 3959 1 183
## 3960 1 0
## 3961 1 2
## 3962 52 303
## 3963 1 18
## 3964 1 0
## 3965 2 324
## 3966 1 0
## 3967 1 0
## 3968 1 0
## 3969 1 0
## 3970 2 149
## 3971 1 137
## 3972 52 341
## 3973 1 323
## 3974 1 276
## 3975 3 38
## 3976 1 0
## 3977 1 264
## 3978 2 30
## 3979 1 0
## 3980 1 0
## 3981 1 60
## 3982 2 274
## 3983 2 306
## 3984 1 356
## 3985 1 97
## 3986 1 294
## 3987 1 8
## 3988 1 0
## 3989 1 0
## 3990 1 0
## 3991 1 0
## 3992 1 0
## 3993 1 89
## 3994 1 0
## 3995 3 14
## 3996 1 0
## 3997 1 151
## 3998 4 180
## 3999 2 23
## 4000 2 308
## 4001 1 157
## 4002 1 0
## 4003 1 319
## 4004 2 0
## 4005 3 267
## 4006 1 282
## 4007 1 346
## 4008 1 0
## 4009 1 0
## 4010 1 0
## 4011 2 78
## 4012 1 0
## 4013 1 0
## 4014 1 0
## 4015 1 0
## 4016 1 0
## 4017 4 60
## 4018 1 0
## 4019 4 280
## 4020 4 120
## 4021 4 74
## 4022 1 61
## 4023 1 0
## 4024 5 171
## 4025 1 0
## 4026 1 0
## 4027 1 0
## 4028 1 0
## 4029 1 0
## 4030 1 281
## 4031 2 0
## 4032 1 0
## 4033 2 279
## 4034 1 0
## 4035 1 0
## 4036 1 313
## 4037 1 111
## 4038 2 302
## 4039 1 0
## 4040 1 0
## 4041 1 261
## 4042 1 109
## 4043 1 0
## 4044 1 0
## 4045 2 0
## 4046 1 64
## 4047 1 42
## 4048 1 0
## 4049 1 0
## 4050 1 0
## 4051 1 0
## 4052 1 56
## 4053 1 324
## 4054 2 21
## 4055 1 0
## 4056 1 310
## 4057 1 0
## 4058 1 365
## 4059 2 213
## 4060 1 0
## 4061 1 0
## 4062 1 6
## 4063 3 0
## 4064 1 0
## 4065 1 66
## 4066 1 0
## 4067 1 287
## 4068 1 173
## 4069 1 0
## 4070 1 0
## 4071 1 0
## 4072 1 327
## 4073 1 188
## 4074 1 0
## 4075 2 0
## 4076 1 0
## 4077 29 326
## 4078 29 331
## 4079 1 0
## 4080 2 86
## 4081 1 0
## 4082 1 0
## 4083 1 0
## 4084 1 0
## 4085 2 151
## 4086 2 0
## 4087 29 329
## 4088 29 308
## 4089 29 255
## 4090 1 0
## 4091 1 118
## 4092 1 0
## 4093 1 0
## 4094 1 176
## 4095 1 365
## 4096 1 247
## 4097 5 158
## 4098 1 0
## 4099 1 359
## 4100 1 31
## 4101 1 0
## 4102 1 0
## 4103 1 85
## 4104 2 0
## 4105 29 205
## 4106 3 20
## 4107 1 0
## 4108 1 0
## 4109 1 269
## 4110 2 207
## 4111 1 6
## 4112 5 300
## 4113 1 73
## 4114 4 313
## 4115 2 135
## 4116 1 0
## 4117 1 170
## 4118 2 257
## 4119 1 281
## 4120 1 32
## 4121 1 0
## 4122 1 0
## 4123 2 0
## 4124 1 223
## 4125 1 60
## 4126 2 0
## 4127 1 187
## 4128 1 139
## 4129 3 280
## 4130 1 0
## 4131 3 342
## 4132 1 0
## 4133 1 0
## 4134 1 0
## 4135 1 89
## 4136 2 0
## 4137 1 0
## 4138 1 334
## 4139 1 220
## 4140 1 365
## 4141 2 292
## 4142 1 0
## 4143 1 0
## 4144 1 0
## 4145 4 103
## 4146 1 348
## 4147 2 0
## 4148 1 39
## 4149 3 296
## 4150 1 0
## 4151 1 12
## 4152 1 365
## 4153 1 0
## 4154 1 281
## 4155 1 305
## 4156 1 284
## 4157 1 98
## 4158 1 0
## 4159 1 0
## 4160 1 0
## 4161 2 112
## 4162 12 343
## 4163 1 318
## 4164 2 0
## 4165 8 107
## 4166 1 140
## 4167 1 281
## 4168 3 307
## 4169 3 341
## 4170 1 3
## 4171 3 38
## 4172 1 0
## 4173 1 0
## 4174 52 341
## 4175 1 0
## 4176 1 0
## 4177 1 0
## 4178 1 0
## 4179 52 327
## 4180 1 81
## 4181 2 336
## 4182 1 0
## 4183 2 45
## 4184 2 266
## 4185 3 157
## 4186 1 0
## 4187 1 0
## 4188 1 64
## 4189 1 311
## 4190 2 0
## 4191 1 165
## 4192 1 0
## 4193 1 313
## 4194 1 0
## 4195 1 0
## 4196 1 248
## 4197 1 0
## 4198 1 0
## 4199 1 0
## 4200 1 0
## 4201 1 0
## 4202 2 0
## 4203 2 275
## 4204 1 0
## 4205 1 29
## 4206 1 0
## 4207 1 0
## 4208 1 324
## 4209 5 30
## 4210 1 248
## 4211 1 88
## 4212 4 280
## 4213 1 76
## 4214 1 0
## 4215 1 18
## 4216 29 298
## 4217 2 99
## 4218 4 171
## 4219 4 333
## 4220 1 13
## 4221 1 0
## 4222 1 49
## 4223 3 357
## 4224 1 0
## 4225 1 157
## 4226 1 0
## 4227 1 365
## 4228 1 282
## 4229 1 211
## 4230 1 262
## 4231 1 88
## 4232 1 0
## 4233 1 129
## 4234 1 53
## 4235 1 0
## 4236 1 0
## 4237 1 365
## 4238 2 331
## 4239 1 0
## 4240 1 24
## 4241 1 304
## 4242 4 14
## 4243 2 111
## 4244 1 99
## 4245 1 15
## 4246 3 0
## 4247 1 365
## 4248 3 0
## 4249 1 0
## 4250 1 0
## 4251 1 333
## 4252 1 0
## 4253 2 171
## 4254 4 355
## 4255 1 0
## 4256 1 0
## 4257 1 0
## 4258 1 238
## 4259 1 0
## 4260 1 0
## 4261 1 219
## 4262 2 117
## 4263 1 0
## 4264 1 0
## 4265 1 170
## 4266 2 0
## 4267 1 16
## 4268 29 265
## 4269 3 209
## 4270 1 0
## 4271 6 168
## 4272 1 0
## 4273 1 32
## 4274 52 336
## 4275 15 307
## 4276 1 198
## 4277 1 0
## 4278 1 90
## 4279 1 0
## 4280 1 107
## 4281 1 267
## 4282 1 269
## 4283 1 365
## 4284 1 0
## 4285 52 311
## 4286 1 0
## 4287 1 53
## 4288 4 70
## 4289 1 0
## 4290 1 0
## 4291 1 0
## 4292 1 0
## 4293 2 283
## 4294 1 0
## 4295 1 317
## 4296 8 139
## 4297 1 87
## 4298 29 336
## 4299 1 0
## 4300 8 90
## 4301 3 0
## 4302 1 0
## 4303 1 59
## 4304 1 118
## 4305 1 13
## 4306 1 30
## 4307 1 311
## 4308 1 224
## 4309 29 339
## 4310 1 296
## 4311 11 363
## 4312 2 126
## 4313 2 96
## 4314 2 0
## 4315 1 0
## 4316 3 151
## 4317 1 365
## 4318 1 0
## 4319 1 214
## 4320 2 0
## 4321 1 180
## 4322 2 233
## 4323 1 184
## 4324 4 185
## 4325 1 264
## 4326 1 161
## 4327 1 254
## 4328 1 41
## 4329 4 309
## 4330 1 221
## 4331 1 0
## 4332 1 0
## 4333 1 0
## 4334 1 0
## 4335 1 0
## 4336 1 93
## 4337 1 0
## 4338 1 0
## 4339 1 0
## 4340 2 279
## 4341 1 0
## 4342 5 308
## 4343 1 0
## 4344 1 0
## 4345 1 0
## 4346 1 363
## 4347 2 99
## 4348 1 0
## 4349 3 269
## 4350 1 89
## 4351 1 21
## 4352 1 0
## 4353 1 0
## 4354 1 290
## 4355 2 78
## 4356 1 0
## 4357 1 9
## 4358 1 187
## 4359 1 254
## 4360 1 0
## 4361 2 52
## 4362 1 0
## 4363 1 0
## 4364 1 0
## 4365 1 283
## 4366 1 197
## 4367 2 189
## 4368 1 0
## 4369 1 0
## 4370 1 0
## 4371 1 0
## 4372 2 291
## 4373 1 291
## 4374 1 220
## 4375 18 364
## 4376 1 284
## 4377 11 365
## 4378 11 365
## 4379 1 0
## 4380 2 297
## 4381 1 252
## 4382 1 365
## 4383 1 4
## 4384 1 346
## 4385 1 0
## 4386 1 0
## 4387 1 174
## 4388 11 365
## 4389 2 25
## 4390 2 237
## 4391 1 135
## 4392 1 0
## 4393 1 0
## 4394 1 0
## 4395 1 0
## 4396 2 83
## 4397 1 341
## 4398 1 288
## 4399 1 0
## 4400 29 308
## 4401 1 278
## 4402 2 0
## 4403 1 0
## 4404 1 296
## 4405 29 326
## 4406 2 113
## 4407 1 0
## 4408 2 220
## 4409 1 294
## 4410 29 335
## 4411 52 317
## 4412 1 187
## 4413 6 310
## 4414 1 54
## 4415 1 0
## 4416 2 41
## 4417 52 365
## 4418 1 237
## 4419 1 125
## 4420 1 365
## 4421 1 0
## 4422 1 202
## 4423 1 0
## 4424 1 78
## 4425 1 21
## 4426 3 319
## 4427 1 297
## 4428 1 0
## 4429 1 14
## 4430 1 95
## 4431 1 107
## 4432 2 188
## 4433 1 0
## 4434 1 182
## 4435 1 0
## 4436 1 0
## 4437 52 365
## 4438 19 97
## 4439 1 0
## 4440 1 39
## 4441 1 364
## 4442 52 337
## 4443 3 188
## 4444 1 31
## 4445 1 90
## 4446 52 342
## 4447 1 0
## 4448 1 0
## 4449 1 278
## 4450 52 362
## 4451 1 18
## 4452 1 0
## 4453 1 67
## 4454 52 311
## 4455 52 365
## 4456 1 0
## 4457 1 254
## 4458 1 0
## 4459 1 0
## 4460 6 130
## 4461 1 332
## 4462 19 234
## 4463 1 0
## 4464 1 0
## 4465 1 0
## 4466 1 32
## 4467 52 295
## 4468 2 14
## 4469 1 0
## 4470 1 0
## 4471 1 2
## 4472 1 0
## 4473 29 209
## 4474 29 188
## 4475 3 325
## 4476 2 0
## 4477 1 0
## 4478 1 12
## 4479 1 3
## 4480 1 269
## 4481 1 0
## 4482 3 287
## 4483 2 34
## 4484 1 0
## 4485 1 0
## 4486 1 37
## 4487 1 20
## 4488 2 25
## 4489 52 365
## 4490 1 0
## 4491 4 292
## 4492 1 336
## 4493 2 315
## 4494 2 5
## 4495 1 157
## 4496 1 0
## 4497 1 0
## 4498 1 138
## 4499 1 203
## 4500 1 0
## 4501 2 105
## 4502 1 321
## 4503 1 0
## 4504 1 0
## 4505 1 0
## 4506 1 0
## 4507 1 38
## 4508 1 158
## 4509 1 0
## 4510 2 93
## 4511 2 87
## 4512 1 0
## 4513 1 0
## 4514 1 0
## 4515 1 180
## 4516 1 0
## 4517 52 311
## 4518 1 0
## 4519 1 7
## 4520 1 282
## 4521 1 0
## 4522 2 10
## 4523 1 254
## 4524 1 0
## 4525 1 0
## 4526 2 307
## 4527 1 0
## 4528 1 365
## 4529 1 282
## 4530 2 16
## 4531 3 363
## 4532 1 7
## 4533 1 0
## 4534 2 218
## 4535 1 0
## 4536 2 0
## 4537 1 0
## 4538 2 365
## 4539 1 0
## 4540 1 204
## 4541 1 221
## 4542 1 26
## 4543 1 0
## 4544 1 0
## 4545 1 188
## 4546 2 0
## 4547 1 0
## 4548 1 188
## 4549 1 12
## 4550 1 0
## 4551 1 34
## 4552 1 0
## 4553 1 0
## 4554 1 0
## 4555 1 0
## 4556 3 363
## 4557 1 44
## 4558 1 142
## 4559 1 7
## 4560 1 323
## 4561 2 162
## 4562 1 0
## 4563 1 0
## 4564 1 214
## 4565 1 0
## 4566 5 363
## 4567 1 0
## 4568 1 209
## 4569 4 358
## 4570 1 13
## 4571 1 106
## 4572 2 0
## 4573 1 300
## 4574 2 11
## 4575 2 268
## 4576 2 339
## 4577 1 0
## 4578 1 140
## 4579 1 0
## 4580 2 56
## 4581 1 0
## 4582 1 273
## 4583 3 275
## 4584 1 54
## 4585 4 179
## 4586 1 0
## 4587 1 125
## 4588 1 0
## 4589 1 0
## 4590 1 197
## 4591 2 177
## 4592 1 365
## 4593 1 80
## 4594 1 0
## 4595 3 309
## 4596 1 0
## 4597 1 0
## 4598 1 0
## 4599 1 15
## 4600 1 0
## 4601 1 35
## 4602 2 351
## 4603 1 0
## 4604 1 0
## 4605 1 43
## 4606 1 264
## 4607 1 0
## 4608 1 9
## 4609 2 0
## 4610 1 0
## 4611 1 249
## 4612 1 365
## 4613 1 0
## 4614 4 64
## 4615 1 1
## 4616 1 0
## 4617 1 0
## 4618 1 0
## 4619 1 0
## 4620 8 17
## 4621 1 101
## 4622 1 321
## 4623 1 0
## 4624 1 0
## 4625 1 0
## 4626 1 0
## 4627 1 285
## 4628 1 0
## 4629 3 188
## 4630 1 0
## 4631 1 0
## 4632 1 6
## 4633 1 0
## 4634 1 227
## 4635 2 122
## 4636 1 0
## 4637 2 80
## 4638 1 0
## 4639 1 0
## 4640 1 0
## 4641 21 365
## 4642 1 0
## 4643 1 0
## 4644 1 0
## 4645 1 0
## 4646 1 0
## 4647 1 359
## 4648 1 9
## 4649 2 254
## 4650 1 234
## 4651 1 0
## 4652 1 316
## 4653 1 0
## 4654 1 0
## 4655 1 0
## 4656 1 0
## 4657 1 53
## 4658 5 1
## 4659 1 13
## 4660 1 312
## 4661 2 30
## 4662 5 334
## 4663 1 0
## 4664 3 318
## 4665 3 341
## 4666 1 0
## 4667 2 6
## 4668 1 222
## 4669 1 0
## 4670 1 0
## 4671 1 0
## 4672 1 48
## 4673 1 260
## 4674 2 0
## 4675 1 0
## 4676 1 0
## 4677 1 75
## 4678 1 172
## 4679 1 0
## 4680 1 0
## 4681 1 91
## 4682 1 231
## 4683 1 0
## 4684 1 353
## 4685 3 162
## 4686 8 170
## 4687 1 0
## 4688 1 0
## 4689 1 173
## 4690 1 0
## 4691 2 10
## 4692 1 32
## 4693 2 7
## 4694 2 228
## 4695 2 352
## 4696 1 20
## 4697 1 0
## 4698 1 203
## 4699 1 32
## 4700 1 235
## 4701 1 193
## 4702 2 262
## 4703 1 219
## 4704 1 0
## 4705 1 0
## 4706 1 306
## 4707 6 240
## 4708 3 359
## 4709 3 188
## 4710 2 253
## 4711 1 362
## 4712 1 0
## 4713 1 0
## 4714 1 0
## 4715 2 125
## 4716 1 5
## 4717 1 0
## 4718 1 0
## 4719 1 0
## 4720 1 331
## 4721 4 299
## 4722 1 76
## 4723 1 0
## 4724 1 70
## 4725 1 0
## 4726 2 40
## 4727 1 0
## 4728 1 0
## 4729 2 281
## 4730 1 2
## 4731 1 0
## 4732 1 1
## 4733 19 329
## 4734 39 291
## 4735 3 0
## 4736 1 365
## 4737 1 0
## 4738 11 282
## 4739 1 348
## 4740 1 0
## 4741 1 346
## 4742 1 86
## 4743 2 0
## 4744 1 351
## 4745 1 0
## 4746 2 363
## 4747 1 189
## 4748 1 0
## 4749 1 0
## 4750 1 25
## 4751 1 0
## 4752 1 0
## 4753 52 157
## 4754 1 0
## 4755 1 299
## 4756 1 31
## 4757 1 0
## 4758 1 0
## 4759 1 6
## 4760 1 0
## 4761 1 0
## 4762 1 347
## 4763 2 0
## 4764 1 83
## 4765 1 0
## 4766 1 0
## 4767 1 0
## 4768 4 188
## 4769 2 179
## 4770 1 0
## 4771 1 0
## 4772 1 260
## 4773 1 0
## 4774 1 0
## 4775 1 0
## 4776 1 222
## 4777 1 0
## 4778 2 0
## 4779 2 110
## 4780 1 0
## 4781 2 68
## 4782 9 365
## 4783 1 186
## 4784 4 77
## 4785 1 0
## 4786 1 0
## 4787 4 270
## 4788 1 3
## 4789 2 271
## 4790 4 187
## 4791 4 177
## 4792 4 258
## 4793 1 0
## 4794 1 0
## 4795 1 363
## 4796 4 240
## 4797 1 0
## 4798 1 0
## 4799 1 270
## 4800 2 13
## 4801 1 0
## 4802 1 0
## 4803 1 245
## 4804 1 15
## 4805 1 310
## 4806 2 12
## 4807 1 358
## 4808 1 170
## 4809 1 41
## 4810 3 21
## 4811 1 0
## 4812 1 0
## 4813 1 0
## 4814 1 18
## 4815 1 77
## 4816 1 365
## 4817 1 113
## 4818 1 0
## 4819 1 365
## 4820 1 87
## 4821 1 342
## 4822 1 0
## 4823 1 0
## 4824 1 0
## 4825 1 339
## 4826 2 0
## 4827 4 172
## 4828 1 4
## 4829 2 16
## 4830 1 0
## 4831 2 365
## 4832 1 0
## 4833 1 0
## 4834 1 0
## 4835 2 0
## 4836 2 82
## 4837 2 0
## 4838 1 49
## 4839 1 0
## 4840 1 313
## 4841 1 341
## 4842 2 0
## 4843 1 0
## 4844 3 198
## 4845 1 188
## 4846 1 364
## 4847 1 0
## 4848 1 47
## 4849 1 0
## 4850 1 0
## 4851 1 0
## 4852 1 0
## 4853 1 0
## 4854 2 211
## 4855 1 0
## 4856 1 0
## 4857 2 263
## 4858 1 8
## 4859 1 0
## 4860 1 0
## 4861 1 252
## 4862 1 258
## 4863 1 266
## 4864 1 0
## 4865 10 281
## 4866 10 365
## 4867 3 28
## 4868 2 306
## 4869 2 324
## 4870 1 0
## 4871 1 269
## 4872 1 2
## 4873 1 0
## 4874 3 5
## 4875 2 365
## 4876 1 0
## 4877 2 85
## 4878 1 0
## 4879 1 0
## 4880 1 127
## 4881 1 0
## 4882 1 0
## 4883 1 0
## 4884 18 352
## 4885 18 358
## 4886 1 251
## 4887 2 223
## 4888 1 268
## 4889 1 0
## 4890 2 283
## 4891 12 342
## 4892 1 0
## 4893 1 365
## 4894 1 196
## 4895 1 0
## 4896 1 188
## 4897 1 0
## 4898 1 0
## 4899 1 358
## 4900 1 17
## 4901 1 358
## 4902 1 0
## 4903 1 0
## 4904 1 0
## 4905 1 58
## 4906 1 191
## 4907 1 125
## 4908 1 0
## 4909 3 253
## 4910 52 343
## 4911 1 0
## 4912 1 6
## 4913 1 323
## 4914 1 0
## 4915 2 82
## 4916 1 0
## 4917 1 64
## 4918 1 87
## 4919 1 365
## 4920 1 332
## 4921 5 333
## 4922 1 308
## 4923 1 0
## 4924 1 257
## 4925 2 46
## 4926 1 282
## 4927 1 318
## 4928 1 91
## 4929 2 80
## 4930 1 0
## 4931 4 269
## 4932 2 355
## 4933 1 362
## 4934 1 0
## 4935 2 132
## 4936 3 264
## 4937 1 0
## 4938 1 0
## 4939 1 0
## 4940 1 0
## 4941 1 3
## 4942 1 282
## 4943 2 0
## 4944 2 0
## 4945 1 364
## 4946 1 0
## 4947 1 0
## 4948 1 310
## 4949 1 0
## 4950 1 0
## 4951 2 0
## 4952 1 191
## 4953 1 303
## 4954 1 0
## 4955 1 365
## 4956 1 220
## 4957 4 365
## 4958 1 0
## 4959 1 336
## 4960 2 90
## 4961 1 329
## 4962 3 14
## 4963 4 281
## 4964 1 0
## 4965 1 0
## 4966 1 0
## 4967 19 308
## 4968 1 304
## 4969 1 0
## 4970 1 0
## 4971 1 0
## 4972 1 28
## 4973 1 248
## 4974 1 255
## 4975 1 4
## 4976 2 314
## 4977 1 0
## 4978 1 183
## 4979 1 0
## 4980 4 31
## 4981 1 12
## 4982 1 0
## 4983 1 0
## 4984 1 0
## 4985 1 0
## 4986 1 156
## 4987 3 365
## 4988 1 0
## 4989 1 235
## 4990 1 0
## 4991 2 186
## 4992 1 0
## 4993 11 309
## 4994 1 50
## 4995 1 0
## 4996 8 346
## 4997 1 0
## 4998 1 0
## 4999 1 0
## 5000 1 328
## 5001 1 204
## 5002 2 290
## 5003 9 329
## 5004 1 365
## 5005 1 0
## 5006 2 309
## 5007 1 60
## 5008 1 0
## 5009 1 257
## 5010 1 0
## 5011 1 0
## 5012 1 0
## 5013 1 0
## 5014 1 179
## 5015 1 1
## 5016 1 0
## 5017 1 261
## 5018 1 0
## 5019 3 109
## 5020 1 90
## 5021 1 143
## 5022 1 0
## 5023 1 344
## 5024 1 0
## 5025 1 290
## 5026 2 157
## 5027 1 0
## 5028 1 0
## 5029 1 0
## 5030 1 0
## 5031 1 364
## 5032 1 0
## 5033 1 0
## 5034 1 227
## 5035 1 0
## 5036 8 352
## 5037 1 0
## 5038 1 8
## 5039 8 350
## 5040 8 331
## 5041 4 346
## 5042 2 0
## 5043 1 0
## 5044 1 0
## 5045 6 88
## 5046 1 299
## 5047 3 352
## 5048 29 308
## 5049 8 80
## 5050 3 332
## 5051 8 43
## 5052 2 365
## 5053 3 92
## 5054 1 0
## 5055 1 0
## 5056 2 158
## 5057 2 0
## 5058 1 0
## 5059 1 0
## 5060 1 253
## 5061 3 332
## 5062 3 273
## 5063 1 192
## 5064 1 242
## 5065 1 0
## 5066 19 245
## 5067 52 365
## 5068 1 0
## 5069 1 0
## 5070 1 0
## 5071 1 2
## 5072 1 0
## 5073 2 363
## 5074 3 19
## 5075 7 66
## 5076 1 89
## 5077 2 84
## 5078 1 0
## 5079 39 333
## 5080 1 0
## 5081 1 0
## 5082 39 331
## 5083 52 342
## 5084 1 365
## 5085 52 323
## 5086 3 0
## 5087 1 0
## 5088 1 0
## 5089 3 318
## 5090 2 129
## 5091 2 0
## 5092 1 0
## 5093 1 358
## 5094 96 281
## 5095 1 362
## 5096 1 55
## 5097 1 0
## 5098 1 0
## 5099 1 295
## 5100 1 0
## 5101 1 0
## 5102 29 341
## 5103 1 355
## 5104 1 12
## 5105 1 302
## 5106 1 0
## 5107 21 342
## 5108 1 0
## 5109 1 0
## 5110 1 365
## 5111 1 32
## 5112 1 348
## 5113 1 0
## 5114 4 261
## 5115 1 321
## 5116 3 227
## 5117 3 244
## 5118 1 365
## 5119 1 0
## 5120 1 19
## 5121 1 0
## 5122 1 0
## 5123 1 226
## 5124 96 312
## 5125 1 2
## 5126 1 0
## 5127 1 0
## 5128 1 300
## 5129 1 0
## 5130 2 166
## 5131 1 9
## 5132 1 365
## 5133 1 0
## 5134 1 0
## 5135 1 0
## 5136 1 174
## 5137 1 25
## 5138 5 153
## 5139 5 132
## 5140 5 169
## 5141 1 0
## 5142 1 37
## 5143 1 0
## 5144 1 0
## 5145 2 0
## 5146 1 0
## 5147 39 331
## 5148 1 365
## 5149 2 171
## 5150 1 0
## 5151 1 66
## 5152 1 0
## 5153 1 0
## 5154 1 23
## 5155 2 319
## 5156 2 38
## 5157 1 219
## 5158 1 179
## 5159 1 317
## 5160 1 0
## 5161 1 0
## 5162 1 0
## 5163 1 0
## 5164 2 365
## 5165 1 0
## 5166 1 0
## 5167 1 0
## 5168 1 247
## 5169 52 188
## 5170 1 0
## 5171 1 14
## 5172 1 0
## 5173 2 0
## 5174 2 0
## 5175 2 0
## 5176 1 0
## 5177 1 252
## 5178 14 220
## 5179 1 0
## 5180 1 9
## 5181 1 0
## 5182 5 138
## 5183 1 0
## 5184 1 0
## 5185 1 6
## 5186 5 156
## 5187 1 9
## 5188 1 279
## 5189 1 0
## 5190 1 0
## 5191 1 0
## 5192 2 121
## 5193 1 8
## 5194 1 0
## 5195 52 336
## 5196 1 0
## 5197 1 291
## 5198 1 0
## 5199 1 0
## 5200 1 285
## 5201 1 198
## 5202 1 280
## 5203 1 122
## 5204 1 216
## 5205 1 242
## 5206 26 335
## 5207 5 345
## 5208 1 60
## 5209 1 32
## 5210 1 90
## 5211 1 166
## 5212 1 80
## 5213 2 283
## 5214 1 255
## 5215 2 329
## 5216 1 0
## 5217 2 355
## 5218 1 343
## 5219 1 0
## 5220 2 254
## 5221 2 266
## 5222 1 0
## 5223 1 297
## 5224 1 13
## 5225 1 0
## 5226 4 335
## 5227 2 206
## 5228 1 245
## 5229 1 0
## 5230 1 328
## 5231 1 365
## 5232 1 0
## 5233 1 364
## 5234 1 238
## 5235 8 101
## 5236 8 135
## 5237 2 88
## 5238 21 278
## 5239 1 0
## 5240 1 363
## 5241 1 0
## 5242 2 19
## 5243 2 153
## 5244 39 252
## 5245 1 280
## 5246 2 233
## 5247 1 1
## 5248 18 318
## 5249 1 336
## 5250 1 0
## 5251 1 35
## 5252 1 0
## 5253 1 0
## 5254 2 59
## 5255 2 232
## 5256 1 0
## 5257 1 295
## 5258 1 0
## 5259 2 355
## 5260 1 10
## 5261 1 44
## 5262 1 4
## 5263 1 0
## 5264 1 13
## 5265 1 0
## 5266 1 35
## 5267 2 3
## 5268 1 87
## 5269 1 0
## 5270 52 365
## 5271 1 188
## 5272 1 308
## 5273 1 0
## 5274 1 0
## 5275 3 332
## 5276 3 358
## 5277 2 0
## 5278 2 0
## 5279 52 340
## 5280 1 54
## 5281 39 313
## 5282 1 365
## 5283 39 188
## 5284 1 0
## 5285 1 71
## 5286 1 0
## 5287 96 342
## 5288 2 255
## 5289 1 0
## 5290 1 27
## 5291 1 0
## 5292 18 237
## 5293 2 322
## 5294 1 297
## 5295 1 297
## 5296 1 0
## 5297 1 0
## 5298 3 278
## 5299 1 0
## 5300 1 0
## 5301 1 197
## 5302 1 0
## 5303 1 334
## 5304 1 0
## 5305 1 0
## 5306 1 31
## 5307 1 0
## 5308 3 327
## 5309 4 308
## 5310 7 71
## 5311 4 311
## 5312 7 58
## 5313 1 0
## 5314 1 0
## 5315 1 300
## 5316 1 0
## 5317 1 58
## 5318 1 0
## 5319 1 0
## 5320 1 0
## 5321 1 4
## 5322 1 0
## 5323 2 0
## 5324 1 188
## 5325 1 88
## 5326 1 0
## 5327 1 0
## 5328 2 118
## 5329 1 0
## 5330 1 0
## 5331 1 0
## 5332 1 225
## 5333 1 354
## 5334 52 365
## 5335 1 0
## 5336 1 353
## 5337 1 0
## 5338 1 336
## 5339 1 0
## 5340 1 0
## 5341 5 337
## 5342 5 358
## 5343 1 10
## 5344 2 0
## 5345 1 288
## 5346 1 0
## 5347 1 0
## 5348 1 0
## 5349 1 88
## 5350 1 0
## 5351 1 0
## 5352 1 365
## 5353 1 0
## 5354 1 33
## 5355 52 365
## 5356 14 331
## 5357 6 79
## 5358 96 310
## 5359 1 0
## 5360 5 318
## 5361 1 10
## 5362 1 0
## 5363 1 294
## 5364 1 0
## 5365 1 4
## 5366 1 90
## 5367 1 14
## 5368 1 0
## 5369 1 0
## 5370 1 365
## 5371 1 0
## 5372 1 0
## 5373 96 281
## 5374 96 283
## 5375 1 196
## 5376 2 159
## 5377 1 0
## 5378 2 127
## 5379 1 267
## 5380 1 0
## 5381 1 0
## 5382 2 207
## 5383 1 178
## 5384 1 0
## 5385 6 92
## 5386 1 365
## 5387 1 0
## 5388 1 256
## 5389 1 0
## 5390 2 0
## 5391 1 35
## 5392 1 0
## 5393 1 365
## 5394 1 270
## 5395 1 0
## 5396 1 0
## 5397 2 159
## 5398 1 0
## 5399 1 0
## 5400 1 0
## 5401 1 365
## 5402 1 64
## 5403 2 190
## 5404 1 311
## 5405 1 0
## 5406 3 365
## 5407 2 0
## 5408 1 0
## 5409 2 21
## 5410 2 347
## 5411 3 0
## 5412 1 0
## 5413 1 0
## 5414 1 365
## 5415 3 365
## 5416 1 0
## 5417 52 258
## 5418 1 219
## 5419 1 0
## 5420 2 155
## 5421 19 204
## 5422 29 282
## 5423 1 0
## 5424 1 85
## 5425 3 364
## 5426 1 0
## 5427 1 0
## 5428 4 189
## 5429 2 361
## 5430 1 0
## 5431 1 83
## 5432 1 0
## 5433 1 0
## 5434 1 0
## 5435 1 0
## 5436 1 271
## 5437 1 7
## 5438 1 0
## 5439 1 0
## 5440 1 192
## 5441 2 0
## 5442 1 0
## 5443 1 282
## 5444 1 124
## 5445 1 0
## 5446 1 3
## 5447 1 19
## 5448 3 0
## 5449 1 235
## 5450 1 0
## 5451 1 298
## 5452 1 100
## 5453 2 0
## 5454 1 9
## 5455 1 121
## 5456 3 0
## 5457 2 188
## 5458 1 0
## 5459 3 350
## 5460 1 365
## 5461 1 0
## 5462 1 302
## 5463 1 0
## 5464 2 8
## 5465 1 0
## 5466 1 0
## 5467 7 332
## 5468 7 349
## 5469 3 292
## 5470 1 283
## 5471 9 333
## 5472 1 214
## 5473 1 0
## 5474 1 180
## 5475 1 0
## 5476 1 0
## 5477 1 0
## 5478 2 180
## 5479 1 263
## 5480 1 0
## 5481 1 36
## 5482 3 330
## 5483 1 19
## 5484 1 0
## 5485 1 364
## 5486 1 0
## 5487 3 326
## 5488 1 0
## 5489 1 0
## 5490 52 342
## 5491 1 0
## 5492 1 0
## 5493 1 0
## 5494 1 83
## 5495 1 0
## 5496 3 219
## 5497 1 0
## 5498 1 294
## 5499 1 0
## 5500 1 88
## 5501 1 364
## 5502 2 234
## 5503 1 315
## 5504 1 90
## 5505 1 0
## 5506 1 301
## 5507 52 335
## 5508 39 319
## 5509 1 137
## 5510 1 285
## 5511 1 226
## 5512 1 241
## 5513 2 51
## 5514 3 303
## 5515 1 0
## 5516 1 0
## 5517 1 0
## 5518 3 344
## 5519 3 0
## 5520 1 0
## 5521 1 269
## 5522 1 0
## 5523 1 0
## 5524 1 2
## 5525 1 0
## 5526 1 123
## 5527 1 9
## 5528 1 9
## 5529 10 359
## 5530 1 0
## 5531 1 259
## 5532 1 58
## 5533 1 0
## 5534 1 0
## 5535 1 0
## 5536 1 66
## 5537 2 0
## 5538 2 260
## 5539 5 107
## 5540 1 0
## 5541 1 268
## 5542 1 261
## 5543 1 0
## 5544 4 71
## 5545 3 254
## 5546 1 360
## 5547 1 293
## 5548 2 59
## 5549 1 88
## 5550 1 0
## 5551 1 322
## 5552 1 198
## 5553 6 185
## 5554 1 358
## 5555 1 345
## 5556 1 198
## 5557 1 0
## 5558 1 0
## 5559 1 0
## 5560 1 0
## 5561 1 0
## 5562 1 84
## 5563 1 311
## 5564 1 0
## 5565 1 16
## 5566 1 0
## 5567 1 0
## 5568 2 340
## 5569 4 0
## 5570 3 126
## 5571 1 288
## 5572 1 0
## 5573 1 254
## 5574 1 0
## 5575 1 278
## 5576 2 6
## 5577 2 12
## 5578 5 339
## 5579 1 0
## 5580 1 0
## 5581 2 364
## 5582 1 0
## 5583 1 251
## 5584 1 0
## 5585 1 225
## 5586 2 0
## 5587 10 357
## 5588 1 352
## 5589 1 17
## 5590 1 1
## 5591 5 273
## 5592 1 0
## 5593 2 257
## 5594 1 303
## 5595 1 0
## 5596 2 287
## 5597 1 0
## 5598 2 0
## 5599 1 30
## 5600 1 309
## 5601 1 0
## 5602 2 304
## 5603 1 0
## 5604 1 0
## 5605 1 0
## 5606 1 158
## 5607 1 0
## 5608 1 221
## 5609 1 250
## 5610 1 32
## 5611 1 300
## 5612 1 355
## 5613 13 364
## 5614 1 0
## 5615 1 279
## 5616 1 0
## 5617 1 36
## 5618 1 226
## 5619 2 287
## 5620 1 96
## 5621 2 365
## 5622 1 224
## 5623 1 0
## 5624 2 363
## 5625 5 190
## 5626 13 365
## 5627 1 1
## 5628 1 0
## 5629 2 342
## 5630 1 0
## 5631 2 289
## 5632 1 0
## 5633 2 304
## 5634 4 335
## 5635 1 30
## 5636 1 241
## 5637 1 58
## 5638 1 335
## 5639 2 103
## 5640 1 362
## 5641 2 95
## 5642 2 0
## 5643 2 90
## 5644 1 204
## 5645 1 0
## 5646 3 0
## 5647 1 0
## 5648 1 158
## 5649 1 142
## 5650 1 212
## 5651 1 0
## 5652 1 308
## 5653 5 183
## 5654 1 0
## 5655 2 0
## 5656 1 203
## 5657 1 0
## 5658 2 351
## 5659 1 157
## 5660 1 97
## 5661 1 0
## 5662 1 0
## 5663 2 311
## 5664 1 177
## 5665 1 0
## 5666 1 18
## 5667 1 0
## 5668 2 14
## 5669 1 356
## 5670 7 58
## 5671 7 71
## 5672 7 66
## 5673 2 0
## 5674 1 97
## 5675 5 311
## 5676 2 312
## 5677 1 28
## 5678 1 0
## 5679 1 0
## 5680 2 157
## 5681 1 0
## 5682 1 286
## 5683 1 0
## 5684 1 73
## 5685 1 0
## 5686 1 10
## 5687 1 0
## 5688 1 121
## 5689 1 0
## 5690 1 71
## 5691 2 0
## 5692 5 133
## 5693 1 0
## 5694 1 88
## 5695 1 0
## 5696 1 11
## 5697 1 23
## 5698 1 64
## 5699 1 192
## 5700 3 76
## 5701 2 3
## 5702 1 220
## 5703 1 237
## 5704 10 303
## 5705 1 0
## 5706 2 305
## 5707 1 333
## 5708 1 0
## 5709 1 10
## 5710 1 157
## 5711 5 108
## 5712 1 275
## 5713 1 320
## 5714 1 319
## 5715 2 0
## 5716 1 0
## 5717 1 0
## 5718 3 354
## 5719 1 0
## 5720 1 0
## 5721 1 0
## 5722 2 241
## 5723 1 340
## 5724 1 188
## 5725 4 321
## 5726 1 12
## 5727 1 0
## 5728 2 38
## 5729 5 148
## 5730 1 0
## 5731 2 0
## 5732 1 0
## 5733 1 0
## 5734 1 0
## 5735 2 245
## 5736 5 129
## 5737 2 264
## 5738 2 365
## 5739 1 210
## 5740 52 331
## 5741 2 269
## 5742 1 180
## 5743 1 0
## 5744 1 364
## 5745 1 336
## 5746 1 359
## 5747 1 248
## 5748 1 0
## 5749 1 309
## 5750 1 0
## 5751 1 20
## 5752 2 0
## 5753 1 0
## 5754 1 0
## 5755 1 66
## 5756 1 0
## 5757 1 0
## 5758 2 102
## 5759 1 0
## 5760 1 245
## 5761 1 0
## 5762 1 364
## 5763 1 0
## 5764 1 245
## 5765 1 0
## 5766 1 0
## 5767 1 230
## 5768 1 365
## 5769 2 0
## 5770 1 0
## 5771 1 0
## 5772 1 326
## 5773 1 0
## 5774 5 147
## 5775 2 173
## 5776 1 0
## 5777 1 0
## 5778 5 52
## 5779 4 197
## 5780 1 0
## 5781 1 0
## 5782 2 83
## 5783 1 0
## 5784 1 358
## 5785 1 0
## 5786 1 15
## 5787 2 238
## 5788 1 0
## 5789 1 14
## 5790 4 328
## 5791 2 172
## 5792 1 234
## 5793 1 0
## 5794 1 260
## 5795 1 316
## 5796 1 0
## 5797 2 251
## 5798 1 0
## 5799 1 0
## 5800 1 0
## 5801 2 11
## 5802 1 327
## 5803 1 308
## 5804 1 2
## 5805 1 305
## 5806 1 281
## 5807 1 0
## 5808 1 0
## 5809 1 170
## 5810 1 0
## 5811 1 268
## 5812 9 339
## 5813 1 0
## 5814 1 0
## 5815 1 0
## 5816 1 346
## 5817 1 359
## 5818 1 173
## 5819 1 0
## 5820 1 0
## 5821 1 323
## 5822 1 0
## 5823 1 297
## 5824 1 0
## 5825 1 0
## 5826 1 0
## 5827 1 169
## 5828 1 116
## 5829 1 100
## 5830 1 0
## 5831 1 276
## 5832 1 0
## 5833 1 363
## 5834 1 0
## 5835 1 32
## 5836 1 302
## 5837 1 46
## 5838 1 215
## 5839 1 0
## 5840 1 0
## 5841 1 362
## 5842 1 0
## 5843 1 0
## 5844 4 328
## 5845 3 365
## 5846 18 310
## 5847 18 341
## 5848 3 339
## 5849 1 0
## 5850 1 66
## 5851 2 0
## 5852 1 342
## 5853 2 0
## 5854 1 230
## 5855 3 286
## 5856 1 0
## 5857 1 177
## 5858 2 298
## 5859 1 187
## 5860 1 208
## 5861 1 0
## 5862 1 270
## 5863 1 0
## 5864 2 7
## 5865 1 0
## 5866 1 15
## 5867 1 264
## 5868 14 167
## 5869 7 365
## 5870 1 0
## 5871 1 24
## 5872 1 0
## 5873 2 362
## 5874 3 365
## 5875 1 0
## 5876 1 0
## 5877 4 0
## 5878 1 291
## 5879 1 108
## 5880 1 0
## 5881 1 0
## 5882 2 232
## 5883 1 3
## 5884 1 351
## 5885 1 50
## 5886 1 0
## 5887 3 334
## 5888 1 0
## 5889 3 290
## 5890 1 0
## 5891 1 0
## 5892 1 0
## 5893 1 0
## 5894 1 348
## 5895 52 300
## 5896 1 0
## 5897 1 255
## 5898 1 116
## 5899 2 305
## 5900 5 83
## 5901 2 178
## 5902 1 271
## 5903 1 101
## 5904 8 99
## 5905 2 182
## 5906 2 82
## 5907 1 193
## 5908 1 267
## 5909 1 9
## 5910 1 90
## 5911 1 249
## 5912 2 303
## 5913 1 296
## 5914 1 14
## 5915 1 12
## 5916 1 349
## 5917 1 358
## 5918 3 345
## 5919 1 0
## 5920 1 0
## 5921 1 226
## 5922 2 0
## 5923 1 0
## 5924 1 0
## 5925 3 316
## 5926 1 266
## 5927 1 0
## 5928 39 267
## 5929 1 0
## 5930 1 4
## 5931 1 286
## 5932 1 0
## 5933 1 23
## 5934 1 365
## 5935 52 339
## 5936 1 343
## 5937 1 0
## 5938 1 0
## 5939 1 0
## 5940 2 222
## 5941 10 178
## 5942 2 251
## 5943 1 0
## 5944 1 0
## 5945 1 344
## 5946 2 0
## 5947 2 0
## 5948 1 0
## 5949 1 0
## 5950 1 0
## 5951 1 331
## 5952 1 349
## 5953 1 0
## 5954 1 0
## 5955 1 0
## 5956 1 330
## 5957 2 19
## 5958 1 0
## 5959 1 251
## 5960 2 90
## 5961 1 90
## 5962 1 0
## 5963 1 253
## 5964 1 226
## 5965 1 0
## 5966 1 0
## 5967 1 28
## 5968 2 0
## 5969 2 0
## 5970 1 132
## 5971 2 100
## 5972 1 0
## 5973 3 365
## 5974 1 0
## 5975 1 0
## 5976 1 0
## 5977 1 0
## 5978 1 0
## 5979 1 279
## 5980 1 269
## 5981 2 352
## 5982 1 151
## 5983 1 0
## 5984 1 0
## 5985 1 0
## 5986 1 0
## 5987 1 165
## 5988 1 0
## 5989 1 0
## 5990 1 0
## 5991 1 4
## 5992 1 227
## 5993 1 0
## 5994 1 325
## 5995 1 302
## 5996 1 0
## 5997 1 0
## 5998 1 0
## 5999 52 325
## 6000 1 0
## 6001 1 0
## 6002 1 251
## 6003 5 183
## 6004 1 0
## 6005 5 281
## 6006 1 0
## 6007 1 133
## 6008 10 32
## 6009 2 301
## 6010 1 247
## 6011 1 0
## 6012 1 254
## 6013 1 0
## 6014 2 327
## 6015 1 16
## 6016 1 0
## 6017 2 304
## 6018 1 0
## 6019 1 340
## 6020 1 0
## 6021 1 10
## 6022 1 365
## 6023 2 355
## 6024 4 227
## 6025 2 243
## 6026 1 0
## 6027 1 19
## 6028 2 90
## 6029 1 0
## 6030 1 0
## 6031 1 0
## 6032 3 0
## 6033 1 0
## 6034 1 0
## 6035 1 0
## 6036 2 0
## 6037 1 0
## 6038 1 363
## 6039 1 0
## 6040 1 0
## 6041 9 311
## 6042 9 336
## 6043 1 211
## 6044 1 249
## 6045 1 257
## 6046 1 193
## 6047 1 0
## 6048 3 173
## 6049 1 62
## 6050 1 11
## 6051 1 0
## 6052 1 0
## 6053 1 211
## 6054 1 234
## 6055 1 0
## 6056 1 309
## 6057 2 0
## 6058 1 0
## 6059 1 0
## 6060 2 292
## 6061 1 362
## 6062 1 128
## 6063 1 363
## 6064 1 0
## 6065 2 191
## 6066 1 4
## 6067 1 200
## 6068 2 285
## 6069 2 332
## 6070 1 0
## 6071 1 0
## 6072 8 52
## 6073 12 310
## 6074 3 87
## 6075 1 0
## 6076 1 0
## 6077 1 0
## 6078 1 0
## 6079 1 180
## 6080 1 0
## 6081 1 52
## 6082 1 0
## 6083 2 363
## 6084 3 189
## 6085 1 0
## 6086 1 315
## 6087 1 50
## 6088 1 0
## 6089 1 0
## 6090 1 54
## 6091 1 268
## 6092 1 0
## 6093 1 311
## 6094 1 0
## 6095 4 165
## 6096 2 115
## 6097 1 0
## 6098 4 262
## 6099 1 0
## 6100 2 0
## 6101 1 0
## 6102 2 336
## 6103 1 13
## 6104 2 4
## 6105 1 204
## 6106 1 0
## 6107 1 0
## 6108 2 254
## 6109 4 219
## 6110 1 203
## 6111 3 277
## 6112 2 35
## 6113 1 0
## 6114 1 329
## 6115 1 0
## 6116 1 0
## 6117 1 129
## 6118 1 0
## 6119 2 69
## 6120 1 271
## 6121 2 89
## 6122 1 157
## 6123 1 36
## 6124 1 0
## 6125 3 36
## 6126 1 240
## 6127 4 7
## 6128 1 6
## 6129 1 365
## 6130 2 0
## 6131 1 0
## 6132 1 0
## 6133 1 161
## 6134 1 218
## 6135 1 0
## 6136 1 0
## 6137 1 0
## 6138 1 0
## 6139 1 0
## 6140 1 0
## 6141 1 0
## 6142 2 0
## 6143 1 0
## 6144 1 0
## 6145 1 0
## 6146 1 0
## 6147 1 362
## 6148 3 288
## 6149 1 2
## 6150 1 179
## 6151 1 0
## 6152 1 0
## 6153 1 0
## 6154 1 183
## 6155 3 0
## 6156 1 59
## 6157 1 0
## 6158 1 132
## 6159 4 338
## 6160 1 0
## 6161 1 0
## 6162 2 173
## 6163 1 0
## 6164 1 365
## 6165 39 339
## 6166 39 344
## 6167 1 0
## 6168 1 207
## 6169 1 88
## 6170 2 0
## 6171 2 244
## 6172 1 0
## 6173 3 342
## 6174 6 83
## 6175 6 322
## 6176 7 83
## 6177 1 178
## 6178 19 251
## 6179 1 0
## 6180 1 0
## 6181 2 295
## 6182 1 0
## 6183 2 336
## 6184 1 336
## 6185 1 0
## 6186 1 0
## 6187 1 0
## 6188 1 0
## 6189 2 137
## 6190 1 0
## 6191 19 330
## 6192 1 0
## 6193 1 0
## 6194 2 158
## 6195 1 245
## 6196 1 35
## 6197 2 0
## 6198 1 0
## 6199 1 10
## 6200 3 0
## 6201 18 310
## 6202 1 0
## 6203 2 343
## 6204 10 26
## 6205 1 12
## 6206 1 83
## 6207 1 0
## 6208 1 0
## 6209 1 0
## 6210 1 0
## 6211 1 0
## 6212 2 221
## 6213 2 0
## 6214 1 293
## 6215 3 339
## 6216 1 321
## 6217 1 0
## 6218 1 0
## 6219 1 0
## 6220 1 0
## 6221 1 0
## 6222 2 336
## 6223 1 364
## 6224 1 0
## 6225 1 263
## 6226 2 0
## 6227 4 341
## 6228 2 38
## 6229 4 312
## 6230 7 340
## 6231 7 325
## 6232 3 217
## 6233 3 229
## 6234 1 0
## 6235 1 0
## 6236 1 0
## 6237 1 277
## 6238 1 213
## 6239 1 0
## 6240 1 2
## 6241 1 249
## 6242 1 0
## 6243 1 271
## 6244 1 24
## 6245 1 310
## 6246 1 16
## 6247 1 0
## 6248 2 280
## 6249 2 0
## [ reached 'max' / getOption("max.print") -- omitted 42646 rows ]
# Subsetting the relevant columns for the analysis
subset_airbnb<- select(AirBnB_data, neighbourhood_group, room_type, price)
subset_airbnb
## neighbourhood_group room_type price
## 1 Brooklyn Private room 149
## 2 Manhattan Entire home/apt 225
## 3 Manhattan Private room 150
## 4 Brooklyn Entire home/apt 89
## 5 Manhattan Entire home/apt 80
## 6 Manhattan Entire home/apt 200
## 7 Brooklyn Private room 60
## 8 Manhattan Private room 79
## 9 Manhattan Private room 79
## 10 Manhattan Entire home/apt 150
## 11 Manhattan Entire home/apt 135
## 12 Manhattan Private room 85
## 13 Brooklyn Private room 89
## 14 Manhattan Private room 85
## 15 Manhattan Entire home/apt 120
## 16 Brooklyn Entire home/apt 140
## 17 Brooklyn Entire home/apt 215
## 18 Manhattan Private room 140
## 19 Brooklyn Entire home/apt 99
## 20 Manhattan Entire home/apt 190
## 21 Brooklyn Entire home/apt 299
## 22 Brooklyn Private room 130
## 23 Brooklyn Private room 80
## 24 Brooklyn Private room 110
## 25 Brooklyn Entire home/apt 120
## 26 Brooklyn Private room 60
## 27 Manhattan Private room 80
## 28 Manhattan Entire home/apt 150
## 29 Manhattan Private room 44
## 30 Manhattan Entire home/apt 180
## 31 Manhattan Private room 50
## 32 Manhattan Private room 52
## 33 Brooklyn Private room 55
## 34 Manhattan Private room 50
## 35 Brooklyn Private room 70
## 36 Brooklyn Private room 89
## 37 Brooklyn Private room 35
## 38 Brooklyn Entire home/apt 85
## 39 Brooklyn Private room 150
## 40 Manhattan Shared room 40
## 41 Manhattan Private room 68
## 42 Brooklyn Entire home/apt 120
## 43 Brooklyn Private room 120
## 44 Manhattan Private room 135
## 45 Manhattan Entire home/apt 150
## 46 Brooklyn Entire home/apt 150
## 47 Queens Private room 130
## 48 Brooklyn Entire home/apt 110
## 49 Brooklyn Entire home/apt 115
## 50 Brooklyn Private room 80
## 51 Brooklyn Private room 80
## 52 Manhattan Entire home/apt 151
## 53 Brooklyn Entire home/apt 228
## 54 Brooklyn Entire home/apt 144
## 55 Manhattan Entire home/apt 200
## 56 Brooklyn Entire home/apt 150
## 57 Manhattan Private room 110
## 58 Manhattan Private room 69
## 59 Brooklyn Private room 49
## 60 Manhattan Entire home/apt 180
## 61 Brooklyn Private room 80
## 62 Manhattan Entire home/apt 375
## 63 Manhattan Entire home/apt 250
## 64 Brooklyn Entire home/apt 200
## 65 Brooklyn Private room 55
## 66 Manhattan Private room 52
## 67 Brooklyn Entire home/apt 225
## 68 Manhattan Private room 80
## 69 Brooklyn Entire home/apt 275
## 70 Manhattan Private room 99
## 71 Manhattan Entire home/apt 225
## 72 Manhattan Entire home/apt 230
## 73 Manhattan Private room 51
## 74 Manhattan Private room 65
## 75 Brooklyn Private room 105
## 76 Manhattan Entire home/apt 190
## 77 Manhattan Private room 200
## 78 Queens Private room 70
## 79 Brooklyn Private room 95
## 80 Manhattan Private room 150
## 81 Brooklyn Private room 145
## 82 Manhattan Entire home/apt 110
## 83 Manhattan Entire home/apt 285
## 84 Brooklyn Entire home/apt 130
## 85 Manhattan Private room 94
## 86 Brooklyn Entire home/apt 800
## 87 Brooklyn Entire home/apt 105
## 88 Manhattan Private room 60
## 89 Manhattan Private room 50
## 90 Brooklyn Private room 85
## 91 Brooklyn Private room 65
## 92 Brooklyn Entire home/apt 131
## 93 Brooklyn Private room 98
## 94 Brooklyn Entire home/apt 250
## 95 Brooklyn Entire home/apt 100
## 96 Brooklyn Entire home/apt 105
## 97 Manhattan Entire home/apt 140
## 98 Manhattan Private room 89
## 99 Manhattan Private room 98
## 100 Brooklyn Entire home/apt 125
## 101 Manhattan Private room 60
## 102 Brooklyn Entire home/apt 175
## 103 Manhattan Private room 65
## 104 Manhattan Entire home/apt 500
## 105 Brooklyn Private room 101
## 106 Brooklyn Entire home/apt 220
## 107 Brooklyn Entire home/apt 125
## 108 Brooklyn Entire home/apt 80
## 109 Manhattan Private room 100
## 110 Brooklyn Entire home/apt 200
## 111 Manhattan Private room 59
## 112 Brooklyn Private room 125
## 113 Manhattan Entire home/apt 140
## 114 Brooklyn Entire home/apt 120
## 115 Manhattan Entire home/apt 350
## 116 Manhattan Entire home/apt 199
## 117 Brooklyn Entire home/apt 325
## 118 Manhattan Entire home/apt 235
## 119 Manhattan Entire home/apt 225
## 120 Brooklyn Private room 99
## 121 Manhattan Entire home/apt 170
## 122 Brooklyn Entire home/apt 400
## 123 Manhattan Entire home/apt 170
## 124 Manhattan Entire home/apt 100
## 125 Brooklyn Private room 75
## 126 Brooklyn Private room 90
## 127 Manhattan Entire home/apt 150
## 128 Manhattan Private room 85
## 129 Brooklyn Private room 70
## 130 Manhattan Entire home/apt 120
## 131 Brooklyn Private room 89
## 132 Manhattan Entire home/apt 185
## 133 Brooklyn Private room 50
## 134 Manhattan Entire home/apt 105
## 135 Manhattan Private room 130
## 136 Manhattan Entire home/apt 115
## 137 Brooklyn Private room 77
## 138 Brooklyn Private room 76
## 139 Brooklyn Entire home/apt 125
## 140 Brooklyn Private room 135
## 141 Brooklyn Entire home/apt 250
## 142 Brooklyn Entire home/apt 199
## 143 Brooklyn Entire home/apt 140
## 144 Queens Private room 140
## 145 Brooklyn Entire home/apt 115
## 146 Brooklyn Entire home/apt 160
## 147 Brooklyn Entire home/apt 195
## 148 Manhattan Entire home/apt 195
## 149 Brooklyn Private room 80
## 150 Brooklyn Private room 44
## 151 Manhattan Private room 156
## 152 Brooklyn Private room 85
## 153 Brooklyn Private room 125
## 154 Brooklyn Entire home/apt 115
## 155 Manhattan Private room 69
## 156 Manhattan Entire home/apt 225
## 157 Brooklyn Entire home/apt 125
## 158 Manhattan Entire home/apt 219
## 159 Brooklyn Entire home/apt 475
## 160 Manhattan Entire home/apt 99
## 161 Brooklyn Private room 69
## 162 Queens Private room 79
## 163 Brooklyn Entire home/apt 135
## 164 Brooklyn Private room 250
## 165 Manhattan Entire home/apt 250
## 166 Brooklyn Entire home/apt 250
## 167 Manhattan Entire home/apt 80
## 168 Brooklyn Private room 70
## 169 Brooklyn Entire home/apt 165
## 170 Staten Island Private room 70
## 171 Brooklyn Private room 50
## 172 Bronx Private room 40
## 173 Brooklyn Entire home/apt 150
## 174 Manhattan Private room 125
## 175 Manhattan Entire home/apt 196
## 176 Brooklyn Private room 110
## 177 Manhattan Entire home/apt 170
## 178 Manhattan Entire home/apt 165
## 179 Manhattan Entire home/apt 150
## 180 Manhattan Entire home/apt 100
## 181 Brooklyn Private room 65
## 182 Queens Entire home/apt 350
## 183 Manhattan Private room 99
## 184 Brooklyn Entire home/apt 200
## 185 Brooklyn Entire home/apt 150
## 186 Brooklyn Private room 90
## 187 Brooklyn Private room 120
## 188 Manhattan Private room 75
## 189 Brooklyn Entire home/apt 175
## 190 Manhattan Entire home/apt 125
## 191 Manhattan Entire home/apt 275
## 192 Manhattan Entire home/apt 299
## 193 Brooklyn Entire home/apt 135
## 194 Manhattan Private room 130
## 195 Manhattan Private room 83
## 196 Manhattan Private room 123
## 197 Queens Private room 55
## 198 Manhattan Entire home/apt 195
## 199 Brooklyn Private room 80
## 200 Queens Entire home/apt 98
## 201 Queens Private room 140
## 202 Queens Entire home/apt 265
## 203 Brooklyn Entire home/apt 249
## 204 Manhattan Shared room 105
## 205 Manhattan Private room 200
## 206 Brooklyn Private room 100
## 207 Manhattan Entire home/apt 121
## 208 Bronx Private room 45
## 209 Manhattan Private room 100
## 210 Brooklyn Entire home/apt 140
## 211 Brooklyn Private room 71
## 212 Manhattan Private room 130
## 213 Manhattan Entire home/apt 199
## 214 Brooklyn Private room 69
## 215 Brooklyn Private room 68
## 216 Manhattan Entire home/apt 130
## 217 Brooklyn Entire home/apt 195
## 218 Manhattan Private room 64
## 219 Queens Entire home/apt 140
## 220 Brooklyn Entire home/apt 159
## 221 Manhattan Entire home/apt 189
## 222 Manhattan Entire home/apt 250
## 223 Manhattan Entire home/apt 239
## 224 Manhattan Entire home/apt 305
## 225 Manhattan Entire home/apt 155
## 226 Manhattan Private room 60
## 227 Brooklyn Private room 135
## 228 Manhattan Private room 120
## 229 Manhattan Entire home/apt 150
## 230 Queens Entire home/apt 140
## 231 Brooklyn Entire home/apt 135
## 232 Manhattan Entire home/apt 250
## 233 Manhattan Entire home/apt 250
## 234 Manhattan Entire home/apt 500
## 235 Manhattan Entire home/apt 225
## 236 Manhattan Entire home/apt 125
## 237 Manhattan Private room 92
## 238 Manhattan Private room 175
## 239 Manhattan Entire home/apt 99
## 240 Manhattan Entire home/apt 195
## 241 Manhattan Entire home/apt 140
## 242 Manhattan Entire home/apt 135
## 243 Manhattan Entire home/apt 500
## 244 Manhattan Private room 80
## 245 Manhattan Private room 120
## 246 Manhattan Entire home/apt 110
## 247 Brooklyn Entire home/apt 65
## 248 Manhattan Entire home/apt 130
## 249 Brooklyn Entire home/apt 99
## 250 Staten Island Private room 36
## 251 Staten Island Private room 37
## 252 Staten Island Private room 37
## 253 Manhattan Entire home/apt 175
## 254 Manhattan Entire home/apt 205
## 255 Brooklyn Entire home/apt 285
## 256 Brooklyn Private room 59
## 257 Staten Island Private room 36
## 258 Queens Entire home/apt 99
## 259 Brooklyn Private room 39
## 260 Brooklyn Private room 60
## 261 Bronx Private room 90
## 262 Bronx Entire home/apt 105
## 263 Brooklyn Entire home/apt 135
## 264 Manhattan Entire home/apt 390
## 265 Brooklyn Private room 70
## 266 Manhattan Private room 75
## 267 Brooklyn Private room 60
## 268 Manhattan Entire home/apt 200
## 269 Brooklyn Private room 100
## 270 Brooklyn Private room 70
## 271 Brooklyn Private room 110
## 272 Brooklyn Private room 60
## 273 Manhattan Entire home/apt 90
## 274 Manhattan Private room 68
## 275 Manhattan Entire home/apt 115
## 276 Brooklyn Private room 75
## 277 Brooklyn Private room 60
## 278 Manhattan Entire home/apt 129
## 279 Brooklyn Entire home/apt 130
## 280 Brooklyn Entire home/apt 95
## 281 Manhattan Private room 75
## 282 Brooklyn Entire home/apt 175
## 283 Brooklyn Entire home/apt 190
## 284 Brooklyn Private room 49
## 285 Manhattan Entire home/apt 212
## 286 Manhattan Private room 95
## 287 Brooklyn Entire home/apt 140
## 288 Manhattan Entire home/apt 135
## 289 Brooklyn Entire home/apt 150
## 290 Brooklyn Entire home/apt 190
## 291 Manhattan Entire home/apt 124
## 292 Brooklyn Entire home/apt 135
## 293 Manhattan Private room 122
## 294 Manhattan Private room 109
## 295 Manhattan Private room 85
## 296 Brooklyn Entire home/apt 145
## 297 Manhattan Entire home/apt 195
## 298 Brooklyn Entire home/apt 250
## 299 Brooklyn Private room 125
## 300 Manhattan Entire home/apt 575
## 301 Manhattan Entire home/apt 150
## 302 Brooklyn Private room 70
## 303 Manhattan Private room 90
## 304 Manhattan Private room 65
## 305 Manhattan Entire home/apt 500
## 306 Manhattan Entire home/apt 250
## 307 Manhattan Entire home/apt 125
## 308 Manhattan Entire home/apt 200
## 309 Brooklyn Entire home/apt 229
## 310 Bronx Entire home/apt 90
## 311 Manhattan Entire home/apt 110
## 312 Brooklyn Private room 59
## 313 Brooklyn Entire home/apt 195
## 314 Brooklyn Entire home/apt 169
## 315 Manhattan Entire home/apt 113
## 316 Manhattan Entire home/apt 250
## 317 Queens Entire home/apt 115
## 318 Brooklyn Private room 55
## 319 Brooklyn Private room 69
## 320 Manhattan Entire home/apt 150
## 321 Brooklyn Entire home/apt 169
## 322 Brooklyn Private room 179
## 323 Manhattan Private room 150
## 324 Brooklyn Entire home/apt 135
## 325 Brooklyn Entire home/apt 350
## 326 Brooklyn Private room 120
## 327 Manhattan Private room 71
## 328 Brooklyn Private room 349
## 329 Brooklyn Private room 349
## 330 Brooklyn Entire home/apt 165
## 331 Brooklyn Private room 249
## 332 Brooklyn Private room 100
## 333 Brooklyn Entire home/apt 200
## 334 Manhattan Entire home/apt 169
## 335 Brooklyn Entire home/apt 185
## 336 Brooklyn Entire home/apt 65
## 337 Brooklyn Entire home/apt 130
## 338 Brooklyn Entire home/apt 199
## 339 Manhattan Entire home/apt 225
## 340 Brooklyn Private room 179
## 341 Brooklyn Entire home/apt 150
## 342 Manhattan Entire home/apt 139
## 343 Manhattan Private room 95
## 344 Brooklyn Entire home/apt 79
## 345 Manhattan Entire home/apt 150
## 346 Brooklyn Entire home/apt 650
## 347 Brooklyn Entire home/apt 90
## 348 Brooklyn Entire home/apt 120
## 349 Queens Private room 80
## 350 Brooklyn Entire home/apt 100
## 351 Brooklyn Entire home/apt 175
## 352 Brooklyn Entire home/apt 120
## 353 Brooklyn Entire home/apt 140
## 354 Brooklyn Entire home/apt 200
## 355 Brooklyn Private room 165
## 356 Manhattan Entire home/apt 125
## 357 Manhattan Entire home/apt 130
## 358 Manhattan Shared room 65
## 359 Brooklyn Entire home/apt 123
## 360 Manhattan Private room 67
## 361 Queens Private room 50
## 362 Brooklyn Entire home/apt 130
## 363 Brooklyn Private room 100
## 364 Manhattan Entire home/apt 212
## 365 Brooklyn Entire home/apt 190
## 366 Brooklyn Private room 599
## 367 Manhattan Entire home/apt 249
## 368 Queens Private room 70
## 369 Brooklyn Entire home/apt 100
## 370 Manhattan Private room 60
## 371 Brooklyn Entire home/apt 135
## 372 Brooklyn Entire home/apt 175
## 373 Manhattan Entire home/apt 120
## 374 Manhattan Entire home/apt 169
## 375 Brooklyn Entire home/apt 165
## 376 Manhattan Private room 90
## 377 Manhattan Entire home/apt 225
## 378 Brooklyn Private room 95
## 379 Brooklyn Private room 55
## 380 Manhattan Private room 85
## 381 Brooklyn Entire home/apt 199
## 382 Manhattan Entire home/apt 211
## 383 Manhattan Entire home/apt 145
## 384 Manhattan Private room 65
## 385 Manhattan Entire home/apt 99
## 386 Queens Entire home/apt 110
## 387 Brooklyn Entire home/apt 80
## 388 Brooklyn Entire home/apt 150
## 389 Brooklyn Entire home/apt 110
## 390 Manhattan Private room 290
## 391 Manhattan Private room 87
## 392 Brooklyn Entire home/apt 190
## 393 Brooklyn Entire home/apt 200
## 394 Brooklyn Entire home/apt 165
## 395 Manhattan Entire home/apt 110
## 396 Manhattan Entire home/apt 395
## 397 Brooklyn Private room 99
## 398 Brooklyn Private room 39
## 399 Manhattan Entire home/apt 189
## 400 Manhattan Private room 85
## 401 Brooklyn Entire home/apt 260
## 402 Manhattan Entire home/apt 122
## 403 Brooklyn Entire home/apt 165
## 404 Queens Entire home/apt 97
## 405 Manhattan Entire home/apt 170
## 406 Brooklyn Entire home/apt 125
## 407 Manhattan Private room 130
## 408 Brooklyn Entire home/apt 225
## 409 Brooklyn Private room 50
## 410 Brooklyn Entire home/apt 170
## 411 Manhattan Entire home/apt 132
## 412 Brooklyn Entire home/apt 250
## 413 Brooklyn Entire home/apt 141
## 414 Brooklyn Entire home/apt 64
## 415 Brooklyn Entire home/apt 249
## 416 Brooklyn Private room 79
## 417 Manhattan Entire home/apt 185
## 418 Brooklyn Entire home/apt 120
## 419 Brooklyn Entire home/apt 495
## 420 Manhattan Entire home/apt 375
## 421 Manhattan Entire home/apt 175
## 422 Manhattan Entire home/apt 150
## 423 Manhattan Entire home/apt 259
## 424 Manhattan Private room 96
## 425 Brooklyn Entire home/apt 145
## 426 Manhattan Entire home/apt 200
## 427 Manhattan Entire home/apt 95
## 428 Brooklyn Entire home/apt 250
## 429 Manhattan Entire home/apt 295
## 430 Manhattan Entire home/apt 175
## 431 Brooklyn Entire home/apt 451
## 432 Manhattan Entire home/apt 165
## 433 Manhattan Entire home/apt 250
## 434 Bronx Entire home/apt 77
## 435 Manhattan Entire home/apt 250
## 436 Queens Entire home/apt 129
## 437 Brooklyn Private room 98
## 438 Brooklyn Entire home/apt 150
## 439 Manhattan Private room 95
## 440 Manhattan Private room 55
## 441 Manhattan Entire home/apt 300
## 442 Queens Private room 42
## 443 Brooklyn Entire home/apt 125
## 444 Manhattan Private room 175
## 445 Manhattan Private room 75
## 446 Brooklyn Entire home/apt 255
## 447 Brooklyn Entire home/apt 72
## 448 Brooklyn Private room 165
## 449 Brooklyn Entire home/apt 165
## 450 Brooklyn Private room 75
## 451 Brooklyn Entire home/apt 130
## 452 Brooklyn Entire home/apt 139
## 453 Brooklyn Private room 88
## 454 Brooklyn Private room 80
## 455 Manhattan Private room 150
## 456 Manhattan Entire home/apt 200
## 457 Manhattan Entire home/apt 200
## 458 Queens Private room 42
## 459 Brooklyn Private room 90
## 460 Manhattan Entire home/apt 295
## 461 Brooklyn Entire home/apt 450
## 462 Brooklyn Entire home/apt 130
## 463 Brooklyn Private room 89
## 464 Manhattan Entire home/apt 198
## 465 Manhattan Entire home/apt 99
## 466 Brooklyn Private room 46
## 467 Manhattan Private room 140
## 468 Brooklyn Entire home/apt 500
## 469 Manhattan Private room 75
## 470 Queens Private room 33
## 471 Manhattan Entire home/apt 250
## 472 Brooklyn Private room 60
## 473 Manhattan Private room 75
## 474 Brooklyn Entire home/apt 350
## 475 Manhattan Entire home/apt 205
## 476 Brooklyn Entire home/apt 219
## 477 Brooklyn Private room 60
## 478 Manhattan Entire home/apt 185
## 479 Manhattan Entire home/apt 190
## 480 Brooklyn Entire home/apt 105
## 481 Manhattan Entire home/apt 250
## 482 Manhattan Entire home/apt 175
## 483 Manhattan Private room 65
## 484 Brooklyn Entire home/apt 75
## 485 Bronx Private room 37
## 486 Brooklyn Entire home/apt 85
## 487 Brooklyn Entire home/apt 106
## 488 Manhattan Entire home/apt 79
## 489 Brooklyn Private room 85
## 490 Manhattan Private room 170
## 491 Manhattan Private room 115
## 492 Manhattan Private room 89
## 493 Manhattan Shared room 49
## 494 Brooklyn Private room 91
## 495 Manhattan Entire home/apt 400
## 496 Brooklyn Entire home/apt 150
## 497 Manhattan Entire home/apt 2000
## 498 Brooklyn Entire home/apt 97
## 499 Manhattan Private room 100
## 500 Brooklyn Entire home/apt 179
## 501 Brooklyn Entire home/apt 500
## 502 Manhattan Entire home/apt 429
## 503 Manhattan Entire home/apt 189
## 504 Manhattan Private room 120
## 505 Manhattan Entire home/apt 300
## 506 Queens Entire home/apt 107
## 507 Queens Entire home/apt 95
## 508 Manhattan Entire home/apt 199
## 509 Manhattan Entire home/apt 120
## 510 Manhattan Entire home/apt 199
## 511 Bronx Entire home/apt 125
## 512 Brooklyn Private room 70
## 513 Brooklyn Private room 75
## 514 Manhattan Private room 100
## 515 Brooklyn Entire home/apt 99
## 516 Manhattan Entire home/apt 250
## 517 Brooklyn Entire home/apt 350
## 518 Brooklyn Entire home/apt 170
## 519 Manhattan Entire home/apt 165
## 520 Manhattan Private room 99
## 521 Manhattan Private room 255
## 522 Brooklyn Entire home/apt 169
## 523 Brooklyn Entire home/apt 99
## 524 Manhattan Entire home/apt 169
## 525 Brooklyn Entire home/apt 160
## 526 Brooklyn Entire home/apt 215
## 527 Brooklyn Entire home/apt 130
## 528 Manhattan Private room 110
## 529 Manhattan Private room 150
## 530 Brooklyn Private room 65
## 531 Queens Private room 75
## 532 Manhattan Entire home/apt 149
## 533 Manhattan Private room 89
## 534 Manhattan Private room 50
## 535 Brooklyn Private room 43
## 536 Brooklyn Private room 42
## 537 Brooklyn Private room 85
## 538 Brooklyn Entire home/apt 139
## 539 Brooklyn Private room 105
## 540 Brooklyn Entire home/apt 265
## 541 Manhattan Entire home/apt 149
## 542 Manhattan Private room 68
## 543 Brooklyn Entire home/apt 99
## 544 Manhattan Private room 75
## 545 Brooklyn Private room 100
## 546 Manhattan Shared room 90
## 547 Manhattan Entire home/apt 160
## 548 Brooklyn Entire home/apt 190
## 549 Brooklyn Private room 67
## 550 Manhattan Entire home/apt 190
## 551 Brooklyn Entire home/apt 248
## 552 Brooklyn Private room 100
## 553 Manhattan Private room 95
## 554 Manhattan Private room 150
## 555 Brooklyn Entire home/apt 145
## 556 Brooklyn Private room 41
## 557 Brooklyn Entire home/apt 120
## 558 Bronx Private room 50
## 559 Brooklyn Entire home/apt 157
## 560 Brooklyn Entire home/apt 195
## 561 Brooklyn Entire home/apt 70
## 562 Brooklyn Entire home/apt 185
## 563 Brooklyn Entire home/apt 145
## 564 Queens Private room 50
## 565 Brooklyn Entire home/apt 185
## 566 Manhattan Entire home/apt 250
## 567 Manhattan Private room 80
## 568 Manhattan Entire home/apt 230
## 569 Brooklyn Entire home/apt 100
## 570 Brooklyn Private room 40
## 571 Manhattan Private room 200
## 572 Staten Island Private room 80
## 573 Brooklyn Private room 79
## 574 Queens Entire home/apt 95
## 575 Manhattan Entire home/apt 300
## 576 Brooklyn Entire home/apt 100
## 577 Manhattan Private room 80
## 578 Brooklyn Entire home/apt 110
## 579 Brooklyn Entire home/apt 172
## 580 Manhattan Entire home/apt 199
## 581 Manhattan Entire home/apt 199
## 582 Manhattan Private room 100
## 583 Manhattan Private room 55
## 584 Brooklyn Private room 75
## 585 Manhattan Entire home/apt 146
## 586 Manhattan Private room 250
## 587 Brooklyn Entire home/apt 116
## 588 Manhattan Private room 150
## 589 Brooklyn Private room 120
## 590 Manhattan Entire home/apt 199
## 591 Brooklyn Entire home/apt 150
## 592 Manhattan Private room 69
## 593 Manhattan Private room 300
## 594 Brooklyn Entire home/apt 230
## 595 Manhattan Entire home/apt 125
## 596 Brooklyn Private room 79
## 597 Brooklyn Private room 130
## 598 Brooklyn Private room 239
## 599 Staten Island Entire home/apt 75
## 600 Brooklyn Entire home/apt 220
## 601 Brooklyn Entire home/apt 80
## 602 Manhattan Entire home/apt 288
## 603 Brooklyn Entire home/apt 135
## 604 Manhattan Entire home/apt 225
## 605 Manhattan Private room 110
## 606 Brooklyn Entire home/apt 100
## 607 Manhattan Private room 130
## 608 Manhattan Private room 89
## 609 Brooklyn Entire home/apt 200
## 610 Brooklyn Entire home/apt 80
## 611 Bronx Private room 50
## 612 Manhattan Entire home/apt 135
## 613 Manhattan Private room 90
## 614 Manhattan Private room 270
## 615 Brooklyn Entire home/apt 110
## 616 Manhattan Entire home/apt 145
## 617 Manhattan Entire home/apt 179
## 618 Queens Private room 55
## 619 Manhattan Private room 110
## 620 Manhattan Entire home/apt 325
## 621 Queens Private room 75
## 622 Brooklyn Entire home/apt 300
## 623 Manhattan Private room 130
## 624 Manhattan Entire home/apt 190
## 625 Manhattan Entire home/apt 200
## 626 Brooklyn Entire home/apt 180
## 627 Brooklyn Entire home/apt 350
## 628 Manhattan Entire home/apt 160
## 629 Manhattan Entire home/apt 195
## 630 Manhattan Entire home/apt 241
## 631 Manhattan Entire home/apt 300
## 632 Queens Entire home/apt 75
## 633 Manhattan Entire home/apt 100
## 634 Manhattan Entire home/apt 399
## 635 Brooklyn Private room 85
## 636 Brooklyn Entire home/apt 80
## 637 Brooklyn Private room 55
## 638 Brooklyn Private room 438
## 639 Brooklyn Entire home/apt 110
## 640 Manhattan Entire home/apt 200
## 641 Brooklyn Private room 279
## 642 Brooklyn Entire home/apt 137
## 643 Brooklyn Entire home/apt 280
## 644 Brooklyn Entire home/apt 199
## 645 Manhattan Private room 71
## 646 Bronx Private room 42
## 647 Brooklyn Entire home/apt 180
## 648 Manhattan Entire home/apt 226
## 649 Brooklyn Private room 85
## 650 Manhattan Entire home/apt 135
## 651 Queens Entire home/apt 79
## 652 Manhattan Entire home/apt 154
## 653 Brooklyn Entire home/apt 199
## 654 Manhattan Entire home/apt 700
## 655 Manhattan Entire home/apt 246
## 656 Manhattan Private room 125
## 657 Brooklyn Private room 100
## 658 Brooklyn Entire home/apt 295
## 659 Brooklyn Private room 150
## 660 Manhattan Entire home/apt 119
## 661 Manhattan Private room 125
## 662 Manhattan Entire home/apt 400
## 663 Manhattan Entire home/apt 850
## 664 Brooklyn Private room 129
## 665 Manhattan Private room 140
## 666 Manhattan Private room 115
## 667 Manhattan Entire home/apt 200
## 668 Brooklyn Entire home/apt 96
## 669 Brooklyn Entire home/apt 199
## 670 Brooklyn Entire home/apt 199
## 671 Brooklyn Entire home/apt 199
## 672 Brooklyn Private room 69
## 673 Manhattan Entire home/apt 185
## 674 Manhattan Private room 81
## 675 Brooklyn Entire home/apt 199
## 676 Brooklyn Entire home/apt 199
## 677 Brooklyn Entire home/apt 199
## 678 Brooklyn Entire home/apt 199
## 679 Brooklyn Entire home/apt 199
## 680 Brooklyn Private room 349
## 681 Brooklyn Private room 249
## 682 Brooklyn Private room 299
## 683 Brooklyn Private room 179
## 684 Queens Private room 54
## 685 Brooklyn Private room 599
## 686 Brooklyn Entire home/apt 110
## 687 Brooklyn Entire home/apt 220
## 688 Brooklyn Private room 89
## 689 Brooklyn Entire home/apt 170
## 690 Manhattan Entire home/apt 495
## 691 Queens Entire home/apt 80
## 692 Manhattan Entire home/apt 760
## 693 Brooklyn Private room 98
## 694 Brooklyn Entire home/apt 125
## 695 Brooklyn Private room 48
## 696 Brooklyn Private room 64
## 697 Brooklyn Entire home/apt 154
## 698 Brooklyn Entire home/apt 139
## 699 Queens Private room 75
## 700 Manhattan Entire home/apt 325
## 701 Manhattan Entire home/apt 195
## 702 Manhattan Private room 58
## 703 Staten Island Entire home/apt 250
## 704 Staten Island Private room 50
## 705 Staten Island Entire home/apt 125
## 706 Brooklyn Entire home/apt 70
## 707 Manhattan Entire home/apt 189
## 708 Brooklyn Entire home/apt 130
## 709 Manhattan Entire home/apt 145
## 710 Manhattan Private room 101
## 711 Manhattan Private room 95
## 712 Manhattan Entire home/apt 375
## 713 Manhattan Entire home/apt 153
## 714 Brooklyn Entire home/apt 92
## 715 Manhattan Private room 80
## 716 Manhattan Entire home/apt 300
## 717 Brooklyn Entire home/apt 145
## 718 Manhattan Private room 88
## 719 Manhattan Entire home/apt 155
## 720 Brooklyn Entire home/apt 185
## 721 Queens Private room 73
## 722 Manhattan Entire home/apt 225
## 723 Manhattan Private room 85
## 724 Brooklyn Private room 99
## 725 Brooklyn Private room 48
## 726 Manhattan Entire home/apt 200
## 727 Manhattan Entire home/apt 485
## 728 Manhattan Entire home/apt 310
## 729 Brooklyn Entire home/apt 110
## 730 Manhattan Entire home/apt 109
## 731 Manhattan Entire home/apt 167
## 732 Brooklyn Entire home/apt 147
## 733 Manhattan Entire home/apt 220
## 734 Manhattan Entire home/apt 195
## 735 Manhattan Entire home/apt 199
## 736 Manhattan Private room 65
## 737 Queens Private room 55
## 738 Bronx Private room 50
## 739 Brooklyn Private room 60
## 740 Manhattan Private room 99
## 741 Manhattan Entire home/apt 130
## 742 Brooklyn Entire home/apt 290
## 743 Manhattan Entire home/apt 350
## 744 Brooklyn Private room 50
## 745 Queens Private room 96
## 746 Brooklyn Private room 45
## 747 Queens Private room 85
## 748 Brooklyn Private room 34
## 749 Manhattan Entire home/apt 250
## 750 Brooklyn Private room 190
## 751 Brooklyn Private room 75
## 752 Brooklyn Entire home/apt 93
## 753 Brooklyn Private room 60
## 754 Brooklyn Private room 65
## 755 Manhattan Entire home/apt 125
## 756 Manhattan Entire home/apt 300
## 757 Manhattan Entire home/apt 150
## 758 Manhattan Entire home/apt 56
## 759 Manhattan Entire home/apt 299
## 760 Brooklyn Private room 60
## 761 Brooklyn Entire home/apt 88
## 762 Brooklyn Private room 60
## 763 Manhattan Entire home/apt 1300
## 764 Manhattan Private room 200
## 765 Manhattan Private room 99
## 766 Brooklyn Entire home/apt 110
## 767 Brooklyn Entire home/apt 135
## 768 Manhattan Entire home/apt 110
## 769 Brooklyn Entire home/apt 165
## 770 Brooklyn Entire home/apt 127
## 771 Brooklyn Entire home/apt 402
## 772 Manhattan Private room 85
## 773 Brooklyn Private room 75
## 774 Manhattan Entire home/apt 139
## 775 Brooklyn Entire home/apt 70
## 776 Manhattan Private room 50
## 777 Queens Private room 30
## 778 Manhattan Entire home/apt 250
## 779 Brooklyn Private room 64
## 780 Manhattan Entire home/apt 300
## 781 Brooklyn Entire home/apt 800
## 782 Brooklyn Entire home/apt 100
## 783 Brooklyn Entire home/apt 250
## 784 Manhattan Entire home/apt 200
## 785 Brooklyn Entire home/apt 140
## 786 Manhattan Private room 130
## 787 Brooklyn Entire home/apt 90
## 788 Manhattan Entire home/apt 90
## 789 Brooklyn Private room 97
## 790 Brooklyn Entire home/apt 91
## 791 Brooklyn Private room 125
## 792 Brooklyn Private room 75
## 793 Manhattan Entire home/apt 180
## 794 Brooklyn Entire home/apt 300
## 795 Brooklyn Entire home/apt 100
## 796 Manhattan Entire home/apt 175
## 797 Brooklyn Private room 65
## 798 Manhattan Entire home/apt 240
## 799 Manhattan Private room 300
## 800 Manhattan Entire home/apt 385
## 801 Brooklyn Private room 47
## 802 Brooklyn Entire home/apt 110
## 803 Manhattan Private room 75
## 804 Brooklyn Entire home/apt 100
## 805 Manhattan Entire home/apt 165
## 806 Brooklyn Entire home/apt 300
## 807 Brooklyn Entire home/apt 140
## 808 Brooklyn Entire home/apt 120
## 809 Brooklyn Entire home/apt 175
## 810 Brooklyn Entire home/apt 275
## 811 Manhattan Entire home/apt 179
## 812 Brooklyn Entire home/apt 189
## 813 Manhattan Entire home/apt 219
## 814 Manhattan Entire home/apt 450
## 815 Manhattan Entire home/apt 249
## 816 Queens Private room 65
## 817 Brooklyn Entire home/apt 250
## 818 Manhattan Entire home/apt 139
## 819 Manhattan Entire home/apt 209
## 820 Brooklyn Entire home/apt 120
## 821 Queens Entire home/apt 70
## 822 Manhattan Private room 90
## 823 Manhattan Entire home/apt 199
## 824 Brooklyn Private room 50
## 825 Brooklyn Entire home/apt 100
## 826 Manhattan Entire home/apt 110
## 827 Brooklyn Entire home/apt 157
## 828 Brooklyn Entire home/apt 199
## 829 Queens Entire home/apt 192
## 830 Brooklyn Entire home/apt 199
## 831 Manhattan Entire home/apt 150
## 832 Brooklyn Entire home/apt 199
## 833 Brooklyn Entire home/apt 199
## 834 Brooklyn Entire home/apt 199
## 835 Brooklyn Entire home/apt 105
## 836 Brooklyn Private room 135
## 837 Brooklyn Entire home/apt 199
## 838 Brooklyn Private room 125
## 839 Brooklyn Private room 60
## 840 Brooklyn Entire home/apt 85
## 841 Manhattan Entire home/apt 300
## 842 Brooklyn Private room 75
## 843 Queens Private room 55
## 844 Brooklyn Private room 44
## 845 Brooklyn Private room 55
## 846 Brooklyn Private room 30
## 847 Brooklyn Private room 35
## 848 Brooklyn Private room 70
## 849 Brooklyn Entire home/apt 130
## 850 Brooklyn Private room 52
## 851 Brooklyn Private room 75
## 852 Manhattan Private room 190
## 853 Manhattan Entire home/apt 250
## 854 Brooklyn Entire home/apt 100
## 855 Brooklyn Entire home/apt 130
## 856 Manhattan Private room 140
## 857 Brooklyn Private room 75
## 858 Manhattan Entire home/apt 150
## 859 Manhattan Entire home/apt 90
## 860 Manhattan Entire home/apt 295
## 861 Manhattan Entire home/apt 150
## 862 Brooklyn Entire home/apt 180
## 863 Brooklyn Private room 135
## 864 Brooklyn Private room 65
## 865 Manhattan Private room 99
## 866 Brooklyn Private room 149
## 867 Staten Island Private room 59
## 868 Manhattan Private room 75
## 869 Manhattan Private room 75
## 870 Brooklyn Private room 75
## 871 Manhattan Entire home/apt 109
## 872 Brooklyn Entire home/apt 225
## 873 Manhattan Private room 86
## 874 Queens Private room 52
## 875 Brooklyn Private room 100
## 876 Manhattan Entire home/apt 99
## 877 Manhattan Private room 89
## 878 Brooklyn Entire home/apt 135
## 879 Manhattan Entire home/apt 199
## 880 Brooklyn Entire home/apt 89
## 881 Manhattan Private room 110
## 882 Brooklyn Entire home/apt 120
## 883 Brooklyn Private room 59
## 884 Brooklyn Private room 49
## 885 Brooklyn Private room 79
## 886 Manhattan Entire home/apt 135
## 887 Brooklyn Entire home/apt 185
## 888 Brooklyn Entire home/apt 225
## 889 Manhattan Entire home/apt 245
## 890 Manhattan Entire home/apt 115
## 891 Brooklyn Entire home/apt 325
## 892 Brooklyn Private room 95
## 893 Manhattan Private room 120
## 894 Manhattan Entire home/apt 499
## 895 Brooklyn Private room 75
## 896 Manhattan Private room 109
## 897 Brooklyn Entire home/apt 160
## 898 Manhattan Entire home/apt 219
## 899 Manhattan Entire home/apt 159
## 900 Brooklyn Private room 180
## 901 Manhattan Entire home/apt 150
## 902 Manhattan Entire home/apt 106
## 903 Manhattan Entire home/apt 299
## 904 Manhattan Entire home/apt 179
## 905 Brooklyn Entire home/apt 165
## 906 Brooklyn Entire home/apt 500
## 907 Manhattan Entire home/apt 250
## 908 Manhattan Private room 87
## 909 Brooklyn Private room 79
## 910 Manhattan Private room 75
## 911 Brooklyn Entire home/apt 200
## 912 Manhattan Private room 80
## 913 Brooklyn Entire home/apt 115
## 914 Brooklyn Entire home/apt 115
## 915 Brooklyn Entire home/apt 120
## 916 Manhattan Private room 125
## 917 Manhattan Entire home/apt 387
## 918 Manhattan Private room 95
## 919 Manhattan Entire home/apt 99
## 920 Manhattan Entire home/apt 121
## 921 Manhattan Entire home/apt 350
## 922 Manhattan Private room 75
## 923 Manhattan Private room 95
## 924 Manhattan Private room 89
## 925 Manhattan Private room 195
## 926 Manhattan Private room 160
## 927 Brooklyn Entire home/apt 70
## 928 Manhattan Private room 100
## 929 Manhattan Entire home/apt 140
## 930 Manhattan Entire home/apt 189
## 931 Brooklyn Private room 160
## 932 Brooklyn Entire home/apt 178
## 933 Brooklyn Entire home/apt 145
## 934 Brooklyn Entire home/apt 125
## 935 Manhattan Entire home/apt 265
## 936 Brooklyn Private room 77
## 937 Manhattan Private room 60
## 938 Manhattan Entire home/apt 129
## 939 Manhattan Entire home/apt 199
## 940 Brooklyn Private room 92
## 941 Brooklyn Entire home/apt 185
## 942 Manhattan Entire home/apt 110
## 943 Brooklyn Private room 65
## 944 Manhattan Private room 135
## 945 Manhattan Shared room 115
## 946 Manhattan Private room 175
## 947 Manhattan Private room 3000
## 948 Brooklyn Private room 72
## 949 Brooklyn Private room 80
## 950 Brooklyn Entire home/apt 125
## 951 Brooklyn Private room 120
## 952 Brooklyn Private room 94
## 953 Brooklyn Private room 56
## 954 Manhattan Entire home/apt 549
## 955 Brooklyn Entire home/apt 190
## 956 Brooklyn Private room 129
## 957 Brooklyn Entire home/apt 85
## 958 Staten Island Private room 20
## 959 Manhattan Entire home/apt 145
## 960 Manhattan Entire home/apt 200
## 961 Brooklyn Entire home/apt 125
## 962 Brooklyn Entire home/apt 50
## 963 Manhattan Private room 160
## 964 Manhattan Private room 180
## 965 Manhattan Private room 100
## 966 Brooklyn Private room 70
## 967 Bronx Entire home/apt 120
## 968 Staten Island Private room 110
## 969 Manhattan Private room 105
## 970 Manhattan Entire home/apt 250
## 971 Manhattan Private room 74
## 972 Manhattan Entire home/apt 165
## 973 Manhattan Private room 99
## 974 Manhattan Entire home/apt 125
## 975 Queens Private room 75
## 976 Queens Shared room 45
## 977 Brooklyn Entire home/apt 159
## 978 Brooklyn Private room 45
## 979 Manhattan Private room 104
## 980 Manhattan Entire home/apt 225
## 981 Manhattan Private room 100
## 982 Brooklyn Private room 90
## 983 Queens Private room 75
## 984 Manhattan Entire home/apt 350
## 985 Manhattan Entire home/apt 135
## 986 Manhattan Private room 125
## 987 Manhattan Entire home/apt 225
## 988 Manhattan Private room 85
## 989 Manhattan Entire home/apt 200
## 990 Brooklyn Entire home/apt 250
## 991 Manhattan Private room 90
## 992 Brooklyn Entire home/apt 130
## 993 Brooklyn Entire home/apt 90
## 994 Brooklyn Entire home/apt 298
## 995 Manhattan Entire home/apt 300
## 996 Manhattan Private room 125
## 997 Manhattan Private room 125
## 998 Manhattan Private room 145
## 999 Manhattan Entire home/apt 147
## 1000 Brooklyn Private room 123
## 1001 Brooklyn Entire home/apt 88
## 1002 Queens Entire home/apt 215
## 1003 Manhattan Entire home/apt 225
## 1004 Manhattan Entire home/apt 269
## 1005 Brooklyn Entire home/apt 145
## 1006 Brooklyn Private room 75
## 1007 Manhattan Entire home/apt 145
## 1008 Brooklyn Entire home/apt 229
## 1009 Brooklyn Entire home/apt 300
## 1010 Manhattan Private room 100
## 1011 Brooklyn Entire home/apt 75
## 1012 Manhattan Entire home/apt 225
## 1013 Brooklyn Private room 120
## 1014 Brooklyn Entire home/apt 160
## 1015 Brooklyn Entire home/apt 125
## 1016 Brooklyn Entire home/apt 95
## 1017 Brooklyn Private room 119
## 1018 Manhattan Entire home/apt 275
## 1019 Manhattan Entire home/apt 160
## 1020 Brooklyn Entire home/apt 500
## 1021 Manhattan Entire home/apt 175
## 1022 Brooklyn Entire home/apt 87
## 1023 Brooklyn Entire home/apt 160
## 1024 Manhattan Private room 125
## 1025 Brooklyn Entire home/apt 90
## 1026 Manhattan Entire home/apt 200
## 1027 Brooklyn Entire home/apt 250
## 1028 Manhattan Private room 99
## 1029 Manhattan Entire home/apt 325
## 1030 Manhattan Private room 99
## 1031 Manhattan Entire home/apt 325
## 1032 Manhattan Entire home/apt 129
## 1033 Brooklyn Entire home/apt 130
## 1034 Brooklyn Entire home/apt 190
## 1035 Brooklyn Private room 55
## 1036 Manhattan Private room 60
## 1037 Manhattan Entire home/apt 250
## 1038 Manhattan Entire home/apt 275
## 1039 Queens Private room 50
## 1040 Brooklyn Entire home/apt 125
## 1041 Brooklyn Entire home/apt 150
## 1042 Brooklyn Entire home/apt 70
## 1043 Brooklyn Entire home/apt 138
## 1044 Manhattan Entire home/apt 265
## 1045 Manhattan Private room 145
## 1046 Manhattan Entire home/apt 151
## 1047 Manhattan Entire home/apt 208
## 1048 Brooklyn Entire home/apt 200
## 1049 Manhattan Private room 110
## 1050 Manhattan Private room 58
## 1051 Manhattan Private room 55
## 1052 Brooklyn Entire home/apt 105
## 1053 Manhattan Entire home/apt 350
## 1054 Brooklyn Entire home/apt 150
## 1055 Brooklyn Private room 55
## 1056 Brooklyn Entire home/apt 299
## 1057 Queens Entire home/apt 77
## 1058 Manhattan Entire home/apt 125
## 1059 Manhattan Entire home/apt 395
## 1060 Brooklyn Entire home/apt 189
## 1061 Bronx Private room 49
## 1062 Manhattan Entire home/apt 90
## 1063 Manhattan Private room 100
## 1064 Brooklyn Entire home/apt 299
## 1065 Queens Private room 75
## 1066 Queens Private room 69
## 1067 Brooklyn Private room 90
## 1068 Manhattan Private room 94
## 1069 Brooklyn Private room 80
## 1070 Bronx Entire home/apt 100
## 1071 Brooklyn Private room 39
## 1072 Manhattan Entire home/apt 250
## 1073 Brooklyn Private room 55
## 1074 Brooklyn Private room 110
## 1075 Brooklyn Entire home/apt 200
## 1076 Brooklyn Entire home/apt 142
## 1077 Brooklyn Private room 70
## 1078 Brooklyn Entire home/apt 260
## 1079 Manhattan Entire home/apt 225
## 1080 Brooklyn Private room 59
## 1081 Manhattan Private room 65
## 1082 Manhattan Entire home/apt 99
## 1083 Manhattan Entire home/apt 239
## 1084 Manhattan Entire home/apt 50
## 1085 Manhattan Private room 65
## 1086 Manhattan Entire home/apt 139
## 1087 Manhattan Entire home/apt 174
## 1088 Manhattan Entire home/apt 315
## 1089 Manhattan Private room 75
## 1090 Manhattan Entire home/apt 210
## 1091 Brooklyn Private room 55
## 1092 Brooklyn Entire home/apt 229
## 1093 Manhattan Entire home/apt 150
## 1094 Manhattan Entire home/apt 129
## 1095 Manhattan Entire home/apt 100
## 1096 Brooklyn Entire home/apt 200
## 1097 Manhattan Private room 89
## 1098 Brooklyn Entire home/apt 250
## 1099 Brooklyn Private room 65
## 1100 Brooklyn Entire home/apt 68
## 1101 Brooklyn Entire home/apt 235
## 1102 Brooklyn Entire home/apt 100
## 1103 Manhattan Entire home/apt 311
## 1104 Queens Shared room 39
## 1105 Manhattan Private room 100
## 1106 Manhattan Private room 1300
## 1107 Manhattan Entire home/apt 210
## 1108 Brooklyn Private room 55
## 1109 Manhattan Private room 65
## 1110 Brooklyn Entire home/apt 165
## 1111 Manhattan Private room 89
## 1112 Manhattan Entire home/apt 500
## 1113 Brooklyn Entire home/apt 145
## 1114 Brooklyn Private room 110
## 1115 Manhattan Entire home/apt 180
## 1116 Brooklyn Entire home/apt 115
## 1117 Brooklyn Entire home/apt 82
## 1118 Queens Private room 70
## 1119 Brooklyn Entire home/apt 155
## 1120 Manhattan Entire home/apt 117
## 1121 Brooklyn Entire home/apt 100
## 1122 Manhattan Entire home/apt 89
## 1123 Manhattan Entire home/apt 89
## 1124 Manhattan Entire home/apt 99
## 1125 Manhattan Entire home/apt 155
## 1126 Manhattan Private room 85
## 1127 Manhattan Private room 80
## 1128 Manhattan Entire home/apt 135
## 1129 Brooklyn Entire home/apt 150
## 1130 Manhattan Entire home/apt 380
## 1131 Brooklyn Entire home/apt 450
## 1132 Brooklyn Entire home/apt 145
## 1133 Queens Private room 80
## 1134 Brooklyn Entire home/apt 225
## 1135 Manhattan Private room 99
## 1136 Manhattan Entire home/apt 125
## 1137 Manhattan Entire home/apt 80
## 1138 Brooklyn Private room 100
## 1139 Brooklyn Private room 55
## 1140 Manhattan Entire home/apt 328
## 1141 Brooklyn Entire home/apt 142
## 1142 Brooklyn Entire home/apt 350
## 1143 Brooklyn Entire home/apt 300
## 1144 Brooklyn Entire home/apt 105
## 1145 Brooklyn Private room 125
## 1146 Brooklyn Entire home/apt 225
## 1147 Brooklyn Entire home/apt 92
## 1148 Manhattan Entire home/apt 185
## 1149 Brooklyn Entire home/apt 226
## 1150 Brooklyn Private room 50
## 1151 Manhattan Private room 80
## 1152 Brooklyn Private room 200
## 1153 Manhattan Entire home/apt 99
## 1154 Brooklyn Entire home/apt 68
## 1155 Brooklyn Private room 102
## 1156 Brooklyn Entire home/apt 220
## 1157 Manhattan Entire home/apt 199
## 1158 Manhattan Entire home/apt 165
## 1159 Manhattan Entire home/apt 150
## 1160 Brooklyn Entire home/apt 385
## 1161 Brooklyn Private room 75
## 1162 Manhattan Entire home/apt 499
## 1163 Queens Private room 85
## 1164 Brooklyn Entire home/apt 160
## 1165 Brooklyn Entire home/apt 249
## 1166 Brooklyn Private room 80
## 1167 Brooklyn Private room 120
## 1168 Bronx Private room 35
## 1169 Brooklyn Entire home/apt 169
## 1170 Manhattan Entire home/apt 220
## 1171 Brooklyn Private room 85
## 1172 Manhattan Entire home/apt 300
## 1173 Manhattan Private room 79
## 1174 Brooklyn Private room 90
## 1175 Manhattan Private room 99
## 1176 Manhattan Shared room 50
## 1177 Brooklyn Private room 46
## 1178 Brooklyn Entire home/apt 325
## 1179 Staten Island Private room 68
## 1180 Manhattan Entire home/apt 198
## 1181 Brooklyn Entire home/apt 100
## 1182 Brooklyn Entire home/apt 175
## 1183 Manhattan Entire home/apt 130
## 1184 Manhattan Entire home/apt 180
## 1185 Brooklyn Entire home/apt 209
## 1186 Manhattan Entire home/apt 150
## 1187 Manhattan Entire home/apt 104
## 1188 Manhattan Entire home/apt 175
## 1189 Manhattan Private room 80
## 1190 Brooklyn Private room 68
## 1191 Manhattan Private room 72
## 1192 Queens Entire home/apt 107
## 1193 Manhattan Entire home/apt 150
## 1194 Bronx Private room 45
## 1195 Brooklyn Private room 49
## 1196 Brooklyn Entire home/apt 349
## 1197 Manhattan Entire home/apt 185
## 1198 Manhattan Entire home/apt 145
## 1199 Brooklyn Entire home/apt 96
## 1200 Brooklyn Entire home/apt 120
## 1201 Manhattan Entire home/apt 160
## 1202 Brooklyn Entire home/apt 800
## 1203 Brooklyn Entire home/apt 349
## 1204 Queens Entire home/apt 350
## 1205 Brooklyn Entire home/apt 125
## 1206 Brooklyn Entire home/apt 350
## 1207 Brooklyn Entire home/apt 150
## 1208 Brooklyn Entire home/apt 180
## 1209 Manhattan Entire home/apt 200
## 1210 Brooklyn Entire home/apt 99
## 1211 Manhattan Entire home/apt 130
## 1212 Brooklyn Entire home/apt 150
## 1213 Brooklyn Entire home/apt 90
## 1214 Brooklyn Private room 95
## 1215 Queens Entire home/apt 70
## 1216 Manhattan Private room 82
## 1217 Brooklyn Entire home/apt 250
## 1218 Manhattan Entire home/apt 90
## 1219 Queens Private room 75
## 1220 Brooklyn Entire home/apt 160
## 1221 Manhattan Private room 115
## 1222 Brooklyn Private room 150
## 1223 Brooklyn Private room 89
## 1224 Queens Entire home/apt 69
## 1225 Manhattan Private room 170
## 1226 Brooklyn Entire home/apt 375
## 1227 Manhattan Entire home/apt 118
## 1228 Manhattan Entire home/apt 135
## 1229 Bronx Entire home/apt 250
## 1230 Brooklyn Entire home/apt 200
## 1231 Manhattan Entire home/apt 150
## 1232 Manhattan Private room 50
## 1233 Brooklyn Private room 60
## 1234 Manhattan Entire home/apt 100
## 1235 Manhattan Entire home/apt 265
## 1236 Manhattan Private room 90
## 1237 Manhattan Entire home/apt 175
## 1238 Brooklyn Private room 36
## 1239 Manhattan Entire home/apt 250
## 1240 Manhattan Entire home/apt 220
## 1241 Manhattan Private room 93
## 1242 Brooklyn Entire home/apt 275
## 1243 Queens Private room 109
## 1244 Brooklyn Entire home/apt 450
## 1245 Manhattan Entire home/apt 165
## 1246 Brooklyn Entire home/apt 80
## 1247 Manhattan Private room 295
## 1248 Brooklyn Entire home/apt 280
## 1249 Manhattan Entire home/apt 300
## 1250 Manhattan Entire home/apt 99
## 1251 Brooklyn Entire home/apt 175
## 1252 Manhattan Entire home/apt 225
## 1253 Manhattan Entire home/apt 230
## 1254 Brooklyn Private room 90
## 1255 Manhattan Entire home/apt 102
## 1256 Brooklyn Private room 59
## 1257 Manhattan Entire home/apt 195
## 1258 Queens Entire home/apt 150
## 1259 Manhattan Entire home/apt 170
## 1260 Manhattan Entire home/apt 217
## 1261 Manhattan Entire home/apt 185
## 1262 Manhattan Private room 58
## 1263 Brooklyn Entire home/apt 189
## 1264 Manhattan Entire home/apt 88
## 1265 Manhattan Entire home/apt 195
## 1266 Queens Entire home/apt 110
## 1267 Brooklyn Entire home/apt 120
## 1268 Manhattan Private room 79
## 1269 Manhattan Entire home/apt 110
## 1270 Brooklyn Private room 200
## 1271 Brooklyn Private room 69
## 1272 Queens Private room 55
## 1273 Brooklyn Entire home/apt 135
## 1274 Manhattan Entire home/apt 500
## 1275 Brooklyn Entire home/apt 90
## 1276 Brooklyn Entire home/apt 135
## 1277 Brooklyn Private room 199
## 1278 Manhattan Entire home/apt 90
## 1279 Manhattan Entire home/apt 160
## 1280 Brooklyn Private room 65
## 1281 Manhattan Entire home/apt 210
## 1282 Manhattan Entire home/apt 399
## 1283 Manhattan Entire home/apt 300
## 1284 Brooklyn Entire home/apt 185
## 1285 Manhattan Entire home/apt 220
## 1286 Brooklyn Entire home/apt 121
## 1287 Manhattan Entire home/apt 120
## 1288 Brooklyn Private room 152
## 1289 Brooklyn Entire home/apt 250
## 1290 Manhattan Private room 99
## 1291 Brooklyn Entire home/apt 104
## 1292 Brooklyn Entire home/apt 120
## 1293 Manhattan Entire home/apt 295
## 1294 Brooklyn Entire home/apt 90
## 1295 Manhattan Entire home/apt 197
## 1296 Manhattan Entire home/apt 145
## 1297 Manhattan Entire home/apt 90
## 1298 Manhattan Private room 125
## 1299 Manhattan Entire home/apt 190
## 1300 Manhattan Shared room 76
## 1301 Brooklyn Private room 50
## 1302 Manhattan Private room 107
## 1303 Brooklyn Entire home/apt 80
## 1304 Brooklyn Entire home/apt 150
## 1305 Brooklyn Entire home/apt 110
## 1306 Brooklyn Entire home/apt 115
## 1307 Manhattan Entire home/apt 151
## 1308 Brooklyn Entire home/apt 130
## 1309 Brooklyn Entire home/apt 180
## 1310 Brooklyn Private room 95
## 1311 Manhattan Private room 79
## 1312 Brooklyn Private room 60
## 1313 Brooklyn Entire home/apt 133
## 1314 Manhattan Entire home/apt 120
## 1315 Brooklyn Private room 120
## 1316 Manhattan Private room 700
## 1317 Manhattan Entire home/apt 165
## 1318 Manhattan Entire home/apt 165
## 1319 Queens Entire home/apt 54
## 1320 Manhattan Entire home/apt 100
## 1321 Brooklyn Private room 80
## 1322 Manhattan Private room 96
## 1323 Brooklyn Entire home/apt 159
## 1324 Brooklyn Private room 50
## 1325 Manhattan Private room 75
## 1326 Brooklyn Entire home/apt 155
## 1327 Brooklyn Private room 150
## 1328 Queens Entire home/apt 92
## 1329 Brooklyn Private room 75
## 1330 Queens Private room 69
## 1331 Brooklyn Entire home/apt 115
## 1332 Manhattan Entire home/apt 120
## 1333 Manhattan Private room 120
## 1334 Manhattan Entire home/apt 215
## 1335 Brooklyn Entire home/apt 195
## 1336 Brooklyn Entire home/apt 175
## 1337 Brooklyn Private room 80
## 1338 Brooklyn Private room 48
## 1339 Manhattan Entire home/apt 200
## 1340 Brooklyn Entire home/apt 275
## 1341 Brooklyn Private room 72
## 1342 Manhattan Entire home/apt 199
## 1343 Brooklyn Entire home/apt 250
## 1344 Manhattan Private room 75
## 1345 Manhattan Private room 125
## 1346 Manhattan Private room 229
## 1347 Brooklyn Entire home/apt 175
## 1348 Brooklyn Entire home/apt 140
## 1349 Brooklyn Private room 54
## 1350 Queens Entire home/apt 75
## 1351 Manhattan Entire home/apt 110
## 1352 Manhattan Entire home/apt 165
## 1353 Manhattan Private room 55
## 1354 Manhattan Private room 55
## 1355 Manhattan Entire home/apt 300
## 1356 Manhattan Entire home/apt 275
## 1357 Manhattan Entire home/apt 331
## 1358 Brooklyn Private room 77
## 1359 Manhattan Private room 60
## 1360 Brooklyn Entire home/apt 129
## 1361 Queens Private room 100
## 1362 Brooklyn Entire home/apt 120
## 1363 Brooklyn Entire home/apt 500
## 1364 Manhattan Entire home/apt 179
## 1365 Brooklyn Entire home/apt 149
## 1366 Brooklyn Entire home/apt 180
## 1367 Brooklyn Private room 100
## 1368 Brooklyn Entire home/apt 180
## 1369 Brooklyn Entire home/apt 128
## 1370 Brooklyn Entire home/apt 260
## 1371 Queens Private room 55
## 1372 Brooklyn Private room 65
## 1373 Manhattan Entire home/apt 200
## 1374 Manhattan Entire home/apt 249
## 1375 Brooklyn Entire home/apt 300
## 1376 Manhattan Entire home/apt 120
## 1377 Manhattan Private room 120
## 1378 Brooklyn Entire home/apt 125
## 1379 Queens Entire home/apt 99
## 1380 Brooklyn Entire home/apt 115
## 1381 Brooklyn Entire home/apt 275
## 1382 Brooklyn Entire home/apt 198
## 1383 Manhattan Entire home/apt 199
## 1384 Queens Private room 45
## 1385 Manhattan Private room 125
## 1386 Manhattan Entire home/apt 80
## 1387 Manhattan Entire home/apt 130
## 1388 Brooklyn Private room 35
## 1389 Brooklyn Entire home/apt 90
## 1390 Brooklyn Entire home/apt 250
## 1391 Brooklyn Entire home/apt 115
## 1392 Brooklyn Entire home/apt 200
## 1393 Brooklyn Private room 64
## 1394 Brooklyn Private room 65
## 1395 Queens Entire home/apt 175
## 1396 Manhattan Private room 90
## 1397 Brooklyn Private room 85
## 1398 Manhattan Entire home/apt 150
## 1399 Manhattan Entire home/apt 50
## 1400 Manhattan Entire home/apt 136
## 1401 Brooklyn Entire home/apt 400
## 1402 Brooklyn Entire home/apt 125
## 1403 Manhattan Entire home/apt 165
## 1404 Brooklyn Entire home/apt 180
## 1405 Manhattan Entire home/apt 105
## 1406 Manhattan Entire home/apt 148
## 1407 Brooklyn Entire home/apt 120
## 1408 Manhattan Entire home/apt 99
## 1409 Manhattan Entire home/apt 175
## 1410 Brooklyn Private room 85
## 1411 Manhattan Private room 80
## 1412 Brooklyn Entire home/apt 119
## 1413 Queens Private room 89
## 1414 Manhattan Shared room 195
## 1415 Manhattan Entire home/apt 1000
## 1416 Manhattan Entire home/apt 225
## 1417 Brooklyn Entire home/apt 165
## 1418 Brooklyn Private room 60
## 1419 Manhattan Entire home/apt 165
## 1420 Brooklyn Private room 80
## 1421 Queens Private room 52
## 1422 Manhattan Entire home/apt 160
## 1423 Brooklyn Entire home/apt 110
## 1424 Manhattan Private room 60
## 1425 Staten Island Entire home/apt 299
## 1426 Manhattan Entire home/apt 200
## 1427 Manhattan Entire home/apt 700
## 1428 Brooklyn Private room 120
## 1429 Manhattan Private room 65
## 1430 Manhattan Entire home/apt 263
## 1431 Brooklyn Entire home/apt 120
## 1432 Manhattan Entire home/apt 150
## 1433 Manhattan Private room 60
## 1434 Brooklyn Private room 350
## 1435 Staten Island Private room 71
## 1436 Manhattan Entire home/apt 433
## 1437 Manhattan Private room 79
## 1438 Manhattan Private room 140
## 1439 Queens Private room 61
## 1440 Manhattan Private room 100
## 1441 Manhattan Entire home/apt 250
## 1442 Manhattan Private room 145
## 1443 Brooklyn Shared room 45
## 1444 Brooklyn Private room 73
## 1445 Brooklyn Entire home/apt 150
## 1446 Manhattan Entire home/apt 234
## 1447 Manhattan Entire home/apt 150
## 1448 Manhattan Private room 65
## 1449 Brooklyn Entire home/apt 195
## 1450 Manhattan Entire home/apt 135
## 1451 Brooklyn Entire home/apt 90
## 1452 Manhattan Entire home/apt 595
## 1453 Manhattan Private room 109
## 1454 Brooklyn Entire home/apt 200
## 1455 Manhattan Entire home/apt 90
## 1456 Manhattan Entire home/apt 100
## 1457 Manhattan Entire home/apt 85
## 1458 Manhattan Entire home/apt 87
## 1459 Manhattan Entire home/apt 95
## 1460 Manhattan Entire home/apt 349
## 1461 Manhattan Entire home/apt 99
## 1462 Manhattan Entire home/apt 160
## 1463 Manhattan Entire home/apt 149
## 1464 Brooklyn Entire home/apt 60
## 1465 Manhattan Entire home/apt 285
## 1466 Brooklyn Private room 72
## 1467 Manhattan Entire home/apt 150
## 1468 Brooklyn Entire home/apt 200
## 1469 Manhattan Private room 79
## 1470 Manhattan Entire home/apt 197
## 1471 Brooklyn Entire home/apt 75
## 1472 Manhattan Entire home/apt 127
## 1473 Manhattan Private room 110
## 1474 Queens Private room 69
## 1475 Brooklyn Private room 100
## 1476 Manhattan Entire home/apt 99
## 1477 Brooklyn Entire home/apt 139
## 1478 Manhattan Private room 113
## 1479 Manhattan Entire home/apt 250
## 1480 Manhattan Entire home/apt 295
## 1481 Manhattan Entire home/apt 2000
## 1482 Manhattan Entire home/apt 220
## 1483 Manhattan Private room 75
## 1484 Brooklyn Entire home/apt 100
## 1485 Brooklyn Entire home/apt 199
## 1486 Manhattan Entire home/apt 200
## 1487 Brooklyn Entire home/apt 140
## 1488 Manhattan Private room 50
## 1489 Brooklyn Private room 45
## 1490 Brooklyn Entire home/apt 109
## 1491 Manhattan Private room 108
## 1492 Brooklyn Private room 42
## 1493 Brooklyn Private room 70
## 1494 Manhattan Entire home/apt 141
## 1495 Brooklyn Entire home/apt 355
## 1496 Brooklyn Entire home/apt 80
## 1497 Brooklyn Private room 250
## 1498 Queens Private room 75
## 1499 Manhattan Private room 88
## 1500 Manhattan Private room 65
## 1501 Queens Private room 58
## 1502 Queens Entire home/apt 75
## 1503 Queens Private room 100
## 1504 Manhattan Private room 167
## 1505 Queens Private room 65
## 1506 Manhattan Entire home/apt 125
## 1507 Manhattan Private room 95
## 1508 Staten Island Private room 54
## 1509 Brooklyn Entire home/apt 89
## 1510 Manhattan Private room 92
## 1511 Manhattan Entire home/apt 199
## 1512 Manhattan Entire home/apt 179
## 1513 Queens Private room 65
## 1514 Manhattan Private room 55
## 1515 Manhattan Entire home/apt 129
## 1516 Manhattan Entire home/apt 134
## 1517 Brooklyn Private room 35
## 1518 Manhattan Private room 250
## 1519 Brooklyn Entire home/apt 249
## 1520 Queens Private room 62
## 1521 Manhattan Private room 119
## 1522 Brooklyn Entire home/apt 179
## 1523 Brooklyn Entire home/apt 220
## 1524 Brooklyn Entire home/apt 198
## 1525 Brooklyn Entire home/apt 155
## 1526 Brooklyn Entire home/apt 199
## 1527 Manhattan Entire home/apt 95
## 1528 Brooklyn Entire home/apt 550
## 1529 Brooklyn Private room 60
## 1530 Brooklyn Entire home/apt 380
## 1531 Brooklyn Private room 84
## 1532 Manhattan Entire home/apt 165
## 1533 Manhattan Entire home/apt 105
## 1534 Brooklyn Entire home/apt 134
## 1535 Brooklyn Private room 68
## 1536 Manhattan Entire home/apt 73
## 1537 Brooklyn Entire home/apt 150
## 1538 Manhattan Entire home/apt 100
## 1539 Manhattan Private room 75
## 1540 Manhattan Private room 120
## 1541 Brooklyn Entire home/apt 85
## 1542 Manhattan Entire home/apt 55
## 1543 Manhattan Private room 95
## 1544 Manhattan Private room 72
## 1545 Manhattan Entire home/apt 250
## 1546 Brooklyn Private room 69
## 1547 Brooklyn Private room 78
## 1548 Brooklyn Entire home/apt 220
## 1549 Manhattan Entire home/apt 230
## 1550 Brooklyn Entire home/apt 150
## 1551 Brooklyn Private room 80
## 1552 Brooklyn Private room 150
## 1553 Brooklyn Entire home/apt 150
## 1554 Manhattan Entire home/apt 900
## 1555 Manhattan Entire home/apt 130
## 1556 Brooklyn Private room 70
## 1557 Queens Entire home/apt 120
## 1558 Staten Island Private room 75
## 1559 Brooklyn Entire home/apt 100
## 1560 Brooklyn Private room 69
## 1561 Manhattan Entire home/apt 399
## 1562 Manhattan Entire home/apt 299
## 1563 Manhattan Private room 100
## 1564 Queens Private room 68
## 1565 Brooklyn Private room 103
## 1566 Manhattan Entire home/apt 175
## 1567 Brooklyn Entire home/apt 330
## 1568 Manhattan Entire home/apt 425
## 1569 Manhattan Entire home/apt 240
## 1570 Staten Island Private room 75
## 1571 Brooklyn Private room 210
## 1572 Brooklyn Entire home/apt 175
## 1573 Brooklyn Private room 85
## 1574 Queens Entire home/apt 120
## 1575 Queens Entire home/apt 120
## 1576 Brooklyn Private room 75
## 1577 Manhattan Entire home/apt 495
## 1578 Brooklyn Private room 65
## 1579 Bronx Private room 39
## 1580 Brooklyn Entire home/apt 93
## 1581 Brooklyn Private room 146
## 1582 Brooklyn Entire home/apt 120
## 1583 Manhattan Private room 79
## 1584 Brooklyn Entire home/apt 100
## 1585 Manhattan Private room 120
## 1586 Manhattan Entire home/apt 150
## 1587 Manhattan Entire home/apt 144
## 1588 Brooklyn Private room 60
## 1589 Manhattan Entire home/apt 350
## 1590 Brooklyn Private room 85
## 1591 Manhattan Entire home/apt 195
## 1592 Manhattan Entire home/apt 200
## 1593 Manhattan Entire home/apt 169
## 1594 Manhattan Private room 95
## 1595 Manhattan Entire home/apt 375
## 1596 Brooklyn Entire home/apt 168
## 1597 Brooklyn Entire home/apt 50
## 1598 Brooklyn Private room 129
## 1599 Queens Entire home/apt 245
## 1600 Brooklyn Entire home/apt 199
## 1601 Brooklyn Entire home/apt 199
## 1602 Brooklyn Private room 99
## 1603 Brooklyn Entire home/apt 160
## 1604 Brooklyn Private room 65
## 1605 Manhattan Private room 70
## 1606 Manhattan Private room 80
## 1607 Manhattan Entire home/apt 100
## 1608 Brooklyn Private room 70
## 1609 Manhattan Entire home/apt 200
## 1610 Brooklyn Private room 66
## 1611 Manhattan Entire home/apt 200
## 1612 Brooklyn Private room 95
## 1613 Manhattan Entire home/apt 140
## 1614 Manhattan Private room 65
## 1615 Manhattan Entire home/apt 106
## 1616 Manhattan Entire home/apt 155
## 1617 Manhattan Entire home/apt 249
## 1618 Manhattan Entire home/apt 120
## 1619 Brooklyn Private room 52
## 1620 Manhattan Private room 75
## 1621 Brooklyn Shared room 195
## 1622 Staten Island Entire home/apt 625
## 1623 Manhattan Entire home/apt 171
## 1624 Manhattan Entire home/apt 185
## 1625 Queens Private room 55
## 1626 Brooklyn Private room 50
## 1627 Manhattan Entire home/apt 120
## 1628 Manhattan Entire home/apt 210
## 1629 Manhattan Entire home/apt 133
## 1630 Brooklyn Entire home/apt 73
## 1631 Manhattan Entire home/apt 350
## 1632 Manhattan Entire home/apt 259
## 1633 Manhattan Private room 97
## 1634 Manhattan Entire home/apt 199
## 1635 Manhattan Entire home/apt 125
## 1636 Brooklyn Entire home/apt 100
## 1637 Brooklyn Private room 39
## 1638 Manhattan Entire home/apt 125
## 1639 Manhattan Entire home/apt 150
## 1640 Manhattan Entire home/apt 170
## 1641 Manhattan Entire home/apt 199
## 1642 Manhattan Private room 80
## 1643 Brooklyn Private room 125
## 1644 Manhattan Private room 155
## 1645 Manhattan Private room 120
## 1646 Brooklyn Entire home/apt 220
## 1647 Brooklyn Entire home/apt 90
## 1648 Brooklyn Private room 61
## 1649 Manhattan Entire home/apt 179
## 1650 Queens Shared room 108
## 1651 Brooklyn Entire home/apt 575
## 1652 Manhattan Private room 99
## 1653 Brooklyn Entire home/apt 175
## 1654 Brooklyn Entire home/apt 110
## 1655 Brooklyn Entire home/apt 250
## 1656 Brooklyn Private room 100
## 1657 Manhattan Entire home/apt 200
## 1658 Queens Entire home/apt 89
## 1659 Manhattan Entire home/apt 400
## 1660 Brooklyn Entire home/apt 149
## 1661 Manhattan Entire home/apt 500
## 1662 Manhattan Private room 95
## 1663 Brooklyn Entire home/apt 125
## 1664 Manhattan Private room 80
## 1665 Brooklyn Entire home/apt 105
## 1666 Queens Private room 39
## 1667 Bronx Entire home/apt 49
## 1668 Manhattan Entire home/apt 187
## 1669 Brooklyn Private room 55
## 1670 Brooklyn Entire home/apt 250
## 1671 Manhattan Entire home/apt 125
## 1672 Brooklyn Entire home/apt 100
## 1673 Brooklyn Entire home/apt 175
## 1674 Brooklyn Private room 50
## 1675 Manhattan Entire home/apt 133
## 1676 Manhattan Entire home/apt 155
## 1677 Queens Entire home/apt 140
## 1678 Queens Private room 80
## 1679 Brooklyn Private room 103
## 1680 Manhattan Entire home/apt 600
## 1681 Brooklyn Private room 70
## 1682 Brooklyn Private room 75
## 1683 Brooklyn Private room 55
## 1684 Manhattan Entire home/apt 50
## 1685 Queens Entire home/apt 390
## 1686 Brooklyn Entire home/apt 82
## 1687 Brooklyn Shared room 52
## 1688 Brooklyn Private room 115
## 1689 Queens Entire home/apt 299
## 1690 Brooklyn Entire home/apt 175
## 1691 Brooklyn Entire home/apt 100
## 1692 Manhattan Entire home/apt 95
## 1693 Queens Private room 55
## 1694 Brooklyn Private room 45
## 1695 Brooklyn Entire home/apt 165
## 1696 Manhattan Entire home/apt 105
## 1697 Brooklyn Entire home/apt 200
## 1698 Manhattan Private room 65
## 1699 Manhattan Private room 100
## 1700 Brooklyn Entire home/apt 312
## 1701 Manhattan Entire home/apt 195
## 1702 Manhattan Entire home/apt 100
## 1703 Brooklyn Entire home/apt 155
## 1704 Queens Entire home/apt 250
## 1705 Manhattan Entire home/apt 165
## 1706 Manhattan Entire home/apt 120
## 1707 Bronx Private room 38
## 1708 Brooklyn Shared room 200
## 1709 Brooklyn Private room 90
## 1710 Manhattan Private room 85
## 1711 Queens Private room 55
## 1712 Manhattan Shared room 350
## 1713 Manhattan Private room 59
## 1714 Manhattan Entire home/apt 280
## 1715 Queens Private room 69
## 1716 Brooklyn Entire home/apt 230
## 1717 Brooklyn Entire home/apt 200
## 1718 Brooklyn Entire home/apt 150
## 1719 Brooklyn Private room 75
## 1720 Manhattan Private room 120
## 1721 Manhattan Entire home/apt 140
## 1722 Manhattan Entire home/apt 200
## 1723 Manhattan Entire home/apt 225
## 1724 Brooklyn Entire home/apt 145
## 1725 Bronx Private room 60
## 1726 Brooklyn Entire home/apt 119
## 1727 Manhattan Entire home/apt 189
## 1728 Manhattan Entire home/apt 190
## 1729 Manhattan Private room 69
## 1730 Queens Private room 70
## 1731 Brooklyn Entire home/apt 155
## 1732 Brooklyn Entire home/apt 149
## 1733 Manhattan Private room 160
## 1734 Brooklyn Private room 100
## 1735 Manhattan Entire home/apt 220
## 1736 Manhattan Private room 85
## 1737 Manhattan Entire home/apt 135
## 1738 Brooklyn Private room 45
## 1739 Manhattan Entire home/apt 225
## 1740 Manhattan Entire home/apt 100
## 1741 Brooklyn Entire home/apt 145
## 1742 Manhattan Entire home/apt 210
## 1743 Brooklyn Entire home/apt 195
## 1744 Manhattan Private room 95
## 1745 Manhattan Entire home/apt 140
## 1746 Manhattan Private room 95
## 1747 Manhattan Entire home/apt 295
## 1748 Manhattan Private room 80
## 1749 Manhattan Entire home/apt 250
## 1750 Bronx Entire home/apt 60
## 1751 Manhattan Entire home/apt 150
## 1752 Manhattan Entire home/apt 159
## 1753 Brooklyn Entire home/apt 225
## 1754 Manhattan Private room 78
## 1755 Manhattan Entire home/apt 210
## 1756 Brooklyn Private room 60
## 1757 Manhattan Entire home/apt 220
## 1758 Brooklyn Entire home/apt 199
## 1759 Brooklyn Entire home/apt 225
## 1760 Manhattan Entire home/apt 350
## 1761 Manhattan Private room 65
## 1762 Manhattan Entire home/apt 225
## 1763 Brooklyn Private room 82
## 1764 Manhattan Private room 75
## 1765 Queens Private room 60
## 1766 Manhattan Entire home/apt 105
## 1767 Brooklyn Entire home/apt 115
## 1768 Manhattan Entire home/apt 150
## 1769 Brooklyn Private room 65
## 1770 Brooklyn Entire home/apt 150
## 1771 Brooklyn Private room 101
## 1772 Manhattan Entire home/apt 130
## 1773 Brooklyn Private room 165
## 1774 Manhattan Entire home/apt 175
## 1775 Manhattan Entire home/apt 115
## 1776 Brooklyn Entire home/apt 128
## 1777 Manhattan Entire home/apt 116
## 1778 Manhattan Entire home/apt 192
## 1779 Brooklyn Entire home/apt 150
## 1780 Brooklyn Entire home/apt 163
## 1781 Brooklyn Private room 40
## 1782 Brooklyn Entire home/apt 200
## 1783 Manhattan Entire home/apt 158
## 1784 Brooklyn Private room 115
## 1785 Manhattan Private room 85
## 1786 Manhattan Entire home/apt 173
## 1787 Brooklyn Entire home/apt 250
## 1788 Manhattan Entire home/apt 465
## 1789 Brooklyn Entire home/apt 275
## 1790 Manhattan Private room 195
## 1791 Brooklyn Entire home/apt 63
## 1792 Manhattan Private room 36
## 1793 Brooklyn Entire home/apt 130
## 1794 Brooklyn Entire home/apt 200
## 1795 Brooklyn Private room 85
## 1796 Queens Entire home/apt 150
## 1797 Queens Private room 45
## 1798 Queens Private room 45
## 1799 Brooklyn Private room 79
## 1800 Brooklyn Entire home/apt 149
## 1801 Manhattan Entire home/apt 200
## 1802 Manhattan Private room 85
## 1803 Queens Private room 60
## 1804 Manhattan Entire home/apt 139
## 1805 Brooklyn Entire home/apt 160
## 1806 Manhattan Private room 95
## 1807 Brooklyn Private room 80
## 1808 Brooklyn Entire home/apt 250
## 1809 Manhattan Entire home/apt 349
## 1810 Manhattan Entire home/apt 165
## 1811 Brooklyn Entire home/apt 119
## 1812 Manhattan Entire home/apt 240
## 1813 Brooklyn Private room 79
## 1814 Brooklyn Entire home/apt 215
## 1815 Brooklyn Private room 49
## 1816 Brooklyn Entire home/apt 190
## 1817 Manhattan Entire home/apt 99
## 1818 Brooklyn Private room 68
## 1819 Brooklyn Entire home/apt 185
## 1820 Manhattan Entire home/apt 225
## 1821 Manhattan Private room 81
## 1822 Manhattan Entire home/apt 199
## 1823 Brooklyn Private room 55
## 1824 Manhattan Entire home/apt 340
## 1825 Manhattan Entire home/apt 135
## 1826 Queens Entire home/apt 85
## 1827 Brooklyn Entire home/apt 65
## 1828 Manhattan Entire home/apt 100
## 1829 Brooklyn Private room 109
## 1830 Manhattan Entire home/apt 290
## 1831 Manhattan Private room 35
## 1832 Manhattan Entire home/apt 148
## 1833 Queens Private room 57
## 1834 Manhattan Entire home/apt 150
## 1835 Manhattan Private room 60
## 1836 Manhattan Private room 60
## 1837 Manhattan Shared room 45
## 1838 Manhattan Private room 60
## 1839 Brooklyn Entire home/apt 125
## 1840 Manhattan Private room 60
## 1841 Brooklyn Private room 75
## 1842 Manhattan Entire home/apt 121
## 1843 Brooklyn Private room 89
## 1844 Brooklyn Entire home/apt 300
## 1845 Brooklyn Private room 110
## 1846 Brooklyn Entire home/apt 99
## 1847 Brooklyn Entire home/apt 170
## 1848 Brooklyn Private room 90
## 1849 Manhattan Private room 179
## 1850 Manhattan Private room 80
## 1851 Manhattan Private room 65
## 1852 Manhattan Private room 69
## 1853 Brooklyn Private room 42
## 1854 Brooklyn Private room 70
## 1855 Brooklyn Entire home/apt 155
## 1856 Manhattan Entire home/apt 135
## 1857 Manhattan Private room 120
## 1858 Brooklyn Entire home/apt 135
## 1859 Staten Island Private room 47
## 1860 Manhattan Private room 69
## 1861 Brooklyn Private room 100
## 1862 Brooklyn Private room 51
## 1863 Brooklyn Entire home/apt 4000
## 1864 Manhattan Private room 65
## 1865 Brooklyn Private room 60
## 1866 Brooklyn Private room 70
## 1867 Manhattan Entire home/apt 130
## 1868 Brooklyn Private room 70
## 1869 Brooklyn Entire home/apt 200
## 1870 Brooklyn Entire home/apt 150
## 1871 Manhattan Entire home/apt 130
## 1872 Brooklyn Private room 68
## 1873 Manhattan Private room 79
## 1874 Manhattan Entire home/apt 149
## 1875 Brooklyn Private room 120
## 1876 Manhattan Entire home/apt 250
## 1877 Manhattan Entire home/apt 175
## 1878 Manhattan Private room 40
## 1879 Brooklyn Private room 55
## 1880 Manhattan Private room 99
## 1881 Brooklyn Entire home/apt 500
## 1882 Manhattan Entire home/apt 240
## 1883 Queens Entire home/apt 400
## 1884 Manhattan Entire home/apt 280
## 1885 Manhattan Entire home/apt 235
## 1886 Manhattan Entire home/apt 130
## 1887 Brooklyn Entire home/apt 96
## 1888 Queens Private room 63
## 1889 Brooklyn Entire home/apt 150
## 1890 Brooklyn Entire home/apt 200
## 1891 Brooklyn Entire home/apt 90
## 1892 Manhattan Entire home/apt 269
## 1893 Manhattan Private room 80
## 1894 Brooklyn Private room 80
## 1895 Manhattan Entire home/apt 400
## 1896 Manhattan Entire home/apt 349
## 1897 Manhattan Entire home/apt 495
## 1898 Brooklyn Entire home/apt 85
## 1899 Brooklyn Entire home/apt 85
## 1900 Manhattan Private room 999
## 1901 Manhattan Private room 109
## 1902 Manhattan Entire home/apt 175
## 1903 Manhattan Entire home/apt 150
## 1904 Brooklyn Private room 80
## 1905 Manhattan Entire home/apt 150
## 1906 Manhattan Entire home/apt 175
## 1907 Queens Entire home/apt 107
## 1908 Manhattan Entire home/apt 80
## 1909 Queens Private room 80
## 1910 Manhattan Private room 75
## 1911 Brooklyn Entire home/apt 800
## 1912 Brooklyn Entire home/apt 130
## 1913 Manhattan Entire home/apt 250
## 1914 Manhattan Entire home/apt 260
## 1915 Brooklyn Private room 36
## 1916 Brooklyn Entire home/apt 140
## 1917 Manhattan Entire home/apt 145
## 1918 Brooklyn Entire home/apt 120
## 1919 Brooklyn Private room 75
## 1920 Brooklyn Private room 60
## 1921 Brooklyn Private room 69
## 1922 Manhattan Private room 95
## 1923 Manhattan Entire home/apt 300
## 1924 Manhattan Private room 131
## 1925 Brooklyn Entire home/apt 120
## 1926 Brooklyn Entire home/apt 100
## 1927 Brooklyn Entire home/apt 100
## 1928 Manhattan Entire home/apt 190
## 1929 Manhattan Entire home/apt 160
## 1930 Queens Private room 60
## 1931 Brooklyn Private room 75
## 1932 Queens Private room 45
## 1933 Manhattan Private room 65
## 1934 Brooklyn Entire home/apt 120
## 1935 Manhattan Entire home/apt 80
## 1936 Brooklyn Entire home/apt 100
## 1937 Brooklyn Entire home/apt 250
## 1938 Manhattan Entire home/apt 235
## 1939 Brooklyn Private room 85
## 1940 Manhattan Entire home/apt 195
## 1941 Brooklyn Entire home/apt 145
## 1942 Brooklyn Entire home/apt 55
## 1943 Brooklyn Entire home/apt 289
## 1944 Manhattan Entire home/apt 120
## 1945 Brooklyn Entire home/apt 149
## 1946 Manhattan Shared room 100
## 1947 Manhattan Entire home/apt 166
## 1948 Manhattan Entire home/apt 99
## 1949 Brooklyn Entire home/apt 150
## 1950 Brooklyn Shared room 44
## 1951 Manhattan Entire home/apt 195
## 1952 Queens Entire home/apt 95
## 1953 Manhattan Private room 100
## 1954 Brooklyn Entire home/apt 60
## 1955 Manhattan Private room 62
## 1956 Manhattan Private room 99
## 1957 Manhattan Private room 90
## 1958 Manhattan Private room 88
## 1959 Manhattan Entire home/apt 125
## 1960 Brooklyn Private room 74
## 1961 Manhattan Entire home/apt 176
## 1962 Brooklyn Private room 62
## 1963 Manhattan Private room 51
## 1964 Brooklyn Entire home/apt 249
## 1965 Manhattan Entire home/apt 200
## 1966 Bronx Private room 30
## 1967 Brooklyn Entire home/apt 240
## 1968 Manhattan Private room 100
## 1969 Manhattan Entire home/apt 125
## 1970 Brooklyn Entire home/apt 149
## 1971 Brooklyn Entire home/apt 170
## 1972 Manhattan Private room 150
## 1973 Manhattan Private room 125
## 1974 Brooklyn Private room 68
## 1975 Manhattan Private room 90
## 1976 Manhattan Private room 65
## 1977 Brooklyn Private room 50
## 1978 Brooklyn Private room 65
## 1979 Brooklyn Entire home/apt 200
## 1980 Brooklyn Private room 65
## 1981 Brooklyn Private room 58
## 1982 Manhattan Private room 65
## 1983 Brooklyn Entire home/apt 185
## 1984 Brooklyn Entire home/apt 115
## 1985 Manhattan Private room 100
## 1986 Manhattan Private room 200
## 1987 Brooklyn Entire home/apt 115
## 1988 Brooklyn Entire home/apt 140
## 1989 Brooklyn Private room 62
## 1990 Brooklyn Entire home/apt 95
## 1991 Brooklyn Entire home/apt 100
## 1992 Manhattan Entire home/apt 113
## 1993 Manhattan Entire home/apt 108
## 1994 Brooklyn Private room 62
## 1995 Brooklyn Entire home/apt 95
## 1996 Brooklyn Entire home/apt 200
## 1997 Manhattan Entire home/apt 165
## 1998 Brooklyn Private room 60
## 1999 Brooklyn Private room 80
## 2000 Brooklyn Entire home/apt 100
## 2001 Manhattan Private room 110
## 2002 Brooklyn Shared room 50
## 2003 Brooklyn Private room 79
## 2004 Brooklyn Entire home/apt 140
## 2005 Manhattan Entire home/apt 339
## 2006 Queens Private room 55
## 2007 Queens Entire home/apt 81
## 2008 Brooklyn Entire home/apt 191
## 2009 Brooklyn Entire home/apt 139
## 2010 Manhattan Entire home/apt 500
## 2011 Brooklyn Entire home/apt 120
## 2012 Manhattan Private room 60
## 2013 Queens Private room 70
## 2014 Brooklyn Entire home/apt 295
## 2015 Brooklyn Entire home/apt 100
## 2016 Manhattan Private room 49
## 2017 Manhattan Entire home/apt 150
## 2018 Brooklyn Entire home/apt 120
## 2019 Manhattan Entire home/apt 2500
## 2020 Manhattan Entire home/apt 175
## 2021 Brooklyn Entire home/apt 107
## 2022 Brooklyn Private room 98
## 2023 Queens Private room 47
## 2024 Manhattan Entire home/apt 100
## 2025 Manhattan Entire home/apt 170
## 2026 Manhattan Entire home/apt 150
## 2027 Queens Entire home/apt 63
## 2028 Brooklyn Shared room 110
## 2029 Brooklyn Entire home/apt 275
## 2030 Brooklyn Entire home/apt 329
## 2031 Manhattan Private room 49
## 2032 Manhattan Private room 49
## 2033 Brooklyn Entire home/apt 165
## 2034 Brooklyn Entire home/apt 160
## 2035 Brooklyn Private room 38
## 2036 Manhattan Entire home/apt 170
## 2037 Manhattan Private room 105
## 2038 Brooklyn Private room 50
## 2039 Manhattan Private room 100
## 2040 Manhattan Entire home/apt 100
## 2041 Brooklyn Entire home/apt 890
## 2042 Manhattan Private room 160
## 2043 Manhattan Entire home/apt 145
## 2044 Brooklyn Private room 51
## 2045 Brooklyn Entire home/apt 150
## 2046 Manhattan Private room 180
## 2047 Manhattan Entire home/apt 225
## 2048 Manhattan Entire home/apt 250
## 2049 Brooklyn Private room 56
## 2050 Brooklyn Private room 70
## 2051 Brooklyn Private room 70
## 2052 Manhattan Private room 125
## 2053 Manhattan Entire home/apt 399
## 2054 Brooklyn Entire home/apt 157
## 2055 Brooklyn Entire home/apt 145
## 2056 Manhattan Private room 75
## 2057 Brooklyn Entire home/apt 280
## 2058 Brooklyn Entire home/apt 220
## 2059 Manhattan Entire home/apt 190
## 2060 Manhattan Entire home/apt 200
## 2061 Queens Entire home/apt 77
## 2062 Brooklyn Private room 35
## 2063 Brooklyn Shared room 30
## 2064 Manhattan Entire home/apt 199
## 2065 Manhattan Entire home/apt 140
## 2066 Manhattan Entire home/apt 124
## 2067 Manhattan Entire home/apt 295
## 2068 Manhattan Entire home/apt 160
## 2069 Queens Private room 349
## 2070 Brooklyn Private room 98
## 2071 Queens Private room 76
## 2072 Manhattan Entire home/apt 230
## 2073 Brooklyn Private room 60
## 2074 Brooklyn Private room 40
## 2075 Manhattan Private room 118
## 2076 Brooklyn Private room 125
## 2077 Brooklyn Entire home/apt 195
## 2078 Manhattan Private room 85
## 2079 Manhattan Private room 55
## 2080 Brooklyn Entire home/apt 155
## 2081 Brooklyn Private room 99
## 2082 Manhattan Entire home/apt 140
## 2083 Brooklyn Private room 85
## 2084 Brooklyn Entire home/apt 75
## 2085 Brooklyn Private room 53
## 2086 Brooklyn Entire home/apt 150
## 2087 Manhattan Entire home/apt 179
## 2088 Brooklyn Entire home/apt 135
## 2089 Manhattan Entire home/apt 200
## 2090 Manhattan Entire home/apt 200
## 2091 Brooklyn Entire home/apt 100
## 2092 Brooklyn Entire home/apt 134
## 2093 Manhattan Private room 100
## 2094 Manhattan Private room 50
## 2095 Brooklyn Private room 50
## 2096 Brooklyn Entire home/apt 400
## 2097 Queens Entire home/apt 115
## 2098 Manhattan Entire home/apt 235
## 2099 Manhattan Entire home/apt 125
## 2100 Manhattan Entire home/apt 250
## 2101 Manhattan Entire home/apt 650
## 2102 Brooklyn Private room 97
## 2103 Brooklyn Entire home/apt 189
## 2104 Manhattan Entire home/apt 100
## 2105 Brooklyn Private room 49
## 2106 Bronx Entire home/apt 84
## 2107 Brooklyn Entire home/apt 165
## 2108 Manhattan Entire home/apt 87
## 2109 Brooklyn Private room 120
## 2110 Manhattan Entire home/apt 195
## 2111 Brooklyn Private room 89
## 2112 Brooklyn Private room 62
## 2113 Brooklyn Entire home/apt 130
## 2114 Manhattan Private room 75
## 2115 Brooklyn Private room 64
## 2116 Brooklyn Entire home/apt 150
## 2117 Manhattan Private room 100
## 2118 Manhattan Entire home/apt 190
## 2119 Brooklyn Private room 98
## 2120 Brooklyn Entire home/apt 150
## 2121 Queens Entire home/apt 99
## 2122 Manhattan Entire home/apt 100
## 2123 Manhattan Entire home/apt 159
## 2124 Brooklyn Private room 70
## 2125 Manhattan Private room 91
## 2126 Brooklyn Entire home/apt 325
## 2127 Brooklyn Entire home/apt 149
## 2128 Manhattan Entire home/apt 200
## 2129 Manhattan Entire home/apt 169
## 2130 Manhattan Entire home/apt 249
## 2131 Queens Entire home/apt 85
## 2132 Queens Private room 81
## 2133 Manhattan Entire home/apt 199
## 2134 Manhattan Entire home/apt 88
## 2135 Manhattan Entire home/apt 170
## 2136 Manhattan Entire home/apt 100
## 2137 Brooklyn Entire home/apt 130
## 2138 Manhattan Entire home/apt 135
## 2139 Brooklyn Entire home/apt 65
## 2140 Brooklyn Entire home/apt 100
## 2141 Manhattan Entire home/apt 165
## 2142 Queens Private room 78
## 2143 Brooklyn Entire home/apt 350
## 2144 Queens Entire home/apt 160
## 2145 Brooklyn Entire home/apt 225
## 2146 Manhattan Entire home/apt 170
## 2147 Manhattan Private room 349
## 2148 Manhattan Private room 65
## 2149 Manhattan Private room 420
## 2150 Manhattan Entire home/apt 119
## 2151 Brooklyn Entire home/apt 100
## 2152 Manhattan Entire home/apt 97
## 2153 Manhattan Entire home/apt 191
## 2154 Manhattan Entire home/apt 187
## 2155 Manhattan Entire home/apt 172
## 2156 Manhattan Entire home/apt 950
## 2157 Brooklyn Entire home/apt 275
## 2158 Manhattan Entire home/apt 99
## 2159 Manhattan Entire home/apt 334
## 2160 Manhattan Private room 60
## 2161 Brooklyn Entire home/apt 145
## 2162 Queens Private room 75
## 2163 Manhattan Entire home/apt 130
## 2164 Manhattan Entire home/apt 575
## 2165 Manhattan Entire home/apt 295
## 2166 Manhattan Entire home/apt 300
## 2167 Brooklyn Entire home/apt 120
## 2168 Brooklyn Private room 50
## 2169 Manhattan Shared room 56
## 2170 Manhattan Entire home/apt 191
## 2171 Manhattan Private room 135
## 2172 Brooklyn Entire home/apt 195
## 2173 Manhattan Shared room 75
## 2174 Manhattan Private room 99
## 2175 Brooklyn Entire home/apt 350
## 2176 Brooklyn Entire home/apt 40
## 2177 Queens Entire home/apt 130
## 2178 Brooklyn Entire home/apt 225
## 2179 Brooklyn Entire home/apt 225
## 2180 Queens Shared room 38
## 2181 Brooklyn Entire home/apt 200
## 2182 Manhattan Entire home/apt 550
## 2183 Brooklyn Entire home/apt 235
## 2184 Brooklyn Private room 75
## 2185 Brooklyn Entire home/apt 249
## 2186 Brooklyn Entire home/apt 120
## 2187 Brooklyn Private room 50
## 2188 Brooklyn Entire home/apt 85
## 2189 Brooklyn Private room 78
## 2190 Manhattan Private room 110
## 2191 Brooklyn Private room 50
## 2192 Manhattan Private room 52
## 2193 Brooklyn Private room 63
## 2194 Manhattan Entire home/apt 105
## 2195 Queens Private room 75
## 2196 Queens Private room 69
## 2197 Manhattan Entire home/apt 165
## 2198 Brooklyn Entire home/apt 125
## 2199 Bronx Private room 85
## 2200 Manhattan Entire home/apt 499
## 2201 Manhattan Private room 60
## 2202 Manhattan Private room 95
## 2203 Brooklyn Entire home/apt 105
## 2204 Brooklyn Private room 55
## 2205 Brooklyn Entire home/apt 289
## 2206 Brooklyn Private room 70
## 2207 Manhattan Entire home/apt 275
## 2208 Manhattan Entire home/apt 130
## 2209 Brooklyn Entire home/apt 125
## 2210 Brooklyn Entire home/apt 150
## 2211 Queens Private room 46
## 2212 Manhattan Entire home/apt 100
## 2213 Brooklyn Private room 90
## 2214 Brooklyn Entire home/apt 90
## 2215 Manhattan Entire home/apt 220
## 2216 Manhattan Entire home/apt 1000
## 2217 Brooklyn Entire home/apt 130
## 2218 Manhattan Entire home/apt 499
## 2219 Manhattan Private room 45
## 2220 Brooklyn Entire home/apt 70
## 2221 Queens Private room 59
## 2222 Manhattan Entire home/apt 160
## 2223 Manhattan Entire home/apt 195
## 2224 Brooklyn Private room 96
## 2225 Brooklyn Private room 75
## 2226 Brooklyn Entire home/apt 195
## 2227 Queens Private room 200
## 2228 Brooklyn Entire home/apt 139
## 2229 Manhattan Entire home/apt 190
## 2230 Manhattan Private room 95
## 2231 Manhattan Entire home/apt 350
## 2232 Manhattan Private room 80
## 2233 Manhattan Entire home/apt 120
## 2234 Manhattan Private room 42
## 2235 Brooklyn Entire home/apt 116
## 2236 Brooklyn Private room 60
## 2237 Brooklyn Entire home/apt 1395
## 2238 Manhattan Entire home/apt 425
## 2239 Brooklyn Entire home/apt 225
## 2240 Manhattan Entire home/apt 159
## 2241 Staten Island Entire home/apt 221
## 2242 Manhattan Private room 150
## 2243 Manhattan Entire home/apt 199
## 2244 Brooklyn Private room 70
## 2245 Manhattan Entire home/apt 110
## 2246 Brooklyn Private room 60
## 2247 Brooklyn Private room 50
## 2248 Manhattan Private room 120
## 2249 Manhattan Entire home/apt 395
## 2250 Brooklyn Private room 60
## 2251 Manhattan Entire home/apt 145
## 2252 Brooklyn Entire home/apt 83
## 2253 Manhattan Private room 100
## 2254 Brooklyn Entire home/apt 200
## 2255 Manhattan Private room 50
## 2256 Manhattan Private room 70
## 2257 Brooklyn Entire home/apt 175
## 2258 Brooklyn Entire home/apt 149
## 2259 Brooklyn Entire home/apt 125
## 2260 Manhattan Private room 58
## 2261 Queens Entire home/apt 160
## 2262 Queens Entire home/apt 150
## 2263 Manhattan Entire home/apt 131
## 2264 Manhattan Entire home/apt 250
## 2265 Queens Private room 70
## 2266 Manhattan Entire home/apt 149
## 2267 Brooklyn Entire home/apt 109
## 2268 Manhattan Private room 185
## 2269 Brooklyn Entire home/apt 138
## 2270 Manhattan Private room 150
## 2271 Brooklyn Private room 80
## 2272 Brooklyn Entire home/apt 75
## 2273 Manhattan Entire home/apt 300
## 2274 Manhattan Private room 176
## 2275 Brooklyn Private room 47
## 2276 Manhattan Private room 40
## 2277 Queens Shared room 60
## 2278 Brooklyn Private room 89
## 2279 Manhattan Private room 75
## 2280 Brooklyn Entire home/apt 110
## 2281 Manhattan Entire home/apt 85
## 2282 Brooklyn Private room 72
## 2283 Staten Island Entire home/apt 190
## 2284 Manhattan Private room 85
## 2285 Brooklyn Entire home/apt 325
## 2286 Brooklyn Entire home/apt 125
## 2287 Manhattan Entire home/apt 200
## 2288 Brooklyn Entire home/apt 195
## 2289 Manhattan Entire home/apt 175
## 2290 Brooklyn Entire home/apt 189
## 2291 Brooklyn Entire home/apt 182
## 2292 Brooklyn Entire home/apt 105
## 2293 Manhattan Entire home/apt 240
## 2294 Brooklyn Entire home/apt 185
## 2295 Manhattan Entire home/apt 160
## 2296 Manhattan Entire home/apt 250
## 2297 Manhattan Entire home/apt 650
## 2298 Queens Private room 35
## 2299 Brooklyn Entire home/apt 85
## 2300 Brooklyn Entire home/apt 550
## 2301 Brooklyn Private room 80
## 2302 Brooklyn Entire home/apt 175
## 2303 Brooklyn Private room 95
## 2304 Manhattan Entire home/apt 158
## 2305 Manhattan Private room 85
## 2306 Manhattan Entire home/apt 209
## 2307 Brooklyn Entire home/apt 150
## 2308 Brooklyn Private room 70
## 2309 Queens Private room 73
## 2310 Brooklyn Private room 85
## 2311 Brooklyn Entire home/apt 95
## 2312 Brooklyn Entire home/apt 125
## 2313 Manhattan Private room 89
## 2314 Brooklyn Private room 50
## 2315 Brooklyn Private room 75
## 2316 Brooklyn Private room 60
## 2317 Manhattan Private room 45
## 2318 Brooklyn Entire home/apt 130
## 2319 Manhattan Private room 70
## 2320 Manhattan Private room 125
## 2321 Manhattan Entire home/apt 140
## 2322 Brooklyn Entire home/apt 120
## 2323 Brooklyn Private room 99
## 2324 Brooklyn Entire home/apt 300
## 2325 Brooklyn Private room 40
## 2326 Manhattan Private room 47
## 2327 Manhattan Private room 115
## 2328 Brooklyn Entire home/apt 90
## 2329 Manhattan Entire home/apt 199
## 2330 Manhattan Entire home/apt 110
## 2331 Brooklyn Entire home/apt 100
## 2332 Brooklyn Private room 90
## 2333 Brooklyn Private room 40
## 2334 Manhattan Entire home/apt 133
## 2335 Brooklyn Private room 130
## 2336 Manhattan Entire home/apt 79
## 2337 Manhattan Entire home/apt 200
## 2338 Manhattan Entire home/apt 175
## 2339 Brooklyn Entire home/apt 200
## 2340 Manhattan Entire home/apt 200
## 2341 Brooklyn Entire home/apt 300
## 2342 Manhattan Private room 135
## 2343 Brooklyn Entire home/apt 189
## 2344 Queens Private room 133
## 2345 Brooklyn Private room 65
## 2346 Manhattan Entire home/apt 179
## 2347 Manhattan Entire home/apt 90
## 2348 Brooklyn Private room 49
## 2349 Brooklyn Entire home/apt 140
## 2350 Manhattan Entire home/apt 115
## 2351 Brooklyn Entire home/apt 190
## 2352 Brooklyn Private room 99
## 2353 Manhattan Entire home/apt 110
## 2354 Manhattan Private room 109
## 2355 Manhattan Private room 64
## 2356 Manhattan Entire home/apt 1000
## 2357 Manhattan Entire home/apt 750
## 2358 Queens Entire home/apt 175
## 2359 Manhattan Private room 47
## 2360 Brooklyn Private room 60
## 2361 Manhattan Private room 48
## 2362 Manhattan Entire home/apt 100
## 2363 Brooklyn Private room 105
## 2364 Brooklyn Entire home/apt 138
## 2365 Manhattan Entire home/apt 129
## 2366 Manhattan Entire home/apt 170
## 2367 Brooklyn Entire home/apt 139
## 2368 Manhattan Private room 94
## 2369 Manhattan Private room 115
## 2370 Brooklyn Entire home/apt 499
## 2371 Brooklyn Entire home/apt 79
## 2372 Manhattan Entire home/apt 200
## 2373 Brooklyn Private room 152
## 2374 Brooklyn Private room 50
## 2375 Brooklyn Entire home/apt 212
## 2376 Manhattan Private room 108
## 2377 Manhattan Private room 89
## 2378 Manhattan Private room 89
## 2379 Queens Private room 65
## 2380 Manhattan Entire home/apt 239
## 2381 Brooklyn Entire home/apt 99
## 2382 Manhattan Private room 80
## 2383 Manhattan Private room 125
## 2384 Brooklyn Private room 55
## 2385 Brooklyn Entire home/apt 160
## 2386 Manhattan Private room 100
## 2387 Manhattan Entire home/apt 1000
## 2388 Manhattan Entire home/apt 225
## 2389 Brooklyn Private room 35
## 2390 Manhattan Entire home/apt 275
## 2391 Brooklyn Entire home/apt 200
## 2392 Manhattan Entire home/apt 190
## 2393 Brooklyn Private room 117
## 2394 Manhattan Shared room 80
## 2395 Brooklyn Entire home/apt 99
## 2396 Manhattan Entire home/apt 70
## 2397 Manhattan Private room 44
## 2398 Manhattan Private room 125
## 2399 Manhattan Entire home/apt 130
## 2400 Manhattan Entire home/apt 130
## 2401 Manhattan Private room 125
## 2402 Manhattan Entire home/apt 199
## 2403 Brooklyn Private room 89
## 2404 Brooklyn Entire home/apt 155
## 2405 Queens Private room 60
## 2406 Manhattan Entire home/apt 248
## 2407 Manhattan Entire home/apt 85
## 2408 Manhattan Private room 85
## 2409 Brooklyn Entire home/apt 80
## 2410 Manhattan Private room 79
## 2411 Queens Private room 55
## 2412 Bronx Private room 65
## 2413 Manhattan Entire home/apt 150
## 2414 Manhattan Entire home/apt 285
## 2415 Queens Entire home/apt 119
## 2416 Brooklyn Entire home/apt 137
## 2417 Manhattan Entire home/apt 190
## 2418 Manhattan Private room 80
## 2419 Brooklyn Entire home/apt 120
## 2420 Brooklyn Entire home/apt 95
## 2421 Manhattan Private room 90
## 2422 Brooklyn Private room 75
## 2423 Queens Shared room 50
## 2424 Brooklyn Private room 103
## 2425 Manhattan Entire home/apt 125
## 2426 Brooklyn Entire home/apt 150
## 2427 Brooklyn Private room 50
## 2428 Manhattan Private room 148
## 2429 Manhattan Entire home/apt 120
## 2430 Brooklyn Entire home/apt 99
## 2431 Queens Private room 69
## 2432 Manhattan Entire home/apt 200
## 2433 Manhattan Private room 55
## 2434 Manhattan Entire home/apt 175
## 2435 Manhattan Private room 240
## 2436 Manhattan Private room 95
## 2437 Queens Entire home/apt 150
## 2438 Brooklyn Entire home/apt 150
## 2439 Brooklyn Entire home/apt 179
## 2440 Brooklyn Private room 105
## 2441 Brooklyn Entire home/apt 84
## 2442 Queens Entire home/apt 90
## 2443 Manhattan Entire home/apt 53
## 2444 Manhattan Private room 41
## 2445 Manhattan Private room 135
## 2446 Queens Entire home/apt 84
## 2447 Manhattan Entire home/apt 290
## 2448 Brooklyn Shared room 35
## 2449 Queens Entire home/apt 110
## 2450 Brooklyn Entire home/apt 350
## 2451 Brooklyn Private room 60
## 2452 Brooklyn Entire home/apt 220
## 2453 Brooklyn Entire home/apt 275
## 2454 Brooklyn Entire home/apt 142
## 2455 Brooklyn Private room 38
## 2456 Manhattan Entire home/apt 100
## 2457 Manhattan Entire home/apt 200
## 2458 Brooklyn Entire home/apt 225
## 2459 Manhattan Entire home/apt 135
## 2460 Manhattan Private room 72
## 2461 Brooklyn Private room 59
## 2462 Brooklyn Entire home/apt 350
## 2463 Brooklyn Private room 75
## 2464 Brooklyn Private room 70
## 2465 Manhattan Entire home/apt 99
## 2466 Brooklyn Private room 42
## 2467 Brooklyn Private room 60
## 2468 Brooklyn Entire home/apt 125
## 2469 Brooklyn Private room 99
## 2470 Brooklyn Entire home/apt 99
## 2471 Brooklyn Entire home/apt 165
## 2472 Brooklyn Entire home/apt 250
## 2473 Brooklyn Private room 135
## 2474 Manhattan Private room 58
## 2475 Manhattan Entire home/apt 250
## 2476 Manhattan Private room 95
## 2477 Manhattan Entire home/apt 125
## 2478 Brooklyn Entire home/apt 147
## 2479 Manhattan Entire home/apt 300
## 2480 Manhattan Entire home/apt 350
## 2481 Brooklyn Entire home/apt 102
## 2482 Manhattan Private room 95
## 2483 Brooklyn Private room 65
## 2484 Brooklyn Entire home/apt 350
## 2485 Manhattan Entire home/apt 595
## 2486 Manhattan Shared room 165
## 2487 Brooklyn Entire home/apt 181
## 2488 Manhattan Private room 110
## 2489 Brooklyn Private room 65
## 2490 Brooklyn Entire home/apt 155
## 2491 Brooklyn Private room 50
## 2492 Queens Entire home/apt 85
## 2493 Brooklyn Private room 120
## 2494 Brooklyn Private room 75
## 2495 Brooklyn Private room 55
## 2496 Brooklyn Private room 200
## 2497 Brooklyn Entire home/apt 75
## 2498 Brooklyn Entire home/apt 150
## 2499 Bronx Private room 60
## 2500 Brooklyn Entire home/apt 150
## 2501 Brooklyn Entire home/apt 240
## 2502 Manhattan Private room 150
## 2503 Manhattan Entire home/apt 200
## 2504 Manhattan Entire home/apt 269
## 2505 Brooklyn Private room 112
## 2506 Brooklyn Entire home/apt 250
## 2507 Brooklyn Entire home/apt 390
## 2508 Manhattan Entire home/apt 350
## 2509 Manhattan Entire home/apt 80
## 2510 Brooklyn Entire home/apt 295
## 2511 Brooklyn Private room 160
## 2512 Manhattan Entire home/apt 399
## 2513 Manhattan Entire home/apt 150
## 2514 Brooklyn Private room 60
## 2515 Manhattan Entire home/apt 219
## 2516 Manhattan Private room 119
## 2517 Brooklyn Entire home/apt 190
## 2518 Manhattan Private room 140
## 2519 Brooklyn Private room 125
## 2520 Manhattan Entire home/apt 144
## 2521 Brooklyn Private room 1500
## 2522 Queens Entire home/apt 100
## 2523 Brooklyn Private room 115
## 2524 Manhattan Entire home/apt 1899
## 2525 Manhattan Entire home/apt 110
## 2526 Manhattan Entire home/apt 140
## 2527 Manhattan Entire home/apt 94
## 2528 Manhattan Private room 50
## 2529 Brooklyn Entire home/apt 131
## 2530 Brooklyn Private room 175
## 2531 Brooklyn Entire home/apt 299
## 2532 Manhattan Entire home/apt 145
## 2533 Manhattan Entire home/apt 145
## 2534 Manhattan Entire home/apt 175
## 2535 Manhattan Private room 109
## 2536 Manhattan Private room 150
## 2537 Brooklyn Private room 133
## 2538 Manhattan Entire home/apt 399
## 2539 Brooklyn Private room 48
## 2540 Brooklyn Private room 75
## 2541 Brooklyn Private room 55
## 2542 Brooklyn Private room 75
## 2543 Manhattan Entire home/apt 465
## 2544 Brooklyn Entire home/apt 151
## 2545 Brooklyn Entire home/apt 199
## 2546 Brooklyn Private room 45
## 2547 Brooklyn Entire home/apt 160
## 2548 Brooklyn Private room 36
## 2549 Manhattan Entire home/apt 235
## 2550 Brooklyn Entire home/apt 225
## 2551 Manhattan Entire home/apt 300
## 2552 Brooklyn Shared room 35
## 2553 Queens Entire home/apt 80
## 2554 Queens Private room 79
## 2555 Manhattan Private room 82
## 2556 Manhattan Private room 82
## 2557 Brooklyn Entire home/apt 215
## 2558 Brooklyn Entire home/apt 147
## 2559 Manhattan Entire home/apt 145
## 2560 Brooklyn Private room 65
## 2561 Brooklyn Private room 78
## 2562 Queens Entire home/apt 120
## 2563 Brooklyn Entire home/apt 120
## 2564 Manhattan Private room 95
## 2565 Brooklyn Private room 90
## 2566 Brooklyn Entire home/apt 95
## 2567 Brooklyn Entire home/apt 100
## 2568 Manhattan Entire home/apt 350
## 2569 Brooklyn Entire home/apt 188
## 2570 Queens Private room 80
## 2571 Manhattan Entire home/apt 175
## 2572 Brooklyn Entire home/apt 495
## 2573 Manhattan Entire home/apt 250
## 2574 Brooklyn Entire home/apt 115
## 2575 Brooklyn Private room 55
## 2576 Manhattan Entire home/apt 93
## 2577 Manhattan Entire home/apt 93
## 2578 Manhattan Entire home/apt 199
## 2579 Brooklyn Private room 70
## 2580 Manhattan Entire home/apt 125
## 2581 Manhattan Entire home/apt 125
## 2582 Manhattan Entire home/apt 169
## 2583 Brooklyn Entire home/apt 150
## 2584 Manhattan Private room 61
## 2585 Brooklyn Private room 40
## 2586 Brooklyn Entire home/apt 150
## 2587 Brooklyn Private room 65
## 2588 Bronx Private room 90
## 2589 Manhattan Entire home/apt 190
## 2590 Brooklyn Private room 79
## 2591 Brooklyn Entire home/apt 225
## 2592 Manhattan Entire home/apt 185
## 2593 Brooklyn Private room 100
## 2594 Manhattan Private room 85
## 2595 Manhattan Private room 75
## 2596 Brooklyn Private room 85
## 2597 Brooklyn Entire home/apt 98
## 2598 Brooklyn Entire home/apt 262
## 2599 Queens Entire home/apt 145
## 2600 Manhattan Entire home/apt 280
## 2601 Manhattan Entire home/apt 210
## 2602 Brooklyn Entire home/apt 70
## 2603 Brooklyn Entire home/apt 100
## 2604 Manhattan Entire home/apt 250
## 2605 Brooklyn Private room 59
## 2606 Manhattan Private room 199
## 2607 Manhattan Entire home/apt 219
## 2608 Brooklyn Private room 100
## 2609 Brooklyn Entire home/apt 175
## 2610 Manhattan Private room 220
## 2611 Brooklyn Private room 40
## 2612 Manhattan Private room 120
## 2613 Brooklyn Entire home/apt 140
## 2614 Manhattan Private room 105
## 2615 Brooklyn Entire home/apt 110
## 2616 Brooklyn Entire home/apt 131
## 2617 Manhattan Entire home/apt 265
## 2618 Manhattan Private room 54
## 2619 Manhattan Entire home/apt 800
## 2620 Brooklyn Private room 53
## 2621 Manhattan Entire home/apt 99
## 2622 Brooklyn Private room 65
## 2623 Brooklyn Private room 55
## 2624 Manhattan Private room 120
## 2625 Manhattan Entire home/apt 169
## 2626 Manhattan Entire home/apt 180
## 2627 Brooklyn Private room 67
## 2628 Manhattan Private room 111
## 2629 Manhattan Private room 90
## 2630 Brooklyn Entire home/apt 259
## 2631 Manhattan Private room 89
## 2632 Brooklyn Entire home/apt 129
## 2633 Brooklyn Private room 69
## 2634 Manhattan Private room 75
## 2635 Brooklyn Entire home/apt 250
## 2636 Brooklyn Entire home/apt 120
## 2637 Brooklyn Entire home/apt 129
## 2638 Brooklyn Entire home/apt 199
## 2639 Brooklyn Entire home/apt 450
## 2640 Manhattan Entire home/apt 217
## 2641 Brooklyn Entire home/apt 90
## 2642 Manhattan Entire home/apt 350
## 2643 Manhattan Entire home/apt 160
## 2644 Brooklyn Private room 45
## 2645 Brooklyn Private room 70
## 2646 Manhattan Entire home/apt 260
## 2647 Queens Entire home/apt 100
## 2648 Brooklyn Entire home/apt 125
## 2649 Brooklyn Entire home/apt 195
## 2650 Brooklyn Private room 58
## 2651 Manhattan Private room 75
## 2652 Manhattan Entire home/apt 200
## 2653 Brooklyn Private room 75
## 2654 Brooklyn Private room 95
## 2655 Brooklyn Private room 99
## 2656 Brooklyn Private room 275
## 2657 Brooklyn Entire home/apt 162
## 2658 Manhattan Entire home/apt 200
## 2659 Manhattan Entire home/apt 285
## 2660 Manhattan Entire home/apt 120
## 2661 Manhattan Entire home/apt 120
## 2662 Manhattan Entire home/apt 210
## 2663 Brooklyn Private room 160
## 2664 Manhattan Entire home/apt 110
## 2665 Brooklyn Entire home/apt 200
## 2666 Queens Entire home/apt 138
## 2667 Manhattan Private room 90
## 2668 Brooklyn Private room 45
## 2669 Brooklyn Entire home/apt 80
## 2670 Brooklyn Private room 70
## 2671 Brooklyn Private room 72
## 2672 Manhattan Private room 95
## 2673 Brooklyn Private room 75
## 2674 Queens Entire home/apt 70
## 2675 Brooklyn Entire home/apt 160
## 2676 Brooklyn Shared room 29
## 2677 Brooklyn Entire home/apt 175
## 2678 Queens Private room 75
## 2679 Manhattan Private room 110
## 2680 Brooklyn Entire home/apt 175
## 2681 Manhattan Private room 99
## 2682 Manhattan Private room 100
## 2683 Brooklyn Entire home/apt 144
## 2684 Brooklyn Entire home/apt 171
## 2685 Manhattan Entire home/apt 99
## 2686 Manhattan Entire home/apt 270
## 2687 Manhattan Entire home/apt 160
## 2688 Manhattan Private room 65
## 2689 Brooklyn Entire home/apt 99
## 2690 Manhattan Entire home/apt 125
## 2691 Brooklyn Private room 72
## 2692 Brooklyn Entire home/apt 300
## 2693 Manhattan Private room 112
## 2694 Brooklyn Entire home/apt 100
## 2695 Brooklyn Private room 60
## 2696 Manhattan Entire home/apt 232
## 2697 Brooklyn Private room 138
## 2698 Manhattan Entire home/apt 140
## 2699 Manhattan Entire home/apt 5000
## 2700 Brooklyn Entire home/apt 168
## 2701 Brooklyn Entire home/apt 100
## 2702 Queens Shared room 150
## 2703 Brooklyn Entire home/apt 95
## 2704 Manhattan Entire home/apt 175
## 2705 Manhattan Entire home/apt 220
## 2706 Manhattan Entire home/apt 178
## 2707 Brooklyn Entire home/apt 85
## 2708 Queens Private room 35
## 2709 Brooklyn Entire home/apt 129
## 2710 Manhattan Private room 55
## 2711 Brooklyn Private room 69
## 2712 Brooklyn Private room 68
## 2713 Brooklyn Private room 69
## 2714 Manhattan Entire home/apt 300
## 2715 Manhattan Entire home/apt 175
## 2716 Queens Private room 59
## 2717 Queens Private room 59
## 2718 Manhattan Private room 169
## 2719 Brooklyn Entire home/apt 120
## 2720 Brooklyn Entire home/apt 155
## 2721 Brooklyn Entire home/apt 165
## 2722 Manhattan Private room 60
## 2723 Brooklyn Entire home/apt 190
## 2724 Manhattan Entire home/apt 150
## 2725 Manhattan Entire home/apt 150
## 2726 Brooklyn Entire home/apt 120
## 2727 Queens Private room 349
## 2728 Queens Private room 59
## 2729 Manhattan Shared room 99
## 2730 Queens Private room 59
## 2731 Brooklyn Private room 110
## 2732 Manhattan Private room 73
## 2733 Manhattan Entire home/apt 179
## 2734 Queens Private room 102
## 2735 Brooklyn Private room 62
## 2736 Queens Entire home/apt 140
## 2737 Manhattan Entire home/apt 300
## 2738 Manhattan Entire home/apt 299
## 2739 Brooklyn Entire home/apt 104
## 2740 Manhattan Entire home/apt 98
## 2741 Manhattan Private room 49
## 2742 Manhattan Entire home/apt 96
## 2743 Brooklyn Private room 80
## 2744 Brooklyn Private room 89
## 2745 Manhattan Private room 125
## 2746 Brooklyn Entire home/apt 345
## 2747 Brooklyn Entire home/apt 150
## 2748 Manhattan Private room 100
## 2749 Manhattan Entire home/apt 120
## 2750 Brooklyn Entire home/apt 149
## 2751 Brooklyn Entire home/apt 145
## 2752 Manhattan Entire home/apt 390
## 2753 Bronx Private room 60
## 2754 Brooklyn Entire home/apt 190
## 2755 Manhattan Private room 80
## 2756 Brooklyn Private room 55
## 2757 Brooklyn Entire home/apt 275
## 2758 Brooklyn Entire home/apt 250
## 2759 Manhattan Entire home/apt 100
## 2760 Manhattan Entire home/apt 600
## 2761 Brooklyn Private room 66
## 2762 Brooklyn Private room 65
## 2763 Manhattan Entire home/apt 220
## 2764 Manhattan Entire home/apt 159
## 2765 Brooklyn Private room 70
## 2766 Brooklyn Private room 49
## 2767 Brooklyn Private room 47
## 2768 Manhattan Entire home/apt 299
## 2769 Brooklyn Entire home/apt 79
## 2770 Brooklyn Entire home/apt 115
## 2771 Brooklyn Entire home/apt 229
## 2772 Brooklyn Entire home/apt 115
## 2773 Manhattan Entire home/apt 1100
## 2774 Brooklyn Entire home/apt 165
## 2775 Brooklyn Entire home/apt 67
## 2776 Brooklyn Private room 68
## 2777 Brooklyn Private room 85
## 2778 Brooklyn Entire home/apt 170
## 2779 Brooklyn Private room 95
## 2780 Brooklyn Private room 45
## 2781 Brooklyn Private room 178
## 2782 Manhattan Entire home/apt 140
## 2783 Brooklyn Entire home/apt 149
## 2784 Brooklyn Entire home/apt 89
## 2785 Queens Entire home/apt 108
## 2786 Manhattan Entire home/apt 138
## 2787 Brooklyn Entire home/apt 115
## 2788 Manhattan Shared room 69
## 2789 Manhattan Entire home/apt 269
## 2790 Brooklyn Entire home/apt 160
## 2791 Manhattan Entire home/apt 150
## 2792 Manhattan Entire home/apt 121
## 2793 Brooklyn Entire home/apt 95
## 2794 Brooklyn Entire home/apt 99
## 2795 Brooklyn Private room 40
## 2796 Manhattan Private room 89
## 2797 Brooklyn Private room 50
## 2798 Brooklyn Private room 55
## 2799 Brooklyn Entire home/apt 224
## 2800 Queens Entire home/apt 120
## 2801 Queens Private room 59
## 2802 Manhattan Entire home/apt 135
## 2803 Manhattan Entire home/apt 175
## 2804 Queens Entire home/apt 250
## 2805 Manhattan Entire home/apt 156
## 2806 Brooklyn Entire home/apt 75
## 2807 Manhattan Entire home/apt 79
## 2808 Manhattan Entire home/apt 104
## 2809 Brooklyn Entire home/apt 280
## 2810 Manhattan Private room 80
## 2811 Brooklyn Entire home/apt 136
## 2812 Manhattan Entire home/apt 550
## 2813 Brooklyn Entire home/apt 190
## 2814 Manhattan Entire home/apt 199
## 2815 Queens Private room 75
## 2816 Manhattan Private room 100
## 2817 Manhattan Entire home/apt 125
## 2818 Brooklyn Private room 75
## 2819 Manhattan Private room 99
## 2820 Brooklyn Private room 35
## 2821 Queens Private room 51
## 2822 Queens Entire home/apt 188
## 2823 Manhattan Entire home/apt 90
## 2824 Brooklyn Entire home/apt 279
## 2825 Manhattan Entire home/apt 350
## 2826 Manhattan Private room 125
## 2827 Brooklyn Private room 85
## 2828 Queens Private room 48
## 2829 Queens Private room 56
## 2830 Brooklyn Private room 84
## 2831 Manhattan Entire home/apt 155
## 2832 Manhattan Entire home/apt 250
## 2833 Manhattan Entire home/apt 300
## 2834 Brooklyn Entire home/apt 140
## 2835 Manhattan Private room 120
## 2836 Brooklyn Entire home/apt 99
## 2837 Manhattan Entire home/apt 240
## 2838 Manhattan Entire home/apt 72
## 2839 Queens Private room 45
## 2840 Staten Island Entire home/apt 250
## 2841 Manhattan Private room 100
## 2842 Manhattan Entire home/apt 175
## 2843 Manhattan Entire home/apt 200
## 2844 Queens Private room 59
## 2845 Manhattan Entire home/apt 420
## 2846 Brooklyn Private room 120
## 2847 Manhattan Entire home/apt 295
## 2848 Brooklyn Entire home/apt 200
## 2849 Brooklyn Private room 48
## 2850 Manhattan Entire home/apt 99
## 2851 Brooklyn Entire home/apt 129
## 2852 Manhattan Entire home/apt 160
## 2853 Brooklyn Entire home/apt 142
## 2854 Queens Private room 120
## 2855 Manhattan Entire home/apt 400
## 2856 Brooklyn Entire home/apt 130
## 2857 Manhattan Shared room 85
## 2858 Brooklyn Entire home/apt 600
## 2859 Manhattan Private room 69
## 2860 Brooklyn Entire home/apt 150
## 2861 Manhattan Entire home/apt 10
## 2862 Brooklyn Private room 87
## 2863 Manhattan Private room 249
## 2864 Brooklyn Private room 65
## 2865 Brooklyn Entire home/apt 175
## 2866 Manhattan Private room 79
## 2867 Manhattan Private room 194
## 2868 Manhattan Entire home/apt 150
## 2869 Brooklyn Entire home/apt 241
## 2870 Manhattan Private room 80
## 2871 Brooklyn Entire home/apt 120
## 2872 Manhattan Entire home/apt 155
## 2873 Manhattan Entire home/apt 150
## 2874 Manhattan Entire home/apt 140
## 2875 Brooklyn Entire home/apt 90
## 2876 Brooklyn Entire home/apt 150
## 2877 Brooklyn Entire home/apt 135
## 2878 Brooklyn Entire home/apt 140
## 2879 Brooklyn Entire home/apt 130
## 2880 Manhattan Private room 150
## 2881 Brooklyn Entire home/apt 115
## 2882 Brooklyn Entire home/apt 130
## 2883 Manhattan Entire home/apt 380
## 2884 Brooklyn Entire home/apt 115
## 2885 Manhattan Entire home/apt 125
## 2886 Brooklyn Private room 65
## 2887 Queens Entire home/apt 110
## 2888 Brooklyn Private room 31
## 2889 Brooklyn Entire home/apt 135
## 2890 Manhattan Entire home/apt 200
## 2891 Brooklyn Private room 212
## 2892 Brooklyn Shared room 40
## 2893 Manhattan Entire home/apt 80
## 2894 Brooklyn Entire home/apt 95
## 2895 Manhattan Entire home/apt 185
## 2896 Brooklyn Entire home/apt 100
## 2897 Manhattan Entire home/apt 1200
## 2898 Brooklyn Entire home/apt 149
## 2899 Manhattan Private room 139
## 2900 Manhattan Entire home/apt 226
## 2901 Brooklyn Entire home/apt 74
## 2902 Manhattan Entire home/apt 195
## 2903 Brooklyn Entire home/apt 104
## 2904 Manhattan Entire home/apt 275
## 2905 Manhattan Private room 310
## 2906 Manhattan Entire home/apt 145
## 2907 Staten Island Entire home/apt 75
## 2908 Brooklyn Entire home/apt 99
## 2909 Manhattan Entire home/apt 250
## 2910 Manhattan Entire home/apt 104
## 2911 Manhattan Entire home/apt 250
## 2912 Manhattan Entire home/apt 150
## 2913 Manhattan Entire home/apt 195
## 2914 Manhattan Entire home/apt 350
## 2915 Brooklyn Private room 75
## 2916 Brooklyn Private room 80
## 2917 Brooklyn Entire home/apt 96
## 2918 Manhattan Entire home/apt 200
## 2919 Manhattan Private room 90
## 2920 Queens Private room 79
## 2921 Manhattan Private room 220
## 2922 Brooklyn Entire home/apt 224
## 2923 Queens Private room 35
## 2924 Queens Private room 70
## 2925 Brooklyn Private room 85
## 2926 Manhattan Entire home/apt 110
## 2927 Brooklyn Private room 65
## 2928 Queens Entire home/apt 200
## 2929 Manhattan Entire home/apt 249
## 2930 Brooklyn Private room 62
## 2931 Bronx Private room 50
## 2932 Brooklyn Private room 62
## 2933 Brooklyn Private room 50
## 2934 Manhattan Private room 55
## 2935 Manhattan Private room 71
## 2936 Manhattan Private room 75
## 2937 Brooklyn Private room 115
## 2938 Brooklyn Private room 82
## 2939 Brooklyn Private room 75
## 2940 Manhattan Private room 60
## 2941 Manhattan Entire home/apt 200
## 2942 Brooklyn Private room 90
## 2943 Brooklyn Entire home/apt 215
## 2944 Manhattan Private room 100
## 2945 Queens Private room 38
## 2946 Brooklyn Entire home/apt 159
## 2947 Brooklyn Private room 64
## 2948 Brooklyn Entire home/apt 125
## 2949 Manhattan Entire home/apt 120
## 2950 Manhattan Private room 76
## 2951 Manhattan Private room 175
## 2952 Brooklyn Private room 110
## 2953 Brooklyn Private room 75
## 2954 Manhattan Private room 80
## 2955 Brooklyn Private room 110
## 2956 Brooklyn Private room 89
## 2957 Brooklyn Entire home/apt 110
## 2958 Manhattan Private room 96
## 2959 Manhattan Entire home/apt 75
## 2960 Manhattan Entire home/apt 185
## 2961 Brooklyn Entire home/apt 49
## 2962 Manhattan Entire home/apt 440
## 2963 Brooklyn Entire home/apt 220
## 2964 Manhattan Private room 99
## 2965 Manhattan Private room 85
## 2966 Brooklyn Entire home/apt 98
## 2967 Brooklyn Private room 84
## 2968 Brooklyn Private room 65
## 2969 Brooklyn Entire home/apt 160
## 2970 Brooklyn Private room 115
## 2971 Manhattan Private room 59
## 2972 Manhattan Private room 119
## 2973 Brooklyn Entire home/apt 120
## 2974 Manhattan Entire home/apt 439
## 2975 Manhattan Private room 99
## 2976 Brooklyn Entire home/apt 199
## 2977 Brooklyn Private room 99
## 2978 Queens Private room 195
## 2979 Brooklyn Entire home/apt 180
## 2980 Queens Private room 100
## 2981 Brooklyn Entire home/apt 115
## 2982 Brooklyn Entire home/apt 115
## 2983 Manhattan Entire home/apt 180
## 2984 Bronx Private room 45
## 2985 Manhattan Entire home/apt 300
## 2986 Manhattan Entire home/apt 90
## 2987 Manhattan Private room 95
## 2988 Queens Entire home/apt 140
## 2989 Manhattan Entire home/apt 123
## 2990 Manhattan Entire home/apt 200
## 2991 Queens Private room 100
## 2992 Brooklyn Entire home/apt 250
## 2993 Brooklyn Private room 85
## 2994 Manhattan Entire home/apt 100
## 2995 Manhattan Entire home/apt 109
## 2996 Brooklyn Entire home/apt 159
## 2997 Manhattan Entire home/apt 260
## 2998 Manhattan Entire home/apt 555
## 2999 Manhattan Private room 87
## 3000 Bronx Private room 43
## 3001 Manhattan Entire home/apt 199
## 3002 Manhattan Private room 90
## 3003 Brooklyn Entire home/apt 195
## 3004 Brooklyn Entire home/apt 185
## 3005 Manhattan Entire home/apt 400
## 3006 Manhattan Entire home/apt 200
## 3007 Manhattan Private room 100
## 3008 Manhattan Entire home/apt 225
## 3009 Brooklyn Entire home/apt 450
## 3010 Brooklyn Private room 80
## 3011 Brooklyn Entire home/apt 89
## 3012 Manhattan Entire home/apt 179
## 3013 Manhattan Private room 90
## 3014 Queens Entire home/apt 275
## 3015 Brooklyn Private room 35
## 3016 Queens Private room 86
## 3017 Queens Entire home/apt 95
## 3018 Manhattan Private room 116
## 3019 Manhattan Private room 80
## 3020 Manhattan Entire home/apt 110
## 3021 Queens Private room 29
## 3022 Manhattan Entire home/apt 200
## 3023 Manhattan Entire home/apt 390
## 3024 Manhattan Shared room 55
## 3025 Queens Shared room 75
## 3026 Brooklyn Private room 75
## 3027 Brooklyn Entire home/apt 120
## 3028 Manhattan Private room 143
## 3029 Manhattan Entire home/apt 250
## 3030 Brooklyn Private room 99
## 3031 Manhattan Entire home/apt 150
## 3032 Brooklyn Private room 55
## 3033 Brooklyn Entire home/apt 175
## 3034 Brooklyn Private room 69
## 3035 Manhattan Entire home/apt 184
## 3036 Brooklyn Entire home/apt 145
## 3037 Manhattan Private room 100
## 3038 Brooklyn Private room 44
## 3039 Brooklyn Private room 70
## 3040 Brooklyn Entire home/apt 185
## 3041 Manhattan Entire home/apt 225
## 3042 Manhattan Entire home/apt 199
## 3043 Manhattan Private room 60
## 3044 Manhattan Entire home/apt 175
## 3045 Manhattan Entire home/apt 199
## 3046 Brooklyn Private room 65
## 3047 Brooklyn Entire home/apt 190
## 3048 Brooklyn Entire home/apt 107
## 3049 Manhattan Entire home/apt 150
## 3050 Staten Island Entire home/apt 700
## 3051 Bronx Private room 75
## 3052 Brooklyn Private room 45
## 3053 Brooklyn Entire home/apt 179
## 3054 Queens Entire home/apt 110
## 3055 Brooklyn Entire home/apt 245
## 3056 Manhattan Entire home/apt 799
## 3057 Manhattan Private room 100
## 3058 Brooklyn Private room 61
## 3059 Manhattan Entire home/apt 475
## 3060 Brooklyn Entire home/apt 275
## 3061 Brooklyn Entire home/apt 250
## 3062 Brooklyn Entire home/apt 120
## 3063 Brooklyn Entire home/apt 135
## 3064 Manhattan Entire home/apt 199
## 3065 Brooklyn Private room 75
## 3066 Brooklyn Private room 75
## 3067 Manhattan Private room 75
## 3068 Manhattan Private room 140
## 3069 Manhattan Private room 90
## 3070 Manhattan Private room 80
## 3071 Brooklyn Entire home/apt 115
## 3072 Manhattan Private room 60
## 3073 Manhattan Entire home/apt 175
## 3074 Brooklyn Entire home/apt 125
## 3075 Manhattan Entire home/apt 185
## 3076 Queens Private room 56
## 3077 Brooklyn Private room 64
## 3078 Brooklyn Entire home/apt 300
## 3079 Manhattan Entire home/apt 455
## 3080 Brooklyn Private room 37
## 3081 Brooklyn Entire home/apt 193
## 3082 Brooklyn Private room 53
## 3083 Manhattan Entire home/apt 161
## 3084 Manhattan Entire home/apt 99
## 3085 Manhattan Entire home/apt 420
## 3086 Manhattan Entire home/apt 92
## 3087 Manhattan Entire home/apt 195
## 3088 Brooklyn Private room 81
## 3089 Manhattan Private room 65
## 3090 Brooklyn Private room 70
## 3091 Manhattan Entire home/apt 400
## 3092 Brooklyn Entire home/apt 170
## 3093 Manhattan Entire home/apt 175
## 3094 Brooklyn Private room 41
## 3095 Manhattan Entire home/apt 149
## 3096 Brooklyn Private room 87
## 3097 Manhattan Entire home/apt 300
## 3098 Manhattan Entire home/apt 92
## 3099 Brooklyn Private room 85
## 3100 Manhattan Entire home/apt 150
## 3101 Brooklyn Entire home/apt 300
## 3102 Manhattan Entire home/apt 139
## 3103 Manhattan Private room 90
## 3104 Manhattan Private room 118
## 3105 Manhattan Entire home/apt 295
## 3106 Brooklyn Entire home/apt 125
## 3107 Brooklyn Entire home/apt 122
## 3108 Manhattan Entire home/apt 280
## 3109 Manhattan Entire home/apt 215
## 3110 Brooklyn Private room 89
## 3111 Manhattan Private room 130
## 3112 Brooklyn Entire home/apt 201
## 3113 Brooklyn Private room 119
## 3114 Manhattan Entire home/apt 103
## 3115 Brooklyn Private room 72
## 3116 Manhattan Entire home/apt 169
## 3117 Manhattan Entire home/apt 240
## 3118 Brooklyn Entire home/apt 180
## 3119 Brooklyn Entire home/apt 150
## 3120 Manhattan Entire home/apt 120
## 3121 Brooklyn Entire home/apt 345
## 3122 Brooklyn Entire home/apt 95
## 3123 Manhattan Entire home/apt 550
## 3124 Manhattan Entire home/apt 150
## 3125 Manhattan Private room 95
## 3126 Manhattan Private room 90
## 3127 Brooklyn Private room 175
## 3128 Manhattan Entire home/apt 225
## 3129 Manhattan Entire home/apt 240
## 3130 Manhattan Entire home/apt 150
## 3131 Manhattan Private room 44
## 3132 Manhattan Private room 1700
## 3133 Manhattan Entire home/apt 299
## 3134 Brooklyn Entire home/apt 120
## 3135 Manhattan Entire home/apt 525
## 3136 Manhattan Entire home/apt 600
## 3137 Brooklyn Private room 88
## 3138 Manhattan Entire home/apt 139
## 3139 Manhattan Entire home/apt 200
## 3140 Manhattan Entire home/apt 100
## 3141 Manhattan Entire home/apt 209
## 3142 Brooklyn Entire home/apt 240
## 3143 Brooklyn Entire home/apt 90
## 3144 Queens Private room 73
## 3145 Manhattan Private room 90
## 3146 Manhattan Entire home/apt 200
## 3147 Brooklyn Entire home/apt 94
## 3148 Manhattan Entire home/apt 145
## 3149 Manhattan Entire home/apt 199
## 3150 Brooklyn Entire home/apt 150
## 3151 Manhattan Private room 85
## 3152 Manhattan Entire home/apt 195
## 3153 Manhattan Entire home/apt 173
## 3154 Brooklyn Entire home/apt 159
## 3155 Brooklyn Private room 85
## 3156 Brooklyn Entire home/apt 120
## 3157 Manhattan Entire home/apt 225
## 3158 Brooklyn Entire home/apt 175
## 3159 Manhattan Private room 130
## 3160 Manhattan Entire home/apt 249
## 3161 Brooklyn Private room 38
## 3162 Brooklyn Private room 53
## 3163 Manhattan Private room 125
## 3164 Manhattan Entire home/apt 245
## 3165 Brooklyn Entire home/apt 150
## 3166 Brooklyn Private room 32
## 3167 Manhattan Entire home/apt 160
## 3168 Brooklyn Entire home/apt 175
## 3169 Brooklyn Private room 40
## 3170 Brooklyn Private room 58
## 3171 Brooklyn Entire home/apt 149
## 3172 Manhattan Entire home/apt 200
## 3173 Brooklyn Entire home/apt 100
## 3174 Brooklyn Private room 50
## 3175 Brooklyn Entire home/apt 97
## 3176 Manhattan Private room 84
## 3177 Brooklyn Entire home/apt 275
## 3178 Manhattan Entire home/apt 99
## 3179 Brooklyn Entire home/apt 70
## 3180 Brooklyn Entire home/apt 149
## 3181 Manhattan Entire home/apt 399
## 3182 Brooklyn Entire home/apt 145
## 3183 Brooklyn Private room 200
## 3184 Brooklyn Private room 59
## 3185 Brooklyn Private room 70
## 3186 Manhattan Entire home/apt 249
## 3187 Brooklyn Entire home/apt 70
## 3188 Queens Private room 45
## 3189 Manhattan Private room 75
## 3190 Brooklyn Private room 70
## 3191 Brooklyn Entire home/apt 159
## 3192 Manhattan Entire home/apt 499
## 3193 Brooklyn Private room 55
## 3194 Manhattan Private room 228
## 3195 Brooklyn Private room 67
## 3196 Manhattan Private room 119
## 3197 Manhattan Entire home/apt 189
## 3198 Manhattan Entire home/apt 350
## 3199 Brooklyn Entire home/apt 450
## 3200 Brooklyn Private room 45
## 3201 Manhattan Entire home/apt 175
## 3202 Brooklyn Entire home/apt 83
## 3203 Brooklyn Entire home/apt 120
## 3204 Brooklyn Private room 35
## 3205 Manhattan Entire home/apt 140
## 3206 Manhattan Private room 45
## 3207 Manhattan Private room 90
## 3208 Queens Private room 79
## 3209 Brooklyn Private room 100
## 3210 Manhattan Entire home/apt 225
## 3211 Queens Private room 66
## 3212 Brooklyn Entire home/apt 140
## 3213 Brooklyn Private room 98
## 3214 Brooklyn Entire home/apt 140
## 3215 Manhattan Entire home/apt 195
## 3216 Manhattan Private room 60
## 3217 Brooklyn Entire home/apt 150
## 3218 Queens Private room 40
## 3219 Queens Entire home/apt 130
## 3220 Brooklyn Private room 75
## 3221 Brooklyn Entire home/apt 248
## 3222 Manhattan Entire home/apt 450
## 3223 Brooklyn Entire home/apt 120
## 3224 Brooklyn Entire home/apt 250
## 3225 Manhattan Private room 80
## 3226 Manhattan Entire home/apt 140
## 3227 Brooklyn Entire home/apt 120
## 3228 Manhattan Shared room 45
## 3229 Brooklyn Private room 100
## 3230 Brooklyn Entire home/apt 175
## 3231 Brooklyn Entire home/apt 130
## 3232 Manhattan Entire home/apt 175
## 3233 Manhattan Private room 40
## 3234 Brooklyn Entire home/apt 650
## 3235 Manhattan Private room 85
## 3236 Manhattan Private room 175
## 3237 Manhattan Private room 105
## 3238 Brooklyn Private room 80
## 3239 Brooklyn Entire home/apt 150
## 3240 Bronx Entire home/apt 195
## 3241 Brooklyn Entire home/apt 750
## 3242 Manhattan Entire home/apt 249
## 3243 Brooklyn Entire home/apt 140
## 3244 Brooklyn Entire home/apt 180
## 3245 Manhattan Private room 90
## 3246 Bronx Entire home/apt 120
## 3247 Queens Entire home/apt 85
## 3248 Manhattan Entire home/apt 174
## 3249 Manhattan Entire home/apt 150
## 3250 Manhattan Entire home/apt 295
## 3251 Queens Entire home/apt 180
## 3252 Manhattan Entire home/apt 172
## 3253 Brooklyn Entire home/apt 130
## 3254 Manhattan Private room 52
## 3255 Brooklyn Entire home/apt 220
## 3256 Manhattan Private room 50
## 3257 Brooklyn Private room 37
## 3258 Manhattan Private room 85
## 3259 Brooklyn Entire home/apt 249
## 3260 Brooklyn Entire home/apt 150
## 3261 Brooklyn Entire home/apt 119
## 3262 Brooklyn Entire home/apt 49
## 3263 Manhattan Private room 90
## 3264 Manhattan Entire home/apt 200
## 3265 Brooklyn Entire home/apt 97
## 3266 Brooklyn Entire home/apt 399
## 3267 Brooklyn Entire home/apt 151
## 3268 Manhattan Entire home/apt 200
## 3269 Manhattan Entire home/apt 200
## 3270 Queens Entire home/apt 82
## 3271 Manhattan Entire home/apt 130
## 3272 Brooklyn Private room 69
## 3273 Queens Entire home/apt 150
## 3274 Manhattan Entire home/apt 150
## 3275 Manhattan Entire home/apt 150
## 3276 Manhattan Entire home/apt 100
## 3277 Manhattan Entire home/apt 195
## 3278 Manhattan Entire home/apt 251
## 3279 Brooklyn Entire home/apt 200
## 3280 Brooklyn Entire home/apt 100
## 3281 Bronx Entire home/apt 140
## 3282 Manhattan Entire home/apt 146
## 3283 Brooklyn Entire home/apt 250
## 3284 Manhattan Entire home/apt 499
## 3285 Brooklyn Private room 80
## 3286 Brooklyn Entire home/apt 80
## 3287 Manhattan Entire home/apt 220
## 3288 Manhattan Private room 102
## 3289 Manhattan Entire home/apt 120
## 3290 Manhattan Entire home/apt 170
## 3291 Manhattan Entire home/apt 235
## 3292 Manhattan Entire home/apt 149
## 3293 Brooklyn Entire home/apt 180
## 3294 Brooklyn Private room 89
## 3295 Brooklyn Entire home/apt 199
## 3296 Brooklyn Private room 72
## 3297 Brooklyn Entire home/apt 80
## 3298 Manhattan Private room 99
## 3299 Brooklyn Entire home/apt 125
## 3300 Manhattan Private room 150
## 3301 Brooklyn Entire home/apt 100
## 3302 Manhattan Private room 106
## 3303 Manhattan Entire home/apt 250
## 3304 Manhattan Private room 150
## 3305 Brooklyn Private room 100
## 3306 Manhattan Entire home/apt 189
## 3307 Manhattan Entire home/apt 1999
## 3308 Manhattan Entire home/apt 120
## 3309 Brooklyn Private room 100
## 3310 Brooklyn Entire home/apt 149
## 3311 Manhattan Entire home/apt 480
## 3312 Manhattan Private room 100
## 3313 Manhattan Entire home/apt 300
## 3314 Brooklyn Private room 33
## 3315 Brooklyn Entire home/apt 175
## 3316 Manhattan Entire home/apt 142
## 3317 Queens Entire home/apt 135
## 3318 Brooklyn Entire home/apt 135
## 3319 Brooklyn Entire home/apt 350
## 3320 Brooklyn Entire home/apt 80
## 3321 Manhattan Private room 80
## 3322 Manhattan Private room 87
## 3323 Manhattan Entire home/apt 450
## 3324 Manhattan Entire home/apt 275
## 3325 Brooklyn Entire home/apt 150
## 3326 Brooklyn Private room 50
## 3327 Brooklyn Private room 79
## 3328 Brooklyn Private room 60
## 3329 Queens Private room 45
## 3330 Manhattan Entire home/apt 120
## 3331 Manhattan Entire home/apt 145
## 3332 Manhattan Entire home/apt 175
## 3333 Manhattan Entire home/apt 137
## 3334 Manhattan Entire home/apt 1500
## 3335 Manhattan Private room 86
## 3336 Brooklyn Entire home/apt 90
## 3337 Manhattan Entire home/apt 345
## 3338 Manhattan Entire home/apt 150
## 3339 Manhattan Entire home/apt 250
## 3340 Brooklyn Entire home/apt 105
## 3341 Brooklyn Entire home/apt 130
## 3342 Manhattan Private room 90
## 3343 Brooklyn Entire home/apt 150
## 3344 Brooklyn Entire home/apt 150
## 3345 Manhattan Entire home/apt 225
## 3346 Manhattan Entire home/apt 1000
## 3347 Brooklyn Private room 80
## 3348 Brooklyn Entire home/apt 150
## 3349 Manhattan Private room 120
## 3350 Bronx Private room 53
## 3351 Brooklyn Entire home/apt 115
## 3352 Brooklyn Shared room 175
## 3353 Manhattan Entire home/apt 150
## 3354 Manhattan Entire home/apt 162
## 3355 Manhattan Private room 95
## 3356 Manhattan Private room 55
## 3357 Manhattan Entire home/apt 117
## 3358 Manhattan Entire home/apt 175
## 3359 Queens Entire home/apt 75
## 3360 Manhattan Entire home/apt 189
## 3361 Manhattan Entire home/apt 150
## 3362 Manhattan Private room 45
## 3363 Brooklyn Entire home/apt 190
## 3364 Brooklyn Entire home/apt 130
## 3365 Brooklyn Private room 79
## 3366 Manhattan Entire home/apt 850
## 3367 Brooklyn Entire home/apt 150
## 3368 Brooklyn Entire home/apt 100
## 3369 Manhattan Entire home/apt 115
## 3370 Manhattan Entire home/apt 300
## 3371 Manhattan Entire home/apt 159
## 3372 Manhattan Private room 500
## 3373 Manhattan Private room 39
## 3374 Manhattan Entire home/apt 250
## 3375 Brooklyn Entire home/apt 200
## 3376 Manhattan Entire home/apt 250
## 3377 Manhattan Entire home/apt 120
## 3378 Manhattan Private room 105
## 3379 Queens Entire home/apt 100
## 3380 Manhattan Entire home/apt 175
## 3381 Brooklyn Entire home/apt 500
## 3382 Manhattan Entire home/apt 120
## 3383 Brooklyn Private room 85
## 3384 Manhattan Entire home/apt 320
## 3385 Queens Entire home/apt 149
## 3386 Manhattan Entire home/apt 400
## 3387 Queens Private room 72
## 3388 Manhattan Entire home/apt 300
## 3389 Manhattan Entire home/apt 115
## 3390 Queens Entire home/apt 325
## 3391 Brooklyn Private room 32
## 3392 Manhattan Private room 100
## 3393 Manhattan Entire home/apt 150
## 3394 Manhattan Entire home/apt 95
## 3395 Manhattan Entire home/apt 290
## 3396 Brooklyn Private room 30
## 3397 Brooklyn Entire home/apt 75
## 3398 Manhattan Entire home/apt 140
## 3399 Manhattan Private room 500
## 3400 Queens Entire home/apt 100
## 3401 Manhattan Private room 80
## 3402 Brooklyn Entire home/apt 125
## 3403 Brooklyn Entire home/apt 250
## 3404 Brooklyn Private room 50
## 3405 Manhattan Entire home/apt 395
## 3406 Manhattan Entire home/apt 100
## 3407 Brooklyn Entire home/apt 250
## 3408 Brooklyn Private room 79
## 3409 Manhattan Entire home/apt 100
## 3410 Brooklyn Private room 52
## 3411 Manhattan Private room 98
## 3412 Brooklyn Entire home/apt 120
## 3413 Brooklyn Private room 40
## 3414 Manhattan Entire home/apt 345
## 3415 Queens Private room 50
## 3416 Brooklyn Private room 45
## 3417 Manhattan Entire home/apt 250
## 3418 Manhattan Entire home/apt 350
## 3419 Brooklyn Private room 57
## 3420 Brooklyn Entire home/apt 120
## 3421 Manhattan Entire home/apt 1000
## 3422 Manhattan Entire home/apt 125
## 3423 Manhattan Entire home/apt 145
## 3424 Manhattan Entire home/apt 150
## 3425 Brooklyn Private room 89
## 3426 Brooklyn Entire home/apt 164
## 3427 Brooklyn Entire home/apt 210
## 3428 Manhattan Private room 115
## 3429 Manhattan Entire home/apt 110
## 3430 Manhattan Entire home/apt 199
## 3431 Manhattan Entire home/apt 272
## 3432 Manhattan Private room 75
## 3433 Manhattan Private room 69
## 3434 Manhattan Private room 179
## 3435 Manhattan Entire home/apt 106
## 3436 Manhattan Entire home/apt 800
## 3437 Manhattan Private room 100
## 3438 Brooklyn Private room 60
## 3439 Manhattan Entire home/apt 120
## 3440 Bronx Entire home/apt 80
## 3441 Manhattan Private room 75
## 3442 Queens Private room 35
## 3443 Brooklyn Entire home/apt 88
## 3444 Queens Private room 50
## 3445 Manhattan Private room 45
## 3446 Manhattan Entire home/apt 75
## 3447 Manhattan Private room 79
## 3448 Queens Private room 55
## 3449 Brooklyn Private room 45
## 3450 Brooklyn Private room 85
## 3451 Brooklyn Private room 80
## 3452 Manhattan Entire home/apt 599
## 3453 Brooklyn Entire home/apt 110
## 3454 Manhattan Entire home/apt 199
## 3455 Brooklyn Private room 94
## 3456 Brooklyn Entire home/apt 400
## 3457 Brooklyn Private room 60
## 3458 Manhattan Entire home/apt 175
## 3459 Brooklyn Entire home/apt 200
## 3460 Manhattan Private room 100
## 3461 Brooklyn Entire home/apt 50
## 3462 Manhattan Entire home/apt 175
## 3463 Brooklyn Entire home/apt 199
## 3464 Brooklyn Private room 54
## 3465 Brooklyn Entire home/apt 130
## 3466 Brooklyn Entire home/apt 151
## 3467 Manhattan Entire home/apt 80
## 3468 Manhattan Entire home/apt 110
## 3469 Brooklyn Entire home/apt 60
## 3470 Brooklyn Entire home/apt 110
## 3471 Brooklyn Private room 73
## 3472 Brooklyn Entire home/apt 177
## 3473 Queens Entire home/apt 90
## 3474 Manhattan Entire home/apt 190
## 3475 Brooklyn Entire home/apt 105
## 3476 Manhattan Entire home/apt 150
## 3477 Bronx Private room 65
## 3478 Brooklyn Private room 35
## 3479 Brooklyn Entire home/apt 700
## 3480 Brooklyn Entire home/apt 185
## 3481 Manhattan Entire home/apt 150
## 3482 Brooklyn Private room 100
## 3483 Brooklyn Entire home/apt 575
## 3484 Manhattan Private room 128
## 3485 Manhattan Entire home/apt 299
## 3486 Manhattan Entire home/apt 169
## 3487 Manhattan Private room 109
## 3488 Brooklyn Entire home/apt 99
## 3489 Queens Entire home/apt 130
## 3490 Manhattan Entire home/apt 239
## 3491 Brooklyn Entire home/apt 100
## 3492 Brooklyn Entire home/apt 124
## 3493 Brooklyn Private room 69
## 3494 Brooklyn Entire home/apt 180
## 3495 Brooklyn Entire home/apt 225
## 3496 Manhattan Entire home/apt 119
## 3497 Manhattan Entire home/apt 220
## 3498 Brooklyn Entire home/apt 150
## 3499 Brooklyn Private room 75
## 3500 Brooklyn Private room 51
## 3501 Manhattan Entire home/apt 150
## 3502 Brooklyn Private room 91
## 3503 Manhattan Entire home/apt 139
## 3504 Brooklyn Entire home/apt 100
## 3505 Queens Private room 60
## 3506 Manhattan Entire home/apt 255
## 3507 Queens Entire home/apt 94
## 3508 Manhattan Entire home/apt 179
## 3509 Manhattan Entire home/apt 135
## 3510 Brooklyn Private room 50
## 3511 Brooklyn Entire home/apt 350
## 3512 Manhattan Entire home/apt 150
## 3513 Manhattan Entire home/apt 375
## 3514 Manhattan Private room 150
## 3515 Manhattan Entire home/apt 175
## 3516 Brooklyn Entire home/apt 170
## 3517 Brooklyn Entire home/apt 275
## 3518 Brooklyn Private room 30
## 3519 Brooklyn Entire home/apt 150
## 3520 Manhattan Entire home/apt 140
## 3521 Manhattan Entire home/apt 200
## 3522 Manhattan Entire home/apt 560
## 3523 Manhattan Entire home/apt 240
## 3524 Queens Entire home/apt 99
## 3525 Manhattan Entire home/apt 195
## 3526 Manhattan Private room 89
## 3527 Brooklyn Private room 65
## 3528 Manhattan Entire home/apt 156
## 3529 Manhattan Private room 120
## 3530 Manhattan Entire home/apt 400
## 3531 Brooklyn Entire home/apt 210
## 3532 Brooklyn Entire home/apt 159
## 3533 Brooklyn Private room 55
## 3534 Brooklyn Entire home/apt 129
## 3535 Manhattan Entire home/apt 300
## 3536 Brooklyn Private room 79
## 3537 Brooklyn Private room 100
## 3538 Manhattan Entire home/apt 6000
## 3539 Queens Entire home/apt 64
## 3540 Brooklyn Private room 110
## 3541 Manhattan Private room 55
## 3542 Brooklyn Private room 55
## 3543 Brooklyn Private room 75
## 3544 Brooklyn Private room 70
## 3545 Manhattan Shared room 85
## 3546 Brooklyn Entire home/apt 130
## 3547 Brooklyn Private room 120
## 3548 Brooklyn Entire home/apt 50
## 3549 Manhattan Entire home/apt 100
## 3550 Manhattan Entire home/apt 145
## 3551 Brooklyn Private room 100
## 3552 Manhattan Entire home/apt 200
## 3553 Manhattan Entire home/apt 80
## 3554 Manhattan Entire home/apt 200
## 3555 Manhattan Entire home/apt 325
## 3556 Queens Entire home/apt 120
## 3557 Manhattan Private room 180
## 3558 Manhattan Entire home/apt 379
## 3559 Brooklyn Private room 33
## 3560 Brooklyn Private room 60
## 3561 Brooklyn Entire home/apt 199
## 3562 Brooklyn Entire home/apt 149
## 3563 Manhattan Entire home/apt 150
## 3564 Manhattan Entire home/apt 98
## 3565 Manhattan Entire home/apt 250
## 3566 Brooklyn Private room 60
## 3567 Brooklyn Entire home/apt 149
## 3568 Brooklyn Private room 95
## 3569 Brooklyn Entire home/apt 85
## 3570 Manhattan Entire home/apt 90
## 3571 Queens Private room 47
## 3572 Manhattan Entire home/apt 180
## 3573 Manhattan Private room 110
## 3574 Brooklyn Entire home/apt 170
## 3575 Manhattan Entire home/apt 210
## 3576 Manhattan Entire home/apt 900
## 3577 Queens Entire home/apt 65
## 3578 Brooklyn Private room 60
## 3579 Manhattan Entire home/apt 225
## 3580 Brooklyn Entire home/apt 200
## 3581 Brooklyn Entire home/apt 170
## 3582 Manhattan Private room 62
## 3583 Manhattan Entire home/apt 125
## 3584 Manhattan Private room 106
## 3585 Manhattan Private room 93
## 3586 Manhattan Private room 85
## 3587 Manhattan Private room 300
## 3588 Manhattan Entire home/apt 224
## 3589 Brooklyn Private room 145
## 3590 Brooklyn Private room 40
## 3591 Manhattan Private room 135
## 3592 Manhattan Private room 97
## 3593 Manhattan Private room 69
## 3594 Brooklyn Entire home/apt 225
## 3595 Manhattan Entire home/apt 900
## 3596 Manhattan Entire home/apt 215
## 3597 Brooklyn Private room 99
## 3598 Manhattan Entire home/apt 850
## 3599 Manhattan Entire home/apt 2000
## 3600 Queens Private room 60
## 3601 Manhattan Entire home/apt 303
## 3602 Manhattan Entire home/apt 750
## 3603 Brooklyn Entire home/apt 111
## 3604 Brooklyn Private room 60
## 3605 Brooklyn Entire home/apt 320
## 3606 Brooklyn Entire home/apt 112
## 3607 Brooklyn Entire home/apt 185
## 3608 Queens Private room 100
## 3609 Brooklyn Entire home/apt 150
## 3610 Manhattan Private room 130
## 3611 Brooklyn Entire home/apt 130
## 3612 Manhattan Entire home/apt 575
## 3613 Brooklyn Entire home/apt 125
## 3614 Manhattan Entire home/apt 190
## 3615 Brooklyn Private room 70
## 3616 Manhattan Entire home/apt 599
## 3617 Brooklyn Private room 80
## 3618 Manhattan Entire home/apt 99
## 3619 Manhattan Entire home/apt 100
## 3620 Manhattan Entire home/apt 200
## 3621 Manhattan Private room 60
## 3622 Brooklyn Private room 100
## 3623 Manhattan Entire home/apt 2000
## 3624 Manhattan Private room 90
## 3625 Brooklyn Private room 61
## 3626 Brooklyn Private room 99
## 3627 Queens Private room 100
## 3628 Manhattan Entire home/apt 340
## 3629 Brooklyn Private room 75
## 3630 Brooklyn Entire home/apt 130
## 3631 Brooklyn Entire home/apt 140
## 3632 Manhattan Entire home/apt 112
## 3633 Manhattan Entire home/apt 160
## 3634 Manhattan Entire home/apt 165
## 3635 Manhattan Private room 80
## 3636 Manhattan Entire home/apt 850
## 3637 Manhattan Entire home/apt 950
## 3638 Manhattan Entire home/apt 1500
## 3639 Manhattan Entire home/apt 160
## 3640 Manhattan Entire home/apt 300
## 3641 Brooklyn Entire home/apt 150
## 3642 Brooklyn Entire home/apt 250
## 3643 Manhattan Entire home/apt 100
## 3644 Manhattan Private room 49
## 3645 Manhattan Entire home/apt 675
## 3646 Manhattan Entire home/apt 150
## 3647 Manhattan Entire home/apt 300
## 3648 Manhattan Private room 79
## 3649 Manhattan Entire home/apt 225
## 3650 Brooklyn Private room 90
## 3651 Brooklyn Entire home/apt 285
## 3652 Manhattan Entire home/apt 300
## 3653 Brooklyn Private room 55
## 3654 Manhattan Entire home/apt 80
## 3655 Manhattan Private room 90
## 3656 Manhattan Entire home/apt 325
## 3657 Manhattan Private room 55
## 3658 Manhattan Private room 208
## 3659 Manhattan Entire home/apt 156
## 3660 Brooklyn Entire home/apt 85
## 3661 Brooklyn Entire home/apt 200
## 3662 Manhattan Entire home/apt 180
## 3663 Brooklyn Entire home/apt 250
## 3664 Brooklyn Entire home/apt 325
## 3665 Manhattan Entire home/apt 140
## 3666 Manhattan Entire home/apt 160
## 3667 Manhattan Private room 130
## 3668 Manhattan Private room 110
## 3669 Manhattan Entire home/apt 150
## 3670 Manhattan Private room 149
## 3671 Manhattan Entire home/apt 900
## 3672 Manhattan Entire home/apt 215
## 3673 Manhattan Entire home/apt 155
## 3674 Brooklyn Private room 50
## 3675 Brooklyn Entire home/apt 225
## 3676 Manhattan Private room 65
## 3677 Brooklyn Entire home/apt 112
## 3678 Manhattan Entire home/apt 250
## 3679 Brooklyn Private room 65
## 3680 Brooklyn Entire home/apt 159
## 3681 Manhattan Entire home/apt 99
## 3682 Manhattan Entire home/apt 395
## 3683 Brooklyn Private room 145
## 3684 Manhattan Entire home/apt 185
## 3685 Manhattan Entire home/apt 1500
## 3686 Brooklyn Private room 45
## 3687 Manhattan Entire home/apt 60
## 3688 Manhattan Entire home/apt 749
## 3689 Manhattan Private room 55
## 3690 Manhattan Entire home/apt 1000
## 3691 Manhattan Entire home/apt 165
## 3692 Manhattan Entire home/apt 285
## 3693 Manhattan Entire home/apt 220
## 3694 Bronx Private room 75
## 3695 Brooklyn Entire home/apt 120
## 3696 Manhattan Entire home/apt 4000
## 3697 Manhattan Entire home/apt 650
## 3698 Manhattan Entire home/apt 750
## 3699 Brooklyn Entire home/apt 100
## 3700 Manhattan Private room 95
## 3701 Manhattan Shared room 1000
## 3702 Manhattan Private room 119
## 3703 Brooklyn Entire home/apt 1200
## 3704 Manhattan Entire home/apt 200
## 3705 Brooklyn Shared room 48
## 3706 Manhattan Shared room 30
## 3707 Queens Entire home/apt 65
## 3708 Queens Private room 79
## 3709 Manhattan Entire home/apt 105
## 3710 Manhattan Entire home/apt 420
## 3711 Manhattan Entire home/apt 250
## 3712 Brooklyn Entire home/apt 95
## 3713 Brooklyn Entire home/apt 290
## 3714 Manhattan Entire home/apt 100
## 3715 Manhattan Entire home/apt 395
## 3716 Manhattan Entire home/apt 180
## 3717 Manhattan Entire home/apt 380
## 3718 Brooklyn Entire home/apt 40
## 3719 Brooklyn Entire home/apt 45
## 3720 Manhattan Entire home/apt 300
## 3721 Manhattan Entire home/apt 5250
## 3722 Manhattan Entire home/apt 1500
## 3723 Manhattan Private room 125
## 3724 Manhattan Entire home/apt 1500
## 3725 Manhattan Entire home/apt 110
## 3726 Brooklyn Entire home/apt 105
## 3727 Brooklyn Private room 45
## 3728 Manhattan Entire home/apt 1000
## 3729 Brooklyn Entire home/apt 80
## 3730 Manhattan Entire home/apt 375
## 3731 Manhattan Entire home/apt 1000
## 3732 Manhattan Entire home/apt 1500
## 3733 Manhattan Entire home/apt 1550
## 3734 Manhattan Private room 89
## 3735 Manhattan Private room 129
## 3736 Manhattan Private room 500
## 3737 Manhattan Entire home/apt 500
## 3738 Manhattan Entire home/apt 250
## 3739 Manhattan Entire home/apt 250
## 3740 Manhattan Entire home/apt 175
## 3741 Brooklyn Private room 40
## 3742 Manhattan Entire home/apt 400
## 3743 Brooklyn Private room 85
## 3744 Brooklyn Entire home/apt 219
## 3745 Manhattan Entire home/apt 130
## 3746 Brooklyn Entire home/apt 149
## 3747 Manhattan Entire home/apt 100
## 3748 Manhattan Entire home/apt 289
## 3749 Manhattan Private room 67
## 3750 Manhattan Entire home/apt 221
## 3751 Manhattan Entire home/apt 750
## 3752 Brooklyn Private room 75
## 3753 Manhattan Entire home/apt 350
## 3754 Manhattan Entire home/apt 425
## 3755 Manhattan Entire home/apt 200
## 3756 Manhattan Entire home/apt 1000
## 3757 Brooklyn Private room 100
## 3758 Queens Shared room 65
## 3759 Manhattan Private room 1250
## 3760 Manhattan Entire home/apt 112
## 3761 Manhattan Entire home/apt 175
## 3762 Brooklyn Entire home/apt 1485
## 3763 Queens Entire home/apt 120
## 3764 Manhattan Entire home/apt 150
## 3765 Manhattan Entire home/apt 369
## 3766 Manhattan Private room 81
## 3767 Brooklyn Private room 89
## 3768 Brooklyn Entire home/apt 199
## 3769 Brooklyn Entire home/apt 149
## 3770 Brooklyn Private room 45
## 3771 Brooklyn Entire home/apt 149
## 3772 Queens Entire home/apt 600
## 3773 Manhattan Entire home/apt 400
## 3774 Queens Private room 65
## 3775 Brooklyn Entire home/apt 6500
## 3776 Manhattan Entire home/apt 150
## 3777 Brooklyn Entire home/apt 265
## 3778 Manhattan Entire home/apt 199
## 3779 Manhattan Entire home/apt 395
## 3780 Manhattan Entire home/apt 150
## 3781 Brooklyn Entire home/apt 130
## 3782 Manhattan Private room 175
## 3783 Manhattan Entire home/apt 2750
## 3784 Manhattan Private room 90
## 3785 Manhattan Entire home/apt 1500
## 3786 Manhattan Entire home/apt 2500
## 3787 Manhattan Entire home/apt 350
## 3788 Brooklyn Entire home/apt 250
## 3789 Manhattan Entire home/apt 3750
## 3790 Manhattan Private room 250
## 3791 Brooklyn Entire home/apt 500
## 3792 Brooklyn Entire home/apt 180
## 3793 Manhattan Entire home/apt 800
## 3794 Manhattan Entire home/apt 1600
## 3795 Manhattan Entire home/apt 85
## 3796 Brooklyn Private room 49
## 3797 Manhattan Entire home/apt 750
## 3798 Brooklyn Private room 91
## 3799 Manhattan Private room 100
## 3800 Manhattan Entire home/apt 152
## 3801 Brooklyn Entire home/apt 250
## 3802 Manhattan Private room 110
## 3803 Brooklyn Private room 73
## 3804 Queens Shared room 300
## 3805 Manhattan Entire home/apt 1000
## 3806 Manhattan Entire home/apt 135
## 3807 Manhattan Entire home/apt 75
## 3808 Manhattan Private room 600
## 3809 Manhattan Entire home/apt 800
## 3810 Bronx Entire home/apt 250
## 3811 Manhattan Entire home/apt 200
## 3812 Brooklyn Private room 75
## 3813 Manhattan Entire home/apt 1000
## 3814 Brooklyn Entire home/apt 900
## 3815 Manhattan Private room 70
## 3816 Queens Entire home/apt 88
## 3817 Manhattan Entire home/apt 425
## 3818 Manhattan Entire home/apt 975
## 3819 Brooklyn Entire home/apt 305
## 3820 Manhattan Entire home/apt 220
## 3821 Manhattan Entire home/apt 150
## 3822 Brooklyn Private room 49
## 3823 Brooklyn Entire home/apt 86
## 3824 Brooklyn Entire home/apt 140
## 3825 Queens Entire home/apt 86
## 3826 Manhattan Entire home/apt 650
## 3827 Manhattan Entire home/apt 350
## 3828 Manhattan Entire home/apt 225
## 3829 Manhattan Private room 75
## 3830 Manhattan Entire home/apt 150
## 3831 Manhattan Private room 199
## 3832 Brooklyn Entire home/apt 95
## 3833 Brooklyn Entire home/apt 200
## 3834 Manhattan Entire home/apt 200
## 3835 Brooklyn Entire home/apt 175
## 3836 Brooklyn Entire home/apt 129
## 3837 Brooklyn Entire home/apt 200
## 3838 Manhattan Private room 60
## 3839 Manhattan Private room 130
## 3840 Manhattan Private room 115
## 3841 Manhattan Private room 135
## 3842 Manhattan Private room 300
## 3843 Queens Private room 59
## 3844 Brooklyn Entire home/apt 196
## 3845 Brooklyn Private room 128
## 3846 Manhattan Entire home/apt 400
## 3847 Manhattan Entire home/apt 200
## 3848 Manhattan Entire home/apt 180
## 3849 Brooklyn Private room 60
## 3850 Brooklyn Private room 70
## 3851 Manhattan Private room 40
## 3852 Brooklyn Entire home/apt 250
## 3853 Brooklyn Entire home/apt 80
## 3854 Manhattan Entire home/apt 85
## 3855 Manhattan Private room 70
## 3856 Brooklyn Private room 55
## 3857 Brooklyn Private room 60
## 3858 Brooklyn Private room 100
## 3859 Brooklyn Private room 73
## 3860 Brooklyn Entire home/apt 145
## 3861 Queens Private room 65
## 3862 Brooklyn Entire home/apt 162
## 3863 Queens Entire home/apt 275
## 3864 Brooklyn Private room 56
## 3865 Manhattan Entire home/apt 200
## 3866 Manhattan Entire home/apt 250
## 3867 Brooklyn Entire home/apt 500
## 3868 Brooklyn Entire home/apt 120
## 3869 Brooklyn Private room 55
## 3870 Brooklyn Private room 59
## 3871 Brooklyn Entire home/apt 99
## 3872 Manhattan Entire home/apt 155
## 3873 Manhattan Entire home/apt 200
## 3874 Manhattan Private room 60
## 3875 Queens Entire home/apt 85
## 3876 Manhattan Private room 150
## 3877 Queens Private room 45
## 3878 Manhattan Entire home/apt 200
## 3879 Brooklyn Entire home/apt 120
## 3880 Manhattan Entire home/apt 100
## 3881 Manhattan Entire home/apt 195
## 3882 Brooklyn Private room 38
## 3883 Brooklyn Private room 75
## 3884 Brooklyn Entire home/apt 76
## 3885 Brooklyn Entire home/apt 175
## 3886 Brooklyn Entire home/apt 500
## 3887 Brooklyn Entire home/apt 179
## 3888 Brooklyn Private room 200
## 3889 Manhattan Entire home/apt 400
## 3890 Bronx Shared room 32
## 3891 Brooklyn Private room 50
## 3892 Manhattan Private room 75
## 3893 Manhattan Private room 40
## 3894 Brooklyn Private room 62
## 3895 Brooklyn Private room 239
## 3896 Brooklyn Entire home/apt 179
## 3897 Brooklyn Entire home/apt 250
## 3898 Manhattan Entire home/apt 400
## 3899 Manhattan Private room 98
## 3900 Brooklyn Private room 89
## 3901 Manhattan Entire home/apt 185
## 3902 Manhattan Private room 125
## 3903 Brooklyn Entire home/apt 180
## 3904 Brooklyn Shared room 30
## 3905 Brooklyn Private room 60
## 3906 Manhattan Private room 115
## 3907 Brooklyn Entire home/apt 200
## 3908 Brooklyn Private room 70
## 3909 Manhattan Entire home/apt 179
## 3910 Brooklyn Entire home/apt 109
## 3911 Manhattan Private room 124
## 3912 Manhattan Entire home/apt 159
## 3913 Brooklyn Entire home/apt 85
## 3914 Brooklyn Private room 109
## 3915 Manhattan Entire home/apt 110
## 3916 Manhattan Private room 500
## 3917 Manhattan Private room 65
## 3918 Manhattan Private room 112
## 3919 Brooklyn Shared room 25
## 3920 Manhattan Entire home/apt 220
## 3921 Brooklyn Entire home/apt 79
## 3922 Brooklyn Entire home/apt 200
## 3923 Brooklyn Private room 55
## 3924 Bronx Private room 50
## 3925 Brooklyn Entire home/apt 129
## 3926 Manhattan Entire home/apt 195
## 3927 Brooklyn Entire home/apt 79
## 3928 Manhattan Private room 65
## 3929 Manhattan Entire home/apt 123
## 3930 Brooklyn Private room 70
## 3931 Queens Private room 100
## 3932 Brooklyn Private room 69
## 3933 Manhattan Entire home/apt 450
## 3934 Manhattan Entire home/apt 650
## 3935 Manhattan Entire home/apt 125
## 3936 Brooklyn Private room 75
## 3937 Brooklyn Entire home/apt 154
## 3938 Manhattan Entire home/apt 60
## 3939 Manhattan Entire home/apt 279
## 3940 Manhattan Private room 80
## 3941 Manhattan Private room 84
## 3942 Brooklyn Entire home/apt 180
## 3943 Brooklyn Entire home/apt 100
## 3944 Brooklyn Private room 86
## 3945 Brooklyn Entire home/apt 189
## 3946 Manhattan Entire home/apt 130
## 3947 Manhattan Entire home/apt 150
## 3948 Brooklyn Entire home/apt 149
## 3949 Queens Entire home/apt 83
## 3950 Manhattan Entire home/apt 180
## 3951 Brooklyn Private room 18
## 3952 Brooklyn Entire home/apt 100
## 3953 Brooklyn Private room 145
## 3954 Manhattan Entire home/apt 133
## 3955 Queens Private room 75
## 3956 Brooklyn Private room 100
## 3957 Manhattan Shared room 99
## 3958 Brooklyn Entire home/apt 132
## 3959 Manhattan Private room 72
## 3960 Queens Entire home/apt 125
## 3961 Brooklyn Entire home/apt 102
## 3962 Brooklyn Entire home/apt 129
## 3963 Brooklyn Entire home/apt 107
## 3964 Manhattan Entire home/apt 250
## 3965 Queens Private room 90
## 3966 Manhattan Entire home/apt 200
## 3967 Brooklyn Private room 90
## 3968 Manhattan Private room 200
## 3969 Brooklyn Entire home/apt 160
## 3970 Manhattan Private room 124
## 3971 Brooklyn Private room 95
## 3972 Brooklyn Entire home/apt 129
## 3973 Brooklyn Private room 110
## 3974 Manhattan Private room 92
## 3975 Manhattan Entire home/apt 175
## 3976 Queens Private room 30
## 3977 Brooklyn Entire home/apt 134
## 3978 Manhattan Entire home/apt 400
## 3979 Manhattan Entire home/apt 152
## 3980 Queens Shared room 75
## 3981 Manhattan Private room 169
## 3982 Brooklyn Private room 95
## 3983 Brooklyn Private room 90
## 3984 Manhattan Private room 60
## 3985 Manhattan Entire home/apt 180
## 3986 Manhattan Private room 84
## 3987 Brooklyn Entire home/apt 98
## 3988 Brooklyn Entire home/apt 90
## 3989 Brooklyn Entire home/apt 134
## 3990 Manhattan Private room 119
## 3991 Manhattan Entire home/apt 141
## 3992 Manhattan Entire home/apt 199
## 3993 Brooklyn Entire home/apt 108
## 3994 Manhattan Entire home/apt 150
## 3995 Brooklyn Entire home/apt 175
## 3996 Brooklyn Private room 90
## 3997 Brooklyn Private room 45
## 3998 Brooklyn Private room 49
## 3999 Queens Entire home/apt 63
## 4000 Manhattan Private room 100
## 4001 Brooklyn Private room 110
## 4002 Manhattan Entire home/apt 600
## 4003 Queens Entire home/apt 395
## 4004 Queens Private room 70
## 4005 Manhattan Entire home/apt 399
## 4006 Manhattan Entire home/apt 145
## 4007 Queens Private room 59
## 4008 Queens Private room 50
## 4009 Manhattan Entire home/apt 145
## 4010 Manhattan Entire home/apt 245
## 4011 Manhattan Private room 149
## 4012 Brooklyn Private room 50
## 4013 Queens Entire home/apt 150
## 4014 Manhattan Private room 110
## 4015 Brooklyn Entire home/apt 60
## 4016 Brooklyn Entire home/apt 165
## 4017 Brooklyn Private room 53
## 4018 Manhattan Entire home/apt 160
## 4019 Brooklyn Private room 38
## 4020 Brooklyn Private room 49
## 4021 Brooklyn Private room 47
## 4022 Brooklyn Entire home/apt 120
## 4023 Manhattan Entire home/apt 175
## 4024 Manhattan Entire home/apt 129
## 4025 Brooklyn Private room 105
## 4026 Brooklyn Entire home/apt 275
## 4027 Manhattan Private room 99
## 4028 Manhattan Entire home/apt 210
## 4029 Manhattan Private room 65
## 4030 Brooklyn Private room 52
## 4031 Queens Private room 100
## 4032 Manhattan Private room 91
## 4033 Manhattan Entire home/apt 124
## 4034 Manhattan Private room 200
## 4035 Brooklyn Entire home/apt 550
## 4036 Bronx Private room 70
## 4037 Manhattan Entire home/apt 150
## 4038 Brooklyn Entire home/apt 176
## 4039 Manhattan Entire home/apt 99
## 4040 Manhattan Entire home/apt 130
## 4041 Manhattan Entire home/apt 109
## 4042 Manhattan Private room 75
## 4043 Manhattan Private room 95
## 4044 Brooklyn Private room 50
## 4045 Brooklyn Private room 100
## 4046 Manhattan Private room 68
## 4047 Manhattan Private room 104
## 4048 Brooklyn Private room 30
## 4049 Brooklyn Entire home/apt 595
## 4050 Brooklyn Private room 65
## 4051 Manhattan Shared room 55
## 4052 Brooklyn Entire home/apt 250
## 4053 Brooklyn Entire home/apt 85
## 4054 Manhattan Private room 90
## 4055 Manhattan Private room 90
## 4056 Brooklyn Entire home/apt 90
## 4057 Manhattan Entire home/apt 199
## 4058 Manhattan Entire home/apt 275
## 4059 Brooklyn Entire home/apt 125
## 4060 Manhattan Private room 150
## 4061 Queens Entire home/apt 140
## 4062 Manhattan Entire home/apt 120
## 4063 Brooklyn Private room 60
## 4064 Brooklyn Private room 36
## 4065 Manhattan Private room 85
## 4066 Brooklyn Private room 85
## 4067 Brooklyn Private room 45
## 4068 Brooklyn Entire home/apt 92
## 4069 Brooklyn Private room 30
## 4070 Brooklyn Private room 75
## 4071 Manhattan Entire home/apt 99
## 4072 Brooklyn Entire home/apt 100
## 4073 Brooklyn Entire home/apt 115
## 4074 Brooklyn Entire home/apt 175
## 4075 Brooklyn Entire home/apt 112
## 4076 Manhattan Entire home/apt 450
## 4077 Manhattan Entire home/apt 103
## 4078 Manhattan Entire home/apt 117
## 4079 Manhattan Entire home/apt 150
## 4080 Staten Island Private room 129
## 4081 Manhattan Entire home/apt 145
## 4082 Brooklyn Entire home/apt 115
## 4083 Manhattan Entire home/apt 90
## 4084 Manhattan Entire home/apt 90
## 4085 Brooklyn Entire home/apt 100
## 4086 Bronx Private room 41
## 4087 Manhattan Entire home/apt 145
## 4088 Manhattan Entire home/apt 139
## 4089 Manhattan Entire home/apt 117
## 4090 Brooklyn Private room 50
## 4091 Manhattan Private room 80
## 4092 Brooklyn Entire home/apt 100
## 4093 Brooklyn Entire home/apt 225
## 4094 Brooklyn Private room 70
## 4095 Bronx Private room 80
## 4096 Manhattan Private room 70
## 4097 Brooklyn Private room 31
## 4098 Brooklyn Private room 40
## 4099 Manhattan Entire home/apt 290
## 4100 Brooklyn Entire home/apt 235
## 4101 Brooklyn Entire home/apt 200
## 4102 Brooklyn Entire home/apt 180
## 4103 Brooklyn Entire home/apt 110
## 4104 Manhattan Private room 120
## 4105 Manhattan Entire home/apt 142
## 4106 Manhattan Private room 105
## 4107 Manhattan Entire home/apt 100
## 4108 Manhattan Private room 102
## 4109 Brooklyn Entire home/apt 152
## 4110 Brooklyn Entire home/apt 150
## 4111 Queens Entire home/apt 95
## 4112 Brooklyn Private room 67
## 4113 Brooklyn Private room 65
## 4114 Brooklyn Private room 79
## 4115 Brooklyn Private room 55
## 4116 Manhattan Entire home/apt 83
## 4117 Manhattan Entire home/apt 200
## 4118 Brooklyn Private room 150
## 4119 Manhattan Entire home/apt 160
## 4120 Queens Entire home/apt 80
## 4121 Manhattan Entire home/apt 159
## 4122 Manhattan Entire home/apt 90
## 4123 Brooklyn Shared room 45
## 4124 Manhattan Private room 100
## 4125 Brooklyn Entire home/apt 125
## 4126 Manhattan Shared room 100
## 4127 Manhattan Private room 80
## 4128 Manhattan Entire home/apt 2300
## 4129 Brooklyn Entire home/apt 90
## 4130 Manhattan Entire home/apt 140
## 4131 Brooklyn Private room 52
## 4132 Manhattan Entire home/apt 200
## 4133 Brooklyn Entire home/apt 94
## 4134 Brooklyn Shared room 40
## 4135 Queens Private room 55
## 4136 Brooklyn Private room 69
## 4137 Manhattan Entire home/apt 200
## 4138 Brooklyn Entire home/apt 100
## 4139 Brooklyn Entire home/apt 53
## 4140 Manhattan Private room 425
## 4141 Bronx Private room 40
## 4142 Brooklyn Private room 40
## 4143 Brooklyn Entire home/apt 150
## 4144 Manhattan Private room 65
## 4145 Manhattan Private room 109
## 4146 Queens Private room 60
## 4147 Brooklyn Entire home/apt 180
## 4148 Queens Private room 95
## 4149 Manhattan Private room 140
## 4150 Queens Entire home/apt 155
## 4151 Manhattan Entire home/apt 105
## 4152 Brooklyn Private room 45
## 4153 Brooklyn Entire home/apt 330
## 4154 Brooklyn Private room 50
## 4155 Manhattan Private room 100
## 4156 Brooklyn Private room 49
## 4157 Brooklyn Entire home/apt 65
## 4158 Manhattan Private room 70
## 4159 Manhattan Entire home/apt 180
## 4160 Queens Entire home/apt 130
## 4161 Brooklyn Entire home/apt 225
## 4162 Manhattan Entire home/apt 225
## 4163 Manhattan Private room 85
## 4164 Manhattan Entire home/apt 125
## 4165 Manhattan Entire home/apt 99
## 4166 Queens Private room 95
## 4167 Queens Entire home/apt 400
## 4168 Manhattan Private room 99
## 4169 Manhattan Private room 85
## 4170 Manhattan Entire home/apt 90
## 4171 Brooklyn Entire home/apt 85
## 4172 Manhattan Entire home/apt 130
## 4173 Manhattan Private room 95
## 4174 Brooklyn Entire home/apt 149
## 4175 Brooklyn Entire home/apt 225
## 4176 Brooklyn Entire home/apt 135
## 4177 Manhattan Entire home/apt 140
## 4178 Manhattan Entire home/apt 200
## 4179 Brooklyn Entire home/apt 159
## 4180 Brooklyn Entire home/apt 200
## 4181 Brooklyn Entire home/apt 155
## 4182 Brooklyn Entire home/apt 125
## 4183 Bronx Private room 71
## 4184 Brooklyn Private room 75
## 4185 Manhattan Entire home/apt 275
## 4186 Brooklyn Private room 70
## 4187 Manhattan Entire home/apt 250
## 4188 Brooklyn Entire home/apt 200
## 4189 Brooklyn Entire home/apt 90
## 4190 Brooklyn Private room 50
## 4191 Brooklyn Entire home/apt 124
## 4192 Manhattan Entire home/apt 110
## 4193 Queens Private room 50
## 4194 Manhattan Private room 75
## 4195 Manhattan Private room 90
## 4196 Brooklyn Entire home/apt 130
## 4197 Manhattan Entire home/apt 140
## 4198 Brooklyn Entire home/apt 200
## 4199 Brooklyn Entire home/apt 350
## 4200 Manhattan Entire home/apt 100
## 4201 Queens Entire home/apt 225
## 4202 Brooklyn Private room 65
## 4203 Brooklyn Entire home/apt 145
## 4204 Manhattan Entire home/apt 189
## 4205 Manhattan Entire home/apt 265
## 4206 Manhattan Entire home/apt 409
## 4207 Brooklyn Private room 95
## 4208 Manhattan Private room 175
## 4209 Queens Private room 55
## 4210 Manhattan Entire home/apt 200
## 4211 Manhattan Entire home/apt 200
## 4212 Brooklyn Private room 69
## 4213 Brooklyn Entire home/apt 135
## 4214 Brooklyn Entire home/apt 325
## 4215 Manhattan Private room 95
## 4216 Manhattan Entire home/apt 117
## 4217 Manhattan Private room 59
## 4218 Manhattan Shared room 85
## 4219 Queens Private room 55
## 4220 Brooklyn Private room 80
## 4221 Brooklyn Entire home/apt 115
## 4222 Manhattan Private room 78
## 4223 Manhattan Private room 150
## 4224 Brooklyn Entire home/apt 195
## 4225 Brooklyn Entire home/apt 142
## 4226 Manhattan Entire home/apt 150
## 4227 Bronx Shared room 55
## 4228 Brooklyn Entire home/apt 97
## 4229 Brooklyn Entire home/apt 70
## 4230 Manhattan Shared room 70
## 4231 Manhattan Private room 155
## 4232 Brooklyn Entire home/apt 68
## 4233 Manhattan Private room 68
## 4234 Brooklyn Entire home/apt 150
## 4235 Brooklyn Entire home/apt 150
## 4236 Manhattan Entire home/apt 150
## 4237 Manhattan Private room 100
## 4238 Manhattan Entire home/apt 110
## 4239 Brooklyn Entire home/apt 150
## 4240 Brooklyn Entire home/apt 160
## 4241 Manhattan Entire home/apt 218
## 4242 Manhattan Entire home/apt 430
## 4243 Brooklyn Private room 79
## 4244 Manhattan Entire home/apt 120
## 4245 Brooklyn Entire home/apt 200
## 4246 Manhattan Private room 120
## 4247 Manhattan Private room 250
## 4248 Manhattan Entire home/apt 200
## 4249 Staten Island Entire home/apt 75
## 4250 Brooklyn Entire home/apt 175
## 4251 Brooklyn Entire home/apt 76
## 4252 Manhattan Entire home/apt 75
## 4253 Brooklyn Entire home/apt 400
## 4254 Queens Private room 75
## 4255 Manhattan Entire home/apt 189
## 4256 Queens Private room 55
## 4257 Brooklyn Private room 80
## 4258 Brooklyn Private room 69
## 4259 Manhattan Private room 100
## 4260 Queens Entire home/apt 100
## 4261 Manhattan Entire home/apt 300
## 4262 Manhattan Private room 53
## 4263 Manhattan Entire home/apt 179
## 4264 Brooklyn Entire home/apt 100
## 4265 Queens Entire home/apt 130
## 4266 Bronx Entire home/apt 120
## 4267 Brooklyn Private room 150
## 4268 Manhattan Entire home/apt 105
## 4269 Brooklyn Entire home/apt 150
## 4270 Manhattan Entire home/apt 200
## 4271 Manhattan Private room 39
## 4272 Manhattan Entire home/apt 67
## 4273 Manhattan Entire home/apt 200
## 4274 Brooklyn Entire home/apt 129
## 4275 Brooklyn Private room 55
## 4276 Queens Private room 65
## 4277 Manhattan Entire home/apt 100
## 4278 Manhattan Private room 55
## 4279 Manhattan Entire home/apt 240
## 4280 Manhattan Entire home/apt 150
## 4281 Manhattan Entire home/apt 299
## 4282 Queens Entire home/apt 160
## 4283 Manhattan Private room 299
## 4284 Brooklyn Entire home/apt 99
## 4285 Brooklyn Entire home/apt 199
## 4286 Manhattan Private room 100
## 4287 Manhattan Private room 45
## 4288 Bronx Private room 44
## 4289 Brooklyn Entire home/apt 150
## 4290 Brooklyn Private room 100
## 4291 Manhattan Entire home/apt 185
## 4292 Brooklyn Entire home/apt 150
## 4293 Manhattan Entire home/apt 650
## 4294 Brooklyn Private room 100
## 4295 Manhattan Private room 111
## 4296 Manhattan Entire home/apt 99
## 4297 Brooklyn Private room 75
## 4298 Manhattan Entire home/apt 103
## 4299 Queens Entire home/apt 130
## 4300 Manhattan Entire home/apt 109
## 4301 Brooklyn Private room 95
## 4302 Brooklyn Entire home/apt 100
## 4303 Brooklyn Entire home/apt 155
## 4304 Queens Private room 60
## 4305 Brooklyn Entire home/apt 195
## 4306 Queens Entire home/apt 69
## 4307 Manhattan Private room 72
## 4308 Brooklyn Entire home/apt 300
## 4309 Manhattan Entire home/apt 119
## 4310 Brooklyn Private room 100
## 4311 Brooklyn Private room 199
## 4312 Manhattan Private room 75
## 4313 Brooklyn Private room 100
## 4314 Manhattan Entire home/apt 125
## 4315 Queens Entire home/apt 95
## 4316 Brooklyn Entire home/apt 295
## 4317 Queens Private room 149
## 4318 Manhattan Entire home/apt 150
## 4319 Brooklyn Entire home/apt 100
## 4320 Brooklyn Private room 45
## 4321 Manhattan Entire home/apt 385
## 4322 Brooklyn Entire home/apt 87
## 4323 Manhattan Entire home/apt 180
## 4324 Queens Private room 59
## 4325 Staten Island Private room 95
## 4326 Manhattan Entire home/apt 130
## 4327 Brooklyn Entire home/apt 120
## 4328 Manhattan Private room 113
## 4329 Queens Private room 60
## 4330 Brooklyn Private room 40
## 4331 Manhattan Entire home/apt 250
## 4332 Brooklyn Entire home/apt 150
## 4333 Brooklyn Entire home/apt 450
## 4334 Brooklyn Entire home/apt 149
## 4335 Brooklyn Entire home/apt 169
## 4336 Brooklyn Private room 105
## 4337 Brooklyn Private room 42
## 4338 Manhattan Entire home/apt 325
## 4339 Manhattan Entire home/apt 200
## 4340 Brooklyn Entire home/apt 160
## 4341 Brooklyn Private room 155
## 4342 Brooklyn Entire home/apt 151
## 4343 Manhattan Entire home/apt 200
## 4344 Brooklyn Private room 80
## 4345 Queens Entire home/apt 119
## 4346 Brooklyn Private room 5000
## 4347 Brooklyn Private room 45
## 4348 Brooklyn Entire home/apt 115
## 4349 Brooklyn Private room 65
## 4350 Manhattan Private room 87
## 4351 Manhattan Private room 110
## 4352 Brooklyn Private room 80
## 4353 Manhattan Entire home/apt 250
## 4354 Brooklyn Private room 63
## 4355 Brooklyn Entire home/apt 200
## 4356 Brooklyn Entire home/apt 185
## 4357 Manhattan Entire home/apt 250
## 4358 Manhattan Entire home/apt 130
## 4359 Brooklyn Entire home/apt 185
## 4360 Brooklyn Private room 75
## 4361 Manhattan Entire home/apt 240
## 4362 Brooklyn Private room 65
## 4363 Manhattan Entire home/apt 195
## 4364 Manhattan Entire home/apt 200
## 4365 Manhattan Private room 120
## 4366 Brooklyn Entire home/apt 180
## 4367 Queens Private room 53
## 4368 Manhattan Entire home/apt 200
## 4369 Manhattan Private room 100
## 4370 Brooklyn Entire home/apt 86
## 4371 Manhattan Entire home/apt 225
## 4372 Queens Private room 40
## 4373 Manhattan Entire home/apt 60
## 4374 Queens Private room 70
## 4375 Queens Private room 35
## 4376 Manhattan Entire home/apt 250
## 4377 Brooklyn Entire home/apt 4500
## 4378 Brooklyn Entire home/apt 8000
## 4379 Manhattan Entire home/apt 169
## 4380 Queens Entire home/apt 255
## 4381 Manhattan Entire home/apt 290
## 4382 Manhattan Entire home/apt 140
## 4383 Manhattan Entire home/apt 115
## 4384 Brooklyn Entire home/apt 299
## 4385 Manhattan Entire home/apt 160
## 4386 Manhattan Shared room 175
## 4387 Manhattan Private room 120
## 4388 Brooklyn Private room 179
## 4389 Brooklyn Private room 74
## 4390 Manhattan Private room 68
## 4391 Manhattan Private room 235
## 4392 Brooklyn Private room 100
## 4393 Brooklyn Entire home/apt 270
## 4394 Brooklyn Entire home/apt 200
## 4395 Manhattan Entire home/apt 161
## 4396 Brooklyn Private room 60
## 4397 Manhattan Entire home/apt 155
## 4398 Manhattan Private room 95
## 4399 Manhattan Entire home/apt 125
## 4400 Manhattan Entire home/apt 118
## 4401 Manhattan Private room 80
## 4402 Brooklyn Entire home/apt 210
## 4403 Brooklyn Entire home/apt 150
## 4404 Brooklyn Entire home/apt 135
## 4405 Manhattan Entire home/apt 118
## 4406 Manhattan Private room 110
## 4407 Brooklyn Private room 70
## 4408 Brooklyn Private room 43
## 4409 Brooklyn Entire home/apt 140
## 4410 Manhattan Entire home/apt 116
## 4411 Brooklyn Entire home/apt 159
## 4412 Brooklyn Entire home/apt 135
## 4413 Manhattan Private room 39
## 4414 Brooklyn Private room 59
## 4415 Manhattan Entire home/apt 600
## 4416 Brooklyn Private room 66
## 4417 Manhattan Entire home/apt 130
## 4418 Brooklyn Entire home/apt 100
## 4419 Brooklyn Private room 50
## 4420 Manhattan Private room 185
## 4421 Brooklyn Private room 54
## 4422 Brooklyn Entire home/apt 100
## 4423 Manhattan Entire home/apt 180
## 4424 Brooklyn Entire home/apt 115
## 4425 Brooklyn Entire home/apt 350
## 4426 Brooklyn Private room 32
## 4427 Brooklyn Entire home/apt 165
## 4428 Manhattan Entire home/apt 350
## 4429 Brooklyn Entire home/apt 795
## 4430 Brooklyn Entire home/apt 200
## 4431 Brooklyn Entire home/apt 175
## 4432 Manhattan Private room 50
## 4433 Manhattan Entire home/apt 190
## 4434 Manhattan Private room 110
## 4435 Brooklyn Entire home/apt 414
## 4436 Brooklyn Entire home/apt 135
## 4437 Manhattan Entire home/apt 150
## 4438 Manhattan Entire home/apt 93
## 4439 Manhattan Private room 70
## 4440 Staten Island Entire home/apt 175
## 4441 Brooklyn Entire home/apt 155
## 4442 Brooklyn Entire home/apt 129
## 4443 Bronx Private room 50
## 4444 Brooklyn Entire home/apt 499
## 4445 Brooklyn Shared room 80
## 4446 Manhattan Entire home/apt 115
## 4447 Queens Private room 47
## 4448 Brooklyn Private room 95
## 4449 Manhattan Entire home/apt 249
## 4450 Manhattan Entire home/apt 150
## 4451 Manhattan Private room 77
## 4452 Manhattan Entire home/apt 225
## 4453 Brooklyn Private room 70
## 4454 Manhattan Entire home/apt 100
## 4455 Manhattan Entire home/apt 87
## 4456 Brooklyn Entire home/apt 245
## 4457 Manhattan Entire home/apt 300
## 4458 Manhattan Private room 55
## 4459 Manhattan Entire home/apt 120
## 4460 Manhattan Private room 40
## 4461 Manhattan Private room 115
## 4462 Manhattan Entire home/apt 93
## 4463 Manhattan Private room 37
## 4464 Brooklyn Entire home/apt 240
## 4465 Manhattan Private room 130
## 4466 Queens Private room 70
## 4467 Brooklyn Entire home/apt 149
## 4468 Brooklyn Private room 100
## 4469 Manhattan Entire home/apt 200
## 4470 Brooklyn Entire home/apt 99
## 4471 Manhattan Entire home/apt 220
## 4472 Manhattan Entire home/apt 250
## 4473 Manhattan Entire home/apt 103
## 4474 Manhattan Entire home/apt 108
## 4475 Manhattan Private room 75
## 4476 Brooklyn Entire home/apt 78
## 4477 Brooklyn Private room 75
## 4478 Brooklyn Entire home/apt 152
## 4479 Manhattan Entire home/apt 150
## 4480 Manhattan Entire home/apt 320
## 4481 Brooklyn Entire home/apt 220
## 4482 Brooklyn Entire home/apt 99
## 4483 Manhattan Entire home/apt 950
## 4484 Manhattan Entire home/apt 120
## 4485 Manhattan Entire home/apt 100
## 4486 Brooklyn Entire home/apt 199
## 4487 Manhattan Private room 100
## 4488 Brooklyn Private room 75
## 4489 Manhattan Entire home/apt 84
## 4490 Brooklyn Entire home/apt 100
## 4491 Brooklyn Private room 75
## 4492 Brooklyn Private room 93
## 4493 Brooklyn Entire home/apt 140
## 4494 Brooklyn Entire home/apt 200
## 4495 Brooklyn Entire home/apt 200
## 4496 Brooklyn Entire home/apt 200
## 4497 Queens Entire home/apt 100
## 4498 Manhattan Private room 100
## 4499 Manhattan Entire home/apt 120
## 4500 Brooklyn Entire home/apt 109
## 4501 Brooklyn Private room 126
## 4502 Manhattan Private room 50
## 4503 Manhattan Entire home/apt 325
## 4504 Manhattan Entire home/apt 750
## 4505 Brooklyn Entire home/apt 135
## 4506 Queens Entire home/apt 52
## 4507 Manhattan Entire home/apt 124
## 4508 Queens Private room 59
## 4509 Manhattan Entire home/apt 215
## 4510 Manhattan Private room 240
## 4511 Manhattan Private room 150
## 4512 Brooklyn Private room 83
## 4513 Queens Entire home/apt 70
## 4514 Manhattan Entire home/apt 160
## 4515 Manhattan Shared room 200
## 4516 Brooklyn Entire home/apt 50
## 4517 Manhattan Entire home/apt 87
## 4518 Manhattan Private room 125
## 4519 Manhattan Entire home/apt 250
## 4520 Brooklyn Entire home/apt 162
## 4521 Brooklyn Entire home/apt 67
## 4522 Manhattan Private room 147
## 4523 Brooklyn Entire home/apt 149
## 4524 Brooklyn Entire home/apt 65
## 4525 Brooklyn Entire home/apt 250
## 4526 Brooklyn Private room 160
## 4527 Manhattan Entire home/apt 150
## 4528 Manhattan Private room 199
## 4529 Brooklyn Private room 64
## 4530 Brooklyn Private room 33
## 4531 Manhattan Private room 500
## 4532 Brooklyn Entire home/apt 150
## 4533 Manhattan Private room 110
## 4534 Brooklyn Entire home/apt 145
## 4535 Brooklyn Private room 40
## 4536 Brooklyn Private room 95
## 4537 Brooklyn Entire home/apt 185
## 4538 Brooklyn Entire home/apt 500
## 4539 Manhattan Entire home/apt 115
## 4540 Staten Island Entire home/apt 195
## 4541 Brooklyn Entire home/apt 105
## 4542 Brooklyn Entire home/apt 67
## 4543 Brooklyn Entire home/apt 75
## 4544 Manhattan Private room 100
## 4545 Brooklyn Entire home/apt 125
## 4546 Brooklyn Entire home/apt 350
## 4547 Brooklyn Entire home/apt 150
## 4548 Queens Entire home/apt 200
## 4549 Brooklyn Entire home/apt 270
## 4550 Brooklyn Entire home/apt 184
## 4551 Brooklyn Entire home/apt 275
## 4552 Manhattan Entire home/apt 171
## 4553 Brooklyn Entire home/apt 425
## 4554 Manhattan Entire home/apt 200
## 4555 Brooklyn Entire home/apt 165
## 4556 Brooklyn Private room 85
## 4557 Brooklyn Entire home/apt 170
## 4558 Brooklyn Private room 70
## 4559 Brooklyn Private room 125
## 4560 Manhattan Entire home/apt 275
## 4561 Brooklyn Private room 120
## 4562 Manhattan Entire home/apt 429
## 4563 Brooklyn Entire home/apt 225
## 4564 Queens Entire home/apt 119
## 4565 Manhattan Entire home/apt 175
## 4566 Brooklyn Entire home/apt 155
## 4567 Manhattan Entire home/apt 100
## 4568 Manhattan Private room 70
## 4569 Bronx Entire home/apt 95
## 4570 Brooklyn Entire home/apt 450
## 4571 Brooklyn Entire home/apt 215
## 4572 Brooklyn Private room 60
## 4573 Bronx Private room 75
## 4574 Brooklyn Private room 99
## 4575 Brooklyn Entire home/apt 300
## 4576 Manhattan Entire home/apt 175
## 4577 Manhattan Entire home/apt 195
## 4578 Queens Private room 50
## 4579 Manhattan Entire home/apt 175
## 4580 Brooklyn Entire home/apt 120
## 4581 Brooklyn Private room 54
## 4582 Manhattan Entire home/apt 345
## 4583 Brooklyn Entire home/apt 225
## 4584 Brooklyn Entire home/apt 151
## 4585 Brooklyn Entire home/apt 110
## 4586 Manhattan Entire home/apt 280
## 4587 Brooklyn Private room 99
## 4588 Brooklyn Entire home/apt 350
## 4589 Brooklyn Private room 70
## 4590 Manhattan Entire home/apt 120
## 4591 Manhattan Private room 89
## 4592 Brooklyn Private room 120
## 4593 Manhattan Private room 85
## 4594 Manhattan Entire home/apt 220
## 4595 Manhattan Private room 125
## 4596 Manhattan Entire home/apt 189
## 4597 Brooklyn Private room 100
## 4598 Manhattan Private room 81
## 4599 Manhattan Shared room 45
## 4600 Brooklyn Private room 150
## 4601 Manhattan Private room 62
## 4602 Brooklyn Entire home/apt 330
## 4603 Manhattan Private room 80
## 4604 Manhattan Shared room 65
## 4605 Manhattan Private room 125
## 4606 Brooklyn Entire home/apt 165
## 4607 Manhattan Private room 90
## 4608 Brooklyn Entire home/apt 120
## 4609 Brooklyn Entire home/apt 250
## 4610 Brooklyn Entire home/apt 115
## 4611 Brooklyn Private room 55
## 4612 Manhattan Entire home/apt 200
## 4613 Manhattan Entire home/apt 149
## 4614 Brooklyn Entire home/apt 55
## 4615 Brooklyn Entire home/apt 400
## 4616 Brooklyn Entire home/apt 200
## 4617 Brooklyn Entire home/apt 111
## 4618 Brooklyn Entire home/apt 175
## 4619 Manhattan Entire home/apt 150
## 4620 Manhattan Private room 52
## 4621 Brooklyn Entire home/apt 88
## 4622 Brooklyn Entire home/apt 425
## 4623 Manhattan Entire home/apt 175
## 4624 Brooklyn Entire home/apt 270
## 4625 Brooklyn Private room 180
## 4626 Brooklyn Private room 55
## 4627 Brooklyn Private room 105
## 4628 Brooklyn Entire home/apt 265
## 4629 Manhattan Private room 60
## 4630 Manhattan Private room 45
## 4631 Manhattan Private room 89
## 4632 Manhattan Entire home/apt 200
## 4633 Brooklyn Entire home/apt 149
## 4634 Manhattan Private room 80
## 4635 Brooklyn Entire home/apt 125
## 4636 Manhattan Entire home/apt 78
## 4637 Brooklyn Private room 65
## 4638 Brooklyn Entire home/apt 350
## 4639 Brooklyn Entire home/apt 115
## 4640 Manhattan Entire home/apt 289
## 4641 Brooklyn Entire home/apt 158
## 4642 Manhattan Private room 50
## 4643 Manhattan Entire home/apt 234
## 4644 Brooklyn Private room 50
## 4645 Manhattan Private room 69
## 4646 Manhattan Entire home/apt 135
## 4647 Brooklyn Private room 89
## 4648 Manhattan Entire home/apt 16
## 4649 Brooklyn Entire home/apt 300
## 4650 Manhattan Entire home/apt 250
## 4651 Brooklyn Entire home/apt 70
## 4652 Manhattan Private room 140
## 4653 Manhattan Entire home/apt 175
## 4654 Brooklyn Entire home/apt 160
## 4655 Manhattan Entire home/apt 200
## 4656 Brooklyn Private room 57
## 4657 Manhattan Private room 90
## 4658 Queens Private room 89
## 4659 Brooklyn Entire home/apt 90
## 4660 Manhattan Entire home/apt 200
## 4661 Brooklyn Entire home/apt 100
## 4662 Brooklyn Entire home/apt 68
## 4663 Manhattan Entire home/apt 170
## 4664 Brooklyn Private room 40
## 4665 Manhattan Entire home/apt 500
## 4666 Brooklyn Entire home/apt 145
## 4667 Brooklyn Entire home/apt 250
## 4668 Manhattan Entire home/apt 288
## 4669 Brooklyn Entire home/apt 245
## 4670 Manhattan Entire home/apt 80
## 4671 Brooklyn Entire home/apt 125
## 4672 Manhattan Entire home/apt 166
## 4673 Manhattan Entire home/apt 330
## 4674 Brooklyn Private room 60
## 4675 Manhattan Private room 130
## 4676 Brooklyn Private room 45
## 4677 Manhattan Entire home/apt 165
## 4678 Manhattan Private room 155
## 4679 Manhattan Entire home/apt 119
## 4680 Brooklyn Entire home/apt 158
## 4681 Brooklyn Entire home/apt 169
## 4682 Brooklyn Entire home/apt 139
## 4683 Manhattan Entire home/apt 125
## 4684 Queens Private room 70
## 4685 Brooklyn Private room 135
## 4686 Manhattan Entire home/apt 99
## 4687 Brooklyn Entire home/apt 175
## 4688 Brooklyn Entire home/apt 150
## 4689 Manhattan Entire home/apt 250
## 4690 Queens Private room 100
## 4691 Brooklyn Private room 100
## 4692 Brooklyn Entire home/apt 128
## 4693 Brooklyn Entire home/apt 121
## 4694 Brooklyn Entire home/apt 160
## 4695 Manhattan Private room 135
## 4696 Manhattan Entire home/apt 275
## 4697 Manhattan Entire home/apt 180
## 4698 Manhattan Entire home/apt 189
## 4699 Queens Entire home/apt 250
## 4700 Brooklyn Entire home/apt 99
## 4701 Brooklyn Entire home/apt 200
## 4702 Manhattan Entire home/apt 145
## 4703 Manhattan Private room 100
## 4704 Manhattan Entire home/apt 240
## 4705 Brooklyn Private room 90
## 4706 Brooklyn Entire home/apt 220
## 4707 Brooklyn Private room 100
## 4708 Queens Private room 59
## 4709 Brooklyn Entire home/apt 78
## 4710 Bronx Entire home/apt 75
## 4711 Brooklyn Private room 78
## 4712 Manhattan Entire home/apt 250
## 4713 Brooklyn Entire home/apt 150
## 4714 Manhattan Private room 44
## 4715 Brooklyn Private room 69
## 4716 Brooklyn Private room 65
## 4717 Brooklyn Entire home/apt 90
## 4718 Brooklyn Entire home/apt 125
## 4719 Brooklyn Entire home/apt 78
## 4720 Manhattan Entire home/apt 785
## 4721 Queens Entire home/apt 99
## 4722 Queens Private room 74
## 4723 Manhattan Entire home/apt 130
## 4724 Queens Entire home/apt 105
## 4725 Manhattan Entire home/apt 145
## 4726 Manhattan Private room 90
## 4727 Brooklyn Entire home/apt 215
## 4728 Manhattan Entire home/apt 100
## 4729 Brooklyn Entire home/apt 92
## 4730 Manhattan Entire home/apt 185
## 4731 Brooklyn Entire home/apt 1000
## 4732 Manhattan Entire home/apt 160
## 4733 Manhattan Entire home/apt 93
## 4734 Manhattan Entire home/apt 300
## 4735 Brooklyn Private room 75
## 4736 Manhattan Entire home/apt 370
## 4737 Manhattan Entire home/apt 425
## 4738 Brooklyn Entire home/apt 200
## 4739 Manhattan Private room 125
## 4740 Manhattan Entire home/apt 179
## 4741 Brooklyn Private room 46
## 4742 Brooklyn Entire home/apt 150
## 4743 Brooklyn Private room 52
## 4744 Manhattan Private room 80
## 4745 Brooklyn Entire home/apt 120
## 4746 Brooklyn Entire home/apt 300
## 4747 Brooklyn Private room 110
## 4748 Brooklyn Entire home/apt 200
## 4749 Brooklyn Entire home/apt 75
## 4750 Manhattan Entire home/apt 200
## 4751 Manhattan Entire home/apt 300
## 4752 Manhattan Private room 22
## 4753 Brooklyn Entire home/apt 129
## 4754 Manhattan Entire home/apt 125
## 4755 Brooklyn Private room 150
## 4756 Manhattan Entire home/apt 185
## 4757 Brooklyn Entire home/apt 158
## 4758 Brooklyn Private room 30
## 4759 Brooklyn Entire home/apt 316
## 4760 Brooklyn Entire home/apt 175
## 4761 Queens Entire home/apt 97
## 4762 Manhattan Entire home/apt 175
## 4763 Brooklyn Shared room 60
## 4764 Brooklyn Private room 72
## 4765 Brooklyn Entire home/apt 175
## 4766 Manhattan Entire home/apt 225
## 4767 Brooklyn Entire home/apt 85
## 4768 Manhattan Entire home/apt 150
## 4769 Brooklyn Entire home/apt 225
## 4770 Manhattan Private room 400
## 4771 Brooklyn Private room 125
## 4772 Brooklyn Entire home/apt 200
## 4773 Manhattan Entire home/apt 88
## 4774 Brooklyn Private room 250
## 4775 Manhattan Entire home/apt 300
## 4776 Queens Entire home/apt 89
## 4777 Manhattan Entire home/apt 165
## 4778 Manhattan Private room 84
## 4779 Brooklyn Entire home/apt 285
## 4780 Brooklyn Entire home/apt 150
## 4781 Brooklyn Private room 70
## 4782 Manhattan Entire home/apt 300
## 4783 Brooklyn Entire home/apt 220
## 4784 Manhattan Entire home/apt 149
## 4785 Manhattan Entire home/apt 249
## 4786 Brooklyn Entire home/apt 90
## 4787 Manhattan Private room 69
## 4788 Brooklyn Entire home/apt 120
## 4789 Manhattan Private room 69
## 4790 Manhattan Private room 54
## 4791 Manhattan Private room 50
## 4792 Manhattan Private room 51
## 4793 Manhattan Private room 99
## 4794 Manhattan Entire home/apt 290
## 4795 Brooklyn Entire home/apt 240
## 4796 Bronx Private room 49
## 4797 Brooklyn Entire home/apt 115
## 4798 Brooklyn Private room 78
## 4799 Brooklyn Entire home/apt 125
## 4800 Manhattan Entire home/apt 135
## 4801 Manhattan Private room 110
## 4802 Manhattan Entire home/apt 205
## 4803 Manhattan Entire home/apt 95
## 4804 Brooklyn Private room 55
## 4805 Brooklyn Private room 47
## 4806 Manhattan Private room 39
## 4807 Manhattan Entire home/apt 349
## 4808 Brooklyn Entire home/apt 250
## 4809 Manhattan Entire home/apt 290
## 4810 Brooklyn Private room 85
## 4811 Brooklyn Entire home/apt 170
## 4812 Manhattan Entire home/apt 146
## 4813 Queens Entire home/apt 99
## 4814 Brooklyn Entire home/apt 150
## 4815 Brooklyn Entire home/apt 240
## 4816 Brooklyn Entire home/apt 500
## 4817 Queens Private room 48
## 4818 Brooklyn Entire home/apt 129
## 4819 Manhattan Entire home/apt 750
## 4820 Manhattan Entire home/apt 180
## 4821 Queens Private room 70
## 4822 Manhattan Entire home/apt 150
## 4823 Brooklyn Entire home/apt 240
## 4824 Brooklyn Entire home/apt 100
## 4825 Manhattan Entire home/apt 122
## 4826 Manhattan Entire home/apt 400
## 4827 Bronx Private room 47
## 4828 Brooklyn Entire home/apt 140
## 4829 Bronx Private room 55
## 4830 Brooklyn Entire home/apt 110
## 4831 Brooklyn Entire home/apt 175
## 4832 Manhattan Entire home/apt 80
## 4833 Manhattan Entire home/apt 150
## 4834 Manhattan Entire home/apt 200
## 4835 Brooklyn Private room 50
## 4836 Manhattan Private room 99
## 4837 Manhattan Private room 60
## 4838 Manhattan Entire home/apt 225
## 4839 Manhattan Entire home/apt 175
## 4840 Brooklyn Private room 60
## 4841 Manhattan Entire home/apt 255
## 4842 Brooklyn Private room 75
## 4843 Brooklyn Entire home/apt 190
## 4844 Brooklyn Entire home/apt 495
## 4845 Brooklyn Entire home/apt 98
## 4846 Brooklyn Private room 150
## 4847 Brooklyn Entire home/apt 250
## 4848 Manhattan Entire home/apt 215
## 4849 Brooklyn Entire home/apt 200
## 4850 Brooklyn Entire home/apt 100
## 4851 Brooklyn Entire home/apt 200
## 4852 Manhattan Entire home/apt 200
## 4853 Manhattan Entire home/apt 110
## 4854 Manhattan Entire home/apt 115
## 4855 Manhattan Private room 75
## 4856 Manhattan Entire home/apt 289
## 4857 Manhattan Private room 95
## 4858 Manhattan Entire home/apt 197
## 4859 Manhattan Entire home/apt 150
## 4860 Queens Entire home/apt 225
## 4861 Brooklyn Entire home/apt 375
## 4862 Staten Island Private room 56
## 4863 Manhattan Entire home/apt 225
## 4864 Manhattan Entire home/apt 70
## 4865 Manhattan Entire home/apt 264
## 4866 Manhattan Entire home/apt 199
## 4867 Brooklyn Entire home/apt 149
## 4868 Brooklyn Entire home/apt 142
## 4869 Manhattan Entire home/apt 299
## 4870 Brooklyn Entire home/apt 50
## 4871 Brooklyn Entire home/apt 160
## 4872 Brooklyn Entire home/apt 127
## 4873 Brooklyn Entire home/apt 110
## 4874 Manhattan Private room 69
## 4875 Brooklyn Entire home/apt 175
## 4876 Manhattan Entire home/apt 179
## 4877 Brooklyn Entire home/apt 144
## 4878 Manhattan Entire home/apt 175
## 4879 Manhattan Entire home/apt 150
## 4880 Brooklyn Entire home/apt 109
## 4881 Manhattan Entire home/apt 350
## 4882 Brooklyn Entire home/apt 75
## 4883 Manhattan Entire home/apt 135
## 4884 Queens Private room 39
## 4885 Queens Private room 38
## 4886 Brooklyn Entire home/apt 195
## 4887 Manhattan Entire home/apt 146
## 4888 Brooklyn Entire home/apt 318
## 4889 Manhattan Entire home/apt 184
## 4890 Brooklyn Entire home/apt 140
## 4891 Manhattan Private room 85
## 4892 Manhattan Entire home/apt 170
## 4893 Queens Private room 100
## 4894 Manhattan Entire home/apt 350
## 4895 Manhattan Entire home/apt 199
## 4896 Brooklyn Private room 77
## 4897 Manhattan Private room 80
## 4898 Bronx Private room 79
## 4899 Brooklyn Private room 550
## 4900 Brooklyn Entire home/apt 155
## 4901 Manhattan Entire home/apt 275
## 4902 Brooklyn Entire home/apt 119
## 4903 Brooklyn Entire home/apt 85
## 4904 Manhattan Private room 84
## 4905 Manhattan Private room 90
## 4906 Brooklyn Entire home/apt 135
## 4907 Brooklyn Private room 90
## 4908 Brooklyn Entire home/apt 150
## 4909 Brooklyn Private room 38
## 4910 Manhattan Entire home/apt 87
## 4911 Brooklyn Entire home/apt 210
## 4912 Manhattan Private room 80
## 4913 Brooklyn Entire home/apt 250
## 4914 Manhattan Entire home/apt 175
## 4915 Brooklyn Private room 65
## 4916 Manhattan Entire home/apt 140
## 4917 Manhattan Entire home/apt 129
## 4918 Manhattan Entire home/apt 159
## 4919 Queens Private room 125
## 4920 Manhattan Entire home/apt 249
## 4921 Brooklyn Entire home/apt 151
## 4922 Brooklyn Private room 79
## 4923 Brooklyn Entire home/apt 125
## 4924 Manhattan Entire home/apt 135
## 4925 Manhattan Entire home/apt 151
## 4926 Manhattan Entire home/apt 600
## 4927 Brooklyn Entire home/apt 59
## 4928 Manhattan Entire home/apt 273
## 4929 Manhattan Private room 70
## 4930 Manhattan Private room 95
## 4931 Brooklyn Entire home/apt 399
## 4932 Brooklyn Private room 96
## 4933 Manhattan Shared room 110
## 4934 Manhattan Private room 110
## 4935 Manhattan Private room 69
## 4936 Brooklyn Private room 85
## 4937 Manhattan Entire home/apt 150
## 4938 Manhattan Entire home/apt 170
## 4939 Manhattan Entire home/apt 125
## 4940 Manhattan Private room 130
## 4941 Manhattan Entire home/apt 145
## 4942 Brooklyn Entire home/apt 500
## 4943 Manhattan Private room 95
## 4944 Brooklyn Entire home/apt 150
## 4945 Queens Entire home/apt 150
## 4946 Brooklyn Private room 56
## 4947 Brooklyn Private room 60
## 4948 Brooklyn Entire home/apt 85
## 4949 Manhattan Private room 80
## 4950 Manhattan Private room 100
## 4951 Brooklyn Private room 54
## 4952 Brooklyn Entire home/apt 113
## 4953 Brooklyn Entire home/apt 200
## 4954 Manhattan Private room 75
## 4955 Manhattan Shared room 200
## 4956 Brooklyn Entire home/apt 110
## 4957 Brooklyn Entire home/apt 500
## 4958 Manhattan Entire home/apt 180
## 4959 Brooklyn Entire home/apt 200
## 4960 Manhattan Private room 69
## 4961 Manhattan Entire home/apt 200
## 4962 Brooklyn Entire home/apt 140
## 4963 Brooklyn Private room 45
## 4964 Brooklyn Private room 35
## 4965 Brooklyn Private room 80
## 4966 Brooklyn Entire home/apt 150
## 4967 Manhattan Entire home/apt 70
## 4968 Manhattan Private room 200
## 4969 Manhattan Entire home/apt 308
## 4970 Manhattan Entire home/apt 270
## 4971 Brooklyn Entire home/apt 150
## 4972 Manhattan Entire home/apt 365
## 4973 Brooklyn Private room 99
## 4974 Manhattan Entire home/apt 175
## 4975 Manhattan Entire home/apt 220
## 4976 Manhattan Private room 80
## 4977 Brooklyn Entire home/apt 230
## 4978 Manhattan Private room 60
## 4979 Manhattan Private room 120
## 4980 Brooklyn Private room 45
## 4981 Manhattan Entire home/apt 100
## 4982 Manhattan Entire home/apt 138
## 4983 Brooklyn Entire home/apt 100
## 4984 Manhattan Entire home/apt 230
## 4985 Manhattan Entire home/apt 225
## 4986 Brooklyn Entire home/apt 120
## 4987 Brooklyn Private room 99
## 4988 Manhattan Entire home/apt 150
## 4989 Brooklyn Entire home/apt 122
## 4990 Brooklyn Entire home/apt 150
## 4991 Manhattan Entire home/apt 140
## 4992 Manhattan Entire home/apt 150
## 4993 Brooklyn Private room 38
## 4994 Manhattan Entire home/apt 200
## 4995 Brooklyn Private room 50
## 4996 Manhattan Private room 45
## 4997 Brooklyn Private room 90
## 4998 Queens Private room 85
## 4999 Manhattan Private room 85
## 5000 Queens Entire home/apt 108
## 5001 Brooklyn Entire home/apt 129
## 5002 Brooklyn Entire home/apt 275
## 5003 Manhattan Entire home/apt 148
## 5004 Manhattan Entire home/apt 250
## 5005 Manhattan Entire home/apt 160
## 5006 Brooklyn Entire home/apt 130
## 5007 Brooklyn Private room 180
## 5008 Manhattan Private room 50
## 5009 Manhattan Private room 145
## 5010 Manhattan Private room 94
## 5011 Manhattan Entire home/apt 180
## 5012 Manhattan Private room 80
## 5013 Brooklyn Entire home/apt 97
## 5014 Brooklyn Entire home/apt 90
## 5015 Brooklyn Entire home/apt 70
## 5016 Queens Entire home/apt 120
## 5017 Manhattan Entire home/apt 120
## 5018 Manhattan Entire home/apt 165
## 5019 Manhattan Private room 59
## 5020 Brooklyn Private room 91
## 5021 Queens Entire home/apt 184
## 5022 Brooklyn Private room 45
## 5023 Manhattan Private room 150
## 5024 Manhattan Entire home/apt 139
## 5025 Manhattan Private room 65
## 5026 Manhattan Private room 65
## 5027 Brooklyn Private room 150
## 5028 Queens Entire home/apt 115
## 5029 Manhattan Entire home/apt 299
## 5030 Brooklyn Entire home/apt 80
## 5031 Brooklyn Private room 80
## 5032 Brooklyn Entire home/apt 100
## 5033 Manhattan Private room 135
## 5034 Brooklyn Private room 80
## 5035 Brooklyn Private room 69
## 5036 Manhattan Private room 75
## 5037 Brooklyn Entire home/apt 94
## 5038 Brooklyn Entire home/apt 192
## 5039 Manhattan Private room 50
## 5040 Manhattan Private room 58
## 5041 Queens Entire home/apt 120
## 5042 Brooklyn Private room 69
## 5043 Queens Private room 50
## 5044 Manhattan Entire home/apt 125
## 5045 Brooklyn Private room 50
## 5046 Brooklyn Private room 85
## 5047 Queens Private room 59
## 5048 Manhattan Entire home/apt 130
## 5049 Manhattan Entire home/apt 104
## 5050 Queens Entire home/apt 95
## 5051 Manhattan Entire home/apt 199
## 5052 Bronx Private room 105
## 5053 Brooklyn Private room 34
## 5054 Brooklyn Entire home/apt 120
## 5055 Bronx Entire home/apt 87
## 5056 Queens Entire home/apt 125
## 5057 Brooklyn Entire home/apt 170
## 5058 Manhattan Entire home/apt 250
## 5059 Manhattan Private room 55
## 5060 Queens Private room 80
## 5061 Queens Entire home/apt 95
## 5062 Manhattan Private room 150
## 5063 Brooklyn Entire home/apt 140
## 5064 Brooklyn Entire home/apt 150
## 5065 Manhattan Entire home/apt 159
## 5066 Manhattan Entire home/apt 95
## 5067 Brooklyn Entire home/apt 159
## 5068 Brooklyn Private room 65
## 5069 Brooklyn Entire home/apt 100
## 5070 Manhattan Private room 85
## 5071 Brooklyn Entire home/apt 175
## 5072 Brooklyn Entire home/apt 175
## 5073 Brooklyn Entire home/apt 260
## 5074 Brooklyn Entire home/apt 80
## 5075 Brooklyn Private room 69
## 5076 Brooklyn Entire home/apt 100
## 5077 Queens Private room 85
## 5078 Brooklyn Entire home/apt 95
## 5079 Manhattan Entire home/apt 160
## 5080 Brooklyn Private room 49
## 5081 Brooklyn Private room 65
## 5082 Manhattan Entire home/apt 150
## 5083 Manhattan Entire home/apt 115
## 5084 Queens Private room 113
## 5085 Manhattan Entire home/apt 110
## 5086 Manhattan Private room 75
## 5087 Manhattan Entire home/apt 250
## 5088 Bronx Private room 50
## 5089 Brooklyn Entire home/apt 81
## 5090 Manhattan Private room 69
## 5091 Brooklyn Private room 125
## 5092 Brooklyn Private room 65
## 5093 Manhattan Entire home/apt 150
## 5094 Manhattan Entire home/apt 175
## 5095 Brooklyn Private room 49
## 5096 Manhattan Entire home/apt 191
## 5097 Manhattan Entire home/apt 200
## 5098 Manhattan Entire home/apt 250
## 5099 Brooklyn Entire home/apt 216
## 5100 Brooklyn Entire home/apt 200
## 5101 Brooklyn Private room 119
## 5102 Manhattan Entire home/apt 118
## 5103 Manhattan Private room 95
## 5104 Brooklyn Entire home/apt 110
## 5105 Brooklyn Entire home/apt 170
## 5106 Manhattan Entire home/apt 99
## 5107 Brooklyn Entire home/apt 172
## 5108 Queens Private room 75
## 5109 Brooklyn Private room 50
## 5110 Brooklyn Private room 77
## 5111 Brooklyn Entire home/apt 125
## 5112 Queens Private room 75
## 5113 Manhattan Entire home/apt 350
## 5114 Brooklyn Private room 55
## 5115 Brooklyn Entire home/apt 99
## 5116 Brooklyn Entire home/apt 545
## 5117 Manhattan Private room 70
## 5118 Brooklyn Private room 250
## 5119 Brooklyn Entire home/apt 150
## 5120 Brooklyn Private room 55
## 5121 Brooklyn Entire home/apt 100
## 5122 Brooklyn Entire home/apt 100
## 5123 Brooklyn Entire home/apt 95
## 5124 Manhattan Entire home/apt 175
## 5125 Manhattan Entire home/apt 200
## 5126 Manhattan Entire home/apt 190
## 5127 Brooklyn Private room 65
## 5128 Brooklyn Entire home/apt 400
## 5129 Brooklyn Entire home/apt 95
## 5130 Manhattan Entire home/apt 197
## 5131 Brooklyn Entire home/apt 395
## 5132 Brooklyn Private room 100
## 5133 Brooklyn Entire home/apt 200
## 5134 Brooklyn Entire home/apt 165
## 5135 Brooklyn Entire home/apt 145
## 5136 Brooklyn Entire home/apt 75
## 5137 Manhattan Entire home/apt 180
## 5138 Manhattan Private room 73
## 5139 Manhattan Private room 87
## 5140 Manhattan Private room 74
## 5141 Brooklyn Private room 65
## 5142 Manhattan Entire home/apt 199
## 5143 Brooklyn Private room 65
## 5144 Manhattan Entire home/apt 160
## 5145 Brooklyn Private room 175
## 5146 Manhattan Entire home/apt 200
## 5147 Manhattan Entire home/apt 195
## 5148 Brooklyn Private room 99
## 5149 Brooklyn Entire home/apt 175
## 5150 Manhattan Entire home/apt 190
## 5151 Brooklyn Entire home/apt 99
## 5152 Manhattan Private room 100
## 5153 Brooklyn Entire home/apt 199
## 5154 Brooklyn Entire home/apt 199
## 5155 Queens Entire home/apt 100
## 5156 Queens Shared room 45
## 5157 Manhattan Private room 72
## 5158 Manhattan Entire home/apt 129
## 5159 Brooklyn Entire home/apt 100
## 5160 Brooklyn Entire home/apt 85
## 5161 Brooklyn Private room 70
## 5162 Brooklyn Entire home/apt 100
## 5163 Brooklyn Entire home/apt 160
## 5164 Manhattan Entire home/apt 185
## 5165 Brooklyn Entire home/apt 162
## 5166 Queens Private room 80
## 5167 Manhattan Private room 200
## 5168 Brooklyn Private room 45
## 5169 Brooklyn Entire home/apt 129
## 5170 Brooklyn Private room 55
## 5171 Brooklyn Private room 68
## 5172 Brooklyn Entire home/apt 120
## 5173 Brooklyn Private room 55
## 5174 Brooklyn Private room 50
## 5175 Brooklyn Private room 50
## 5176 Brooklyn Entire home/apt 150
## 5177 Brooklyn Entire home/apt 140
## 5178 Manhattan Entire home/apt 136
## 5179 Manhattan Private room 92
## 5180 Manhattan Private room 125
## 5181 Brooklyn Private room 48
## 5182 Manhattan Private room 82
## 5183 Manhattan Entire home/apt 150
## 5184 Brooklyn Entire home/apt 90
## 5185 Brooklyn Entire home/apt 117
## 5186 Manhattan Private room 71
## 5187 Manhattan Entire home/apt 390
## 5188 Staten Island Private room 58
## 5189 Queens Private room 50
## 5190 Brooklyn Entire home/apt 150
## 5191 Brooklyn Private room 150
## 5192 Manhattan Private room 80
## 5193 Brooklyn Private room 115
## 5194 Brooklyn Private room 70
## 5195 Manhattan Entire home/apt 95
## 5196 Brooklyn Private room 85
## 5197 Brooklyn Entire home/apt 180
## 5198 Manhattan Entire home/apt 149
## 5199 Manhattan Entire home/apt 200
## 5200 Manhattan Private room 69
## 5201 Manhattan Private room 85
## 5202 Brooklyn Entire home/apt 117
## 5203 Manhattan Entire home/apt 219
## 5204 Queens Entire home/apt 100
## 5205 Brooklyn Entire home/apt 320
## 5206 Manhattan Private room 95
## 5207 Brooklyn Private room 110
## 5208 Manhattan Entire home/apt 105
## 5209 Brooklyn Entire home/apt 134
## 5210 Brooklyn Private room 45
## 5211 Manhattan Entire home/apt 200
## 5212 Manhattan Private room 110
## 5213 Manhattan Entire home/apt 150
## 5214 Brooklyn Entire home/apt 149
## 5215 Manhattan Private room 85
## 5216 Brooklyn Entire home/apt 200
## 5217 Queens Entire home/apt 170
## 5218 Bronx Private room 40
## 5219 Manhattan Private room 70
## 5220 Manhattan Private room 95
## 5221 Manhattan Private room 95
## 5222 Manhattan Private room 350
## 5223 Brooklyn Entire home/apt 165
## 5224 Brooklyn Entire home/apt 120
## 5225 Manhattan Private room 130
## 5226 Brooklyn Private room 40
## 5227 Brooklyn Entire home/apt 130
## 5228 Manhattan Entire home/apt 120
## 5229 Brooklyn Entire home/apt 90
## 5230 Brooklyn Private room 120
## 5231 Manhattan Shared room 115
## 5232 Manhattan Entire home/apt 150
## 5233 Manhattan Private room 170
## 5234 Brooklyn Entire home/apt 124
## 5235 Manhattan Entire home/apt 104
## 5236 Manhattan Entire home/apt 99
## 5237 Manhattan Private room 85
## 5238 Brooklyn Entire home/apt 158
## 5239 Manhattan Entire home/apt 400
## 5240 Manhattan Shared room 100
## 5241 Brooklyn Entire home/apt 115
## 5242 Bronx Private room 55
## 5243 Manhattan Private room 72
## 5244 Manhattan Entire home/apt 170
## 5245 Brooklyn Entire home/apt 150
## 5246 Manhattan Private room 39
## 5247 Queens Private room 49
## 5248 Queens Private room 39
## 5249 Manhattan Entire home/apt 200
## 5250 Brooklyn Entire home/apt 185
## 5251 Manhattan Entire home/apt 200
## 5252 Brooklyn Private room 110
## 5253 Brooklyn Entire home/apt 275
## 5254 Brooklyn Private room 105
## 5255 Manhattan Entire home/apt 260
## 5256 Brooklyn Entire home/apt 175
## 5257 Brooklyn Entire home/apt 90
## 5258 Brooklyn Entire home/apt 125
## 5259 Queens Entire home/apt 239
## 5260 Manhattan Entire home/apt 195
## 5261 Bronx Private room 53
## 5262 Manhattan Private room 99
## 5263 Manhattan Private room 52
## 5264 Manhattan Entire home/apt 130
## 5265 Manhattan Entire home/apt 325
## 5266 Brooklyn Entire home/apt 135
## 5267 Brooklyn Private room 85
## 5268 Manhattan Private room 68
## 5269 Queens Private room 45
## 5270 Manhattan Entire home/apt 87
## 5271 Brooklyn Private room 89
## 5272 Brooklyn Entire home/apt 150
## 5273 Manhattan Entire home/apt 124
## 5274 Manhattan Entire home/apt 169
## 5275 Queens Private room 125
## 5276 Queens Private room 145
## 5277 Brooklyn Private room 75
## 5278 Brooklyn Private room 75
## 5279 Manhattan Entire home/apt 87
## 5280 Queens Private room 50
## 5281 Manhattan Entire home/apt 150
## 5282 Manhattan Private room 95
## 5283 Manhattan Entire home/apt 200
## 5284 Manhattan Entire home/apt 120
## 5285 Manhattan Entire home/apt 325
## 5286 Manhattan Entire home/apt 165
## 5287 Manhattan Entire home/apt 140
## 5288 Brooklyn Private room 33
## 5289 Manhattan Entire home/apt 169
## 5290 Brooklyn Entire home/apt 75
## 5291 Manhattan Entire home/apt 190
## 5292 Queens Private room 39
## 5293 Brooklyn Entire home/apt 165
## 5294 Queens Private room 79
## 5295 Manhattan Entire home/apt 125
## 5296 Manhattan Entire home/apt 349
## 5297 Brooklyn Private room 130
## 5298 Brooklyn Private room 40
## 5299 Brooklyn Entire home/apt 76
## 5300 Brooklyn Entire home/apt 50
## 5301 Brooklyn Private room 45
## 5302 Brooklyn Entire home/apt 80
## 5303 Manhattan Entire home/apt 265
## 5304 Brooklyn Shared room 65
## 5305 Brooklyn Entire home/apt 90
## 5306 Manhattan Private room 115
## 5307 Manhattan Entire home/apt 145
## 5308 Brooklyn Private room 45
## 5309 Queens Private room 50
## 5310 Brooklyn Private room 72
## 5311 Queens Private room 50
## 5312 Brooklyn Private room 57
## 5313 Manhattan Entire home/apt 225
## 5314 Brooklyn Private room 80
## 5315 Queens Entire home/apt 120
## 5316 Brooklyn Entire home/apt 450
## 5317 Manhattan Entire home/apt 249
## 5318 Manhattan Entire home/apt 100
## 5319 Brooklyn Entire home/apt 225
## 5320 Bronx Entire home/apt 95
## 5321 Brooklyn Entire home/apt 90
## 5322 Brooklyn Entire home/apt 101
## 5323 Brooklyn Entire home/apt 246
## 5324 Brooklyn Entire home/apt 120
## 5325 Brooklyn Entire home/apt 150
## 5326 Brooklyn Entire home/apt 119
## 5327 Manhattan Entire home/apt 150
## 5328 Manhattan Private room 80
## 5329 Brooklyn Entire home/apt 189
## 5330 Brooklyn Private room 90
## 5331 Manhattan Entire home/apt 200
## 5332 Manhattan Entire home/apt 120
## 5333 Manhattan Private room 149
## 5334 Manhattan Entire home/apt 130
## 5335 Brooklyn Private room 35
## 5336 Brooklyn Entire home/apt 139
## 5337 Brooklyn Entire home/apt 100
## 5338 Manhattan Private room 65
## 5339 Manhattan Entire home/apt 200
## 5340 Manhattan Entire home/apt 99
## 5341 Brooklyn Entire home/apt 115
## 5342 Queens Private room 149
## 5343 Brooklyn Entire home/apt 135
## 5344 Brooklyn Private room 150
## 5345 Manhattan Private room 105
## 5346 Brooklyn Entire home/apt 75
## 5347 Manhattan Entire home/apt 175
## 5348 Brooklyn Entire home/apt 135
## 5349 Brooklyn Private room 72
## 5350 Brooklyn Private room 60
## 5351 Brooklyn Private room 97
## 5352 Manhattan Entire home/apt 860
## 5353 Manhattan Private room 200
## 5354 Manhattan Entire home/apt 98
## 5355 Manhattan Entire home/apt 87
## 5356 Manhattan Entire home/apt 150
## 5357 Brooklyn Private room 50
## 5358 Manhattan Entire home/apt 185
## 5359 Manhattan Entire home/apt 225
## 5360 Brooklyn Entire home/apt 151
## 5361 Brooklyn Entire home/apt 75
## 5362 Manhattan Entire home/apt 110
## 5363 Brooklyn Entire home/apt 150
## 5364 Manhattan Entire home/apt 145
## 5365 Manhattan Entire home/apt 250
## 5366 Queens Private room 170
## 5367 Brooklyn Entire home/apt 145
## 5368 Manhattan Entire home/apt 200
## 5369 Brooklyn Private room 50
## 5370 Manhattan Private room 250
## 5371 Manhattan Entire home/apt 229
## 5372 Manhattan Entire home/apt 129
## 5373 Manhattan Entire home/apt 250
## 5374 Manhattan Entire home/apt 168
## 5375 Manhattan Private room 80
## 5376 Brooklyn Entire home/apt 104
## 5377 Brooklyn Entire home/apt 100
## 5378 Manhattan Private room 95
## 5379 Queens Private room 95
## 5380 Brooklyn Entire home/apt 200
## 5381 Manhattan Entire home/apt 180
## 5382 Bronx Private room 100
## 5383 Manhattan Entire home/apt 195
## 5384 Manhattan Entire home/apt 299
## 5385 Brooklyn Private room 45
## 5386 Manhattan Private room 139
## 5387 Manhattan Entire home/apt 200
## 5388 Staten Island Entire home/apt 70
## 5389 Brooklyn Private room 50
## 5390 Brooklyn Private room 42
## 5391 Brooklyn Entire home/apt 116
## 5392 Manhattan Entire home/apt 200
## 5393 Manhattan Private room 129
## 5394 Brooklyn Private room 125
## 5395 Brooklyn Private room 55
## 5396 Manhattan Entire home/apt 200
## 5397 Brooklyn Entire home/apt 165
## 5398 Manhattan Entire home/apt 199
## 5399 Manhattan Entire home/apt 150
## 5400 Brooklyn Private room 95
## 5401 Brooklyn Private room 90
## 5402 Manhattan Entire home/apt 120
## 5403 Brooklyn Private room 40
## 5404 Brooklyn Private room 75
## 5405 Brooklyn Private room 68
## 5406 Brooklyn Private room 75
## 5407 Manhattan Entire home/apt 45
## 5408 Manhattan Shared room 45
## 5409 Brooklyn Private room 65
## 5410 Brooklyn Private room 75
## 5411 Manhattan Private room 84
## 5412 Manhattan Entire home/apt 130
## 5413 Brooklyn Private room 50
## 5414 Manhattan Private room 150
## 5415 Brooklyn Private room 95
## 5416 Manhattan Entire home/apt 300
## 5417 Manhattan Entire home/apt 113
## 5418 Manhattan Entire home/apt 145
## 5419 Brooklyn Entire home/apt 150
## 5420 Manhattan Private room 90
## 5421 Manhattan Entire home/apt 95
## 5422 Manhattan Entire home/apt 118
## 5423 Brooklyn Entire home/apt 75
## 5424 Manhattan Entire home/apt 225
## 5425 Brooklyn Private room 81
## 5426 Brooklyn Entire home/apt 190
## 5427 Brooklyn Private room 75
## 5428 Brooklyn Private room 59
## 5429 Manhattan Private room 99
## 5430 Brooklyn Entire home/apt 270
## 5431 Manhattan Entire home/apt 140
## 5432 Manhattan Entire home/apt 275
## 5433 Brooklyn Entire home/apt 1000
## 5434 Brooklyn Entire home/apt 120
## 5435 Brooklyn Entire home/apt 125
## 5436 Brooklyn Private room 75
## 5437 Manhattan Entire home/apt 117
## 5438 Manhattan Entire home/apt 80
## 5439 Queens Private room 60
## 5440 Brooklyn Private room 103
## 5441 Queens Entire home/apt 65
## 5442 Bronx Private room 45
## 5443 Queens Private room 70
## 5444 Manhattan Entire home/apt 90
## 5445 Manhattan Entire home/apt 225
## 5446 Manhattan Entire home/apt 125
## 5447 Brooklyn Entire home/apt 175
## 5448 Manhattan Entire home/apt 195
## 5449 Manhattan Private room 130
## 5450 Brooklyn Private room 96
## 5451 Brooklyn Private room 129
## 5452 Manhattan Entire home/apt 200
## 5453 Manhattan Private room 95
## 5454 Manhattan Entire home/apt 189
## 5455 Manhattan Entire home/apt 450
## 5456 Manhattan Entire home/apt 264
## 5457 Queens Private room 45
## 5458 Brooklyn Entire home/apt 150
## 5459 Manhattan Entire home/apt 540
## 5460 Brooklyn Private room 95
## 5461 Manhattan Entire home/apt 230
## 5462 Queens Private room 65
## 5463 Brooklyn Private room 70
## 5464 Manhattan Entire home/apt 160
## 5465 Brooklyn Entire home/apt 200
## 5466 Brooklyn Entire home/apt 138
## 5467 Bronx Entire home/apt 155
## 5468 Bronx Private room 75
## 5469 Manhattan Private room 39
## 5470 Brooklyn Entire home/apt 115
## 5471 Manhattan Entire home/apt 110
## 5472 Manhattan Private room 100
## 5473 Manhattan Entire home/apt 225
## 5474 Brooklyn Entire home/apt 125
## 5475 Manhattan Private room 150
## 5476 Brooklyn Entire home/apt 199
## 5477 Manhattan Entire home/apt 250
## 5478 Brooklyn Entire home/apt 210
## 5479 Staten Island Entire home/apt 180
## 5480 Manhattan Entire home/apt 129
## 5481 Manhattan Private room 90
## 5482 Manhattan Private room 50
## 5483 Manhattan Entire home/apt 140
## 5484 Brooklyn Entire home/apt 150
## 5485 Manhattan Entire home/apt 233
## 5486 Manhattan Entire home/apt 170
## 5487 Brooklyn Private room 60
## 5488 Brooklyn Entire home/apt 200
## 5489 Brooklyn Entire home/apt 160
## 5490 Manhattan Entire home/apt 150
## 5491 Brooklyn Entire home/apt 140
## 5492 Brooklyn Private room 65
## 5493 Brooklyn Private room 60
## 5494 Brooklyn Entire home/apt 130
## 5495 Brooklyn Entire home/apt 103
## 5496 Brooklyn Private room 89
## 5497 Manhattan Private room 50
## 5498 Queens Entire home/apt 150
## 5499 Manhattan Entire home/apt 240
## 5500 Manhattan Entire home/apt 1400
## 5501 Queens Entire home/apt 200
## 5502 Manhattan Private room 88
## 5503 Manhattan Shared room 75
## 5504 Manhattan Entire home/apt 500
## 5505 Manhattan Entire home/apt 125
## 5506 Manhattan Private room 75
## 5507 Manhattan Entire home/apt 130
## 5508 Manhattan Entire home/apt 170
## 5509 Manhattan Entire home/apt 300
## 5510 Brooklyn Entire home/apt 115
## 5511 Brooklyn Entire home/apt 93
## 5512 Brooklyn Entire home/apt 119
## 5513 Manhattan Entire home/apt 180
## 5514 Manhattan Entire home/apt 226
## 5515 Brooklyn Entire home/apt 155
## 5516 Manhattan Entire home/apt 115
## 5517 Brooklyn Private room 50
## 5518 Manhattan Entire home/apt 600
## 5519 Manhattan Private room 200
## 5520 Brooklyn Entire home/apt 157
## 5521 Brooklyn Entire home/apt 145
## 5522 Queens Private room 95
## 5523 Manhattan Entire home/apt 115
## 5524 Queens Private room 65
## 5525 Manhattan Entire home/apt 275
## 5526 Queens Private room 250
## 5527 Manhattan Private room 95
## 5528 Brooklyn Entire home/apt 185
## 5529 Manhattan Private room 55
## 5530 Manhattan Entire home/apt 350
## 5531 Manhattan Private room 170
## 5532 Brooklyn Entire home/apt 100
## 5533 Manhattan Private room 36
## 5534 Brooklyn Private room 60
## 5535 Brooklyn Private room 125
## 5536 Brooklyn Entire home/apt 120
## 5537 Manhattan Shared room 90
## 5538 Manhattan Entire home/apt 129
## 5539 Queens Entire home/apt 78
## 5540 Manhattan Entire home/apt 120
## 5541 Manhattan Private room 99
## 5542 Bronx Private room 50
## 5543 Manhattan Private room 16
## 5544 Bronx Private room 47
## 5545 Brooklyn Entire home/apt 150
## 5546 Staten Island Entire home/apt 200
## 5547 Brooklyn Entire home/apt 125
## 5548 Brooklyn Entire home/apt 60
## 5549 Queens Private room 200
## 5550 Brooklyn Entire home/apt 100
## 5551 Queens Private room 99
## 5552 Manhattan Private room 75
## 5553 Brooklyn Private room 140
## 5554 Bronx Entire home/apt 90
## 5555 Manhattan Shared room 59
## 5556 Manhattan Entire home/apt 111
## 5557 Manhattan Entire home/apt 80
## 5558 Brooklyn Private room 80
## 5559 Manhattan Private room 50
## 5560 Manhattan Entire home/apt 300
## 5561 Brooklyn Entire home/apt 90
## 5562 Manhattan Private room 119
## 5563 Queens Private room 69
## 5564 Manhattan Entire home/apt 260
## 5565 Brooklyn Entire home/apt 185
## 5566 Queens Entire home/apt 100
## 5567 Manhattan Shared room 85
## 5568 Manhattan Private room 135
## 5569 Brooklyn Private room 169
## 5570 Brooklyn Private room 38
## 5571 Brooklyn Private room 90
## 5572 Manhattan Private room 45
## 5573 Brooklyn Entire home/apt 149
## 5574 Brooklyn Entire home/apt 200
## 5575 Manhattan Entire home/apt 125
## 5576 Brooklyn Private room 65
## 5577 Brooklyn Entire home/apt 174
## 5578 Brooklyn Private room 89
## 5579 Brooklyn Entire home/apt 150
## 5580 Brooklyn Private room 75
## 5581 Queens Private room 58
## 5582 Brooklyn Private room 103
## 5583 Manhattan Entire home/apt 383
## 5584 Brooklyn Private room 40
## 5585 Queens Private room 76
## 5586 Manhattan Private room 170
## 5587 Manhattan Private room 45
## 5588 Brooklyn Private room 100
## 5589 Manhattan Entire home/apt 199
## 5590 Manhattan Entire home/apt 99
## 5591 Brooklyn Private room 39
## 5592 Queens Entire home/apt 60
## 5593 Brooklyn Entire home/apt 130
## 5594 Brooklyn Entire home/apt 200
## 5595 Brooklyn Private room 65
## 5596 Manhattan Private room 105
## 5597 Brooklyn Entire home/apt 115
## 5598 Manhattan Entire home/apt 145
## 5599 Brooklyn Entire home/apt 75
## 5600 Brooklyn Entire home/apt 250
## 5601 Manhattan Private room 80
## 5602 Manhattan Private room 120
## 5603 Brooklyn Private room 100
## 5604 Manhattan Private room 125
## 5605 Brooklyn Entire home/apt 132
## 5606 Brooklyn Entire home/apt 225
## 5607 Brooklyn Entire home/apt 175
## 5608 Manhattan Entire home/apt 225
## 5609 Brooklyn Entire home/apt 215
## 5610 Brooklyn Entire home/apt 300
## 5611 Manhattan Entire home/apt 130
## 5612 Queens Entire home/apt 110
## 5613 Bronx Private room 75
## 5614 Brooklyn Private room 36
## 5615 Brooklyn Entire home/apt 299
## 5616 Manhattan Entire home/apt 200
## 5617 Brooklyn Entire home/apt 110
## 5618 Brooklyn Entire home/apt 160
## 5619 Brooklyn Entire home/apt 152
## 5620 Brooklyn Entire home/apt 145
## 5621 Brooklyn Private room 120
## 5622 Brooklyn Entire home/apt 84
## 5623 Manhattan Entire home/apt 160
## 5624 Brooklyn Entire home/apt 150
## 5625 Queens Entire home/apt 180
## 5626 Bronx Private room 68
## 5627 Manhattan Entire home/apt 125
## 5628 Brooklyn Private room 25
## 5629 Brooklyn Entire home/apt 155
## 5630 Manhattan Private room 105
## 5631 Brooklyn Entire home/apt 75
## 5632 Manhattan Private room 80
## 5633 Manhattan Private room 72
## 5634 Brooklyn Private room 52
## 5635 Brooklyn Entire home/apt 125
## 5636 Manhattan Private room 85
## 5637 Brooklyn Private room 58
## 5638 Brooklyn Private room 100
## 5639 Manhattan Private room 65
## 5640 Brooklyn Entire home/apt 300
## 5641 Brooklyn Private room 40
## 5642 Queens Entire home/apt 110
## 5643 Brooklyn Private room 85
## 5644 Brooklyn Entire home/apt 158
## 5645 Brooklyn Private room 65
## 5646 Manhattan Private room 100
## 5647 Brooklyn Private room 64
## 5648 Brooklyn Entire home/apt 395
## 5649 Queens Entire home/apt 120
## 5650 Bronx Private room 51
## 5651 Manhattan Entire home/apt 149
## 5652 Brooklyn Private room 65
## 5653 Queens Private room 70
## 5654 Manhattan Entire home/apt 170
## 5655 Manhattan Entire home/apt 150
## 5656 Manhattan Entire home/apt 75
## 5657 Manhattan Private room 100
## 5658 Brooklyn Private room 38
## 5659 Manhattan Entire home/apt 200
## 5660 Manhattan Entire home/apt 145
## 5661 Brooklyn Entire home/apt 150
## 5662 Queens Entire home/apt 200
## 5663 Brooklyn Entire home/apt 125
## 5664 Manhattan Private room 175
## 5665 Brooklyn Entire home/apt 180
## 5666 Manhattan Entire home/apt 175
## 5667 Manhattan Entire home/apt 175
## 5668 Brooklyn Private room 50
## 5669 Brooklyn Entire home/apt 109
## 5670 Brooklyn Private room 67
## 5671 Brooklyn Private room 57
## 5672 Brooklyn Private room 77
## 5673 Brooklyn Private room 80
## 5674 Brooklyn Entire home/apt 85
## 5675 Brooklyn Private room 86
## 5676 Brooklyn Private room 120
## 5677 Brooklyn Entire home/apt 140
## 5678 Brooklyn Entire home/apt 300
## 5679 Manhattan Private room 90
## 5680 Manhattan Private room 70
## 5681 Manhattan Private room 90
## 5682 Manhattan Entire home/apt 200
## 5683 Manhattan Entire home/apt 135
## 5684 Brooklyn Private room 37
## 5685 Brooklyn Private room 60
## 5686 Manhattan Entire home/apt 419
## 5687 Queens Entire home/apt 130
## 5688 Brooklyn Entire home/apt 180
## 5689 Manhattan Entire home/apt 160
## 5690 Brooklyn Entire home/apt 125
## 5691 Brooklyn Entire home/apt 100
## 5692 Queens Private room 65
## 5693 Brooklyn Entire home/apt 140
## 5694 Queens Private room 79
## 5695 Brooklyn Private room 125
## 5696 Manhattan Entire home/apt 115
## 5697 Manhattan Private room 100
## 5698 Brooklyn Private room 90
## 5699 Manhattan Entire home/apt 135
## 5700 Brooklyn Private room 50
## 5701 Brooklyn Private room 71
## 5702 Queens Entire home/apt 80
## 5703 Manhattan Private room 103
## 5704 Manhattan Entire home/apt 250
## 5705 Manhattan Entire home/apt 219
## 5706 Brooklyn Entire home/apt 225
## 5707 Manhattan Entire home/apt 99
## 5708 Brooklyn Private room 35
## 5709 Manhattan Private room 90
## 5710 Queens Private room 47
## 5711 Brooklyn Private room 75
## 5712 Brooklyn Entire home/apt 170
## 5713 Brooklyn Entire home/apt 150
## 5714 Brooklyn Shared room 30
## 5715 Manhattan Private room 119
## 5716 Brooklyn Private room 40
## 5717 Brooklyn Entire home/apt 85
## 5718 Brooklyn Private room 99
## 5719 Manhattan Entire home/apt 250
## 5720 Manhattan Private room 79
## 5721 Brooklyn Private room 60
## 5722 Brooklyn Entire home/apt 115
## 5723 Queens Private room 90
## 5724 Brooklyn Private room 65
## 5725 Brooklyn Private room 65
## 5726 Manhattan Entire home/apt 131
## 5727 Brooklyn Entire home/apt 150
## 5728 Brooklyn Private room 55
## 5729 Brooklyn Private room 70
## 5730 Queens Entire home/apt 160
## 5731 Brooklyn Entire home/apt 95
## 5732 Manhattan Entire home/apt 99
## 5733 Manhattan Entire home/apt 500
## 5734 Brooklyn Private room 35
## 5735 Queens Private room 50
## 5736 Brooklyn Private room 77
## 5737 Brooklyn Entire home/apt 380
## 5738 Brooklyn Private room 65
## 5739 Manhattan Entire home/apt 150
## 5740 Manhattan Entire home/apt 125
## 5741 Brooklyn Entire home/apt 199
## 5742 Brooklyn Private room 150
## 5743 Manhattan Entire home/apt 145
## 5744 Brooklyn Private room 70
## 5745 Brooklyn Entire home/apt 120
## 5746 Manhattan Private room 86
## 5747 Manhattan Entire home/apt 139
## 5748 Brooklyn Private room 85
## 5749 Manhattan Entire home/apt 94
## 5750 Brooklyn Entire home/apt 116
## 5751 Brooklyn Private room 72
## 5752 Brooklyn Entire home/apt 95
## 5753 Brooklyn Private room 100
## 5754 Manhattan Entire home/apt 200
## 5755 Brooklyn Private room 72
## 5756 Manhattan Entire home/apt 100
## 5757 Manhattan Entire home/apt 900
## 5758 Queens Private room 80
## 5759 Brooklyn Entire home/apt 75
## 5760 Manhattan Entire home/apt 92
## 5761 Manhattan Entire home/apt 160
## 5762 Brooklyn Private room 50
## 5763 Manhattan Entire home/apt 350
## 5764 Brooklyn Entire home/apt 135
## 5765 Manhattan Entire home/apt 160
## 5766 Manhattan Entire home/apt 270
## 5767 Brooklyn Entire home/apt 129
## 5768 Manhattan Entire home/apt 180
## 5769 Manhattan Entire home/apt 350
## 5770 Brooklyn Private room 75
## 5771 Brooklyn Entire home/apt 119
## 5772 Staten Island Entire home/apt 99
## 5773 Brooklyn Entire home/apt 120
## 5774 Brooklyn Private room 73
## 5775 Brooklyn Entire home/apt 500
## 5776 Manhattan Entire home/apt 225
## 5777 Brooklyn Entire home/apt 275
## 5778 Queens Private room 50
## 5779 Manhattan Shared room 40
## 5780 Brooklyn Entire home/apt 115
## 5781 Bronx Entire home/apt 110
## 5782 Brooklyn Private room 100
## 5783 Brooklyn Entire home/apt 150
## 5784 Brooklyn Entire home/apt 200
## 5785 Manhattan Entire home/apt 75
## 5786 Queens Entire home/apt 98
## 5787 Brooklyn Entire home/apt 199
## 5788 Manhattan Entire home/apt 109
## 5789 Manhattan Entire home/apt 110
## 5790 Brooklyn Private room 59
## 5791 Brooklyn Entire home/apt 95
## 5792 Manhattan Entire home/apt 159
## 5793 Manhattan Entire home/apt 225
## 5794 Brooklyn Entire home/apt 195
## 5795 Queens Entire home/apt 96
## 5796 Brooklyn Entire home/apt 73
## 5797 Manhattan Private room 88
## 5798 Brooklyn Entire home/apt 90
## 5799 Brooklyn Entire home/apt 99
## 5800 Brooklyn Shared room 150
## 5801 Brooklyn Private room 35
## 5802 Brooklyn Entire home/apt 1050
## 5803 Brooklyn Entire home/apt 175
## 5804 Manhattan Entire home/apt 395
## 5805 Queens Entire home/apt 195
## 5806 Brooklyn Private room 49
## 5807 Manhattan Entire home/apt 150
## 5808 Manhattan Entire home/apt 250
## 5809 Brooklyn Entire home/apt 150
## 5810 Manhattan Entire home/apt 260
## 5811 Queens Entire home/apt 100
## 5812 Manhattan Private room 55
## 5813 Manhattan Entire home/apt 275
## 5814 Manhattan Private room 110
## 5815 Brooklyn Entire home/apt 150
## 5816 Brooklyn Private room 80
## 5817 Queens Entire home/apt 89
## 5818 Manhattan Entire home/apt 280
## 5819 Queens Private room 100
## 5820 Brooklyn Private room 80
## 5821 Brooklyn Private room 70
## 5822 Brooklyn Private room 75
## 5823 Brooklyn Private room 80
## 5824 Manhattan Shared room 41
## 5825 Manhattan Entire home/apt 195
## 5826 Manhattan Entire home/apt 250
## 5827 Manhattan Entire home/apt 96
## 5828 Manhattan Private room 98
## 5829 Brooklyn Entire home/apt 140
## 5830 Brooklyn Private room 99
## 5831 Manhattan Entire home/apt 175
## 5832 Manhattan Entire home/apt 120
## 5833 Manhattan Private room 89
## 5834 Brooklyn Private room 90
## 5835 Brooklyn Entire home/apt 178
## 5836 Brooklyn Entire home/apt 210
## 5837 Manhattan Entire home/apt 150
## 5838 Manhattan Entire home/apt 149
## 5839 Manhattan Entire home/apt 225
## 5840 Manhattan Entire home/apt 2695
## 5841 Queens Entire home/apt 63
## 5842 Manhattan Entire home/apt 150
## 5843 Brooklyn Entire home/apt 106
## 5844 Brooklyn Entire home/apt 165
## 5845 Brooklyn Private room 75
## 5846 Queens Private room 39
## 5847 Queens Private room 39
## 5848 Brooklyn Shared room 30
## 5849 Manhattan Private room 70
## 5850 Manhattan Private room 100
## 5851 Queens Entire home/apt 125
## 5852 Queens Entire home/apt 110
## 5853 Brooklyn Entire home/apt 145
## 5854 Manhattan Private room 112
## 5855 Brooklyn Private room 69
## 5856 Manhattan Entire home/apt 300
## 5857 Manhattan Private room 260
## 5858 Queens Private room 49
## 5859 Manhattan Entire home/apt 215
## 5860 Manhattan Entire home/apt 200
## 5861 Brooklyn Entire home/apt 100
## 5862 Manhattan Entire home/apt 1000
## 5863 Manhattan Entire home/apt 120
## 5864 Manhattan Entire home/apt 310
## 5865 Brooklyn Private room 70
## 5866 Brooklyn Entire home/apt 195
## 5867 Brooklyn Entire home/apt 110
## 5868 Manhattan Entire home/apt 75
## 5869 Bronx Shared room 45
## 5870 Manhattan Entire home/apt 165
## 5871 Queens Entire home/apt 150
## 5872 Brooklyn Private room 80
## 5873 Manhattan Entire home/apt 180
## 5874 Brooklyn Private room 80
## 5875 Brooklyn Private room 60
## 5876 Manhattan Entire home/apt 149
## 5877 Brooklyn Private room 53
## 5878 Manhattan Entire home/apt 200
## 5879 Manhattan Entire home/apt 160
## 5880 Manhattan Private room 199
## 5881 Manhattan Entire home/apt 140
## 5882 Manhattan Entire home/apt 199
## 5883 Manhattan Entire home/apt 190
## 5884 Brooklyn Entire home/apt 125
## 5885 Manhattan Entire home/apt 145
## 5886 Manhattan Entire home/apt 150
## 5887 Queens Private room 95
## 5888 Brooklyn Private room 100
## 5889 Brooklyn Private room 99
## 5890 Brooklyn Entire home/apt 130
## 5891 Brooklyn Private room 56
## 5892 Manhattan Entire home/apt 450
## 5893 Manhattan Private room 75
## 5894 Brooklyn Private room 240
## 5895 Brooklyn Entire home/apt 129
## 5896 Brooklyn Private room 45
## 5897 Manhattan Entire home/apt 259
## 5898 Manhattan Entire home/apt 75
## 5899 Bronx Private room 37
## 5900 Brooklyn Entire home/apt 210
## 5901 Manhattan Entire home/apt 199
## 5902 Brooklyn Entire home/apt 189
## 5903 Queens Private room 58
## 5904 Brooklyn Private room 60
## 5905 Queens Entire home/apt 190
## 5906 Brooklyn Entire home/apt 139
## 5907 Manhattan Entire home/apt 125
## 5908 Brooklyn Private room 94
## 5909 Manhattan Entire home/apt 100
## 5910 Manhattan Private room 149
## 5911 Manhattan Private room 128
## 5912 Brooklyn Entire home/apt 160
## 5913 Brooklyn Entire home/apt 160
## 5914 Manhattan Private room 110
## 5915 Brooklyn Entire home/apt 285
## 5916 Brooklyn Entire home/apt 75
## 5917 Manhattan Entire home/apt 650
## 5918 Manhattan Entire home/apt 133
## 5919 Manhattan Entire home/apt 149
## 5920 Manhattan Entire home/apt 210
## 5921 Manhattan Entire home/apt 200
## 5922 Manhattan Private room 110
## 5923 Manhattan Entire home/apt 375
## 5924 Manhattan Entire home/apt 95
## 5925 Manhattan Entire home/apt 94
## 5926 Brooklyn Entire home/apt 120
## 5927 Brooklyn Entire home/apt 150
## 5928 Manhattan Entire home/apt 160
## 5929 Manhattan Entire home/apt 132
## 5930 Brooklyn Entire home/apt 102
## 5931 Brooklyn Entire home/apt 85
## 5932 Brooklyn Entire home/apt 142
## 5933 Queens Private room 70
## 5934 Brooklyn Entire home/apt 200
## 5935 Brooklyn Entire home/apt 199
## 5936 Brooklyn Entire home/apt 100
## 5937 Brooklyn Entire home/apt 123
## 5938 Brooklyn Entire home/apt 175
## 5939 Manhattan Private room 100
## 5940 Manhattan Private room 57
## 5941 Brooklyn Private room 39
## 5942 Manhattan Private room 107
## 5943 Manhattan Entire home/apt 2000
## 5944 Brooklyn Private room 69
## 5945 Brooklyn Entire home/apt 137
## 5946 Manhattan Entire home/apt 150
## 5947 Manhattan Private room 65
## 5948 Manhattan Private room 66
## 5949 Brooklyn Private room 77
## 5950 Brooklyn Entire home/apt 110
## 5951 Manhattan Private room 64
## 5952 Brooklyn Entire home/apt 90
## 5953 Brooklyn Private room 50
## 5954 Manhattan Entire home/apt 146
## 5955 Queens Entire home/apt 200
## 5956 Queens Entire home/apt 189
## 5957 Brooklyn Entire home/apt 985
## 5958 Brooklyn Entire home/apt 285
## 5959 Brooklyn Entire home/apt 140
## 5960 Queens Private room 97
## 5961 Queens Entire home/apt 180
## 5962 Manhattan Entire home/apt 199
## 5963 Brooklyn Entire home/apt 220
## 5964 Manhattan Entire home/apt 180
## 5965 Brooklyn Entire home/apt 88
## 5966 Manhattan Entire home/apt 350
## 5967 Brooklyn Entire home/apt 170
## 5968 Manhattan Private room 120
## 5969 Manhattan Private room 105
## 5970 Brooklyn Entire home/apt 110
## 5971 Brooklyn Private room 55
## 5972 Brooklyn Entire home/apt 150
## 5973 Brooklyn Entire home/apt 180
## 5974 Brooklyn Entire home/apt 110
## 5975 Manhattan Entire home/apt 160
## 5976 Manhattan Entire home/apt 215
## 5977 Queens Private room 75
## 5978 Manhattan Entire home/apt 200
## 5979 Manhattan Entire home/apt 120
## 5980 Manhattan Entire home/apt 198
## 5981 Brooklyn Private room 60
## 5982 Brooklyn Entire home/apt 170
## 5983 Manhattan Entire home/apt 248
## 5984 Brooklyn Private room 100
## 5985 Manhattan Entire home/apt 180
## 5986 Brooklyn Private room 60
## 5987 Brooklyn Entire home/apt 83
## 5988 Brooklyn Private room 45
## 5989 Brooklyn Private room 135
## 5990 Manhattan Entire home/apt 275
## 5991 Manhattan Entire home/apt 230
## 5992 Manhattan Entire home/apt 180
## 5993 Manhattan Entire home/apt 175
## 5994 Queens Private room 110
## 5995 Brooklyn Entire home/apt 160
## 5996 Brooklyn Entire home/apt 115
## 5997 Manhattan Shared room 169
## 5998 Brooklyn Private room 100
## 5999 Manhattan Entire home/apt 87
## 6000 Queens Private room 75
## 6001 Manhattan Entire home/apt 130
## 6002 Manhattan Entire home/apt 115
## 6003 Queens Private room 50
## 6004 Manhattan Entire home/apt 200
## 6005 Queens Private room 55
## 6006 Manhattan Entire home/apt 125
## 6007 Queens Entire home/apt 160
## 6008 Brooklyn Private room 39
## 6009 Manhattan Private room 89
## 6010 Brooklyn Entire home/apt 85
## 6011 Brooklyn Private room 50
## 6012 Brooklyn Entire home/apt 229
## 6013 Manhattan Entire home/apt 130
## 6014 Queens Entire home/apt 149
## 6015 Brooklyn Entire home/apt 120
## 6016 Brooklyn Private room 45
## 6017 Queens Private room 56
## 6018 Manhattan Entire home/apt 295
## 6019 Brooklyn Private room 75
## 6020 Manhattan Entire home/apt 110
## 6021 Manhattan Entire home/apt 115
## 6022 Brooklyn Private room 90
## 6023 Manhattan Private room 109
## 6024 Bronx Private room 49
## 6025 Brooklyn Entire home/apt 100
## 6026 Manhattan Entire home/apt 295
## 6027 Brooklyn Entire home/apt 245
## 6028 Manhattan Private room 79
## 6029 Manhattan Private room 60
## 6030 Brooklyn Entire home/apt 125
## 6031 Brooklyn Private room 55
## 6032 Manhattan Private room 425
## 6033 Brooklyn Entire home/apt 150
## 6034 Brooklyn Entire home/apt 130
## 6035 Manhattan Entire home/apt 250
## 6036 Brooklyn Private room 49
## 6037 Manhattan Entire home/apt 250
## 6038 Manhattan Private room 97
## 6039 Manhattan Entire home/apt 115
## 6040 Manhattan Entire home/apt 200
## 6041 Manhattan Entire home/apt 250
## 6042 Manhattan Entire home/apt 200
## 6043 Brooklyn Entire home/apt 160
## 6044 Manhattan Entire home/apt 90
## 6045 Brooklyn Entire home/apt 239
## 6046 Manhattan Entire home/apt 290
## 6047 Brooklyn Entire home/apt 150
## 6048 Brooklyn Private room 55
## 6049 Brooklyn Entire home/apt 380
## 6050 Brooklyn Entire home/apt 120
## 6051 Brooklyn Entire home/apt 200
## 6052 Brooklyn Private room 188
## 6053 Brooklyn Entire home/apt 103
## 6054 Queens Entire home/apt 64
## 6055 Manhattan Entire home/apt 195
## 6056 Manhattan Shared room 70
## 6057 Manhattan Entire home/apt 150
## 6058 Manhattan Entire home/apt 300
## 6059 Brooklyn Entire home/apt 60
## 6060 Brooklyn Private room 150
## 6061 Manhattan Private room 105
## 6062 Manhattan Entire home/apt 360
## 6063 Manhattan Private room 165
## 6064 Manhattan Entire home/apt 325
## 6065 Manhattan Private room 105
## 6066 Manhattan Private room 57
## 6067 Manhattan Private room 100
## 6068 Brooklyn Entire home/apt 129
## 6069 Manhattan Entire home/apt 229
## 6070 Brooklyn Private room 64
## 6071 Brooklyn Entire home/apt 100
## 6072 Manhattan Entire home/apt 99
## 6073 Manhattan Entire home/apt 300
## 6074 Brooklyn Private room 84
## 6075 Brooklyn Entire home/apt 125
## 6076 Brooklyn Private room 50
## 6077 Manhattan Entire home/apt 200
## 6078 Manhattan Entire home/apt 350
## 6079 Manhattan Entire home/apt 80
## 6080 Manhattan Private room 180
## 6081 Bronx Entire home/apt 105
## 6082 Brooklyn Entire home/apt 200
## 6083 Brooklyn Entire home/apt 100
## 6084 Queens Entire home/apt 90
## 6085 Manhattan Entire home/apt 160
## 6086 Brooklyn Entire home/apt 250
## 6087 Manhattan Entire home/apt 115
## 6088 Manhattan Entire home/apt 250
## 6089 Manhattan Entire home/apt 130
## 6090 Manhattan Private room 159
## 6091 Brooklyn Entire home/apt 110
## 6092 Brooklyn Private room 60
## 6093 Bronx Private room 57
## 6094 Brooklyn Entire home/apt 180
## 6095 Brooklyn Entire home/apt 250
## 6096 Manhattan Private room 92
## 6097 Manhattan Entire home/apt 195
## 6098 Bronx Private room 47
## 6099 Manhattan Entire home/apt 175
## 6100 Manhattan Entire home/apt 175
## 6101 Manhattan Entire home/apt 165
## 6102 Brooklyn Private room 79
## 6103 Manhattan Entire home/apt 345
## 6104 Brooklyn Private room 80
## 6105 Manhattan Entire home/apt 300
## 6106 Manhattan Entire home/apt 325
## 6107 Manhattan Entire home/apt 249
## 6108 Manhattan Entire home/apt 699
## 6109 Bronx Private room 25
## 6110 Manhattan Entire home/apt 195
## 6111 Manhattan Entire home/apt 165
## 6112 Manhattan Private room 65
## 6113 Manhattan Entire home/apt 550
## 6114 Manhattan Entire home/apt 149
## 6115 Queens Entire home/apt 225
## 6116 Brooklyn Entire home/apt 135
## 6117 Manhattan Entire home/apt 495
## 6118 Manhattan Entire home/apt 200
## 6119 Brooklyn Entire home/apt 125
## 6120 Queens Entire home/apt 95
## 6121 Brooklyn Entire home/apt 135
## 6122 Brooklyn Entire home/apt 120
## 6123 Brooklyn Entire home/apt 160
## 6124 Brooklyn Entire home/apt 225
## 6125 Brooklyn Private room 139
## 6126 Manhattan Private room 69
## 6127 Brooklyn Private room 100
## 6128 Manhattan Private room 71
## 6129 Manhattan Private room 250
## 6130 Brooklyn Private room 70
## 6131 Manhattan Entire home/apt 225
## 6132 Manhattan Entire home/apt 170
## 6133 Brooklyn Entire home/apt 125
## 6134 Brooklyn Entire home/apt 139
## 6135 Queens Private room 69
## 6136 Manhattan Entire home/apt 199
## 6137 Manhattan Entire home/apt 175
## 6138 Brooklyn Entire home/apt 120
## 6139 Manhattan Private room 100
## 6140 Manhattan Private room 150
## 6141 Brooklyn Entire home/apt 100
## 6142 Manhattan Entire home/apt 130
## 6143 Manhattan Entire home/apt 150
## 6144 Brooklyn Private room 50
## 6145 Brooklyn Private room 80
## 6146 Manhattan Entire home/apt 250
## 6147 Brooklyn Entire home/apt 227
## 6148 Manhattan Entire home/apt 300
## 6149 Manhattan Entire home/apt 130
## 6150 Manhattan Entire home/apt 225
## 6151 Manhattan Entire home/apt 149
## 6152 Manhattan Entire home/apt 320
## 6153 Manhattan Private room 75
## 6154 Brooklyn Entire home/apt 115
## 6155 Manhattan Private room 97
## 6156 Manhattan Shared room 80
## 6157 Manhattan Entire home/apt 275
## 6158 Brooklyn Entire home/apt 163
## 6159 Bronx Private room 55
## 6160 Brooklyn Private room 75
## 6161 Brooklyn Entire home/apt 110
## 6162 Manhattan Entire home/apt 247
## 6163 Manhattan Entire home/apt 180
## 6164 Manhattan Private room 69
## 6165 Manhattan Entire home/apt 150
## 6166 Manhattan Entire home/apt 140
## 6167 Manhattan Entire home/apt 205
## 6168 Manhattan Entire home/apt 148
## 6169 Manhattan Private room 299
## 6170 Manhattan Private room 49
## 6171 Manhattan Entire home/apt 150
## 6172 Manhattan Entire home/apt 195
## 6173 Brooklyn Private room 80
## 6174 Brooklyn Private room 68
## 6175 Brooklyn Private room 72
## 6176 Manhattan Private room 97
## 6177 Queens Entire home/apt 170
## 6178 Manhattan Entire home/apt 67
## 6179 Queens Entire home/apt 80
## 6180 Manhattan Private room 29
## 6181 Manhattan Private room 120
## 6182 Brooklyn Private room 100
## 6183 Manhattan Private room 250
## 6184 Manhattan Private room 200
## 6185 Brooklyn Private room 90
## 6186 Manhattan Entire home/apt 125
## 6187 Queens Entire home/apt 90
## 6188 Manhattan Entire home/apt 180
## 6189 Brooklyn Private room 53
## 6190 Brooklyn Entire home/apt 200
## 6191 Manhattan Entire home/apt 66
## 6192 Manhattan Entire home/apt 200
## 6193 Brooklyn Private room 75
## 6194 Brooklyn Entire home/apt 165
## 6195 Brooklyn Private room 45
## 6196 Manhattan Entire home/apt 80
## 6197 Brooklyn Private room 125
## 6198 Brooklyn Private room 90
## 6199 Queens Entire home/apt 40
## 6200 Manhattan Private room 400
## 6201 Queens Private room 39
## 6202 Brooklyn Entire home/apt 125
## 6203 Manhattan Private room 85
## 6204 Brooklyn Private room 39
## 6205 Manhattan Entire home/apt 150
## 6206 Queens Entire home/apt 100
## 6207 Brooklyn Entire home/apt 189
## 6208 Manhattan Entire home/apt 99
## 6209 Brooklyn Entire home/apt 167
## 6210 Manhattan Entire home/apt 205
## 6211 Brooklyn Private room 50
## 6212 Brooklyn Entire home/apt 109
## 6213 Queens Entire home/apt 127
## 6214 Manhattan Entire home/apt 220
## 6215 Brooklyn Private room 45
## 6216 Manhattan Private room 75
## 6217 Brooklyn Entire home/apt 120
## 6218 Brooklyn Private room 55
## 6219 Manhattan Entire home/apt 120
## 6220 Manhattan Entire home/apt 108
## 6221 Brooklyn Entire home/apt 200
## 6222 Manhattan Shared room 55
## 6223 Manhattan Private room 205
## 6224 Manhattan Private room 129
## 6225 Manhattan Entire home/apt 150
## 6226 Manhattan Private room 110
## 6227 Queens Private room 65
## 6228 Queens Entire home/apt 150
## 6229 Queens Private room 65
## 6230 Brooklyn Private room 75
## 6231 Brooklyn Private room 85
## 6232 Brooklyn Private room 58
## 6233 Brooklyn Private room 90
## 6234 Brooklyn Entire home/apt 120
## 6235 Brooklyn Entire home/apt 115
## 6236 Queens Entire home/apt 99
## 6237 Queens Entire home/apt 105
## 6238 Manhattan Private room 69
## 6239 Brooklyn Private room 80
## 6240 Queens Entire home/apt 125
## 6241 Manhattan Entire home/apt 90
## 6242 Brooklyn Entire home/apt 80
## 6243 Manhattan Private room 125
## 6244 Manhattan Entire home/apt 215
## 6245 Manhattan Entire home/apt 107
## 6246 Manhattan Private room 89
## 6247 Manhattan Entire home/apt 175
## 6248 Brooklyn Entire home/apt 245
## 6249 Brooklyn Entire home/apt 245
## 6250 Manhattan Entire home/apt 450
## 6251 Manhattan Private room 100
## 6252 Queens Entire home/apt 98
## 6253 Brooklyn Private room 39
## 6254 Manhattan Entire home/apt 160
## 6255 Brooklyn Entire home/apt 150
## 6256 Manhattan Entire home/apt 299
## 6257 Brooklyn Private room 75
## 6258 Brooklyn Private room 99
## 6259 Manhattan Entire home/apt 165
## 6260 Manhattan Entire home/apt 145
## 6261 Manhattan Entire home/apt 239
## 6262 Manhattan Private room 76
## 6263 Manhattan Private room 65
## 6264 Manhattan Private room 60
## 6265 Brooklyn Entire home/apt 50
## 6266 Brooklyn Entire home/apt 250
## 6267 Brooklyn Entire home/apt 140
## 6268 Manhattan Entire home/apt 125
## 6269 Manhattan Shared room 80
## 6270 Brooklyn Private room 150
## 6271 Brooklyn Private room 75
## 6272 Manhattan Private room 200
## 6273 Brooklyn Entire home/apt 150
## 6274 Brooklyn Entire home/apt 220
## 6275 Manhattan Entire home/apt 180
## 6276 Manhattan Entire home/apt 260
## 6277 Brooklyn Private room 80
## 6278 Manhattan Entire home/apt 1500
## 6279 Brooklyn Private room 50
## 6280 Manhattan Entire home/apt 400
## 6281 Brooklyn Entire home/apt 450
## 6282 Manhattan Entire home/apt 225
## 6283 Brooklyn Entire home/apt 100
## 6284 Manhattan Entire home/apt 205
## 6285 Brooklyn Private room 110
## 6286 Brooklyn Private room 95
## 6287 Manhattan Entire home/apt 150
## 6288 Queens Entire home/apt 100
## 6289 Brooklyn Entire home/apt 69
## 6290 Manhattan Entire home/apt 110
## 6291 Brooklyn Entire home/apt 250
## 6292 Queens Private room 44
## 6293 Manhattan Entire home/apt 155
## 6294 Manhattan Entire home/apt 300
## 6295 Manhattan Private room 67
## 6296 Brooklyn Entire home/apt 175
## 6297 Brooklyn Entire home/apt 149
## 6298 Brooklyn Private room 85
## 6299 Brooklyn Private room 75
## 6300 Manhattan Private room 120
## 6301 Brooklyn Private room 100
## 6302 Manhattan Entire home/apt 129
## 6303 Brooklyn Entire home/apt 150
## 6304 Manhattan Entire home/apt 219
## 6305 Manhattan Entire home/apt 185
## 6306 Queens Private room 65
## 6307 Brooklyn Private room 55
## 6308 Manhattan Entire home/apt 350
## 6309 Manhattan Entire home/apt 170
## 6310 Manhattan Private room 250
## 6311 Manhattan Private room 250
## 6312 Brooklyn Private room 70
## 6313 Manhattan Entire home/apt 150
## 6314 Brooklyn Entire home/apt 172
## 6315 Manhattan Private room 79
## 6316 Manhattan Entire home/apt 100
## 6317 Manhattan Entire home/apt 272
## 6318 Manhattan Private room 85
## 6319 Manhattan Entire home/apt 350
## 6320 Manhattan Entire home/apt 249
## 6321 Brooklyn Entire home/apt 180
## 6322 Brooklyn Private room 38
## 6323 Manhattan Entire home/apt 450
## 6324 Manhattan Private room 60
## 6325 Brooklyn Entire home/apt 95
## 6326 Brooklyn Private room 85
## 6327 Manhattan Entire home/apt 199
## 6328 Manhattan Entire home/apt 260
## 6329 Manhattan Entire home/apt 140
## 6330 Manhattan Entire home/apt 185
## 6331 Brooklyn Entire home/apt 126
## 6332 Manhattan Entire home/apt 399
## 6333 Manhattan Entire home/apt 100
## 6334 Staten Island Entire home/apt 1000
## 6335 Brooklyn Entire home/apt 225
## 6336 Brooklyn Entire home/apt 85
## 6337 Manhattan Entire home/apt 147
## 6338 Manhattan Private room 90
## 6339 Brooklyn Entire home/apt 500
## 6340 Brooklyn Private room 72
## 6341 Brooklyn Private room 41
## 6342 Brooklyn Entire home/apt 180
## 6343 Queens Private room 67
## 6344 Brooklyn Entire home/apt 122
## 6345 Manhattan Entire home/apt 105
## 6346 Brooklyn Private room 95
## 6347 Queens Entire home/apt 100
## 6348 Brooklyn Entire home/apt 130
## 6349 Manhattan Private room 107
## 6350 Manhattan Private room 100
## 6351 Bronx Private room 85
## 6352 Queens Private room 30
## 6353 Manhattan Entire home/apt 175
## 6354 Brooklyn Private room 95
## 6355 Manhattan Entire home/apt 125
## 6356 Queens Private room 35
## 6357 Queens Entire home/apt 119
## 6358 Queens Entire home/apt 150
## 6359 Brooklyn Private room 55
## 6360 Brooklyn Entire home/apt 115
## 6361 Brooklyn Private room 99
## 6362 Brooklyn Private room 150
## 6363 Manhattan Private room 84
## 6364 Manhattan Private room 129
## 6365 Brooklyn Private room 44
## 6366 Brooklyn Private room 55
## 6367 Brooklyn Entire home/apt 100
## 6368 Manhattan Private room 65
## 6369 Queens Private room 99
## 6370 Manhattan Entire home/apt 100
## 6371 Manhattan Entire home/apt 225
## 6372 Brooklyn Entire home/apt 120
## 6373 Manhattan Entire home/apt 139
## 6374 Manhattan Entire home/apt 142
## 6375 Manhattan Entire home/apt 140
## 6376 Brooklyn Entire home/apt 130
## 6377 Manhattan Entire home/apt 325
## 6378 Manhattan Entire home/apt 350
## 6379 Brooklyn Entire home/apt 175
## 6380 Manhattan Private room 89
## 6381 Brooklyn Entire home/apt 69
## 6382 Brooklyn Private room 40
## 6383 Manhattan Shared room 65
## 6384 Manhattan Entire home/apt 160
## 6385 Brooklyn Private room 135
## 6386 Manhattan Entire home/apt 109
## 6387 Brooklyn Private room 85
## 6388 Manhattan Entire home/apt 189
## 6389 Brooklyn Entire home/apt 125
## 6390 Manhattan Private room 140
## 6391 Brooklyn Entire home/apt 160
## 6392 Brooklyn Entire home/apt 115
## 6393 Manhattan Entire home/apt 80
## 6394 Brooklyn Entire home/apt 198
## 6395 Queens Private room 200
## 6396 Manhattan Entire home/apt 230
## 6397 Manhattan Entire home/apt 450
## 6398 Manhattan Entire home/apt 895
## 6399 Manhattan Entire home/apt 170
## 6400 Queens Private room 120
## 6401 Brooklyn Entire home/apt 140
## 6402 Brooklyn Private room 70
## 6403 Manhattan Private room 70
## 6404 Manhattan Private room 45
## 6405 Brooklyn Private room 140
## 6406 Manhattan Entire home/apt 600
## 6407 Brooklyn Entire home/apt 195
## 6408 Manhattan Private room 79
## 6409 Manhattan Entire home/apt 55
## 6410 Manhattan Entire home/apt 275
## 6411 Queens Private room 60
## 6412 Queens Entire home/apt 195
## 6413 Manhattan Private room 50
## 6414 Manhattan Entire home/apt 125
## 6415 Bronx Entire home/apt 145
## 6416 Manhattan Entire home/apt 99
## 6417 Brooklyn Entire home/apt 130
## 6418 Manhattan Entire home/apt 115
## 6419 Bronx Private room 60
## 6420 Manhattan Entire home/apt 199
## 6421 Brooklyn Entire home/apt 170
## 6422 Manhattan Entire home/apt 385
## 6423 Manhattan Entire home/apt 125
## 6424 Brooklyn Private room 37
## 6425 Manhattan Entire home/apt 80
## 6426 Brooklyn Private room 65
## 6427 Manhattan Entire home/apt 600
## 6428 Brooklyn Entire home/apt 140
## 6429 Manhattan Private room 56
## 6430 Manhattan Private room 70
## 6431 Queens Entire home/apt 105
## 6432 Manhattan Private room 70
## 6433 Queens Private room 60
## 6434 Brooklyn Private room 120
## 6435 Manhattan Entire home/apt 150
## 6436 Manhattan Private room 112
## 6437 Manhattan Private room 145
## 6438 Brooklyn Entire home/apt 80
## 6439 Manhattan Entire home/apt 99
## 6440 Manhattan Entire home/apt 110
## 6441 Brooklyn Private room 70
## 6442 Brooklyn Entire home/apt 140
## 6443 Brooklyn Private room 46
## 6444 Manhattan Entire home/apt 180
## 6445 Brooklyn Entire home/apt 250
## 6446 Brooklyn Private room 75
## 6447 Manhattan Entire home/apt 250
## 6448 Manhattan Entire home/apt 250
## 6449 Manhattan Private room 60
## 6450 Manhattan Private room 95
## 6451 Manhattan Entire home/apt 138
## 6452 Brooklyn Entire home/apt 550
## 6453 Brooklyn Private room 35
## 6454 Brooklyn Private room 90
## 6455 Brooklyn Entire home/apt 180
## 6456 Brooklyn Entire home/apt 145
## 6457 Brooklyn Entire home/apt 100
## 6458 Brooklyn Entire home/apt 119
## 6459 Brooklyn Private room 70
## 6460 Brooklyn Private room 48
## 6461 Brooklyn Private room 35
## 6462 Manhattan Entire home/apt 200
## 6463 Manhattan Private room 64
## 6464 Manhattan Private room 120
## 6465 Brooklyn Private room 50
## 6466 Brooklyn Entire home/apt 190
## 6467 Manhattan Entire home/apt 235
## 6468 Queens Private room 70
## 6469 Manhattan Shared room 60
## 6470 Manhattan Private room 90
## 6471 Manhattan Private room 125
## 6472 Brooklyn Entire home/apt 120
## 6473 Brooklyn Private room 55
## 6474 Manhattan Entire home/apt 225
## 6475 Manhattan Private room 150
## 6476 Manhattan Entire home/apt 175
## 6477 Queens Private room 70
## 6478 Brooklyn Entire home/apt 112
## 6479 Manhattan Entire home/apt 200
## 6480 Queens Shared room 105
## 6481 Brooklyn Private room 70
## 6482 Manhattan Private room 115
## 6483 Manhattan Entire home/apt 99
## 6484 Manhattan Entire home/apt 120
## 6485 Manhattan Private room 80
## 6486 Brooklyn Private room 90
## 6487 Brooklyn Entire home/apt 70
## 6488 Brooklyn Private room 52
## 6489 Queens Entire home/apt 150
## 6490 Manhattan Entire home/apt 170
## 6491 Brooklyn Entire home/apt 132
## 6492 Brooklyn Entire home/apt 90
## 6493 Brooklyn Entire home/apt 525
## 6494 Manhattan Entire home/apt 249
## 6495 Manhattan Entire home/apt 160
## 6496 Manhattan Entire home/apt 125
## 6497 Manhattan Entire home/apt 500
## 6498 Brooklyn Private room 65
## 6499 Manhattan Entire home/apt 170
## 6500 Manhattan Entire home/apt 150
## 6501 Manhattan Private room 80
## 6502 Manhattan Entire home/apt 1000
## 6503 Manhattan Private room 175
## 6504 Brooklyn Private room 50
## 6505 Manhattan Entire home/apt 250
## 6506 Brooklyn Private room 40
## 6507 Brooklyn Private room 75
## 6508 Brooklyn Entire home/apt 82
## 6509 Manhattan Entire home/apt 93
## 6510 Brooklyn Entire home/apt 100
## 6511 Manhattan Private room 75
## 6512 Manhattan Entire home/apt 1000
## 6513 Brooklyn Private room 65
## 6514 Brooklyn Entire home/apt 250
## 6515 Manhattan Entire home/apt 130
## 6516 Manhattan Entire home/apt 199
## 6517 Brooklyn Private room 37
## 6518 Brooklyn Private room 80
## 6519 Brooklyn Private room 33
## 6520 Manhattan Private room 55
## 6521 Manhattan Entire home/apt 299
## 6522 Brooklyn Private room 69
## 6523 Brooklyn Entire home/apt 200
## 6524 Brooklyn Entire home/apt 109
## 6525 Brooklyn Entire home/apt 200
## 6526 Manhattan Private room 95
## 6527 Manhattan Entire home/apt 375
## 6528 Manhattan Private room 50
## 6529 Queens Private room 60
## 6530 Brooklyn Private room 44
## 6531 Manhattan Entire home/apt 9999
## 6532 Brooklyn Private room 77
## 6533 Manhattan Private room 40
## 6534 Bronx Entire home/apt 110
## 6535 Manhattan Private room 65
## 6536 Brooklyn Entire home/apt 85
## 6537 Brooklyn Entire home/apt 175
## 6538 Brooklyn Entire home/apt 93
## 6539 Queens Entire home/apt 375
## 6540 Manhattan Entire home/apt 100
## 6541 Manhattan Entire home/apt 258
## 6542 Brooklyn Private room 75
## 6543 Brooklyn Entire home/apt 118
## 6544 Manhattan Entire home/apt 120
## 6545 Manhattan Entire home/apt 154
## 6546 Brooklyn Entire home/apt 150
## 6547 Queens Entire home/apt 150
## 6548 Manhattan Private room 145
## 6549 Manhattan Entire home/apt 250
## 6550 Brooklyn Entire home/apt 100
## 6551 Manhattan Private room 155
## 6552 Brooklyn Private room 100
## 6553 Manhattan Private room 75
## 6554 Brooklyn Entire home/apt 110
## 6555 Brooklyn Private room 50
## 6556 Manhattan Entire home/apt 225
## 6557 Brooklyn Private room 150
## 6558 Manhattan Private room 125
## 6559 Manhattan Entire home/apt 200
## 6560 Manhattan Private room 90
## 6561 Manhattan Private room 125
## 6562 Brooklyn Private room 125
## 6563 Manhattan Private room 70
## 6564 Brooklyn Private room 55
## 6565 Manhattan Entire home/apt 199
## 6566 Brooklyn Private room 89
## 6567 Brooklyn Entire home/apt 298
## 6568 Brooklyn Private room 70
## 6569 Manhattan Entire home/apt 110
## 6570 Manhattan Entire home/apt 239
## 6571 Manhattan Entire home/apt 300
## 6572 Brooklyn Private room 31
## 6573 Manhattan Private room 70
## 6574 Brooklyn Private room 73
## 6575 Manhattan Private room 70
## 6576 Brooklyn Private room 63
## 6577 Manhattan Entire home/apt 200
## 6578 Manhattan Entire home/apt 220
## 6579 Brooklyn Private room 95
## 6580 Brooklyn Entire home/apt 127
## 6581 Brooklyn Private room 85
## 6582 Manhattan Entire home/apt 250
## 6583 Brooklyn Entire home/apt 195
## 6584 Manhattan Private room 50
## 6585 Brooklyn Private room 60
## 6586 Brooklyn Private room 58
## 6587 Queens Private room 80
## 6588 Manhattan Private room 73
## 6589 Brooklyn Entire home/apt 91
## 6590 Manhattan Private room 100
## 6591 Manhattan Private room 52
## 6592 Brooklyn Private room 65
## 6593 Brooklyn Private room 70
## 6594 Brooklyn Entire home/apt 150
## 6595 Queens Entire home/apt 107
## 6596 Manhattan Private room 80
## 6597 Brooklyn Private room 45
## 6598 Brooklyn Private room 62
## 6599 Queens Private room 49
## 6600 Queens Private room 50
## 6601 Queens Entire home/apt 175
## 6602 Brooklyn Entire home/apt 129
## 6603 Manhattan Entire home/apt 198
## 6604 Manhattan Entire home/apt 185
## 6605 Brooklyn Private room 90
## 6606 Manhattan Private room 40
## 6607 Brooklyn Entire home/apt 130
## 6608 Brooklyn Private room 100
## 6609 Brooklyn Private room 75
## 6610 Brooklyn Private room 90
## 6611 Brooklyn Entire home/apt 110
## 6612 Brooklyn Private room 65
## 6613 Manhattan Private room 49
## 6614 Manhattan Entire home/apt 400
## 6615 Brooklyn Private room 60
## 6616 Queens Private room 31
## 6617 Queens Private room 70
## 6618 Manhattan Entire home/apt 250
## 6619 Manhattan Entire home/apt 215
## 6620 Manhattan Entire home/apt 235
## 6621 Manhattan Entire home/apt 2400
## 6622 Manhattan Private room 35
## 6623 Manhattan Private room 59
## 6624 Manhattan Private room 65
## 6625 Manhattan Entire home/apt 180
## 6626 Manhattan Entire home/apt 175
## 6627 Brooklyn Entire home/apt 81
## 6628 Manhattan Entire home/apt 225
## 6629 Brooklyn Entire home/apt 100
## 6630 Brooklyn Private room 75
## 6631 Brooklyn Private room 85
## 6632 Manhattan Entire home/apt 99
## 6633 Brooklyn Entire home/apt 175
## 6634 Manhattan Private room 90
## 6635 Manhattan Private room 125
## 6636 Brooklyn Private room 30
## 6637 Brooklyn Entire home/apt 165
## 6638 Manhattan Entire home/apt 149
## 6639 Brooklyn Private room 100
## 6640 Manhattan Entire home/apt 200
## 6641 Manhattan Private room 110
## 6642 Manhattan Entire home/apt 315
## 6643 Brooklyn Entire home/apt 148
## 6644 Brooklyn Entire home/apt 150
## 6645 Manhattan Private room 175
## 6646 Manhattan Private room 59
## 6647 Manhattan Entire home/apt 139
## 6648 Brooklyn Private room 50
## 6649 Manhattan Entire home/apt 250
## 6650 Brooklyn Private room 42
## 6651 Brooklyn Private room 100
## 6652 Brooklyn Private room 80
## 6653 Queens Entire home/apt 90
## 6654 Manhattan Entire home/apt 105
## 6655 Brooklyn Private room 75
## 6656 Queens Entire home/apt 130
## 6657 Brooklyn Entire home/apt 149
## 6658 Manhattan Entire home/apt 200
## 6659 Brooklyn Entire home/apt 149
## 6660 Manhattan Private room 60
## 6661 Manhattan Private room 100
## 6662 Bronx Private room 43
## 6663 Brooklyn Entire home/apt 145
## 6664 Manhattan Entire home/apt 85
## 6665 Manhattan Entire home/apt 275
## 6666 Brooklyn Private room 100
## 6667 Manhattan Entire home/apt 105
## 6668 Manhattan Entire home/apt 250
## 6669 Manhattan Entire home/apt 180
## 6670 Manhattan Private room 175
## 6671 Brooklyn Entire home/apt 600
## 6672 Manhattan Private room 95
## 6673 Queens Entire home/apt 150
## 6674 Manhattan Entire home/apt 119
## 6675 Manhattan Entire home/apt 165
## 6676 Brooklyn Private room 50
## 6677 Manhattan Entire home/apt 225
## 6678 Manhattan Entire home/apt 80
## 6679 Manhattan Entire home/apt 149
## 6680 Brooklyn Entire home/apt 195
## 6681 Brooklyn Entire home/apt 130
## 6682 Manhattan Entire home/apt 95
## 6683 Manhattan Entire home/apt 125
## 6684 Manhattan Entire home/apt 95
## 6685 Queens Private room 50
## 6686 Manhattan Entire home/apt 85
## 6687 Brooklyn Shared room 95
## 6688 Brooklyn Private room 50
## 6689 Brooklyn Private room 80
## 6690 Brooklyn Entire home/apt 320
## 6691 Brooklyn Private room 37
## 6692 Brooklyn Private room 90
## 6693 Manhattan Entire home/apt 95
## 6694 Manhattan Private room 85
## 6695 Brooklyn Private room 79
## 6696 Manhattan Private room 100
## 6697 Brooklyn Private room 54
## 6698 Manhattan Entire home/apt 129
## 6699 Queens Private room 90
## 6700 Brooklyn Entire home/apt 254
## 6701 Manhattan Entire home/apt 159
## 6702 Manhattan Entire home/apt 90
## 6703 Brooklyn Private room 85
## 6704 Brooklyn Private room 45
## 6705 Brooklyn Entire home/apt 275
## 6706 Brooklyn Private room 38
## 6707 Brooklyn Entire home/apt 100
## 6708 Brooklyn Private room 103
## 6709 Manhattan Entire home/apt 99
## 6710 Manhattan Entire home/apt 185
## 6711 Brooklyn Private room 90
## 6712 Manhattan Private room 86
## 6713 Manhattan Private room 40
## 6714 Queens Entire home/apt 165
## 6715 Manhattan Shared room 35
## 6716 Brooklyn Entire home/apt 2000
## 6717 Manhattan Entire home/apt 117
## 6718 Brooklyn Private room 50
## 6719 Brooklyn Entire home/apt 175
## 6720 Brooklyn Entire home/apt 95
## 6721 Manhattan Private room 70
## 6722 Brooklyn Entire home/apt 100
## 6723 Brooklyn Private room 150
## 6724 Manhattan Entire home/apt 169
## 6725 Brooklyn Private room 50
## 6726 Manhattan Private room 99
## 6727 Manhattan Entire home/apt 200
## 6728 Brooklyn Private room 70
## 6729 Brooklyn Entire home/apt 130
## 6730 Manhattan Private room 125
## 6731 Manhattan Entire home/apt 180
## 6732 Brooklyn Private room 80
## 6733 Queens Private room 45
## 6734 Brooklyn Entire home/apt 99
## 6735 Manhattan Entire home/apt 99
## 6736 Brooklyn Private room 99
## 6737 Manhattan Entire home/apt 225
## 6738 Queens Entire home/apt 150
## 6739 Manhattan Entire home/apt 100
## 6740 Brooklyn Private room 73
## 6741 Manhattan Private room 180
## 6742 Manhattan Private room 80
## 6743 Manhattan Private room 80
## 6744 Manhattan Private room 85
## 6745 Manhattan Entire home/apt 175
## 6746 Brooklyn Private room 100
## 6747 Brooklyn Private room 85
## 6748 Manhattan Private room 65
## 6749 Manhattan Private room 150
## 6750 Brooklyn Entire home/apt 249
## 6751 Brooklyn Private room 40
## 6752 Manhattan Private room 200
## 6753 Queens Entire home/apt 124
## 6754 Manhattan Private room 200
## 6755 Manhattan Entire home/apt 50
## 6756 Manhattan Entire home/apt 160
## 6757 Manhattan Entire home/apt 200
## 6758 Manhattan Entire home/apt 300
## 6759 Manhattan Entire home/apt 200
## 6760 Brooklyn Entire home/apt 139
## 6761 Brooklyn Private room 49
## 6762 Brooklyn Private room 55
## 6763 Manhattan Entire home/apt 260
## 6764 Manhattan Private room 150
## 6765 Manhattan Entire home/apt 110
## 6766 Brooklyn Entire home/apt 110
## 6767 Manhattan Private room 81
## 6768 Brooklyn Entire home/apt 60
## 6769 Brooklyn Private room 65
## 6770 Brooklyn Private room 175
## 6771 Brooklyn Entire home/apt 130
## 6772 Brooklyn Entire home/apt 240
## 6773 Brooklyn Entire home/apt 130
## 6774 Manhattan Entire home/apt 97
## 6775 Brooklyn Private room 50
## 6776 Brooklyn Entire home/apt 88
## 6777 Queens Entire home/apt 112
## 6778 Brooklyn Private room 65
## 6779 Brooklyn Entire home/apt 105
## 6780 Brooklyn Entire home/apt 120
## 6781 Brooklyn Entire home/apt 70
## 6782 Brooklyn Private room 75
## 6783 Queens Entire home/apt 99
## 6784 Brooklyn Entire home/apt 275
## 6785 Manhattan Private room 600
## 6786 Manhattan Private room 90
## 6787 Brooklyn Entire home/apt 60
## 6788 Brooklyn Entire home/apt 125
## 6789 Brooklyn Private room 65
## 6790 Brooklyn Entire home/apt 159
## 6791 Manhattan Entire home/apt 145
## 6792 Manhattan Private room 130
## 6793 Manhattan Entire home/apt 255
## 6794 Manhattan Private room 90
## 6795 Brooklyn Entire home/apt 150
## 6796 Brooklyn Entire home/apt 295
## 6797 Queens Entire home/apt 125
## 6798 Manhattan Entire home/apt 75
## 6799 Brooklyn Entire home/apt 188
## 6800 Manhattan Entire home/apt 130
## 6801 Brooklyn Entire home/apt 72
## 6802 Queens Private room 45
## 6803 Brooklyn Private room 80
## 6804 Manhattan Private room 94
## 6805 Brooklyn Private room 70
## 6806 Brooklyn Entire home/apt 150
## 6807 Brooklyn Private room 70
## 6808 Brooklyn Private room 42
## 6809 Manhattan Entire home/apt 225
## 6810 Brooklyn Private room 70
## 6811 Brooklyn Private room 60
## 6812 Manhattan Entire home/apt 180
## 6813 Manhattan Entire home/apt 150
## 6814 Manhattan Private room 105
## 6815 Brooklyn Entire home/apt 100
## 6816 Brooklyn Entire home/apt 225
## 6817 Brooklyn Entire home/apt 125
## 6818 Queens Private room 82
## 6819 Manhattan Entire home/apt 140
## 6820 Brooklyn Entire home/apt 250
## 6821 Brooklyn Private room 69
## 6822 Manhattan Entire home/apt 275
## 6823 Brooklyn Entire home/apt 145
## 6824 Manhattan Entire home/apt 125
## 6825 Brooklyn Private room 100
## 6826 Manhattan Entire home/apt 100
## 6827 Brooklyn Entire home/apt 190
## 6828 Manhattan Entire home/apt 200
## 6829 Manhattan Entire home/apt 125
## 6830 Manhattan Entire home/apt 300
## 6831 Manhattan Entire home/apt 159
## 6832 Manhattan Entire home/apt 225
## 6833 Manhattan Entire home/apt 300
## 6834 Manhattan Entire home/apt 180
## 6835 Queens Entire home/apt 99
## 6836 Manhattan Private room 120
## 6837 Manhattan Private room 90
## 6838 Brooklyn Private room 59
## 6839 Queens Private room 95
## 6840 Brooklyn Private room 65
## 6841 Queens Private room 40
## 6842 Manhattan Entire home/apt 250
## 6843 Brooklyn Private room 85
## 6844 Manhattan Private room 71
## 6845 Manhattan Entire home/apt 109
## 6846 Brooklyn Entire home/apt 262
## 6847 Brooklyn Private room 55
## 6848 Manhattan Entire home/apt 70
## 6849 Manhattan Entire home/apt 109
## 6850 Queens Private room 40
## 6851 Queens Private room 70
## 6852 Queens Private room 50
## 6853 Manhattan Private room 120
## 6854 Manhattan Private room 80
## 6855 Brooklyn Entire home/apt 200
## 6856 Brooklyn Entire home/apt 300
## 6857 Manhattan Entire home/apt 175
## 6858 Brooklyn Private room 75
## 6859 Queens Entire home/apt 119
## 6860 Manhattan Entire home/apt 165
## 6861 Bronx Private room 40
## 6862 Manhattan Entire home/apt 265
## 6863 Manhattan Entire home/apt 130
## 6864 Brooklyn Entire home/apt 85
## 6865 Brooklyn Private room 70
## 6866 Brooklyn Entire home/apt 210
## 6867 Manhattan Private room 225
## 6868 Brooklyn Private room 46
## 6869 Brooklyn Private room 75
## 6870 Brooklyn Entire home/apt 126
## 6871 Brooklyn Private room 88
## 6872 Manhattan Entire home/apt 150
## 6873 Brooklyn Entire home/apt 175
## 6874 Manhattan Entire home/apt 380
## 6875 Brooklyn Entire home/apt 500
## 6876 Manhattan Private room 110
## 6877 Manhattan Entire home/apt 175
## 6878 Manhattan Private room 78
## 6879 Manhattan Entire home/apt 250
## 6880 Manhattan Entire home/apt 125
## 6881 Brooklyn Entire home/apt 200
## 6882 Brooklyn Private room 55
## 6883 Brooklyn Private room 65
## 6884 Manhattan Entire home/apt 175
## 6885 Manhattan Entire home/apt 205
## 6886 Queens Entire home/apt 90
## 6887 Brooklyn Private room 100
## 6888 Brooklyn Private room 60
## 6889 Manhattan Private room 99
## 6890 Manhattan Private room 50
## 6891 Brooklyn Private room 50
## 6892 Brooklyn Private room 68
## 6893 Manhattan Entire home/apt 125
## 6894 Manhattan Entire home/apt 175
## 6895 Brooklyn Entire home/apt 100
## 6896 Manhattan Private room 85
## 6897 Manhattan Entire home/apt 125
## 6898 Brooklyn Private room 118
## 6899 Manhattan Entire home/apt 346
## 6900 Brooklyn Private room 52
## 6901 Queens Entire home/apt 107
## 6902 Manhattan Entire home/apt 99
## 6903 Manhattan Entire home/apt 150
## 6904 Brooklyn Private room 65
## 6905 Manhattan Entire home/apt 85
## 6906 Manhattan Entire home/apt 155
## 6907 Brooklyn Entire home/apt 125
## 6908 Manhattan Private room 59
## 6909 Queens Private room 70
## 6910 Manhattan Entire home/apt 115
## 6911 Manhattan Private room 175
## 6912 Manhattan Entire home/apt 149
## 6913 Brooklyn Private room 50
## 6914 Brooklyn Entire home/apt 190
## 6915 Manhattan Entire home/apt 80
## 6916 Brooklyn Private room 75
## 6917 Manhattan Private room 89
## 6918 Manhattan Private room 123
## 6919 Manhattan Private room 78
## 6920 Brooklyn Private room 62
## 6921 Brooklyn Entire home/apt 120
## 6922 Queens Entire home/apt 80
## 6923 Manhattan Entire home/apt 180
## 6924 Brooklyn Entire home/apt 145
## 6925 Manhattan Private room 99
## 6926 Manhattan Entire home/apt 300
## 6927 Manhattan Entire home/apt 87
## 6928 Bronx Entire home/apt 155
## 6929 Bronx Entire home/apt 250
## 6930 Manhattan Private room 130
## 6931 Queens Shared room 65
## 6932 Manhattan Entire home/apt 156
## 6933 Bronx Private room 50
## 6934 Manhattan Entire home/apt 450
## 6935 Brooklyn Private room 40
## 6936 Brooklyn Entire home/apt 95
## 6937 Queens Private room 45
## 6938 Queens Shared room 60
## 6939 Manhattan Private room 100
## 6940 Manhattan Private room 75
## 6941 Manhattan Private room 84
## 6942 Staten Island Entire home/apt 70
## 6943 Manhattan Private room 69
## 6944 Brooklyn Private room 62
## 6945 Manhattan Entire home/apt 200
## 6946 Brooklyn Entire home/apt 100
## 6947 Brooklyn Private room 45
## 6948 Manhattan Entire home/apt 170
## 6949 Manhattan Entire home/apt 150
## 6950 Queens Entire home/apt 99
## 6951 Brooklyn Private room 45
## 6952 Manhattan Private room 95
## 6953 Brooklyn Private room 95
## 6954 Brooklyn Private room 79
## 6955 Brooklyn Entire home/apt 120
## 6956 Manhattan Entire home/apt 375
## 6957 Manhattan Entire home/apt 120
## 6958 Brooklyn Shared room 85
## 6959 Queens Private room 100
## 6960 Manhattan Private room 84
## 6961 Manhattan Entire home/apt 549
## 6962 Brooklyn Entire home/apt 230
## 6963 Brooklyn Private room 100
## 6964 Brooklyn Private room 70
## 6965 Queens Entire home/apt 72
## 6966 Manhattan Private room 140
## 6967 Manhattan Private room 125
## 6968 Manhattan Entire home/apt 135
## 6969 Manhattan Entire home/apt 120
## 6970 Brooklyn Private room 49
## 6971 Brooklyn Entire home/apt 240
## 6972 Brooklyn Entire home/apt 380
## 6973 Manhattan Entire home/apt 150
## 6974 Queens Private room 89
## 6975 Manhattan Private room 100
## 6976 Brooklyn Private room 75
## 6977 Queens Private room 50
## 6978 Brooklyn Private room 60
## 6979 Manhattan Entire home/apt 760
## 6980 Brooklyn Private room 85
## 6981 Queens Private room 65
## 6982 Manhattan Entire home/apt 150
## 6983 Manhattan Entire home/apt 169
## 6984 Manhattan Entire home/apt 85
## 6985 Manhattan Entire home/apt 350
## 6986 Brooklyn Entire home/apt 148
## 6987 Brooklyn Entire home/apt 100
## 6988 Manhattan Entire home/apt 1000
## 6989 Brooklyn Entire home/apt 125
## 6990 Brooklyn Entire home/apt 80
## 6991 Queens Entire home/apt 72
## 6992 Brooklyn Private room 125
## 6993 Queens Private room 34
## 6994 Brooklyn Entire home/apt 288
## 6995 Brooklyn Entire home/apt 167
## 6996 Manhattan Entire home/apt 125
## 6997 Brooklyn Entire home/apt 100
## 6998 Manhattan Entire home/apt 290
## 6999 Manhattan Entire home/apt 229
## 7000 Brooklyn Private room 100
## 7001 Brooklyn Private room 60
## 7002 Brooklyn Entire home/apt 225
## 7003 Brooklyn Private room 70
## 7004 Brooklyn Entire home/apt 174
## 7005 Manhattan Entire home/apt 350
## 7006 Manhattan Entire home/apt 250
## 7007 Manhattan Entire home/apt 105
## 7008 Queens Private room 40
## 7009 Brooklyn Private room 50
## 7010 Manhattan Private room 65
## 7011 Manhattan Private room 75
## 7012 Brooklyn Entire home/apt 180
## 7013 Brooklyn Private room 60
## 7014 Manhattan Private room 69
## 7015 Manhattan Private room 150
## 7016 Brooklyn Private room 200
## 7017 Manhattan Entire home/apt 125
## 7018 Manhattan Entire home/apt 795
## 7019 Bronx Entire home/apt 450
## 7020 Manhattan Private room 80
## 7021 Brooklyn Entire home/apt 300
## 7022 Manhattan Shared room 80
## 7023 Manhattan Private room 75
## 7024 Manhattan Private room 500
## 7025 Manhattan Private room 135
## 7026 Manhattan Entire home/apt 250
## 7027 Manhattan Private room 80
## 7028 Brooklyn Entire home/apt 85
## 7029 Brooklyn Entire home/apt 150
## 7030 Brooklyn Private room 60
## 7031 Manhattan Entire home/apt 249
## 7032 Manhattan Entire home/apt 155
## 7033 Brooklyn Private room 65
## 7034 Brooklyn Entire home/apt 90
## 7035 Manhattan Entire home/apt 150
## 7036 Brooklyn Private room 96
## 7037 Brooklyn Private room 90
## 7038 Manhattan Private room 89
## 7039 Manhattan Private room 80
## 7040 Manhattan Private room 77
## 7041 Brooklyn Private room 60
## 7042 Manhattan Entire home/apt 165
## 7043 Brooklyn Private room 70
## 7044 Brooklyn Entire home/apt 83
## 7045 Brooklyn Private room 70
## 7046 Manhattan Entire home/apt 139
## 7047 Brooklyn Private room 50
## 7048 Brooklyn Private room 50
## 7049 Brooklyn Entire home/apt 220
## 7050 Manhattan Entire home/apt 250
## 7051 Manhattan Private room 177
## 7052 Manhattan Entire home/apt 150
## 7053 Brooklyn Private room 50
## 7054 Queens Entire home/apt 90
## 7055 Brooklyn Private room 150
## 7056 Manhattan Entire home/apt 125
## 7057 Manhattan Entire home/apt 150
## 7058 Brooklyn Entire home/apt 415
## 7059 Brooklyn Private room 50
## 7060 Manhattan Entire home/apt 165
## 7061 Manhattan Entire home/apt 175
## 7062 Brooklyn Private room 50
## 7063 Manhattan Entire home/apt 250
## 7064 Manhattan Entire home/apt 100
## 7065 Manhattan Entire home/apt 99
## 7066 Queens Private room 80
## 7067 Brooklyn Entire home/apt 140
## 7068 Manhattan Private room 83
## 7069 Queens Private room 99
## 7070 Brooklyn Private room 79
## 7071 Brooklyn Private room 100
## 7072 Brooklyn Entire home/apt 160
## 7073 Brooklyn Private room 45
## 7074 Brooklyn Entire home/apt 225
## 7075 Manhattan Entire home/apt 180
## 7076 Brooklyn Entire home/apt 90
## 7077 Brooklyn Private room 60
## 7078 Queens Entire home/apt 120
## 7079 Manhattan Entire home/apt 150
## 7080 Brooklyn Entire home/apt 80
## 7081 Manhattan Entire home/apt 275
## 7082 Queens Entire home/apt 110
## 7083 Staten Island Private room 85
## 7084 Manhattan Entire home/apt 245
## 7085 Brooklyn Private room 90
## 7086 Brooklyn Entire home/apt 115
## 7087 Queens Private room 54
## 7088 Brooklyn Entire home/apt 195
## 7089 Brooklyn Entire home/apt 995
## 7090 Manhattan Entire home/apt 120
## 7091 Manhattan Private room 135
## 7092 Manhattan Private room 150
## 7093 Manhattan Private room 61
## 7094 Manhattan Entire home/apt 115
## 7095 Brooklyn Private room 63
## 7096 Manhattan Entire home/apt 185
## 7097 Brooklyn Entire home/apt 1763
## 7098 Brooklyn Private room 33
## 7099 Brooklyn Private room 55
## 7100 Brooklyn Entire home/apt 150
## 7101 Brooklyn Entire home/apt 80
## 7102 Brooklyn Private room 40
## 7103 Manhattan Private room 79
## 7104 Manhattan Entire home/apt 140
## 7105 Manhattan Entire home/apt 198
## 7106 Brooklyn Private room 65
## 7107 Manhattan Entire home/apt 117
## 7108 Manhattan Entire home/apt 125
## 7109 Manhattan Entire home/apt 510
## 7110 Brooklyn Entire home/apt 125
## 7111 Manhattan Private room 170
## 7112 Manhattan Private room 65
## 7113 Brooklyn Entire home/apt 195
## 7114 Manhattan Entire home/apt 115
## 7115 Manhattan Entire home/apt 135
## 7116 Brooklyn Entire home/apt 350
## 7117 Manhattan Private room 115
## 7118 Manhattan Private room 45
## 7119 Brooklyn Private room 65
## 7120 Queens Entire home/apt 135
## 7121 Brooklyn Private room 40
## 7122 Brooklyn Private room 70
## 7123 Manhattan Entire home/apt 199
## 7124 Manhattan Private room 100
## 7125 Manhattan Entire home/apt 195
## 7126 Brooklyn Entire home/apt 200
## 7127 Brooklyn Entire home/apt 150
## 7128 Brooklyn Private room 60
## 7129 Brooklyn Private room 70
## 7130 Brooklyn Private room 30
## 7131 Brooklyn Private room 100
## 7132 Manhattan Entire home/apt 180
## 7133 Queens Entire home/apt 105
## 7134 Manhattan Entire home/apt 110
## 7135 Queens Private room 38
## 7136 Brooklyn Private room 70
## 7137 Brooklyn Entire home/apt 72
## 7138 Brooklyn Private room 75
## 7139 Manhattan Private room 63
## 7140 Manhattan Private room 58
## 7141 Manhattan Private room 70
## 7142 Manhattan Entire home/apt 145
## 7143 Brooklyn Private room 45
## 7144 Brooklyn Private room 60
## 7145 Manhattan Entire home/apt 158
## 7146 Brooklyn Private room 139
## 7147 Brooklyn Private room 45
## 7148 Manhattan Entire home/apt 99
## 7149 Brooklyn Entire home/apt 85
## 7150 Manhattan Private room 85
## 7151 Brooklyn Entire home/apt 95
## 7152 Brooklyn Entire home/apt 150
## 7153 Brooklyn Private room 96
## 7154 Manhattan Entire home/apt 230
## 7155 Manhattan Entire home/apt 150
## 7156 Manhattan Entire home/apt 225
## 7157 Brooklyn Entire home/apt 130
## 7158 Brooklyn Entire home/apt 116
## 7159 Manhattan Entire home/apt 115
## 7160 Brooklyn Entire home/apt 126
## 7161 Brooklyn Entire home/apt 174
## 7162 Manhattan Entire home/apt 149
## 7163 Manhattan Entire home/apt 150
## 7164 Brooklyn Entire home/apt 100
## 7165 Staten Island Entire home/apt 150
## 7166 Manhattan Private room 89
## 7167 Brooklyn Entire home/apt 308
## 7168 Brooklyn Private room 40
## 7169 Manhattan Entire home/apt 150
## 7170 Queens Private room 55
## 7171 Manhattan Private room 55
## 7172 Manhattan Entire home/apt 139
## 7173 Queens Private room 90
## 7174 Manhattan Entire home/apt 249
## 7175 Manhattan Entire home/apt 150
## 7176 Brooklyn Entire home/apt 95
## 7177 Brooklyn Private room 135
## 7178 Brooklyn Private room 45
## 7179 Manhattan Entire home/apt 289
## 7180 Brooklyn Entire home/apt 97
## 7181 Brooklyn Entire home/apt 180
## 7182 Manhattan Entire home/apt 75
## 7183 Brooklyn Entire home/apt 320
## 7184 Brooklyn Private room 60
## 7185 Brooklyn Private room 60
## 7186 Brooklyn Entire home/apt 144
## 7187 Brooklyn Private room 40
## 7188 Brooklyn Private room 115
## 7189 Manhattan Shared room 75
## 7190 Queens Private room 47
## 7191 Manhattan Private room 1450
## 7192 Brooklyn Private room 100
## 7193 Manhattan Shared room 50
## 7194 Manhattan Entire home/apt 250
## 7195 Manhattan Entire home/apt 115
## 7196 Manhattan Private room 60
## 7197 Manhattan Private room 135
## 7198 Manhattan Private room 50
## 7199 Manhattan Entire home/apt 149
## 7200 Brooklyn Entire home/apt 120
## 7201 Manhattan Entire home/apt 150
## 7202 Brooklyn Entire home/apt 110
## 7203 Manhattan Private room 95
## 7204 Brooklyn Entire home/apt 190
## 7205 Brooklyn Entire home/apt 139
## 7206 Manhattan Private room 115
## 7207 Manhattan Private room 130
## 7208 Manhattan Private room 125
## 7209 Brooklyn Private room 45
## 7210 Manhattan Entire home/apt 110
## 7211 Brooklyn Entire home/apt 120
## 7212 Brooklyn Private room 50
## 7213 Brooklyn Entire home/apt 100
## 7214 Brooklyn Private room 75
## 7215 Brooklyn Entire home/apt 129
## 7216 Manhattan Entire home/apt 196
## 7217 Manhattan Entire home/apt 400
## 7218 Manhattan Entire home/apt 140
## 7219 Queens Private room 60
## 7220 Brooklyn Private room 55
## 7221 Manhattan Entire home/apt 175
## 7222 Brooklyn Entire home/apt 90
## 7223 Manhattan Entire home/apt 281
## 7224 Brooklyn Private room 50
## 7225 Manhattan Shared room 65
## 7226 Queens Private room 85
## 7227 Bronx Private room 38
## 7228 Manhattan Private room 59
## 7229 Queens Private room 40
## 7230 Manhattan Entire home/apt 229
## 7231 Brooklyn Entire home/apt 70
## 7232 Manhattan Entire home/apt 190
## 7233 Brooklyn Entire home/apt 150
## 7234 Brooklyn Private room 68
## 7235 Manhattan Private room 109
## 7236 Manhattan Entire home/apt 37
## 7237 Manhattan Private room 124
## 7238 Brooklyn Entire home/apt 190
## 7239 Manhattan Entire home/apt 160
## 7240 Brooklyn Entire home/apt 160
## 7241 Brooklyn Entire home/apt 145
## 7242 Brooklyn Private room 49
## 7243 Brooklyn Entire home/apt 159
## 7244 Brooklyn Private room 75
## 7245 Manhattan Entire home/apt 175
## 7246 Manhattan Private room 150
## 7247 Manhattan Private room 65
## 7248 Queens Private room 50
## 7249 Brooklyn Private room 52
## 7250 Manhattan Entire home/apt 176
## 7251 Brooklyn Private room 90
## 7252 Brooklyn Entire home/apt 175
## 7253 Manhattan Entire home/apt 125
## 7254 Brooklyn Entire home/apt 249
## 7255 Manhattan Entire home/apt 87
## 7256 Brooklyn Private room 65
## 7257 Brooklyn Entire home/apt 495
## 7258 Brooklyn Entire home/apt 120
## 7259 Manhattan Entire home/apt 110
## 7260 Manhattan Entire home/apt 159
## 7261 Brooklyn Entire home/apt 189
## 7262 Brooklyn Private room 58
## 7263 Brooklyn Private room 59
## 7264 Brooklyn Private room 51
## 7265 Manhattan Entire home/apt 199
## 7266 Brooklyn Private room 52
## 7267 Manhattan Entire home/apt 199
## 7268 Manhattan Private room 100
## 7269 Manhattan Private room 54
## 7270 Brooklyn Private room 49
## 7271 Manhattan Private room 250
## 7272 Brooklyn Private room 45
## 7273 Queens Private room 50
## 7274 Brooklyn Entire home/apt 600
## 7275 Manhattan Entire home/apt 200
## 7276 Queens Private room 38
## 7277 Brooklyn Entire home/apt 300
## 7278 Brooklyn Private room 50
## 7279 Brooklyn Private room 55
## 7280 Brooklyn Private room 27
## 7281 Manhattan Entire home/apt 200
## 7282 Manhattan Entire home/apt 99
## 7283 Brooklyn Entire home/apt 80
## 7284 Manhattan Entire home/apt 250
## 7285 Brooklyn Entire home/apt 95
## 7286 Manhattan Private room 59
## 7287 Bronx Private room 57
## 7288 Manhattan Entire home/apt 170
## 7289 Brooklyn Private room 50
## 7290 Manhattan Private room 49
## 7291 Brooklyn Private room 65
## 7292 Manhattan Entire home/apt 250
## 7293 Brooklyn Entire home/apt 200
## 7294 Manhattan Entire home/apt 110
## 7295 Manhattan Entire home/apt 250
## 7296 Brooklyn Private room 73
## 7297 Brooklyn Private room 70
## 7298 Brooklyn Entire home/apt 125
## 7299 Brooklyn Entire home/apt 195
## 7300 Brooklyn Private room 75
## 7301 Queens Private room 36
## 7302 Brooklyn Entire home/apt 99
## 7303 Brooklyn Entire home/apt 100
## 7304 Manhattan Private room 71
## 7305 Brooklyn Entire home/apt 100
## 7306 Brooklyn Private room 85
## 7307 Manhattan Entire home/apt 169
## 7308 Manhattan Entire home/apt 149
## 7309 Manhattan Private room 89
## 7310 Brooklyn Private room 44
## 7311 Brooklyn Entire home/apt 150
## 7312 Brooklyn Entire home/apt 125
## 7313 Queens Private room 42
## 7314 Manhattan Private room 28
## 7315 Brooklyn Entire home/apt 155
## 7316 Queens Entire home/apt 300
## 7317 Manhattan Private room 250
## 7318 Manhattan Private room 70
## 7319 Brooklyn Entire home/apt 80
## 7320 Manhattan Entire home/apt 150
## 7321 Queens Private room 65
## 7322 Brooklyn Entire home/apt 167
## 7323 Manhattan Entire home/apt 130
## 7324 Brooklyn Entire home/apt 115
## 7325 Brooklyn Private room 94
## 7326 Manhattan Entire home/apt 185
## 7327 Manhattan Entire home/apt 195
## 7328 Brooklyn Entire home/apt 90
## 7329 Manhattan Private room 99
## 7330 Manhattan Entire home/apt 499
## 7331 Brooklyn Entire home/apt 180
## 7332 Brooklyn Entire home/apt 300
## 7333 Manhattan Private room 100
## 7334 Manhattan Private room 134
## 7335 Queens Private room 49
## 7336 Brooklyn Private room 47
## 7337 Brooklyn Entire home/apt 120
## 7338 Manhattan Entire home/apt 185
## 7339 Brooklyn Entire home/apt 169
## 7340 Brooklyn Entire home/apt 130
## 7341 Brooklyn Entire home/apt 110
## 7342 Brooklyn Entire home/apt 122
## 7343 Brooklyn Private room 150
## 7344 Brooklyn Entire home/apt 129
## 7345 Queens Private room 65
## 7346 Manhattan Entire home/apt 115
## 7347 Queens Private room 60
## 7348 Brooklyn Entire home/apt 150
## 7349 Manhattan Entire home/apt 200
## 7350 Manhattan Entire home/apt 110
## 7351 Queens Entire home/apt 259
## 7352 Manhattan Entire home/apt 150
## 7353 Brooklyn Entire home/apt 295
## 7354 Manhattan Private room 140
## 7355 Brooklyn Private room 70
## 7356 Queens Entire home/apt 134
## 7357 Manhattan Entire home/apt 825
## 7358 Brooklyn Private room 100
## 7359 Manhattan Entire home/apt 175
## 7360 Brooklyn Private room 60
## 7361 Manhattan Entire home/apt 250
## 7362 Brooklyn Private room 58
## 7363 Brooklyn Entire home/apt 142
## 7364 Brooklyn Entire home/apt 120
## 7365 Manhattan Entire home/apt 136
## 7366 Manhattan Private room 55
## 7367 Manhattan Entire home/apt 185
## 7368 Brooklyn Private room 75
## 7369 Manhattan Entire home/apt 103
## 7370 Brooklyn Entire home/apt 193
## 7371 Brooklyn Entire home/apt 700
## 7372 Manhattan Entire home/apt 200
## 7373 Manhattan Entire home/apt 145
## 7374 Brooklyn Entire home/apt 200
## 7375 Brooklyn Private room 160
## 7376 Brooklyn Private room 45
## 7377 Manhattan Entire home/apt 151
## 7378 Manhattan Private room 98
## 7379 Brooklyn Private room 75
## 7380 Manhattan Entire home/apt 185
## 7381 Bronx Entire home/apt 150
## 7382 Brooklyn Entire home/apt 170
## 7383 Brooklyn Entire home/apt 119
## 7384 Manhattan Entire home/apt 229
## 7385 Manhattan Private room 80
## 7386 Manhattan Private room 100
## 7387 Brooklyn Entire home/apt 500
## 7388 Manhattan Entire home/apt 120
## 7389 Brooklyn Private room 85
## 7390 Brooklyn Entire home/apt 135
## 7391 Manhattan Entire home/apt 524
## 7392 Manhattan Private room 60
## 7393 Brooklyn Entire home/apt 159
## 7394 Manhattan Entire home/apt 200
## 7395 Queens Private room 73
## 7396 Brooklyn Shared room 70
## 7397 Brooklyn Private room 168
## 7398 Brooklyn Private room 75
## 7399 Manhattan Entire home/apt 169
## 7400 Queens Entire home/apt 85
## 7401 Brooklyn Private room 38
## 7402 Brooklyn Private room 48
## 7403 Bronx Private room 42
## 7404 Manhattan Private room 80
## 7405 Brooklyn Entire home/apt 145
## 7406 Manhattan Private room 72
## 7407 Brooklyn Private room 95
## 7408 Brooklyn Private room 45
## 7409 Manhattan Entire home/apt 250
## 7410 Manhattan Private room 73
## 7411 Manhattan Private room 100
## 7412 Brooklyn Private room 50
## 7413 Brooklyn Entire home/apt 165
## 7414 Brooklyn Entire home/apt 184
## 7415 Manhattan Entire home/apt 295
## 7416 Queens Entire home/apt 135
## 7417 Manhattan Entire home/apt 160
## 7418 Brooklyn Entire home/apt 99
## 7419 Brooklyn Entire home/apt 85
## 7420 Manhattan Entire home/apt 199
## 7421 Manhattan Entire home/apt 195
## 7422 Manhattan Private room 80
## 7423 Brooklyn Private room 69
## 7424 Manhattan Entire home/apt 145
## 7425 Brooklyn Private room 52
## 7426 Manhattan Entire home/apt 80
## 7427 Manhattan Entire home/apt 300
## 7428 Manhattan Entire home/apt 75
## 7429 Manhattan Entire home/apt 180
## 7430 Manhattan Private room 62
## 7431 Manhattan Entire home/apt 750
## 7432 Manhattan Private room 31
## 7433 Brooklyn Entire home/apt 250
## 7434 Manhattan Entire home/apt 99
## 7435 Brooklyn Entire home/apt 120
## 7436 Manhattan Entire home/apt 150
## 7437 Manhattan Entire home/apt 100
## 7438 Manhattan Entire home/apt 150
## 7439 Brooklyn Private room 99
## 7440 Manhattan Entire home/apt 200
## 7441 Brooklyn Private room 75
## 7442 Brooklyn Private room 45
## 7443 Brooklyn Private room 45
## 7444 Brooklyn Private room 59
## 7445 Brooklyn Private room 84
## 7446 Manhattan Entire home/apt 140
## 7447 Brooklyn Private room 90
## 7448 Brooklyn Entire home/apt 125
## 7449 Manhattan Private room 250
## 7450 Brooklyn Entire home/apt 100
## 7451 Brooklyn Entire home/apt 190
## 7452 Brooklyn Entire home/apt 298
## 7453 Manhattan Private room 99
## 7454 Manhattan Entire home/apt 250
## 7455 Manhattan Private room 95
## 7456 Brooklyn Private room 110
## 7457 Manhattan Private room 59
## 7458 Manhattan Shared room 115
## 7459 Queens Entire home/apt 200
## 7460 Brooklyn Private room 75
## 7461 Brooklyn Entire home/apt 115
## 7462 Manhattan Entire home/apt 146
## 7463 Brooklyn Private room 110
## 7464 Brooklyn Private room 60
## 7465 Brooklyn Entire home/apt 450
## 7466 Manhattan Entire home/apt 160
## 7467 Manhattan Entire home/apt 149
## 7468 Manhattan Entire home/apt 100
## 7469 Manhattan Entire home/apt 220
## 7470 Brooklyn Entire home/apt 120
## 7471 Brooklyn Entire home/apt 99
## 7472 Manhattan Private room 65
## 7473 Queens Private room 50
## 7474 Brooklyn Entire home/apt 65
## 7475 Brooklyn Entire home/apt 125
## 7476 Manhattan Private room 75
## 7477 Brooklyn Private room 85
## 7478 Brooklyn Private room 2000
## 7479 Brooklyn Entire home/apt 149
## 7480 Brooklyn Private room 53
## 7481 Manhattan Entire home/apt 325
## 7482 Brooklyn Private room 45
## 7483 Queens Private room 38
## 7484 Manhattan Shared room 120
## 7485 Queens Private room 38
## 7486 Brooklyn Private room 2000
## 7487 Brooklyn Private room 60
## 7488 Brooklyn Entire home/apt 190
## 7489 Manhattan Private room 125
## 7490 Manhattan Entire home/apt 100
## 7491 Manhattan Private room 70
## 7492 Brooklyn Entire home/apt 130
## 7493 Brooklyn Private room 45
## 7494 Manhattan Entire home/apt 110
## 7495 Manhattan Private room 60
## 7496 Brooklyn Private room 125
## 7497 Manhattan Private room 81
## 7498 Manhattan Private room 80
## 7499 Queens Entire home/apt 105
## 7500 Manhattan Entire home/apt 200
## 7501 Manhattan Entire home/apt 100
## 7502 Brooklyn Private room 100
## 7503 Brooklyn Entire home/apt 75
## 7504 Brooklyn Entire home/apt 250
## 7505 Manhattan Entire home/apt 400
## 7506 Brooklyn Entire home/apt 160
## 7507 Manhattan Private room 110
## 7508 Brooklyn Entire home/apt 220
## 7509 Brooklyn Entire home/apt 135
## 7510 Brooklyn Private room 99
## 7511 Manhattan Private room 89
## 7512 Brooklyn Private room 110
## 7513 Manhattan Private room 75
## 7514 Manhattan Entire home/apt 2000
## 7515 Brooklyn Entire home/apt 160
## 7516 Manhattan Entire home/apt 475
## 7517 Manhattan Entire home/apt 230
## 7518 Manhattan Private room 49
## 7519 Manhattan Private room 125
## 7520 Brooklyn Entire home/apt 180
## 7521 Brooklyn Entire home/apt 80
## 7522 Manhattan Private room 55
## 7523 Brooklyn Entire home/apt 135
## 7524 Manhattan Entire home/apt 182
## 7525 Manhattan Entire home/apt 209
## 7526 Manhattan Private room 78
## 7527 Manhattan Entire home/apt 202
## 7528 Brooklyn Private room 48
## 7529 Brooklyn Private room 81
## 7530 Manhattan Shared room 80
## 7531 Queens Private room 60
## 7532 Brooklyn Entire home/apt 129
## 7533 Brooklyn Entire home/apt 100
## 7534 Brooklyn Private room 35
## 7535 Manhattan Entire home/apt 100
## 7536 Manhattan Private room 82
## 7537 Queens Private room 80
## 7538 Brooklyn Entire home/apt 128
## 7539 Manhattan Entire home/apt 159
## 7540 Brooklyn Entire home/apt 101
## 7541 Manhattan Private room 195
## 7542 Manhattan Entire home/apt 2000
## 7543 Manhattan Entire home/apt 160
## 7544 Manhattan Private room 100
## 7545 Manhattan Private room 195
## 7546 Brooklyn Private room 475
## 7547 Manhattan Entire home/apt 122
## 7548 Brooklyn Private room 45
## 7549 Brooklyn Entire home/apt 235
## 7550 Manhattan Entire home/apt 275
## 7551 Brooklyn Entire home/apt 99
## 7552 Manhattan Private room 78
## 7553 Manhattan Entire home/apt 125
## 7554 Brooklyn Entire home/apt 125
## 7555 Brooklyn Entire home/apt 170
## 7556 Manhattan Entire home/apt 165
## 7557 Manhattan Entire home/apt 129
## 7558 Brooklyn Entire home/apt 150
## 7559 Brooklyn Private room 45
## 7560 Manhattan Private room 90
## 7561 Manhattan Private room 175
## 7562 Brooklyn Entire home/apt 188
## 7563 Queens Private room 80
## 7564 Queens Entire home/apt 160
## 7565 Brooklyn Private room 50
## 7566 Brooklyn Entire home/apt 100
## 7567 Brooklyn Private room 65
## 7568 Brooklyn Private room 50
## 7569 Manhattan Private room 70
## 7570 Brooklyn Entire home/apt 130
## 7571 Brooklyn Entire home/apt 60
## 7572 Brooklyn Entire home/apt 180
## 7573 Manhattan Entire home/apt 150
## 7574 Queens Private room 69
## 7575 Manhattan Private room 62
## 7576 Brooklyn Entire home/apt 150
## 7577 Brooklyn Entire home/apt 118
## 7578 Manhattan Entire home/apt 195
## 7579 Manhattan Private room 75
## 7580 Brooklyn Entire home/apt 135
## 7581 Manhattan Entire home/apt 450
## 7582 Manhattan Private room 45
## 7583 Manhattan Entire home/apt 250
## 7584 Brooklyn Private room 70
## 7585 Manhattan Entire home/apt 120
## 7586 Brooklyn Private room 125
## 7587 Manhattan Entire home/apt 118
## 7588 Queens Private room 50
## 7589 Brooklyn Entire home/apt 100
## 7590 Brooklyn Private room 40
## 7591 Manhattan Entire home/apt 225
## 7592 Manhattan Entire home/apt 185
## 7593 Manhattan Private room 225
## 7594 Brooklyn Entire home/apt 155
## 7595 Manhattan Entire home/apt 165
## 7596 Brooklyn Entire home/apt 165
## 7597 Brooklyn Entire home/apt 149
## 7598 Manhattan Entire home/apt 142
## 7599 Queens Private room 59
## 7600 Manhattan Entire home/apt 200
## 7601 Brooklyn Entire home/apt 125
## 7602 Brooklyn Entire home/apt 181
## 7603 Brooklyn Private room 90
## 7604 Brooklyn Private room 70
## 7605 Manhattan Entire home/apt 150
## 7606 Manhattan Entire home/apt 225
## 7607 Manhattan Entire home/apt 240
## 7608 Brooklyn Entire home/apt 98
## 7609 Manhattan Entire home/apt 100
## 7610 Manhattan Entire home/apt 200
## 7611 Brooklyn Entire home/apt 150
## 7612 Brooklyn Private room 65
## 7613 Brooklyn Private room 129
## 7614 Brooklyn Private room 65
## 7615 Manhattan Private room 70
## 7616 Manhattan Entire home/apt 200
## 7617 Queens Private room 58
## 7618 Brooklyn Entire home/apt 180
## 7619 Manhattan Private room 120
## 7620 Manhattan Entire home/apt 244
## 7621 Brooklyn Private room 40
## 7622 Manhattan Entire home/apt 150
## 7623 Brooklyn Entire home/apt 135
## 7624 Manhattan Entire home/apt 150
## 7625 Brooklyn Entire home/apt 200
## 7626 Brooklyn Private room 65
## 7627 Brooklyn Entire home/apt 140
## 7628 Brooklyn Private room 80
## 7629 Brooklyn Entire home/apt 129
## 7630 Queens Entire home/apt 112
## 7631 Brooklyn Private room 80
## 7632 Manhattan Entire home/apt 149
## 7633 Manhattan Private room 99
## 7634 Manhattan Private room 50
## 7635 Brooklyn Entire home/apt 190
## 7636 Queens Private room 70
## 7637 Bronx Private room 30
## 7638 Manhattan Private room 96
## 7639 Brooklyn Private room 85
## 7640 Manhattan Entire home/apt 200
## 7641 Manhattan Entire home/apt 118
## 7642 Manhattan Entire home/apt 150
## 7643 Manhattan Private room 50
## 7644 Brooklyn Entire home/apt 99
## 7645 Manhattan Entire home/apt 350
## 7646 Manhattan Private room 165
## 7647 Brooklyn Entire home/apt 225
## 7648 Manhattan Entire home/apt 110
## 7649 Manhattan Entire home/apt 245
## 7650 Manhattan Private room 65
## 7651 Manhattan Private room 100
## 7652 Queens Private room 60
## 7653 Manhattan Shared room 68
## 7654 Brooklyn Private room 55
## 7655 Brooklyn Entire home/apt 195
## 7656 Manhattan Entire home/apt 120
## 7657 Brooklyn Entire home/apt 80
## 7658 Manhattan Entire home/apt 195
## 7659 Manhattan Entire home/apt 275
## 7660 Staten Island Private room 49
## 7661 Brooklyn Private room 30
## 7662 Manhattan Entire home/apt 150
## 7663 Brooklyn Entire home/apt 140
## 7664 Manhattan Entire home/apt 160
## 7665 Manhattan Private room 125
## 7666 Brooklyn Private room 48
## 7667 Brooklyn Private room 50
## 7668 Manhattan Private room 100
## 7669 Manhattan Shared room 50
## 7670 Manhattan Entire home/apt 320
## 7671 Manhattan Private room 200
## 7672 Manhattan Private room 70
## 7673 Brooklyn Private room 70
## 7674 Brooklyn Entire home/apt 200
## 7675 Manhattan Entire home/apt 100
## 7676 Manhattan Private room 150
## 7677 Manhattan Entire home/apt 185
## 7678 Manhattan Entire home/apt 125
## 7679 Brooklyn Private room 148
## 7680 Manhattan Private room 295
## 7681 Brooklyn Private room 80
## 7682 Bronx Private room 45
## 7683 Brooklyn Entire home/apt 114
## 7684 Queens Private room 37
## 7685 Brooklyn Private room 45
## 7686 Brooklyn Entire home/apt 85
## 7687 Queens Private room 150
## 7688 Manhattan Entire home/apt 240
## 7689 Manhattan Private room 65
## 7690 Manhattan Entire home/apt 280
## 7691 Brooklyn Private room 65
## 7692 Brooklyn Private room 65
## 7693 Queens Private room 65
## 7694 Brooklyn Private room 120
## 7695 Brooklyn Entire home/apt 255
## 7696 Queens Private room 54
## 7697 Manhattan Entire home/apt 175
## 7698 Brooklyn Private room 90
## 7699 Brooklyn Private room 90
## 7700 Brooklyn Private room 90
## 7701 Manhattan Entire home/apt 120
## 7702 Brooklyn Entire home/apt 210
## 7703 Manhattan Entire home/apt 150
## 7704 Manhattan Entire home/apt 140
## 7705 Bronx Private room 80
## 7706 Brooklyn Entire home/apt 200
## 7707 Brooklyn Entire home/apt 450
## 7708 Manhattan Entire home/apt 200
## 7709 Manhattan Private room 116
## 7710 Manhattan Entire home/apt 215
## 7711 Manhattan Entire home/apt 160
## 7712 Manhattan Private room 150
## 7713 Brooklyn Private room 40
## 7714 Brooklyn Entire home/apt 149
## 7715 Manhattan Entire home/apt 65
## 7716 Brooklyn Entire home/apt 260
## 7717 Brooklyn Entire home/apt 400
## 7718 Brooklyn Private room 90
## 7719 Queens Private room 75
## 7720 Manhattan Private room 75
## 7721 Manhattan Entire home/apt 110
## 7722 Brooklyn Private room 115
## 7723 Brooklyn Private room 20
## 7724 Brooklyn Private room 49
## 7725 Queens Private room 100
## 7726 Manhattan Entire home/apt 82
## 7727 Manhattan Private room 90
## 7728 Brooklyn Private room 69
## 7729 Brooklyn Private room 69
## 7730 Brooklyn Entire home/apt 249
## 7731 Brooklyn Private room 89
## 7732 Brooklyn Private room 159
## 7733 Manhattan Entire home/apt 220
## 7734 Brooklyn Private room 95
## 7735 Brooklyn Private room 60
## 7736 Manhattan Entire home/apt 179
## 7737 Manhattan Private room 120
## 7738 Brooklyn Entire home/apt 275
## 7739 Manhattan Private room 86
## 7740 Brooklyn Private room 62
## 7741 Manhattan Entire home/apt 165
## 7742 Brooklyn Entire home/apt 89
## 7743 Manhattan Entire home/apt 116
## 7744 Brooklyn Entire home/apt 172
## 7745 Manhattan Entire home/apt 125
## 7746 Queens Entire home/apt 90
## 7747 Brooklyn Private room 50
## 7748 Manhattan Entire home/apt 250
## 7749 Brooklyn Entire home/apt 185
## 7750 Bronx Entire home/apt 63
## 7751 Manhattan Entire home/apt 163
## 7752 Manhattan Shared room 40
## 7753 Manhattan Private room 195
## 7754 Brooklyn Private room 89
## 7755 Manhattan Shared room 45
## 7756 Brooklyn Private room 60
## 7757 Manhattan Private room 125
## 7758 Manhattan Entire home/apt 220
## 7759 Brooklyn Entire home/apt 85
## 7760 Brooklyn Entire home/apt 165
## 7761 Manhattan Entire home/apt 144
## 7762 Brooklyn Private room 75
## 7763 Brooklyn Private room 60
## 7764 Brooklyn Private room 95
## 7765 Brooklyn Private room 95
## 7766 Brooklyn Private room 95
## 7767 Brooklyn Private room 95
## 7768 Brooklyn Private room 95
## 7769 Bronx Private room 65
## 7770 Staten Island Entire home/apt 65
## 7771 Brooklyn Entire home/apt 110
## 7772 Queens Private room 47
## 7773 Queens Private room 175
## 7774 Brooklyn Entire home/apt 234
## 7775 Brooklyn Entire home/apt 105
## 7776 Queens Private room 47
## 7777 Queens Private room 55
## 7778 Manhattan Entire home/apt 146
## 7779 Staten Island Entire home/apt 60
## 7780 Manhattan Private room 61
## 7781 Manhattan Private room 84
## 7782 Manhattan Entire home/apt 179
## 7783 Queens Private room 100
## 7784 Brooklyn Entire home/apt 175
## 7785 Manhattan Entire home/apt 250
## 7786 Manhattan Private room 150
## 7787 Brooklyn Entire home/apt 83
## 7788 Brooklyn Entire home/apt 105
## 7789 Brooklyn Entire home/apt 125
## 7790 Brooklyn Private room 150
## 7791 Brooklyn Private room 69
## 7792 Brooklyn Entire home/apt 190
## 7793 Brooklyn Private room 76
## 7794 Brooklyn Private room 45
## 7795 Manhattan Private room 142
## 7796 Manhattan Entire home/apt 125
## 7797 Manhattan Entire home/apt 200
## 7798 Brooklyn Private room 259
## 7799 Brooklyn Entire home/apt 275
## 7800 Manhattan Entire home/apt 179
## 7801 Brooklyn Private room 70
## 7802 Manhattan Private room 300
## 7803 Manhattan Entire home/apt 300
## 7804 Brooklyn Entire home/apt 259
## 7805 Manhattan Private room 50
## 7806 Manhattan Entire home/apt 300
## 7807 Brooklyn Entire home/apt 95
## 7808 Brooklyn Private room 132
## 7809 Queens Private room 80
## 7810 Manhattan Private room 85
## 7811 Brooklyn Entire home/apt 246
## 7812 Queens Private room 50
## 7813 Brooklyn Entire home/apt 75
## 7814 Manhattan Entire home/apt 209
## 7815 Manhattan Entire home/apt 330
## 7816 Queens Shared room 55
## 7817 Manhattan Private room 60
## 7818 Brooklyn Entire home/apt 180
## 7819 Manhattan Entire home/apt 300
## 7820 Manhattan Entire home/apt 175
## 7821 Manhattan Private room 100
## 7822 Brooklyn Entire home/apt 175
## 7823 Brooklyn Private room 60
## 7824 Brooklyn Entire home/apt 175
## 7825 Manhattan Private room 105
## 7826 Brooklyn Entire home/apt 49
## 7827 Brooklyn Private room 65
## 7828 Manhattan Entire home/apt 450
## 7829 Manhattan Entire home/apt 185
## 7830 Brooklyn Private room 57
## 7831 Brooklyn Entire home/apt 79
## 7832 Brooklyn Entire home/apt 218
## 7833 Manhattan Entire home/apt 70
## 7834 Brooklyn Entire home/apt 350
## 7835 Brooklyn Private room 100
## 7836 Brooklyn Entire home/apt 150
## 7837 Queens Entire home/apt 45
## 7838 Queens Private room 46
## 7839 Brooklyn Private room 50
## 7840 Manhattan Entire home/apt 285
## 7841 Brooklyn Entire home/apt 220
## 7842 Manhattan Private room 125
## 7843 Manhattan Private room 80
## 7844 Queens Private room 58
## 7845 Brooklyn Entire home/apt 100
## 7846 Brooklyn Entire home/apt 175
## 7847 Manhattan Entire home/apt 1200
## 7848 Queens Private room 60
## 7849 Brooklyn Entire home/apt 160
## 7850 Manhattan Private room 65
## 7851 Manhattan Entire home/apt 499
## 7852 Manhattan Entire home/apt 350
## 7853 Brooklyn Entire home/apt 105
## 7854 Brooklyn Entire home/apt 245
## 7855 Brooklyn Entire home/apt 139
## 7856 Manhattan Private room 50
## 7857 Manhattan Private room 90
## 7858 Queens Entire home/apt 90
## 7859 Manhattan Private room 250
## 7860 Brooklyn Private room 70
## 7861 Manhattan Entire home/apt 150
## 7862 Manhattan Private room 150
## 7863 Brooklyn Entire home/apt 109
## 7864 Manhattan Entire home/apt 140
## 7865 Brooklyn Private room 31
## 7866 Manhattan Entire home/apt 140
## 7867 Manhattan Private room 65
## 7868 Manhattan Entire home/apt 85
## 7869 Brooklyn Private room 35
## 7870 Manhattan Entire home/apt 155
## 7871 Brooklyn Private room 65
## 7872 Brooklyn Private room 100
## 7873 Manhattan Private room 100
## 7874 Manhattan Private room 125
## 7875 Manhattan Entire home/apt 170
## 7876 Brooklyn Private room 65
## 7877 Brooklyn Private room 38
## 7878 Manhattan Private room 68
## 7879 Brooklyn Private room 110
## 7880 Brooklyn Entire home/apt 100
## 7881 Manhattan Entire home/apt 125
## 7882 Manhattan Private room 60
## 7883 Manhattan Private room 80
## 7884 Manhattan Entire home/apt 95
## 7885 Manhattan Private room 163
## 7886 Brooklyn Entire home/apt 225
## 7887 Manhattan Entire home/apt 150
## 7888 Brooklyn Entire home/apt 170
## 7889 Manhattan Entire home/apt 65
## 7890 Brooklyn Private room 60
## 7891 Manhattan Entire home/apt 168
## 7892 Brooklyn Entire home/apt 100
## 7893 Manhattan Entire home/apt 195
## 7894 Queens Entire home/apt 89
## 7895 Manhattan Private room 109
## 7896 Queens Private room 150
## 7897 Queens Private room 150
## 7898 Manhattan Entire home/apt 150
## 7899 Manhattan Entire home/apt 120
## 7900 Brooklyn Private room 40
## 7901 Manhattan Entire home/apt 150
## 7902 Manhattan Private room 45
## 7903 Brooklyn Entire home/apt 159
## 7904 Manhattan Entire home/apt 149
## 7905 Queens Entire home/apt 125
## 7906 Brooklyn Entire home/apt 75
## 7907 Brooklyn Entire home/apt 109
## 7908 Manhattan Entire home/apt 499
## 7909 Brooklyn Entire home/apt 480
## 7910 Brooklyn Private room 220
## 7911 Brooklyn Private room 55
## 7912 Manhattan Entire home/apt 341
## 7913 Brooklyn Entire home/apt 108
## 7914 Brooklyn Entire home/apt 128
## 7915 Bronx Entire home/apt 110
## 7916 Brooklyn Entire home/apt 179
## 7917 Manhattan Entire home/apt 175
## 7918 Brooklyn Entire home/apt 80
## 7919 Brooklyn Entire home/apt 149
## 7920 Manhattan Private room 50
## 7921 Queens Shared room 75
## 7922 Manhattan Private room 100
## 7923 Queens Entire home/apt 369
## 7924 Brooklyn Entire home/apt 198
## 7925 Queens Private room 100
## 7926 Manhattan Entire home/apt 195
## 7927 Manhattan Entire home/apt 257
## 7928 Queens Entire home/apt 145
## 7929 Manhattan Private room 45
## 7930 Queens Private room 60
## 7931 Brooklyn Entire home/apt 120
## 7932 Brooklyn Private room 80
## 7933 Brooklyn Private room 85
## 7934 Brooklyn Entire home/apt 99
## 7935 Manhattan Entire home/apt 180
## 7936 Queens Private room 40
## 7937 Brooklyn Private room 96
## 7938 Manhattan Entire home/apt 105
## 7939 Queens Entire home/apt 80
## 7940 Manhattan Entire home/apt 100
## 7941 Brooklyn Private room 58
## 7942 Brooklyn Private room 89
## 7943 Manhattan Private room 105
## 7944 Manhattan Entire home/apt 85
## 7945 Brooklyn Private room 68
## 7946 Manhattan Entire home/apt 200
## 7947 Manhattan Entire home/apt 170
## 7948 Brooklyn Entire home/apt 60
## 7949 Manhattan Entire home/apt 285
## 7950 Manhattan Entire home/apt 90
## 7951 Brooklyn Entire home/apt 75
## 7952 Queens Entire home/apt 115
## 7953 Brooklyn Entire home/apt 118
## 7954 Brooklyn Private room 76
## 7955 Brooklyn Entire home/apt 245
## 7956 Manhattan Private room 200
## 7957 Manhattan Entire home/apt 75
## 7958 Manhattan Entire home/apt 200
## 7959 Manhattan Entire home/apt 85
## 7960 Brooklyn Entire home/apt 350
## 7961 Manhattan Private room 101
## 7962 Brooklyn Entire home/apt 110
## 7963 Manhattan Private room 125
## 7964 Manhattan Private room 89
## 7965 Manhattan Entire home/apt 180
## 7966 Brooklyn Entire home/apt 120
## 7967 Brooklyn Private room 50
## 7968 Manhattan Entire home/apt 299
## 7969 Manhattan Entire home/apt 195
## 7970 Manhattan Private room 78
## 7971 Manhattan Entire home/apt 250
## 7972 Manhattan Entire home/apt 150
## 7973 Manhattan Entire home/apt 350
## 7974 Queens Private room 78
## 7975 Brooklyn Private room 55
## 7976 Manhattan Entire home/apt 300
## 7977 Brooklyn Private room 38
## 7978 Manhattan Entire home/apt 150
## 7979 Manhattan Private room 75
## 7980 Brooklyn Private room 52
## 7981 Manhattan Entire home/apt 198
## 7982 Brooklyn Private room 49
## 7983 Manhattan Entire home/apt 950
## 7984 Manhattan Entire home/apt 105
## 7985 Manhattan Entire home/apt 225
## 7986 Brooklyn Private room 125
## 7987 Brooklyn Entire home/apt 110
## 7988 Brooklyn Private room 44
## 7989 Manhattan Shared room 77
## 7990 Brooklyn Entire home/apt 97
## 7991 Brooklyn Private room 45
## 7992 Brooklyn Entire home/apt 157
## 7993 Brooklyn Private room 80
## 7994 Manhattan Private room 50
## 7995 Queens Entire home/apt 275
## 7996 Brooklyn Private room 129
## 7997 Manhattan Entire home/apt 250
## 7998 Manhattan Shared room 36
## 7999 Manhattan Entire home/apt 200
## 8000 Manhattan Entire home/apt 185
## 8001 Manhattan Entire home/apt 130
## 8002 Queens Private room 65
## 8003 Brooklyn Entire home/apt 275
## 8004 Manhattan Entire home/apt 120
## 8005 Manhattan Entire home/apt 180
## 8006 Brooklyn Entire home/apt 123
## 8007 Brooklyn Private room 750
## 8008 Manhattan Entire home/apt 210
## 8009 Manhattan Entire home/apt 139
## 8010 Brooklyn Shared room 45
## 8011 Manhattan Private room 79
## 8012 Brooklyn Entire home/apt 345
## 8013 Brooklyn Private room 90
## 8014 Queens Entire home/apt 150
## 8015 Manhattan Entire home/apt 75
## 8016 Manhattan Entire home/apt 200
## 8017 Brooklyn Entire home/apt 100
## 8018 Brooklyn Private room 32
## 8019 Brooklyn Private room 45
## 8020 Manhattan Private room 115
## 8021 Bronx Private room 56
## 8022 Manhattan Entire home/apt 210
## 8023 Manhattan Entire home/apt 87
## 8024 Staten Island Private room 40
## 8025 Brooklyn Private room 58
## 8026 Brooklyn Entire home/apt 125
## 8027 Brooklyn Entire home/apt 100
## 8028 Brooklyn Entire home/apt 195
## 8029 Brooklyn Entire home/apt 90
## 8030 Manhattan Private room 65
## 8031 Brooklyn Private room 100
## 8032 Manhattan Entire home/apt 200
## 8033 Manhattan Private room 75
## 8034 Manhattan Entire home/apt 220
## 8035 Brooklyn Entire home/apt 225
## 8036 Brooklyn Entire home/apt 163
## 8037 Brooklyn Private room 85
## 8038 Queens Entire home/apt 150
## 8039 Brooklyn Shared room 38
## 8040 Manhattan Entire home/apt 79
## 8041 Brooklyn Entire home/apt 90
## 8042 Brooklyn Private room 100
## 8043 Manhattan Entire home/apt 99
## 8044 Brooklyn Entire home/apt 200
## 8045 Manhattan Entire home/apt 190
## 8046 Manhattan Private room 90
## 8047 Manhattan Private room 60
## 8048 Manhattan Private room 90
## 8049 Manhattan Private room 75
## 8050 Manhattan Private room 70
## 8051 Manhattan Private room 85
## 8052 Brooklyn Private room 50
## 8053 Manhattan Entire home/apt 130
## 8054 Manhattan Entire home/apt 199
## 8055 Manhattan Entire home/apt 150
## 8056 Brooklyn Entire home/apt 750
## 8057 Brooklyn Private room 80
## 8058 Brooklyn Shared room 62
## 8059 Brooklyn Private room 105
## 8060 Manhattan Entire home/apt 250
## 8061 Brooklyn Entire home/apt 350
## 8062 Brooklyn Private room 65
## 8063 Manhattan Entire home/apt 95
## 8064 Queens Entire home/apt 153
## 8065 Brooklyn Entire home/apt 150
## 8066 Manhattan Entire home/apt 280
## 8067 Manhattan Private room 70
## 8068 Manhattan Entire home/apt 155
## 8069 Brooklyn Private room 71
## 8070 Manhattan Entire home/apt 182
## 8071 Manhattan Private room 105
## 8072 Manhattan Entire home/apt 100
## 8073 Brooklyn Private room 45
## 8074 Brooklyn Entire home/apt 109
## 8075 Brooklyn Entire home/apt 95
## 8076 Brooklyn Private room 65
## 8077 Manhattan Entire home/apt 250
## 8078 Brooklyn Private room 60
## 8079 Manhattan Private room 130
## 8080 Manhattan Entire home/apt 120
## 8081 Queens Entire home/apt 200
## 8082 Manhattan Entire home/apt 190
## 8083 Brooklyn Private room 129
## 8084 Brooklyn Private room 85
## 8085 Brooklyn Entire home/apt 125
## 8086 Manhattan Entire home/apt 175
## 8087 Brooklyn Entire home/apt 130
## 8088 Brooklyn Private room 70
## 8089 Brooklyn Entire home/apt 184
## 8090 Brooklyn Private room 180
## 8091 Brooklyn Entire home/apt 100
## 8092 Bronx Entire home/apt 125
## 8093 Brooklyn Entire home/apt 150
## 8094 Manhattan Entire home/apt 105
## 8095 Brooklyn Private room 35
## 8096 Brooklyn Private room 30
## 8097 Brooklyn Private room 30
## 8098 Manhattan Entire home/apt 125
## 8099 Brooklyn Entire home/apt 190
## 8100 Manhattan Shared room 95
## 8101 Brooklyn Private room 55
## 8102 Manhattan Entire home/apt 130
## 8103 Bronx Entire home/apt 119
## 8104 Manhattan Private room 67
## 8105 Manhattan Private room 90
## 8106 Manhattan Private room 60
## 8107 Brooklyn Entire home/apt 199
## 8108 Brooklyn Entire home/apt 150
## 8109 Brooklyn Private room 115
## 8110 Manhattan Entire home/apt 100
## 8111 Brooklyn Entire home/apt 165
## 8112 Bronx Entire home/apt 105
## 8113 Brooklyn Private room 49
## 8114 Brooklyn Entire home/apt 100
## 8115 Brooklyn Private room 94
## 8116 Manhattan Private room 75
## 8117 Brooklyn Private room 60
## 8118 Manhattan Entire home/apt 322
## 8119 Brooklyn Private room 119
## 8120 Brooklyn Entire home/apt 100
## 8121 Manhattan Private room 50
## 8122 Manhattan Private room 90
## 8123 Manhattan Private room 150
## 8124 Manhattan Entire home/apt 230
## 8125 Queens Private room 59
## 8126 Manhattan Private room 90
## 8127 Manhattan Private room 95
## 8128 Brooklyn Private room 75
## 8129 Manhattan Private room 85
## 8130 Brooklyn Entire home/apt 85
## 8131 Brooklyn Entire home/apt 150
## 8132 Manhattan Entire home/apt 189
## 8133 Manhattan Private room 99
## 8134 Queens Private room 41
## 8135 Brooklyn Entire home/apt 150
## 8136 Manhattan Private room 90
## 8137 Queens Private room 37
## 8138 Manhattan Entire home/apt 300
## 8139 Brooklyn Private room 380
## 8140 Brooklyn Private room 75
## 8141 Manhattan Entire home/apt 200
## 8142 Manhattan Private room 50
## 8143 Brooklyn Entire home/apt 225
## 8144 Manhattan Entire home/apt 150
## 8145 Brooklyn Private room 55
## 8146 Manhattan Private room 175
## 8147 Manhattan Entire home/apt 276
## 8148 Brooklyn Private room 45
## 8149 Manhattan Entire home/apt 199
## 8150 Manhattan Private room 48
## 8151 Brooklyn Entire home/apt 145
## 8152 Brooklyn Private room 100
## 8153 Brooklyn Private room 62
## 8154 Manhattan Entire home/apt 230
## 8155 Manhattan Private room 90
## 8156 Brooklyn Entire home/apt 83
## 8157 Brooklyn Entire home/apt 120
## 8158 Brooklyn Private room 65
## 8159 Brooklyn Entire home/apt 140
## 8160 Brooklyn Private room 80
## 8161 Brooklyn Entire home/apt 75
## 8162 Manhattan Entire home/apt 300
## 8163 Brooklyn Private room 110
## 8164 Brooklyn Entire home/apt 85
## 8165 Manhattan Entire home/apt 120
## 8166 Brooklyn Entire home/apt 100
## 8167 Brooklyn Private room 65
## 8168 Brooklyn Private room 80
## 8169 Manhattan Entire home/apt 299
## 8170 Manhattan Entire home/apt 16
## 8171 Brooklyn Private room 46
## 8172 Manhattan Entire home/apt 245
## 8173 Brooklyn Private room 55
## 8174 Manhattan Private room 45
## 8175 Brooklyn Entire home/apt 100
## 8176 Brooklyn Entire home/apt 165
## 8177 Brooklyn Private room 60
## 8178 Brooklyn Private room 60
## 8179 Brooklyn Entire home/apt 140
## 8180 Brooklyn Entire home/apt 300
## 8181 Brooklyn Entire home/apt 249
## 8182 Brooklyn Entire home/apt 175
## 8183 Brooklyn Private room 35
## 8184 Brooklyn Private room 55
## 8185 Brooklyn Entire home/apt 135
## 8186 Manhattan Private room 60
## 8187 Manhattan Private room 75
## 8188 Manhattan Entire home/apt 300
## 8189 Manhattan Private room 79
## 8190 Brooklyn Private room 65
## 8191 Brooklyn Private room 129
## 8192 Brooklyn Entire home/apt 280
## 8193 Brooklyn Entire home/apt 132
## 8194 Brooklyn Private room 70
## 8195 Brooklyn Private room 52
## 8196 Brooklyn Private room 148
## 8197 Queens Entire home/apt 115
## 8198 Manhattan Entire home/apt 175
## 8199 Manhattan Shared room 130
## 8200 Brooklyn Private room 35
## 8201 Brooklyn Entire home/apt 109
## 8202 Brooklyn Private room 60
## 8203 Manhattan Entire home/apt 150
## 8204 Manhattan Entire home/apt 207
## 8205 Manhattan Shared room 63
## 8206 Manhattan Entire home/apt 185
## 8207 Brooklyn Entire home/apt 445
## 8208 Manhattan Entire home/apt 125
## 8209 Brooklyn Private room 35
## 8210 Manhattan Entire home/apt 200
## 8211 Manhattan Entire home/apt 141
## 8212 Manhattan Entire home/apt 120
## 8213 Manhattan Entire home/apt 145
## 8214 Manhattan Private room 120
## 8215 Staten Island Entire home/apt 89
## 8216 Brooklyn Entire home/apt 90
## 8217 Brooklyn Entire home/apt 95
## 8218 Brooklyn Private room 120
## 8219 Manhattan Entire home/apt 295
## 8220 Brooklyn Entire home/apt 104
## 8221 Brooklyn Entire home/apt 150
## 8222 Brooklyn Private room 75
## 8223 Manhattan Private room 170
## 8224 Manhattan Entire home/apt 194
## 8225 Queens Private room 49
## 8226 Brooklyn Entire home/apt 125
## 8227 Brooklyn Private room 84
## 8228 Manhattan Entire home/apt 140
## 8229 Manhattan Private room 50
## 8230 Manhattan Private room 89
## 8231 Brooklyn Private room 55
## 8232 Brooklyn Private room 62
## 8233 Brooklyn Entire home/apt 100
## 8234 Brooklyn Private room 40
## 8235 Brooklyn Entire home/apt 350
## 8236 Brooklyn Private room 75
## 8237 Manhattan Entire home/apt 190
## 8238 Manhattan Entire home/apt 350
## 8239 Manhattan Entire home/apt 300
## 8240 Manhattan Entire home/apt 295
## 8241 Manhattan Private room 113
## 8242 Manhattan Private room 95
## 8243 Manhattan Private room 59
## 8244 Brooklyn Entire home/apt 100
## 8245 Manhattan Private room 69
## 8246 Manhattan Private room 190
## 8247 Manhattan Private room 110
## 8248 Brooklyn Entire home/apt 65
## 8249 Brooklyn Entire home/apt 185
## 8250 Brooklyn Entire home/apt 152
## 8251 Manhattan Entire home/apt 249
## 8252 Brooklyn Private room 100
## 8253 Manhattan Private room 95
## 8254 Manhattan Entire home/apt 130
## 8255 Brooklyn Entire home/apt 145
## 8256 Manhattan Entire home/apt 325
## 8257 Manhattan Private room 75
## 8258 Brooklyn Private room 37
## 8259 Queens Entire home/apt 75
## 8260 Brooklyn Private room 50
## 8261 Queens Entire home/apt 150
## 8262 Manhattan Entire home/apt 99
## 8263 Brooklyn Private room 50
## 8264 Brooklyn Private room 65
## 8265 Manhattan Entire home/apt 150
## 8266 Manhattan Private room 88
## 8267 Manhattan Entire home/apt 190
## 8268 Manhattan Private room 125
## 8269 Manhattan Entire home/apt 284
## 8270 Manhattan Private room 150
## 8271 Manhattan Private room 16
## 8272 Manhattan Entire home/apt 190
## 8273 Brooklyn Private room 60
## 8274 Manhattan Private room 99
## 8275 Manhattan Entire home/apt 100
## 8276 Manhattan Private room 35
## 8277 Manhattan Entire home/apt 167
## 8278 Manhattan Private room 140
## 8279 Manhattan Entire home/apt 175
## 8280 Manhattan Entire home/apt 249
## 8281 Manhattan Private room 110
## 8282 Manhattan Entire home/apt 250
## 8283 Brooklyn Private room 129
## 8284 Manhattan Private room 95
## 8285 Manhattan Entire home/apt 280
## 8286 Manhattan Entire home/apt 200
## 8287 Brooklyn Entire home/apt 276
## 8288 Manhattan Entire home/apt 130
## 8289 Manhattan Entire home/apt 40
## 8290 Queens Entire home/apt 122
## 8291 Manhattan Private room 64
## 8292 Manhattan Entire home/apt 399
## 8293 Manhattan Entire home/apt 495
## 8294 Brooklyn Entire home/apt 145
## 8295 Brooklyn Private room 53
## 8296 Queens Entire home/apt 100
## 8297 Brooklyn Private room 42
## 8298 Manhattan Entire home/apt 200
## 8299 Brooklyn Entire home/apt 130
## 8300 Manhattan Private room 200
## 8301 Brooklyn Private room 75
## 8302 Brooklyn Private room 45
## 8303 Brooklyn Private room 52
## 8304 Manhattan Private room 100
## 8305 Brooklyn Entire home/apt 350
## 8306 Manhattan Private room 70
## 8307 Brooklyn Private room 39
## 8308 Manhattan Entire home/apt 120
## 8309 Manhattan Entire home/apt 239
## 8310 Manhattan Entire home/apt 375
## 8311 Brooklyn Entire home/apt 125
## 8312 Brooklyn Entire home/apt 375
## 8313 Brooklyn Private room 45
## 8314 Queens Private room 60
## 8315 Brooklyn Private room 75
## 8316 Manhattan Private room 70
## 8317 Bronx Entire home/apt 65
## 8318 Manhattan Private room 250
## 8319 Manhattan Private room 99
## 8320 Brooklyn Private room 95
## 8321 Queens Private room 46
## 8322 Manhattan Entire home/apt 275
## 8323 Queens Entire home/apt 168
## 8324 Brooklyn Private room 45
## 8325 Brooklyn Entire home/apt 80
## 8326 Manhattan Entire home/apt 150
## 8327 Manhattan Entire home/apt 115
## 8328 Brooklyn Private room 65
## 8329 Brooklyn Entire home/apt 201
## 8330 Brooklyn Private room 55
## 8331 Brooklyn Private room 120
## 8332 Queens Private room 50
## 8333 Manhattan Entire home/apt 100
## 8334 Manhattan Entire home/apt 100
## 8335 Brooklyn Entire home/apt 59
## 8336 Brooklyn Shared room 44
## 8337 Brooklyn Private room 79
## 8338 Brooklyn Private room 56
## 8339 Manhattan Entire home/apt 140
## 8340 Manhattan Entire home/apt 160
## 8341 Brooklyn Entire home/apt 119
## 8342 Manhattan Entire home/apt 185
## 8343 Brooklyn Private room 55
## 8344 Manhattan Private room 58
## 8345 Brooklyn Private room 85
## 8346 Brooklyn Private room 100
## 8347 Brooklyn Entire home/apt 110
## 8348 Manhattan Private room 80
## 8349 Bronx Entire home/apt 115
## 8350 Brooklyn Private room 99
## 8351 Queens Entire home/apt 105
## 8352 Manhattan Private room 110
## 8353 Brooklyn Private room 70
## 8354 Manhattan Private room 160
## 8355 Brooklyn Private room 150
## 8356 Manhattan Entire home/apt 90
## 8357 Brooklyn Entire home/apt 150
## 8358 Brooklyn Entire home/apt 86
## 8359 Manhattan Entire home/apt 200
## 8360 Manhattan Entire home/apt 272
## 8361 Manhattan Entire home/apt 86
## 8362 Brooklyn Entire home/apt 200
## 8363 Manhattan Private room 129
## 8364 Manhattan Private room 50
## 8365 Manhattan Private room 95
## 8366 Brooklyn Entire home/apt 400
## 8367 Manhattan Entire home/apt 212
## 8368 Brooklyn Entire home/apt 160
## 8369 Manhattan Private room 90
## 8370 Brooklyn Entire home/apt 145
## 8371 Queens Entire home/apt 125
## 8372 Manhattan Entire home/apt 250
## 8373 Brooklyn Entire home/apt 100
## 8374 Brooklyn Private room 75
## 8375 Brooklyn Private room 75
## 8376 Manhattan Entire home/apt 195
## 8377 Brooklyn Entire home/apt 125
## 8378 Brooklyn Entire home/apt 85
## 8379 Manhattan Entire home/apt 200
## 8380 Manhattan Entire home/apt 449
## 8381 Brooklyn Entire home/apt 150
## 8382 Brooklyn Entire home/apt 250
## 8383 Brooklyn Private room 100
## 8384 Brooklyn Entire home/apt 120
## 8385 Manhattan Private room 115
## 8386 Manhattan Private room 89
## 8387 Manhattan Entire home/apt 180
## 8388 Queens Entire home/apt 70
## 8389 Manhattan Private room 140
## 8390 Brooklyn Private room 37
## 8391 Brooklyn Private room 70
## 8392 Brooklyn Private room 88
## 8393 Brooklyn Entire home/apt 320
## 8394 Manhattan Entire home/apt 200
## 8395 Brooklyn Private room 55
## 8396 Manhattan Entire home/apt 195
## 8397 Brooklyn Private room 115
## 8398 Manhattan Private room 125
## 8399 Manhattan Entire home/apt 155
## 8400 Manhattan Entire home/apt 170
## 8401 Manhattan Private room 115
## 8402 Brooklyn Entire home/apt 74
## 8403 Brooklyn Private room 100
## 8404 Manhattan Entire home/apt 125
## 8405 Brooklyn Private room 70
## 8406 Brooklyn Entire home/apt 110
## 8407 Brooklyn Entire home/apt 395
## 8408 Brooklyn Entire home/apt 215
## 8409 Brooklyn Entire home/apt 150
## 8410 Manhattan Private room 295
## 8411 Brooklyn Private room 60
## 8412 Brooklyn Private room 55
## 8413 Queens Entire home/apt 85
## 8414 Manhattan Private room 40
## 8415 Brooklyn Entire home/apt 200
## 8416 Brooklyn Private room 90
## 8417 Manhattan Private room 49
## 8418 Manhattan Private room 50
## 8419 Brooklyn Entire home/apt 85
## 8420 Brooklyn Entire home/apt 350
## 8421 Brooklyn Private room 38
## 8422 Brooklyn Private room 158
## 8423 Manhattan Entire home/apt 245
## 8424 Brooklyn Entire home/apt 110
## 8425 Manhattan Private room 55
## 8426 Manhattan Entire home/apt 275
## 8427 Manhattan Private room 50
## 8428 Queens Private room 45
## 8429 Manhattan Private room 85
## 8430 Brooklyn Entire home/apt 150
## 8431 Manhattan Entire home/apt 247
## 8432 Manhattan Private room 105
## 8433 Manhattan Entire home/apt 400
## 8434 Queens Entire home/apt 155
## 8435 Manhattan Entire home/apt 150
## 8436 Manhattan Entire home/apt 120
## 8437 Queens Private room 69
## 8438 Manhattan Entire home/apt 199
## 8439 Manhattan Entire home/apt 499
## 8440 Manhattan Entire home/apt 150
## 8441 Brooklyn Private room 300
## 8442 Brooklyn Entire home/apt 105
## 8443 Queens Private room 45
## 8444 Brooklyn Entire home/apt 105
## 8445 Manhattan Private room 130
## 8446 Manhattan Private room 75
## 8447 Brooklyn Entire home/apt 150
## 8448 Brooklyn Entire home/apt 159
## 8449 Brooklyn Entire home/apt 100
## 8450 Brooklyn Entire home/apt 145
## 8451 Manhattan Entire home/apt 220
## 8452 Brooklyn Entire home/apt 160
## 8453 Brooklyn Entire home/apt 175
## 8454 Manhattan Private room 82
## 8455 Manhattan Entire home/apt 200
## 8456 Manhattan Entire home/apt 300
## 8457 Manhattan Entire home/apt 199
## 8458 Queens Private room 85
## 8459 Manhattan Entire home/apt 135
## 8460 Manhattan Entire home/apt 150
## 8461 Brooklyn Private room 65
## 8462 Brooklyn Entire home/apt 395
## 8463 Manhattan Entire home/apt 379
## 8464 Manhattan Entire home/apt 250
## 8465 Manhattan Private room 90
## 8466 Brooklyn Private room 40
## 8467 Manhattan Entire home/apt 200
## 8468 Brooklyn Entire home/apt 133
## 8469 Manhattan Entire home/apt 140
## 8470 Manhattan Entire home/apt 100
## 8471 Brooklyn Entire home/apt 85
## 8472 Manhattan Entire home/apt 385
## 8473 Brooklyn Private room 50
## 8474 Brooklyn Entire home/apt 140
## 8475 Manhattan Entire home/apt 120
## 8476 Manhattan Entire home/apt 110
## 8477 Brooklyn Private room 106
## 8478 Manhattan Entire home/apt 115
## 8479 Queens Entire home/apt 120
## 8480 Queens Entire home/apt 300
## 8481 Brooklyn Private room 59
## 8482 Queens Entire home/apt 140
## 8483 Brooklyn Private room 99
## 8484 Queens Private room 52
## 8485 Manhattan Entire home/apt 125
## 8486 Queens Private room 150
## 8487 Manhattan Private room 65
## 8488 Manhattan Entire home/apt 249
## 8489 Manhattan Private room 84
## 8490 Queens Private room 53
## 8491 Manhattan Entire home/apt 340
## 8492 Brooklyn Private room 80
## 8493 Brooklyn Entire home/apt 75
## 8494 Brooklyn Private room 80
## 8495 Brooklyn Private room 78
## 8496 Brooklyn Entire home/apt 149
## 8497 Brooklyn Private room 80
## 8498 Brooklyn Entire home/apt 115
## 8499 Manhattan Private room 90
## 8500 Brooklyn Entire home/apt 175
## 8501 Manhattan Entire home/apt 350
## 8502 Manhattan Entire home/apt 194
## 8503 Manhattan Entire home/apt 175
## 8504 Manhattan Entire home/apt 350
## 8505 Manhattan Private room 63
## 8506 Brooklyn Entire home/apt 150
## 8507 Manhattan Entire home/apt 180
## 8508 Brooklyn Private room 64
## 8509 Manhattan Entire home/apt 185
## 8510 Manhattan Private room 80
## 8511 Manhattan Entire home/apt 75
## 8512 Staten Island Entire home/apt 105
## 8513 Queens Entire home/apt 130
## 8514 Manhattan Entire home/apt 264
## 8515 Brooklyn Entire home/apt 215
## 8516 Manhattan Private room 85
## 8517 Queens Private room 35
## 8518 Queens Private room 50
## 8519 Brooklyn Entire home/apt 145
## 8520 Manhattan Entire home/apt 150
## 8521 Brooklyn Entire home/apt 175
## 8522 Bronx Private room 680
## 8523 Manhattan Entire home/apt 900
## 8524 Brooklyn Private room 95
## 8525 Brooklyn Private room 60
## 8526 Brooklyn Private room 70
## 8527 Manhattan Entire home/apt 240
## 8528 Brooklyn Entire home/apt 150
## 8529 Manhattan Entire home/apt 150
## 8530 Manhattan Entire home/apt 175
## 8531 Manhattan Entire home/apt 1000
## 8532 Brooklyn Private room 48
## 8533 Brooklyn Private room 42
## 8534 Manhattan Private room 80
## 8535 Brooklyn Entire home/apt 150
## 8536 Manhattan Entire home/apt 195
## 8537 Brooklyn Entire home/apt 145
## 8538 Manhattan Private room 75
## 8539 Queens Entire home/apt 85
## 8540 Brooklyn Entire home/apt 90
## 8541 Brooklyn Private room 53
## 8542 Manhattan Entire home/apt 155
## 8543 Brooklyn Private room 49
## 8544 Brooklyn Private room 78
## 8545 Manhattan Private room 100
## 8546 Brooklyn Private room 85
## 8547 Queens Private room 225
## 8548 Brooklyn Private room 199
## 8549 Manhattan Entire home/apt 350
## 8550 Manhattan Entire home/apt 120
## 8551 Queens Private room 70
## 8552 Manhattan Entire home/apt 250
## 8553 Manhattan Private room 180
## 8554 Brooklyn Entire home/apt 145
## 8555 Manhattan Entire home/apt 130
## 8556 Queens Private room 149
## 8557 Manhattan Private room 60
## 8558 Manhattan Entire home/apt 140
## 8559 Brooklyn Private room 60
## 8560 Brooklyn Entire home/apt 350
## 8561 Brooklyn Entire home/apt 175
## 8562 Manhattan Private room 110
## 8563 Manhattan Entire home/apt 177
## 8564 Brooklyn Entire home/apt 275
## 8565 Queens Entire home/apt 99
## 8566 Manhattan Private room 105
## 8567 Queens Entire home/apt 200
## 8568 Manhattan Private room 58
## 8569 Manhattan Private room 100
## 8570 Brooklyn Private room 45
## 8571 Brooklyn Private room 110
## 8572 Manhattan Entire home/apt 80
## 8573 Manhattan Private room 75
## 8574 Manhattan Entire home/apt 700
## 8575 Brooklyn Entire home/apt 165
## 8576 Brooklyn Private room 80
## 8577 Brooklyn Entire home/apt 145
## 8578 Manhattan Private room 125
## 8579 Brooklyn Private room 45
## 8580 Brooklyn Private room 30
## 8581 Manhattan Private room 81
## 8582 Brooklyn Entire home/apt 49
## 8583 Brooklyn Entire home/apt 225
## 8584 Brooklyn Private room 70
## 8585 Brooklyn Entire home/apt 120
## 8586 Manhattan Entire home/apt 175
## 8587 Manhattan Entire home/apt 130
## 8588 Brooklyn Entire home/apt 130
## 8589 Manhattan Entire home/apt 150
## 8590 Brooklyn Entire home/apt 95
## 8591 Brooklyn Entire home/apt 300
## 8592 Queens Entire home/apt 180
## 8593 Brooklyn Entire home/apt 375
## 8594 Brooklyn Private room 75
## 8595 Manhattan Private room 75
## 8596 Manhattan Private room 70
## 8597 Manhattan Entire home/apt 300
## 8598 Queens Private room 60
## 8599 Brooklyn Private room 60
## 8600 Brooklyn Private room 158
## 8601 Manhattan Entire home/apt 184
## 8602 Manhattan Private room 50
## 8603 Manhattan Entire home/apt 230
## 8604 Manhattan Private room 95
## 8605 Brooklyn Entire home/apt 110
## 8606 Manhattan Entire home/apt 120
## 8607 Brooklyn Entire home/apt 189
## 8608 Brooklyn Entire home/apt 98
## 8609 Manhattan Entire home/apt 150
## 8610 Brooklyn Entire home/apt 100
## 8611 Brooklyn Private room 85
## 8612 Manhattan Entire home/apt 200
## 8613 Manhattan Entire home/apt 450
## 8614 Brooklyn Entire home/apt 250
## 8615 Brooklyn Private room 100
## 8616 Queens Private room 40
## 8617 Manhattan Private room 50
## 8618 Manhattan Private room 80
## 8619 Brooklyn Entire home/apt 90
## 8620 Brooklyn Entire home/apt 150
## 8621 Brooklyn Private room 80
## 8622 Manhattan Private room 89
## 8623 Brooklyn Private room 90
## 8624 Brooklyn Entire home/apt 91
## 8625 Manhattan Private room 85
## 8626 Manhattan Entire home/apt 250
## 8627 Queens Private room 50
## 8628 Manhattan Entire home/apt 160
## 8629 Manhattan Private room 60
## 8630 Brooklyn Entire home/apt 150
## 8631 Brooklyn Private room 90
## 8632 Manhattan Entire home/apt 225
## 8633 Queens Entire home/apt 290
## 8634 Brooklyn Entire home/apt 95
## 8635 Manhattan Entire home/apt 139
## 8636 Brooklyn Entire home/apt 295
## 8637 Manhattan Private room 140
## 8638 Manhattan Entire home/apt 399
## 8639 Manhattan Private room 100
## 8640 Brooklyn Private room 80
## 8641 Manhattan Entire home/apt 135
## 8642 Manhattan Private room 100
## 8643 Brooklyn Entire home/apt 175
## 8644 Manhattan Private room 70
## 8645 Brooklyn Private room 50
## 8646 Brooklyn Private room 52
## 8647 Manhattan Private room 140
## 8648 Manhattan Entire home/apt 169
## 8649 Brooklyn Entire home/apt 173
## 8650 Brooklyn Entire home/apt 169
## 8651 Brooklyn Shared room 27
## 8652 Manhattan Entire home/apt 150
## 8653 Brooklyn Entire home/apt 145
## 8654 Manhattan Private room 70
## 8655 Brooklyn Entire home/apt 205
## 8656 Manhattan Entire home/apt 145
## 8657 Brooklyn Private room 88
## 8658 Brooklyn Entire home/apt 179
## 8659 Brooklyn Entire home/apt 200
## 8660 Brooklyn Entire home/apt 165
## 8661 Brooklyn Private room 89
## 8662 Manhattan Private room 85
## 8663 Manhattan Entire home/apt 240
## 8664 Brooklyn Entire home/apt 95
## 8665 Brooklyn Private room 99
## 8666 Brooklyn Private room 70
## 8667 Brooklyn Entire home/apt 99
## 8668 Brooklyn Entire home/apt 177
## 8669 Manhattan Entire home/apt 120
## 8670 Manhattan Entire home/apt 300
## 8671 Manhattan Private room 40
## 8672 Manhattan Entire home/apt 280
## 8673 Queens Private room 59
## 8674 Brooklyn Entire home/apt 100
## 8675 Manhattan Entire home/apt 150
## 8676 Manhattan Entire home/apt 140
## 8677 Manhattan Entire home/apt 400
## 8678 Brooklyn Entire home/apt 250
## 8679 Manhattan Private room 75
## 8680 Brooklyn Entire home/apt 175
## 8681 Manhattan Private room 85
## 8682 Brooklyn Private room 125
## 8683 Brooklyn Entire home/apt 179
## 8684 Manhattan Entire home/apt 150
## 8685 Manhattan Entire home/apt 197
## 8686 Brooklyn Private room 68
## 8687 Manhattan Entire home/apt 150
## 8688 Brooklyn Private room 69
## 8689 Manhattan Entire home/apt 200
## 8690 Manhattan Entire home/apt 125
## 8691 Manhattan Private room 130
## 8692 Manhattan Private room 97
## 8693 Brooklyn Shared room 50
## 8694 Brooklyn Entire home/apt 175
## 8695 Brooklyn Private room 100
## 8696 Brooklyn Entire home/apt 150
## 8697 Manhattan Entire home/apt 145
## 8698 Manhattan Private room 100
## 8699 Manhattan Private room 130
## 8700 Queens Private room 45
## 8701 Brooklyn Entire home/apt 600
## 8702 Brooklyn Entire home/apt 125
## 8703 Brooklyn Entire home/apt 95
## 8704 Manhattan Entire home/apt 130
## 8705 Queens Private room 44
## 8706 Brooklyn Entire home/apt 190
## 8707 Manhattan Private room 60
## 8708 Brooklyn Entire home/apt 199
## 8709 Brooklyn Entire home/apt 49
## 8710 Manhattan Private room 45
## 8711 Manhattan Entire home/apt 265
## 8712 Brooklyn Entire home/apt 220
## 8713 Brooklyn Private room 52
## 8714 Brooklyn Entire home/apt 180
## 8715 Manhattan Entire home/apt 127
## 8716 Manhattan Private room 108
## 8717 Queens Entire home/apt 150
## 8718 Brooklyn Entire home/apt 440
## 8719 Manhattan Private room 100
## 8720 Brooklyn Entire home/apt 200
## 8721 Brooklyn Entire home/apt 175
## 8722 Manhattan Entire home/apt 180
## 8723 Manhattan Entire home/apt 250
## 8724 Bronx Private room 99
## 8725 Brooklyn Private room 75
## 8726 Brooklyn Entire home/apt 150
## 8727 Queens Private room 49
## 8728 Manhattan Entire home/apt 1495
## 8729 Manhattan Entire home/apt 100
## 8730 Brooklyn Private room 110
## 8731 Queens Private room 45
## 8732 Manhattan Entire home/apt 399
## 8733 Brooklyn Private room 103
## 8734 Bronx Private room 33
## 8735 Queens Entire home/apt 86
## 8736 Queens Entire home/apt 110
## 8737 Brooklyn Entire home/apt 160
## 8738 Queens Private room 50
## 8739 Brooklyn Private room 55
## 8740 Brooklyn Private room 100
## 8741 Manhattan Private room 80
## 8742 Queens Entire home/apt 85
## 8743 Manhattan Private room 100
## 8744 Brooklyn Entire home/apt 275
## 8745 Manhattan Entire home/apt 450
## 8746 Brooklyn Private room 80
## 8747 Manhattan Entire home/apt 275
## 8748 Manhattan Entire home/apt 120
## 8749 Manhattan Entire home/apt 250
## 8750 Brooklyn Entire home/apt 250
## 8751 Queens Private room 85
## 8752 Manhattan Private room 100
## 8753 Brooklyn Private room 65
## 8754 Queens Private room 68
## 8755 Manhattan Entire home/apt 170
## 8756 Brooklyn Private room 50
## 8757 Brooklyn Private room 45
## 8758 Brooklyn Private room 48
## 8759 Brooklyn Private room 43
## 8760 Brooklyn Private room 47
## 8761 Manhattan Entire home/apt 260
## 8762 Brooklyn Entire home/apt 75
## 8763 Manhattan Shared room 160
## 8764 Bronx Entire home/apt 159
## 8765 Brooklyn Private room 50
## 8766 Brooklyn Entire home/apt 100
## 8767 Brooklyn Entire home/apt 60
## 8768 Brooklyn Private room 80
## 8769 Brooklyn Entire home/apt 115
## 8770 Manhattan Entire home/apt 200
## 8771 Queens Entire home/apt 160
## 8772 Manhattan Entire home/apt 109
## 8773 Brooklyn Private room 25
## 8774 Brooklyn Entire home/apt 280
## 8775 Queens Entire home/apt 120
## 8776 Brooklyn Entire home/apt 98
## 8777 Brooklyn Private room 70
## 8778 Brooklyn Private room 55
## 8779 Queens Entire home/apt 100
## 8780 Manhattan Entire home/apt 200
## 8781 Manhattan Entire home/apt 120
## 8782 Brooklyn Entire home/apt 150
## 8783 Staten Island Entire home/apt 155
## 8784 Brooklyn Private room 60
## 8785 Manhattan Private room 200
## 8786 Manhattan Entire home/apt 200
## 8787 Brooklyn Shared room 25
## 8788 Manhattan Entire home/apt 199
## 8789 Staten Island Private room 49
## 8790 Manhattan Entire home/apt 105
## 8791 Brooklyn Private room 49
## 8792 Manhattan Entire home/apt 256
## 8793 Manhattan Entire home/apt 499
## 8794 Brooklyn Private room 90
## 8795 Brooklyn Entire home/apt 80
## 8796 Brooklyn Entire home/apt 180
## 8797 Manhattan Entire home/apt 145
## 8798 Brooklyn Private room 100
## 8799 Brooklyn Entire home/apt 150
## 8800 Brooklyn Private room 95
## 8801 Brooklyn Private room 55
## 8802 Brooklyn Entire home/apt 147
## 8803 Manhattan Entire home/apt 220
## 8804 Manhattan Private room 70
## 8805 Brooklyn Entire home/apt 100
## 8806 Manhattan Entire home/apt 888
## 8807 Brooklyn Private room 40
## 8808 Queens Private room 70
## 8809 Brooklyn Private room 150
## 8810 Brooklyn Private room 75
## 8811 Brooklyn Entire home/apt 85
## 8812 Manhattan Entire home/apt 124
## 8813 Manhattan Entire home/apt 89
## 8814 Brooklyn Entire home/apt 195
## 8815 Brooklyn Entire home/apt 160
## 8816 Manhattan Private room 60
## 8817 Brooklyn Private room 125
## 8818 Manhattan Entire home/apt 225
## 8819 Queens Private room 86
## 8820 Brooklyn Entire home/apt 119
## 8821 Brooklyn Entire home/apt 70
## 8822 Queens Private room 75
## 8823 Queens Entire home/apt 150
## 8824 Brooklyn Entire home/apt 145
## 8825 Brooklyn Private room 115
## 8826 Brooklyn Entire home/apt 130
## 8827 Brooklyn Private room 53
## 8828 Manhattan Private room 110
## 8829 Manhattan Entire home/apt 130
## 8830 Queens Private room 48
## 8831 Queens Entire home/apt 105
## 8832 Manhattan Entire home/apt 150
## 8833 Queens Entire home/apt 65
## 8834 Queens Entire home/apt 100
## 8835 Queens Private room 39
## 8836 Manhattan Entire home/apt 150
## 8837 Brooklyn Private room 50
## 8838 Manhattan Private room 55
## 8839 Manhattan Entire home/apt 195
## 8840 Brooklyn Entire home/apt 295
## 8841 Manhattan Entire home/apt 140
## 8842 Brooklyn Private room 45
## 8843 Brooklyn Private room 50
## 8844 Brooklyn Private room 75
## 8845 Manhattan Private room 110
## 8846 Brooklyn Private room 64
## 8847 Brooklyn Private room 75
## 8848 Manhattan Private room 125
## 8849 Manhattan Entire home/apt 130
## 8850 Queens Private room 50
## 8851 Brooklyn Entire home/apt 270
## 8852 Manhattan Entire home/apt 78
## 8853 Brooklyn Entire home/apt 100
## 8854 Manhattan Private room 155
## 8855 Manhattan Private room 210
## 8856 Brooklyn Private room 59
## 8857 Brooklyn Entire home/apt 140
## 8858 Brooklyn Private room 59
## 8859 Queens Entire home/apt 89
## 8860 Manhattan Private room 50
## 8861 Brooklyn Private room 85
## 8862 Manhattan Private room 155
## 8863 Manhattan Private room 75
## 8864 Brooklyn Private room 98
## 8865 Manhattan Entire home/apt 375
## 8866 Manhattan Entire home/apt 120
## 8867 Manhattan Entire home/apt 150
## 8868 Brooklyn Entire home/apt 102
## 8869 Brooklyn Entire home/apt 85
## 8870 Brooklyn Entire home/apt 80
## 8871 Brooklyn Private room 35
## 8872 Manhattan Private room 255
## 8873 Manhattan Private room 245
## 8874 Manhattan Private room 155
## 8875 Manhattan Private room 155
## 8876 Brooklyn Private room 148
## 8877 Manhattan Private room 155
## 8878 Manhattan Private room 165
## 8879 Manhattan Private room 155
## 8880 Brooklyn Entire home/apt 389
## 8881 Manhattan Private room 65
## 8882 Brooklyn Private room 89
## 8883 Brooklyn Entire home/apt 250
## 8884 Manhattan Private room 125
## 8885 Manhattan Private room 81
## 8886 Manhattan Private room 80
## 8887 Brooklyn Entire home/apt 200
## 8888 Brooklyn Entire home/apt 130
## 8889 Manhattan Entire home/apt 100
## 8890 Brooklyn Private room 61
## 8891 Manhattan Entire home/apt 95
## 8892 Queens Private room 65
## 8893 Brooklyn Private room 40
## 8894 Brooklyn Entire home/apt 120
## 8895 Brooklyn Private room 59
## 8896 Manhattan Entire home/apt 100
## 8897 Queens Entire home/apt 135
## 8898 Brooklyn Private room 50
## 8899 Manhattan Entire home/apt 460
## 8900 Brooklyn Entire home/apt 110
## 8901 Brooklyn Entire home/apt 225
## 8902 Queens Entire home/apt 135
## 8903 Brooklyn Entire home/apt 125
## 8904 Brooklyn Private room 64
## 8905 Brooklyn Private room 58
## 8906 Manhattan Private room 69
## 8907 Manhattan Private room 59
## 8908 Brooklyn Entire home/apt 177
## 8909 Brooklyn Entire home/apt 150
## 8910 Brooklyn Private room 69
## 8911 Brooklyn Entire home/apt 275
## 8912 Manhattan Private room 99
## 8913 Brooklyn Private room 65
## 8914 Manhattan Entire home/apt 135
## 8915 Manhattan Entire home/apt 150
## 8916 Manhattan Entire home/apt 2000
## 8917 Brooklyn Entire home/apt 90
## 8918 Brooklyn Private room 59
## 8919 Brooklyn Entire home/apt 275
## 8920 Manhattan Entire home/apt 215
## 8921 Brooklyn Entire home/apt 70
## 8922 Manhattan Private room 135
## 8923 Manhattan Entire home/apt 200
## 8924 Manhattan Entire home/apt 120
## 8925 Brooklyn Entire home/apt 85
## 8926 Manhattan Private room 82
## 8927 Manhattan Entire home/apt 105
## 8928 Brooklyn Private room 52
## 8929 Brooklyn Entire home/apt 250
## 8930 Manhattan Private room 145
## 8931 Brooklyn Private room 40
## 8932 Manhattan Entire home/apt 245
## 8933 Brooklyn Entire home/apt 120
## 8934 Manhattan Entire home/apt 150
## 8935 Manhattan Entire home/apt 250
## 8936 Brooklyn Entire home/apt 295
## 8937 Brooklyn Entire home/apt 125
## 8938 Brooklyn Entire home/apt 120
## 8939 Brooklyn Private room 40
## 8940 Brooklyn Private room 55
## 8941 Manhattan Entire home/apt 130
## 8942 Manhattan Private room 110
## 8943 Manhattan Private room 185
## 8944 Brooklyn Entire home/apt 245
## 8945 Manhattan Entire home/apt 700
## 8946 Brooklyn Entire home/apt 215
## 8947 Brooklyn Entire home/apt 250
## 8948 Manhattan Entire home/apt 150
## 8949 Brooklyn Private room 80
## 8950 Manhattan Private room 89
## 8951 Manhattan Entire home/apt 244
## 8952 Brooklyn Private room 74
## 8953 Brooklyn Entire home/apt 88
## 8954 Manhattan Entire home/apt 150
## 8955 Brooklyn Entire home/apt 150
## 8956 Manhattan Private room 40
## 8957 Manhattan Entire home/apt 150
## 8958 Queens Private room 55
## 8959 Manhattan Entire home/apt 259
## 8960 Manhattan Private room 100
## 8961 Brooklyn Entire home/apt 125
## 8962 Brooklyn Entire home/apt 85
## 8963 Manhattan Private room 75
## 8964 Manhattan Private room 190
## 8965 Manhattan Entire home/apt 198
## 8966 Queens Entire home/apt 300
## 8967 Manhattan Entire home/apt 295
## 8968 Brooklyn Private room 50
## 8969 Brooklyn Private room 35
## 8970 Brooklyn Private room 80
## 8971 Brooklyn Entire home/apt 200
## 8972 Brooklyn Private room 110
## 8973 Brooklyn Private room 40
## 8974 Manhattan Entire home/apt 95
## 8975 Brooklyn Private room 75
## 8976 Manhattan Entire home/apt 199
## 8977 Manhattan Private room 50
## 8978 Brooklyn Entire home/apt 109
## 8979 Brooklyn Entire home/apt 120
## 8980 Brooklyn Private room 50
## 8981 Brooklyn Entire home/apt 95
## 8982 Manhattan Entire home/apt 180
## 8983 Brooklyn Private room 100
## 8984 Manhattan Entire home/apt 350
## 8985 Brooklyn Entire home/apt 89
## 8986 Manhattan Private room 80
## 8987 Queens Entire home/apt 125
## 8988 Brooklyn Entire home/apt 155
## 8989 Brooklyn Private room 62
## 8990 Manhattan Entire home/apt 93
## 8991 Brooklyn Private room 80
## 8992 Brooklyn Entire home/apt 65
## 8993 Brooklyn Entire home/apt 120
## 8994 Brooklyn Entire home/apt 450
## 8995 Manhattan Entire home/apt 155
## 8996 Queens Private room 53
## 8997 Manhattan Entire home/apt 150
## 8998 Manhattan Private room 45
## 8999 Queens Private room 85
## 9000 Brooklyn Private room 59
## 9001 Brooklyn Entire home/apt 122
## 9002 Brooklyn Private room 75
## 9003 Queens Private room 80
## 9004 Brooklyn Entire home/apt 105
## 9005 Brooklyn Private room 47
## 9006 Queens Entire home/apt 75
## 9007 Brooklyn Private room 47
## 9008 Manhattan Private room 45
## 9009 Manhattan Private room 100
## 9010 Queens Private room 85
## 9011 Manhattan Entire home/apt 269
## 9012 Manhattan Entire home/apt 70
## 9013 Brooklyn Private room 90
## 9014 Manhattan Private room 172
## 9015 Brooklyn Entire home/apt 160
## 9016 Manhattan Entire home/apt 198
## 9017 Manhattan Entire home/apt 154
## 9018 Brooklyn Entire home/apt 230
## 9019 Brooklyn Entire home/apt 285
## 9020 Brooklyn Entire home/apt 180
## 9021 Manhattan Private room 90
## 9022 Manhattan Private room 120
## 9023 Manhattan Private room 60
## 9024 Manhattan Entire home/apt 99
## 9025 Manhattan Entire home/apt 111
## 9026 Brooklyn Private room 40
## 9027 Brooklyn Private room 35
## 9028 Manhattan Private room 95
## 9029 Brooklyn Private room 89
## 9030 Manhattan Entire home/apt 195
## 9031 Brooklyn Entire home/apt 139
## 9032 Manhattan Private room 75
## 9033 Queens Entire home/apt 100
## 9034 Brooklyn Entire home/apt 149
## 9035 Queens Private room 55
## 9036 Manhattan Entire home/apt 900
## 9037 Brooklyn Entire home/apt 199
## 9038 Brooklyn Private room 70
## 9039 Brooklyn Private room 65
## 9040 Manhattan Shared room 800
## 9041 Manhattan Private room 43
## 9042 Brooklyn Entire home/apt 229
## 9043 Manhattan Entire home/apt 195
## 9044 Brooklyn Entire home/apt 150
## 9045 Bronx Entire home/apt 100
## 9046 Manhattan Entire home/apt 700
## 9047 Manhattan Entire home/apt 150
## 9048 Manhattan Entire home/apt 300
## 9049 Manhattan Private room 100
## 9050 Brooklyn Private room 50
## 9051 Manhattan Entire home/apt 140
## 9052 Manhattan Entire home/apt 175
## 9053 Manhattan Entire home/apt 185
## 9054 Brooklyn Private room 73
## 9055 Brooklyn Entire home/apt 250
## 9056 Manhattan Private room 89
## 9057 Manhattan Entire home/apt 800
## 9058 Manhattan Private room 89
## 9059 Manhattan Entire home/apt 250
## 9060 Manhattan Entire home/apt 220
## 9061 Manhattan Private room 135
## 9062 Brooklyn Entire home/apt 160
## 9063 Brooklyn Private room 93
## 9064 Queens Entire home/apt 110
## 9065 Manhattan Entire home/apt 76
## 9066 Queens Entire home/apt 105
## 9067 Brooklyn Entire home/apt 120
## 9068 Manhattan Entire home/apt 110
## 9069 Manhattan Entire home/apt 125
## 9070 Brooklyn Private room 130
## 9071 Brooklyn Entire home/apt 105
## 9072 Manhattan Private room 100
## 9073 Manhattan Entire home/apt 118
## 9074 Brooklyn Private room 70
## 9075 Brooklyn Entire home/apt 220
## 9076 Manhattan Entire home/apt 155
## 9077 Brooklyn Private room 85
## 9078 Brooklyn Private room 40
## 9079 Manhattan Entire home/apt 85
## 9080 Manhattan Entire home/apt 84
## 9081 Manhattan Entire home/apt 150
## 9082 Bronx Private room 50
## 9083 Brooklyn Entire home/apt 250
## 9084 Manhattan Private room 70
## 9085 Manhattan Private room 110
## 9086 Brooklyn Entire home/apt 164
## 9087 Brooklyn Entire home/apt 120
## 9088 Brooklyn Private room 55
## 9089 Brooklyn Entire home/apt 500
## 9090 Brooklyn Entire home/apt 224
## 9091 Brooklyn Private room 47
## 9092 Brooklyn Private room 61
## 9093 Manhattan Entire home/apt 999
## 9094 Manhattan Entire home/apt 230
## 9095 Manhattan Entire home/apt 150
## 9096 Manhattan Entire home/apt 115
## 9097 Queens Private room 70
## 9098 Manhattan Entire home/apt 325
## 9099 Manhattan Entire home/apt 155
## 9100 Manhattan Entire home/apt 165
## 9101 Manhattan Entire home/apt 165
## 9102 Manhattan Entire home/apt 155
## 9103 Manhattan Private room 150
## 9104 Manhattan Entire home/apt 130
## 9105 Manhattan Entire home/apt 125
## 9106 Manhattan Entire home/apt 150
## 9107 Brooklyn Private room 55
## 9108 Manhattan Entire home/apt 155
## 9109 Brooklyn Private room 80
## 9110 Brooklyn Entire home/apt 85
## 9111 Brooklyn Private room 40
## 9112 Manhattan Private room 99
## 9113 Queens Private room 59
## 9114 Manhattan Entire home/apt 300
## 9115 Queens Private room 55
## 9116 Brooklyn Entire home/apt 125
## 9117 Manhattan Private room 139
## 9118 Brooklyn Entire home/apt 165
## 9119 Brooklyn Private room 50
## 9120 Brooklyn Entire home/apt 150
## 9121 Manhattan Private room 65
## 9122 Brooklyn Private room 50
## 9123 Manhattan Entire home/apt 120
## 9124 Manhattan Entire home/apt 115
## 9125 Brooklyn Private room 51
## 9126 Manhattan Entire home/apt 120
## 9127 Brooklyn Entire home/apt 90
## 9128 Queens Private room 75
## 9129 Manhattan Entire home/apt 190
## 9130 Manhattan Entire home/apt 130
## 9131 Manhattan Private room 80
## 9132 Manhattan Entire home/apt 300
## 9133 Manhattan Shared room 70
## 9134 Manhattan Private room 150
## 9135 Manhattan Private room 75
## 9136 Brooklyn Private room 50
## 9137 Brooklyn Private room 60
## 9138 Brooklyn Entire home/apt 140
## 9139 Brooklyn Entire home/apt 145
## 9140 Brooklyn Entire home/apt 375
## 9141 Brooklyn Entire home/apt 110
## 9142 Brooklyn Entire home/apt 100
## 9143 Manhattan Private room 70
## 9144 Manhattan Entire home/apt 195
## 9145 Brooklyn Private room 125
## 9146 Manhattan Entire home/apt 95
## 9147 Brooklyn Private room 30
## 9148 Manhattan Private room 80
## 9149 Manhattan Entire home/apt 99
## 9150 Manhattan Entire home/apt 165
## 9151 Brooklyn Entire home/apt 95
## 9152 Queens Private room 10000
## 9153 Queens Entire home/apt 149
## 9154 Manhattan Entire home/apt 190
## 9155 Manhattan Entire home/apt 177
## 9156 Manhattan Entire home/apt 350
## 9157 Brooklyn Private room 65
## 9158 Manhattan Shared room 130
## 9159 Brooklyn Entire home/apt 110
## 9160 Brooklyn Private room 35
## 9161 Brooklyn Private room 75
## 9162 Manhattan Private room 52
## 9163 Brooklyn Entire home/apt 160
## 9164 Brooklyn Entire home/apt 100
## 9165 Brooklyn Private room 90
## 9166 Manhattan Entire home/apt 250
## 9167 Manhattan Private room 99
## 9168 Brooklyn Private room 99
## 9169 Brooklyn Entire home/apt 220
## 9170 Manhattan Private room 45
## 9171 Manhattan Private room 70
## 9172 Manhattan Private room 150
## 9173 Manhattan Private room 105
## 9174 Manhattan Private room 50
## 9175 Manhattan Entire home/apt 222
## 9176 Brooklyn Entire home/apt 120
## 9177 Brooklyn Entire home/apt 600
## 9178 Brooklyn Private room 34
## 9179 Brooklyn Entire home/apt 130
## 9180 Brooklyn Entire home/apt 205
## 9181 Brooklyn Entire home/apt 150
## 9182 Manhattan Entire home/apt 149
## 9183 Brooklyn Private room 100
## 9184 Queens Shared room 50
## 9185 Manhattan Entire home/apt 210
## 9186 Manhattan Private room 135
## 9187 Manhattan Entire home/apt 240
## 9188 Brooklyn Private room 48
## 9189 Brooklyn Entire home/apt 90
## 9190 Manhattan Private room 85
## 9191 Manhattan Private room 70
## 9192 Queens Private room 60
## 9193 Brooklyn Private room 139
## 9194 Brooklyn Private room 200
## 9195 Manhattan Entire home/apt 153
## 9196 Manhattan Entire home/apt 125
## 9197 Brooklyn Entire home/apt 285
## 9198 Manhattan Shared room 100
## 9199 Brooklyn Private room 50
## 9200 Brooklyn Private room 35
## 9201 Brooklyn Entire home/apt 115
## 9202 Manhattan Private room 73
## 9203 Brooklyn Entire home/apt 180
## 9204 Queens Private room 60
## 9205 Brooklyn Private room 50
## 9206 Brooklyn Private room 58
## 9207 Manhattan Entire home/apt 80
## 9208 Queens Entire home/apt 250
## 9209 Brooklyn Entire home/apt 499
## 9210 Manhattan Entire home/apt 159
## 9211 Brooklyn Entire home/apt 140
## 9212 Manhattan Entire home/apt 850
## 9213 Brooklyn Private room 38
## 9214 Brooklyn Entire home/apt 289
## 9215 Manhattan Entire home/apt 245
## 9216 Manhattan Entire home/apt 500
## 9217 Manhattan Private room 130
## 9218 Brooklyn Private room 80
## 9219 Manhattan Private room 50
## 9220 Brooklyn Private room 95
## 9221 Queens Entire home/apt 155
## 9222 Manhattan Entire home/apt 400
## 9223 Queens Private room 27
## 9224 Manhattan Private room 60
## 9225 Brooklyn Private room 120
## 9226 Brooklyn Private room 103
## 9227 Manhattan Entire home/apt 155
## 9228 Brooklyn Private room 80
## 9229 Manhattan Private room 80
## 9230 Brooklyn Private room 85
## 9231 Queens Entire home/apt 150
## 9232 Manhattan Entire home/apt 220
## 9233 Manhattan Entire home/apt 160
## 9234 Brooklyn Entire home/apt 125
## 9235 Manhattan Private room 150
## 9236 Manhattan Entire home/apt 140
## 9237 Manhattan Entire home/apt 500
## 9238 Brooklyn Entire home/apt 205
## 9239 Brooklyn Private room 140
## 9240 Brooklyn Private room 80
## 9241 Manhattan Private room 70
## 9242 Manhattan Entire home/apt 150
## 9243 Manhattan Entire home/apt 195
## 9244 Manhattan Private room 57
## 9245 Queens Entire home/apt 125
## 9246 Manhattan Entire home/apt 120
## 9247 Manhattan Entire home/apt 275
## 9248 Brooklyn Private room 75
## 9249 Brooklyn Private room 60
## 9250 Manhattan Private room 89
## 9251 Manhattan Entire home/apt 243
## 9252 Manhattan Private room 90
## 9253 Brooklyn Private room 50
## 9254 Manhattan Private room 115
## 9255 Brooklyn Entire home/apt 150
## 9256 Brooklyn Entire home/apt 250
## 9257 Brooklyn Private room 109
## 9258 Brooklyn Entire home/apt 120
## 9259 Brooklyn Entire home/apt 272
## 9260 Brooklyn Private room 100
## 9261 Brooklyn Entire home/apt 170
## 9262 Manhattan Entire home/apt 175
## 9263 Brooklyn Private room 85
## 9264 Manhattan Entire home/apt 150
## 9265 Manhattan Shared room 116
## 9266 Manhattan Private room 100
## 9267 Manhattan Entire home/apt 350
## 9268 Manhattan Private room 80
## 9269 Queens Entire home/apt 80
## 9270 Brooklyn Entire home/apt 110
## 9271 Brooklyn Entire home/apt 267
## 9272 Bronx Private room 75
## 9273 Manhattan Entire home/apt 200
## 9274 Brooklyn Private room 55
## 9275 Queens Entire home/apt 398
## 9276 Manhattan Private room 80
## 9277 Brooklyn Entire home/apt 125
## 9278 Brooklyn Private room 38
## 9279 Brooklyn Private room 80
## 9280 Manhattan Entire home/apt 299
## 9281 Manhattan Entire home/apt 125
## 9282 Manhattan Private room 250
## 9283 Brooklyn Entire home/apt 129
## 9284 Manhattan Entire home/apt 190
## 9285 Manhattan Private room 90
## 9286 Manhattan Private room 83
## 9287 Manhattan Entire home/apt 450
## 9288 Manhattan Entire home/apt 102
## 9289 Manhattan Entire home/apt 198
## 9290 Manhattan Entire home/apt 149
## 9291 Brooklyn Entire home/apt 120
## 9292 Brooklyn Entire home/apt 143
## 9293 Manhattan Private room 120
## 9294 Brooklyn Private room 44
## 9295 Manhattan Private room 150
## 9296 Manhattan Entire home/apt 160
## 9297 Manhattan Private room 110
## 9298 Brooklyn Entire home/apt 125
## 9299 Manhattan Entire home/apt 270
## 9300 Brooklyn Entire home/apt 110
## 9301 Manhattan Entire home/apt 145
## 9302 Brooklyn Entire home/apt 190
## 9303 Manhattan Entire home/apt 250
## 9304 Manhattan Private room 45
## 9305 Brooklyn Entire home/apt 200
## 9306 Manhattan Entire home/apt 187
## 9307 Brooklyn Private room 90
## 9308 Brooklyn Shared room 29
## 9309 Brooklyn Entire home/apt 100
## 9310 Brooklyn Entire home/apt 90
## 9311 Brooklyn Private room 100
## 9312 Brooklyn Private room 85
## 9313 Queens Private room 69
## 9314 Brooklyn Private room 43
## 9315 Brooklyn Entire home/apt 145
## 9316 Brooklyn Private room 65
## 9317 Brooklyn Private room 45
## 9318 Queens Entire home/apt 130
## 9319 Manhattan Entire home/apt 99
## 9320 Manhattan Private room 90
## 9321 Manhattan Private room 45
## 9322 Manhattan Entire home/apt 200
## 9323 Brooklyn Entire home/apt 149
## 9324 Queens Private room 45
## 9325 Manhattan Entire home/apt 140
## 9326 Brooklyn Private room 60
## 9327 Manhattan Private room 100
## 9328 Brooklyn Private room 125
## 9329 Queens Entire home/apt 70
## 9330 Brooklyn Private room 70
## 9331 Brooklyn Private room 50
## 9332 Brooklyn Private room 95
## 9333 Manhattan Entire home/apt 169
## 9334 Brooklyn Entire home/apt 110
## 9335 Brooklyn Private room 40
## 9336 Brooklyn Private room 75
## 9337 Brooklyn Private room 65
## 9338 Queens Private room 85
## 9339 Brooklyn Entire home/apt 97
## 9340 Manhattan Entire home/apt 110
## 9341 Manhattan Private room 51
## 9342 Manhattan Private room 120
## 9343 Queens Private room 109
## 9344 Manhattan Entire home/apt 159
## 9345 Manhattan Private room 75
## 9346 Staten Island Private room 45
## 9347 Queens Private room 99
## 9348 Manhattan Private room 95
## 9349 Brooklyn Private room 65
## 9350 Manhattan Private room 38
## 9351 Brooklyn Private room 95
## 9352 Brooklyn Entire home/apt 120
## 9353 Brooklyn Private room 150
## 9354 Brooklyn Entire home/apt 135
## 9355 Brooklyn Entire home/apt 115
## 9356 Brooklyn Private room 100
## 9357 Manhattan Private room 99
## 9358 Manhattan Entire home/apt 148
## 9359 Brooklyn Entire home/apt 150
## 9360 Manhattan Entire home/apt 599
## 9361 Manhattan Entire home/apt 349
## 9362 Manhattan Entire home/apt 165
## 9363 Brooklyn Entire home/apt 95
## 9364 Brooklyn Entire home/apt 129
## 9365 Manhattan Private room 250
## 9366 Manhattan Entire home/apt 700
## 9367 Brooklyn Private room 66
## 9368 Manhattan Entire home/apt 165
## 9369 Brooklyn Entire home/apt 450
## 9370 Manhattan Entire home/apt 120
## 9371 Brooklyn Private room 65
## 9372 Brooklyn Private room 55
## 9373 Queens Private room 85
## 9374 Brooklyn Private room 35
## 9375 Brooklyn Entire home/apt 110
## 9376 Manhattan Entire home/apt 500
## 9377 Manhattan Private room 99
## 9378 Queens Private room 64
## 9379 Brooklyn Entire home/apt 168
## 9380 Brooklyn Entire home/apt 200
## 9381 Manhattan Entire home/apt 355
## 9382 Manhattan Entire home/apt 190
## 9383 Brooklyn Entire home/apt 99
## 9384 Manhattan Entire home/apt 180
## 9385 Manhattan Entire home/apt 145
## 9386 Brooklyn Private room 55
## 9387 Brooklyn Private room 65
## 9388 Brooklyn Entire home/apt 130
## 9389 Manhattan Private room 68
## 9390 Manhattan Entire home/apt 167
## 9391 Manhattan Entire home/apt 375
## 9392 Manhattan Entire home/apt 160
## 9393 Brooklyn Entire home/apt 98
## 9394 Brooklyn Private room 90
## 9395 Brooklyn Private room 100
## 9396 Brooklyn Private room 125
## 9397 Brooklyn Entire home/apt 150
## 9398 Brooklyn Entire home/apt 95
## 9399 Manhattan Entire home/apt 130
## 9400 Brooklyn Entire home/apt 130
## 9401 Brooklyn Private room 140
## 9402 Brooklyn Entire home/apt 125
## 9403 Manhattan Entire home/apt 165
## 9404 Brooklyn Private room 90
## 9405 Manhattan Entire home/apt 175
## 9406 Manhattan Private room 65
## 9407 Brooklyn Private room 66
## 9408 Brooklyn Entire home/apt 225
## 9409 Brooklyn Private room 45
## 9410 Queens Private room 59
## 9411 Manhattan Private room 90
## 9412 Manhattan Private room 125
## 9413 Brooklyn Entire home/apt 450
## 9414 Brooklyn Private room 50
## 9415 Brooklyn Entire home/apt 124
## 9416 Brooklyn Private room 29
## 9417 Brooklyn Entire home/apt 86
## 9418 Manhattan Private room 86
## 9419 Brooklyn Entire home/apt 299
## 9420 Brooklyn Private room 36
## 9421 Brooklyn Private room 100
## 9422 Manhattan Entire home/apt 110
## 9423 Manhattan Entire home/apt 450
## 9424 Brooklyn Private room 39
## 9425 Brooklyn Private room 55
## 9426 Brooklyn Private room 55
## 9427 Brooklyn Private room 60
## 9428 Manhattan Private room 71
## 9429 Manhattan Entire home/apt 500
## 9430 Brooklyn Private room 63
## 9431 Brooklyn Entire home/apt 170
## 9432 Brooklyn Entire home/apt 250
## 9433 Brooklyn Entire home/apt 159
## 9434 Brooklyn Entire home/apt 200
## 9435 Manhattan Private room 70
## 9436 Manhattan Entire home/apt 120
## 9437 Manhattan Entire home/apt 75
## 9438 Brooklyn Entire home/apt 195
## 9439 Brooklyn Entire home/apt 90
## 9440 Manhattan Entire home/apt 233
## 9441 Manhattan Entire home/apt 115
## 9442 Brooklyn Private room 65
## 9443 Brooklyn Entire home/apt 80
## 9444 Manhattan Private room 65
## 9445 Manhattan Private room 139
## 9446 Brooklyn Entire home/apt 210
## 9447 Brooklyn Entire home/apt 66
## 9448 Manhattan Entire home/apt 200
## 9449 Manhattan Entire home/apt 200
## 9450 Manhattan Entire home/apt 175
## 9451 Queens Entire home/apt 96
## 9452 Manhattan Private room 100
## 9453 Brooklyn Private room 44
## 9454 Brooklyn Entire home/apt 175
## 9455 Brooklyn Entire home/apt 600
## 9456 Brooklyn Private room 32
## 9457 Manhattan Private room 98
## 9458 Manhattan Entire home/apt 219
## 9459 Manhattan Entire home/apt 175
## 9460 Manhattan Entire home/apt 120
## 9461 Manhattan Entire home/apt 140
## 9462 Brooklyn Private room 84
## 9463 Manhattan Entire home/apt 80
## 9464 Brooklyn Private room 45
## 9465 Brooklyn Entire home/apt 115
## 9466 Queens Private room 36
## 9467 Manhattan Private room 80
## 9468 Brooklyn Private room 40
## 9469 Brooklyn Private room 38
## 9470 Manhattan Entire home/apt 120
## 9471 Brooklyn Private room 70
## 9472 Manhattan Entire home/apt 140
## 9473 Brooklyn Private room 70
## 9474 Manhattan Entire home/apt 200
## 9475 Brooklyn Private room 89
## 9476 Manhattan Private room 250
## 9477 Brooklyn Entire home/apt 125
## 9478 Manhattan Shared room 47
## 9479 Manhattan Entire home/apt 160
## 9480 Brooklyn Entire home/apt 75
## 9481 Manhattan Private room 90
## 9482 Brooklyn Private room 65
## 9483 Brooklyn Private room 63
## 9484 Brooklyn Private room 100
## 9485 Brooklyn Entire home/apt 178
## 9486 Manhattan Entire home/apt 200
## 9487 Manhattan Entire home/apt 170
## 9488 Queens Private room 50
## 9489 Brooklyn Entire home/apt 295
## 9490 Manhattan Private room 100
## 9491 Manhattan Private room 65
## 9492 Manhattan Entire home/apt 175
## 9493 Brooklyn Entire home/apt 90
## 9494 Queens Entire home/apt 158
## 9495 Manhattan Entire home/apt 450
## 9496 Queens Entire home/apt 110
## 9497 Brooklyn Entire home/apt 100
## 9498 Brooklyn Private room 130
## 9499 Queens Private room 70
## 9500 Brooklyn Private room 70
## 9501 Manhattan Entire home/apt 120
## 9502 Manhattan Entire home/apt 170
## 9503 Manhattan Entire home/apt 200
## 9504 Manhattan Entire home/apt 480
## 9505 Brooklyn Entire home/apt 120
## 9506 Manhattan Entire home/apt 299
## 9507 Manhattan Entire home/apt 150
## 9508 Brooklyn Private room 45
## 9509 Brooklyn Private room 70
## 9510 Brooklyn Private room 49
## 9511 Manhattan Private room 115
## 9512 Manhattan Private room 55
## 9513 Brooklyn Private room 55
## 9514 Manhattan Entire home/apt 250
## 9515 Brooklyn Entire home/apt 399
## 9516 Brooklyn Entire home/apt 198
## 9517 Brooklyn Entire home/apt 78
## 9518 Brooklyn Entire home/apt 200
## 9519 Manhattan Entire home/apt 300
## 9520 Brooklyn Entire home/apt 225
## 9521 Manhattan Entire home/apt 650
## 9522 Brooklyn Private room 53
## 9523 Manhattan Entire home/apt 159
## 9524 Manhattan Private room 65
## 9525 Brooklyn Private room 45
## 9526 Manhattan Private room 120
## 9527 Manhattan Entire home/apt 280
## 9528 Brooklyn Private room 60
## 9529 Brooklyn Private room 100
## 9530 Manhattan Private room 160
## 9531 Queens Private room 45
## 9532 Queens Private room 39
## 9533 Brooklyn Private room 50
## 9534 Manhattan Entire home/apt 120
## 9535 Brooklyn Private room 99
## 9536 Manhattan Private room 129
## 9537 Brooklyn Entire home/apt 350
## 9538 Manhattan Entire home/apt 300
## 9539 Brooklyn Entire home/apt 140
## 9540 Manhattan Entire home/apt 120
## 9541 Brooklyn Private room 64
## 9542 Brooklyn Entire home/apt 120
## 9543 Manhattan Private room 40
## 9544 Manhattan Entire home/apt 120
## 9545 Manhattan Private room 95
## 9546 Brooklyn Entire home/apt 150
## 9547 Manhattan Entire home/apt 650
## 9548 Manhattan Private room 100
## 9549 Queens Entire home/apt 290
## 9550 Brooklyn Entire home/apt 120
## 9551 Manhattan Entire home/apt 130
## 9552 Queens Private room 70
## 9553 Manhattan Entire home/apt 235
## 9554 Manhattan Private room 95
## 9555 Manhattan Private room 80
## 9556 Manhattan Entire home/apt 280
## 9557 Manhattan Entire home/apt 195
## 9558 Manhattan Entire home/apt 100
## 9559 Brooklyn Entire home/apt 100
## 9560 Queens Entire home/apt 130
## 9561 Manhattan Entire home/apt 130
## 9562 Brooklyn Private room 125
## 9563 Brooklyn Entire home/apt 130
## 9564 Bronx Entire home/apt 120
## 9565 Manhattan Entire home/apt 180
## 9566 Manhattan Private room 80
## 9567 Manhattan Entire home/apt 250
## 9568 Brooklyn Private room 125
## 9569 Brooklyn Entire home/apt 166
## 9570 Manhattan Private room 64
## 9571 Brooklyn Private room 35
## 9572 Manhattan Entire home/apt 120
## 9573 Brooklyn Private room 60
## 9574 Brooklyn Entire home/apt 215
## 9575 Brooklyn Private room 58
## 9576 Manhattan Entire home/apt 260
## 9577 Brooklyn Private room 40
## 9578 Manhattan Private room 78
## 9579 Manhattan Private room 80
## 9580 Manhattan Shared room 80
## 9581 Brooklyn Entire home/apt 159
## 9582 Brooklyn Private room 150
## 9583 Brooklyn Entire home/apt 89
## 9584 Manhattan Private room 145
## 9585 Manhattan Private room 130
## 9586 Brooklyn Private room 50
## 9587 Brooklyn Entire home/apt 100
## 9588 Brooklyn Private room 63
## 9589 Brooklyn Private room 50
## 9590 Manhattan Entire home/apt 189
## 9591 Brooklyn Entire home/apt 99
## 9592 Manhattan Private room 150
## 9593 Manhattan Private room 35
## 9594 Manhattan Entire home/apt 200
## 9595 Manhattan Private room 35
## 9596 Manhattan Private room 60
## 9597 Brooklyn Private room 80
## 9598 Manhattan Entire home/apt 199
## 9599 Manhattan Entire home/apt 174
## 9600 Brooklyn Private room 85
## 9601 Manhattan Private room 120
## 9602 Brooklyn Entire home/apt 98
## 9603 Manhattan Private room 119
## 9604 Brooklyn Private room 1600
## 9605 Brooklyn Private room 75
## 9606 Brooklyn Entire home/apt 450
## 9607 Brooklyn Private room 55
## 9608 Brooklyn Private room 64
## 9609 Brooklyn Private room 70
## 9610 Manhattan Private room 106
## 9611 Brooklyn Private room 45
## 9612 Manhattan Private room 125
## 9613 Manhattan Private room 70
## 9614 Manhattan Private room 40
## 9615 Queens Entire home/apt 100
## 9616 Queens Private room 85
## 9617 Brooklyn Entire home/apt 75
## 9618 Manhattan Entire home/apt 175
## 9619 Manhattan Private room 150
## 9620 Manhattan Private room 150
## 9621 Brooklyn Entire home/apt 129
## 9622 Brooklyn Private room 60
## 9623 Brooklyn Private room 80
## 9624 Queens Private room 40
## 9625 Brooklyn Private room 90
## 9626 Manhattan Private room 120
## 9627 Brooklyn Entire home/apt 100
## 9628 Queens Entire home/apt 125
## 9629 Brooklyn Private room 35
## 9630 Brooklyn Entire home/apt 269
## 9631 Manhattan Private room 45
## 9632 Manhattan Entire home/apt 185
## 9633 Manhattan Entire home/apt 120
## 9634 Manhattan Private room 97
## 9635 Manhattan Entire home/apt 230
## 9636 Brooklyn Entire home/apt 150
## 9637 Brooklyn Entire home/apt 135
## 9638 Brooklyn Private room 45
## 9639 Brooklyn Private room 47
## 9640 Queens Entire home/apt 120
## 9641 Brooklyn Entire home/apt 100
## 9642 Manhattan Entire home/apt 60
## 9643 Manhattan Entire home/apt 245
## 9644 Manhattan Entire home/apt 150
## 9645 Manhattan Entire home/apt 386
## 9646 Manhattan Private room 95
## 9647 Manhattan Entire home/apt 120
## 9648 Manhattan Private room 145
## 9649 Brooklyn Entire home/apt 109
## 9650 Brooklyn Private room 80
## 9651 Brooklyn Entire home/apt 105
## 9652 Queens Private room 37
## 9653 Brooklyn Entire home/apt 125
## 9654 Manhattan Private room 80
## 9655 Manhattan Entire home/apt 140
## 9656 Manhattan Entire home/apt 250
## 9657 Brooklyn Private room 79
## 9658 Manhattan Entire home/apt 450
## 9659 Brooklyn Entire home/apt 120
## 9660 Manhattan Private room 100
## 9661 Manhattan Entire home/apt 150
## 9662 Manhattan Private room 200
## 9663 Queens Entire home/apt 110
## 9664 Brooklyn Entire home/apt 165
## 9665 Manhattan Private room 69
## 9666 Manhattan Private room 69
## 9667 Brooklyn Private room 180
## 9668 Manhattan Private room 40
## 9669 Brooklyn Private room 40
## 9670 Queens Private room 109
## 9671 Manhattan Private room 100
## 9672 Brooklyn Private room 70
## 9673 Manhattan Entire home/apt 198
## 9674 Brooklyn Private room 50
## 9675 Brooklyn Entire home/apt 130
## 9676 Brooklyn Entire home/apt 135
## 9677 Brooklyn Private room 35
## 9678 Manhattan Entire home/apt 399
## 9679 Brooklyn Private room 108
## 9680 Manhattan Entire home/apt 595
## 9681 Brooklyn Entire home/apt 129
## 9682 Manhattan Private room 88
## 9683 Queens Private room 75
## 9684 Brooklyn Private room 85
## 9685 Manhattan Private room 70
## 9686 Brooklyn Entire home/apt 185
## 9687 Brooklyn Entire home/apt 145
## 9688 Brooklyn Entire home/apt 150
## 9689 Brooklyn Entire home/apt 50
## 9690 Brooklyn Private room 70
## 9691 Brooklyn Entire home/apt 150
## 9692 Brooklyn Private room 100
## 9693 Manhattan Private room 69
## 9694 Brooklyn Entire home/apt 115
## 9695 Manhattan Entire home/apt 120
## 9696 Manhattan Entire home/apt 180
## 9697 Brooklyn Entire home/apt 147
## 9698 Brooklyn Entire home/apt 125
## 9699 Manhattan Entire home/apt 328
## 9700 Brooklyn Entire home/apt 85
## 9701 Brooklyn Entire home/apt 60
## 9702 Brooklyn Private room 60
## 9703 Brooklyn Private room 46
## 9704 Manhattan Private room 90
## 9705 Brooklyn Entire home/apt 150
## 9706 Brooklyn Private room 95
## 9707 Brooklyn Entire home/apt 185
## 9708 Brooklyn Private room 89
## 9709 Brooklyn Entire home/apt 67
## 9710 Brooklyn Entire home/apt 125
## 9711 Manhattan Private room 80
## 9712 Brooklyn Entire home/apt 199
## 9713 Manhattan Private room 79
## 9714 Manhattan Entire home/apt 225
## 9715 Brooklyn Entire home/apt 125
## 9716 Brooklyn Entire home/apt 360
## 9717 Brooklyn Entire home/apt 200
## 9718 Queens Private room 80
## 9719 Brooklyn Entire home/apt 400
## 9720 Brooklyn Private room 65
## 9721 Brooklyn Private room 70
## 9722 Brooklyn Private room 85
## 9723 Manhattan Entire home/apt 200
## 9724 Brooklyn Entire home/apt 68
## 9725 Brooklyn Private room 50
## 9726 Brooklyn Entire home/apt 130
## 9727 Manhattan Entire home/apt 215
## 9728 Manhattan Entire home/apt 165
## 9729 Manhattan Private room 100
## 9730 Brooklyn Entire home/apt 85
## 9731 Brooklyn Private room 75
## 9732 Brooklyn Entire home/apt 105
## 9733 Brooklyn Entire home/apt 100
## 9734 Manhattan Entire home/apt 499
## 9735 Manhattan Private room 195
## 9736 Brooklyn Entire home/apt 150
## 9737 Manhattan Private room 54
## 9738 Brooklyn Entire home/apt 250
## 9739 Brooklyn Private room 40
## 9740 Queens Entire home/apt 95
## 9741 Manhattan Entire home/apt 169
## 9742 Queens Private room 75
## 9743 Manhattan Entire home/apt 175
## 9744 Brooklyn Entire home/apt 145
## 9745 Manhattan Entire home/apt 450
## 9746 Manhattan Entire home/apt 135
## 9747 Manhattan Entire home/apt 125
## 9748 Brooklyn Private room 70
## 9749 Manhattan Private room 100
## 9750 Manhattan Entire home/apt 118
## 9751 Brooklyn Entire home/apt 172
## 9752 Brooklyn Private room 105
## 9753 Brooklyn Private room 55
## 9754 Brooklyn Private room 60
## 9755 Manhattan Entire home/apt 250
## 9756 Manhattan Private room 99
## 9757 Brooklyn Entire home/apt 88
## 9758 Manhattan Private room 125
## 9759 Brooklyn Entire home/apt 102
## 9760 Brooklyn Private room 40
## 9761 Brooklyn Entire home/apt 119
## 9762 Brooklyn Entire home/apt 101
## 9763 Brooklyn Private room 65
## 9764 Bronx Private room 40
## 9765 Manhattan Entire home/apt 109
## 9766 Bronx Private room 40
## 9767 Queens Entire home/apt 250
## 9768 Manhattan Private room 75
## 9769 Brooklyn Private room 90
## 9770 Manhattan Private room 87
## 9771 Manhattan Entire home/apt 185
## 9772 Brooklyn Private room 45
## 9773 Manhattan Private room 300
## 9774 Brooklyn Entire home/apt 140
## 9775 Brooklyn Private room 70
## 9776 Brooklyn Entire home/apt 150
## 9777 Brooklyn Private room 80
## 9778 Brooklyn Private room 60
## 9779 Brooklyn Private room 45
## 9780 Brooklyn Private room 40
## 9781 Manhattan Entire home/apt 210
## 9782 Brooklyn Entire home/apt 225
## 9783 Manhattan Private room 70
## 9784 Brooklyn Private room 45
## 9785 Manhattan Entire home/apt 120
## 9786 Manhattan Entire home/apt 150
## 9787 Manhattan Private room 133
## 9788 Manhattan Private room 60
## 9789 Manhattan Private room 64
## 9790 Manhattan Private room 69
## 9791 Brooklyn Private room 40
## 9792 Manhattan Entire home/apt 190
## 9793 Brooklyn Entire home/apt 275
## 9794 Manhattan Entire home/apt 200
## 9795 Manhattan Private room 75
## 9796 Brooklyn Entire home/apt 180
## 9797 Manhattan Private room 200
## 9798 Brooklyn Private room 59
## 9799 Brooklyn Entire home/apt 149
## 9800 Brooklyn Private room 55
## 9801 Manhattan Private room 75
## 9802 Manhattan Entire home/apt 400
## 9803 Manhattan Entire home/apt 169
## 9804 Manhattan Entire home/apt 125
## 9805 Brooklyn Private room 58
## 9806 Manhattan Entire home/apt 151
## 9807 Manhattan Entire home/apt 67
## 9808 Manhattan Private room 100
## 9809 Manhattan Entire home/apt 185
## 9810 Brooklyn Entire home/apt 190
## 9811 Manhattan Private room 78
## 9812 Brooklyn Private room 60
## 9813 Manhattan Entire home/apt 210
## 9814 Queens Entire home/apt 139
## 9815 Manhattan Entire home/apt 200
## 9816 Manhattan Private room 75
## 9817 Brooklyn Entire home/apt 123
## 9818 Manhattan Private room 28
## 9819 Brooklyn Entire home/apt 120
## 9820 Brooklyn Private room 85
## 9821 Queens Entire home/apt 122
## 9822 Manhattan Entire home/apt 700
## 9823 Manhattan Entire home/apt 99
## 9824 Manhattan Private room 110
## 9825 Brooklyn Entire home/apt 185
## 9826 Brooklyn Entire home/apt 120
## 9827 Queens Private room 89
## 9828 Brooklyn Private room 48
## 9829 Brooklyn Private room 90
## 9830 Brooklyn Private room 90
## 9831 Bronx Entire home/apt 110
## 9832 Manhattan Entire home/apt 150
## 9833 Brooklyn Entire home/apt 120
## 9834 Brooklyn Entire home/apt 110
## 9835 Brooklyn Private room 45
## 9836 Brooklyn Private room 75
## 9837 Queens Private room 65
## 9838 Manhattan Entire home/apt 170
## 9839 Manhattan Entire home/apt 140
## 9840 Manhattan Private room 90
## 9841 Manhattan Entire home/apt 170
## 9842 Manhattan Private room 90
## 9843 Brooklyn Entire home/apt 175
## 9844 Brooklyn Entire home/apt 135
## 9845 Brooklyn Entire home/apt 120
## 9846 Manhattan Entire home/apt 175
## 9847 Brooklyn Private room 40
## 9848 Manhattan Private room 65
## 9849 Brooklyn Private room 69
## 9850 Manhattan Private room 119
## 9851 Manhattan Private room 85
## 9852 Brooklyn Private room 100
## 9853 Manhattan Entire home/apt 155
## 9854 Manhattan Entire home/apt 160
## 9855 Brooklyn Private room 50
## 9856 Manhattan Entire home/apt 125
## 9857 Manhattan Entire home/apt 350
## 9858 Manhattan Entire home/apt 350
## 9859 Brooklyn Private room 65
## 9860 Manhattan Entire home/apt 247
## 9861 Manhattan Shared room 85
## 9862 Queens Private room 45
## 9863 Brooklyn Entire home/apt 139
## 9864 Brooklyn Entire home/apt 85
## 9865 Queens Entire home/apt 125
## 9866 Manhattan Private room 115
## 9867 Brooklyn Entire home/apt 175
## 9868 Manhattan Entire home/apt 140
## 9869 Manhattan Private room 125
## 9870 Queens Private room 59
## 9871 Manhattan Private room 80
## 9872 Brooklyn Private room 50
## 9873 Brooklyn Private room 45
## 9874 Brooklyn Entire home/apt 90
## 9875 Brooklyn Entire home/apt 250
## 9876 Brooklyn Entire home/apt 140
## 9877 Manhattan Entire home/apt 215
## 9878 Manhattan Entire home/apt 180
## 9879 Manhattan Entire home/apt 250
## 9880 Manhattan Entire home/apt 400
## 9881 Manhattan Entire home/apt 700
## 9882 Brooklyn Private room 65
## 9883 Manhattan Private room 118
## 9884 Manhattan Private room 1500
## 9885 Brooklyn Private room 70
## 9886 Manhattan Entire home/apt 110
## 9887 Manhattan Entire home/apt 299
## 9888 Manhattan Private room 95
## 9889 Manhattan Private room 70
## 9890 Manhattan Private room 167
## 9891 Manhattan Private room 103
## 9892 Manhattan Entire home/apt 145
## 9893 Brooklyn Entire home/apt 100
## 9894 Brooklyn Entire home/apt 275
## 9895 Brooklyn Private room 60
## 9896 Brooklyn Private room 70
## 9897 Manhattan Entire home/apt 300
## 9898 Brooklyn Entire home/apt 370
## 9899 Manhattan Private room 50
## 9900 Manhattan Entire home/apt 65
## 9901 Brooklyn Private room 68
## 9902 Brooklyn Private room 92
## 9903 Manhattan Private room 40
## 9904 Queens Entire home/apt 100
## 9905 Manhattan Private room 140
## 9906 Manhattan Private room 150
## 9907 Brooklyn Private room 45
## 9908 Brooklyn Private room 70
## 9909 Manhattan Entire home/apt 230
## 9910 Queens Private room 49
## 9911 Queens Private room 80
## 9912 Manhattan Private room 105
## 9913 Brooklyn Private room 40
## 9914 Manhattan Private room 90
## 9915 Manhattan Entire home/apt 600
## 9916 Brooklyn Private room 50
## 9917 Brooklyn Entire home/apt 195
## 9918 Manhattan Entire home/apt 200
## 9919 Manhattan Entire home/apt 250
## 9920 Manhattan Entire home/apt 175
## 9921 Brooklyn Private room 100
## 9922 Queens Entire home/apt 150
## 9923 Manhattan Entire home/apt 175
## 9924 Manhattan Private room 150
## 9925 Manhattan Entire home/apt 400
## 9926 Manhattan Private room 99
## 9927 Queens Private room 70
## 9928 Queens Private room 48
## 9929 Brooklyn Entire home/apt 199
## 9930 Manhattan Private room 90
## 9931 Brooklyn Entire home/apt 130
## 9932 Brooklyn Entire home/apt 300
## 9933 Brooklyn Entire home/apt 175
## 9934 Brooklyn Private room 48
## 9935 Brooklyn Private room 70
## 9936 Brooklyn Entire home/apt 380
## 9937 Brooklyn Private room 45
## 9938 Brooklyn Private room 55
## 9939 Brooklyn Private room 32
## 9940 Manhattan Entire home/apt 160
## 9941 Manhattan Private room 107
## 9942 Brooklyn Entire home/apt 155
## 9943 Manhattan Entire home/apt 275
## 9944 Brooklyn Private room 80
## 9945 Manhattan Entire home/apt 205
## 9946 Manhattan Private room 150
## 9947 Brooklyn Entire home/apt 99
## 9948 Brooklyn Private room 59
## 9949 Brooklyn Private room 45
## 9950 Manhattan Entire home/apt 270
## 9951 Brooklyn Private room 80
## 9952 Queens Entire home/apt 150
## 9953 Brooklyn Private room 35
## 9954 Manhattan Entire home/apt 99
## 9955 Brooklyn Entire home/apt 150
## 9956 Manhattan Entire home/apt 190
## 9957 Brooklyn Private room 50
## 9958 Manhattan Entire home/apt 79
## 9959 Brooklyn Entire home/apt 199
## 9960 Queens Entire home/apt 65
## 9961 Brooklyn Private room 65
## 9962 Brooklyn Private room 75
## 9963 Brooklyn Private room 43
## 9964 Manhattan Entire home/apt 130
## 9965 Manhattan Entire home/apt 180
## 9966 Brooklyn Private room 60
## 9967 Brooklyn Shared room 33
## 9968 Queens Private room 45
## 9969 Brooklyn Private room 65
## 9970 Brooklyn Private room 119
## 9971 Brooklyn Private room 50
## 9972 Queens Entire home/apt 150
## 9973 Brooklyn Private room 150
## 9974 Brooklyn Entire home/apt 99
## 9975 Queens Private room 50
## 9976 Brooklyn Entire home/apt 250
## 9977 Queens Private room 50
## 9978 Manhattan Private room 50
## 9979 Manhattan Private room 100
## 9980 Manhattan Private room 59
## 9981 Manhattan Private room 80
## 9982 Brooklyn Entire home/apt 95
## 9983 Brooklyn Entire home/apt 110
## 9984 Brooklyn Private room 60
## 9985 Brooklyn Private room 64
## 9986 Queens Entire home/apt 175
## 9987 Queens Entire home/apt 350
## 9988 Manhattan Private room 80
## 9989 Manhattan Entire home/apt 200
## 9990 Brooklyn Entire home/apt 128
## 9991 Brooklyn Entire home/apt 150
## 9992 Brooklyn Entire home/apt 100
## 9993 Manhattan Entire home/apt 300
## 9994 Bronx Private room 95
## 9995 Manhattan Entire home/apt 175
## 9996 Brooklyn Entire home/apt 220
## 9997 Brooklyn Entire home/apt 147
## 9998 Manhattan Private room 95
## 9999 Brooklyn Entire home/apt 160
## 10000 Queens Private room 99
## 10001 Manhattan Entire home/apt 200
## 10002 Brooklyn Entire home/apt 225
## 10003 Bronx Private room 40
## 10004 Manhattan Private room 75
## 10005 Brooklyn Private room 120
## 10006 Brooklyn Entire home/apt 110
## 10007 Manhattan Private room 60
## 10008 Brooklyn Private room 100
## 10009 Brooklyn Private room 77
## 10010 Manhattan Entire home/apt 150
## 10011 Brooklyn Entire home/apt 160
## 10012 Manhattan Private room 58
## 10013 Manhattan Private room 70
## 10014 Brooklyn Entire home/apt 215
## 10015 Manhattan Entire home/apt 100
## 10016 Brooklyn Private room 60
## 10017 Brooklyn Entire home/apt 125
## 10018 Manhattan Private room 130
## 10019 Brooklyn Private room 99
## 10020 Brooklyn Entire home/apt 175
## 10021 Brooklyn Entire home/apt 200
## 10022 Brooklyn Private room 85
## 10023 Brooklyn Entire home/apt 99
## 10024 Manhattan Private room 45
## 10025 Manhattan Entire home/apt 190
## 10026 Manhattan Entire home/apt 112
## 10027 Manhattan Private room 95
## 10028 Brooklyn Private room 65
## 10029 Brooklyn Entire home/apt 150
## 10030 Manhattan Entire home/apt 77
## 10031 Manhattan Private room 69
## 10032 Manhattan Private room 80
## 10033 Manhattan Entire home/apt 175
## 10034 Brooklyn Private room 60
## 10035 Manhattan Private room 59
## 10036 Manhattan Private room 90
## 10037 Brooklyn Entire home/apt 70
## 10038 Manhattan Entire home/apt 350
## 10039 Manhattan Private room 75
## 10040 Manhattan Private room 61
## 10041 Manhattan Shared room 42
## 10042 Manhattan Entire home/apt 350
## 10043 Brooklyn Private room 45
## 10044 Brooklyn Private room 75
## 10045 Queens Entire home/apt 150
## 10046 Brooklyn Entire home/apt 72
## 10047 Brooklyn Private room 59
## 10048 Manhattan Entire home/apt 90
## 10049 Brooklyn Entire home/apt 145
## 10050 Queens Private room 115
## 10051 Brooklyn Entire home/apt 225
## 10052 Brooklyn Private room 45
## 10053 Brooklyn Entire home/apt 35
## 10054 Manhattan Entire home/apt 150
## 10055 Brooklyn Entire home/apt 147
## 10056 Manhattan Private room 182
## 10057 Manhattan Private room 110
## 10058 Manhattan Private room 85
## 10059 Manhattan Private room 175
## 10060 Brooklyn Entire home/apt 250
## 10061 Manhattan Private room 50
## 10062 Queens Private room 70
## 10063 Brooklyn Private room 47
## 10064 Manhattan Private room 75
## 10065 Queens Entire home/apt 79
## 10066 Brooklyn Entire home/apt 115
## 10067 Queens Private room 35
## 10068 Manhattan Entire home/apt 300
## 10069 Brooklyn Private room 86
## 10070 Manhattan Entire home/apt 189
## 10071 Brooklyn Entire home/apt 70
## 10072 Brooklyn Private room 32
## 10073 Brooklyn Entire home/apt 150
## 10074 Brooklyn Entire home/apt 159
## 10075 Brooklyn Private room 50
## 10076 Manhattan Entire home/apt 135
## 10077 Manhattan Private room 170
## 10078 Manhattan Entire home/apt 140
## 10079 Manhattan Entire home/apt 175
## 10080 Queens Private room 55
## 10081 Brooklyn Private room 72
## 10082 Brooklyn Entire home/apt 198
## 10083 Brooklyn Entire home/apt 180
## 10084 Brooklyn Entire home/apt 200
## 10085 Brooklyn Private room 220
## 10086 Queens Entire home/apt 125
## 10087 Manhattan Entire home/apt 300
## 10088 Bronx Private room 37
## 10089 Manhattan Private room 60
## 10090 Brooklyn Private room 49
## 10091 Queens Private room 55
## 10092 Brooklyn Entire home/apt 145
## 10093 Manhattan Private room 48
## 10094 Brooklyn Private room 75
## 10095 Brooklyn Entire home/apt 200
## 10096 Manhattan Entire home/apt 153
## 10097 Brooklyn Private room 69
## 10098 Brooklyn Private room 45
## 10099 Brooklyn Entire home/apt 104
## 10100 Manhattan Entire home/apt 150
## 10101 Manhattan Entire home/apt 195
## 10102 Manhattan Private room 90
## 10103 Queens Private room 60
## 10104 Brooklyn Entire home/apt 145
## 10105 Brooklyn Entire home/apt 120
## 10106 Brooklyn Entire home/apt 111
## 10107 Brooklyn Entire home/apt 140
## 10108 Manhattan Private room 60
## 10109 Manhattan Shared room 35
## 10110 Manhattan Private room 93
## 10111 Brooklyn Private room 30
## 10112 Brooklyn Private room 60
## 10113 Brooklyn Entire home/apt 99
## 10114 Manhattan Private room 210
## 10115 Manhattan Entire home/apt 175
## 10116 Manhattan Private room 22
## 10117 Manhattan Entire home/apt 200
## 10118 Queens Entire home/apt 120
## 10119 Manhattan Entire home/apt 319
## 10120 Brooklyn Private room 45
## 10121 Brooklyn Entire home/apt 99
## 10122 Manhattan Entire home/apt 450
## 10123 Brooklyn Private room 89
## 10124 Brooklyn Private room 65
## 10125 Brooklyn Entire home/apt 185
## 10126 Queens Private room 35
## 10127 Manhattan Entire home/apt 238
## 10128 Brooklyn Private room 63
## 10129 Brooklyn Entire home/apt 150
## 10130 Manhattan Entire home/apt 180
## 10131 Queens Private room 75
## 10132 Queens Entire home/apt 500
## 10133 Bronx Private room 59
## 10134 Manhattan Private room 90
## 10135 Brooklyn Entire home/apt 150
## 10136 Queens Entire home/apt 70
## 10137 Queens Entire home/apt 289
## 10138 Manhattan Entire home/apt 245
## 10139 Brooklyn Private room 53
## 10140 Manhattan Entire home/apt 225
## 10141 Manhattan Private room 149
## 10142 Manhattan Entire home/apt 160
## 10143 Brooklyn Entire home/apt 70
## 10144 Brooklyn Entire home/apt 165
## 10145 Manhattan Private room 70
## 10146 Brooklyn Entire home/apt 150
## 10147 Brooklyn Private room 65
## 10148 Manhattan Entire home/apt 175
## 10149 Brooklyn Entire home/apt 175
## 10150 Queens Private room 90
## 10151 Brooklyn Private room 40
## 10152 Manhattan Entire home/apt 170
## 10153 Brooklyn Private room 70
## 10154 Brooklyn Private room 50
## 10155 Queens Private room 52
## 10156 Brooklyn Private room 47
## 10157 Brooklyn Private room 47
## 10158 Brooklyn Private room 47
## 10159 Manhattan Entire home/apt 175
## 10160 Brooklyn Private room 47
## 10161 Brooklyn Private room 47
## 10162 Brooklyn Private room 47
## 10163 Brooklyn Entire home/apt 200
## 10164 Manhattan Private room 30
## 10165 Brooklyn Private room 80
## 10166 Manhattan Entire home/apt 142
## 10167 Brooklyn Private room 69
## 10168 Bronx Private room 62
## 10169 Bronx Shared room 45
## 10170 Manhattan Entire home/apt 300
## 10171 Manhattan Private room 75
## 10172 Brooklyn Entire home/apt 80
## 10173 Manhattan Entire home/apt 200
## 10174 Brooklyn Entire home/apt 90
## 10175 Manhattan Entire home/apt 173
## 10176 Brooklyn Entire home/apt 100
## 10177 Brooklyn Entire home/apt 160
## 10178 Brooklyn Private room 116
## 10179 Brooklyn Private room 35
## 10180 Manhattan Entire home/apt 160
## 10181 Manhattan Entire home/apt 150
## 10182 Manhattan Entire home/apt 104
## 10183 Manhattan Entire home/apt 200
## 10184 Queens Entire home/apt 80
## 10185 Manhattan Entire home/apt 150
## 10186 Manhattan Entire home/apt 374
## 10187 Manhattan Private room 46
## 10188 Brooklyn Entire home/apt 94
## 10189 Manhattan Private room 92
## 10190 Brooklyn Entire home/apt 155
## 10191 Manhattan Private room 70
## 10192 Brooklyn Entire home/apt 75
## 10193 Brooklyn Entire home/apt 150
## 10194 Manhattan Entire home/apt 130
## 10195 Brooklyn Private room 75
## 10196 Manhattan Private room 70
## 10197 Brooklyn Entire home/apt 145
## 10198 Queens Entire home/apt 65
## 10199 Brooklyn Entire home/apt 195
## 10200 Manhattan Entire home/apt 420
## 10201 Manhattan Entire home/apt 500
## 10202 Manhattan Private room 100
## 10203 Brooklyn Entire home/apt 85
## 10204 Brooklyn Entire home/apt 100
## 10205 Brooklyn Private room 70
## 10206 Manhattan Entire home/apt 150
## 10207 Manhattan Entire home/apt 425
## 10208 Manhattan Entire home/apt 490
## 10209 Manhattan Private room 70
## 10210 Brooklyn Private room 135
## 10211 Manhattan Private room 80
## 10212 Brooklyn Entire home/apt 90
## 10213 Manhattan Entire home/apt 800
## 10214 Brooklyn Private room 70
## 10215 Manhattan Private room 100
## 10216 Manhattan Private room 75
## 10217 Manhattan Private room 88
## 10218 Manhattan Private room 100
## 10219 Queens Private room 50
## 10220 Brooklyn Private room 63
## 10221 Queens Private room 50
## 10222 Manhattan Private room 90
## 10223 Brooklyn Entire home/apt 85
## 10224 Brooklyn Private room 69
## 10225 Brooklyn Private room 90
## 10226 Brooklyn Entire home/apt 75
## 10227 Manhattan Entire home/apt 150
## 10228 Brooklyn Private room 38
## 10229 Brooklyn Private room 70
## 10230 Manhattan Entire home/apt 180
## 10231 Brooklyn Private room 65
## 10232 Brooklyn Private room 75
## 10233 Brooklyn Private room 60
## 10234 Manhattan Entire home/apt 221
## 10235 Brooklyn Entire home/apt 500
## 10236 Manhattan Entire home/apt 150
## 10237 Manhattan Entire home/apt 250
## 10238 Manhattan Entire home/apt 239
## 10239 Brooklyn Entire home/apt 105
## 10240 Brooklyn Private room 50
## 10241 Manhattan Private room 75
## 10242 Brooklyn Private room 55
## 10243 Brooklyn Entire home/apt 108
## 10244 Manhattan Private room 59
## 10245 Manhattan Entire home/apt 149
## 10246 Brooklyn Entire home/apt 150
## 10247 Brooklyn Entire home/apt 119
## 10248 Manhattan Entire home/apt 100
## 10249 Manhattan Private room 79
## 10250 Brooklyn Private room 85
## 10251 Brooklyn Private room 45
## 10252 Manhattan Entire home/apt 295
## 10253 Manhattan Entire home/apt 400
## 10254 Brooklyn Private room 60
## 10255 Brooklyn Private room 90
## 10256 Brooklyn Private room 60
## 10257 Manhattan Entire home/apt 200
## 10258 Manhattan Entire home/apt 80
## 10259 Brooklyn Private room 60
## 10260 Brooklyn Private room 50
## 10261 Staten Island Private room 69
## 10262 Brooklyn Entire home/apt 123
## 10263 Brooklyn Private room 36
## 10264 Manhattan Entire home/apt 135
## 10265 Manhattan Entire home/apt 400
## 10266 Manhattan Private room 87
## 10267 Manhattan Private room 99
## 10268 Brooklyn Private room 55
## 10269 Manhattan Entire home/apt 225
## 10270 Brooklyn Private room 60
## 10271 Manhattan Entire home/apt 250
## 10272 Manhattan Entire home/apt 299
## 10273 Brooklyn Private room 40
## 10274 Manhattan Entire home/apt 120
## 10275 Manhattan Private room 89
## 10276 Manhattan Entire home/apt 195
## 10277 Manhattan Entire home/apt 150
## 10278 Manhattan Private room 140
## 10279 Manhattan Entire home/apt 240
## 10280 Brooklyn Private room 36
## 10281 Manhattan Entire home/apt 67
## 10282 Manhattan Entire home/apt 140
## 10283 Brooklyn Private room 50
## 10284 Bronx Entire home/apt 90
## 10285 Brooklyn Private room 60
## 10286 Queens Entire home/apt 138
## 10287 Manhattan Entire home/apt 96
## 10288 Brooklyn Private room 109
## 10289 Brooklyn Entire home/apt 135
## 10290 Queens Entire home/apt 58
## 10291 Manhattan Private room 65
## 10292 Manhattan Entire home/apt 225
## 10293 Manhattan Entire home/apt 130
## 10294 Brooklyn Private room 60
## 10295 Manhattan Private room 80
## 10296 Brooklyn Entire home/apt 210
## 10297 Brooklyn Entire home/apt 275
## 10298 Manhattan Entire home/apt 175
## 10299 Manhattan Entire home/apt 175
## 10300 Manhattan Private room 43
## 10301 Manhattan Entire home/apt 250
## 10302 Brooklyn Private room 79
## 10303 Manhattan Entire home/apt 300
## 10304 Brooklyn Private room 60
## 10305 Queens Entire home/apt 100
## 10306 Brooklyn Private room 79
## 10307 Brooklyn Entire home/apt 285
## 10308 Brooklyn Entire home/apt 220
## 10309 Queens Private room 200
## 10310 Manhattan Entire home/apt 100
## 10311 Manhattan Entire home/apt 150
## 10312 Manhattan Entire home/apt 175
## 10313 Manhattan Private room 180
## 10314 Manhattan Entire home/apt 150
## 10315 Manhattan Private room 58
## 10316 Manhattan Entire home/apt 140
## 10317 Brooklyn Private room 80
## 10318 Manhattan Entire home/apt 100
## 10319 Manhattan Entire home/apt 200
## 10320 Brooklyn Entire home/apt 175
## 10321 Manhattan Entire home/apt 250
## 10322 Brooklyn Private room 74
## 10323 Brooklyn Private room 60
## 10324 Manhattan Private room 60
## 10325 Queens Private room 60
## 10326 Manhattan Entire home/apt 150
## 10327 Manhattan Private room 70
## 10328 Manhattan Private room 98
## 10329 Brooklyn Private room 108
## 10330 Manhattan Private room 80
## 10331 Queens Entire home/apt 60
## 10332 Brooklyn Entire home/apt 220
## 10333 Manhattan Entire home/apt 140
## 10334 Manhattan Entire home/apt 1200
## 10335 Brooklyn Entire home/apt 120
## 10336 Manhattan Entire home/apt 369
## 10337 Manhattan Private room 42
## 10338 Brooklyn Entire home/apt 120
## 10339 Manhattan Private room 69
## 10340 Brooklyn Private room 85
## 10341 Brooklyn Private room 75
## 10342 Brooklyn Private room 1100
## 10343 Brooklyn Private room 60
## 10344 Manhattan Private room 160
## 10345 Manhattan Private room 120
## 10346 Manhattan Entire home/apt 95
## 10347 Manhattan Entire home/apt 180
## 10348 Brooklyn Entire home/apt 170
## 10349 Brooklyn Private room 39
## 10350 Brooklyn Private room 75
## 10351 Manhattan Private room 100
## 10352 Brooklyn Entire home/apt 160
## 10353 Manhattan Private room 96
## 10354 Manhattan Private room 50
## 10355 Manhattan Entire home/apt 145
## 10356 Brooklyn Entire home/apt 225
## 10357 Manhattan Entire home/apt 100
## 10358 Brooklyn Private room 95
## 10359 Brooklyn Entire home/apt 115
## 10360 Manhattan Entire home/apt 215
## 10361 Brooklyn Private room 105
## 10362 Manhattan Private room 75
## 10363 Brooklyn Private room 150
## 10364 Brooklyn Private room 35
## 10365 Brooklyn Entire home/apt 80
## 10366 Brooklyn Entire home/apt 120
## 10367 Queens Private room 89
## 10368 Brooklyn Entire home/apt 130
## 10369 Manhattan Entire home/apt 122
## 10370 Manhattan Private room 71
## 10371 Brooklyn Private room 50
## 10372 Brooklyn Private room 72
## 10373 Brooklyn Private room 99
## 10374 Brooklyn Entire home/apt 110
## 10375 Manhattan Entire home/apt 118
## 10376 Manhattan Private room 75
## 10377 Manhattan Entire home/apt 225
## 10378 Brooklyn Private room 80
## 10379 Bronx Private room 107
## 10380 Brooklyn Entire home/apt 500
## 10381 Brooklyn Entire home/apt 200
## 10382 Queens Private room 42
## 10383 Manhattan Entire home/apt 350
## 10384 Manhattan Private room 160
## 10385 Brooklyn Entire home/apt 164
## 10386 Brooklyn Private room 89
## 10387 Brooklyn Entire home/apt 150
## 10388 Manhattan Private room 100
## 10389 Brooklyn Entire home/apt 120
## 10390 Manhattan Private room 73
## 10391 Manhattan Private room 73
## 10392 Manhattan Entire home/apt 200
## 10393 Brooklyn Entire home/apt 140
## 10394 Brooklyn Entire home/apt 125
## 10395 Brooklyn Entire home/apt 109
## 10396 Queens Entire home/apt 140
## 10397 Brooklyn Private room 48
## 10398 Brooklyn Entire home/apt 135
## 10399 Manhattan Entire home/apt 335
## 10400 Manhattan Private room 50
## 10401 Manhattan Entire home/apt 400
## 10402 Manhattan Entire home/apt 165
## 10403 Brooklyn Private room 70
## 10404 Queens Private room 52
## 10405 Manhattan Entire home/apt 385
## 10406 Brooklyn Private room 45
## 10407 Brooklyn Entire home/apt 275
## 10408 Manhattan Private room 135
## 10409 Queens Entire home/apt 75
## 10410 Manhattan Private room 110
## 10411 Brooklyn Entire home/apt 350
## 10412 Brooklyn Private room 100
## 10413 Queens Entire home/apt 100
## 10414 Brooklyn Entire home/apt 135
## 10415 Manhattan Entire home/apt 115
## 10416 Brooklyn Entire home/apt 150
## 10417 Manhattan Private room 60
## 10418 Brooklyn Entire home/apt 99
## 10419 Manhattan Entire home/apt 180
## 10420 Brooklyn Entire home/apt 95
## 10421 Brooklyn Private room 60
## 10422 Queens Entire home/apt 100
## 10423 Manhattan Entire home/apt 250
## 10424 Manhattan Shared room 200
## 10425 Brooklyn Entire home/apt 150
## 10426 Brooklyn Entire home/apt 145
## 10427 Brooklyn Entire home/apt 250
## 10428 Brooklyn Entire home/apt 150
## 10429 Manhattan Entire home/apt 400
## 10430 Brooklyn Private room 83
## 10431 Brooklyn Entire home/apt 150
## 10432 Manhattan Entire home/apt 1195
## 10433 Brooklyn Private room 68
## 10434 Brooklyn Private room 50
## 10435 Brooklyn Private room 70
## 10436 Brooklyn Private room 65
## 10437 Brooklyn Private room 45
## 10438 Manhattan Private room 75
## 10439 Brooklyn Entire home/apt 115
## 10440 Manhattan Private room 65
## 10441 Brooklyn Entire home/apt 170
## 10442 Queens Entire home/apt 450
## 10443 Brooklyn Entire home/apt 100
## 10444 Manhattan Shared room 65
## 10445 Brooklyn Entire home/apt 280
## 10446 Brooklyn Entire home/apt 65
## 10447 Brooklyn Entire home/apt 150
## 10448 Manhattan Entire home/apt 250
## 10449 Manhattan Entire home/apt 250
## 10450 Brooklyn Entire home/apt 65
## 10451 Queens Entire home/apt 130
## 10452 Manhattan Entire home/apt 375
## 10453 Brooklyn Shared room 48
## 10454 Brooklyn Entire home/apt 80
## 10455 Manhattan Entire home/apt 110
## 10456 Manhattan Private room 72
## 10457 Brooklyn Private room 49
## 10458 Manhattan Entire home/apt 250
## 10459 Manhattan Private room 120
## 10460 Brooklyn Entire home/apt 240
## 10461 Manhattan Entire home/apt 77
## 10462 Manhattan Private room 65
## 10463 Manhattan Entire home/apt 185
## 10464 Manhattan Private room 100
## 10465 Brooklyn Private room 50
## 10466 Brooklyn Private room 50
## 10467 Queens Private room 90
## 10468 Brooklyn Entire home/apt 87
## 10469 Brooklyn Private room 30
## 10470 Manhattan Private room 65
## 10471 Manhattan Entire home/apt 109
## 10472 Manhattan Entire home/apt 150
## 10473 Manhattan Private room 152
## 10474 Brooklyn Entire home/apt 150
## 10475 Manhattan Entire home/apt 300
## 10476 Queens Private room 55
## 10477 Manhattan Entire home/apt 500
## 10478 Brooklyn Private room 70
## 10479 Brooklyn Private room 60
## 10480 Brooklyn Entire home/apt 150
## 10481 Brooklyn Private room 119
## 10482 Manhattan Entire home/apt 74
## 10483 Manhattan Entire home/apt 250
## 10484 Manhattan Private room 250
## 10485 Manhattan Entire home/apt 130
## 10486 Manhattan Private room 200
## 10487 Manhattan Private room 163
## 10488 Brooklyn Entire home/apt 125
## 10489 Brooklyn Entire home/apt 149
## 10490 Brooklyn Entire home/apt 135
## 10491 Manhattan Entire home/apt 129
## 10492 Queens Entire home/apt 87
## 10493 Brooklyn Private room 55
## 10494 Brooklyn Shared room 54
## 10495 Manhattan Entire home/apt 110
## 10496 Brooklyn Entire home/apt 250
## 10497 Manhattan Entire home/apt 150
## 10498 Manhattan Entire home/apt 150
## 10499 Brooklyn Private room 40
## 10500 Manhattan Entire home/apt 295
## 10501 Brooklyn Private room 130
## 10502 Brooklyn Private room 79
## 10503 Brooklyn Private room 69
## 10504 Brooklyn Private room 79
## 10505 Manhattan Entire home/apt 147
## 10506 Brooklyn Private room 79
## 10507 Brooklyn Private room 69
## 10508 Brooklyn Private room 70
## 10509 Brooklyn Private room 119
## 10510 Brooklyn Private room 49
## 10511 Brooklyn Entire home/apt 132
## 10512 Brooklyn Entire home/apt 155
## 10513 Brooklyn Entire home/apt 150
## 10514 Manhattan Entire home/apt 179
## 10515 Manhattan Private room 60
## 10516 Brooklyn Entire home/apt 104
## 10517 Brooklyn Private room 40
## 10518 Brooklyn Private room 90
## 10519 Manhattan Entire home/apt 80
## 10520 Brooklyn Private room 89
## 10521 Brooklyn Entire home/apt 999
## 10522 Brooklyn Entire home/apt 85
## 10523 Brooklyn Private room 75
## 10524 Manhattan Private room 59
## 10525 Brooklyn Private room 45
## 10526 Manhattan Entire home/apt 350
## 10527 Brooklyn Entire home/apt 395
## 10528 Brooklyn Private room 200
## 10529 Manhattan Entire home/apt 180
## 10530 Brooklyn Private room 46
## 10531 Manhattan Entire home/apt 203
## 10532 Manhattan Entire home/apt 189
## 10533 Queens Entire home/apt 195
## 10534 Manhattan Private room 39
## 10535 Manhattan Entire home/apt 57
## 10536 Brooklyn Private room 65
## 10537 Manhattan Shared room 35
## 10538 Brooklyn Entire home/apt 140
## 10539 Brooklyn Private room 65
## 10540 Manhattan Entire home/apt 118
## 10541 Manhattan Shared room 250
## 10542 Manhattan Shared room 55
## 10543 Manhattan Entire home/apt 155
## 10544 Queens Entire home/apt 250
## 10545 Brooklyn Private room 85
## 10546 Manhattan Entire home/apt 168
## 10547 Brooklyn Entire home/apt 110
## 10548 Brooklyn Entire home/apt 125
## 10549 Brooklyn Entire home/apt 125
## 10550 Manhattan Private room 115
## 10551 Manhattan Entire home/apt 130
## 10552 Brooklyn Private room 64
## 10553 Manhattan Entire home/apt 140
## 10554 Manhattan Entire home/apt 165
## 10555 Manhattan Entire home/apt 160
## 10556 Brooklyn Private room 70
## 10557 Queens Entire home/apt 100
## 10558 Manhattan Entire home/apt 225
## 10559 Queens Entire home/apt 70
## 10560 Brooklyn Private room 60
## 10561 Brooklyn Entire home/apt 120
## 10562 Brooklyn Private room 50
## 10563 Queens Private room 75
## 10564 Queens Private room 75
## 10565 Queens Private room 37
## 10566 Manhattan Entire home/apt 225
## 10567 Manhattan Entire home/apt 250
## 10568 Brooklyn Entire home/apt 125
## 10569 Manhattan Entire home/apt 170
## 10570 Manhattan Private room 110
## 10571 Manhattan Entire home/apt 299
## 10572 Manhattan Private room 100
## 10573 Brooklyn Private room 50
## 10574 Manhattan Entire home/apt 205
## 10575 Manhattan Private room 45
## 10576 Brooklyn Entire home/apt 90
## 10577 Brooklyn Private room 49
## 10578 Manhattan Private room 88
## 10579 Manhattan Entire home/apt 129
## 10580 Manhattan Entire home/apt 165
## 10581 Brooklyn Entire home/apt 103
## 10582 Brooklyn Entire home/apt 97
## 10583 Manhattan Private room 49
## 10584 Manhattan Entire home/apt 245
## 10585 Queens Private room 52
## 10586 Brooklyn Entire home/apt 280
## 10587 Manhattan Entire home/apt 120
## 10588 Brooklyn Private room 30
## 10589 Manhattan Entire home/apt 350
## 10590 Brooklyn Entire home/apt 150
## 10591 Manhattan Private room 62
## 10592 Manhattan Entire home/apt 195
## 10593 Manhattan Entire home/apt 129
## 10594 Brooklyn Entire home/apt 175
## 10595 Queens Private room 80
## 10596 Brooklyn Entire home/apt 90
## 10597 Brooklyn Private room 77
## 10598 Brooklyn Entire home/apt 120
## 10599 Brooklyn Private room 90
## 10600 Brooklyn Entire home/apt 180
## 10601 Brooklyn Entire home/apt 100
## 10602 Manhattan Entire home/apt 159
## 10603 Manhattan Entire home/apt 200
## 10604 Manhattan Private room 89
## 10605 Manhattan Entire home/apt 200
## 10606 Manhattan Private room 72
## 10607 Manhattan Entire home/apt 250
## 10608 Manhattan Entire home/apt 165
## 10609 Manhattan Private room 100
## 10610 Brooklyn Private room 90
## 10611 Manhattan Private room 90
## 10612 Manhattan Entire home/apt 120
## 10613 Manhattan Entire home/apt 185
## 10614 Manhattan Private room 100
## 10615 Manhattan Entire home/apt 120
## 10616 Manhattan Entire home/apt 159
## 10617 Brooklyn Private room 70
## 10618 Brooklyn Private room 80
## 10619 Manhattan Entire home/apt 220
## 10620 Brooklyn Entire home/apt 89
## 10621 Queens Entire home/apt 135
## 10622 Manhattan Entire home/apt 150
## 10623 Brooklyn Entire home/apt 165
## 10624 Queens Private room 46
## 10625 Queens Private room 50
## 10626 Manhattan Entire home/apt 100
## 10627 Manhattan Entire home/apt 200
## 10628 Queens Private room 100
## 10629 Brooklyn Entire home/apt 81
## 10630 Manhattan Entire home/apt 150
## 10631 Manhattan Private room 60
## 10632 Manhattan Entire home/apt 180
## 10633 Brooklyn Entire home/apt 239
## 10634 Brooklyn Private room 70
## 10635 Brooklyn Private room 45
## 10636 Manhattan Entire home/apt 200
## 10637 Manhattan Shared room 45
## 10638 Brooklyn Entire home/apt 45
## 10639 Brooklyn Entire home/apt 400
## 10640 Brooklyn Entire home/apt 110
## 10641 Brooklyn Private room 65
## 10642 Manhattan Entire home/apt 250
## 10643 Manhattan Private room 120
## 10644 Manhattan Entire home/apt 249
## 10645 Brooklyn Private room 80
## 10646 Manhattan Entire home/apt 124
## 10647 Brooklyn Entire home/apt 175
## 10648 Brooklyn Private room 45
## 10649 Brooklyn Private room 60
## 10650 Brooklyn Entire home/apt 115
## 10651 Brooklyn Entire home/apt 99
## 10652 Queens Private room 75
## 10653 Manhattan Entire home/apt 140
## 10654 Manhattan Private room 75
## 10655 Brooklyn Private room 60
## 10656 Queens Private room 132
## 10657 Manhattan Private room 120
## 10658 Manhattan Entire home/apt 150
## 10659 Manhattan Entire home/apt 500
## 10660 Manhattan Entire home/apt 150
## 10661 Brooklyn Private room 49
## 10662 Brooklyn Entire home/apt 110
## 10663 Manhattan Private room 65
## 10664 Brooklyn Entire home/apt 190
## 10665 Manhattan Entire home/apt 125
## 10666 Manhattan Private room 92
## 10667 Brooklyn Entire home/apt 100
## 10668 Brooklyn Private room 36
## 10669 Brooklyn Entire home/apt 325
## 10670 Manhattan Entire home/apt 120
## 10671 Brooklyn Private room 60
## 10672 Manhattan Entire home/apt 175
## 10673 Brooklyn Entire home/apt 200
## 10674 Manhattan Entire home/apt 180
## 10675 Manhattan Private room 155
## 10676 Brooklyn Entire home/apt 120
## 10677 Brooklyn Private room 60
## 10678 Manhattan Private room 95
## 10679 Brooklyn Private room 80
## 10680 Brooklyn Entire home/apt 230
## 10681 Brooklyn Private room 45
## 10682 Queens Private room 40
## 10683 Brooklyn Shared room 95
## 10684 Brooklyn Entire home/apt 200
## 10685 Manhattan Private room 42
## 10686 Brooklyn Private room 70
## 10687 Brooklyn Private room 199
## 10688 Manhattan Private room 65
## 10689 Manhattan Entire home/apt 190
## 10690 Manhattan Entire home/apt 200
## 10691 Brooklyn Entire home/apt 75
## 10692 Brooklyn Private room 98
## 10693 Brooklyn Private room 120
## 10694 Brooklyn Private room 130
## 10695 Manhattan Entire home/apt 250
## 10696 Manhattan Entire home/apt 125
## 10697 Manhattan Entire home/apt 225
## 10698 Brooklyn Private room 96
## 10699 Brooklyn Private room 55
## 10700 Manhattan Private room 68
## 10701 Brooklyn Private room 45
## 10702 Queens Entire home/apt 140
## 10703 Manhattan Entire home/apt 160
## 10704 Brooklyn Private room 77
## 10705 Brooklyn Private room 90
## 10706 Manhattan Entire home/apt 208
## 10707 Manhattan Entire home/apt 215
## 10708 Manhattan Private room 100
## 10709 Manhattan Private room 40
## 10710 Queens Private room 59
## 10711 Bronx Entire home/apt 325
## 10712 Brooklyn Entire home/apt 98
## 10713 Manhattan Private room 109
## 10714 Brooklyn Private room 69
## 10715 Queens Private room 80
## 10716 Brooklyn Entire home/apt 80
## 10717 Brooklyn Private room 39
## 10718 Brooklyn Private room 70
## 10719 Manhattan Entire home/apt 194
## 10720 Manhattan Private room 90
## 10721 Brooklyn Private room 39
## 10722 Brooklyn Private room 85
## 10723 Staten Island Entire home/apt 429
## 10724 Manhattan Private room 42
## 10725 Brooklyn Entire home/apt 200
## 10726 Manhattan Entire home/apt 700
## 10727 Brooklyn Private room 50
## 10728 Brooklyn Entire home/apt 100
## 10729 Brooklyn Entire home/apt 150
## 10730 Brooklyn Entire home/apt 100
## 10731 Brooklyn Entire home/apt 85
## 10732 Manhattan Entire home/apt 240
## 10733 Manhattan Entire home/apt 135
## 10734 Manhattan Entire home/apt 135
## 10735 Bronx Private room 79
## 10736 Manhattan Private room 150
## 10737 Brooklyn Private room 139
## 10738 Brooklyn Private room 38
## 10739 Brooklyn Private room 100
## 10740 Queens Private room 75
## 10741 Queens Entire home/apt 170
## 10742 Manhattan Private room 70
## 10743 Manhattan Private room 199
## 10744 Brooklyn Private room 39
## 10745 Brooklyn Private room 39
## 10746 Manhattan Private room 75
## 10747 Brooklyn Entire home/apt 99
## 10748 Queens Private room 100
## 10749 Brooklyn Entire home/apt 225
## 10750 Brooklyn Private room 99
## 10751 Brooklyn Entire home/apt 469
## 10752 Brooklyn Private room 67
## 10753 Manhattan Private room 180
## 10754 Manhattan Private room 100
## 10755 Manhattan Entire home/apt 125
## 10756 Queens Entire home/apt 85
## 10757 Manhattan Private room 175
## 10758 Bronx Private room 65
## 10759 Brooklyn Private room 52
## 10760 Manhattan Entire home/apt 85
## 10761 Staten Island Private room 99
## 10762 Brooklyn Private room 130
## 10763 Manhattan Entire home/apt 189
## 10764 Brooklyn Entire home/apt 121
## 10765 Brooklyn Private room 150
## 10766 Manhattan Entire home/apt 170
## 10767 Manhattan Private room 70
## 10768 Manhattan Private room 80
## 10769 Manhattan Entire home/apt 186
## 10770 Manhattan Entire home/apt 174
## 10771 Manhattan Private room 89
## 10772 Manhattan Private room 109
## 10773 Brooklyn Entire home/apt 100
## 10774 Brooklyn Private room 80
## 10775 Brooklyn Private room 41
## 10776 Brooklyn Entire home/apt 120
## 10777 Manhattan Entire home/apt 230
## 10778 Brooklyn Shared room 45
## 10779 Manhattan Entire home/apt 600
## 10780 Brooklyn Entire home/apt 125
## 10781 Manhattan Entire home/apt 149
## 10782 Bronx Private room 63
## 10783 Brooklyn Entire home/apt 60
## 10784 Manhattan Private room 57
## 10785 Brooklyn Entire home/apt 160
## 10786 Brooklyn Entire home/apt 164
## 10787 Brooklyn Entire home/apt 250
## 10788 Manhattan Entire home/apt 194
## 10789 Manhattan Entire home/apt 140
## 10790 Brooklyn Entire home/apt 205
## 10791 Brooklyn Private room 129
## 10792 Brooklyn Entire home/apt 250
## 10793 Manhattan Private room 399
## 10794 Manhattan Entire home/apt 150
## 10795 Brooklyn Entire home/apt 75
## 10796 Brooklyn Shared room 45
## 10797 Brooklyn Private room 65
## 10798 Manhattan Entire home/apt 250
## 10799 Brooklyn Shared room 185
## 10800 Manhattan Entire home/apt 400
## 10801 Queens Entire home/apt 125
## 10802 Queens Private room 175
## 10803 Brooklyn Entire home/apt 300
## 10804 Manhattan Entire home/apt 249
## 10805 Manhattan Entire home/apt 199
## 10806 Manhattan Entire home/apt 180
## 10807 Brooklyn Private room 60
## 10808 Brooklyn Private room 55
## 10809 Brooklyn Entire home/apt 135
## 10810 Brooklyn Entire home/apt 90
## 10811 Manhattan Private room 130
## 10812 Bronx Shared room 150
## 10813 Brooklyn Private room 80
## 10814 Manhattan Private room 85
## 10815 Manhattan Private room 150
## 10816 Brooklyn Private room 62
## 10817 Brooklyn Entire home/apt 155
## 10818 Brooklyn Private room 40
## 10819 Manhattan Private room 140
## 10820 Brooklyn Shared room 50
## 10821 Manhattan Entire home/apt 250
## 10822 Brooklyn Private room 70
## 10823 Brooklyn Entire home/apt 160
## 10824 Brooklyn Entire home/apt 78
## 10825 Manhattan Entire home/apt 139
## 10826 Manhattan Private room 50
## 10827 Manhattan Entire home/apt 145
## 10828 Manhattan Private room 55
## 10829 Manhattan Entire home/apt 215
## 10830 Queens Entire home/apt 199
## 10831 Queens Private room 120
## 10832 Manhattan Entire home/apt 160
## 10833 Manhattan Entire home/apt 125
## 10834 Manhattan Entire home/apt 99
## 10835 Staten Island Entire home/apt 80
## 10836 Manhattan Entire home/apt 150
## 10837 Brooklyn Private room 110
## 10838 Brooklyn Entire home/apt 360
## 10839 Manhattan Entire home/apt 239
## 10840 Brooklyn Private room 40
## 10841 Manhattan Private room 60
## 10842 Manhattan Entire home/apt 87
## 10843 Brooklyn Private room 44
## 10844 Manhattan Private room 80
## 10845 Manhattan Entire home/apt 119
## 10846 Brooklyn Entire home/apt 69
## 10847 Manhattan Private room 50
## 10848 Brooklyn Entire home/apt 200
## 10849 Bronx Private room 65
## 10850 Queens Entire home/apt 78
## 10851 Brooklyn Entire home/apt 150
## 10852 Manhattan Private room 99
## 10853 Queens Entire home/apt 150
## 10854 Manhattan Entire home/apt 140
## 10855 Manhattan Entire home/apt 500
## 10856 Brooklyn Entire home/apt 75
## 10857 Brooklyn Entire home/apt 123
## 10858 Brooklyn Entire home/apt 414
## 10859 Brooklyn Private room 125
## 10860 Manhattan Entire home/apt 299
## 10861 Brooklyn Private room 55
## 10862 Manhattan Private room 55
## 10863 Brooklyn Private room 65
## 10864 Manhattan Entire home/apt 300
## 10865 Manhattan Entire home/apt 150
## 10866 Manhattan Private room 79
## 10867 Manhattan Entire home/apt 152
## 10868 Manhattan Entire home/apt 124
## 10869 Brooklyn Private room 85
## 10870 Manhattan Private room 100
## 10871 Brooklyn Entire home/apt 82
## 10872 Bronx Private room 59
## 10873 Manhattan Private room 75
## 10874 Brooklyn Private room 65
## 10875 Staten Island Private room 50
## 10876 Brooklyn Private room 65
## 10877 Manhattan Entire home/apt 109
## 10878 Brooklyn Private room 59
## 10879 Manhattan Entire home/apt 300
## 10880 Brooklyn Entire home/apt 135
## 10881 Manhattan Entire home/apt 110
## 10882 Manhattan Entire home/apt 300
## 10883 Manhattan Private room 80
## 10884 Manhattan Private room 185
## 10885 Brooklyn Private room 35
## 10886 Brooklyn Private room 250
## 10887 Manhattan Private room 90
## 10888 Queens Private room 50
## 10889 Brooklyn Private room 60
## 10890 Brooklyn Private room 70
## 10891 Manhattan Private room 130
## 10892 Bronx Private room 28
## 10893 Brooklyn Private room 35
## 10894 Brooklyn Entire home/apt 110
## 10895 Brooklyn Private room 70
## 10896 Brooklyn Entire home/apt 200
## 10897 Manhattan Private room 90
## 10898 Queens Entire home/apt 139
## 10899 Manhattan Entire home/apt 360
## 10900 Manhattan Entire home/apt 185
## 10901 Queens Entire home/apt 95
## 10902 Brooklyn Private room 100
## 10903 Manhattan Private room 195
## 10904 Manhattan Entire home/apt 235
## 10905 Brooklyn Entire home/apt 150
## 10906 Manhattan Private room 70
## 10907 Manhattan Private room 95
## 10908 Manhattan Entire home/apt 450
## 10909 Manhattan Private room 50
## 10910 Manhattan Private room 100
## 10911 Brooklyn Entire home/apt 160
## 10912 Brooklyn Private room 65
## 10913 Queens Entire home/apt 104
## 10914 Manhattan Private room 60
## 10915 Brooklyn Private room 60
## 10916 Brooklyn Private room 50
## 10917 Manhattan Entire home/apt 190
## 10918 Brooklyn Private room 60
## 10919 Brooklyn Private room 55
## 10920 Brooklyn Entire home/apt 80
## 10921 Queens Private room 65
## 10922 Manhattan Entire home/apt 235
## 10923 Manhattan Entire home/apt 205
## 10924 Brooklyn Entire home/apt 109
## 10925 Brooklyn Private room 85
## 10926 Brooklyn Private room 80
## 10927 Manhattan Entire home/apt 120
## 10928 Manhattan Private room 130
## 10929 Manhattan Entire home/apt 190
## 10930 Manhattan Entire home/apt 455
## 10931 Manhattan Private room 99
## 10932 Manhattan Entire home/apt 125
## 10933 Brooklyn Private room 52
## 10934 Brooklyn Entire home/apt 110
## 10935 Queens Private room 75
## 10936 Manhattan Private room 99
## 10937 Manhattan Private room 137
## 10938 Manhattan Private room 85
## 10939 Manhattan Entire home/apt 149
## 10940 Brooklyn Entire home/apt 124
## 10941 Manhattan Private room 125
## 10942 Manhattan Private room 70
## 10943 Queens Private room 99
## 10944 Queens Private room 109
## 10945 Manhattan Entire home/apt 235
## 10946 Brooklyn Entire home/apt 95
## 10947 Manhattan Entire home/apt 250
## 10948 Manhattan Private room 95
## 10949 Manhattan Private room 85
## 10950 Manhattan Entire home/apt 190
## 10951 Manhattan Private room 125
## 10952 Manhattan Entire home/apt 125
## 10953 Manhattan Entire home/apt 374
## 10954 Brooklyn Private room 160
## 10955 Manhattan Private room 59
## 10956 Brooklyn Entire home/apt 70
## 10957 Brooklyn Entire home/apt 55
## 10958 Manhattan Entire home/apt 100
## 10959 Manhattan Private room 95
## 10960 Manhattan Entire home/apt 250
## 10961 Brooklyn Entire home/apt 95
## 10962 Queens Entire home/apt 89
## 10963 Manhattan Entire home/apt 285
## 10964 Manhattan Private room 127
## 10965 Manhattan Entire home/apt 150
## 10966 Manhattan Entire home/apt 225
## 10967 Manhattan Entire home/apt 150
## 10968 Brooklyn Private room 50
## 10969 Manhattan Private room 60
## 10970 Manhattan Entire home/apt 275
## 10971 Manhattan Shared room 65
## 10972 Brooklyn Private room 80
## 10973 Queens Entire home/apt 130
## 10974 Queens Entire home/apt 199
## 10975 Brooklyn Private room 65
## 10976 Brooklyn Private room 75
## 10977 Brooklyn Entire home/apt 200
## 10978 Manhattan Private room 40
## 10979 Manhattan Entire home/apt 68
## 10980 Brooklyn Entire home/apt 130
## 10981 Manhattan Private room 135
## 10982 Manhattan Entire home/apt 165
## 10983 Manhattan Entire home/apt 250
## 10984 Queens Shared room 52
## 10985 Manhattan Entire home/apt 170
## 10986 Brooklyn Private room 42
## 10987 Brooklyn Private room 65
## 10988 Brooklyn Entire home/apt 80
## 10989 Manhattan Entire home/apt 130
## 10990 Manhattan Entire home/apt 140
## 10991 Manhattan Entire home/apt 200
## 10992 Brooklyn Private room 55
## 10993 Brooklyn Private room 50
## 10994 Manhattan Entire home/apt 175
## 10995 Manhattan Entire home/apt 500
## 10996 Manhattan Entire home/apt 99
## 10997 Manhattan Entire home/apt 650
## 10998 Manhattan Entire home/apt 200
## 10999 Manhattan Entire home/apt 180
## 11000 Queens Private room 75
## 11001 Manhattan Entire home/apt 90
## 11002 Queens Private room 51
## 11003 Brooklyn Private room 62
## 11004 Brooklyn Entire home/apt 70
## 11005 Brooklyn Private room 90
## 11006 Brooklyn Private room 45
## 11007 Manhattan Private room 109
## 11008 Manhattan Private room 100
## 11009 Brooklyn Entire home/apt 200
## 11010 Manhattan Private room 149
## 11011 Queens Private room 55
## 11012 Manhattan Entire home/apt 275
## 11013 Brooklyn Entire home/apt 70
## 11014 Brooklyn Shared room 29
## 11015 Brooklyn Entire home/apt 195
## 11016 Manhattan Entire home/apt 220
## 11017 Queens Private room 80
## 11018 Queens Private room 110
## 11019 Manhattan Private room 70
## 11020 Manhattan Private room 90
## 11021 Brooklyn Entire home/apt 130
## 11022 Manhattan Entire home/apt 2000
## 11023 Manhattan Entire home/apt 149
## 11024 Bronx Entire home/apt 100
## 11025 Brooklyn Entire home/apt 100
## 11026 Brooklyn Entire home/apt 125
## 11027 Manhattan Entire home/apt 200
## 11028 Manhattan Entire home/apt 199
## 11029 Brooklyn Private room 50
## 11030 Manhattan Entire home/apt 300
## 11031 Manhattan Entire home/apt 285
## 11032 Manhattan Entire home/apt 330
## 11033 Brooklyn Private room 39
## 11034 Manhattan Shared room 60
## 11035 Brooklyn Entire home/apt 77
## 11036 Brooklyn Entire home/apt 115
## 11037 Manhattan Entire home/apt 99
## 11038 Manhattan Entire home/apt 250
## 11039 Manhattan Shared room 62
## 11040 Brooklyn Entire home/apt 105
## 11041 Queens Private room 55
## 11042 Brooklyn Entire home/apt 172
## 11043 Manhattan Entire home/apt 100
## 11044 Manhattan Entire home/apt 120
## 11045 Brooklyn Private room 60
## 11046 Brooklyn Private room 72
## 11047 Manhattan Private room 80
## 11048 Brooklyn Entire home/apt 229
## 11049 Queens Private room 70
## 11050 Brooklyn Shared room 40
## 11051 Manhattan Private room 99
## 11052 Queens Private room 100
## 11053 Manhattan Private room 78
## 11054 Manhattan Entire home/apt 125
## 11055 Manhattan Entire home/apt 190
## 11056 Manhattan Shared room 100
## 11057 Manhattan Entire home/apt 135
## 11058 Brooklyn Entire home/apt 250
## 11059 Manhattan Entire home/apt 125
## 11060 Brooklyn Entire home/apt 228
## 11061 Queens Private room 37
## 11062 Manhattan Entire home/apt 116
## 11063 Brooklyn Entire home/apt 99
## 11064 Queens Private room 50
## 11065 Brooklyn Private room 54
## 11066 Brooklyn Private room 70
## 11067 Manhattan Private room 135
## 11068 Manhattan Entire home/apt 425
## 11069 Brooklyn Entire home/apt 122
## 11070 Manhattan Entire home/apt 141
## 11071 Manhattan Entire home/apt 800
## 11072 Brooklyn Private room 70
## 11073 Brooklyn Private room 90
## 11074 Manhattan Entire home/apt 150
## 11075 Manhattan Entire home/apt 250
## 11076 Manhattan Private room 115
## 11077 Manhattan Entire home/apt 130
## 11078 Brooklyn Private room 74
## 11079 Brooklyn Private room 48
## 11080 Manhattan Shared room 85
## 11081 Manhattan Entire home/apt 180
## 11082 Brooklyn Entire home/apt 97
## 11083 Manhattan Entire home/apt 131
## 11084 Manhattan Private room 100
## 11085 Brooklyn Entire home/apt 100
## 11086 Manhattan Private room 105
## 11087 Brooklyn Entire home/apt 100
## 11088 Brooklyn Entire home/apt 145
## 11089 Manhattan Entire home/apt 289
## 11090 Brooklyn Entire home/apt 800
## 11091 Brooklyn Private room 90
## 11092 Manhattan Private room 29
## 11093 Brooklyn Entire home/apt 70
## 11094 Brooklyn Private room 80
## 11095 Manhattan Private room 120
## 11096 Brooklyn Private room 60
## 11097 Manhattan Private room 80
## 11098 Brooklyn Private room 70
## 11099 Manhattan Entire home/apt 175
## 11100 Staten Island Entire home/apt 144
## 11101 Brooklyn Private room 40
## 11102 Manhattan Entire home/apt 340
## 11103 Manhattan Private room 180
## 11104 Manhattan Private room 75
## 11105 Brooklyn Entire home/apt 80
## 11106 Brooklyn Entire home/apt 352
## 11107 Queens Private room 69
## 11108 Manhattan Entire home/apt 150
## 11109 Manhattan Entire home/apt 500
## 11110 Brooklyn Entire home/apt 250
## 11111 Manhattan Entire home/apt 280
## 11112 Brooklyn Private room 55
## 11113 Queens Private room 50
## 11114 Brooklyn Private room 49
## 11115 Brooklyn Private room 135
## 11116 Brooklyn Private room 45
## 11117 Brooklyn Entire home/apt 150
## 11118 Brooklyn Entire home/apt 120
## 11119 Manhattan Entire home/apt 150
## 11120 Brooklyn Entire home/apt 120
## 11121 Manhattan Entire home/apt 80
## 11122 Manhattan Private room 60
## 11123 Queens Private room 70
## 11124 Manhattan Entire home/apt 239
## 11125 Manhattan Entire home/apt 275
## 11126 Brooklyn Entire home/apt 89
## 11127 Brooklyn Entire home/apt 300
## 11128 Manhattan Private room 50
## 11129 Queens Shared room 37
## 11130 Manhattan Entire home/apt 239
## 11131 Brooklyn Entire home/apt 190
## 11132 Brooklyn Entire home/apt 150
## 11133 Manhattan Private room 150
## 11134 Brooklyn Entire home/apt 360
## 11135 Manhattan Private room 115
## 11136 Manhattan Entire home/apt 150
## 11137 Manhattan Entire home/apt 207
## 11138 Queens Private room 120
## 11139 Manhattan Entire home/apt 160
## 11140 Queens Entire home/apt 85
## 11141 Brooklyn Entire home/apt 100
## 11142 Brooklyn Private room 45
## 11143 Brooklyn Entire home/apt 160
## 11144 Queens Private room 40
## 11145 Brooklyn Private room 49
## 11146 Brooklyn Private room 40
## 11147 Manhattan Entire home/apt 495
## 11148 Brooklyn Private room 89
## 11149 Manhattan Entire home/apt 220
## 11150 Manhattan Private room 99
## 11151 Manhattan Entire home/apt 160
## 11152 Brooklyn Private room 80
## 11153 Brooklyn Private room 78
## 11154 Brooklyn Private room 110
## 11155 Manhattan Entire home/apt 130
## 11156 Manhattan Entire home/apt 150
## 11157 Queens Entire home/apt 59
## 11158 Brooklyn Private room 80
## 11159 Manhattan Private room 80
## 11160 Manhattan Entire home/apt 160
## 11161 Brooklyn Private room 45
## 11162 Manhattan Private room 94
## 11163 Queens Private room 77
## 11164 Brooklyn Entire home/apt 149
## 11165 Brooklyn Entire home/apt 130
## 11166 Queens Private room 57
## 11167 Brooklyn Entire home/apt 150
## 11168 Queens Private room 55
## 11169 Manhattan Entire home/apt 127
## 11170 Brooklyn Private room 60
## 11171 Manhattan Private room 64
## 11172 Brooklyn Private room 40
## 11173 Manhattan Private room 50
## 11174 Brooklyn Private room 83
## 11175 Brooklyn Entire home/apt 200
## 11176 Manhattan Private room 49
## 11177 Brooklyn Private room 60
## 11178 Queens Private room 45
## 11179 Manhattan Entire home/apt 180
## 11180 Brooklyn Private room 45
## 11181 Brooklyn Entire home/apt 89
## 11182 Brooklyn Private room 25
## 11183 Brooklyn Entire home/apt 285
## 11184 Manhattan Private room 100
## 11185 Queens Private room 90
## 11186 Staten Island Entire home/apt 75
## 11187 Queens Entire home/apt 75
## 11188 Manhattan Private room 200
## 11189 Brooklyn Shared room 35
## 11190 Manhattan Entire home/apt 297
## 11191 Brooklyn Private room 150
## 11192 Brooklyn Entire home/apt 195
## 11193 Brooklyn Entire home/apt 80
## 11194 Brooklyn Private room 50
## 11195 Manhattan Entire home/apt 115
## 11196 Brooklyn Entire home/apt 70
## 11197 Brooklyn Entire home/apt 119
## 11198 Staten Island Entire home/apt 120
## 11199 Brooklyn Private room 400
## 11200 Manhattan Entire home/apt 250
## 11201 Bronx Entire home/apt 225
## 11202 Manhattan Entire home/apt 45
## 11203 Manhattan Entire home/apt 260
## 11204 Manhattan Entire home/apt 155
## 11205 Manhattan Shared room 97
## 11206 Queens Private room 75
## 11207 Manhattan Entire home/apt 155
## 11208 Manhattan Entire home/apt 237
## 11209 Brooklyn Private room 80
## 11210 Manhattan Entire home/apt 250
## 11211 Queens Private room 60
## 11212 Queens Private room 42
## 11213 Manhattan Private room 105
## 11214 Manhattan Entire home/apt 300
## 11215 Brooklyn Private room 120
## 11216 Brooklyn Private room 80
## 11217 Manhattan Entire home/apt 125
## 11218 Queens Entire home/apt 125
## 11219 Queens Private room 50
## 11220 Brooklyn Private room 60
## 11221 Brooklyn Entire home/apt 90
## 11222 Manhattan Private room 60
## 11223 Manhattan Entire home/apt 275
## 11224 Manhattan Private room 100
## 11225 Manhattan Private room 200
## 11226 Manhattan Private room 99
## 11227 Manhattan Private room 112
## 11228 Brooklyn Private room 65
## 11229 Manhattan Entire home/apt 200
## 11230 Brooklyn Entire home/apt 98
## 11231 Queens Private room 50
## 11232 Queens Entire home/apt 135
## 11233 Brooklyn Private room 50
## 11234 Manhattan Entire home/apt 145
## 11235 Manhattan Entire home/apt 450
## 11236 Manhattan Private room 141
## 11237 Brooklyn Private room 110
## 11238 Manhattan Private room 107
## 11239 Brooklyn Entire home/apt 110
## 11240 Brooklyn Entire home/apt 1000
## 11241 Manhattan Entire home/apt 299
## 11242 Manhattan Entire home/apt 190
## 11243 Brooklyn Entire home/apt 175
## 11244 Manhattan Private room 70
## 11245 Manhattan Entire home/apt 75
## 11246 Manhattan Entire home/apt 155
## 11247 Manhattan Entire home/apt 96
## 11248 Brooklyn Entire home/apt 350
## 11249 Manhattan Private room 90
## 11250 Manhattan Entire home/apt 500
## 11251 Brooklyn Private room 40
## 11252 Manhattan Entire home/apt 175
## 11253 Brooklyn Entire home/apt 50
## 11254 Manhattan Entire home/apt 130
## 11255 Brooklyn Private room 90
## 11256 Manhattan Private room 65
## 11257 Manhattan Entire home/apt 200
## 11258 Brooklyn Entire home/apt 63
## 11259 Manhattan Private room 110
## 11260 Queens Entire home/apt 100
## 11261 Manhattan Private room 60
## 11262 Brooklyn Private room 45
## 11263 Manhattan Entire home/apt 117
## 11264 Brooklyn Entire home/apt 175
## 11265 Brooklyn Entire home/apt 2000
## 11266 Brooklyn Private room 60
## 11267 Manhattan Private room 148
## 11268 Queens Private room 65
## 11269 Brooklyn Private room 150
## 11270 Brooklyn Private room 100
## 11271 Manhattan Entire home/apt 200
## 11272 Manhattan Entire home/apt 650
## 11273 Manhattan Entire home/apt 199
## 11274 Manhattan Entire home/apt 115
## 11275 Manhattan Entire home/apt 245
## 11276 Queens Entire home/apt 187
## 11277 Manhattan Entire home/apt 88
## 11278 Manhattan Entire home/apt 280
## 11279 Manhattan Entire home/apt 200
## 11280 Manhattan Entire home/apt 95
## 11281 Manhattan Entire home/apt 260
## 11282 Manhattan Entire home/apt 148
## 11283 Manhattan Entire home/apt 100
## 11284 Manhattan Private room 100
## 11285 Manhattan Shared room 60
## 11286 Manhattan Private room 64
## 11287 Brooklyn Private room 125
## 11288 Bronx Private room 65
## 11289 Manhattan Entire home/apt 110
## 11290 Manhattan Entire home/apt 745
## 11291 Manhattan Entire home/apt 140
## 11292 Brooklyn Private room 35
## 11293 Queens Entire home/apt 85
## 11294 Manhattan Private room 111
## 11295 Manhattan Entire home/apt 399
## 11296 Queens Shared room 40
## 11297 Manhattan Entire home/apt 300
## 11298 Brooklyn Private room 180
## 11299 Manhattan Private room 100
## 11300 Brooklyn Entire home/apt 150
## 11301 Manhattan Private room 63
## 11302 Manhattan Entire home/apt 175
## 11303 Brooklyn Private room 84
## 11304 Bronx Private room 33
## 11305 Brooklyn Private room 50
## 11306 Brooklyn Private room 75
## 11307 Manhattan Private room 125
## 11308 Brooklyn Entire home/apt 140
## 11309 Brooklyn Entire home/apt 85
## 11310 Brooklyn Entire home/apt 250
## 11311 Brooklyn Private room 60
## 11312 Brooklyn Private room 45
## 11313 Manhattan Entire home/apt 395
## 11314 Manhattan Entire home/apt 140
## 11315 Manhattan Entire home/apt 190
## 11316 Brooklyn Entire home/apt 91
## 11317 Brooklyn Private room 40
## 11318 Manhattan Private room 135
## 11319 Brooklyn Private room 50
## 11320 Queens Entire home/apt 72
## 11321 Brooklyn Entire home/apt 130
## 11322 Brooklyn Private room 90
## 11323 Manhattan Private room 100
## 11324 Manhattan Private room 150
## 11325 Manhattan Private room 62
## 11326 Manhattan Entire home/apt 100
## 11327 Manhattan Private room 150
## 11328 Manhattan Entire home/apt 95
## 11329 Brooklyn Entire home/apt 170
## 11330 Brooklyn Private room 40
## 11331 Brooklyn Private room 54
## 11332 Brooklyn Private room 30
## 11333 Manhattan Entire home/apt 150
## 11334 Manhattan Entire home/apt 250
## 11335 Brooklyn Private room 50
## 11336 Brooklyn Entire home/apt 120
## 11337 Manhattan Entire home/apt 410
## 11338 Brooklyn Entire home/apt 73
## 11339 Manhattan Entire home/apt 250
## 11340 Manhattan Entire home/apt 1170
## 11341 Manhattan Entire home/apt 250
## 11342 Manhattan Private room 139
## 11343 Manhattan Entire home/apt 149
## 11344 Manhattan Entire home/apt 185
## 11345 Manhattan Private room 230
## 11346 Manhattan Entire home/apt 175
## 11347 Manhattan Entire home/apt 150
## 11348 Brooklyn Entire home/apt 325
## 11349 Brooklyn Shared room 100
## 11350 Manhattan Private room 50
## 11351 Manhattan Entire home/apt 80
## 11352 Brooklyn Entire home/apt 135
## 11353 Queens Private room 32
## 11354 Manhattan Entire home/apt 261
## 11355 Brooklyn Entire home/apt 60
## 11356 Brooklyn Private room 57
## 11357 Manhattan Entire home/apt 225
## 11358 Brooklyn Entire home/apt 200
## 11359 Queens Private room 115
## 11360 Manhattan Entire home/apt 200
## 11361 Manhattan Entire home/apt 699
## 11362 Brooklyn Private room 65
## 11363 Brooklyn Entire home/apt 150
## 11364 Manhattan Entire home/apt 375
## 11365 Manhattan Entire home/apt 175
## 11366 Brooklyn Private room 45
## 11367 Manhattan Entire home/apt 225
## 11368 Manhattan Entire home/apt 165
## 11369 Manhattan Entire home/apt 250
## 11370 Brooklyn Entire home/apt 1150
## 11371 Brooklyn Entire home/apt 85
## 11372 Brooklyn Entire home/apt 135
## 11373 Manhattan Entire home/apt 125
## 11374 Staten Island Private room 300
## 11375 Brooklyn Entire home/apt 120
## 11376 Brooklyn Entire home/apt 100
## 11377 Manhattan Entire home/apt 179
## 11378 Brooklyn Private room 50
## 11379 Brooklyn Entire home/apt 115
## 11380 Brooklyn Entire home/apt 100
## 11381 Queens Private room 75
## 11382 Brooklyn Private room 60
## 11383 Manhattan Entire home/apt 240
## 11384 Manhattan Entire home/apt 290
## 11385 Brooklyn Private room 56
## 11386 Manhattan Private room 95
## 11387 Manhattan Private room 70
## 11388 Manhattan Entire home/apt 125
## 11389 Manhattan Entire home/apt 195
## 11390 Queens Private room 45
## 11391 Manhattan Shared room 64
## 11392 Brooklyn Private room 50
## 11393 Brooklyn Entire home/apt 80
## 11394 Brooklyn Private room 55
## 11395 Brooklyn Entire home/apt 1000
## 11396 Queens Private room 42
## 11397 Brooklyn Private room 80
## 11398 Brooklyn Entire home/apt 105
## 11399 Brooklyn Private room 45
## 11400 Manhattan Entire home/apt 125
## 11401 Queens Private room 45
## 11402 Brooklyn Private room 95
## 11403 Brooklyn Entire home/apt 200
## 11404 Manhattan Entire home/apt 190
## 11405 Manhattan Entire home/apt 170
## 11406 Brooklyn Entire home/apt 250
## 11407 Brooklyn Private room 54
## 11408 Manhattan Entire home/apt 150
## 11409 Manhattan Entire home/apt 300
## 11410 Brooklyn Private room 115
## 11411 Manhattan Entire home/apt 225
## 11412 Manhattan Private room 83
## 11413 Manhattan Entire home/apt 125
## 11414 Manhattan Entire home/apt 250
## 11415 Brooklyn Entire home/apt 129
## 11416 Manhattan Entire home/apt 135
## 11417 Brooklyn Entire home/apt 200
## 11418 Brooklyn Entire home/apt 175
## 11419 Queens Private room 55
## 11420 Brooklyn Private room 50
## 11421 Manhattan Private room 125
## 11422 Brooklyn Entire home/apt 200
## 11423 Brooklyn Private room 40
## 11424 Queens Private room 50
## 11425 Brooklyn Private room 166
## 11426 Manhattan Private room 124
## 11427 Brooklyn Private room 65
## 11428 Manhattan Private room 57
## 11429 Manhattan Private room 100
## 11430 Brooklyn Private room 60
## 11431 Brooklyn Private room 90
## 11432 Manhattan Private room 130
## 11433 Brooklyn Entire home/apt 350
## 11434 Brooklyn Private room 60
## 11435 Manhattan Private room 80
## 11436 Brooklyn Entire home/apt 70
## 11437 Brooklyn Private room 41
## 11438 Queens Entire home/apt 100
## 11439 Manhattan Entire home/apt 500
## 11440 Brooklyn Entire home/apt 200
## 11441 Manhattan Private room 120
## 11442 Queens Private room 170
## 11443 Brooklyn Private room 42
## 11444 Manhattan Private room 50
## 11445 Manhattan Entire home/apt 170
## 11446 Manhattan Entire home/apt 189
## 11447 Manhattan Entire home/apt 150
## 11448 Manhattan Private room 77
## 11449 Brooklyn Entire home/apt 150
## 11450 Brooklyn Private room 60
## 11451 Manhattan Entire home/apt 150
## 11452 Manhattan Entire home/apt 120
## 11453 Manhattan Entire home/apt 85
## 11454 Brooklyn Private room 85
## 11455 Manhattan Entire home/apt 450
## 11456 Bronx Private room 60
## 11457 Manhattan Entire home/apt 95
## 11458 Bronx Private room 38
## 11459 Queens Shared room 150
## 11460 Queens Entire home/apt 125
## 11461 Manhattan Private room 125
## 11462 Manhattan Entire home/apt 130
## 11463 Brooklyn Private room 59
## 11464 Manhattan Entire home/apt 65
## 11465 Brooklyn Entire home/apt 259
## 11466 Manhattan Private room 90
## 11467 Manhattan Private room 60
## 11468 Brooklyn Private room 95
## 11469 Brooklyn Shared room 45
## 11470 Manhattan Entire home/apt 133
## 11471 Manhattan Entire home/apt 259
## 11472 Brooklyn Entire home/apt 150
## 11473 Brooklyn Private room 35
## 11474 Manhattan Entire home/apt 139
## 11475 Manhattan Private room 39
## 11476 Brooklyn Entire home/apt 125
## 11477 Manhattan Entire home/apt 434
## 11478 Manhattan Entire home/apt 500
## 11479 Brooklyn Entire home/apt 100
## 11480 Queens Entire home/apt 99
## 11481 Brooklyn Private room 70
## 11482 Manhattan Entire home/apt 200
## 11483 Brooklyn Private room 88
## 11484 Brooklyn Entire home/apt 115
## 11485 Manhattan Private room 75
## 11486 Brooklyn Entire home/apt 140
## 11487 Manhattan Private room 80
## 11488 Brooklyn Private room 44
## 11489 Manhattan Entire home/apt 269
## 11490 Brooklyn Entire home/apt 150
## 11491 Manhattan Entire home/apt 299
## 11492 Brooklyn Entire home/apt 195
## 11493 Brooklyn Entire home/apt 140
## 11494 Manhattan Entire home/apt 180
## 11495 Queens Entire home/apt 84
## 11496 Queens Private room 70
## 11497 Brooklyn Private room 55
## 11498 Brooklyn Private room 65
## 11499 Brooklyn Private room 45
## 11500 Brooklyn Entire home/apt 96
## 11501 Manhattan Private room 82
## 11502 Manhattan Entire home/apt 150
## 11503 Brooklyn Private room 125
## 11504 Brooklyn Entire home/apt 115
## 11505 Manhattan Entire home/apt 145
## 11506 Brooklyn Entire home/apt 169
## 11507 Brooklyn Private room 75
## 11508 Manhattan Entire home/apt 100
## 11509 Brooklyn Entire home/apt 69
## 11510 Queens Private room 45
## 11511 Queens Entire home/apt 75
## 11512 Queens Private room 55
## 11513 Queens Private room 55
## 11514 Queens Private room 48
## 11515 Queens Private room 50
## 11516 Brooklyn Private room 56
## 11517 Brooklyn Private room 65
## 11518 Brooklyn Entire home/apt 140
## 11519 Brooklyn Private room 95
## 11520 Manhattan Private room 73
## 11521 Manhattan Entire home/apt 230
## 11522 Manhattan Entire home/apt 180
## 11523 Brooklyn Private room 47
## 11524 Manhattan Shared room 55
## 11525 Brooklyn Entire home/apt 125
## 11526 Queens Private room 60
## 11527 Manhattan Entire home/apt 104
## 11528 Brooklyn Entire home/apt 225
## 11529 Brooklyn Entire home/apt 169
## 11530 Brooklyn Private room 45
## 11531 Manhattan Entire home/apt 130
## 11532 Brooklyn Private room 53
## 11533 Brooklyn Entire home/apt 150
## 11534 Manhattan Private room 140
## 11535 Manhattan Entire home/apt 295
## 11536 Manhattan Private room 98
## 11537 Brooklyn Entire home/apt 120
## 11538 Manhattan Entire home/apt 170
## 11539 Manhattan Private room 47
## 11540 Brooklyn Entire home/apt 129
## 11541 Brooklyn Entire home/apt 119
## 11542 Brooklyn Shared room 99
## 11543 Manhattan Entire home/apt 225
## 11544 Brooklyn Private room 50
## 11545 Manhattan Entire home/apt 100
## 11546 Brooklyn Private room 55
## 11547 Brooklyn Private room 155
## 11548 Brooklyn Entire home/apt 275
## 11549 Brooklyn Private room 65
## 11550 Brooklyn Entire home/apt 170
## 11551 Bronx Private room 95
## 11552 Manhattan Entire home/apt 129
## 11553 Manhattan Entire home/apt 175
## 11554 Manhattan Entire home/apt 136
## 11555 Manhattan Entire home/apt 190
## 11556 Brooklyn Entire home/apt 150
## 11557 Brooklyn Entire home/apt 75
## 11558 Manhattan Entire home/apt 590
## 11559 Manhattan Entire home/apt 169
## 11560 Brooklyn Private room 51
## 11561 Manhattan Entire home/apt 899
## 11562 Manhattan Private room 90
## 11563 Brooklyn Shared room 25
## 11564 Queens Private room 65
## 11565 Brooklyn Private room 42
## 11566 Brooklyn Private room 40
## 11567 Brooklyn Private room 60
## 11568 Manhattan Entire home/apt 157
## 11569 Manhattan Entire home/apt 170
## 11570 Brooklyn Private room 50
## 11571 Queens Private room 55
## 11572 Brooklyn Private room 45
## 11573 Manhattan Entire home/apt 109
## 11574 Brooklyn Entire home/apt 105
## 11575 Manhattan Entire home/apt 150
## 11576 Manhattan Private room 45
## 11577 Brooklyn Shared room 40
## 11578 Brooklyn Private room 105
## 11579 Manhattan Entire home/apt 135
## 11580 Manhattan Private room 180
## 11581 Brooklyn Entire home/apt 150
## 11582 Brooklyn Entire home/apt 70
## 11583 Brooklyn Entire home/apt 120
## 11584 Manhattan Private room 89
## 11585 Manhattan Private room 100
## 11586 Manhattan Private room 125
## 11587 Manhattan Entire home/apt 170
## 11588 Manhattan Private room 80
## 11589 Brooklyn Private room 249
## 11590 Brooklyn Entire home/apt 350
## 11591 Manhattan Entire home/apt 175
## 11592 Brooklyn Private room 120
## 11593 Manhattan Entire home/apt 230
## 11594 Brooklyn Private room 100
## 11595 Manhattan Entire home/apt 139
## 11596 Brooklyn Entire home/apt 89
## 11597 Brooklyn Entire home/apt 159
## 11598 Manhattan Entire home/apt 229
## 11599 Brooklyn Private room 70
## 11600 Manhattan Entire home/apt 125
## 11601 Manhattan Entire home/apt 200
## 11602 Manhattan Entire home/apt 169
## 11603 Manhattan Entire home/apt 175
## 11604 Manhattan Entire home/apt 150
## 11605 Brooklyn Private room 90
## 11606 Manhattan Entire home/apt 165
## 11607 Manhattan Entire home/apt 305
## 11608 Brooklyn Entire home/apt 200
## 11609 Manhattan Entire home/apt 88
## 11610 Manhattan Entire home/apt 110
## 11611 Queens Entire home/apt 42
## 11612 Brooklyn Entire home/apt 150
## 11613 Brooklyn Private room 50
## 11614 Brooklyn Entire home/apt 125
## 11615 Manhattan Entire home/apt 125
## 11616 Manhattan Private room 80
## 11617 Manhattan Private room 75
## 11618 Manhattan Entire home/apt 120
## 11619 Brooklyn Private room 79
## 11620 Manhattan Private room 90
## 11621 Manhattan Entire home/apt 190
## 11622 Manhattan Entire home/apt 239
## 11623 Manhattan Entire home/apt 200
## 11624 Staten Island Entire home/apt 200
## 11625 Manhattan Entire home/apt 175
## 11626 Manhattan Entire home/apt 200
## 11627 Brooklyn Entire home/apt 130
## 11628 Manhattan Entire home/apt 95
## 11629 Manhattan Entire home/apt 140
## 11630 Queens Private room 100
## 11631 Manhattan Private room 75
## 11632 Manhattan Private room 74
## 11633 Manhattan Shared room 80
## 11634 Brooklyn Private room 60
## 11635 Brooklyn Entire home/apt 125
## 11636 Brooklyn Private room 80
## 11637 Brooklyn Entire home/apt 97
## 11638 Manhattan Private room 79
## 11639 Manhattan Private room 110
## 11640 Brooklyn Entire home/apt 140
## 11641 Brooklyn Private room 57
## 11642 Manhattan Private room 195
## 11643 Manhattan Entire home/apt 175
## 11644 Brooklyn Private room 50
## 11645 Manhattan Entire home/apt 180
## 11646 Queens Entire home/apt 180
## 11647 Manhattan Entire home/apt 180
## 11648 Brooklyn Entire home/apt 100
## 11649 Brooklyn Entire home/apt 175
## 11650 Manhattan Private room 210
## 11651 Manhattan Private room 100
## 11652 Brooklyn Entire home/apt 250
## 11653 Brooklyn Entire home/apt 55
## 11654 Brooklyn Private room 80
## 11655 Manhattan Entire home/apt 103
## 11656 Brooklyn Entire home/apt 150
## 11657 Queens Private room 90
## 11658 Manhattan Entire home/apt 150
## 11659 Manhattan Entire home/apt 190
## 11660 Manhattan Entire home/apt 95
## 11661 Manhattan Private room 75
## 11662 Brooklyn Entire home/apt 150
## 11663 Brooklyn Private room 48
## 11664 Brooklyn Private room 65
## 11665 Brooklyn Shared room 27
## 11666 Brooklyn Entire home/apt 150
## 11667 Manhattan Private room 75
## 11668 Brooklyn Private room 80
## 11669 Manhattan Entire home/apt 185
## 11670 Brooklyn Private room 55
## 11671 Brooklyn Entire home/apt 98
## 11672 Brooklyn Entire home/apt 165
## 11673 Brooklyn Private room 75
## 11674 Manhattan Entire home/apt 145
## 11675 Manhattan Entire home/apt 135
## 11676 Queens Private room 50
## 11677 Manhattan Private room 100
## 11678 Brooklyn Private room 100
## 11679 Manhattan Entire home/apt 130
## 11680 Manhattan Private room 145
## 11681 Manhattan Private room 45
## 11682 Brooklyn Entire home/apt 120
## 11683 Manhattan Private room 90
## 11684 Manhattan Entire home/apt 190
## 11685 Manhattan Entire home/apt 250
## 11686 Brooklyn Entire home/apt 90
## 11687 Manhattan Entire home/apt 165
## 11688 Manhattan Entire home/apt 175
## 11689 Brooklyn Entire home/apt 120
## 11690 Manhattan Private room 85
## 11691 Manhattan Private room 90
## 11692 Brooklyn Private room 70
## 11693 Manhattan Entire home/apt 110
## 11694 Manhattan Entire home/apt 239
## 11695 Manhattan Entire home/apt 125
## 11696 Manhattan Entire home/apt 239
## 11697 Brooklyn Private room 55
## 11698 Manhattan Entire home/apt 195
## 11699 Brooklyn Entire home/apt 150
## 11700 Manhattan Private room 104
## 11701 Manhattan Private room 95
## 11702 Brooklyn Private room 45
## 11703 Manhattan Entire home/apt 210
## 11704 Manhattan Entire home/apt 189
## 11705 Brooklyn Private room 40
## 11706 Manhattan Entire home/apt 100
## 11707 Manhattan Entire home/apt 295
## 11708 Manhattan Entire home/apt 75
## 11709 Queens Private room 34
## 11710 Brooklyn Entire home/apt 200
## 11711 Brooklyn Private room 75
## 11712 Manhattan Entire home/apt 110
## 11713 Manhattan Private room 100
## 11714 Manhattan Entire home/apt 185
## 11715 Manhattan Entire home/apt 145
## 11716 Manhattan Entire home/apt 250
## 11717 Brooklyn Private room 55
## 11718 Brooklyn Entire home/apt 145
## 11719 Manhattan Entire home/apt 150
## 11720 Brooklyn Private room 70
## 11721 Manhattan Entire home/apt 195
## 11722 Manhattan Private room 86
## 11723 Brooklyn Entire home/apt 120
## 11724 Brooklyn Private room 60
## 11725 Manhattan Private room 65
## 11726 Manhattan Entire home/apt 199
## 11727 Brooklyn Private room 55
## 11728 Brooklyn Entire home/apt 150
## 11729 Brooklyn Entire home/apt 165
## 11730 Manhattan Entire home/apt 100
## 11731 Brooklyn Entire home/apt 149
## 11732 Manhattan Private room 36
## 11733 Queens Private room 50
## 11734 Manhattan Private room 50
## 11735 Manhattan Entire home/apt 300
## 11736 Manhattan Private room 73
## 11737 Brooklyn Entire home/apt 100
## 11738 Manhattan Entire home/apt 193
## 11739 Queens Private room 79
## 11740 Brooklyn Private room 60
## 11741 Brooklyn Private room 60
## 11742 Manhattan Entire home/apt 159
## 11743 Brooklyn Private room 75
## 11744 Brooklyn Entire home/apt 750
## 11745 Manhattan Private room 235
## 11746 Manhattan Entire home/apt 139
## 11747 Manhattan Private room 41
## 11748 Manhattan Entire home/apt 220
## 11749 Manhattan Entire home/apt 120
## 11750 Manhattan Entire home/apt 180
## 11751 Manhattan Entire home/apt 185
## 11752 Manhattan Entire home/apt 225
## 11753 Manhattan Entire home/apt 200
## 11754 Brooklyn Entire home/apt 150
## 11755 Queens Private room 74
## 11756 Brooklyn Private room 49
## 11757 Manhattan Private room 140
## 11758 Manhattan Entire home/apt 180
## 11759 Brooklyn Private room 50
## 11760 Queens Private room 47
## 11761 Manhattan Entire home/apt 245
## 11762 Brooklyn Entire home/apt 115
## 11763 Brooklyn Private room 50
## 11764 Bronx Entire home/apt 110
## 11765 Brooklyn Private room 125
## 11766 Manhattan Entire home/apt 150
## 11767 Manhattan Entire home/apt 139
## 11768 Brooklyn Entire home/apt 220
## 11769 Manhattan Entire home/apt 150
## 11770 Brooklyn Private room 79
## 11771 Brooklyn Entire home/apt 240
## 11772 Brooklyn Entire home/apt 115
## 11773 Brooklyn Entire home/apt 120
## 11774 Brooklyn Entire home/apt 200
## 11775 Brooklyn Entire home/apt 200
## 11776 Manhattan Entire home/apt 150
## 11777 Brooklyn Entire home/apt 165
## 11778 Manhattan Private room 85
## 11779 Manhattan Entire home/apt 130
## 11780 Manhattan Private room 85
## 11781 Brooklyn Entire home/apt 90
## 11782 Manhattan Private room 120
## 11783 Manhattan Entire home/apt 70
## 11784 Brooklyn Private room 40
## 11785 Manhattan Private room 55
## 11786 Manhattan Entire home/apt 130
## 11787 Manhattan Private room 60
## 11788 Brooklyn Private room 65
## 11789 Manhattan Entire home/apt 249
## 11790 Brooklyn Private room 75
## 11791 Manhattan Entire home/apt 500
## 11792 Manhattan Entire home/apt 169
## 11793 Brooklyn Entire home/apt 300
## 11794 Manhattan Entire home/apt 95
## 11795 Brooklyn Private room 69
## 11796 Brooklyn Private room 240
## 11797 Manhattan Entire home/apt 120
## 11798 Manhattan Entire home/apt 180
## 11799 Manhattan Private room 80
## 11800 Manhattan Private room 90
## 11801 Queens Entire home/apt 140
## 11802 Manhattan Entire home/apt 200
## 11803 Manhattan Private room 139
## 11804 Manhattan Entire home/apt 250
## 11805 Manhattan Private room 47
## 11806 Brooklyn Entire home/apt 108
## 11807 Manhattan Entire home/apt 85
## 11808 Queens Entire home/apt 75
## 11809 Brooklyn Private room 60
## 11810 Brooklyn Private room 80
## 11811 Brooklyn Private room 60
## 11812 Queens Private room 50
## 11813 Manhattan Entire home/apt 120
## 11814 Manhattan Private room 300
## 11815 Manhattan Entire home/apt 275
## 11816 Brooklyn Private room 100
## 11817 Manhattan Private room 65
## 11818 Manhattan Private room 65
## 11819 Brooklyn Entire home/apt 350
## 11820 Brooklyn Entire home/apt 132
## 11821 Manhattan Shared room 35
## 11822 Manhattan Entire home/apt 150
## 11823 Manhattan Private room 75
## 11824 Manhattan Private room 100
## 11825 Brooklyn Entire home/apt 89
## 11826 Brooklyn Private room 50
## 11827 Manhattan Private room 300
## 11828 Manhattan Private room 50
## 11829 Manhattan Entire home/apt 400
## 11830 Manhattan Entire home/apt 250
## 11831 Queens Private room 70
## 11832 Manhattan Entire home/apt 135
## 11833 Manhattan Entire home/apt 450
## 11834 Manhattan Entire home/apt 80
## 11835 Brooklyn Private room 90
## 11836 Brooklyn Private room 100
## 11837 Manhattan Entire home/apt 90
## 11838 Brooklyn Entire home/apt 145
## 11839 Queens Entire home/apt 125
## 11840 Brooklyn Private room 50
## 11841 Brooklyn Entire home/apt 150
## 11842 Manhattan Private room 95
## 11843 Brooklyn Entire home/apt 125
## 11844 Queens Entire home/apt 120
## 11845 Manhattan Entire home/apt 400
## 11846 Manhattan Entire home/apt 201
## 11847 Brooklyn Private room 50
## 11848 Manhattan Entire home/apt 199
## 11849 Brooklyn Private room 49
## 11850 Manhattan Entire home/apt 185
## 11851 Brooklyn Private room 85
## 11852 Brooklyn Entire home/apt 89
## 11853 Brooklyn Private room 100
## 11854 Brooklyn Private room 60
## 11855 Manhattan Entire home/apt 132
## 11856 Brooklyn Entire home/apt 125
## 11857 Brooklyn Entire home/apt 100
## 11858 Manhattan Entire home/apt 175
## 11859 Manhattan Entire home/apt 304
## 11860 Brooklyn Entire home/apt 95
## 11861 Brooklyn Entire home/apt 100
## 11862 Manhattan Entire home/apt 300
## 11863 Manhattan Entire home/apt 175
## 11864 Manhattan Entire home/apt 300
## 11865 Queens Private room 39
## 11866 Manhattan Entire home/apt 179
## 11867 Queens Shared room 20
## 11868 Manhattan Entire home/apt 120
## 11869 Manhattan Private room 82
## 11870 Manhattan Entire home/apt 170
## 11871 Manhattan Entire home/apt 120
## 11872 Brooklyn Private room 75
## 11873 Brooklyn Entire home/apt 110
## 11874 Manhattan Entire home/apt 177
## 11875 Manhattan Private room 180
## 11876 Queens Private room 70
## 11877 Manhattan Entire home/apt 325
## 11878 Manhattan Private room 165
## 11879 Brooklyn Private room 75
## 11880 Manhattan Private room 159
## 11881 Manhattan Entire home/apt 150
## 11882 Manhattan Entire home/apt 150
## 11883 Manhattan Entire home/apt 230
## 11884 Manhattan Private room 159
## 11885 Brooklyn Entire home/apt 250
## 11886 Brooklyn Entire home/apt 119
## 11887 Manhattan Entire home/apt 239
## 11888 Brooklyn Entire home/apt 80
## 11889 Manhattan Private room 99
## 11890 Manhattan Entire home/apt 250
## 11891 Brooklyn Entire home/apt 125
## 11892 Brooklyn Entire home/apt 150
## 11893 Brooklyn Private room 50
## 11894 Manhattan Entire home/apt 200
## 11895 Bronx Private room 47
## 11896 Brooklyn Entire home/apt 150
## 11897 Manhattan Entire home/apt 299
## 11898 Manhattan Entire home/apt 142
## 11899 Brooklyn Entire home/apt 150
## 11900 Queens Private room 88
## 11901 Manhattan Private room 800
## 11902 Brooklyn Entire home/apt 85
## 11903 Manhattan Private room 169
## 11904 Brooklyn Entire home/apt 110
## 11905 Brooklyn Private room 60
## 11906 Brooklyn Entire home/apt 110
## 11907 Manhattan Entire home/apt 78
## 11908 Brooklyn Entire home/apt 110
## 11909 Brooklyn Private room 46
## 11910 Queens Private room 80
## 11911 Manhattan Entire home/apt 150
## 11912 Manhattan Entire home/apt 199
## 11913 Manhattan Entire home/apt 125
## 11914 Manhattan Entire home/apt 650
## 11915 Queens Private room 58
## 11916 Manhattan Entire home/apt 200
## 11917 Manhattan Entire home/apt 145
## 11918 Brooklyn Entire home/apt 98
## 11919 Brooklyn Private room 40
## 11920 Manhattan Private room 135
## 11921 Manhattan Entire home/apt 250
## 11922 Manhattan Entire home/apt 250
## 11923 Brooklyn Entire home/apt 130
## 11924 Brooklyn Private room 60
## 11925 Manhattan Entire home/apt 350
## 11926 Manhattan Entire home/apt 465
## 11927 Manhattan Entire home/apt 126
## 11928 Manhattan Entire home/apt 215
## 11929 Manhattan Entire home/apt 139
## 11930 Manhattan Entire home/apt 200
## 11931 Manhattan Entire home/apt 200
## 11932 Manhattan Entire home/apt 40
## 11933 Brooklyn Private room 55
## 11934 Brooklyn Entire home/apt 99
## 11935 Brooklyn Private room 82
## 11936 Brooklyn Entire home/apt 185
## 11937 Manhattan Private room 60
## 11938 Manhattan Entire home/apt 200
## 11939 Manhattan Entire home/apt 140
## 11940 Brooklyn Entire home/apt 94
## 11941 Brooklyn Entire home/apt 134
## 11942 Brooklyn Private room 60
## 11943 Manhattan Private room 70
## 11944 Manhattan Entire home/apt 200
## 11945 Manhattan Private room 90
## 11946 Brooklyn Entire home/apt 115
## 11947 Manhattan Entire home/apt 245
## 11948 Manhattan Entire home/apt 375
## 11949 Brooklyn Entire home/apt 75
## 11950 Manhattan Private room 150
## 11951 Bronx Entire home/apt 159
## 11952 Brooklyn Private room 40
## 11953 Brooklyn Private room 57
## 11954 Manhattan Entire home/apt 425
## 11955 Manhattan Entire home/apt 200
## 11956 Manhattan Private room 65
## 11957 Brooklyn Private room 65
## 11958 Brooklyn Private room 75
## 11959 Manhattan Private room 90
## 11960 Manhattan Private room 100
## 11961 Manhattan Entire home/apt 100
## 11962 Queens Private room 77
## 11963 Brooklyn Entire home/apt 165
## 11964 Manhattan Entire home/apt 190
## 11965 Manhattan Entire home/apt 190
## 11966 Brooklyn Private room 45
## 11967 Brooklyn Entire home/apt 72
## 11968 Manhattan Entire home/apt 230
## 11969 Manhattan Entire home/apt 250
## 11970 Manhattan Entire home/apt 140
## 11971 Brooklyn Entire home/apt 85
## 11972 Manhattan Entire home/apt 99
## 11973 Manhattan Entire home/apt 200
## 11974 Brooklyn Private room 99
## 11975 Brooklyn Entire home/apt 140
## 11976 Brooklyn Entire home/apt 181
## 11977 Brooklyn Entire home/apt 165
## 11978 Manhattan Entire home/apt 175
## 11979 Brooklyn Entire home/apt 100
## 11980 Brooklyn Entire home/apt 209
## 11981 Manhattan Private room 110
## 11982 Brooklyn Private room 50
## 11983 Manhattan Entire home/apt 80
## 11984 Bronx Private room 75
## 11985 Manhattan Entire home/apt 70
## 11986 Manhattan Entire home/apt 125
## 11987 Queens Entire home/apt 70
## 11988 Queens Private room 180
## 11989 Brooklyn Private room 100
## 11990 Brooklyn Entire home/apt 200
## 11991 Manhattan Entire home/apt 100
## 11992 Manhattan Private room 95
## 11993 Manhattan Entire home/apt 150
## 11994 Queens Entire home/apt 144
## 11995 Brooklyn Private room 42
## 11996 Manhattan Private room 95
## 11997 Manhattan Entire home/apt 220
## 11998 Manhattan Private room 209
## 11999 Brooklyn Private room 118
## 12000 Brooklyn Private room 50
## 12001 Brooklyn Private room 95
## 12002 Manhattan Private room 85
## 12003 Manhattan Entire home/apt 200
## 12004 Brooklyn Entire home/apt 161
## 12005 Brooklyn Entire home/apt 110
## 12006 Manhattan Entire home/apt 149
## 12007 Manhattan Entire home/apt 104
## 12008 Brooklyn Entire home/apt 200
## 12009 Brooklyn Private room 99
## 12010 Brooklyn Entire home/apt 80
## 12011 Manhattan Entire home/apt 400
## 12012 Brooklyn Entire home/apt 98
## 12013 Brooklyn Private room 63
## 12014 Brooklyn Private room 69
## 12015 Queens Entire home/apt 89
## 12016 Queens Entire home/apt 99
## 12017 Manhattan Entire home/apt 140
## 12018 Brooklyn Entire home/apt 150
## 12019 Brooklyn Entire home/apt 199
## 12020 Manhattan Entire home/apt 120
## 12021 Manhattan Entire home/apt 175
## 12022 Manhattan Entire home/apt 300
## 12023 Brooklyn Private room 40
## 12024 Brooklyn Private room 100
## 12025 Brooklyn Entire home/apt 170
## 12026 Manhattan Entire home/apt 120
## 12027 Brooklyn Private room 60
## 12028 Manhattan Entire home/apt 90
## 12029 Manhattan Private room 60
## 12030 Manhattan Entire home/apt 450
## 12031 Manhattan Private room 75
## 12032 Manhattan Entire home/apt 170
## 12033 Brooklyn Private room 75
## 12034 Manhattan Private room 75
## 12035 Brooklyn Private room 80
## 12036 Brooklyn Entire home/apt 139
## 12037 Manhattan Entire home/apt 250
## 12038 Manhattan Entire home/apt 150
## 12039 Brooklyn Private room 90
## 12040 Manhattan Private room 55
## 12041 Manhattan Entire home/apt 296
## 12042 Manhattan Entire home/apt 150
## 12043 Bronx Entire home/apt 139
## 12044 Manhattan Private room 249
## 12045 Manhattan Entire home/apt 250
## 12046 Manhattan Entire home/apt 205
## 12047 Brooklyn Entire home/apt 90
## 12048 Brooklyn Shared room 25
## 12049 Queens Entire home/apt 65
## 12050 Manhattan Entire home/apt 250
## 12051 Brooklyn Entire home/apt 140
## 12052 Manhattan Entire home/apt 110
## 12053 Manhattan Entire home/apt 200
## 12054 Manhattan Entire home/apt 120
## 12055 Brooklyn Entire home/apt 120
## 12056 Manhattan Private room 110
## 12057 Queens Entire home/apt 200
## 12058 Brooklyn Private room 60
## 12059 Manhattan Entire home/apt 205
## 12060 Brooklyn Private room 50
## 12061 Manhattan Entire home/apt 183
## 12062 Brooklyn Entire home/apt 125
## 12063 Brooklyn Private room 70
## 12064 Brooklyn Entire home/apt 90
## 12065 Brooklyn Entire home/apt 375
## 12066 Brooklyn Private room 50
## 12067 Manhattan Private room 199
## 12068 Manhattan Private room 130
## 12069 Manhattan Entire home/apt 285
## 12070 Brooklyn Private room 72
## 12071 Brooklyn Private room 36
## 12072 Brooklyn Private room 84
## 12073 Manhattan Private room 100
## 12074 Brooklyn Private room 130
## 12075 Manhattan Entire home/apt 285
## 12076 Manhattan Entire home/apt 175
## 12077 Manhattan Entire home/apt 465
## 12078 Manhattan Entire home/apt 175
## 12079 Brooklyn Entire home/apt 165
## 12080 Manhattan Entire home/apt 156
## 12081 Manhattan Entire home/apt 191
## 12082 Brooklyn Entire home/apt 160
## 12083 Manhattan Entire home/apt 305
## 12084 Manhattan Entire home/apt 200
## 12085 Brooklyn Entire home/apt 260
## 12086 Manhattan Private room 105
## 12087 Brooklyn Private room 85
## 12088 Manhattan Entire home/apt 100
## 12089 Brooklyn Private room 79
## 12090 Manhattan Private room 120
## 12091 Manhattan Entire home/apt 300
## 12092 Bronx Private room 65
## 12093 Manhattan Private room 100
## 12094 Brooklyn Entire home/apt 127
## 12095 Queens Private room 49
## 12096 Manhattan Private room 108
## 12097 Manhattan Entire home/apt 121
## 12098 Manhattan Entire home/apt 180
## 12099 Brooklyn Private room 34
## 12100 Manhattan Entire home/apt 180
## 12101 Manhattan Entire home/apt 250
## 12102 Brooklyn Entire home/apt 100
## 12103 Manhattan Entire home/apt 175
## 12104 Manhattan Entire home/apt 175
## 12105 Manhattan Entire home/apt 190
## 12106 Brooklyn Entire home/apt 90
## 12107 Manhattan Entire home/apt 160
## 12108 Manhattan Private room 51
## 12109 Manhattan Entire home/apt 150
## 12110 Brooklyn Entire home/apt 325
## 12111 Brooklyn Entire home/apt 99
## 12112 Manhattan Private room 150
## 12113 Brooklyn Entire home/apt 280
## 12114 Manhattan Entire home/apt 110
## 12115 Brooklyn Private room 100
## 12116 Brooklyn Entire home/apt 125
## 12117 Manhattan Entire home/apt 275
## 12118 Brooklyn Entire home/apt 308
## 12119 Brooklyn Entire home/apt 200
## 12120 Manhattan Private room 60
## 12121 Manhattan Private room 65
## 12122 Manhattan Entire home/apt 110
## 12123 Bronx Entire home/apt 189
## 12124 Manhattan Private room 60
## 12125 Manhattan Private room 90
## 12126 Brooklyn Private room 65
## 12127 Brooklyn Entire home/apt 128
## 12128 Brooklyn Entire home/apt 200
## 12129 Brooklyn Entire home/apt 120
## 12130 Brooklyn Private room 75
## 12131 Manhattan Entire home/apt 69
## 12132 Manhattan Entire home/apt 120
## 12133 Manhattan Private room 95
## 12134 Brooklyn Entire home/apt 142
## 12135 Manhattan Entire home/apt 210
## 12136 Queens Private room 155
## 12137 Manhattan Entire home/apt 300
## 12138 Brooklyn Private room 70
## 12139 Manhattan Entire home/apt 180
## 12140 Manhattan Private room 70
## 12141 Manhattan Private room 95
## 12142 Brooklyn Entire home/apt 100
## 12143 Brooklyn Entire home/apt 129
## 12144 Manhattan Private room 62
## 12145 Manhattan Private room 40
## 12146 Brooklyn Private room 90
## 12147 Brooklyn Private room 42
## 12148 Brooklyn Entire home/apt 125
## 12149 Brooklyn Entire home/apt 100
## 12150 Manhattan Entire home/apt 70
## 12151 Brooklyn Entire home/apt 108
## 12152 Queens Entire home/apt 500
## 12153 Manhattan Private room 115
## 12154 Manhattan Entire home/apt 275
## 12155 Brooklyn Private room 40
## 12156 Brooklyn Entire home/apt 289
## 12157 Brooklyn Private room 130
## 12158 Manhattan Private room 55
## 12159 Manhattan Entire home/apt 125
## 12160 Manhattan Entire home/apt 130
## 12161 Brooklyn Private room 60
## 12162 Brooklyn Entire home/apt 99
## 12163 Brooklyn Private room 50
## 12164 Manhattan Private room 78
## 12165 Manhattan Entire home/apt 150
## 12166 Manhattan Private room 90
## 12167 Brooklyn Entire home/apt 275
## 12168 Manhattan Entire home/apt 70
## 12169 Brooklyn Private room 39
## 12170 Manhattan Entire home/apt 185
## 12171 Manhattan Private room 49
## 12172 Brooklyn Private room 69
## 12173 Brooklyn Entire home/apt 330
## 12174 Manhattan Entire home/apt 110
## 12175 Manhattan Entire home/apt 450
## 12176 Manhattan Private room 150
## 12177 Manhattan Entire home/apt 80
## 12178 Manhattan Entire home/apt 80
## 12179 Manhattan Entire home/apt 310
## 12180 Manhattan Entire home/apt 70
## 12181 Manhattan Entire home/apt 325
## 12182 Queens Private room 65
## 12183 Brooklyn Entire home/apt 155
## 12184 Brooklyn Private room 45
## 12185 Manhattan Entire home/apt 125
## 12186 Brooklyn Private room 49
## 12187 Manhattan Private room 150
## 12188 Brooklyn Private room 80
## 12189 Manhattan Entire home/apt 145
## 12190 Queens Entire home/apt 125
## 12191 Queens Private room 60
## 12192 Brooklyn Private room 50
## 12193 Bronx Private room 70
## 12194 Brooklyn Entire home/apt 531
## 12195 Manhattan Entire home/apt 199
## 12196 Manhattan Entire home/apt 214
## 12197 Manhattan Entire home/apt 70
## 12198 Brooklyn Entire home/apt 105
## 12199 Manhattan Entire home/apt 240
## 12200 Queens Entire home/apt 114
## 12201 Manhattan Private room 45
## 12202 Manhattan Private room 45
## 12203 Brooklyn Entire home/apt 143
## 12204 Brooklyn Entire home/apt 145
## 12205 Manhattan Private room 90
## 12206 Brooklyn Private room 75
## 12207 Manhattan Private room 225
## 12208 Manhattan Entire home/apt 150
## 12209 Brooklyn Entire home/apt 150
## 12210 Manhattan Entire home/apt 182
## 12211 Manhattan Private room 62
## 12212 Brooklyn Private room 65
## 12213 Manhattan Entire home/apt 175
## 12214 Brooklyn Entire home/apt 525
## 12215 Manhattan Private room 98
## 12216 Manhattan Private room 61
## 12217 Manhattan Entire home/apt 159
## 12218 Queens Private room 68
## 12219 Brooklyn Entire home/apt 69
## 12220 Manhattan Private room 125
## 12221 Brooklyn Entire home/apt 115
## 12222 Manhattan Private room 85
## 12223 Manhattan Entire home/apt 209
## 12224 Manhattan Entire home/apt 225
## 12225 Manhattan Entire home/apt 100
## 12226 Brooklyn Private room 55
## 12227 Brooklyn Private room 80
## 12228 Brooklyn Private room 80
## 12229 Brooklyn Entire home/apt 85
## 12230 Manhattan Entire home/apt 280
## 12231 Brooklyn Entire home/apt 125
## 12232 Brooklyn Private room 90
## 12233 Manhattan Entire home/apt 175
## 12234 Manhattan Entire home/apt 150
## 12235 Manhattan Entire home/apt 180
## 12236 Manhattan Entire home/apt 250
## 12237 Queens Private room 60
## 12238 Brooklyn Entire home/apt 200
## 12239 Manhattan Entire home/apt 295
## 12240 Manhattan Private room 40
## 12241 Manhattan Entire home/apt 150
## 12242 Manhattan Private room 40
## 12243 Manhattan Entire home/apt 180
## 12244 Manhattan Entire home/apt 145
## 12245 Brooklyn Entire home/apt 175
## 12246 Manhattan Entire home/apt 275
## 12247 Queens Entire home/apt 115
## 12248 Manhattan Entire home/apt 175
## 12249 Brooklyn Private room 65
## 12250 Manhattan Entire home/apt 345
## 12251 Manhattan Entire home/apt 150
## 12252 Manhattan Private room 75
## 12253 Manhattan Entire home/apt 219
## 12254 Brooklyn Entire home/apt 300
## 12255 Manhattan Entire home/apt 225
## 12256 Manhattan Entire home/apt 275
## 12257 Manhattan Entire home/apt 350
## 12258 Manhattan Entire home/apt 175
## 12259 Brooklyn Private room 60
## 12260 Brooklyn Entire home/apt 350
## 12261 Brooklyn Entire home/apt 119
## 12262 Manhattan Entire home/apt 175
## 12263 Brooklyn Entire home/apt 335
## 12264 Brooklyn Private room 70
## 12265 Brooklyn Entire home/apt 180
## 12266 Manhattan Entire home/apt 299
## 12267 Manhattan Entire home/apt 99
## 12268 Manhattan Entire home/apt 95
## 12269 Brooklyn Private room 50
## 12270 Brooklyn Entire home/apt 150
## 12271 Manhattan Private room 655
## 12272 Manhattan Private room 99
## 12273 Manhattan Entire home/apt 250
## 12274 Brooklyn Entire home/apt 450
## 12275 Manhattan Entire home/apt 190
## 12276 Brooklyn Private room 58
## 12277 Brooklyn Private room 70
## 12278 Brooklyn Private room 41
## 12279 Manhattan Entire home/apt 325
## 12280 Brooklyn Entire home/apt 180
## 12281 Manhattan Entire home/apt 95
## 12282 Manhattan Entire home/apt 500
## 12283 Manhattan Entire home/apt 160
## 12284 Manhattan Entire home/apt 303
## 12285 Manhattan Entire home/apt 400
## 12286 Brooklyn Private room 46
## 12287 Manhattan Entire home/apt 132
## 12288 Manhattan Entire home/apt 125
## 12289 Brooklyn Private room 50
## 12290 Brooklyn Private room 45
## 12291 Manhattan Entire home/apt 165
## 12292 Brooklyn Private room 79
## 12293 Brooklyn Entire home/apt 215
## 12294 Brooklyn Private room 80
## 12295 Manhattan Entire home/apt 150
## 12296 Brooklyn Private room 62
## 12297 Brooklyn Entire home/apt 68
## 12298 Manhattan Entire home/apt 300
## 12299 Queens Entire home/apt 149
## 12300 Manhattan Entire home/apt 200
## 12301 Brooklyn Entire home/apt 275
## 12302 Manhattan Private room 110
## 12303 Brooklyn Entire home/apt 83
## 12304 Brooklyn Entire home/apt 150
## 12305 Manhattan Entire home/apt 166
## 12306 Brooklyn Entire home/apt 79
## 12307 Manhattan Entire home/apt 220
## 12308 Queens Private room 70
## 12309 Brooklyn Private room 60
## 12310 Manhattan Private room 80
## 12311 Manhattan Private room 50
## 12312 Brooklyn Entire home/apt 120
## 12313 Manhattan Private room 50
## 12314 Manhattan Entire home/apt 185
## 12315 Brooklyn Entire home/apt 320
## 12316 Brooklyn Private room 45
## 12317 Bronx Private room 85
## 12318 Manhattan Entire home/apt 300
## 12319 Manhattan Entire home/apt 199
## 12320 Manhattan Entire home/apt 150
## 12321 Brooklyn Private room 50
## 12322 Brooklyn Entire home/apt 180
## 12323 Manhattan Entire home/apt 299
## 12324 Brooklyn Private room 66
## 12325 Brooklyn Entire home/apt 410
## 12326 Brooklyn Entire home/apt 200
## 12327 Brooklyn Entire home/apt 149
## 12328 Manhattan Private room 98
## 12329 Manhattan Entire home/apt 150
## 12330 Manhattan Entire home/apt 1200
## 12331 Manhattan Entire home/apt 300
## 12332 Brooklyn Private room 55
## 12333 Manhattan Entire home/apt 200
## 12334 Brooklyn Entire home/apt 140
## 12335 Brooklyn Entire home/apt 110
## 12336 Manhattan Private room 80
## 12337 Manhattan Private room 60
## 12338 Manhattan Entire home/apt 126
## 12339 Manhattan Private room 55
## 12340 Manhattan Entire home/apt 325
## 12341 Brooklyn Entire home/apt 140
## 12342 Brooklyn Private room 50
## 12343 Manhattan Private room 9999
## 12344 Brooklyn Entire home/apt 186
## 12345 Brooklyn Entire home/apt 245
## 12346 Manhattan Private room 150
## 12347 Manhattan Private room 99
## 12348 Manhattan Entire home/apt 290
## 12349 Manhattan Private room 43
## 12350 Manhattan Private room 85
## 12351 Manhattan Private room 95
## 12352 Manhattan Entire home/apt 180
## 12353 Manhattan Private room 100
## 12354 Brooklyn Private room 40
## 12355 Manhattan Entire home/apt 129
## 12356 Brooklyn Entire home/apt 130
## 12357 Queens Entire home/apt 280
## 12358 Brooklyn Entire home/apt 165
## 12359 Brooklyn Entire home/apt 100
## 12360 Queens Entire home/apt 100
## 12361 Manhattan Entire home/apt 85
## 12362 Brooklyn Entire home/apt 160
## 12363 Manhattan Private room 195
## 12364 Queens Entire home/apt 150
## 12365 Brooklyn Entire home/apt 63
## 12366 Brooklyn Entire home/apt 60
## 12367 Manhattan Private room 95
## 12368 Manhattan Private room 50
## 12369 Brooklyn Private room 59
## 12370 Brooklyn Entire home/apt 175
## 12371 Manhattan Entire home/apt 83
## 12372 Brooklyn Entire home/apt 80
## 12373 Manhattan Entire home/apt 200
## 12374 Manhattan Entire home/apt 265
## 12375 Manhattan Entire home/apt 350
## 12376 Brooklyn Private room 36
## 12377 Brooklyn Private room 78
## 12378 Manhattan Private room 80
## 12379 Brooklyn Entire home/apt 218
## 12380 Brooklyn Entire home/apt 95
## 12381 Manhattan Entire home/apt 130
## 12382 Manhattan Entire home/apt 130
## 12383 Brooklyn Private room 51
## 12384 Brooklyn Private room 45
## 12385 Manhattan Entire home/apt 200
## 12386 Manhattan Entire home/apt 350
## 12387 Manhattan Entire home/apt 265
## 12388 Manhattan Entire home/apt 228
## 12389 Manhattan Private room 90
## 12390 Queens Private room 60
## 12391 Brooklyn Entire home/apt 120
## 12392 Manhattan Private room 65
## 12393 Brooklyn Private room 90
## 12394 Manhattan Entire home/apt 225
## 12395 Queens Entire home/apt 103
## 12396 Manhattan Entire home/apt 500
## 12397 Brooklyn Private room 62
## 12398 Brooklyn Private room 45
## 12399 Manhattan Entire home/apt 300
## 12400 Manhattan Entire home/apt 299
## 12401 Manhattan Private room 85
## 12402 Manhattan Private room 80
## 12403 Manhattan Private room 250
## 12404 Manhattan Private room 49
## 12405 Brooklyn Entire home/apt 220
## 12406 Queens Entire home/apt 109
## 12407 Manhattan Entire home/apt 300
## 12408 Manhattan Entire home/apt 300
## 12409 Manhattan Private room 90
## 12410 Manhattan Entire home/apt 289
## 12411 Queens Private room 37
## 12412 Brooklyn Private room 50
## 12413 Brooklyn Private room 75
## 12414 Manhattan Private room 44
## 12415 Brooklyn Private room 45
## 12416 Brooklyn Entire home/apt 120
## 12417 Manhattan Entire home/apt 110
## 12418 Brooklyn Entire home/apt 195
## 12419 Manhattan Shared room 100
## 12420 Brooklyn Entire home/apt 200
## 12421 Brooklyn Entire home/apt 160
## 12422 Brooklyn Entire home/apt 115
## 12423 Brooklyn Private room 55
## 12424 Queens Entire home/apt 150
## 12425 Brooklyn Entire home/apt 70
## 12426 Brooklyn Entire home/apt 130
## 12427 Manhattan Private room 100
## 12428 Manhattan Entire home/apt 375
## 12429 Brooklyn Private room 49
## 12430 Brooklyn Private room 49
## 12431 Manhattan Entire home/apt 245
## 12432 Manhattan Entire home/apt 250
## 12433 Queens Private room 55
## 12434 Manhattan Entire home/apt 225
## 12435 Manhattan Private room 68
## 12436 Manhattan Entire home/apt 220
## 12437 Brooklyn Private room 75
## 12438 Manhattan Entire home/apt 120
## 12439 Brooklyn Entire home/apt 129
## 12440 Manhattan Entire home/apt 199
## 12441 Manhattan Private room 92
## 12442 Brooklyn Entire home/apt 185
## 12443 Manhattan Entire home/apt 179
## 12444 Manhattan Private room 80
## 12445 Manhattan Private room 80
## 12446 Manhattan Entire home/apt 100
## 12447 Brooklyn Entire home/apt 225
## 12448 Brooklyn Private room 60
## 12449 Manhattan Entire home/apt 166
## 12450 Brooklyn Private room 70
## 12451 Manhattan Private room 63
## 12452 Manhattan Entire home/apt 115
## 12453 Brooklyn Private room 65
## 12454 Brooklyn Private room 55
## 12455 Brooklyn Private room 76
## 12456 Manhattan Entire home/apt 140
## 12457 Manhattan Entire home/apt 150
## 12458 Manhattan Private room 39
## 12459 Manhattan Entire home/apt 450
## 12460 Brooklyn Entire home/apt 105
## 12461 Manhattan Private room 80
## 12462 Brooklyn Entire home/apt 110
## 12463 Manhattan Private room 75
## 12464 Manhattan Entire home/apt 450
## 12465 Manhattan Entire home/apt 150
## 12466 Brooklyn Entire home/apt 125
## 12467 Manhattan Private room 125
## 12468 Brooklyn Entire home/apt 80
## 12469 Manhattan Entire home/apt 260
## 12470 Manhattan Entire home/apt 85
## 12471 Manhattan Private room 199
## 12472 Brooklyn Entire home/apt 135
## 12473 Queens Entire home/apt 100
## 12474 Manhattan Private room 99
## 12475 Bronx Private room 34
## 12476 Queens Entire home/apt 89
## 12477 Brooklyn Private room 77
## 12478 Brooklyn Entire home/apt 350
## 12479 Brooklyn Entire home/apt 190
## 12480 Brooklyn Entire home/apt 115
## 12481 Brooklyn Private room 40
## 12482 Manhattan Entire home/apt 200
## 12483 Manhattan Entire home/apt 135
## 12484 Brooklyn Entire home/apt 135
## 12485 Manhattan Entire home/apt 99
## 12486 Manhattan Entire home/apt 145
## 12487 Manhattan Entire home/apt 349
## 12488 Manhattan Private room 75
## 12489 Brooklyn Entire home/apt 200
## 12490 Manhattan Private room 119
## 12491 Manhattan Private room 65
## 12492 Manhattan Private room 50
## 12493 Manhattan Entire home/apt 199
## 12494 Manhattan Private room 80
## 12495 Manhattan Private room 55
## 12496 Brooklyn Entire home/apt 99
## 12497 Brooklyn Entire home/apt 125
## 12498 Manhattan Entire home/apt 235
## 12499 Brooklyn Entire home/apt 110
## 12500 Manhattan Entire home/apt 120
## 12501 Manhattan Entire home/apt 195
## 12502 Manhattan Private room 109
## 12503 Queens Private room 100
## 12504 Brooklyn Private room 55
## 12505 Manhattan Entire home/apt 150
## 12506 Brooklyn Entire home/apt 100
## 12507 Manhattan Entire home/apt 450
## 12508 Brooklyn Entire home/apt 155
## 12509 Brooklyn Private room 80
## 12510 Manhattan Private room 60
## 12511 Queens Entire home/apt 85
## 12512 Brooklyn Private room 90
## 12513 Manhattan Private room 70
## 12514 Brooklyn Private room 50
## 12515 Manhattan Entire home/apt 120
## 12516 Manhattan Private room 75
## 12517 Brooklyn Private room 31
## 12518 Brooklyn Private room 79
## 12519 Manhattan Entire home/apt 160
## 12520 Brooklyn Entire home/apt 99
## 12521 Manhattan Entire home/apt 199
## 12522 Manhattan Entire home/apt 260
## 12523 Brooklyn Entire home/apt 200
## 12524 Manhattan Entire home/apt 395
## 12525 Brooklyn Private room 65
## 12526 Brooklyn Entire home/apt 219
## 12527 Manhattan Private room 60
## 12528 Brooklyn Private room 45
## 12529 Brooklyn Private room 60
## 12530 Manhattan Entire home/apt 107
## 12531 Manhattan Entire home/apt 230
## 12532 Manhattan Entire home/apt 288
## 12533 Brooklyn Private room 50
## 12534 Queens Entire home/apt 130
## 12535 Manhattan Shared room 85
## 12536 Brooklyn Entire home/apt 80
## 12537 Manhattan Private room 84
## 12538 Brooklyn Private room 63
## 12539 Brooklyn Private room 45
## 12540 Brooklyn Entire home/apt 125
## 12541 Brooklyn Private room 160
## 12542 Brooklyn Private room 63
## 12543 Manhattan Private room 125
## 12544 Brooklyn Private room 45
## 12545 Brooklyn Private room 115
## 12546 Manhattan Entire home/apt 269
## 12547 Brooklyn Private room 55
## 12548 Manhattan Entire home/apt 150
## 12549 Queens Entire home/apt 100
## 12550 Manhattan Entire home/apt 190
## 12551 Brooklyn Entire home/apt 150
## 12552 Queens Private room 75
## 12553 Brooklyn Private room 59
## 12554 Brooklyn Entire home/apt 173
## 12555 Brooklyn Private room 60
## 12556 Brooklyn Private room 115
## 12557 Manhattan Entire home/apt 89
## 12558 Brooklyn Private room 70
## 12559 Queens Private room 89
## 12560 Queens Private room 60
## 12561 Brooklyn Entire home/apt 130
## 12562 Manhattan Entire home/apt 400
## 12563 Brooklyn Entire home/apt 90
## 12564 Manhattan Entire home/apt 200
## 12565 Brooklyn Private room 65
## 12566 Queens Private room 43
## 12567 Brooklyn Private room 55
## 12568 Queens Entire home/apt 120
## 12569 Manhattan Private room 110
## 12570 Manhattan Entire home/apt 95
## 12571 Manhattan Entire home/apt 145
## 12572 Manhattan Entire home/apt 550
## 12573 Queens Private room 59
## 12574 Queens Entire home/apt 239
## 12575 Queens Private room 49
## 12576 Manhattan Private room 95
## 12577 Manhattan Entire home/apt 160
## 12578 Brooklyn Entire home/apt 90
## 12579 Brooklyn Private room 80
## 12580 Brooklyn Entire home/apt 125
## 12581 Brooklyn Private room 65
## 12582 Manhattan Entire home/apt 77
## 12583 Brooklyn Entire home/apt 220
## 12584 Brooklyn Entire home/apt 150
## 12585 Brooklyn Private room 200
## 12586 Manhattan Entire home/apt 200
## 12587 Brooklyn Entire home/apt 160
## 12588 Brooklyn Private room 90
## 12589 Brooklyn Entire home/apt 230
## 12590 Brooklyn Private room 55
## 12591 Manhattan Private room 160
## 12592 Brooklyn Private room 46
## 12593 Manhattan Private room 224
## 12594 Manhattan Entire home/apt 300
## 12595 Manhattan Private room 100
## 12596 Brooklyn Private room 95
## 12597 Manhattan Private room 100
## 12598 Brooklyn Private room 47
## 12599 Manhattan Private room 139
## 12600 Queens Private room 68
## 12601 Brooklyn Entire home/apt 110
## 12602 Manhattan Entire home/apt 112
## 12603 Manhattan Private room 85
## 12604 Brooklyn Entire home/apt 450
## 12605 Manhattan Entire home/apt 390
## 12606 Manhattan Private room 55
## 12607 Brooklyn Private room 55
## 12608 Manhattan Private room 85
## 12609 Brooklyn Entire home/apt 160
## 12610 Manhattan Entire home/apt 155
## 12611 Brooklyn Entire home/apt 70
## 12612 Brooklyn Entire home/apt 185
## 12613 Brooklyn Entire home/apt 90
## 12614 Manhattan Private room 200
## 12615 Manhattan Private room 58
## 12616 Manhattan Private room 70
## 12617 Manhattan Private room 50
## 12618 Queens Entire home/apt 85
## 12619 Manhattan Entire home/apt 200
## 12620 Manhattan Entire home/apt 250
## 12621 Queens Private room 45
## 12622 Brooklyn Entire home/apt 109
## 12623 Staten Island Private room 48
## 12624 Manhattan Entire home/apt 150
## 12625 Brooklyn Entire home/apt 350
## 12626 Manhattan Entire home/apt 100
## 12627 Manhattan Entire home/apt 177
## 12628 Manhattan Entire home/apt 108
## 12629 Brooklyn Private room 28
## 12630 Manhattan Private room 101
## 12631 Queens Private room 35
## 12632 Queens Entire home/apt 105
## 12633 Brooklyn Private room 95
## 12634 Manhattan Private room 62
## 12635 Manhattan Private room 65
## 12636 Manhattan Entire home/apt 150
## 12637 Brooklyn Entire home/apt 113
## 12638 Brooklyn Entire home/apt 300
## 12639 Brooklyn Entire home/apt 65
## 12640 Brooklyn Private room 55
## 12641 Brooklyn Entire home/apt 150
## 12642 Brooklyn Entire home/apt 120
## 12643 Manhattan Entire home/apt 160
## 12644 Manhattan Private room 135
## 12645 Brooklyn Entire home/apt 175
## 12646 Brooklyn Entire home/apt 300
## 12647 Brooklyn Private room 80
## 12648 Queens Private room 40
## 12649 Manhattan Entire home/apt 170
## 12650 Manhattan Entire home/apt 85
## 12651 Bronx Entire home/apt 85
## 12652 Brooklyn Entire home/apt 84
## 12653 Brooklyn Entire home/apt 399
## 12654 Manhattan Entire home/apt 450
## 12655 Manhattan Entire home/apt 140
## 12656 Brooklyn Entire home/apt 210
## 12657 Manhattan Entire home/apt 135
## 12658 Brooklyn Entire home/apt 200
## 12659 Manhattan Entire home/apt 200
## 12660 Brooklyn Private room 47
## 12661 Brooklyn Entire home/apt 50
## 12662 Brooklyn Private room 95
## 12663 Manhattan Entire home/apt 280
## 12664 Brooklyn Private room 50
## 12665 Manhattan Private room 200
## 12666 Manhattan Private room 197
## 12667 Brooklyn Entire home/apt 120
## 12668 Brooklyn Entire home/apt 60
## 12669 Manhattan Private room 100
## 12670 Manhattan Private room 84
## 12671 Queens Entire home/apt 200
## 12672 Manhattan Entire home/apt 150
## 12673 Brooklyn Shared room 35
## 12674 Manhattan Entire home/apt 195
## 12675 Manhattan Private room 37
## 12676 Manhattan Entire home/apt 200
## 12677 Manhattan Private room 125
## 12678 Manhattan Private room 100
## 12679 Manhattan Entire home/apt 70
## 12680 Brooklyn Entire home/apt 125
## 12681 Brooklyn Entire home/apt 123
## 12682 Brooklyn Entire home/apt 95
## 12683 Manhattan Entire home/apt 199
## 12684 Brooklyn Entire home/apt 125
## 12685 Brooklyn Private room 45
## 12686 Manhattan Entire home/apt 189
## 12687 Brooklyn Private room 50
## 12688 Manhattan Private room 120
## 12689 Brooklyn Entire home/apt 250
## 12690 Brooklyn Entire home/apt 95
## 12691 Manhattan Private room 140
## 12692 Queens Entire home/apt 99
## 12693 Manhattan Entire home/apt 120
## 12694 Brooklyn Private room 35
## 12695 Manhattan Entire home/apt 195
## 12696 Brooklyn Private room 35
## 12697 Manhattan Entire home/apt 250
## 12698 Brooklyn Private room 70
## 12699 Brooklyn Entire home/apt 140
## 12700 Brooklyn Entire home/apt 159
## 12701 Manhattan Entire home/apt 149
## 12702 Manhattan Entire home/apt 180
## 12703 Manhattan Entire home/apt 110
## 12704 Queens Entire home/apt 100
## 12705 Brooklyn Private room 50
## 12706 Manhattan Entire home/apt 425
## 12707 Manhattan Entire home/apt 195
## 12708 Manhattan Entire home/apt 260
## 12709 Manhattan Entire home/apt 499
## 12710 Manhattan Private room 75
## 12711 Manhattan Entire home/apt 250
## 12712 Brooklyn Entire home/apt 350
## 12713 Manhattan Entire home/apt 275
## 12714 Brooklyn Entire home/apt 325
## 12715 Manhattan Entire home/apt 300
## 12716 Brooklyn Private room 75
## 12717 Brooklyn Private room 100
## 12718 Manhattan Private room 45
## 12719 Brooklyn Entire home/apt 146
## 12720 Manhattan Private room 89
## 12721 Manhattan Entire home/apt 75
## 12722 Manhattan Entire home/apt 175
## 12723 Manhattan Private room 75
## 12724 Manhattan Entire home/apt 102
## 12725 Manhattan Entire home/apt 250
## 12726 Manhattan Entire home/apt 190
## 12727 Manhattan Private room 120
## 12728 Brooklyn Private room 70
## 12729 Brooklyn Private room 63
## 12730 Brooklyn Entire home/apt 100
## 12731 Manhattan Private room 130
## 12732 Manhattan Entire home/apt 140
## 12733 Queens Entire home/apt 65
## 12734 Brooklyn Entire home/apt 90
## 12735 Brooklyn Private room 46
## 12736 Brooklyn Entire home/apt 72
## 12737 Brooklyn Entire home/apt 115
## 12738 Manhattan Private room 90
## 12739 Brooklyn Private room 65
## 12740 Brooklyn Entire home/apt 250
## 12741 Manhattan Entire home/apt 1000
## 12742 Brooklyn Entire home/apt 159
## 12743 Manhattan Private room 99
## 12744 Queens Entire home/apt 100
## 12745 Manhattan Entire home/apt 250
## 12746 Brooklyn Entire home/apt 120
## 12747 Manhattan Private room 80
## 12748 Manhattan Entire home/apt 300
## 12749 Manhattan Private room 45
## 12750 Manhattan Entire home/apt 200
## 12751 Manhattan Private room 65
## 12752 Manhattan Private room 70
## 12753 Brooklyn Entire home/apt 60
## 12754 Manhattan Entire home/apt 240
## 12755 Manhattan Private room 50
## 12756 Manhattan Private room 100
## 12757 Manhattan Entire home/apt 200
## 12758 Brooklyn Entire home/apt 180
## 12759 Queens Private room 65
## 12760 Brooklyn Entire home/apt 130
## 12761 Manhattan Entire home/apt 125
## 12762 Brooklyn Entire home/apt 250
## 12763 Brooklyn Entire home/apt 70
## 12764 Brooklyn Entire home/apt 100
## 12765 Manhattan Entire home/apt 90
## 12766 Queens Private room 90
## 12767 Brooklyn Private room 31
## 12768 Manhattan Private room 45
## 12769 Manhattan Entire home/apt 188
## 12770 Brooklyn Private room 39
## 12771 Brooklyn Private room 39
## 12772 Brooklyn Private room 85
## 12773 Brooklyn Private room 40
## 12774 Brooklyn Private room 75
## 12775 Brooklyn Entire home/apt 200
## 12776 Manhattan Private room 88
## 12777 Brooklyn Entire home/apt 130
## 12778 Staten Island Private room 40
## 12779 Manhattan Private room 65
## 12780 Manhattan Entire home/apt 129
## 12781 Manhattan Entire home/apt 500
## 12782 Queens Entire home/apt 125
## 12783 Brooklyn Entire home/apt 100
## 12784 Brooklyn Entire home/apt 100
## 12785 Brooklyn Private room 24
## 12786 Brooklyn Entire home/apt 160
## 12787 Brooklyn Entire home/apt 125
## 12788 Brooklyn Entire home/apt 205
## 12789 Manhattan Entire home/apt 750
## 12790 Brooklyn Private room 75
## 12791 Manhattan Entire home/apt 150
## 12792 Manhattan Entire home/apt 195
## 12793 Brooklyn Private room 477
## 12794 Manhattan Entire home/apt 275
## 12795 Manhattan Entire home/apt 699
## 12796 Manhattan Entire home/apt 180
## 12797 Brooklyn Private room 60
## 12798 Brooklyn Entire home/apt 128
## 12799 Manhattan Entire home/apt 140
## 12800 Brooklyn Entire home/apt 98
## 12801 Manhattan Entire home/apt 1200
## 12802 Brooklyn Entire home/apt 800
## 12803 Manhattan Private room 130
## 12804 Brooklyn Entire home/apt 325
## 12805 Manhattan Private room 200
## 12806 Manhattan Entire home/apt 125
## 12807 Manhattan Private room 62
## 12808 Manhattan Entire home/apt 144
## 12809 Brooklyn Private room 90
## 12810 Manhattan Private room 45
## 12811 Brooklyn Private room 75
## 12812 Brooklyn Private room 85
## 12813 Manhattan Entire home/apt 50
## 12814 Brooklyn Private room 50
## 12815 Manhattan Entire home/apt 86
## 12816 Brooklyn Private room 60
## 12817 Manhattan Entire home/apt 372
## 12818 Brooklyn Private room 75
## 12819 Brooklyn Private room 60
## 12820 Manhattan Private room 29
## 12821 Brooklyn Private room 85
## 12822 Brooklyn Private room 60
## 12823 Manhattan Private room 124
## 12824 Manhattan Private room 90
## 12825 Manhattan Entire home/apt 300
## 12826 Manhattan Entire home/apt 70
## 12827 Bronx Entire home/apt 87
## 12828 Manhattan Private room 100
## 12829 Brooklyn Private room 55
## 12830 Manhattan Entire home/apt 139
## 12831 Manhattan Private room 200
## 12832 Manhattan Private room 300
## 12833 Brooklyn Private room 50
## 12834 Manhattan Entire home/apt 260
## 12835 Manhattan Private room 120
## 12836 Manhattan Entire home/apt 110
## 12837 Brooklyn Private room 50
## 12838 Manhattan Private room 90
## 12839 Queens Entire home/apt 225
## 12840 Manhattan Entire home/apt 83
## 12841 Brooklyn Private room 30
## 12842 Manhattan Shared room 65
## 12843 Brooklyn Private room 60
## 12844 Manhattan Entire home/apt 140
## 12845 Manhattan Entire home/apt 799
## 12846 Brooklyn Entire home/apt 330
## 12847 Manhattan Entire home/apt 1100
## 12848 Brooklyn Private room 75
## 12849 Manhattan Entire home/apt 140
## 12850 Manhattan Private room 100
## 12851 Queens Entire home/apt 100
## 12852 Manhattan Private room 110
## 12853 Manhattan Private room 75
## 12854 Manhattan Entire home/apt 150
## 12855 Brooklyn Private room 90
## 12856 Manhattan Private room 70
## 12857 Manhattan Entire home/apt 85
## 12858 Manhattan Entire home/apt 150
## 12859 Manhattan Private room 145
## 12860 Manhattan Private room 77
## 12861 Manhattan Private room 200
## 12862 Brooklyn Private room 60
## 12863 Brooklyn Private room 70
## 12864 Manhattan Entire home/apt 365
## 12865 Manhattan Entire home/apt 180
## 12866 Manhattan Entire home/apt 230
## 12867 Manhattan Private room 79
## 12868 Brooklyn Private room 49
## 12869 Manhattan Private room 165
## 12870 Brooklyn Entire home/apt 140
## 12871 Manhattan Private room 72
## 12872 Manhattan Entire home/apt 369
## 12873 Manhattan Private room 63
## 12874 Manhattan Entire home/apt 165
## 12875 Manhattan Entire home/apt 112
## 12876 Brooklyn Entire home/apt 119
## 12877 Manhattan Entire home/apt 160
## 12878 Brooklyn Entire home/apt 170
## 12879 Brooklyn Entire home/apt 995
## 12880 Brooklyn Entire home/apt 185
## 12881 Manhattan Entire home/apt 500
## 12882 Manhattan Private room 48
## 12883 Manhattan Private room 150
## 12884 Manhattan Entire home/apt 199
## 12885 Brooklyn Private room 80
## 12886 Manhattan Private room 60
## 12887 Manhattan Entire home/apt 125
## 12888 Manhattan Private room 62
## 12889 Manhattan Shared room 60
## 12890 Manhattan Entire home/apt 600
## 12891 Brooklyn Private room 75
## 12892 Brooklyn Entire home/apt 80
## 12893 Manhattan Entire home/apt 195
## 12894 Manhattan Private room 68
## 12895 Manhattan Private room 45
## 12896 Brooklyn Entire home/apt 90
## 12897 Manhattan Entire home/apt 200
## 12898 Queens Private room 30
## 12899 Manhattan Private room 80
## 12900 Manhattan Entire home/apt 125
## 12901 Brooklyn Private room 70
## 12902 Brooklyn Private room 50
## 12903 Brooklyn Private room 110
## 12904 Manhattan Entire home/apt 199
## 12905 Brooklyn Private room 40
## 12906 Brooklyn Private room 65
## 12907 Manhattan Private room 85
## 12908 Brooklyn Entire home/apt 160
## 12909 Manhattan Private room 69
## 12910 Brooklyn Private room 42
## 12911 Manhattan Entire home/apt 120
## 12912 Brooklyn Entire home/apt 150
## 12913 Manhattan Entire home/apt 130
## 12914 Brooklyn Private room 85
## 12915 Brooklyn Private room 100
## 12916 Manhattan Entire home/apt 210
## 12917 Brooklyn Private room 28
## 12918 Brooklyn Private room 60
## 12919 Brooklyn Private room 60
## 12920 Brooklyn Entire home/apt 140
## 12921 Brooklyn Private room 69
## 12922 Brooklyn Private room 73
## 12923 Brooklyn Private room 67
## 12924 Queens Entire home/apt 123
## 12925 Manhattan Entire home/apt 110
## 12926 Manhattan Entire home/apt 250
## 12927 Manhattan Entire home/apt 80
## 12928 Manhattan Entire home/apt 325
## 12929 Manhattan Entire home/apt 300
## 12930 Brooklyn Private room 44
## 12931 Manhattan Entire home/apt 197
## 12932 Manhattan Private room 60
## 12933 Brooklyn Entire home/apt 165
## 12934 Brooklyn Private room 30
## 12935 Brooklyn Private room 120
## 12936 Brooklyn Entire home/apt 119
## 12937 Brooklyn Private room 39
## 12938 Manhattan Entire home/apt 250
## 12939 Brooklyn Entire home/apt 130
## 12940 Manhattan Private room 100
## 12941 Manhattan Private room 28
## 12942 Manhattan Entire home/apt 149
## 12943 Queens Private room 39
## 12944 Manhattan Entire home/apt 225
## 12945 Brooklyn Private room 100
## 12946 Brooklyn Private room 45
## 12947 Manhattan Entire home/apt 120
## 12948 Manhattan Entire home/apt 99
## 12949 Brooklyn Entire home/apt 206
## 12950 Manhattan Entire home/apt 120
## 12951 Manhattan Entire home/apt 275
## 12952 Manhattan Entire home/apt 290
## 12953 Manhattan Entire home/apt 300
## 12954 Manhattan Entire home/apt 75
## 12955 Brooklyn Entire home/apt 80
## 12956 Brooklyn Entire home/apt 150
## 12957 Manhattan Private room 80
## 12958 Brooklyn Entire home/apt 70
## 12959 Brooklyn Entire home/apt 130
## 12960 Brooklyn Private room 50
## 12961 Brooklyn Entire home/apt 125
## 12962 Brooklyn Entire home/apt 150
## 12963 Brooklyn Entire home/apt 290
## 12964 Manhattan Entire home/apt 210
## 12965 Manhattan Entire home/apt 150
## 12966 Brooklyn Entire home/apt 129
## 12967 Bronx Private room 64
## 12968 Manhattan Private room 100
## 12969 Manhattan Private room 60
## 12970 Brooklyn Entire home/apt 120
## 12971 Manhattan Entire home/apt 180
## 12972 Manhattan Private room 45
## 12973 Manhattan Private room 90
## 12974 Manhattan Entire home/apt 200
## 12975 Manhattan Entire home/apt 239
## 12976 Manhattan Entire home/apt 139
## 12977 Manhattan Entire home/apt 279
## 12978 Brooklyn Private room 95
## 12979 Manhattan Private room 70
## 12980 Manhattan Entire home/apt 90
## 12981 Brooklyn Private room 70
## 12982 Brooklyn Entire home/apt 94
## 12983 Manhattan Entire home/apt 250
## 12984 Manhattan Entire home/apt 850
## 12985 Brooklyn Private room 85
## 12986 Queens Entire home/apt 65
## 12987 Manhattan Entire home/apt 369
## 12988 Manhattan Private room 200
## 12989 Queens Entire home/apt 88
## 12990 Manhattan Entire home/apt 65
## 12991 Manhattan Entire home/apt 239
## 12992 Brooklyn Private room 79
## 12993 Manhattan Entire home/apt 239
## 12994 Manhattan Entire home/apt 239
## 12995 Manhattan Entire home/apt 239
## 12996 Brooklyn Entire home/apt 120
## 12997 Manhattan Private room 175
## 12998 Manhattan Entire home/apt 200
## 12999 Manhattan Entire home/apt 103
## 13000 Manhattan Entire home/apt 80
## 13001 Brooklyn Private room 80
## 13002 Brooklyn Private room 60
## 13003 Brooklyn Private room 50
## 13004 Brooklyn Private room 50
## 13005 Manhattan Entire home/apt 145
## 13006 Brooklyn Entire home/apt 425
## 13007 Manhattan Entire home/apt 275
## 13008 Manhattan Private room 150
## 13009 Manhattan Entire home/apt 229
## 13010 Manhattan Entire home/apt 200
## 13011 Manhattan Entire home/apt 300
## 13012 Brooklyn Private room 47
## 13013 Manhattan Entire home/apt 200
## 13014 Manhattan Entire home/apt 200
## 13015 Manhattan Entire home/apt 180
## 13016 Manhattan Entire home/apt 270
## 13017 Manhattan Private room 30
## 13018 Brooklyn Entire home/apt 170
## 13019 Manhattan Private room 55
## 13020 Brooklyn Entire home/apt 185
## 13021 Brooklyn Private room 30
## 13022 Manhattan Entire home/apt 139
## 13023 Manhattan Private room 101
## 13024 Manhattan Private room 85
## 13025 Brooklyn Private room 50
## 13026 Brooklyn Private room 38
## 13027 Brooklyn Entire home/apt 219
## 13028 Manhattan Private room 325
## 13029 Brooklyn Entire home/apt 100
## 13030 Brooklyn Private room 69
## 13031 Manhattan Entire home/apt 275
## 13032 Manhattan Entire home/apt 249
## 13033 Manhattan Entire home/apt 249
## 13034 Manhattan Entire home/apt 239
## 13035 Manhattan Entire home/apt 100
## 13036 Brooklyn Private room 49
## 13037 Manhattan Entire home/apt 239
## 13038 Brooklyn Entire home/apt 150
## 13039 Manhattan Entire home/apt 239
## 13040 Manhattan Entire home/apt 239
## 13041 Queens Entire home/apt 150
## 13042 Manhattan Entire home/apt 200
## 13043 Manhattan Private room 50
## 13044 Manhattan Entire home/apt 190
## 13045 Brooklyn Private room 59
## 13046 Brooklyn Private room 40
## 13047 Staten Island Private room 52
## 13048 Brooklyn Entire home/apt 89
## 13049 Manhattan Entire home/apt 369
## 13050 Manhattan Entire home/apt 100
## 13051 Brooklyn Private room 90
## 13052 Manhattan Entire home/apt 115
## 13053 Manhattan Private room 150
## 13054 Manhattan Entire home/apt 400
## 13055 Queens Private room 66
## 13056 Manhattan Entire home/apt 180
## 13057 Manhattan Entire home/apt 149
## 13058 Manhattan Private room 89
## 13059 Manhattan Entire home/apt 85
## 13060 Manhattan Private room 67
## 13061 Brooklyn Private room 75
## 13062 Manhattan Private room 94
## 13063 Brooklyn Private room 80
## 13064 Manhattan Private room 70
## 13065 Brooklyn Private room 115
## 13066 Queens Private room 90
## 13067 Brooklyn Entire home/apt 155
## 13068 Queens Private room 65
## 13069 Manhattan Private room 60
## 13070 Manhattan Entire home/apt 149
## 13071 Queens Private room 70
## 13072 Manhattan Private room 100
## 13073 Manhattan Entire home/apt 120
## 13074 Manhattan Entire home/apt 150
## 13075 Brooklyn Entire home/apt 160
## 13076 Manhattan Entire home/apt 135
## 13077 Queens Entire home/apt 200
## 13078 Brooklyn Private room 50
## 13079 Manhattan Entire home/apt 225
## 13080 Brooklyn Private room 35
## 13081 Manhattan Private room 45
## 13082 Manhattan Private room 140
## 13083 Manhattan Entire home/apt 160
## 13084 Brooklyn Private room 35
## 13085 Brooklyn Entire home/apt 125
## 13086 Manhattan Entire home/apt 160
## 13087 Manhattan Entire home/apt 180
## 13088 Manhattan Entire home/apt 179
## 13089 Manhattan Entire home/apt 120
## 13090 Brooklyn Private room 70
## 13091 Brooklyn Private room 68
## 13092 Manhattan Private room 100
## 13093 Manhattan Entire home/apt 300
## 13094 Manhattan Entire home/apt 152
## 13095 Manhattan Private room 100
## 13096 Manhattan Entire home/apt 200
## 13097 Manhattan Entire home/apt 250
## 13098 Manhattan Entire home/apt 200
## 13099 Manhattan Entire home/apt 200
## 13100 Manhattan Entire home/apt 245
## 13101 Manhattan Private room 79
## 13102 Manhattan Entire home/apt 175
## 13103 Brooklyn Private room 45
## 13104 Manhattan Entire home/apt 180
## 13105 Manhattan Entire home/apt 139
## 13106 Brooklyn Entire home/apt 220
## 13107 Brooklyn Private room 70
## 13108 Brooklyn Private room 99
## 13109 Brooklyn Entire home/apt 120
## 13110 Brooklyn Entire home/apt 178
## 13111 Manhattan Private room 55
## 13112 Brooklyn Entire home/apt 124
## 13113 Manhattan Entire home/apt 380
## 13114 Brooklyn Private room 55
## 13115 Queens Entire home/apt 250
## 13116 Brooklyn Entire home/apt 180
## 13117 Queens Entire home/apt 375
## 13118 Manhattan Entire home/apt 200
## 13119 Manhattan Entire home/apt 180
## 13120 Brooklyn Private room 65
## 13121 Brooklyn Entire home/apt 65
## 13122 Brooklyn Private room 60
## 13123 Manhattan Private room 60
## 13124 Brooklyn Private room 45
## 13125 Brooklyn Private room 50
## 13126 Brooklyn Entire home/apt 74
## 13127 Brooklyn Private room 50
## 13128 Brooklyn Private room 60
## 13129 Manhattan Entire home/apt 150
## 13130 Brooklyn Private room 55
## 13131 Brooklyn Entire home/apt 40
## 13132 Manhattan Private room 120
## 13133 Brooklyn Private room 35
## 13134 Manhattan Entire home/apt 250
## 13135 Brooklyn Entire home/apt 85
## 13136 Manhattan Private room 125
## 13137 Manhattan Private room 146
## 13138 Brooklyn Private room 99
## 13139 Brooklyn Private room 69
## 13140 Brooklyn Private room 70
## 13141 Brooklyn Entire home/apt 159
## 13142 Brooklyn Private room 40
## 13143 Brooklyn Private room 65
## 13144 Brooklyn Private room 45
## 13145 Manhattan Private room 42
## 13146 Brooklyn Entire home/apt 100
## 13147 Brooklyn Private room 40
## 13148 Brooklyn Entire home/apt 175
## 13149 Brooklyn Private room 500
## 13150 Manhattan Private room 90
## 13151 Brooklyn Entire home/apt 400
## 13152 Brooklyn Entire home/apt 130
## 13153 Manhattan Shared room 70
## 13154 Brooklyn Private room 48
## 13155 Manhattan Entire home/apt 169
## 13156 Manhattan Entire home/apt 200
## 13157 Brooklyn Entire home/apt 100
## 13158 Brooklyn Private room 50
## 13159 Brooklyn Entire home/apt 80
## 13160 Manhattan Entire home/apt 200
## 13161 Manhattan Entire home/apt 369
## 13162 Manhattan Entire home/apt 215
## 13163 Manhattan Entire home/apt 249
## 13164 Manhattan Entire home/apt 110
## 13165 Manhattan Entire home/apt 110
## 13166 Brooklyn Private room 30
## 13167 Brooklyn Private room 50
## 13168 Brooklyn Entire home/apt 86
## 13169 Manhattan Private room 79
## 13170 Brooklyn Entire home/apt 150
## 13171 Manhattan Entire home/apt 199
## 13172 Brooklyn Entire home/apt 85
## 13173 Manhattan Private room 50
## 13174 Manhattan Entire home/apt 140
## 13175 Queens Private room 59
## 13176 Manhattan Entire home/apt 330
## 13177 Brooklyn Entire home/apt 175
## 13178 Manhattan Private room 91
## 13179 Queens Shared room 25
## 13180 Brooklyn Entire home/apt 75
## 13181 Manhattan Entire home/apt 225
## 13182 Manhattan Private room 66
## 13183 Brooklyn Private room 40
## 13184 Manhattan Entire home/apt 174
## 13185 Brooklyn Entire home/apt 200
## 13186 Manhattan Entire home/apt 150
## 13187 Brooklyn Private room 102
## 13188 Manhattan Private room 85
## 13189 Brooklyn Private room 76
## 13190 Brooklyn Shared room 75
## 13191 Manhattan Entire home/apt 135
## 13192 Manhattan Entire home/apt 175
## 13193 Brooklyn Entire home/apt 100
## 13194 Manhattan Entire home/apt 145
## 13195 Brooklyn Private room 49
## 13196 Manhattan Private room 50
## 13197 Manhattan Entire home/apt 120
## 13198 Manhattan Private room 50
## 13199 Brooklyn Private room 50
## 13200 Queens Private room 60
## 13201 Queens Private room 55
## 13202 Manhattan Entire home/apt 199
## 13203 Manhattan Private room 90
## 13204 Queens Entire home/apt 189
## 13205 Manhattan Private room 49
## 13206 Manhattan Private room 65
## 13207 Brooklyn Private room 90
## 13208 Brooklyn Private room 49
## 13209 Brooklyn Entire home/apt 75
## 13210 Manhattan Private room 100
## 13211 Brooklyn Private room 59
## 13212 Manhattan Entire home/apt 130
## 13213 Manhattan Entire home/apt 225
## 13214 Manhattan Entire home/apt 97
## 13215 Brooklyn Entire home/apt 250
## 13216 Manhattan Entire home/apt 150
## 13217 Brooklyn Private room 63
## 13218 Manhattan Entire home/apt 200
## 13219 Manhattan Entire home/apt 139
## 13220 Queens Entire home/apt 250
## 13221 Manhattan Entire home/apt 140
## 13222 Manhattan Private room 95
## 13223 Brooklyn Private room 55
## 13224 Brooklyn Private room 32
## 13225 Manhattan Entire home/apt 110
## 13226 Brooklyn Private room 30
## 13227 Manhattan Entire home/apt 250
## 13228 Brooklyn Private room 100
## 13229 Brooklyn Entire home/apt 115
## 13230 Manhattan Private room 90
## 13231 Manhattan Entire home/apt 139
## 13232 Manhattan Private room 150
## 13233 Manhattan Private room 170
## 13234 Manhattan Private room 75
## 13235 Manhattan Private room 120
## 13236 Manhattan Private room 80
## 13237 Brooklyn Private room 50
## 13238 Manhattan Private room 100
## 13239 Queens Private room 36
## 13240 Manhattan Entire home/apt 100
## 13241 Manhattan Private room 129
## 13242 Manhattan Entire home/apt 199
## 13243 Brooklyn Private room 60
## 13244 Manhattan Private room 60
## 13245 Brooklyn Private room 60
## 13246 Queens Entire home/apt 99
## 13247 Brooklyn Entire home/apt 101
## 13248 Queens Private room 55
## 13249 Manhattan Entire home/apt 219
## 13250 Manhattan Entire home/apt 150
## 13251 Brooklyn Private room 25
## 13252 Queens Shared room 26
## 13253 Brooklyn Private room 90
## 13254 Manhattan Entire home/apt 500
## 13255 Manhattan Entire home/apt 120
## 13256 Manhattan Private room 59
## 13257 Manhattan Private room 70
## 13258 Manhattan Private room 100
## 13259 Brooklyn Entire home/apt 115
## 13260 Manhattan Entire home/apt 150
## 13261 Brooklyn Private room 105
## 13262 Brooklyn Private room 65
## 13263 Brooklyn Entire home/apt 113
## 13264 Manhattan Private room 70
## 13265 Manhattan Entire home/apt 199
## 13266 Brooklyn Entire home/apt 125
## 13267 Brooklyn Entire home/apt 140
## 13268 Brooklyn Private room 85
## 13269 Brooklyn Private room 70
## 13270 Manhattan Entire home/apt 89
## 13271 Queens Private room 95
## 13272 Queens Private room 70
## 13273 Manhattan Entire home/apt 154
## 13274 Manhattan Entire home/apt 220
## 13275 Brooklyn Private room 45
## 13276 Manhattan Private room 59
## 13277 Manhattan Private room 95
## 13278 Manhattan Private room 129
## 13279 Brooklyn Entire home/apt 115
## 13280 Manhattan Private room 105
## 13281 Brooklyn Entire home/apt 93
## 13282 Manhattan Private room 40
## 13283 Queens Private room 88
## 13284 Brooklyn Entire home/apt 85
## 13285 Manhattan Entire home/apt 170
## 13286 Manhattan Private room 75
## 13287 Brooklyn Private room 55
## 13288 Brooklyn Private room 57
## 13289 Manhattan Entire home/apt 199
## 13290 Queens Entire home/apt 105
## 13291 Manhattan Entire home/apt 485
## 13292 Manhattan Entire home/apt 125
## 13293 Manhattan Entire home/apt 150
## 13294 Manhattan Private room 95
## 13295 Manhattan Entire home/apt 200
## 13296 Manhattan Entire home/apt 90
## 13297 Manhattan Entire home/apt 120
## 13298 Manhattan Entire home/apt 100
## 13299 Brooklyn Private room 70
## 13300 Manhattan Entire home/apt 110
## 13301 Brooklyn Entire home/apt 96
## 13302 Brooklyn Private room 50
## 13303 Brooklyn Entire home/apt 175
## 13304 Manhattan Private room 70
## 13305 Manhattan Private room 75
## 13306 Bronx Private room 51
## 13307 Brooklyn Entire home/apt 80
## 13308 Manhattan Entire home/apt 110
## 13309 Manhattan Private room 80
## 13310 Brooklyn Private room 60
## 13311 Manhattan Entire home/apt 170
## 13312 Manhattan Entire home/apt 155
## 13313 Manhattan Private room 65
## 13314 Manhattan Entire home/apt 165
## 13315 Manhattan Entire home/apt 115
## 13316 Manhattan Entire home/apt 150
## 13317 Queens Private room 700
## 13318 Manhattan Entire home/apt 125
## 13319 Brooklyn Private room 75
## 13320 Manhattan Entire home/apt 150
## 13321 Manhattan Private room 170
## 13322 Manhattan Entire home/apt 150
## 13323 Manhattan Entire home/apt 150
## 13324 Manhattan Private room 45
## 13325 Manhattan Entire home/apt 55
## 13326 Brooklyn Private room 89
## 13327 Manhattan Private room 100
## 13328 Brooklyn Private room 35
## 13329 Brooklyn Entire home/apt 70
## 13330 Manhattan Private room 100
## 13331 Manhattan Entire home/apt 78
## 13332 Brooklyn Private room 59
## 13333 Manhattan Entire home/apt 148
## 13334 Brooklyn Entire home/apt 125
## 13335 Brooklyn Entire home/apt 155
## 13336 Brooklyn Private room 61
## 13337 Manhattan Private room 100
## 13338 Queens Private room 55
## 13339 Brooklyn Private room 40
## 13340 Manhattan Entire home/apt 196
## 13341 Manhattan Entire home/apt 101
## 13342 Manhattan Private room 50
## 13343 Manhattan Entire home/apt 150
## 13344 Manhattan Private room 102
## 13345 Brooklyn Private room 30
## 13346 Manhattan Entire home/apt 250
## 13347 Manhattan Private room 115
## 13348 Manhattan Entire home/apt 129
## 13349 Manhattan Private room 90
## 13350 Manhattan Entire home/apt 120
## 13351 Manhattan Entire home/apt 150
## 13352 Manhattan Entire home/apt 146
## 13353 Manhattan Private room 70
## 13354 Manhattan Entire home/apt 115
## 13355 Manhattan Private room 49
## 13356 Manhattan Entire home/apt 200
## 13357 Manhattan Entire home/apt 166
## 13358 Brooklyn Private room 40
## 13359 Brooklyn Private room 137
## 13360 Brooklyn Private room 58
## 13361 Brooklyn Private room 55
## 13362 Brooklyn Private room 35
## 13363 Manhattan Entire home/apt 150
## 13364 Manhattan Entire home/apt 150
## 13365 Manhattan Entire home/apt 175
## 13366 Brooklyn Entire home/apt 189
## 13367 Brooklyn Private room 42
## 13368 Brooklyn Entire home/apt 175
## 13369 Manhattan Private room 150
## 13370 Manhattan Entire home/apt 425
## 13371 Brooklyn Private room 110
## 13372 Manhattan Private room 75
## 13373 Manhattan Entire home/apt 170
## 13374 Manhattan Entire home/apt 120
## 13375 Brooklyn Private room 65
## 13376 Brooklyn Entire home/apt 350
## 13377 Brooklyn Entire home/apt 199
## 13378 Manhattan Private room 67
## 13379 Brooklyn Entire home/apt 189
## 13380 Manhattan Private room 80
## 13381 Queens Private room 50
## 13382 Manhattan Entire home/apt 220
## 13383 Manhattan Private room 79
## 13384 Queens Private room 49
## 13385 Manhattan Entire home/apt 226
## 13386 Brooklyn Private room 79
## 13387 Brooklyn Private room 80
## 13388 Manhattan Private room 169
## 13389 Brooklyn Entire home/apt 100
## 13390 Manhattan Entire home/apt 98
## 13391 Brooklyn Private room 45
## 13392 Queens Private room 70
## 13393 Manhattan Entire home/apt 150
## 13394 Manhattan Private room 125
## 13395 Queens Entire home/apt 155
## 13396 Manhattan Entire home/apt 179
## 13397 Brooklyn Private room 60
## 13398 Manhattan Private room 90
## 13399 Brooklyn Private room 65
## 13400 Brooklyn Entire home/apt 179
## 13401 Brooklyn Private room 50
## 13402 Brooklyn Private room 50
## 13403 Brooklyn Private room 189
## 13404 Brooklyn Entire home/apt 67
## 13405 Manhattan Entire home/apt 99
## 13406 Manhattan Entire home/apt 140
## 13407 Queens Entire home/apt 90
## 13408 Manhattan Private room 55
## 13409 Brooklyn Private room 80
## 13410 Brooklyn Entire home/apt 170
## 13411 Manhattan Private room 90
## 13412 Manhattan Entire home/apt 175
## 13413 Manhattan Entire home/apt 117
## 13414 Brooklyn Private room 43
## 13415 Brooklyn Private room 189
## 13416 Brooklyn Private room 35
## 13417 Brooklyn Entire home/apt 61
## 13418 Brooklyn Entire home/apt 205
## 13419 Queens Private room 35
## 13420 Manhattan Private room 39
## 13421 Manhattan Private room 190
## 13422 Manhattan Entire home/apt 249
## 13423 Manhattan Entire home/apt 159
## 13424 Manhattan Entire home/apt 125
## 13425 Brooklyn Private room 37
## 13426 Manhattan Entire home/apt 299
## 13427 Manhattan Entire home/apt 175
## 13428 Manhattan Private room 42
## 13429 Brooklyn Entire home/apt 110
## 13430 Manhattan Entire home/apt 179
## 13431 Brooklyn Entire home/apt 90
## 13432 Brooklyn Private room 130
## 13433 Brooklyn Entire home/apt 140
## 13434 Brooklyn Entire home/apt 168
## 13435 Brooklyn Entire home/apt 128
## 13436 Brooklyn Private room 64
## 13437 Brooklyn Private room 35
## 13438 Brooklyn Private room 60
## 13439 Brooklyn Entire home/apt 200
## 13440 Brooklyn Entire home/apt 199
## 13441 Brooklyn Entire home/apt 175
## 13442 Manhattan Private room 95
## 13443 Brooklyn Private room 55
## 13444 Manhattan Entire home/apt 125
## 13445 Manhattan Private room 45
## 13446 Manhattan Entire home/apt 95
## 13447 Brooklyn Entire home/apt 153
## 13448 Brooklyn Private room 39
## 13449 Manhattan Entire home/apt 200
## 13450 Manhattan Private room 85
## 13451 Manhattan Entire home/apt 315
## 13452 Brooklyn Entire home/apt 89
## 13453 Manhattan Entire home/apt 350
## 13454 Queens Entire home/apt 179
## 13455 Brooklyn Private room 37
## 13456 Brooklyn Private room 75
## 13457 Manhattan Entire home/apt 150
## 13458 Brooklyn Entire home/apt 225
## 13459 Manhattan Entire home/apt 140
## 13460 Brooklyn Private room 115
## 13461 Brooklyn Private room 58
## 13462 Brooklyn Entire home/apt 190
## 13463 Manhattan Entire home/apt 100
## 13464 Brooklyn Private room 119
## 13465 Brooklyn Entire home/apt 139
## 13466 Manhattan Private room 140
## 13467 Brooklyn Entire home/apt 129
## 13468 Manhattan Entire home/apt 800
## 13469 Manhattan Private room 110
## 13470 Manhattan Entire home/apt 90
## 13471 Brooklyn Private room 61
## 13472 Manhattan Private room 65
## 13473 Manhattan Private room 60
## 13474 Manhattan Private room 60
## 13475 Manhattan Entire home/apt 150
## 13476 Manhattan Private room 587
## 13477 Manhattan Entire home/apt 175
## 13478 Brooklyn Private room 60
## 13479 Manhattan Entire home/apt 166
## 13480 Manhattan Entire home/apt 120
## 13481 Brooklyn Entire home/apt 135
## 13482 Manhattan Entire home/apt 145
## 13483 Brooklyn Entire home/apt 185
## 13484 Brooklyn Entire home/apt 120
## 13485 Brooklyn Private room 206
## 13486 Brooklyn Private room 65
## 13487 Manhattan Private room 80
## 13488 Queens Entire home/apt 139
## 13489 Manhattan Entire home/apt 239
## 13490 Brooklyn Entire home/apt 399
## 13491 Manhattan Entire home/apt 550
## 13492 Brooklyn Private room 30
## 13493 Brooklyn Entire home/apt 125
## 13494 Manhattan Entire home/apt 195
## 13495 Brooklyn Entire home/apt 500
## 13496 Queens Private room 47
## 13497 Queens Private room 69
## 13498 Manhattan Private room 90
## 13499 Manhattan Private room 99
## 13500 Manhattan Private room 75
## 13501 Brooklyn Shared room 35
## 13502 Brooklyn Private room 55
## 13503 Brooklyn Entire home/apt 80
## 13504 Manhattan Private room 100
## 13505 Brooklyn Private room 60
## 13506 Brooklyn Private room 40
## 13507 Manhattan Entire home/apt 118
## 13508 Manhattan Private room 97
## 13509 Manhattan Entire home/apt 210
## 13510 Brooklyn Entire home/apt 55
## 13511 Brooklyn Private room 62
## 13512 Manhattan Entire home/apt 185
## 13513 Manhattan Entire home/apt 200
## 13514 Brooklyn Entire home/apt 165
## 13515 Manhattan Private room 125
## 13516 Manhattan Entire home/apt 102
## 13517 Brooklyn Private room 80
## 13518 Manhattan Entire home/apt 449
## 13519 Manhattan Entire home/apt 200
## 13520 Manhattan Private room 84
## 13521 Manhattan Entire home/apt 95
## 13522 Brooklyn Private room 65
## 13523 Manhattan Entire home/apt 152
## 13524 Brooklyn Private room 50
## 13525 Brooklyn Entire home/apt 250
## 13526 Brooklyn Private room 149
## 13527 Manhattan Private room 124
## 13528 Manhattan Private room 58
## 13529 Manhattan Private room 159
## 13530 Manhattan Entire home/apt 250
## 13531 Manhattan Entire home/apt 150
## 13532 Manhattan Entire home/apt 250
## 13533 Manhattan Entire home/apt 500
## 13534 Brooklyn Private room 58
## 13535 Brooklyn Entire home/apt 199
## 13536 Manhattan Private room 55
## 13537 Brooklyn Private room 95
## 13538 Manhattan Shared room 36
## 13539 Manhattan Entire home/apt 165
## 13540 Brooklyn Private room 72
## 13541 Manhattan Private room 179
## 13542 Manhattan Private room 209
## 13543 Manhattan Private room 149
## 13544 Manhattan Entire home/apt 150
## 13545 Brooklyn Private room 375
## 13546 Queens Private room 65
## 13547 Manhattan Entire home/apt 275
## 13548 Manhattan Shared room 110
## 13549 Manhattan Private room 99
## 13550 Manhattan Private room 85
## 13551 Manhattan Private room 189
## 13552 Manhattan Shared room 100
## 13553 Manhattan Private room 75
## 13554 Queens Private room 45
## 13555 Brooklyn Private room 75
## 13556 Manhattan Entire home/apt 125
## 13557 Manhattan Entire home/apt 150
## 13558 Brooklyn Private room 71
## 13559 Queens Private room 46
## 13560 Manhattan Private room 105
## 13561 Brooklyn Private room 41
## 13562 Manhattan Entire home/apt 99
## 13563 Queens Private room 37
## 13564 Manhattan Entire home/apt 60
## 13565 Brooklyn Entire home/apt 218
## 13566 Manhattan Private room 150
## 13567 Manhattan Private room 52
## 13568 Brooklyn Entire home/apt 210
## 13569 Manhattan Entire home/apt 115
## 13570 Manhattan Entire home/apt 105
## 13571 Manhattan Private room 80
## 13572 Manhattan Entire home/apt 225
## 13573 Brooklyn Entire home/apt 175
## 13574 Manhattan Private room 120
## 13575 Manhattan Shared room 65
## 13576 Brooklyn Entire home/apt 99
## 13577 Manhattan Entire home/apt 160
## 13578 Manhattan Private room 60
## 13579 Manhattan Entire home/apt 90
## 13580 Manhattan Entire home/apt 230
## 13581 Manhattan Entire home/apt 250
## 13582 Manhattan Entire home/apt 299
## 13583 Manhattan Entire home/apt 499
## 13584 Brooklyn Private room 79
## 13585 Queens Private room 46
## 13586 Brooklyn Entire home/apt 110
## 13587 Manhattan Private room 70
## 13588 Brooklyn Entire home/apt 150
## 13589 Brooklyn Private room 59
## 13590 Manhattan Entire home/apt 165
## 13591 Brooklyn Private room 149
## 13592 Brooklyn Entire home/apt 129
## 13593 Brooklyn Private room 42
## 13594 Brooklyn Entire home/apt 120
## 13595 Brooklyn Private room 63
## 13596 Manhattan Entire home/apt 180
## 13597 Brooklyn Entire home/apt 220
## 13598 Brooklyn Private room 68
## 13599 Manhattan Private room 119
## 13600 Manhattan Private room 37
## 13601 Bronx Entire home/apt 80
## 13602 Brooklyn Private room 55
## 13603 Manhattan Private room 50
## 13604 Manhattan Entire home/apt 199
## 13605 Brooklyn Private room 50
## 13606 Brooklyn Private room 60
## 13607 Queens Entire home/apt 135
## 13608 Brooklyn Private room 64
## 13609 Queens Private room 80
## 13610 Brooklyn Private room 65
## 13611 Queens Private room 48
## 13612 Brooklyn Entire home/apt 115
## 13613 Queens Private room 45
## 13614 Brooklyn Private room 38
## 13615 Manhattan Private room 85
## 13616 Manhattan Entire home/apt 275
## 13617 Queens Entire home/apt 125
## 13618 Manhattan Entire home/apt 250
## 13619 Queens Private room 79
## 13620 Manhattan Private room 105
## 13621 Manhattan Entire home/apt 100
## 13622 Manhattan Private room 70
## 13623 Manhattan Private room 65
## 13624 Brooklyn Entire home/apt 60
## 13625 Brooklyn Private room 50
## 13626 Brooklyn Private room 35
## 13627 Manhattan Entire home/apt 180
## 13628 Brooklyn Entire home/apt 70
## 13629 Manhattan Entire home/apt 220
## 13630 Manhattan Entire home/apt 135
## 13631 Manhattan Entire home/apt 140
## 13632 Brooklyn Private room 175
## 13633 Manhattan Entire home/apt 180
## 13634 Manhattan Entire home/apt 165
## 13635 Queens Private room 55
## 13636 Manhattan Entire home/apt 100
## 13637 Manhattan Private room 91
## 13638 Manhattan Private room 175
## 13639 Brooklyn Private room 70
## 13640 Brooklyn Entire home/apt 143
## 13641 Brooklyn Private room 55
## 13642 Manhattan Entire home/apt 110
## 13643 Brooklyn Private room 30
## 13644 Queens Private room 90
## 13645 Manhattan Private room 199
## 13646 Manhattan Private room 99
## 13647 Manhattan Private room 40
## 13648 Manhattan Entire home/apt 235
## 13649 Queens Private room 62
## 13650 Queens Private room 85
## 13651 Queens Entire home/apt 60
## 13652 Queens Private room 45
## 13653 Manhattan Entire home/apt 155
## 13654 Manhattan Entire home/apt 135
## 13655 Brooklyn Entire home/apt 165
## 13656 Manhattan Private room 295
## 13657 Manhattan Private room 77
## 13658 Brooklyn Private room 43
## 13659 Manhattan Entire home/apt 230
## 13660 Brooklyn Entire home/apt 70
## 13661 Brooklyn Entire home/apt 105
## 13662 Brooklyn Private room 54
## 13663 Brooklyn Entire home/apt 199
## 13664 Brooklyn Entire home/apt 145
## 13665 Brooklyn Private room 97
## 13666 Brooklyn Private room 55
## 13667 Manhattan Entire home/apt 285
## 13668 Brooklyn Private room 185
## 13669 Manhattan Private room 200
## 13670 Manhattan Private room 300
## 13671 Brooklyn Entire home/apt 255
## 13672 Brooklyn Entire home/apt 500
## 13673 Brooklyn Private room 75
## 13674 Brooklyn Private room 150
## 13675 Brooklyn Private room 64
## 13676 Manhattan Entire home/apt 250
## 13677 Manhattan Private room 135
## 13678 Brooklyn Private room 70
## 13679 Brooklyn Entire home/apt 295
## 13680 Manhattan Entire home/apt 135
## 13681 Manhattan Shared room 50
## 13682 Queens Entire home/apt 69
## 13683 Staten Island Entire home/apt 299
## 13684 Queens Entire home/apt 204
## 13685 Brooklyn Private room 80
## 13686 Manhattan Private room 125
## 13687 Brooklyn Entire home/apt 69
## 13688 Manhattan Entire home/apt 139
## 13689 Brooklyn Private room 149
## 13690 Queens Entire home/apt 100
## 13691 Manhattan Entire home/apt 360
## 13692 Brooklyn Private room 99
## 13693 Queens Private room 60
## 13694 Manhattan Private room 60
## 13695 Queens Entire home/apt 275
## 13696 Brooklyn Private room 65
## 13697 Brooklyn Entire home/apt 149
## 13698 Manhattan Private room 60
## 13699 Brooklyn Entire home/apt 120
## 13700 Manhattan Private room 35
## 13701 Brooklyn Entire home/apt 261
## 13702 Brooklyn Entire home/apt 99
## 13703 Brooklyn Private room 49
## 13704 Brooklyn Private room 65
## 13705 Brooklyn Entire home/apt 150
## 13706 Manhattan Private room 65
## 13707 Brooklyn Private room 60
## 13708 Brooklyn Private room 69
## 13709 Brooklyn Entire home/apt 150
## 13710 Brooklyn Private room 37
## 13711 Queens Entire home/apt 100
## 13712 Brooklyn Entire home/apt 99
## 13713 Manhattan Entire home/apt 160
## 13714 Manhattan Entire home/apt 225
## 13715 Brooklyn Private room 51
## 13716 Manhattan Entire home/apt 250
## 13717 Queens Private room 66
## 13718 Manhattan Private room 65
## 13719 Brooklyn Entire home/apt 120
## 13720 Manhattan Shared room 125
## 13721 Manhattan Entire home/apt 260
## 13722 Brooklyn Entire home/apt 94
## 13723 Manhattan Private room 79
## 13724 Brooklyn Private room 49
## 13725 Manhattan Entire home/apt 1731
## 13726 Brooklyn Private room 99
## 13727 Brooklyn Private room 41
## 13728 Manhattan Private room 90
## 13729 Manhattan Entire home/apt 69
## 13730 Manhattan Private room 81
## 13731 Brooklyn Entire home/apt 113
## 13732 Bronx Private room 35
## 13733 Manhattan Entire home/apt 85
## 13734 Brooklyn Private room 45
## 13735 Brooklyn Entire home/apt 200
## 13736 Manhattan Entire home/apt 100
## 13737 Bronx Entire home/apt 37
## 13738 Queens Entire home/apt 180
## 13739 Brooklyn Private room 105
## 13740 Manhattan Entire home/apt 200
## 13741 Brooklyn Private room 45
## 13742 Manhattan Private room 80
## 13743 Manhattan Entire home/apt 122
## 13744 Manhattan Entire home/apt 400
## 13745 Brooklyn Private room 55
## 13746 Manhattan Entire home/apt 110
## 13747 Manhattan Entire home/apt 110
## 13748 Manhattan Entire home/apt 135
## 13749 Manhattan Private room 45
## 13750 Manhattan Entire home/apt 145
## 13751 Brooklyn Private room 37
## 13752 Brooklyn Entire home/apt 90
## 13753 Manhattan Entire home/apt 305
## 13754 Manhattan Shared room 100
## 13755 Manhattan Entire home/apt 180
## 13756 Manhattan Private room 90
## 13757 Manhattan Entire home/apt 135
## 13758 Brooklyn Private room 49
## 13759 Brooklyn Entire home/apt 95
## 13760 Brooklyn Entire home/apt 155
## 13761 Brooklyn Private room 47
## 13762 Brooklyn Entire home/apt 120
## 13763 Queens Private room 38
## 13764 Brooklyn Entire home/apt 199
## 13765 Manhattan Private room 87
## 13766 Queens Private room 80
## 13767 Queens Private room 40
## 13768 Brooklyn Entire home/apt 155
## 13769 Brooklyn Entire home/apt 125
## 13770 Brooklyn Private room 81
## 13771 Brooklyn Entire home/apt 129
## 13772 Manhattan Entire home/apt 83
## 13773 Manhattan Private room 70
## 13774 Brooklyn Entire home/apt 130
## 13775 Brooklyn Entire home/apt 325
## 13776 Manhattan Private room 30
## 13777 Queens Private room 50
## 13778 Queens Private room 50
## 13779 Manhattan Private room 45
## 13780 Manhattan Entire home/apt 200
## 13781 Manhattan Private room 600
## 13782 Brooklyn Private room 80
## 13783 Brooklyn Private room 35
## 13784 Brooklyn Private room 75
## 13785 Queens Private room 30
## 13786 Manhattan Entire home/apt 135
## 13787 Brooklyn Entire home/apt 125
## 13788 Brooklyn Private room 62
## 13789 Brooklyn Private room 1002
## 13790 Brooklyn Entire home/apt 100
## 13791 Queens Private room 50
## 13792 Brooklyn Entire home/apt 80
## 13793 Manhattan Private room 75
## 13794 Brooklyn Entire home/apt 60
## 13795 Brooklyn Private room 75
## 13796 Brooklyn Entire home/apt 65
## 13797 Manhattan Private room 80
## 13798 Brooklyn Private room 130
## 13799 Brooklyn Entire home/apt 333
## 13800 Manhattan Entire home/apt 120
## 13801 Manhattan Entire home/apt 144
## 13802 Brooklyn Private room 149
## 13803 Brooklyn Entire home/apt 150
## 13804 Brooklyn Shared room 60
## 13805 Brooklyn Entire home/apt 190
## 13806 Brooklyn Entire home/apt 100
## 13807 Brooklyn Entire home/apt 150
## 13808 Brooklyn Entire home/apt 170
## 13809 Queens Private room 65
## 13810 Manhattan Entire home/apt 90
## 13811 Brooklyn Private room 55
## 13812 Manhattan Entire home/apt 250
## 13813 Brooklyn Private room 80
## 13814 Brooklyn Entire home/apt 319
## 13815 Manhattan Entire home/apt 120
## 13816 Staten Island Private room 50
## 13817 Manhattan Private room 100
## 13818 Queens Private room 60
## 13819 Brooklyn Entire home/apt 175
## 13820 Brooklyn Private room 67
## 13821 Manhattan Entire home/apt 140
## 13822 Brooklyn Private room 90
## 13823 Brooklyn Entire home/apt 165
## 13824 Manhattan Private room 90
## 13825 Manhattan Entire home/apt 150
## 13826 Brooklyn Private room 115
## 13827 Brooklyn Private room 65
## 13828 Brooklyn Private room 70
## 13829 Manhattan Entire home/apt 219
## 13830 Brooklyn Private room 45
## 13831 Brooklyn Private room 55
## 13832 Manhattan Private room 80
## 13833 Manhattan Private room 45
## 13834 Brooklyn Private room 65
## 13835 Manhattan Private room 47
## 13836 Manhattan Private room 65
## 13837 Manhattan Entire home/apt 229
## 13838 Brooklyn Entire home/apt 160
## 13839 Manhattan Entire home/apt 500
## 13840 Brooklyn Entire home/apt 120
## 13841 Manhattan Private room 139
## 13842 Manhattan Entire home/apt 400
## 13843 Brooklyn Private room 45
## 13844 Manhattan Private room 87
## 13845 Brooklyn Private room 50
## 13846 Manhattan Entire home/apt 115
## 13847 Brooklyn Private room 51
## 13848 Brooklyn Private room 43
## 13849 Brooklyn Private room 70
## 13850 Manhattan Entire home/apt 125
## 13851 Brooklyn Private room 55
## 13852 Brooklyn Private room 50
## 13853 Brooklyn Private room 60
## 13854 Bronx Entire home/apt 88
## 13855 Bronx Entire home/apt 85
## 13856 Brooklyn Entire home/apt 275
## 13857 Brooklyn Private room 65
## 13858 Brooklyn Entire home/apt 135
## 13859 Brooklyn Private room 40
## 13860 Manhattan Private room 85
## 13861 Manhattan Private room 85
## 13862 Manhattan Private room 85
## 13863 Brooklyn Entire home/apt 120
## 13864 Manhattan Entire home/apt 220
## 13865 Brooklyn Private room 80
## 13866 Manhattan Entire home/apt 275
## 13867 Queens Entire home/apt 125
## 13868 Manhattan Shared room 46
## 13869 Manhattan Entire home/apt 65
## 13870 Brooklyn Private room 58
## 13871 Queens Private room 60
## 13872 Queens Entire home/apt 115
## 13873 Brooklyn Private room 65
## 13874 Queens Private room 49
## 13875 Brooklyn Entire home/apt 70
## 13876 Manhattan Private room 95
## 13877 Manhattan Entire home/apt 196
## 13878 Manhattan Private room 80
## 13879 Staten Island Private room 35
## 13880 Manhattan Private room 82
## 13881 Manhattan Entire home/apt 136
## 13882 Manhattan Private room 75
## 13883 Manhattan Entire home/apt 68
## 13884 Brooklyn Private room 64
## 13885 Brooklyn Entire home/apt 100
## 13886 Brooklyn Private room 65
## 13887 Brooklyn Private room 350
## 13888 Manhattan Entire home/apt 450
## 13889 Manhattan Private room 99
## 13890 Queens Entire home/apt 195
## 13891 Brooklyn Private room 48
## 13892 Brooklyn Entire home/apt 85
## 13893 Brooklyn Private room 70
## 13894 Manhattan Entire home/apt 180
## 13895 Manhattan Private room 90
## 13896 Brooklyn Entire home/apt 175
## 13897 Brooklyn Entire home/apt 245
## 13898 Brooklyn Private room 45
## 13899 Queens Private room 34
## 13900 Manhattan Entire home/apt 125
## 13901 Brooklyn Entire home/apt 75
## 13902 Brooklyn Entire home/apt 125
## 13903 Manhattan Entire home/apt 200
## 13904 Queens Entire home/apt 100
## 13905 Manhattan Entire home/apt 70
## 13906 Brooklyn Private room 45
## 13907 Brooklyn Entire home/apt 154
## 13908 Manhattan Entire home/apt 300
## 13909 Manhattan Entire home/apt 250
## 13910 Manhattan Entire home/apt 140
## 13911 Manhattan Private room 59
## 13912 Manhattan Private room 80
## 13913 Brooklyn Entire home/apt 230
## 13914 Manhattan Entire home/apt 150
## 13915 Queens Private room 45
## 13916 Brooklyn Entire home/apt 144
## 13917 Brooklyn Private room 44
## 13918 Brooklyn Entire home/apt 75
## 13919 Brooklyn Private room 45
## 13920 Manhattan Private room 129
## 13921 Manhattan Private room 75
## 13922 Brooklyn Entire home/apt 220
## 13923 Brooklyn Entire home/apt 125
## 13924 Brooklyn Entire home/apt 150
## 13925 Manhattan Private room 63
## 13926 Manhattan Entire home/apt 120
## 13927 Brooklyn Private room 45
## 13928 Brooklyn Entire home/apt 120
## 13929 Manhattan Entire home/apt 125
## 13930 Manhattan Entire home/apt 450
## 13931 Manhattan Entire home/apt 1250
## 13932 Brooklyn Private room 36
## 13933 Brooklyn Private room 48
## 13934 Brooklyn Private room 50
## 13935 Queens Private room 59
## 13936 Brooklyn Private room 39
## 13937 Manhattan Entire home/apt 70
## 13938 Brooklyn Entire home/apt 150
## 13939 Brooklyn Entire home/apt 100
## 13940 Brooklyn Entire home/apt 80
## 13941 Brooklyn Entire home/apt 125
## 13942 Manhattan Entire home/apt 180
## 13943 Brooklyn Private room 45
## 13944 Manhattan Entire home/apt 185
## 13945 Brooklyn Private room 60
## 13946 Brooklyn Private room 40
## 13947 Brooklyn Private room 80
## 13948 Brooklyn Entire home/apt 85
## 13949 Brooklyn Entire home/apt 135
## 13950 Manhattan Private room 70
## 13951 Brooklyn Entire home/apt 600
## 13952 Manhattan Private room 110
## 13953 Brooklyn Entire home/apt 105
## 13954 Manhattan Private room 100
## 13955 Brooklyn Private room 65
## 13956 Manhattan Entire home/apt 125
## 13957 Brooklyn Private room 50
## 13958 Brooklyn Entire home/apt 360
## 13959 Brooklyn Entire home/apt 160
## 13960 Manhattan Entire home/apt 225
## 13961 Brooklyn Private room 105
## 13962 Manhattan Entire home/apt 175
## 13963 Brooklyn Entire home/apt 130
## 13964 Brooklyn Shared room 79
## 13965 Brooklyn Private room 90
## 13966 Brooklyn Entire home/apt 283
## 13967 Queens Private room 50
## 13968 Staten Island Entire home/apt 100
## 13969 Brooklyn Private room 70
## 13970 Brooklyn Entire home/apt 199
## 13971 Brooklyn Private room 45
## 13972 Manhattan Private room 325
## 13973 Manhattan Entire home/apt 275
## 13974 Manhattan Entire home/apt 130
## 13975 Manhattan Entire home/apt 179
## 13976 Manhattan Private room 80
## 13977 Manhattan Private room 99
## 13978 Manhattan Entire home/apt 135
## 13979 Brooklyn Entire home/apt 145
## 13980 Brooklyn Entire home/apt 69
## 13981 Brooklyn Entire home/apt 89
## 13982 Manhattan Private room 75
## 13983 Manhattan Shared room 200
## 13984 Queens Private room 55
## 13985 Manhattan Entire home/apt 80
## 13986 Brooklyn Entire home/apt 75
## 13987 Manhattan Entire home/apt 90
## 13988 Brooklyn Entire home/apt 98
## 13989 Manhattan Entire home/apt 70
## 13990 Manhattan Entire home/apt 132
## 13991 Brooklyn Private room 50
## 13992 Manhattan Entire home/apt 250
## 13993 Manhattan Shared room 199
## 13994 Manhattan Entire home/apt 99
## 13995 Brooklyn Private room 77
## 13996 Manhattan Entire home/apt 100
## 13997 Queens Entire home/apt 130
## 13998 Brooklyn Private room 60
## 13999 Manhattan Entire home/apt 200
## 14000 Brooklyn Entire home/apt 117
## 14001 Brooklyn Entire home/apt 89
## 14002 Brooklyn Private room 44
## 14003 Manhattan Private room 70
## 14004 Manhattan Private room 39
## 14005 Manhattan Entire home/apt 150
## 14006 Manhattan Private room 60
## 14007 Brooklyn Entire home/apt 75
## 14008 Manhattan Private room 89
## 14009 Manhattan Entire home/apt 200
## 14010 Brooklyn Entire home/apt 124
## 14011 Brooklyn Private room 60
## 14012 Manhattan Private room 70
## 14013 Brooklyn Entire home/apt 100
## 14014 Manhattan Entire home/apt 117
## 14015 Manhattan Private room 100
## 14016 Brooklyn Private room 50
## 14017 Brooklyn Private room 75
## 14018 Brooklyn Private room 75
## 14019 Brooklyn Entire home/apt 75
## 14020 Manhattan Entire home/apt 150
## 14021 Brooklyn Private room 65
## 14022 Queens Shared room 22
## 14023 Manhattan Entire home/apt 120
## 14024 Manhattan Entire home/apt 320
## 14025 Queens Private room 65
## 14026 Brooklyn Entire home/apt 95
## 14027 Manhattan Entire home/apt 115
## 14028 Manhattan Entire home/apt 120
## 14029 Manhattan Private room 150
## 14030 Brooklyn Private room 40
## 14031 Brooklyn Entire home/apt 425
## 14032 Brooklyn Entire home/apt 75
## 14033 Brooklyn Entire home/apt 150
## 14034 Brooklyn Private room 49
## 14035 Manhattan Entire home/apt 165
## 14036 Manhattan Entire home/apt 200
## 14037 Manhattan Entire home/apt 175
## 14038 Brooklyn Private room 97
## 14039 Manhattan Entire home/apt 270
## 14040 Brooklyn Entire home/apt 155
## 14041 Brooklyn Private room 55
## 14042 Manhattan Private room 80
## 14043 Bronx Private room 70
## 14044 Queens Private room 35
## 14045 Manhattan Entire home/apt 110
## 14046 Manhattan Entire home/apt 129
## 14047 Brooklyn Private room 45
## 14048 Manhattan Private room 50
## 14049 Brooklyn Private room 105
## 14050 Brooklyn Private room 45
## 14051 Manhattan Private room 83
## 14052 Manhattan Shared room 40
## 14053 Manhattan Private room 85
## 14054 Manhattan Entire home/apt 400
## 14055 Manhattan Private room 64
## 14056 Manhattan Entire home/apt 130
## 14057 Manhattan Private room 65
## 14058 Manhattan Entire home/apt 200
## 14059 Queens Entire home/apt 200
## 14060 Brooklyn Entire home/apt 120
## 14061 Queens Private room 60
## 14062 Manhattan Private room 60
## 14063 Manhattan Entire home/apt 80
## 14064 Manhattan Private room 90
## 14065 Brooklyn Entire home/apt 125
## 14066 Brooklyn Private room 40
## 14067 Manhattan Private room 80
## 14068 Manhattan Entire home/apt 100
## 14069 Brooklyn Entire home/apt 50
## 14070 Brooklyn Private room 37
## 14071 Manhattan Entire home/apt 200
## 14072 Brooklyn Private room 65
## 14073 Manhattan Private room 130
## 14074 Brooklyn Entire home/apt 95
## 14075 Brooklyn Private room 54
## 14076 Manhattan Entire home/apt 82
## 14077 Manhattan Entire home/apt 105
## 14078 Brooklyn Shared room 30
## 14079 Manhattan Entire home/apt 169
## 14080 Manhattan Private room 45
## 14081 Manhattan Entire home/apt 100
## 14082 Queens Entire home/apt 75
## 14083 Manhattan Entire home/apt 219
## 14084 Manhattan Private room 75
## 14085 Brooklyn Shared room 25
## 14086 Manhattan Entire home/apt 250
## 14087 Manhattan Entire home/apt 149
## 14088 Brooklyn Private room 33
## 14089 Queens Private room 90
## 14090 Brooklyn Private room 87
## 14091 Brooklyn Private room 60
## 14092 Brooklyn Entire home/apt 99
## 14093 Brooklyn Entire home/apt 225
## 14094 Manhattan Private room 45
## 14095 Brooklyn Entire home/apt 129
## 14096 Manhattan Entire home/apt 325
## 14097 Brooklyn Entire home/apt 120
## 14098 Bronx Private room 35
## 14099 Manhattan Entire home/apt 200
## 14100 Brooklyn Entire home/apt 100
## 14101 Brooklyn Entire home/apt 250
## 14102 Brooklyn Private room 122
## 14103 Manhattan Entire home/apt 149
## 14104 Manhattan Entire home/apt 295
## 14105 Brooklyn Entire home/apt 120
## 14106 Manhattan Entire home/apt 150
## 14107 Brooklyn Private room 60
## 14108 Brooklyn Entire home/apt 110
## 14109 Manhattan Entire home/apt 245
## 14110 Brooklyn Private room 100
## 14111 Brooklyn Entire home/apt 75
## 14112 Manhattan Entire home/apt 99
## 14113 Brooklyn Entire home/apt 205
## 14114 Manhattan Entire home/apt 110
## 14115 Brooklyn Private room 33
## 14116 Brooklyn Entire home/apt 98
## 14117 Manhattan Entire home/apt 133
## 14118 Brooklyn Private room 45
## 14119 Brooklyn Private room 65
## 14120 Staten Island Private room 110
## 14121 Brooklyn Private room 80
## 14122 Brooklyn Entire home/apt 150
## 14123 Brooklyn Entire home/apt 110
## 14124 Brooklyn Entire home/apt 149
## 14125 Manhattan Entire home/apt 400
## 14126 Manhattan Private room 150
## 14127 Brooklyn Private room 35
## 14128 Manhattan Private room 36
## 14129 Manhattan Private room 45
## 14130 Brooklyn Private room 65
## 14131 Manhattan Private room 90
## 14132 Brooklyn Private room 68
## 14133 Brooklyn Private room 36
## 14134 Brooklyn Private room 34
## 14135 Manhattan Shared room 80
## 14136 Brooklyn Entire home/apt 135
## 14137 Manhattan Private room 128
## 14138 Manhattan Private room 40
## 14139 Queens Private room 40
## 14140 Brooklyn Entire home/apt 155
## 14141 Queens Private room 50
## 14142 Brooklyn Private room 40
## 14143 Brooklyn Entire home/apt 250
## 14144 Manhattan Entire home/apt 295
## 14145 Queens Entire home/apt 145
## 14146 Manhattan Entire home/apt 199
## 14147 Brooklyn Entire home/apt 140
## 14148 Manhattan Entire home/apt 60
## 14149 Manhattan Entire home/apt 175
## 14150 Manhattan Entire home/apt 150
## 14151 Queens Private room 89
## 14152 Brooklyn Private room 38
## 14153 Brooklyn Entire home/apt 350
## 14154 Manhattan Entire home/apt 105
## 14155 Brooklyn Entire home/apt 185
## 14156 Manhattan Entire home/apt 195
## 14157 Manhattan Entire home/apt 135
## 14158 Brooklyn Private room 60
## 14159 Brooklyn Entire home/apt 120
## 14160 Brooklyn Private room 34
## 14161 Brooklyn Private room 45
## 14162 Manhattan Entire home/apt 199
## 14163 Manhattan Entire home/apt 125
## 14164 Bronx Entire home/apt 109
## 14165 Brooklyn Entire home/apt 250
## 14166 Brooklyn Entire home/apt 150
## 14167 Manhattan Entire home/apt 1100
## 14168 Manhattan Private room 52
## 14169 Manhattan Private room 119
## 14170 Manhattan Private room 70
## 14171 Manhattan Private room 100
## 14172 Manhattan Entire home/apt 250
## 14173 Manhattan Entire home/apt 150
## 14174 Manhattan Entire home/apt 150
## 14175 Brooklyn Entire home/apt 100
## 14176 Queens Private room 30
## 14177 Manhattan Shared room 35
## 14178 Manhattan Entire home/apt 200
## 14179 Manhattan Private room 99
## 14180 Brooklyn Private room 40
## 14181 Manhattan Entire home/apt 170
## 14182 Manhattan Entire home/apt 399
## 14183 Manhattan Entire home/apt 87
## 14184 Manhattan Private room 75
## 14185 Brooklyn Private room 55
## 14186 Brooklyn Private room 40
## 14187 Brooklyn Private room 55
## 14188 Manhattan Entire home/apt 140
## 14189 Queens Private room 71
## 14190 Brooklyn Entire home/apt 177
## 14191 Manhattan Entire home/apt 395
## 14192 Manhattan Private room 80
## 14193 Manhattan Entire home/apt 198
## 14194 Manhattan Entire home/apt 199
## 14195 Queens Entire home/apt 97
## 14196 Brooklyn Entire home/apt 162
## 14197 Bronx Entire home/apt 99
## 14198 Brooklyn Entire home/apt 80
## 14199 Manhattan Private room 65
## 14200 Manhattan Private room 150
## 14201 Brooklyn Private room 35
## 14202 Brooklyn Private room 30
## 14203 Manhattan Private room 50
## 14204 Manhattan Private room 40
## 14205 Manhattan Entire home/apt 259
## 14206 Manhattan Private room 125
## 14207 Brooklyn Shared room 85
## 14208 Manhattan Entire home/apt 160
## 14209 Brooklyn Entire home/apt 450
## 14210 Brooklyn Entire home/apt 90
## 14211 Queens Entire home/apt 140
## 14212 Manhattan Entire home/apt 265
## 14213 Manhattan Private room 85
## 14214 Manhattan Private room 79
## 14215 Brooklyn Entire home/apt 76
## 14216 Brooklyn Entire home/apt 125
## 14217 Brooklyn Entire home/apt 150
## 14218 Queens Entire home/apt 175
## 14219 Manhattan Entire home/apt 100
## 14220 Queens Entire home/apt 90
## 14221 Brooklyn Entire home/apt 92
## 14222 Brooklyn Private room 39
## 14223 Queens Private room 33
## 14224 Brooklyn Private room 64
## 14225 Manhattan Entire home/apt 90
## 14226 Manhattan Entire home/apt 200
## 14227 Manhattan Entire home/apt 150
## 14228 Manhattan Entire home/apt 125
## 14229 Manhattan Entire home/apt 369
## 14230 Manhattan Private room 60
## 14231 Brooklyn Private room 65
## 14232 Queens Private room 70
## 14233 Brooklyn Entire home/apt 162
## 14234 Manhattan Entire home/apt 250
## 14235 Brooklyn Private room 75
## 14236 Bronx Entire home/apt 95
## 14237 Brooklyn Private room 75
## 14238 Queens Private room 60
## 14239 Manhattan Entire home/apt 189
## 14240 Brooklyn Private room 66
## 14241 Brooklyn Private room 100
## 14242 Brooklyn Entire home/apt 190
## 14243 Brooklyn Private room 50
## 14244 Manhattan Entire home/apt 814
## 14245 Manhattan Private room 100
## 14246 Brooklyn Entire home/apt 125
## 14247 Brooklyn Private room 90
## 14248 Brooklyn Entire home/apt 250
## 14249 Queens Entire home/apt 115
## 14250 Manhattan Entire home/apt 300
## 14251 Brooklyn Entire home/apt 145
## 14252 Manhattan Private room 65
## 14253 Manhattan Entire home/apt 150
## 14254 Brooklyn Private room 50
## 14255 Manhattan Entire home/apt 80
## 14256 Manhattan Entire home/apt 200
## 14257 Manhattan Private room 69
## 14258 Manhattan Entire home/apt 150
## 14259 Manhattan Entire home/apt 79
## 14260 Brooklyn Entire home/apt 219
## 14261 Manhattan Entire home/apt 199
## 14262 Manhattan Entire home/apt 450
## 14263 Queens Private room 27
## 14264 Manhattan Entire home/apt 550
## 14265 Manhattan Entire home/apt 120
## 14266 Manhattan Entire home/apt 90
## 14267 Manhattan Private room 70
## 14268 Manhattan Private room 70
## 14269 Brooklyn Entire home/apt 110
## 14270 Brooklyn Entire home/apt 100
## 14271 Manhattan Private room 150
## 14272 Manhattan Entire home/apt 200
## 14273 Manhattan Entire home/apt 145
## 14274 Brooklyn Private room 79
## 14275 Manhattan Private room 95
## 14276 Queens Private room 55
## 14277 Brooklyn Entire home/apt 207
## 14278 Manhattan Private room 83
## 14279 Manhattan Private room 50
## 14280 Brooklyn Private room 50
## 14281 Manhattan Entire home/apt 200
## 14282 Manhattan Private room 100
## 14283 Brooklyn Entire home/apt 119
## 14284 Brooklyn Entire home/apt 175
## 14285 Brooklyn Private room 49
## 14286 Brooklyn Private room 45
## 14287 Manhattan Entire home/apt 110
## 14288 Brooklyn Private room 70
## 14289 Manhattan Entire home/apt 500
## 14290 Brooklyn Entire home/apt 180
## 14291 Brooklyn Entire home/apt 145
## 14292 Brooklyn Private room 60
## 14293 Manhattan Entire home/apt 550
## 14294 Manhattan Private room 57
## 14295 Brooklyn Entire home/apt 98
## 14296 Manhattan Entire home/apt 120
## 14297 Queens Entire home/apt 100
## 14298 Manhattan Private room 90
## 14299 Brooklyn Entire home/apt 85
## 14300 Brooklyn Entire home/apt 120
## 14301 Manhattan Entire home/apt 180
## 14302 Brooklyn Private room 149
## 14303 Manhattan Entire home/apt 90
## 14304 Manhattan Entire home/apt 250
## 14305 Queens Private room 50
## 14306 Manhattan Private room 550
## 14307 Manhattan Private room 50
## 14308 Brooklyn Entire home/apt 90
## 14309 Brooklyn Entire home/apt 165
## 14310 Brooklyn Private room 70
## 14311 Bronx Entire home/apt 90
## 14312 Brooklyn Entire home/apt 109
## 14313 Brooklyn Entire home/apt 96
## 14314 Brooklyn Entire home/apt 390
## 14315 Brooklyn Entire home/apt 78
## 14316 Brooklyn Private room 50
## 14317 Brooklyn Private room 200
## 14318 Manhattan Private room 112
## 14319 Manhattan Entire home/apt 117
## 14320 Brooklyn Private room 50
## 14321 Brooklyn Entire home/apt 200
## 14322 Brooklyn Entire home/apt 185
## 14323 Bronx Entire home/apt 85
## 14324 Manhattan Entire home/apt 235
## 14325 Manhattan Entire home/apt 75
## 14326 Manhattan Entire home/apt 180
## 14327 Manhattan Entire home/apt 100
## 14328 Brooklyn Private room 75
## 14329 Brooklyn Entire home/apt 200
## 14330 Manhattan Private room 125
## 14331 Manhattan Entire home/apt 130
## 14332 Queens Entire home/apt 99
## 14333 Brooklyn Private room 40
## 14334 Manhattan Private room 120
## 14335 Brooklyn Entire home/apt 350
## 14336 Queens Private room 84
## 14337 Manhattan Entire home/apt 83
## 14338 Brooklyn Entire home/apt 125
## 14339 Brooklyn Entire home/apt 110
## 14340 Brooklyn Private room 38
## 14341 Manhattan Entire home/apt 138
## 14342 Brooklyn Entire home/apt 100
## 14343 Manhattan Private room 150
## 14344 Manhattan Private room 90
## 14345 Manhattan Entire home/apt 154
## 14346 Brooklyn Private room 75
## 14347 Manhattan Entire home/apt 110
## 14348 Queens Private room 129
## 14349 Brooklyn Entire home/apt 190
## 14350 Manhattan Entire home/apt 185
## 14351 Manhattan Private room 108
## 14352 Manhattan Private room 98
## 14353 Brooklyn Private room 39
## 14354 Brooklyn Entire home/apt 145
## 14355 Manhattan Entire home/apt 125
## 14356 Brooklyn Private room 85
## 14357 Bronx Entire home/apt 89
## 14358 Manhattan Entire home/apt 245
## 14359 Manhattan Entire home/apt 230
## 14360 Brooklyn Private room 43
## 14361 Brooklyn Private room 40
## 14362 Manhattan Private room 200
## 14363 Manhattan Private room 40
## 14364 Brooklyn Entire home/apt 85
## 14365 Brooklyn Private room 50
## 14366 Manhattan Entire home/apt 75
## 14367 Manhattan Entire home/apt 255
## 14368 Manhattan Entire home/apt 199
## 14369 Brooklyn Private room 70
## 14370 Brooklyn Private room 33
## 14371 Manhattan Private room 90
## 14372 Manhattan Entire home/apt 150
## 14373 Manhattan Entire home/apt 229
## 14374 Brooklyn Private room 34
## 14375 Manhattan Entire home/apt 115
## 14376 Brooklyn Entire home/apt 171
## 14377 Queens Private room 50
## 14378 Manhattan Private room 70
## 14379 Queens Private room 40
## 14380 Queens Private room 37
## 14381 Queens Shared room 1800
## 14382 Brooklyn Private room 36
## 14383 Brooklyn Private room 65
## 14384 Manhattan Private room 120
## 14385 Manhattan Entire home/apt 135
## 14386 Manhattan Entire home/apt 2000
## 14387 Queens Entire home/apt 70
## 14388 Manhattan Entire home/apt 160
## 14389 Manhattan Private room 70
## 14390 Manhattan Entire home/apt 140
## 14391 Brooklyn Private room 69
## 14392 Manhattan Entire home/apt 125
## 14393 Manhattan Entire home/apt 700
## 14394 Brooklyn Private room 64
## 14395 Brooklyn Entire home/apt 250
## 14396 Manhattan Private room 30
## 14397 Bronx Private room 100
## 14398 Brooklyn Private room 40
## 14399 Manhattan Private room 200
## 14400 Brooklyn Private room 90
## 14401 Manhattan Entire home/apt 145
## 14402 Manhattan Entire home/apt 170
## 14403 Brooklyn Entire home/apt 70
## 14404 Manhattan Private room 70
## 14405 Manhattan Entire home/apt 168
## 14406 Brooklyn Entire home/apt 195
## 14407 Manhattan Entire home/apt 250
## 14408 Manhattan Private room 55
## 14409 Brooklyn Entire home/apt 75
## 14410 Brooklyn Private room 55
## 14411 Brooklyn Private room 75
## 14412 Brooklyn Private room 50
## 14413 Manhattan Private room 85
## 14414 Brooklyn Private room 28
## 14415 Manhattan Private room 60
## 14416 Brooklyn Private room 70
## 14417 Manhattan Entire home/apt 165
## 14418 Manhattan Entire home/apt 145
## 14419 Manhattan Entire home/apt 125
## 14420 Manhattan Entire home/apt 250
## 14421 Brooklyn Entire home/apt 69
## 14422 Manhattan Entire home/apt 140
## 14423 Brooklyn Private room 250
## 14424 Manhattan Entire home/apt 278
## 14425 Manhattan Entire home/apt 285
## 14426 Queens Private room 60
## 14427 Brooklyn Private room 30
## 14428 Brooklyn Private room 65
## 14429 Manhattan Shared room 29
## 14430 Manhattan Private room 65
## 14431 Bronx Private room 45
## 14432 Manhattan Entire home/apt 130
## 14433 Brooklyn Private room 75
## 14434 Brooklyn Private room 50
## 14435 Brooklyn Entire home/apt 160
## 14436 Brooklyn Private room 65
## 14437 Manhattan Private room 39
## 14438 Manhattan Entire home/apt 145
## 14439 Brooklyn Entire home/apt 195
## 14440 Manhattan Private room 79
## 14441 Brooklyn Private room 50
## 14442 Manhattan Private room 35
## 14443 Manhattan Private room 325
## 14444 Manhattan Private room 40
## 14445 Brooklyn Entire home/apt 95
## 14446 Manhattan Private room 105
## 14447 Manhattan Private room 43
## 14448 Brooklyn Entire home/apt 225
## 14449 Manhattan Entire home/apt 175
## 14450 Brooklyn Private room 75
## 14451 Brooklyn Entire home/apt 94
## 14452 Brooklyn Private room 100
## 14453 Manhattan Entire home/apt 200
## 14454 Manhattan Entire home/apt 95
## 14455 Manhattan Shared room 65
## 14456 Brooklyn Entire home/apt 349
## 14457 Brooklyn Private room 41
## 14458 Manhattan Entire home/apt 200
## 14459 Brooklyn Entire home/apt 85
## 14460 Manhattan Entire home/apt 1200
## 14461 Brooklyn Private room 150
## 14462 Manhattan Private room 65
## 14463 Manhattan Private room 110
## 14464 Manhattan Private room 75
## 14465 Manhattan Private room 80
## 14466 Brooklyn Private room 45
## 14467 Brooklyn Entire home/apt 83
## 14468 Bronx Private room 40
## 14469 Brooklyn Private room 79
## 14470 Brooklyn Entire home/apt 70
## 14471 Manhattan Entire home/apt 177
## 14472 Brooklyn Private room 60
## 14473 Manhattan Entire home/apt 190
## 14474 Manhattan Entire home/apt 240
## 14475 Manhattan Entire home/apt 150
## 14476 Brooklyn Private room 31
## 14477 Manhattan Entire home/apt 110
## 14478 Brooklyn Entire home/apt 120
## 14479 Brooklyn Entire home/apt 176
## 14480 Manhattan Entire home/apt 199
## 14481 Brooklyn Entire home/apt 200
## 14482 Brooklyn Private room 70
## 14483 Manhattan Private room 65
## 14484 Brooklyn Private room 60
## 14485 Manhattan Entire home/apt 140
## 14486 Brooklyn Entire home/apt 150
## 14487 Brooklyn Entire home/apt 200
## 14488 Brooklyn Private room 55
## 14489 Manhattan Entire home/apt 200
## 14490 Manhattan Private room 100
## 14491 Queens Entire home/apt 112
## 14492 Brooklyn Private room 45
## 14493 Brooklyn Private room 75
## 14494 Brooklyn Private room 45
## 14495 Manhattan Private room 499
## 14496 Brooklyn Entire home/apt 160
## 14497 Queens Entire home/apt 100
## 14498 Manhattan Entire home/apt 175
## 14499 Manhattan Private room 80
## 14500 Brooklyn Private room 60
## 14501 Manhattan Entire home/apt 175
## 14502 Queens Private room 65
## 14503 Manhattan Entire home/apt 159
## 14504 Queens Entire home/apt 118
## 14505 Queens Entire home/apt 120
## 14506 Manhattan Private room 91
## 14507 Brooklyn Entire home/apt 125
## 14508 Brooklyn Private room 55
## 14509 Manhattan Entire home/apt 175
## 14510 Manhattan Private room 100
## 14511 Manhattan Entire home/apt 140
## 14512 Manhattan Private room 55
## 14513 Brooklyn Private room 40
## 14514 Manhattan Entire home/apt 180
## 14515 Queens Entire home/apt 110
## 14516 Queens Entire home/apt 90
## 14517 Brooklyn Private room 50
## 14518 Brooklyn Entire home/apt 135
## 14519 Brooklyn Private room 60
## 14520 Manhattan Private room 200
## 14521 Manhattan Private room 90
## 14522 Manhattan Entire home/apt 180
## 14523 Manhattan Entire home/apt 228
## 14524 Manhattan Entire home/apt 250
## 14525 Queens Private room 40
## 14526 Manhattan Private room 65
## 14527 Manhattan Entire home/apt 188
## 14528 Manhattan Entire home/apt 130
## 14529 Brooklyn Entire home/apt 140
## 14530 Manhattan Private room 130
## 14531 Brooklyn Entire home/apt 300
## 14532 Manhattan Private room 50
## 14533 Brooklyn Entire home/apt 75
## 14534 Manhattan Entire home/apt 200
## 14535 Brooklyn Entire home/apt 250
## 14536 Queens Private room 100
## 14537 Brooklyn Entire home/apt 112
## 14538 Manhattan Entire home/apt 230
## 14539 Manhattan Entire home/apt 170
## 14540 Manhattan Private room 79
## 14541 Manhattan Private room 125
## 14542 Manhattan Entire home/apt 285
## 14543 Manhattan Entire home/apt 421
## 14544 Manhattan Private room 110
## 14545 Brooklyn Entire home/apt 690
## 14546 Manhattan Entire home/apt 169
## 14547 Brooklyn Private room 60
## 14548 Brooklyn Private room 70
## 14549 Manhattan Private room 150
## 14550 Manhattan Private room 120
## 14551 Manhattan Entire home/apt 140
## 14552 Manhattan Entire home/apt 160
## 14553 Brooklyn Private room 50
## 14554 Queens Entire home/apt 120
## 14555 Brooklyn Entire home/apt 140
## 14556 Brooklyn Entire home/apt 619
## 14557 Manhattan Entire home/apt 600
## 14558 Manhattan Entire home/apt 76
## 14559 Brooklyn Private room 35
## 14560 Manhattan Shared room 75
## 14561 Queens Private room 40
## 14562 Brooklyn Private room 54
## 14563 Manhattan Entire home/apt 140
## 14564 Manhattan Entire home/apt 225
## 14565 Manhattan Private room 87
## 14566 Manhattan Entire home/apt 131
## 14567 Manhattan Entire home/apt 198
## 14568 Manhattan Entire home/apt 450
## 14569 Brooklyn Entire home/apt 175
## 14570 Manhattan Entire home/apt 100
## 14571 Manhattan Entire home/apt 250
## 14572 Manhattan Private room 280
## 14573 Brooklyn Entire home/apt 135
## 14574 Brooklyn Entire home/apt 2100
## 14575 Manhattan Entire home/apt 1100
## 14576 Queens Entire home/apt 87
## 14577 Manhattan Entire home/apt 165
## 14578 Brooklyn Entire home/apt 170
## 14579 Queens Private room 50
## 14580 Bronx Entire home/apt 79
## 14581 Manhattan Private room 84
## 14582 Manhattan Entire home/apt 375
## 14583 Manhattan Entire home/apt 135
## 14584 Brooklyn Private room 125
## 14585 Brooklyn Private room 79
## 14586 Manhattan Entire home/apt 165
## 14587 Manhattan Entire home/apt 300
## 14588 Manhattan Private room 45
## 14589 Manhattan Entire home/apt 400
## 14590 Brooklyn Private room 40
## 14591 Manhattan Private room 60
## 14592 Manhattan Private room 250
## 14593 Brooklyn Private room 55
## 14594 Manhattan Entire home/apt 199
## 14595 Brooklyn Entire home/apt 130
## 14596 Manhattan Private room 44
## 14597 Manhattan Entire home/apt 200
## 14598 Queens Entire home/apt 90
## 14599 Manhattan Private room 139
## 14600 Brooklyn Entire home/apt 250
## 14601 Manhattan Entire home/apt 120
## 14602 Brooklyn Entire home/apt 100
## 14603 Brooklyn Entire home/apt 133
## 14604 Manhattan Private room 120
## 14605 Brooklyn Entire home/apt 100
## 14606 Manhattan Private room 70
## 14607 Brooklyn Entire home/apt 200
## 14608 Manhattan Private room 89
## 14609 Brooklyn Private room 75
## 14610 Manhattan Entire home/apt 200
## 14611 Manhattan Private room 90
## 14612 Manhattan Private room 190
## 14613 Manhattan Entire home/apt 150
## 14614 Manhattan Entire home/apt 85
## 14615 Manhattan Private room 65
## 14616 Manhattan Entire home/apt 110
## 14617 Manhattan Shared room 70
## 14618 Brooklyn Private room 55
## 14619 Manhattan Private room 75
## 14620 Manhattan Private room 59
## 14621 Brooklyn Entire home/apt 200
## 14622 Manhattan Private room 85
## 14623 Brooklyn Private room 85
## 14624 Queens Entire home/apt 158
## 14625 Brooklyn Private room 35
## 14626 Brooklyn Private room 57
## 14627 Manhattan Entire home/apt 138
## 14628 Manhattan Entire home/apt 90
## 14629 Brooklyn Entire home/apt 125
## 14630 Brooklyn Entire home/apt 999
## 14631 Manhattan Entire home/apt 225
## 14632 Queens Private room 45
## 14633 Manhattan Private room 150
## 14634 Manhattan Entire home/apt 150
## 14635 Manhattan Entire home/apt 140
## 14636 Queens Private room 40
## 14637 Manhattan Entire home/apt 205
## 14638 Manhattan Entire home/apt 190
## 14639 Manhattan Private room 110
## 14640 Queens Entire home/apt 150
## 14641 Manhattan Entire home/apt 100
## 14642 Manhattan Entire home/apt 75
## 14643 Brooklyn Entire home/apt 115
## 14644 Brooklyn Private room 50
## 14645 Manhattan Entire home/apt 190
## 14646 Queens Private room 60
## 14647 Manhattan Entire home/apt 200
## 14648 Queens Entire home/apt 90
## 14649 Manhattan Entire home/apt 500
## 14650 Brooklyn Entire home/apt 115
## 14651 Manhattan Entire home/apt 140
## 14652 Manhattan Private room 50
## 14653 Manhattan Entire home/apt 135
## 14654 Manhattan Private room 109
## 14655 Brooklyn Private room 60
## 14656 Brooklyn Entire home/apt 148
## 14657 Manhattan Private room 95
## 14658 Brooklyn Private room 50
## 14659 Brooklyn Entire home/apt 79
## 14660 Brooklyn Private room 50
## 14661 Manhattan Private room 40
## 14662 Manhattan Entire home/apt 101
## 14663 Brooklyn Entire home/apt 135
## 14664 Manhattan Private room 99
## 14665 Brooklyn Private room 95
## 14666 Manhattan Entire home/apt 110
## 14667 Manhattan Entire home/apt 299
## 14668 Manhattan Private room 79
## 14669 Manhattan Private room 52
## 14670 Manhattan Entire home/apt 95
## 14671 Brooklyn Entire home/apt 295
## 14672 Brooklyn Private room 65
## 14673 Manhattan Entire home/apt 110
## 14674 Manhattan Entire home/apt 215
## 14675 Brooklyn Entire home/apt 100
## 14676 Manhattan Entire home/apt 450
## 14677 Brooklyn Entire home/apt 95
## 14678 Brooklyn Entire home/apt 140
## 14679 Manhattan Entire home/apt 220
## 14680 Manhattan Entire home/apt 355
## 14681 Manhattan Entire home/apt 185
## 14682 Manhattan Entire home/apt 297
## 14683 Manhattan Entire home/apt 133
## 14684 Manhattan Private room 100
## 14685 Manhattan Private room 250
## 14686 Queens Private room 65
## 14687 Brooklyn Private room 50
## 14688 Manhattan Entire home/apt 135
## 14689 Brooklyn Private room 80
## 14690 Brooklyn Private room 69
## 14691 Manhattan Private room 75
## 14692 Brooklyn Entire home/apt 125
## 14693 Manhattan Entire home/apt 142
## 14694 Manhattan Entire home/apt 200
## 14695 Brooklyn Private room 45
## 14696 Manhattan Private room 97
## 14697 Manhattan Entire home/apt 229
## 14698 Manhattan Entire home/apt 175
## 14699 Brooklyn Private room 63
## 14700 Queens Private room 45
## 14701 Manhattan Entire home/apt 185
## 14702 Manhattan Shared room 50
## 14703 Manhattan Entire home/apt 175
## 14704 Manhattan Entire home/apt 133
## 14705 Brooklyn Private room 62
## 14706 Queens Private room 90
## 14707 Brooklyn Private room 99
## 14708 Brooklyn Private room 61
## 14709 Queens Entire home/apt 120
## 14710 Queens Private room 100
## 14711 Manhattan Shared room 32
## 14712 Manhattan Private room 80
## 14713 Brooklyn Entire home/apt 90
## 14714 Brooklyn Entire home/apt 180
## 14715 Manhattan Private room 65
## 14716 Bronx Private room 49
## 14717 Manhattan Entire home/apt 100
## 14718 Brooklyn Entire home/apt 380
## 14719 Manhattan Private room 26
## 14720 Manhattan Entire home/apt 100
## 14721 Manhattan Private room 90
## 14722 Manhattan Private room 89
## 14723 Bronx Private room 35
## 14724 Brooklyn Private room 66
## 14725 Manhattan Private room 285
## 14726 Manhattan Private room 46
## 14727 Manhattan Entire home/apt 275
## 14728 Brooklyn Private room 89
## 14729 Manhattan Entire home/apt 250
## 14730 Brooklyn Entire home/apt 200
## 14731 Brooklyn Entire home/apt 175
## 14732 Manhattan Entire home/apt 140
## 14733 Manhattan Entire home/apt 133
## 14734 Manhattan Entire home/apt 150
## 14735 Queens Private room 55
## 14736 Manhattan Entire home/apt 142
## 14737 Manhattan Entire home/apt 95
## 14738 Manhattan Entire home/apt 165
## 14739 Brooklyn Entire home/apt 150
## 14740 Manhattan Private room 99
## 14741 Manhattan Entire home/apt 133
## 14742 Brooklyn Entire home/apt 150
## 14743 Queens Entire home/apt 190
## 14744 Brooklyn Private room 60
## 14745 Brooklyn Entire home/apt 106
## 14746 Brooklyn Entire home/apt 165
## 14747 Brooklyn Entire home/apt 190
## 14748 Queens Private room 750
## 14749 Bronx Entire home/apt 150
## 14750 Brooklyn Entire home/apt 150
## 14751 Manhattan Entire home/apt 119
## 14752 Brooklyn Private room 62
## 14753 Manhattan Private room 99
## 14754 Brooklyn Private room 34
## 14755 Manhattan Entire home/apt 129
## 14756 Brooklyn Entire home/apt 105
## 14757 Manhattan Entire home/apt 229
## 14758 Manhattan Entire home/apt 350
## 14759 Manhattan Entire home/apt 205
## 14760 Queens Private room 85
## 14761 Queens Private room 30
## 14762 Manhattan Entire home/apt 150
## 14763 Manhattan Entire home/apt 186
## 14764 Brooklyn Private room 50
## 14765 Brooklyn Entire home/apt 200
## 14766 Manhattan Entire home/apt 172
## 14767 Manhattan Entire home/apt 250
## 14768 Manhattan Entire home/apt 133
## 14769 Manhattan Entire home/apt 150
## 14770 Manhattan Entire home/apt 290
## 14771 Queens Entire home/apt 120
## 14772 Bronx Entire home/apt 95
## 14773 Manhattan Entire home/apt 120
## 14774 Manhattan Entire home/apt 165
## 14775 Brooklyn Private room 50
## 14776 Manhattan Entire home/apt 180
## 14777 Brooklyn Private room 38
## 14778 Brooklyn Entire home/apt 85
## 14779 Manhattan Entire home/apt 145
## 14780 Brooklyn Private room 29
## 14781 Brooklyn Entire home/apt 120
## 14782 Manhattan Entire home/apt 117
## 14783 Brooklyn Entire home/apt 70
## 14784 Manhattan Entire home/apt 180
## 14785 Brooklyn Entire home/apt 115
## 14786 Brooklyn Entire home/apt 225
## 14787 Manhattan Entire home/apt 140
## 14788 Bronx Private room 45
## 14789 Manhattan Private room 119
## 14790 Manhattan Entire home/apt 125
## 14791 Brooklyn Private room 46
## 14792 Brooklyn Private room 50
## 14793 Brooklyn Entire home/apt 150
## 14794 Manhattan Entire home/apt 120
## 14795 Brooklyn Private room 45
## 14796 Brooklyn Private room 115
## 14797 Manhattan Private room 95
## 14798 Manhattan Entire home/apt 110
## 14799 Brooklyn Entire home/apt 250
## 14800 Brooklyn Entire home/apt 300
## 14801 Queens Private room 45
## 14802 Manhattan Entire home/apt 159
## 14803 Manhattan Entire home/apt 220
## 14804 Manhattan Entire home/apt 159
## 14805 Manhattan Entire home/apt 70
## 14806 Brooklyn Private room 45
## 14807 Manhattan Private room 40
## 14808 Manhattan Private room 81
## 14809 Manhattan Entire home/apt 190
## 14810 Manhattan Entire home/apt 225
## 14811 Manhattan Shared room 360
## 14812 Manhattan Entire home/apt 125
## 14813 Queens Entire home/apt 95
## 14814 Queens Entire home/apt 62
## 14815 Manhattan Entire home/apt 150
## 14816 Brooklyn Entire home/apt 495
## 14817 Manhattan Entire home/apt 130
## 14818 Brooklyn Private room 80
## 14819 Brooklyn Private room 89
## 14820 Brooklyn Private room 55
## 14821 Manhattan Entire home/apt 140
## 14822 Manhattan Private room 60
## 14823 Manhattan Entire home/apt 142
## 14824 Manhattan Entire home/apt 125
## 14825 Manhattan Entire home/apt 133
## 14826 Brooklyn Entire home/apt 200
## 14827 Brooklyn Entire home/apt 85
## 14828 Manhattan Entire home/apt 625
## 14829 Manhattan Private room 100
## 14830 Brooklyn Entire home/apt 176
## 14831 Manhattan Entire home/apt 175
## 14832 Staten Island Entire home/apt 75
## 14833 Manhattan Entire home/apt 245
## 14834 Manhattan Entire home/apt 125
## 14835 Manhattan Entire home/apt 159
## 14836 Bronx Entire home/apt 110
## 14837 Manhattan Entire home/apt 150
## 14838 Brooklyn Entire home/apt 99
## 14839 Brooklyn Private room 49
## 14840 Brooklyn Private room 140
## 14841 Brooklyn Entire home/apt 200
## 14842 Manhattan Entire home/apt 148
## 14843 Manhattan Entire home/apt 165
## 14844 Brooklyn Private room 59
## 14845 Brooklyn Private room 45
## 14846 Brooklyn Private room 45
## 14847 Manhattan Entire home/apt 225
## 14848 Manhattan Private room 70
## 14849 Queens Entire home/apt 95
## 14850 Brooklyn Entire home/apt 100
## 14851 Queens Private room 59
## 14852 Manhattan Private room 50
## 14853 Manhattan Entire home/apt 400
## 14854 Manhattan Entire home/apt 100
## 14855 Manhattan Entire home/apt 199
## 14856 Brooklyn Private room 35
## 14857 Brooklyn Private room 65
## 14858 Brooklyn Entire home/apt 95
## 14859 Bronx Private room 60
## 14860 Manhattan Entire home/apt 200
## 14861 Manhattan Entire home/apt 200
## 14862 Manhattan Private room 50
## 14863 Manhattan Private room 102
## 14864 Manhattan Entire home/apt 152
## 14865 Brooklyn Entire home/apt 490
## 14866 Manhattan Entire home/apt 250
## 14867 Manhattan Entire home/apt 450
## 14868 Brooklyn Entire home/apt 98
## 14869 Brooklyn Entire home/apt 199
## 14870 Queens Private room 50
## 14871 Brooklyn Entire home/apt 109
## 14872 Brooklyn Entire home/apt 145
## 14873 Manhattan Private room 96
## 14874 Brooklyn Entire home/apt 165
## 14875 Brooklyn Private room 65
## 14876 Manhattan Entire home/apt 130
## 14877 Manhattan Entire home/apt 120
## 14878 Brooklyn Entire home/apt 165
## 14879 Brooklyn Entire home/apt 200
## 14880 Manhattan Private room 122
## 14881 Manhattan Entire home/apt 400
## 14882 Brooklyn Private room 54
## 14883 Brooklyn Private room 54
## 14884 Brooklyn Private room 54
## 14885 Manhattan Private room 250
## 14886 Manhattan Entire home/apt 120
## 14887 Brooklyn Private room 75
## 14888 Queens Private room 65
## 14889 Brooklyn Private room 60
## 14890 Brooklyn Entire home/apt 179
## 14891 Queens Private room 43
## 14892 Manhattan Entire home/apt 130
## 14893 Manhattan Entire home/apt 154
## 14894 Brooklyn Entire home/apt 135
## 14895 Queens Private room 86
## 14896 Brooklyn Private room 85
## 14897 Queens Entire home/apt 80
## 14898 Brooklyn Private room 70
## 14899 Brooklyn Private room 65
## 14900 Manhattan Entire home/apt 100
## 14901 Manhattan Entire home/apt 130
## 14902 Brooklyn Entire home/apt 139
## 14903 Brooklyn Private room 35
## 14904 Brooklyn Entire home/apt 100
## 14905 Manhattan Private room 60
## 14906 Manhattan Entire home/apt 133
## 14907 Manhattan Entire home/apt 275
## 14908 Manhattan Private room 112
## 14909 Manhattan Entire home/apt 142
## 14910 Brooklyn Entire home/apt 135
## 14911 Brooklyn Entire home/apt 165
## 14912 Manhattan Entire home/apt 200
## 14913 Manhattan Entire home/apt 425
## 14914 Manhattan Entire home/apt 110
## 14915 Brooklyn Private room 40
## 14916 Manhattan Private room 70
## 14917 Manhattan Private room 65
## 14918 Queens Entire home/apt 95
## 14919 Brooklyn Private room 100
## 14920 Manhattan Entire home/apt 140
## 14921 Manhattan Entire home/apt 150
## 14922 Brooklyn Entire home/apt 115
## 14923 Manhattan Private room 74
## 14924 Brooklyn Entire home/apt 175
## 14925 Manhattan Entire home/apt 275
## 14926 Queens Entire home/apt 110
## 14927 Manhattan Private room 69
## 14928 Brooklyn Private room 50
## 14929 Brooklyn Private room 85
## 14930 Manhattan Private room 110
## 14931 Manhattan Entire home/apt 142
## 14932 Manhattan Private room 75
## 14933 Manhattan Entire home/apt 133
## 14934 Manhattan Private room 79
## 14935 Bronx Entire home/apt 80
## 14936 Manhattan Entire home/apt 239
## 14937 Manhattan Entire home/apt 100
## 14938 Brooklyn Entire home/apt 159
## 14939 Manhattan Entire home/apt 140
## 14940 Manhattan Entire home/apt 250
## 14941 Brooklyn Entire home/apt 135
## 14942 Brooklyn Private room 65
## 14943 Manhattan Private room 75
## 14944 Manhattan Entire home/apt 195
## 14945 Brooklyn Entire home/apt 99
## 14946 Manhattan Private room 70
## 14947 Manhattan Entire home/apt 199
## 14948 Manhattan Private room 65
## 14949 Brooklyn Entire home/apt 245
## 14950 Manhattan Entire home/apt 150
## 14951 Brooklyn Private room 55
## 14952 Manhattan Entire home/apt 650
## 14953 Queens Private room 50
## 14954 Brooklyn Entire home/apt 81
## 14955 Manhattan Entire home/apt 92
## 14956 Manhattan Private room 105
## 14957 Manhattan Private room 89
## 14958 Brooklyn Entire home/apt 348
## 14959 Brooklyn Entire home/apt 168
## 14960 Brooklyn Private room 65
## 14961 Manhattan Entire home/apt 100
## 14962 Manhattan Entire home/apt 175
## 14963 Brooklyn Entire home/apt 100
## 14964 Brooklyn Entire home/apt 119
## 14965 Brooklyn Entire home/apt 105
## 14966 Brooklyn Entire home/apt 200
## 14967 Manhattan Entire home/apt 290
## 14968 Brooklyn Private room 62
## 14969 Manhattan Private room 70
## 14970 Brooklyn Entire home/apt 65
## 14971 Manhattan Private room 60
## 14972 Manhattan Entire home/apt 160
## 14973 Queens Shared room 45
## 14974 Manhattan Entire home/apt 595
## 14975 Brooklyn Private room 60
## 14976 Brooklyn Private room 95
## 14977 Brooklyn Private room 150
## 14978 Manhattan Entire home/apt 200
## 14979 Manhattan Private room 160
## 14980 Manhattan Entire home/apt 300
## 14981 Brooklyn Entire home/apt 99
## 14982 Brooklyn Entire home/apt 150
## 14983 Queens Private room 35
## 14984 Brooklyn Entire home/apt 170
## 14985 Manhattan Private room 65
## 14986 Brooklyn Shared room 38
## 14987 Brooklyn Private room 60
## 14988 Manhattan Entire home/apt 500
## 14989 Brooklyn Private room 85
## 14990 Brooklyn Entire home/apt 110
## 14991 Manhattan Private room 60
## 14992 Manhattan Entire home/apt 148
## 14993 Manhattan Entire home/apt 133
## 14994 Manhattan Entire home/apt 160
## 14995 Manhattan Entire home/apt 250
## 14996 Queens Private room 95
## 14997 Manhattan Private room 69
## 14998 Queens Entire home/apt 180
## 14999 Manhattan Private room 40
## 15000 Brooklyn Private room 85
## 15001 Brooklyn Private room 65
## 15002 Brooklyn Private room 55
## 15003 Manhattan Shared room 75
## 15004 Manhattan Entire home/apt 125
## 15005 Bronx Private room 26
## 15006 Brooklyn Entire home/apt 175
## 15007 Brooklyn Private room 85
## 15008 Brooklyn Entire home/apt 179
## 15009 Brooklyn Private room 75
## 15010 Brooklyn Private room 76
## 15011 Manhattan Entire home/apt 225
## 15012 Manhattan Private room 40
## 15013 Manhattan Entire home/apt 110
## 15014 Manhattan Entire home/apt 117
## 15015 Queens Entire home/apt 78
## 15016 Manhattan Entire home/apt 800
## 15017 Brooklyn Entire home/apt 65
## 15018 Manhattan Entire home/apt 105
## 15019 Brooklyn Private room 45
## 15020 Queens Private room 34
## 15021 Manhattan Entire home/apt 90
## 15022 Brooklyn Private room 65
## 15023 Queens Entire home/apt 150
## 15024 Manhattan Entire home/apt 160
## 15025 Manhattan Entire home/apt 250
## 15026 Manhattan Entire home/apt 106
## 15027 Manhattan Entire home/apt 95
## 15028 Manhattan Private room 69
## 15029 Brooklyn Entire home/apt 145
## 15030 Brooklyn Entire home/apt 75
## 15031 Brooklyn Entire home/apt 70
## 15032 Brooklyn Entire home/apt 225
## 15033 Queens Private room 43
## 15034 Brooklyn Entire home/apt 121
## 15035 Brooklyn Private room 50
## 15036 Manhattan Entire home/apt 198
## 15037 Brooklyn Private room 109
## 15038 Manhattan Entire home/apt 199
## 15039 Bronx Entire home/apt 150
## 15040 Brooklyn Private room 49
## 15041 Manhattan Entire home/apt 239
## 15042 Brooklyn Entire home/apt 100
## 15043 Manhattan Entire home/apt 239
## 15044 Manhattan Entire home/apt 239
## 15045 Brooklyn Entire home/apt 170
## 15046 Manhattan Entire home/apt 239
## 15047 Brooklyn Private room 80
## 15048 Manhattan Entire home/apt 239
## 15049 Manhattan Entire home/apt 239
## 15050 Manhattan Entire home/apt 239
## 15051 Manhattan Entire home/apt 80
## 15052 Brooklyn Entire home/apt 140
## 15053 Manhattan Entire home/apt 240
## 15054 Brooklyn Private room 60
## 15055 Manhattan Entire home/apt 200
## 15056 Manhattan Entire home/apt 159
## 15057 Brooklyn Entire home/apt 65
## 15058 Manhattan Private room 70
## 15059 Manhattan Entire home/apt 369
## 15060 Manhattan Private room 120
## 15061 Manhattan Entire home/apt 239
## 15062 Manhattan Private room 125
## 15063 Brooklyn Entire home/apt 200
## 15064 Manhattan Private room 50
## 15065 Manhattan Entire home/apt 120
## 15066 Manhattan Shared room 100
## 15067 Brooklyn Private room 80
## 15068 Manhattan Entire home/apt 140
## 15069 Brooklyn Entire home/apt 105
## 15070 Brooklyn Private room 49
## 15071 Brooklyn Entire home/apt 180
## 15072 Manhattan Private room 70
## 15073 Manhattan Entire home/apt 450
## 15074 Brooklyn Private room 44
## 15075 Brooklyn Private room 89
## 15076 Brooklyn Entire home/apt 172
## 15077 Manhattan Entire home/apt 350
## 15078 Manhattan Private room 68
## 15079 Manhattan Private room 52
## 15080 Queens Private room 70
## 15081 Brooklyn Entire home/apt 223
## 15082 Brooklyn Private room 71
## 15083 Brooklyn Private room 97
## 15084 Manhattan Private room 75
## 15085 Manhattan Private room 65
## 15086 Brooklyn Private room 64
## 15087 Brooklyn Private room 59
## 15088 Brooklyn Private room 100
## 15089 Brooklyn Private room 60
## 15090 Queens Private room 73
## 15091 Queens Entire home/apt 219
## 15092 Manhattan Entire home/apt 999
## 15093 Manhattan Private room 150
## 15094 Queens Private room 52
## 15095 Brooklyn Entire home/apt 90
## 15096 Manhattan Entire home/apt 150
## 15097 Manhattan Entire home/apt 325
## 15098 Manhattan Entire home/apt 170
## 15099 Queens Entire home/apt 79
## 15100 Brooklyn Private room 175
## 15101 Manhattan Private room 75
## 15102 Brooklyn Entire home/apt 120
## 15103 Manhattan Private room 72
## 15104 Brooklyn Entire home/apt 80
## 15105 Manhattan Entire home/apt 175
## 15106 Manhattan Entire home/apt 125
## 15107 Manhattan Private room 200
## 15108 Manhattan Entire home/apt 1000
## 15109 Brooklyn Private room 45
## 15110 Manhattan Entire home/apt 175
## 15111 Brooklyn Private room 89
## 15112 Bronx Private room 500
## 15113 Manhattan Entire home/apt 84
## 15114 Manhattan Entire home/apt 149
## 15115 Brooklyn Entire home/apt 110
## 15116 Brooklyn Private room 40
## 15117 Brooklyn Entire home/apt 98
## 15118 Manhattan Entire home/apt 160
## 15119 Manhattan Shared room 32
## 15120 Manhattan Entire home/apt 380
## 15121 Brooklyn Private room 35
## 15122 Brooklyn Private room 100
## 15123 Manhattan Entire home/apt 239
## 15124 Brooklyn Private room 51
## 15125 Manhattan Entire home/apt 200
## 15126 Manhattan Entire home/apt 129
## 15127 Manhattan Entire home/apt 239
## 15128 Manhattan Entire home/apt 140
## 15129 Manhattan Entire home/apt 239
## 15130 Manhattan Private room 56
## 15131 Manhattan Entire home/apt 239
## 15132 Manhattan Entire home/apt 239
## 15133 Manhattan Entire home/apt 239
## 15134 Brooklyn Private room 37
## 15135 Brooklyn Private room 91
## 15136 Manhattan Entire home/apt 170
## 15137 Brooklyn Entire home/apt 169
## 15138 Manhattan Private room 35
## 15139 Brooklyn Entire home/apt 180
## 15140 Brooklyn Private room 55
## 15141 Manhattan Entire home/apt 239
## 15142 Manhattan Entire home/apt 239
## 15143 Manhattan Private room 175
## 15144 Brooklyn Entire home/apt 67
## 15145 Manhattan Entire home/apt 239
## 15146 Manhattan Private room 65
## 15147 Manhattan Entire home/apt 125
## 15148 Brooklyn Entire home/apt 200
## 15149 Brooklyn Entire home/apt 81
## 15150 Manhattan Entire home/apt 325
## 15151 Manhattan Entire home/apt 333
## 15152 Manhattan Private room 90
## 15153 Manhattan Entire home/apt 245
## 15154 Brooklyn Private room 90
## 15155 Manhattan Entire home/apt 999
## 15156 Queens Entire home/apt 165
## 15157 Manhattan Entire home/apt 400
## 15158 Manhattan Entire home/apt 160
## 15159 Brooklyn Entire home/apt 75
## 15160 Manhattan Entire home/apt 206
## 15161 Manhattan Private room 70
## 15162 Brooklyn Private room 65
## 15163 Brooklyn Entire home/apt 126
## 15164 Brooklyn Private room 40
## 15165 Manhattan Entire home/apt 239
## 15166 Brooklyn Entire home/apt 129
## 15167 Brooklyn Entire home/apt 92
## 15168 Manhattan Private room 82
## 15169 Manhattan Entire home/apt 369
## 15170 Manhattan Entire home/apt 369
## 15171 Manhattan Entire home/apt 99
## 15172 Brooklyn Private room 78
## 15173 Brooklyn Private room 44
## 15174 Manhattan Entire home/apt 160
## 15175 Manhattan Entire home/apt 220
## 15176 Bronx Entire home/apt 125
## 15177 Manhattan Entire home/apt 99
## 15178 Manhattan Entire home/apt 75
## 15179 Manhattan Entire home/apt 300
## 15180 Manhattan Entire home/apt 140
## 15181 Manhattan Private room 98
## 15182 Manhattan Private room 99
## 15183 Manhattan Entire home/apt 178
## 15184 Queens Private room 59
## 15185 Brooklyn Entire home/apt 75
## 15186 Queens Private room 225
## 15187 Manhattan Private room 60
## 15188 Manhattan Entire home/apt 268
## 15189 Brooklyn Entire home/apt 300
## 15190 Manhattan Entire home/apt 177
## 15191 Bronx Private room 60
## 15192 Manhattan Private room 60
## 15193 Bronx Private room 55
## 15194 Bronx Private room 60
## 15195 Brooklyn Entire home/apt 135
## 15196 Brooklyn Private room 43
## 15197 Manhattan Entire home/apt 139
## 15198 Manhattan Entire home/apt 100
## 15199 Brooklyn Private room 100
## 15200 Queens Private room 40
## 15201 Manhattan Private room 55
## 15202 Manhattan Entire home/apt 175
## 15203 Brooklyn Entire home/apt 300
## 15204 Manhattan Private room 45
## 15205 Brooklyn Entire home/apt 144
## 15206 Brooklyn Private room 60
## 15207 Manhattan Private room 250
## 15208 Brooklyn Private room 45
## 15209 Manhattan Private room 80
## 15210 Manhattan Entire home/apt 136
## 15211 Manhattan Entire home/apt 149
## 15212 Manhattan Private room 89
## 15213 Manhattan Private room 110
## 15214 Manhattan Private room 179
## 15215 Queens Shared room 500
## 15216 Brooklyn Entire home/apt 150
## 15217 Queens Entire home/apt 175
## 15218 Brooklyn Entire home/apt 79
## 15219 Brooklyn Entire home/apt 117
## 15220 Brooklyn Entire home/apt 91
## 15221 Manhattan Private room 65
## 15222 Manhattan Entire home/apt 500
## 15223 Manhattan Private room 85
## 15224 Manhattan Entire home/apt 150
## 15225 Queens Private room 80
## 15226 Manhattan Entire home/apt 200
## 15227 Brooklyn Entire home/apt 325
## 15228 Manhattan Private room 95
## 15229 Manhattan Private room 100
## 15230 Manhattan Shared room 85
## 15231 Brooklyn Entire home/apt 115
## 15232 Manhattan Entire home/apt 111
## 15233 Manhattan Private room 84
## 15234 Brooklyn Private room 75
## 15235 Manhattan Private room 95
## 15236 Brooklyn Entire home/apt 110
## 15237 Brooklyn Private room 50
## 15238 Brooklyn Private room 115
## 15239 Manhattan Entire home/apt 225
## 15240 Brooklyn Private room 80
## 15241 Brooklyn Private room 110
## 15242 Brooklyn Private room 49
## 15243 Manhattan Private room 90
## 15244 Queens Entire home/apt 299
## 15245 Manhattan Private room 60
## 15246 Manhattan Entire home/apt 175
## 15247 Manhattan Entire home/apt 115
## 15248 Brooklyn Private room 45
## 15249 Brooklyn Private room 57
## 15250 Manhattan Entire home/apt 120
## 15251 Brooklyn Entire home/apt 409
## 15252 Queens Entire home/apt 350
## 15253 Queens Private room 95
## 15254 Brooklyn Private room 49
## 15255 Manhattan Entire home/apt 155
## 15256 Brooklyn Entire home/apt 265
## 15257 Brooklyn Entire home/apt 215
## 15258 Queens Private room 120
## 15259 Brooklyn Private room 54
## 15260 Brooklyn Private room 79
## 15261 Manhattan Private room 185
## 15262 Manhattan Entire home/apt 60
## 15263 Queens Entire home/apt 750
## 15264 Manhattan Entire home/apt 160
## 15265 Manhattan Entire home/apt 210
## 15266 Brooklyn Private room 80
## 15267 Brooklyn Entire home/apt 85
## 15268 Brooklyn Entire home/apt 99
## 15269 Manhattan Entire home/apt 200
## 15270 Brooklyn Private room 84
## 15271 Brooklyn Entire home/apt 105
## 15272 Brooklyn Private room 150
## 15273 Queens Private room 88
## 15274 Manhattan Private room 65
## 15275 Brooklyn Entire home/apt 110
## 15276 Manhattan Entire home/apt 140
## 15277 Brooklyn Private room 50
## 15278 Brooklyn Entire home/apt 175
## 15279 Staten Island Private room 100
## 15280 Brooklyn Private room 50
## 15281 Queens Private room 60
## 15282 Brooklyn Private room 51
## 15283 Brooklyn Private room 55
## 15284 Brooklyn Private room 85
## 15285 Brooklyn Private room 60
## 15286 Manhattan Entire home/apt 143
## 15287 Manhattan Entire home/apt 85
## 15288 Queens Entire home/apt 110
## 15289 Manhattan Entire home/apt 449
## 15290 Manhattan Private room 35
## 15291 Manhattan Entire home/apt 369
## 15292 Manhattan Private room 70
## 15293 Brooklyn Entire home/apt 295
## 15294 Manhattan Entire home/apt 110
## 15295 Manhattan Private room 65
## 15296 Manhattan Entire home/apt 109
## 15297 Brooklyn Private room 35
## 15298 Brooklyn Private room 50
## 15299 Brooklyn Private room 44
## 15300 Manhattan Entire home/apt 275
## 15301 Manhattan Private room 110
## 15302 Brooklyn Entire home/apt 120
## 15303 Brooklyn Private room 50
## 15304 Brooklyn Entire home/apt 87
## 15305 Manhattan Private room 78
## 15306 Manhattan Private room 49
## 15307 Manhattan Private room 109
## 15308 Manhattan Private room 65
## 15309 Manhattan Private room 150
## 15310 Manhattan Entire home/apt 225
## 15311 Manhattan Entire home/apt 100
## 15312 Manhattan Entire home/apt 125
## 15313 Manhattan Entire home/apt 115
## 15314 Brooklyn Private room 62
## 15315 Brooklyn Private room 50
## 15316 Manhattan Entire home/apt 200
## 15317 Queens Entire home/apt 225
## 15318 Manhattan Entire home/apt 159
## 15319 Manhattan Entire home/apt 150
## 15320 Brooklyn Private room 29
## 15321 Brooklyn Entire home/apt 150
## 15322 Brooklyn Private room 80
## 15323 Brooklyn Private room 35
## 15324 Manhattan Entire home/apt 250
## 15325 Manhattan Entire home/apt 160
## 15326 Manhattan Entire home/apt 175
## 15327 Brooklyn Entire home/apt 150
## 15328 Queens Entire home/apt 165
## 15329 Brooklyn Entire home/apt 150
## 15330 Brooklyn Entire home/apt 159
## 15331 Brooklyn Entire home/apt 140
## 15332 Brooklyn Entire home/apt 159
## 15333 Manhattan Private room 77
## 15334 Brooklyn Private room 49
## 15335 Brooklyn Private room 55
## 15336 Brooklyn Private room 50
## 15337 Manhattan Entire home/apt 359
## 15338 Brooklyn Private room 50
## 15339 Brooklyn Entire home/apt 40
## 15340 Manhattan Entire home/apt 219
## 15341 Brooklyn Entire home/apt 189
## 15342 Manhattan Entire home/apt 140
## 15343 Queens Entire home/apt 96
## 15344 Brooklyn Entire home/apt 300
## 15345 Queens Private room 125
## 15346 Brooklyn Private room 150
## 15347 Brooklyn Private room 60
## 15348 Manhattan Private room 99
## 15349 Brooklyn Private room 60
## 15350 Manhattan Entire home/apt 198
## 15351 Manhattan Entire home/apt 350
## 15352 Brooklyn Entire home/apt 85
## 15353 Manhattan Private room 80
## 15354 Brooklyn Entire home/apt 80
## 15355 Manhattan Entire home/apt 135
## 15356 Brooklyn Entire home/apt 61
## 15357 Brooklyn Private room 45
## 15358 Brooklyn Private room 70
## 15359 Manhattan Private room 60
## 15360 Manhattan Private room 75
## 15361 Brooklyn Entire home/apt 165
## 15362 Brooklyn Entire home/apt 112
## 15363 Manhattan Private room 69
## 15364 Brooklyn Private room 39
## 15365 Manhattan Entire home/apt 239
## 15366 Manhattan Entire home/apt 150
## 15367 Manhattan Private room 42
## 15368 Manhattan Entire home/apt 195
## 15369 Manhattan Entire home/apt 194
## 15370 Brooklyn Private room 75
## 15371 Brooklyn Entire home/apt 130
## 15372 Manhattan Entire home/apt 165
## 15373 Manhattan Private room 70
## 15374 Manhattan Entire home/apt 200
## 15375 Brooklyn Private room 40
## 15376 Brooklyn Entire home/apt 205
## 15377 Brooklyn Private room 45
## 15378 Manhattan Entire home/apt 139
## 15379 Manhattan Entire home/apt 339
## 15380 Brooklyn Entire home/apt 49
## 15381 Manhattan Entire home/apt 190
## 15382 Brooklyn Entire home/apt 450
## 15383 Brooklyn Private room 45
## 15384 Brooklyn Entire home/apt 199
## 15385 Brooklyn Entire home/apt 55
## 15386 Brooklyn Private room 33
## 15387 Brooklyn Entire home/apt 149
## 15388 Brooklyn Private room 80
## 15389 Brooklyn Entire home/apt 120
## 15390 Brooklyn Private room 73
## 15391 Manhattan Entire home/apt 2500
## 15392 Brooklyn Private room 44
## 15393 Manhattan Entire home/apt 105
## 15394 Manhattan Private room 70
## 15395 Manhattan Private room 120
## 15396 Brooklyn Private room 57
## 15397 Queens Entire home/apt 120
## 15398 Manhattan Private room 100
## 15399 Manhattan Entire home/apt 525
## 15400 Brooklyn Private room 100
## 15401 Brooklyn Private room 75
## 15402 Brooklyn Entire home/apt 45
## 15403 Brooklyn Private room 65
## 15404 Brooklyn Entire home/apt 132
## 15405 Manhattan Entire home/apt 350
## 15406 Queens Private room 50
## 15407 Manhattan Private room 60
## 15408 Bronx Private room 59
## 15409 Manhattan Private room 80
## 15410 Bronx Entire home/apt 450
## 15411 Brooklyn Private room 45
## 15412 Manhattan Entire home/apt 359
## 15413 Manhattan Private room 200
## 15414 Manhattan Entire home/apt 120
## 15415 Manhattan Entire home/apt 140
## 15416 Brooklyn Entire home/apt 436
## 15417 Manhattan Entire home/apt 249
## 15418 Manhattan Entire home/apt 300
## 15419 Brooklyn Entire home/apt 140
## 15420 Brooklyn Entire home/apt 170
## 15421 Brooklyn Entire home/apt 200
## 15422 Brooklyn Private room 60
## 15423 Manhattan Private room 94
## 15424 Manhattan Entire home/apt 399
## 15425 Brooklyn Private room 45
## 15426 Brooklyn Private room 60
## 15427 Queens Private room 169
## 15428 Manhattan Private room 80
## 15429 Brooklyn Private room 55
## 15430 Manhattan Entire home/apt 220
## 15431 Brooklyn Entire home/apt 235
## 15432 Brooklyn Entire home/apt 125
## 15433 Queens Private room 66
## 15434 Manhattan Private room 80
## 15435 Queens Private room 40
## 15436 Queens Private room 57
## 15437 Brooklyn Private room 48
## 15438 Manhattan Entire home/apt 99
## 15439 Queens Private room 40
## 15440 Manhattan Entire home/apt 250
## 15441 Manhattan Private room 180
## 15442 Manhattan Entire home/apt 115
## 15443 Brooklyn Private room 104
## 15444 Brooklyn Entire home/apt 325
## 15445 Manhattan Entire home/apt 299
## 15446 Brooklyn Private room 40
## 15447 Manhattan Private room 89
## 15448 Manhattan Entire home/apt 100
## 15449 Queens Entire home/apt 59
## 15450 Manhattan Entire home/apt 300
## 15451 Manhattan Private room 65
## 15452 Manhattan Private room 50
## 15453 Manhattan Entire home/apt 120
## 15454 Manhattan Private room 125
## 15455 Brooklyn Private room 80
## 15456 Manhattan Private room 56
## 15457 Manhattan Entire home/apt 219
## 15458 Manhattan Entire home/apt 197
## 15459 Brooklyn Entire home/apt 260
## 15460 Manhattan Entire home/apt 115
## 15461 Bronx Private room 75
## 15462 Brooklyn Private room 66
## 15463 Queens Private room 75
## 15464 Manhattan Entire home/apt 500
## 15465 Queens Entire home/apt 215
## 15466 Manhattan Entire home/apt 175
## 15467 Manhattan Entire home/apt 140
## 15468 Brooklyn Private room 80
## 15469 Manhattan Private room 359
## 15470 Brooklyn Private room 80
## 15471 Brooklyn Private room 935
## 15472 Queens Entire home/apt 120
## 15473 Bronx Entire home/apt 85
## 15474 Brooklyn Entire home/apt 100
## 15475 Brooklyn Private room 64
## 15476 Manhattan Private room 75
## 15477 Manhattan Private room 62
## 15478 Manhattan Entire home/apt 96
## 15479 Manhattan Entire home/apt 350
## 15480 Manhattan Entire home/apt 100
## 15481 Brooklyn Entire home/apt 290
## 15482 Manhattan Private room 50
## 15483 Manhattan Entire home/apt 150
## 15484 Manhattan Private room 81
## 15485 Queens Private room 70
## 15486 Brooklyn Private room 70
## 15487 Manhattan Private room 150
## 15488 Brooklyn Entire home/apt 95
## 15489 Brooklyn Entire home/apt 150
## 15490 Brooklyn Entire home/apt 169
## 15491 Brooklyn Private room 25
## 15492 Manhattan Entire home/apt 154
## 15493 Manhattan Entire home/apt 140
## 15494 Manhattan Entire home/apt 130
## 15495 Brooklyn Private room 60
## 15496 Manhattan Entire home/apt 250
## 15497 Brooklyn Private room 55
## 15498 Brooklyn Private room 150
## 15499 Brooklyn Private room 45
## 15500 Brooklyn Entire home/apt 199
## 15501 Manhattan Entire home/apt 290
## 15502 Manhattan Entire home/apt 85
## 15503 Manhattan Entire home/apt 150
## 15504 Brooklyn Entire home/apt 60
## 15505 Brooklyn Entire home/apt 170
## 15506 Queens Private room 47
## 15507 Brooklyn Private room 55
## 15508 Manhattan Entire home/apt 195
## 15509 Manhattan Entire home/apt 186
## 15510 Manhattan Entire home/apt 99
## 15511 Manhattan Entire home/apt 155
## 15512 Brooklyn Private room 60
## 15513 Brooklyn Private room 100
## 15514 Manhattan Entire home/apt 500
## 15515 Brooklyn Entire home/apt 150
## 15516 Manhattan Entire home/apt 175
## 15517 Manhattan Entire home/apt 148
## 15518 Manhattan Private room 130
## 15519 Manhattan Private room 80
## 15520 Manhattan Entire home/apt 150
## 15521 Brooklyn Entire home/apt 285
## 15522 Manhattan Private room 70
## 15523 Manhattan Entire home/apt 150
## 15524 Brooklyn Entire home/apt 155
## 15525 Manhattan Private room 82
## 15526 Manhattan Entire home/apt 200
## 15527 Brooklyn Private room 60
## 15528 Manhattan Private room 150
## 15529 Manhattan Private room 159
## 15530 Manhattan Private room 38
## 15531 Manhattan Entire home/apt 155
## 15532 Brooklyn Entire home/apt 184
## 15533 Queens Private room 65
## 15534 Manhattan Entire home/apt 150
## 15535 Brooklyn Private room 50
## 15536 Brooklyn Private room 60
## 15537 Manhattan Private room 100
## 15538 Queens Private room 60
## 15539 Manhattan Entire home/apt 110
## 15540 Brooklyn Private room 50
## 15541 Manhattan Entire home/apt 325
## 15542 Manhattan Entire home/apt 225
## 15543 Manhattan Entire home/apt 190
## 15544 Brooklyn Entire home/apt 119
## 15545 Manhattan Entire home/apt 650
## 15546 Bronx Entire home/apt 104
## 15547 Manhattan Entire home/apt 175
## 15548 Brooklyn Private room 190
## 15549 Manhattan Private room 40
## 15550 Brooklyn Entire home/apt 100
## 15551 Brooklyn Private room 75
## 15552 Manhattan Entire home/apt 125
## 15553 Manhattan Private room 85
## 15554 Brooklyn Private room 60
## 15555 Manhattan Private room 90
## 15556 Manhattan Private room 53
## 15557 Brooklyn Private room 50
## 15558 Manhattan Private room 45
## 15559 Manhattan Private room 110
## 15560 Brooklyn Entire home/apt 200
## 15561 Manhattan Entire home/apt 6000
## 15562 Queens Private room 70
## 15563 Manhattan Entire home/apt 199
## 15564 Queens Private room 65
## 15565 Brooklyn Private room 95
## 15566 Brooklyn Private room 80
## 15567 Manhattan Entire home/apt 200
## 15568 Manhattan Entire home/apt 274
## 15569 Brooklyn Private room 50
## 15570 Brooklyn Private room 105
## 15571 Manhattan Private room 45
## 15572 Manhattan Private room 350
## 15573 Manhattan Private room 350
## 15574 Manhattan Entire home/apt 180
## 15575 Manhattan Entire home/apt 225
## 15576 Queens Entire home/apt 100
## 15577 Brooklyn Private room 1300
## 15578 Manhattan Private room 55
## 15579 Brooklyn Entire home/apt 70
## 15580 Brooklyn Private room 50
## 15581 Brooklyn Private room 67
## 15582 Manhattan Entire home/apt 150
## 15583 Manhattan Private room 35
## 15584 Brooklyn Private room 90
## 15585 Manhattan Private room 53
## 15586 Manhattan Entire home/apt 300
## 15587 Brooklyn Entire home/apt 80
## 15588 Manhattan Entire home/apt 299
## 15589 Brooklyn Private room 41
## 15590 Brooklyn Private room 50
## 15591 Queens Entire home/apt 70
## 15592 Manhattan Entire home/apt 500
## 15593 Manhattan Entire home/apt 185
## 15594 Manhattan Private room 98
## 15595 Manhattan Entire home/apt 399
## 15596 Manhattan Entire home/apt 170
## 15597 Manhattan Private room 80
## 15598 Manhattan Entire home/apt 376
## 15599 Bronx Entire home/apt 99
## 15600 Manhattan Entire home/apt 200
## 15601 Brooklyn Entire home/apt 91
## 15602 Brooklyn Entire home/apt 60
## 15603 Manhattan Private room 60
## 15604 Brooklyn Private room 50
## 15605 Manhattan Entire home/apt 250
## 15606 Manhattan Entire home/apt 209
## 15607 Brooklyn Private room 65
## 15608 Queens Private room 48
## 15609 Manhattan Private room 60
## 15610 Staten Island Entire home/apt 165
## 15611 Manhattan Entire home/apt 218
## 15612 Manhattan Entire home/apt 160
## 15613 Manhattan Entire home/apt 200
## 15614 Brooklyn Private room 53
## 15615 Brooklyn Private room 65
## 15616 Brooklyn Entire home/apt 280
## 15617 Brooklyn Private room 60
## 15618 Brooklyn Entire home/apt 800
## 15619 Queens Entire home/apt 99
## 15620 Manhattan Entire home/apt 120
## 15621 Manhattan Private room 70
## 15622 Manhattan Entire home/apt 235
## 15623 Manhattan Entire home/apt 275
## 15624 Queens Private room 86
## 15625 Manhattan Shared room 49
## 15626 Manhattan Private room 85
## 15627 Queens Entire home/apt 125
## 15628 Manhattan Private room 85
## 15629 Brooklyn Entire home/apt 70
## 15630 Brooklyn Private room 60
## 15631 Brooklyn Private room 50
## 15632 Manhattan Entire home/apt 218
## 15633 Manhattan Entire home/apt 135
## 15634 Brooklyn Private room 120
## 15635 Queens Private room 55
## 15636 Brooklyn Entire home/apt 150
## 15637 Brooklyn Entire home/apt 75
## 15638 Manhattan Private room 43
## 15639 Manhattan Entire home/apt 115
## 15640 Queens Private room 60
## 15641 Brooklyn Entire home/apt 160
## 15642 Manhattan Shared room 39
## 15643 Manhattan Private room 45
## 15644 Brooklyn Private room 45
## 15645 Manhattan Private room 25
## 15646 Brooklyn Private room 65
## 15647 Manhattan Entire home/apt 125
## 15648 Queens Private room 67
## 15649 Brooklyn Private room 52
## 15650 Manhattan Entire home/apt 110
## 15651 Brooklyn Entire home/apt 177
## 15652 Queens Private room 25
## 15653 Brooklyn Entire home/apt 175
## 15654 Brooklyn Entire home/apt 150
## 15655 Brooklyn Private room 75
## 15656 Brooklyn Private room 41
## 15657 Manhattan Entire home/apt 185
## 15658 Queens Entire home/apt 175
## 15659 Manhattan Private room 40
## 15660 Brooklyn Entire home/apt 135
## 15661 Brooklyn Entire home/apt 195
## 15662 Brooklyn Private room 30
## 15663 Brooklyn Private room 50
## 15664 Brooklyn Private room 40
## 15665 Manhattan Entire home/apt 150
## 15666 Brooklyn Private room 75
## 15667 Manhattan Private room 100
## 15668 Brooklyn Private room 65
## 15669 Brooklyn Private room 250
## 15670 Manhattan Entire home/apt 136
## 15671 Manhattan Entire home/apt 180
## 15672 Brooklyn Private room 55
## 15673 Queens Private room 65
## 15674 Brooklyn Entire home/apt 225
## 15675 Brooklyn Private room 99
## 15676 Brooklyn Private room 90
## 15677 Brooklyn Shared room 20
## 15678 Manhattan Private room 980
## 15679 Manhattan Private room 100
## 15680 Manhattan Private room 73
## 15681 Brooklyn Entire home/apt 380
## 15682 Manhattan Private room 99
## 15683 Brooklyn Entire home/apt 105
## 15684 Brooklyn Private room 35
## 15685 Brooklyn Entire home/apt 200
## 15686 Brooklyn Private room 105
## 15687 Manhattan Entire home/apt 180
## 15688 Manhattan Entire home/apt 87
## 15689 Brooklyn Private room 50
## 15690 Manhattan Private room 69
## 15691 Manhattan Entire home/apt 150
## 15692 Manhattan Private room 75
## 15693 Queens Entire home/apt 215
## 15694 Manhattan Entire home/apt 150
## 15695 Manhattan Entire home/apt 100
## 15696 Manhattan Entire home/apt 224
## 15697 Queens Private room 119
## 15698 Queens Private room 80
## 15699 Brooklyn Private room 75
## 15700 Manhattan Private room 125
## 15701 Queens Private room 58
## 15702 Brooklyn Private room 128
## 15703 Manhattan Private room 60
## 15704 Manhattan Private room 115
## 15705 Manhattan Private room 105
## 15706 Manhattan Private room 69
## 15707 Brooklyn Private room 76
## 15708 Brooklyn Private room 45
## 15709 Brooklyn Private room 80
## 15710 Brooklyn Private room 75
## 15711 Manhattan Entire home/apt 200
## 15712 Brooklyn Private room 89
## 15713 Brooklyn Private room 80
## 15714 Manhattan Entire home/apt 197
## 15715 Manhattan Shared room 35
## 15716 Brooklyn Entire home/apt 180
## 15717 Manhattan Private room 90
## 15718 Brooklyn Entire home/apt 125
## 15719 Manhattan Entire home/apt 170
## 15720 Manhattan Entire home/apt 180
## 15721 Manhattan Entire home/apt 142
## 15722 Queens Private room 60
## 15723 Manhattan Private room 98
## 15724 Queens Private room 40
## 15725 Manhattan Private room 59
## 15726 Queens Private room 40
## 15727 Manhattan Entire home/apt 250
## 15728 Brooklyn Private room 80
## 15729 Queens Private room 50
## 15730 Manhattan Private room 50
## 15731 Queens Private room 65
## 15732 Manhattan Entire home/apt 140
## 15733 Brooklyn Private room 47
## 15734 Manhattan Entire home/apt 184
## 15735 Brooklyn Entire home/apt 139
## 15736 Brooklyn Entire home/apt 57
## 15737 Brooklyn Entire home/apt 150
## 15738 Brooklyn Private room 43
## 15739 Manhattan Private room 50
## 15740 Queens Entire home/apt 250
## 15741 Brooklyn Entire home/apt 125
## 15742 Brooklyn Private room 50
## 15743 Manhattan Entire home/apt 240
## 15744 Brooklyn Private room 60
## 15745 Brooklyn Entire home/apt 160
## 15746 Manhattan Private room 45
## 15747 Manhattan Private room 38
## 15748 Brooklyn Private room 100
## 15749 Manhattan Private room 85
## 15750 Brooklyn Private room 50
## 15751 Queens Entire home/apt 135
## 15752 Manhattan Entire home/apt 259
## 15753 Manhattan Private room 50
## 15754 Manhattan Private room 60
## 15755 Brooklyn Private room 70
## 15756 Brooklyn Private room 99
## 15757 Manhattan Shared room 80
## 15758 Queens Entire home/apt 190
## 15759 Manhattan Entire home/apt 115
## 15760 Manhattan Entire home/apt 250
## 15761 Brooklyn Private room 70
## 15762 Brooklyn Entire home/apt 225
## 15763 Brooklyn Private room 31
## 15764 Brooklyn Private room 40
## 15765 Brooklyn Private room 37
## 15766 Brooklyn Entire home/apt 239
## 15767 Manhattan Private room 75
## 15768 Manhattan Private room 90
## 15769 Manhattan Private room 46
## 15770 Manhattan Private room 35
## 15771 Brooklyn Entire home/apt 85
## 15772 Manhattan Entire home/apt 175
## 15773 Queens Private room 60
## 15774 Manhattan Entire home/apt 155
## 15775 Manhattan Entire home/apt 143
## 15776 Manhattan Entire home/apt 140
## 15777 Manhattan Entire home/apt 120
## 15778 Queens Entire home/apt 79
## 15779 Manhattan Private room 50
## 15780 Queens Private room 289
## 15781 Brooklyn Entire home/apt 62
## 15782 Queens Private room 85
## 15783 Brooklyn Private room 99
## 15784 Brooklyn Private room 50
## 15785 Brooklyn Entire home/apt 120
## 15786 Brooklyn Entire home/apt 180
## 15787 Manhattan Entire home/apt 90
## 15788 Brooklyn Private room 80
## 15789 Manhattan Private room 49
## 15790 Brooklyn Private room 90
## 15791 Manhattan Private room 55
## 15792 Queens Private room 49
## 15793 Manhattan Entire home/apt 105
## 15794 Bronx Private room 40
## 15795 Manhattan Private room 50
## 15796 Queens Entire home/apt 120
## 15797 Manhattan Private room 90
## 15798 Brooklyn Entire home/apt 110
## 15799 Manhattan Entire home/apt 140
## 15800 Queens Entire home/apt 125
## 15801 Manhattan Entire home/apt 95
## 15802 Manhattan Entire home/apt 75
## 15803 Bronx Entire home/apt 75
## 15804 Manhattan Entire home/apt 244
## 15805 Queens Private room 75
## 15806 Manhattan Private room 75
## 15807 Manhattan Private room 105
## 15808 Brooklyn Private room 100
## 15809 Manhattan Entire home/apt 150
## 15810 Bronx Entire home/apt 175
## 15811 Manhattan Private room 35
## 15812 Manhattan Private room 51
## 15813 Manhattan Private room 105
## 15814 Brooklyn Private room 80
## 15815 Manhattan Private room 84
## 15816 Brooklyn Private room 70
## 15817 Brooklyn Entire home/apt 70
## 15818 Brooklyn Entire home/apt 195
## 15819 Manhattan Entire home/apt 150
## 15820 Manhattan Private room 100
## 15821 Manhattan Private room 100
## 15822 Manhattan Private room 85
## 15823 Brooklyn Entire home/apt 225
## 15824 Manhattan Private room 120
## 15825 Manhattan Private room 90
## 15826 Brooklyn Entire home/apt 175
## 15827 Manhattan Private room 65
## 15828 Queens Entire home/apt 260
## 15829 Brooklyn Entire home/apt 225
## 15830 Brooklyn Entire home/apt 135
## 15831 Brooklyn Private room 135
## 15832 Brooklyn Entire home/apt 195
## 15833 Manhattan Private room 99
## 15834 Manhattan Entire home/apt 1000
## 15835 Manhattan Entire home/apt 177
## 15836 Manhattan Private room 59
## 15837 Manhattan Entire home/apt 190
## 15838 Manhattan Entire home/apt 1000
## 15839 Brooklyn Private room 80
## 15840 Queens Private room 60
## 15841 Manhattan Entire home/apt 195
## 15842 Brooklyn Private room 60
## 15843 Brooklyn Entire home/apt 99
## 15844 Brooklyn Private room 79
## 15845 Brooklyn Entire home/apt 125
## 15846 Brooklyn Private room 89
## 15847 Manhattan Private room 55
## 15848 Queens Entire home/apt 130
## 15849 Brooklyn Private room 70
## 15850 Brooklyn Entire home/apt 110
## 15851 Manhattan Private room 100
## 15852 Brooklyn Private room 145
## 15853 Manhattan Entire home/apt 195
## 15854 Queens Private room 30
## 15855 Brooklyn Private room 50
## 15856 Queens Entire home/apt 68
## 15857 Manhattan Private room 90
## 15858 Manhattan Entire home/apt 85
## 15859 Brooklyn Entire home/apt 200
## 15860 Brooklyn Entire home/apt 100
## 15861 Manhattan Private room 150
## 15862 Manhattan Entire home/apt 199
## 15863 Manhattan Private room 60
## 15864 Queens Entire home/apt 135
## 15865 Manhattan Private room 100
## 15866 Manhattan Entire home/apt 163
## 15867 Manhattan Entire home/apt 187
## 15868 Manhattan Entire home/apt 225
## 15869 Brooklyn Entire home/apt 120
## 15870 Brooklyn Private room 73
## 15871 Brooklyn Private room 100
## 15872 Brooklyn Entire home/apt 99
## 15873 Brooklyn Entire home/apt 300
## 15874 Manhattan Entire home/apt 92
## 15875 Brooklyn Private room 42
## 15876 Manhattan Private room 100
## 15877 Queens Private room 40
## 15878 Manhattan Entire home/apt 225
## 15879 Brooklyn Entire home/apt 170
## 15880 Queens Entire home/apt 125
## 15881 Brooklyn Entire home/apt 109
## 15882 Manhattan Entire home/apt 150
## 15883 Manhattan Private room 50
## 15884 Bronx Private room 49
## 15885 Brooklyn Entire home/apt 265
## 15886 Manhattan Private room 80
## 15887 Brooklyn Private room 44
## 15888 Manhattan Private room 260
## 15889 Manhattan Entire home/apt 133
## 15890 Queens Entire home/apt 80
## 15891 Brooklyn Private room 1000
## 15892 Manhattan Entire home/apt 154
## 15893 Brooklyn Entire home/apt 150
## 15894 Manhattan Private room 150
## 15895 Manhattan Entire home/apt 125
## 15896 Manhattan Private room 60
## 15897 Brooklyn Private room 95
## 15898 Manhattan Entire home/apt 75
## 15899 Manhattan Entire home/apt 100
## 15900 Manhattan Entire home/apt 100
## 15901 Manhattan Private room 65
## 15902 Manhattan Entire home/apt 200
## 15903 Manhattan Entire home/apt 180
## 15904 Queens Private room 60
## 15905 Queens Private room 33
## 15906 Manhattan Private room 112
## 15907 Brooklyn Entire home/apt 150
## 15908 Manhattan Entire home/apt 230
## 15909 Brooklyn Private room 65
## 15910 Manhattan Entire home/apt 375
## 15911 Manhattan Private room 130
## 15912 Queens Entire home/apt 400
## 15913 Manhattan Private room 120
## 15914 Manhattan Entire home/apt 900
## 15915 Manhattan Entire home/apt 150
## 15916 Queens Private room 40
## 15917 Brooklyn Private room 150
## 15918 Brooklyn Private room 30
## 15919 Manhattan Entire home/apt 191
## 15920 Manhattan Entire home/apt 219
## 15921 Brooklyn Entire home/apt 250
## 15922 Brooklyn Entire home/apt 180
## 15923 Manhattan Entire home/apt 115
## 15924 Manhattan Private room 145
## 15925 Manhattan Entire home/apt 399
## 15926 Brooklyn Private room 52
## 15927 Manhattan Entire home/apt 95
## 15928 Brooklyn Entire home/apt 190
## 15929 Manhattan Entire home/apt 480
## 15930 Manhattan Entire home/apt 180
## 15931 Brooklyn Entire home/apt 150
## 15932 Brooklyn Private room 150
## 15933 Manhattan Private room 140
## 15934 Brooklyn Private room 70
## 15935 Brooklyn Private room 70
## 15936 Manhattan Entire home/apt 197
## 15937 Manhattan Entire home/apt 310
## 15938 Manhattan Entire home/apt 128
## 15939 Manhattan Entire home/apt 150
## 15940 Brooklyn Private room 26
## 15941 Queens Entire home/apt 75
## 15942 Manhattan Entire home/apt 280
## 15943 Manhattan Private room 93
## 15944 Manhattan Entire home/apt 390
## 15945 Manhattan Entire home/apt 115
## 15946 Manhattan Entire home/apt 256
## 15947 Manhattan Entire home/apt 250
## 15948 Manhattan Entire home/apt 200
## 15949 Brooklyn Entire home/apt 150
## 15950 Manhattan Private room 41
## 15951 Manhattan Private room 100
## 15952 Manhattan Private room 75
## 15953 Manhattan Entire home/apt 300
## 15954 Brooklyn Private room 50
## 15955 Brooklyn Private room 85
## 15956 Brooklyn Entire home/apt 475
## 15957 Manhattan Private room 50
## 15958 Queens Private room 50
## 15959 Brooklyn Entire home/apt 179
## 15960 Manhattan Private room 72
## 15961 Manhattan Entire home/apt 150
## 15962 Brooklyn Entire home/apt 110
## 15963 Manhattan Entire home/apt 200
## 15964 Manhattan Private room 50
## 15965 Brooklyn Private room 35
## 15966 Manhattan Private room 45
## 15967 Brooklyn Entire home/apt 195
## 15968 Manhattan Entire home/apt 90
## 15969 Brooklyn Entire home/apt 325
## 15970 Brooklyn Entire home/apt 100
## 15971 Manhattan Private room 85
## 15972 Staten Island Private room 40
## 15973 Manhattan Private room 80
## 15974 Manhattan Private room 149
## 15975 Manhattan Private room 67
## 15976 Brooklyn Private room 80
## 15977 Brooklyn Private room 80
## 15978 Brooklyn Entire home/apt 275
## 15979 Brooklyn Entire home/apt 123
## 15980 Manhattan Entire home/apt 179
## 15981 Brooklyn Entire home/apt 196
## 15982 Manhattan Private room 180
## 15983 Brooklyn Entire home/apt 500
## 15984 Manhattan Entire home/apt 140
## 15985 Manhattan Private room 59
## 15986 Manhattan Entire home/apt 200
## 15987 Brooklyn Private room 165
## 15988 Brooklyn Entire home/apt 230
## 15989 Brooklyn Private room 90
## 15990 Queens Entire home/apt 200
## 15991 Manhattan Entire home/apt 450
## 15992 Manhattan Private room 120
## 15993 Queens Private room 60
## 15994 Bronx Shared room 51
## 15995 Brooklyn Entire home/apt 200
## 15996 Manhattan Entire home/apt 250
## 15997 Brooklyn Entire home/apt 160
## 15998 Manhattan Entire home/apt 180
## 15999 Brooklyn Private room 66
## 16000 Manhattan Entire home/apt 180
## 16001 Manhattan Private room 65
## 16002 Manhattan Entire home/apt 87
## 16003 Brooklyn Private room 60
## 16004 Brooklyn Entire home/apt 124
## 16005 Manhattan Entire home/apt 225
## 16006 Manhattan Entire home/apt 77
## 16007 Brooklyn Private room 79
## 16008 Manhattan Entire home/apt 239
## 16009 Brooklyn Private room 65
## 16010 Brooklyn Entire home/apt 170
## 16011 Manhattan Shared room 30
## 16012 Brooklyn Private room 72
## 16013 Brooklyn Private room 75
## 16014 Brooklyn Private room 35
## 16015 Brooklyn Private room 45
## 16016 Manhattan Private room 67
## 16017 Manhattan Entire home/apt 700
## 16018 Manhattan Entire home/apt 150
## 16019 Brooklyn Entire home/apt 115
## 16020 Brooklyn Entire home/apt 150
## 16021 Brooklyn Private room 50
## 16022 Manhattan Private room 60
## 16023 Manhattan Private room 50
## 16024 Bronx Private room 34
## 16025 Brooklyn Entire home/apt 100
## 16026 Manhattan Entire home/apt 125
## 16027 Queens Private room 100
## 16028 Manhattan Entire home/apt 125
## 16029 Brooklyn Private room 45
## 16030 Manhattan Entire home/apt 198
## 16031 Manhattan Private room 150
## 16032 Brooklyn Private room 39
## 16033 Manhattan Entire home/apt 150
## 16034 Queens Private room 80
## 16035 Manhattan Private room 46
## 16036 Staten Island Entire home/apt 78
## 16037 Brooklyn Entire home/apt 219
## 16038 Manhattan Private room 145
## 16039 Manhattan Entire home/apt 220
## 16040 Manhattan Entire home/apt 225
## 16041 Manhattan Entire home/apt 2000
## 16042 Manhattan Entire home/apt 175
## 16043 Brooklyn Entire home/apt 220
## 16044 Brooklyn Shared room 85
## 16045 Brooklyn Private room 77
## 16046 Manhattan Private room 110
## 16047 Queens Private room 58
## 16048 Manhattan Entire home/apt 350
## 16049 Manhattan Entire home/apt 329
## 16050 Queens Private room 58
## 16051 Queens Private room 60
## 16052 Queens Shared room 43
## 16053 Brooklyn Private room 88
## 16054 Brooklyn Entire home/apt 90
## 16055 Brooklyn Private room 41
## 16056 Brooklyn Private room 65
## 16057 Brooklyn Entire home/apt 95
## 16058 Manhattan Entire home/apt 160
## 16059 Brooklyn Entire home/apt 140
## 16060 Manhattan Entire home/apt 169
## 16061 Manhattan Entire home/apt 115
## 16062 Brooklyn Private room 67
## 16063 Brooklyn Private room 60
## 16064 Brooklyn Private room 45
## 16065 Manhattan Private room 60
## 16066 Manhattan Entire home/apt 142
## 16067 Brooklyn Entire home/apt 350
## 16068 Manhattan Private room 40
## 16069 Brooklyn Private room 65
## 16070 Queens Private room 50
## 16071 Queens Private room 42
## 16072 Bronx Shared room 130
## 16073 Manhattan Private room 100
## 16074 Manhattan Entire home/apt 175
## 16075 Manhattan Entire home/apt 399
## 16076 Manhattan Entire home/apt 110
## 16077 Queens Private room 45
## 16078 Queens Private room 40
## 16079 Manhattan Private room 100
## 16080 Brooklyn Entire home/apt 575
## 16081 Queens Private room 63
## 16082 Manhattan Entire home/apt 177
## 16083 Manhattan Entire home/apt 158
## 16084 Brooklyn Entire home/apt 400
## 16085 Brooklyn Entire home/apt 90
## 16086 Manhattan Entire home/apt 135
## 16087 Brooklyn Entire home/apt 200
## 16088 Brooklyn Entire home/apt 155
## 16089 Manhattan Private room 100
## 16090 Manhattan Entire home/apt 315
## 16091 Manhattan Shared room 45
## 16092 Manhattan Private room 125
## 16093 Manhattan Private room 49
## 16094 Manhattan Entire home/apt 220
## 16095 Manhattan Private room 220
## 16096 Queens Entire home/apt 100
## 16097 Brooklyn Private room 70
## 16098 Manhattan Entire home/apt 74
## 16099 Manhattan Entire home/apt 290
## 16100 Brooklyn Entire home/apt 100
## 16101 Brooklyn Private room 85
## 16102 Manhattan Entire home/apt 199
## 16103 Brooklyn Private room 65
## 16104 Brooklyn Private room 45
## 16105 Manhattan Private room 95
## 16106 Manhattan Private room 95
## 16107 Brooklyn Entire home/apt 80
## 16108 Manhattan Entire home/apt 300
## 16109 Manhattan Entire home/apt 259
## 16110 Manhattan Entire home/apt 120
## 16111 Manhattan Entire home/apt 150
## 16112 Manhattan Entire home/apt 120
## 16113 Manhattan Entire home/apt 225
## 16114 Brooklyn Private room 100
## 16115 Brooklyn Entire home/apt 160
## 16116 Manhattan Private room 49
## 16117 Manhattan Entire home/apt 150
## 16118 Manhattan Private room 100
## 16119 Manhattan Entire home/apt 275
## 16120 Brooklyn Private room 45
## 16121 Brooklyn Entire home/apt 195
## 16122 Brooklyn Private room 100
## 16123 Brooklyn Private room 1000
## 16124 Manhattan Entire home/apt 195
## 16125 Queens Entire home/apt 87
## 16126 Brooklyn Entire home/apt 120
## 16127 Manhattan Entire home/apt 170
## 16128 Manhattan Entire home/apt 160
## 16129 Brooklyn Private room 50
## 16130 Brooklyn Private room 75
## 16131 Brooklyn Entire home/apt 225
## 16132 Brooklyn Entire home/apt 125
## 16133 Manhattan Entire home/apt 350
## 16134 Brooklyn Entire home/apt 175
## 16135 Brooklyn Private room 65
## 16136 Manhattan Entire home/apt 350
## 16137 Brooklyn Private room 45
## 16138 Brooklyn Entire home/apt 120
## 16139 Queens Entire home/apt 75
## 16140 Manhattan Private room 100
## 16141 Manhattan Entire home/apt 850
## 16142 Brooklyn Private room 40
## 16143 Queens Shared room 100
## 16144 Brooklyn Entire home/apt 178
## 16145 Queens Entire home/apt 170
## 16146 Queens Private room 45
## 16147 Manhattan Entire home/apt 180
## 16148 Brooklyn Private room 89
## 16149 Brooklyn Private room 50
## 16150 Brooklyn Private room 80
## 16151 Brooklyn Entire home/apt 250
## 16152 Manhattan Private room 70
## 16153 Manhattan Entire home/apt 170
## 16154 Manhattan Private room 90
## 16155 Manhattan Shared room 45
## 16156 Brooklyn Entire home/apt 100
## 16157 Brooklyn Private room 65
## 16158 Manhattan Shared room 45
## 16159 Manhattan Shared room 45
## 16160 Manhattan Shared room 45
## 16161 Manhattan Private room 90
## 16162 Manhattan Entire home/apt 150
## 16163 Brooklyn Private room 62
## 16164 Brooklyn Entire home/apt 125
## 16165 Manhattan Entire home/apt 125
## 16166 Brooklyn Entire home/apt 175
## 16167 Brooklyn Shared room 75
## 16168 Brooklyn Private room 30
## 16169 Manhattan Entire home/apt 295
## 16170 Brooklyn Entire home/apt 50
## 16171 Brooklyn Private room 28
## 16172 Brooklyn Private room 69
## 16173 Manhattan Private room 75
## 16174 Manhattan Entire home/apt 175
## 16175 Brooklyn Private room 50
## 16176 Manhattan Private room 90
## 16177 Manhattan Private room 100
## 16178 Brooklyn Private room 49
## 16179 Manhattan Private room 55
## 16180 Manhattan Entire home/apt 249
## 16181 Queens Private room 36
## 16182 Queens Private room 65
## 16183 Brooklyn Private room 60
## 16184 Manhattan Entire home/apt 180
## 16185 Brooklyn Private room 50
## 16186 Brooklyn Entire home/apt 110
## 16187 Manhattan Entire home/apt 87
## 16188 Brooklyn Entire home/apt 100
## 16189 Queens Entire home/apt 120
## 16190 Brooklyn Private room 42
## 16191 Manhattan Entire home/apt 145
## 16192 Queens Entire home/apt 110
## 16193 Manhattan Private room 99
## 16194 Brooklyn Entire home/apt 129
## 16195 Manhattan Entire home/apt 186
## 16196 Brooklyn Entire home/apt 350
## 16197 Brooklyn Entire home/apt 165
## 16198 Manhattan Entire home/apt 210
## 16199 Queens Entire home/apt 119
## 16200 Manhattan Private room 75
## 16201 Manhattan Entire home/apt 400
## 16202 Brooklyn Private room 60
## 16203 Brooklyn Private room 140
## 16204 Manhattan Entire home/apt 190
## 16205 Manhattan Entire home/apt 245
## 16206 Manhattan Entire home/apt 245
## 16207 Manhattan Entire home/apt 192
## 16208 Queens Entire home/apt 89
## 16209 Manhattan Entire home/apt 219
## 16210 Manhattan Entire home/apt 179
## 16211 Manhattan Entire home/apt 199
## 16212 Manhattan Entire home/apt 238
## 16213 Brooklyn Entire home/apt 140
## 16214 Brooklyn Private room 37
## 16215 Manhattan Shared room 49
## 16216 Manhattan Entire home/apt 115
## 16217 Brooklyn Private room 69
## 16218 Manhattan Entire home/apt 100
## 16219 Manhattan Entire home/apt 300
## 16220 Queens Private room 52
## 16221 Brooklyn Private room 50
## 16222 Manhattan Entire home/apt 100
## 16223 Brooklyn Private room 55
## 16224 Brooklyn Entire home/apt 199
## 16225 Brooklyn Private room 90
## 16226 Brooklyn Entire home/apt 65
## 16227 Manhattan Entire home/apt 400
## 16228 Brooklyn Entire home/apt 65
## 16229 Queens Entire home/apt 71
## 16230 Manhattan Entire home/apt 199
## 16231 Manhattan Entire home/apt 163
## 16232 Manhattan Entire home/apt 126
## 16233 Manhattan Entire home/apt 150
## 16234 Manhattan Entire home/apt 199
## 16235 Brooklyn Private room 51
## 16236 Manhattan Entire home/apt 256
## 16237 Manhattan Entire home/apt 289
## 16238 Manhattan Entire home/apt 219
## 16239 Manhattan Entire home/apt 239
## 16240 Brooklyn Entire home/apt 125
## 16241 Brooklyn Private room 90
## 16242 Manhattan Entire home/apt 150
## 16243 Brooklyn Private room 40
## 16244 Brooklyn Entire home/apt 120
## 16245 Manhattan Private room 200
## 16246 Manhattan Entire home/apt 126
## 16247 Manhattan Entire home/apt 200
## 16248 Queens Entire home/apt 195
## 16249 Manhattan Entire home/apt 175
## 16250 Manhattan Entire home/apt 159
## 16251 Manhattan Private room 130
## 16252 Manhattan Entire home/apt 170
## 16253 Brooklyn Private room 60
## 16254 Queens Entire home/apt 110
## 16255 Queens Private room 70
## 16256 Brooklyn Entire home/apt 105
## 16257 Manhattan Private room 100
## 16258 Manhattan Entire home/apt 140
## 16259 Manhattan Entire home/apt 175
## 16260 Manhattan Entire home/apt 198
## 16261 Brooklyn Entire home/apt 90
## 16262 Brooklyn Entire home/apt 128
## 16263 Manhattan Entire home/apt 110
## 16264 Queens Entire home/apt 99
## 16265 Brooklyn Private room 125
## 16266 Manhattan Entire home/apt 160
## 16267 Manhattan Entire home/apt 270
## 16268 Manhattan Entire home/apt 205
## 16269 Manhattan Entire home/apt 205
## 16270 Manhattan Entire home/apt 230
## 16271 Brooklyn Private room 40
## 16272 Brooklyn Entire home/apt 700
## 16273 Brooklyn Private room 69
## 16274 Brooklyn Entire home/apt 225
## 16275 Brooklyn Private room 50
## 16276 Brooklyn Private room 45
## 16277 Manhattan Entire home/apt 159
## 16278 Manhattan Entire home/apt 250
## 16279 Brooklyn Private room 43
## 16280 Manhattan Entire home/apt 180
## 16281 Brooklyn Entire home/apt 225
## 16282 Manhattan Entire home/apt 190
## 16283 Queens Private room 49
## 16284 Manhattan Entire home/apt 294
## 16285 Manhattan Entire home/apt 559
## 16286 Brooklyn Private room 109
## 16287 Manhattan Entire home/apt 250
## 16288 Manhattan Entire home/apt 269
## 16289 Brooklyn Private room 81
## 16290 Brooklyn Private room 53
## 16291 Manhattan Entire home/apt 206
## 16292 Manhattan Private room 40
## 16293 Queens Entire home/apt 130
## 16294 Manhattan Entire home/apt 105
## 16295 Manhattan Private room 75
## 16296 Brooklyn Entire home/apt 499
## 16297 Manhattan Entire home/apt 165
## 16298 Manhattan Private room 55
## 16299 Bronx Entire home/apt 57
## 16300 Brooklyn Entire home/apt 201
## 16301 Brooklyn Entire home/apt 80
## 16302 Brooklyn Private room 80
## 16303 Brooklyn Entire home/apt 59
## 16304 Manhattan Entire home/apt 250
## 16305 Manhattan Private room 200
## 16306 Manhattan Shared room 100
## 16307 Manhattan Private room 60
## 16308 Brooklyn Entire home/apt 150
## 16309 Manhattan Entire home/apt 215
## 16310 Queens Private room 40
## 16311 Brooklyn Entire home/apt 175
## 16312 Queens Entire home/apt 151
## 16313 Manhattan Entire home/apt 250
## 16314 Queens Private room 100
## 16315 Manhattan Entire home/apt 200
## 16316 Brooklyn Entire home/apt 120
## 16317 Brooklyn Entire home/apt 100
## 16318 Manhattan Entire home/apt 135
## 16319 Manhattan Private room 80
## 16320 Manhattan Private room 60
## 16321 Manhattan Entire home/apt 123
## 16322 Brooklyn Entire home/apt 189
## 16323 Manhattan Entire home/apt 235
## 16324 Manhattan Entire home/apt 90
## 16325 Brooklyn Private room 85
## 16326 Brooklyn Private room 40
## 16327 Bronx Entire home/apt 67
## 16328 Brooklyn Private room 63
## 16329 Brooklyn Entire home/apt 150
## 16330 Brooklyn Private room 70
## 16331 Manhattan Private room 75
## 16332 Manhattan Entire home/apt 99
## 16333 Manhattan Entire home/apt 199
## 16334 Queens Private room 195
## 16335 Brooklyn Entire home/apt 67
## 16336 Queens Private room 71
## 16337 Brooklyn Private room 35
## 16338 Brooklyn Private room 100
## 16339 Brooklyn Private room 158
## 16340 Brooklyn Private room 30
## 16341 Manhattan Entire home/apt 138
## 16342 Brooklyn Private room 52
## 16343 Queens Private room 120
## 16344 Queens Entire home/apt 125
## 16345 Manhattan Entire home/apt 119
## 16346 Brooklyn Entire home/apt 225
## 16347 Manhattan Private room 75
## 16348 Brooklyn Private room 60
## 16349 Manhattan Entire home/apt 70
## 16350 Queens Private room 50
## 16351 Brooklyn Private room 45
## 16352 Manhattan Entire home/apt 600
## 16353 Brooklyn Entire home/apt 175
## 16354 Brooklyn Entire home/apt 150
## 16355 Brooklyn Private room 76
## 16356 Brooklyn Entire home/apt 200
## 16357 Brooklyn Entire home/apt 170
## 16358 Manhattan Entire home/apt 225
## 16359 Brooklyn Private room 50
## 16360 Brooklyn Entire home/apt 150
## 16361 Manhattan Private room 100
## 16362 Manhattan Entire home/apt 202
## 16363 Manhattan Private room 60
## 16364 Brooklyn Entire home/apt 99
## 16365 Queens Private room 38
## 16366 Manhattan Private room 70
## 16367 Brooklyn Entire home/apt 117
## 16368 Manhattan Entire home/apt 200
## 16369 Brooklyn Entire home/apt 99
## 16370 Brooklyn Private room 75
## 16371 Manhattan Entire home/apt 105
## 16372 Manhattan Entire home/apt 130
## 16373 Queens Private room 80
## 16374 Manhattan Entire home/apt 100
## 16375 Brooklyn Entire home/apt 195
## 16376 Brooklyn Private room 115
## 16377 Manhattan Entire home/apt 175
## 16378 Brooklyn Entire home/apt 269
## 16379 Manhattan Entire home/apt 325
## 16380 Brooklyn Private room 40
## 16381 Manhattan Entire home/apt 80
## 16382 Queens Entire home/apt 509
## 16383 Brooklyn Entire home/apt 200
## 16384 Manhattan Entire home/apt 278
## 16385 Manhattan Entire home/apt 195
## 16386 Manhattan Entire home/apt 225
## 16387 Queens Shared room 35
## 16388 Queens Entire home/apt 92
## 16389 Manhattan Private room 65
## 16390 Brooklyn Entire home/apt 300
## 16391 Brooklyn Private room 95
## 16392 Queens Private room 95
## 16393 Manhattan Entire home/apt 119
## 16394 Manhattan Entire home/apt 154
## 16395 Manhattan Private room 80
## 16396 Manhattan Entire home/apt 250
## 16397 Brooklyn Entire home/apt 99
## 16398 Queens Private room 75
## 16399 Brooklyn Entire home/apt 75
## 16400 Manhattan Entire home/apt 142
## 16401 Brooklyn Entire home/apt 300
## 16402 Manhattan Entire home/apt 199
## 16403 Manhattan Private room 99
## 16404 Manhattan Private room 62
## 16405 Manhattan Private room 350
## 16406 Manhattan Private room 180
## 16407 Manhattan Entire home/apt 115
## 16408 Manhattan Entire home/apt 150
## 16409 Brooklyn Private room 65
## 16410 Brooklyn Entire home/apt 85
## 16411 Manhattan Private room 70
## 16412 Manhattan Private room 50
## 16413 Brooklyn Private room 65
## 16414 Brooklyn Entire home/apt 117
## 16415 Manhattan Entire home/apt 150
## 16416 Brooklyn Entire home/apt 250
## 16417 Manhattan Entire home/apt 140
## 16418 Brooklyn Private room 70
## 16419 Brooklyn Private room 80
## 16420 Brooklyn Private room 85
## 16421 Manhattan Entire home/apt 99
## 16422 Queens Entire home/apt 99
## 16423 Brooklyn Entire home/apt 400
## 16424 Brooklyn Private room 75
## 16425 Manhattan Entire home/apt 99
## 16426 Manhattan Entire home/apt 165
## 16427 Manhattan Entire home/apt 189
## 16428 Manhattan Private room 85
## 16429 Manhattan Entire home/apt 268
## 16430 Manhattan Private room 55
## 16431 Brooklyn Entire home/apt 80
## 16432 Queens Entire home/apt 95
## 16433 Manhattan Entire home/apt 179
## 16434 Manhattan Entire home/apt 245
## 16435 Manhattan Private room 300
## 16436 Manhattan Entire home/apt 369
## 16437 Queens Private room 75
## 16438 Brooklyn Entire home/apt 136
## 16439 Brooklyn Private room 101
## 16440 Manhattan Private room 40
## 16441 Manhattan Private room 65
## 16442 Brooklyn Private room 43
## 16443 Manhattan Private room 100
## 16444 Manhattan Private room 40
## 16445 Manhattan Entire home/apt 165
## 16446 Brooklyn Entire home/apt 319
## 16447 Manhattan Entire home/apt 295
## 16448 Brooklyn Private room 56
## 16449 Manhattan Entire home/apt 219
## 16450 Queens Private room 50
## 16451 Manhattan Entire home/apt 160
## 16452 Manhattan Private room 109
## 16453 Manhattan Private room 95
## 16454 Manhattan Private room 100
## 16455 Brooklyn Entire home/apt 200
## 16456 Brooklyn Private room 50
## 16457 Brooklyn Entire home/apt 150
## 16458 Manhattan Private room 50
## 16459 Manhattan Entire home/apt 115
## 16460 Queens Entire home/apt 69
## 16461 Brooklyn Private room 60
## 16462 Manhattan Entire home/apt 350
## 16463 Manhattan Private room 131
## 16464 Manhattan Shared room 99
## 16465 Queens Private room 160
## 16466 Manhattan Entire home/apt 250
## 16467 Manhattan Entire home/apt 250
## 16468 Brooklyn Entire home/apt 150
## 16469 Manhattan Entire home/apt 150
## 16470 Queens Private room 65
## 16471 Manhattan Private room 100
## 16472 Manhattan Private room 85
## 16473 Brooklyn Private room 44
## 16474 Manhattan Entire home/apt 225
## 16475 Brooklyn Private room 79
## 16476 Brooklyn Entire home/apt 150
## 16477 Brooklyn Private room 75
## 16478 Manhattan Entire home/apt 105
## 16479 Brooklyn Private room 50
## 16480 Manhattan Entire home/apt 275
## 16481 Manhattan Private room 149
## 16482 Manhattan Private room 90
## 16483 Brooklyn Private room 56
## 16484 Brooklyn Entire home/apt 220
## 16485 Brooklyn Private room 42
## 16486 Manhattan Entire home/apt 129
## 16487 Brooklyn Private room 50
## 16488 Brooklyn Entire home/apt 110
## 16489 Manhattan Entire home/apt 160
## 16490 Brooklyn Private room 35
## 16491 Staten Island Private room 72
## 16492 Queens Entire home/apt 95
## 16493 Manhattan Entire home/apt 100
## 16494 Manhattan Private room 115
## 16495 Brooklyn Entire home/apt 115
## 16496 Manhattan Private room 79
## 16497 Manhattan Private room 36
## 16498 Manhattan Entire home/apt 138
## 16499 Brooklyn Entire home/apt 75
## 16500 Manhattan Entire home/apt 138
## 16501 Manhattan Entire home/apt 175
## 16502 Manhattan Private room 59
## 16503 Manhattan Private room 50
## 16504 Brooklyn Entire home/apt 99
## 16505 Brooklyn Private room 49
## 16506 Brooklyn Entire home/apt 113
## 16507 Queens Private room 47
## 16508 Manhattan Private room 104
## 16509 Brooklyn Entire home/apt 650
## 16510 Manhattan Private room 110
## 16511 Manhattan Entire home/apt 199
## 16512 Brooklyn Private room 67
## 16513 Brooklyn Entire home/apt 60
## 16514 Manhattan Entire home/apt 150
## 16515 Manhattan Entire home/apt 99
## 16516 Manhattan Private room 52
## 16517 Brooklyn Entire home/apt 155
## 16518 Manhattan Entire home/apt 171
## 16519 Brooklyn Private room 39
## 16520 Manhattan Shared room 120
## 16521 Brooklyn Entire home/apt 115
## 16522 Manhattan Entire home/apt 165
## 16523 Manhattan Private room 69
## 16524 Brooklyn Private room 55
## 16525 Queens Private room 60
## 16526 Brooklyn Entire home/apt 133
## 16527 Manhattan Private room 79
## 16528 Brooklyn Entire home/apt 79
## 16529 Manhattan Entire home/apt 160
## 16530 Manhattan Entire home/apt 170
## 16531 Queens Private room 45
## 16532 Manhattan Entire home/apt 249
## 16533 Manhattan Private room 66
## 16534 Brooklyn Private room 52
## 16535 Manhattan Entire home/apt 200
## 16536 Manhattan Private room 80
## 16537 Brooklyn Private room 75
## 16538 Manhattan Private room 125
## 16539 Bronx Entire home/apt 68
## 16540 Manhattan Private room 65
## 16541 Manhattan Private room 79
## 16542 Brooklyn Entire home/apt 125
## 16543 Brooklyn Entire home/apt 105
## 16544 Brooklyn Entire home/apt 140
## 16545 Brooklyn Private room 70
## 16546 Manhattan Entire home/apt 2000
## 16547 Manhattan Private room 100
## 16548 Manhattan Shared room 75
## 16549 Brooklyn Private room 36
## 16550 Manhattan Entire home/apt 240
## 16551 Manhattan Entire home/apt 200
## 16552 Manhattan Entire home/apt 250
## 16553 Brooklyn Shared room 46
## 16554 Manhattan Entire home/apt 120
## 16555 Manhattan Private room 80
## 16556 Manhattan Entire home/apt 120
## 16557 Brooklyn Entire home/apt 150
## 16558 Manhattan Entire home/apt 120
## 16559 Manhattan Entire home/apt 200
## 16560 Manhattan Private room 100
## 16561 Brooklyn Private room 73
## 16562 Brooklyn Private room 60
## 16563 Brooklyn Entire home/apt 110
## 16564 Manhattan Private room 55
## 16565 Manhattan Entire home/apt 110
## 16566 Manhattan Private room 70
## 16567 Brooklyn Private room 60
## 16568 Brooklyn Entire home/apt 270
## 16569 Brooklyn Private room 35
## 16570 Manhattan Private room 100
## 16571 Manhattan Private room 50
## 16572 Manhattan Entire home/apt 150
## 16573 Manhattan Entire home/apt 150
## 16574 Brooklyn Private room 77
## 16575 Brooklyn Private room 59
## 16576 Manhattan Private room 110
## 16577 Manhattan Private room 110
## 16578 Brooklyn Private room 45
## 16579 Queens Private room 125
## 16580 Manhattan Private room 110
## 16581 Brooklyn Private room 89
## 16582 Brooklyn Private room 75
## 16583 Brooklyn Private room 100
## 16584 Brooklyn Entire home/apt 250
## 16585 Manhattan Entire home/apt 149
## 16586 Brooklyn Private room 50
## 16587 Bronx Entire home/apt 95
## 16588 Brooklyn Entire home/apt 160
## 16589 Manhattan Private room 79
## 16590 Brooklyn Entire home/apt 97
## 16591 Brooklyn Private room 75
## 16592 Brooklyn Private room 65
## 16593 Brooklyn Entire home/apt 95
## 16594 Manhattan Entire home/apt 185
## 16595 Brooklyn Entire home/apt 68
## 16596 Manhattan Private room 85
## 16597 Brooklyn Private room 150
## 16598 Brooklyn Private room 65
## 16599 Manhattan Entire home/apt 200
## 16600 Brooklyn Private room 55
## 16601 Brooklyn Private room 100
## 16602 Manhattan Entire home/apt 250
## 16603 Brooklyn Private room 89
## 16604 Brooklyn Private room 100
## 16605 Manhattan Entire home/apt 300
## 16606 Queens Private room 45
## 16607 Manhattan Entire home/apt 133
## 16608 Bronx Entire home/apt 500
## 16609 Brooklyn Private room 68
## 16610 Brooklyn Private room 56
## 16611 Manhattan Private room 75
## 16612 Brooklyn Private room 80
## 16613 Manhattan Private room 299
## 16614 Brooklyn Private room 51
## 16615 Manhattan Private room 115
## 16616 Brooklyn Entire home/apt 180
## 16617 Brooklyn Private room 50
## 16618 Brooklyn Private room 80
## 16619 Queens Entire home/apt 300
## 16620 Brooklyn Entire home/apt 79
## 16621 Manhattan Entire home/apt 150
## 16622 Brooklyn Entire home/apt 94
## 16623 Brooklyn Private room 65
## 16624 Manhattan Private room 83
## 16625 Brooklyn Private room 50
## 16626 Brooklyn Entire home/apt 120
## 16627 Brooklyn Private room 500
## 16628 Brooklyn Private room 600
## 16629 Brooklyn Entire home/apt 300
## 16630 Manhattan Entire home/apt 150
## 16631 Brooklyn Entire home/apt 149
## 16632 Manhattan Entire home/apt 150
## 16633 Manhattan Private room 75
## 16634 Manhattan Entire home/apt 195
## 16635 Brooklyn Private room 80
## 16636 Manhattan Entire home/apt 250
## 16637 Manhattan Entire home/apt 225
## 16638 Manhattan Entire home/apt 450
## 16639 Queens Private room 35
## 16640 Brooklyn Private room 70
## 16641 Brooklyn Private room 80
## 16642 Brooklyn Private room 75
## 16643 Brooklyn Private room 79
## 16644 Manhattan Private room 84
## 16645 Manhattan Entire home/apt 172
## 16646 Manhattan Entire home/apt 110
## 16647 Brooklyn Private room 55
## 16648 Queens Private room 78
## 16649 Brooklyn Entire home/apt 115
## 16650 Manhattan Entire home/apt 180
## 16651 Bronx Entire home/apt 139
## 16652 Brooklyn Private room 120
## 16653 Brooklyn Entire home/apt 77
## 16654 Manhattan Entire home/apt 150
## 16655 Manhattan Private room 67
## 16656 Manhattan Entire home/apt 159
## 16657 Brooklyn Private room 100
## 16658 Brooklyn Private room 65
## 16659 Manhattan Entire home/apt 199
## 16660 Brooklyn Private room 75
## 16661 Manhattan Private room 70
## 16662 Bronx Private room 49
## 16663 Bronx Private room 41
## 16664 Manhattan Private room 150
## 16665 Manhattan Private room 60
## 16666 Queens Entire home/apt 40
## 16667 Queens Entire home/apt 99
## 16668 Manhattan Entire home/apt 250
## 16669 Brooklyn Private room 40
## 16670 Queens Private room 100
## 16671 Manhattan Entire home/apt 239
## 16672 Brooklyn Private room 50
## 16673 Manhattan Entire home/apt 110
## 16674 Brooklyn Entire home/apt 375
## 16675 Brooklyn Entire home/apt 229
## 16676 Brooklyn Entire home/apt 175
## 16677 Brooklyn Private room 40
## 16678 Bronx Private room 41
## 16679 Manhattan Private room 110
## 16680 Manhattan Entire home/apt 150
## 16681 Manhattan Entire home/apt 165
## 16682 Manhattan Entire home/apt 239
## 16683 Queens Entire home/apt 125
## 16684 Manhattan Entire home/apt 245
## 16685 Queens Private room 80
## 16686 Brooklyn Entire home/apt 329
## 16687 Brooklyn Entire home/apt 175
## 16688 Manhattan Entire home/apt 150
## 16689 Brooklyn Entire home/apt 200
## 16690 Manhattan Entire home/apt 200
## 16691 Brooklyn Private room 75
## 16692 Bronx Entire home/apt 89
## 16693 Brooklyn Entire home/apt 120
## 16694 Manhattan Private room 35
## 16695 Brooklyn Private room 100
## 16696 Brooklyn Private room 85
## 16697 Brooklyn Private room 70
## 16698 Brooklyn Entire home/apt 114
## 16699 Manhattan Entire home/apt 200
## 16700 Brooklyn Entire home/apt 225
## 16701 Manhattan Private room 120
## 16702 Manhattan Entire home/apt 199
## 16703 Manhattan Private room 55
## 16704 Manhattan Entire home/apt 199
## 16705 Bronx Private room 40
## 16706 Queens Entire home/apt 200
## 16707 Brooklyn Private room 80
## 16708 Manhattan Entire home/apt 140
## 16709 Queens Entire home/apt 50
## 16710 Manhattan Entire home/apt 375
## 16711 Brooklyn Entire home/apt 250
## 16712 Brooklyn Private room 40
## 16713 Manhattan Private room 99
## 16714 Brooklyn Entire home/apt 140
## 16715 Staten Island Entire home/apt 150
## 16716 Brooklyn Private room 75
## 16717 Brooklyn Private room 55
## 16718 Brooklyn Entire home/apt 145
## 16719 Brooklyn Entire home/apt 95
## 16720 Brooklyn Entire home/apt 69
## 16721 Brooklyn Entire home/apt 175
## 16722 Manhattan Entire home/apt 350
## 16723 Manhattan Private room 119
## 16724 Manhattan Private room 160
## 16725 Brooklyn Private room 55
## 16726 Queens Private room 48
## 16727 Manhattan Private room 85
## 16728 Manhattan Entire home/apt 97
## 16729 Brooklyn Entire home/apt 110
## 16730 Manhattan Entire home/apt 91
## 16731 Brooklyn Entire home/apt 150
## 16732 Manhattan Private room 80
## 16733 Brooklyn Private room 60
## 16734 Brooklyn Private room 55
## 16735 Brooklyn Private room 65
## 16736 Brooklyn Entire home/apt 163
## 16737 Brooklyn Private room 60
## 16738 Manhattan Private room 54
## 16739 Brooklyn Private room 46
## 16740 Queens Entire home/apt 125
## 16741 Brooklyn Entire home/apt 150
## 16742 Brooklyn Private room 47
## 16743 Queens Private room 40
## 16744 Brooklyn Entire home/apt 120
## 16745 Manhattan Private room 67
## 16746 Brooklyn Entire home/apt 73
## 16747 Brooklyn Entire home/apt 128
## 16748 Brooklyn Entire home/apt 121
## 16749 Brooklyn Entire home/apt 250
## 16750 Manhattan Entire home/apt 80
## 16751 Manhattan Entire home/apt 77
## 16752 Manhattan Entire home/apt 139
## 16753 Manhattan Entire home/apt 117
## 16754 Brooklyn Private room 75
## 16755 Queens Entire home/apt 99
## 16756 Manhattan Entire home/apt 279
## 16757 Manhattan Entire home/apt 140
## 16758 Manhattan Entire home/apt 200
## 16759 Manhattan Entire home/apt 257
## 16760 Brooklyn Private room 95
## 16761 Brooklyn Private room 65
## 16762 Manhattan Private room 149
## 16763 Queens Private room 29
## 16764 Manhattan Entire home/apt 250
## 16765 Brooklyn Entire home/apt 150
## 16766 Brooklyn Entire home/apt 120
## 16767 Manhattan Private room 85
## 16768 Manhattan Entire home/apt 259
## 16769 Queens Entire home/apt 90
## 16770 Queens Entire home/apt 74
## 16771 Manhattan Entire home/apt 90
## 16772 Queens Private room 45
## 16773 Brooklyn Private room 100
## 16774 Manhattan Private room 89
## 16775 Manhattan Entire home/apt 199
## 16776 Manhattan Entire home/apt 76
## 16777 Brooklyn Entire home/apt 143
## 16778 Brooklyn Shared room 40
## 16779 Manhattan Entire home/apt 125
## 16780 Manhattan Entire home/apt 180
## 16781 Queens Entire home/apt 110
## 16782 Brooklyn Entire home/apt 185
## 16783 Brooklyn Private room 85
## 16784 Manhattan Entire home/apt 300
## 16785 Brooklyn Entire home/apt 99
## 16786 Brooklyn Entire home/apt 125
## 16787 Brooklyn Shared room 35
## 16788 Manhattan Private room 80
## 16789 Manhattan Private room 150
## 16790 Brooklyn Entire home/apt 90
## 16791 Brooklyn Private room 40
## 16792 Brooklyn Entire home/apt 250
## 16793 Manhattan Entire home/apt 450
## 16794 Brooklyn Private room 50
## 16795 Brooklyn Entire home/apt 75
## 16796 Manhattan Entire home/apt 139
## 16797 Manhattan Entire home/apt 200
## 16798 Brooklyn Private room 65
## 16799 Brooklyn Entire home/apt 115
## 16800 Manhattan Private room 70
## 16801 Brooklyn Entire home/apt 50
## 16802 Manhattan Private room 85
## 16803 Manhattan Entire home/apt 275
## 16804 Queens Entire home/apt 120
## 16805 Manhattan Entire home/apt 185
## 16806 Manhattan Entire home/apt 150
## 16807 Manhattan Entire home/apt 145
## 16808 Brooklyn Entire home/apt 130
## 16809 Brooklyn Entire home/apt 150
## 16810 Manhattan Entire home/apt 88
## 16811 Brooklyn Private room 75
## 16812 Brooklyn Private room 38
## 16813 Manhattan Private room 64
## 16814 Manhattan Entire home/apt 185
## 16815 Manhattan Entire home/apt 165
## 16816 Brooklyn Entire home/apt 200
## 16817 Bronx Entire home/apt 75
## 16818 Brooklyn Private room 90
## 16819 Manhattan Entire home/apt 140
## 16820 Brooklyn Entire home/apt 150
## 16821 Brooklyn Entire home/apt 92
## 16822 Manhattan Private room 100
## 16823 Brooklyn Entire home/apt 135
## 16824 Brooklyn Entire home/apt 45
## 16825 Bronx Entire home/apt 110
## 16826 Manhattan Private room 250
## 16827 Manhattan Private room 154
## 16828 Manhattan Private room 175
## 16829 Brooklyn Entire home/apt 175
## 16830 Manhattan Shared room 50
## 16831 Brooklyn Entire home/apt 99
## 16832 Manhattan Entire home/apt 199
## 16833 Manhattan Entire home/apt 239
## 16834 Manhattan Entire home/apt 235
## 16835 Brooklyn Private room 45
## 16836 Staten Island Entire home/apt 85
## 16837 Manhattan Entire home/apt 239
## 16838 Queens Private room 38
## 16839 Queens Private room 65
## 16840 Manhattan Entire home/apt 79
## 16841 Brooklyn Shared room 60
## 16842 Brooklyn Private room 80
## 16843 Manhattan Entire home/apt 239
## 16844 Manhattan Entire home/apt 279
## 16845 Brooklyn Private room 35
## 16846 Manhattan Entire home/apt 239
## 16847 Manhattan Entire home/apt 200
## 16848 Bronx Private room 33
## 16849 Manhattan Entire home/apt 239
## 16850 Manhattan Entire home/apt 239
## 16851 Manhattan Entire home/apt 239
## 16852 Manhattan Entire home/apt 229
## 16853 Bronx Private room 45
## 16854 Manhattan Entire home/apt 239
## 16855 Manhattan Entire home/apt 179
## 16856 Manhattan Entire home/apt 239
## 16857 Manhattan Entire home/apt 239
## 16858 Manhattan Entire home/apt 107
## 16859 Manhattan Private room 125
## 16860 Manhattan Entire home/apt 230
## 16861 Queens Entire home/apt 100
## 16862 Brooklyn Private room 55
## 16863 Brooklyn Private room 95
## 16864 Brooklyn Private room 41
## 16865 Brooklyn Entire home/apt 40
## 16866 Manhattan Entire home/apt 150
## 16867 Manhattan Entire home/apt 150
## 16868 Manhattan Entire home/apt 219
## 16869 Manhattan Entire home/apt 142
## 16870 Bronx Entire home/apt 99
## 16871 Brooklyn Private room 41
## 16872 Manhattan Private room 48
## 16873 Manhattan Private room 301
## 16874 Manhattan Private room 52
## 16875 Brooklyn Entire home/apt 150
## 16876 Manhattan Entire home/apt 1100
## 16877 Manhattan Private room 160
## 16878 Brooklyn Private room 45
## 16879 Manhattan Entire home/apt 106
## 16880 Queens Entire home/apt 178
## 16881 Manhattan Entire home/apt 176
## 16882 Manhattan Private room 70
## 16883 Brooklyn Entire home/apt 190
## 16884 Brooklyn Private room 62
## 16885 Brooklyn Entire home/apt 175
## 16886 Manhattan Entire home/apt 125
## 16887 Manhattan Private room 76
## 16888 Brooklyn Entire home/apt 225
## 16889 Brooklyn Private room 65
## 16890 Brooklyn Private room 70
## 16891 Manhattan Entire home/apt 240
## 16892 Queens Private room 70
## 16893 Manhattan Entire home/apt 130
## 16894 Manhattan Private room 50
## 16895 Brooklyn Private room 70
## 16896 Brooklyn Private room 51
## 16897 Manhattan Private room 149
## 16898 Manhattan Entire home/apt 169
## 16899 Brooklyn Private room 50
## 16900 Manhattan Private room 120
## 16901 Manhattan Private room 120
## 16902 Manhattan Private room 105
## 16903 Brooklyn Private room 90
## 16904 Brooklyn Entire home/apt 105
## 16905 Brooklyn Entire home/apt 130
## 16906 Manhattan Entire home/apt 191
## 16907 Brooklyn Entire home/apt 100
## 16908 Manhattan Entire home/apt 288
## 16909 Manhattan Entire home/apt 150
## 16910 Brooklyn Private room 85
## 16911 Brooklyn Entire home/apt 75
## 16912 Manhattan Private room 79
## 16913 Manhattan Entire home/apt 200
## 16914 Manhattan Entire home/apt 78
## 16915 Manhattan Entire home/apt 234
## 16916 Manhattan Entire home/apt 325
## 16917 Manhattan Private room 119
## 16918 Manhattan Private room 95
## 16919 Queens Entire home/apt 255
## 16920 Queens Entire home/apt 125
## 16921 Manhattan Private room 99
## 16922 Manhattan Entire home/apt 175
## 16923 Queens Private room 150
## 16924 Brooklyn Entire home/apt 75
## 16925 Brooklyn Private room 50
## 16926 Brooklyn Entire home/apt 99
## 16927 Brooklyn Entire home/apt 85
## 16928 Manhattan Entire home/apt 137
## 16929 Manhattan Entire home/apt 165
## 16930 Brooklyn Entire home/apt 92
## 16931 Manhattan Entire home/apt 101
## 16932 Manhattan Private room 95
## 16933 Manhattan Private room 119
## 16934 Brooklyn Entire home/apt 195
## 16935 Manhattan Entire home/apt 170
## 16936 Manhattan Entire home/apt 150
## 16937 Manhattan Entire home/apt 157
## 16938 Brooklyn Private room 69
## 16939 Bronx Private room 30
## 16940 Brooklyn Entire home/apt 250
## 16941 Brooklyn Private room 40
## 16942 Queens Entire home/apt 80
## 16943 Brooklyn Private room 150
## 16944 Manhattan Private room 49
## 16945 Manhattan Private room 101
## 16946 Manhattan Private room 69
## 16947 Manhattan Entire home/apt 199
## 16948 Queens Private room 40
## 16949 Brooklyn Entire home/apt 175
## 16950 Manhattan Entire home/apt 175
## 16951 Brooklyn Private room 50
## 16952 Manhattan Private room 45
## 16953 Queens Entire home/apt 110
## 16954 Brooklyn Entire home/apt 70
## 16955 Brooklyn Entire home/apt 129
## 16956 Manhattan Entire home/apt 139
## 16957 Brooklyn Entire home/apt 135
## 16958 Manhattan Entire home/apt 90
## 16959 Brooklyn Entire home/apt 125
## 16960 Manhattan Entire home/apt 225
## 16961 Queens Entire home/apt 75
## 16962 Manhattan Private room 65
## 16963 Manhattan Entire home/apt 190
## 16964 Brooklyn Entire home/apt 85
## 16965 Brooklyn Entire home/apt 119
## 16966 Manhattan Private room 48
## 16967 Manhattan Entire home/apt 196
## 16968 Manhattan Private room 80
## 16969 Manhattan Private room 90
## 16970 Brooklyn Private room 125
## 16971 Manhattan Private room 65
## 16972 Manhattan Entire home/apt 110
## 16973 Manhattan Entire home/apt 100
## 16974 Brooklyn Entire home/apt 200
## 16975 Manhattan Entire home/apt 200
## 16976 Manhattan Entire home/apt 360
## 16977 Brooklyn Private room 65
## 16978 Brooklyn Private room 65
## 16979 Brooklyn Private room 65
## 16980 Brooklyn Entire home/apt 160
## 16981 Brooklyn Entire home/apt 450
## 16982 Manhattan Private room 75
## 16983 Manhattan Private room 69
## 16984 Brooklyn Entire home/apt 203
## 16985 Manhattan Private room 169
## 16986 Manhattan Private room 79
## 16987 Manhattan Entire home/apt 230
## 16988 Queens Private room 65
## 16989 Brooklyn Private room 50
## 16990 Brooklyn Private room 100
## 16991 Queens Private room 70
## 16992 Manhattan Entire home/apt 175
## 16993 Brooklyn Private room 142
## 16994 Brooklyn Entire home/apt 190
## 16995 Bronx Entire home/apt 350
## 16996 Manhattan Entire home/apt 140
## 16997 Bronx Entire home/apt 120
## 16998 Manhattan Private room 372
## 16999 Brooklyn Private room 61
## 17000 Queens Private room 65
## 17001 Manhattan Private room 80
## 17002 Manhattan Entire home/apt 225
## 17003 Brooklyn Private room 105
## 17004 Manhattan Entire home/apt 100
## 17005 Brooklyn Entire home/apt 50
## 17006 Manhattan Private room 109
## 17007 Manhattan Private room 75
## 17008 Manhattan Private room 100
## 17009 Brooklyn Private room 60
## 17010 Manhattan Private room 50
## 17011 Manhattan Entire home/apt 130
## 17012 Brooklyn Private room 65
## 17013 Manhattan Private room 90
## 17014 Brooklyn Private room 50
## 17015 Manhattan Private room 67
## 17016 Brooklyn Entire home/apt 100
## 17017 Queens Entire home/apt 98
## 17018 Brooklyn Private room 50
## 17019 Queens Entire home/apt 100
## 17020 Brooklyn Entire home/apt 300
## 17021 Brooklyn Private room 75
## 17022 Manhattan Entire home/apt 219
## 17023 Manhattan Entire home/apt 167
## 17024 Manhattan Entire home/apt 180
## 17025 Brooklyn Entire home/apt 95
## 17026 Manhattan Entire home/apt 250
## 17027 Brooklyn Private room 85
## 17028 Manhattan Entire home/apt 115
## 17029 Manhattan Entire home/apt 150
## 17030 Brooklyn Entire home/apt 80
## 17031 Manhattan Entire home/apt 225
## 17032 Brooklyn Entire home/apt 400
## 17033 Brooklyn Entire home/apt 325
## 17034 Manhattan Private room 99
## 17035 Manhattan Private room 90
## 17036 Manhattan Entire home/apt 110
## 17037 Brooklyn Private room 50
## 17038 Manhattan Entire home/apt 189
## 17039 Staten Island Entire home/apt 105
## 17040 Brooklyn Private room 55
## 17041 Brooklyn Entire home/apt 180
## 17042 Bronx Private room 50
## 17043 Brooklyn Private room 80
## 17044 Brooklyn Entire home/apt 120
## 17045 Brooklyn Private room 525
## 17046 Manhattan Entire home/apt 150
## 17047 Manhattan Entire home/apt 150
## 17048 Brooklyn Private room 90
## 17049 Brooklyn Entire home/apt 130
## 17050 Brooklyn Entire home/apt 155
## 17051 Manhattan Private room 90
## 17052 Manhattan Private room 90
## 17053 Brooklyn Shared room 130
## 17054 Manhattan Entire home/apt 199
## 17055 Manhattan Shared room 70
## 17056 Manhattan Private room 36
## 17057 Manhattan Private room 59
## 17058 Manhattan Entire home/apt 185
## 17059 Brooklyn Entire home/apt 75
## 17060 Manhattan Entire home/apt 150
## 17061 Brooklyn Private room 75
## 17062 Queens Private room 74
## 17063 Brooklyn Private room 80
## 17064 Manhattan Entire home/apt 161
## 17065 Manhattan Entire home/apt 260
## 17066 Queens Entire home/apt 79
## 17067 Brooklyn Private room 43
## 17068 Brooklyn Private room 60
## 17069 Manhattan Private room 100
## 17070 Manhattan Entire home/apt 210
## 17071 Manhattan Entire home/apt 245
## 17072 Brooklyn Entire home/apt 175
## 17073 Brooklyn Entire home/apt 250
## 17074 Manhattan Entire home/apt 220
## 17075 Manhattan Entire home/apt 95
## 17076 Manhattan Entire home/apt 250
## 17077 Manhattan Entire home/apt 167
## 17078 Brooklyn Private room 76
## 17079 Manhattan Entire home/apt 200
## 17080 Manhattan Entire home/apt 199
## 17081 Manhattan Entire home/apt 140
## 17082 Manhattan Private room 57
## 17083 Brooklyn Private room 60
## 17084 Brooklyn Entire home/apt 80
## 17085 Queens Entire home/apt 125
## 17086 Manhattan Entire home/apt 150
## 17087 Brooklyn Entire home/apt 70
## 17088 Manhattan Entire home/apt 125
## 17089 Brooklyn Private room 56
## 17090 Brooklyn Entire home/apt 170
## 17091 Manhattan Entire home/apt 179
## 17092 Brooklyn Entire home/apt 75
## 17093 Brooklyn Private room 65
## 17094 Manhattan Entire home/apt 295
## 17095 Brooklyn Entire home/apt 150
## 17096 Queens Entire home/apt 174
## 17097 Manhattan Private room 67
## 17098 Manhattan Entire home/apt 199
## 17099 Brooklyn Private room 62
## 17100 Queens Private room 150
## 17101 Brooklyn Private room 115
## 17102 Queens Private room 40
## 17103 Manhattan Entire home/apt 200
## 17104 Manhattan Entire home/apt 149
## 17105 Manhattan Entire home/apt 125
## 17106 Manhattan Private room 73
## 17107 Manhattan Entire home/apt 200
## 17108 Brooklyn Private room 34
## 17109 Manhattan Entire home/apt 300
## 17110 Manhattan Entire home/apt 220
## 17111 Manhattan Private room 36
## 17112 Brooklyn Private room 70
## 17113 Brooklyn Private room 89
## 17114 Brooklyn Entire home/apt 115
## 17115 Manhattan Entire home/apt 200
## 17116 Manhattan Entire home/apt 100
## 17117 Manhattan Entire home/apt 175
## 17118 Brooklyn Private room 58
## 17119 Manhattan Private room 81
## 17120 Manhattan Private room 95
## 17121 Brooklyn Private room 38
## 17122 Manhattan Entire home/apt 150
## 17123 Manhattan Private room 40
## 17124 Manhattan Entire home/apt 150
## 17125 Manhattan Entire home/apt 99
## 17126 Brooklyn Entire home/apt 250
## 17127 Manhattan Private room 69
## 17128 Brooklyn Private room 35
## 17129 Brooklyn Private room 65
## 17130 Manhattan Entire home/apt 259
## 17131 Brooklyn Entire home/apt 150
## 17132 Brooklyn Entire home/apt 270
## 17133 Brooklyn Entire home/apt 150
## 17134 Queens Private room 100
## 17135 Queens Entire home/apt 119
## 17136 Manhattan Entire home/apt 129
## 17137 Brooklyn Entire home/apt 175
## 17138 Brooklyn Private room 40
## 17139 Brooklyn Entire home/apt 125
## 17140 Queens Entire home/apt 101
## 17141 Manhattan Private room 49
## 17142 Manhattan Entire home/apt 300
## 17143 Brooklyn Private room 75
## 17144 Brooklyn Entire home/apt 85
## 17145 Brooklyn Entire home/apt 185
## 17146 Manhattan Entire home/apt 185
## 17147 Brooklyn Private room 50
## 17148 Manhattan Private room 110
## 17149 Brooklyn Private room 65
## 17150 Manhattan Entire home/apt 185
## 17151 Brooklyn Entire home/apt 195
## 17152 Manhattan Private room 85
## 17153 Manhattan Entire home/apt 295
## 17154 Brooklyn Private room 120
## 17155 Brooklyn Entire home/apt 189
## 17156 Brooklyn Private room 60
## 17157 Manhattan Entire home/apt 123
## 17158 Manhattan Private room 89
## 17159 Manhattan Entire home/apt 140
## 17160 Brooklyn Entire home/apt 85
## 17161 Manhattan Entire home/apt 169
## 17162 Manhattan Entire home/apt 145
## 17163 Brooklyn Entire home/apt 145
## 17164 Manhattan Entire home/apt 165
## 17165 Brooklyn Entire home/apt 152
## 17166 Brooklyn Private room 99
## 17167 Manhattan Entire home/apt 110
## 17168 Brooklyn Private room 40
## 17169 Manhattan Private room 115
## 17170 Brooklyn Entire home/apt 157
## 17171 Brooklyn Entire home/apt 1000
## 17172 Brooklyn Private room 72
## 17173 Queens Private room 40
## 17174 Manhattan Entire home/apt 175
## 17175 Brooklyn Entire home/apt 90
## 17176 Manhattan Private room 65
## 17177 Manhattan Private room 79
## 17178 Brooklyn Entire home/apt 350
## 17179 Brooklyn Entire home/apt 71
## 17180 Manhattan Private room 50
## 17181 Manhattan Entire home/apt 115
## 17182 Brooklyn Private room 49
## 17183 Manhattan Private room 70
## 17184 Manhattan Entire home/apt 110
## 17185 Brooklyn Entire home/apt 140
## 17186 Manhattan Entire home/apt 89
## 17187 Manhattan Entire home/apt 259
## 17188 Manhattan Entire home/apt 160
## 17189 Manhattan Entire home/apt 113
## 17190 Manhattan Entire home/apt 300
## 17191 Manhattan Entire home/apt 125
## 17192 Manhattan Entire home/apt 105
## 17193 Brooklyn Private room 70
## 17194 Brooklyn Private room 125
## 17195 Brooklyn Entire home/apt 150
## 17196 Manhattan Entire home/apt 275
## 17197 Brooklyn Private room 65
## 17198 Brooklyn Private room 65
## 17199 Manhattan Entire home/apt 400
## 17200 Manhattan Entire home/apt 159
## 17201 Manhattan Entire home/apt 200
## 17202 Manhattan Private room 225
## 17203 Manhattan Entire home/apt 199
## 17204 Manhattan Shared room 75
## 17205 Brooklyn Private room 44
## 17206 Brooklyn Private room 100
## 17207 Brooklyn Entire home/apt 130
## 17208 Manhattan Entire home/apt 408
## 17209 Brooklyn Entire home/apt 120
## 17210 Manhattan Entire home/apt 273
## 17211 Brooklyn Entire home/apt 85
## 17212 Queens Private room 80
## 17213 Brooklyn Private room 60
## 17214 Manhattan Entire home/apt 275
## 17215 Queens Entire home/apt 125
## 17216 Manhattan Entire home/apt 200
## 17217 Manhattan Entire home/apt 199
## 17218 Manhattan Entire home/apt 265
## 17219 Manhattan Entire home/apt 700
## 17220 Manhattan Private room 80
## 17221 Brooklyn Private room 35
## 17222 Manhattan Entire home/apt 135
## 17223 Manhattan Private room 70
## 17224 Brooklyn Shared room 179
## 17225 Manhattan Entire home/apt 99
## 17226 Brooklyn Entire home/apt 135
## 17227 Brooklyn Entire home/apt 104
## 17228 Manhattan Entire home/apt 128
## 17229 Brooklyn Private room 60
## 17230 Brooklyn Entire home/apt 170
## 17231 Manhattan Private room 85
## 17232 Queens Private room 60
## 17233 Manhattan Private room 75
## 17234 Manhattan Entire home/apt 349
## 17235 Brooklyn Private room 90
## 17236 Brooklyn Private room 55
## 17237 Manhattan Private room 50
## 17238 Brooklyn Entire home/apt 200
## 17239 Manhattan Private room 110
## 17240 Manhattan Entire home/apt 325
## 17241 Brooklyn Private room 70
## 17242 Brooklyn Entire home/apt 180
## 17243 Manhattan Entire home/apt 134
## 17244 Manhattan Entire home/apt 150
## 17245 Manhattan Private room 150
## 17246 Brooklyn Entire home/apt 200
## 17247 Brooklyn Entire home/apt 110
## 17248 Brooklyn Entire home/apt 105
## 17249 Manhattan Entire home/apt 150
## 17250 Brooklyn Entire home/apt 200
## 17251 Manhattan Entire home/apt 165
## 17252 Manhattan Private room 75
## 17253 Brooklyn Entire home/apt 104
## 17254 Manhattan Entire home/apt 130
## 17255 Manhattan Private room 130
## 17256 Manhattan Entire home/apt 145
## 17257 Manhattan Private room 60
## 17258 Queens Private room 40
## 17259 Manhattan Private room 60
## 17260 Manhattan Entire home/apt 99
## 17261 Brooklyn Private room 75
## 17262 Queens Private room 70
## 17263 Brooklyn Entire home/apt 109
## 17264 Manhattan Entire home/apt 250
## 17265 Manhattan Entire home/apt 129
## 17266 Brooklyn Entire home/apt 90
## 17267 Manhattan Entire home/apt 150
## 17268 Manhattan Entire home/apt 198
## 17269 Brooklyn Private room 55
## 17270 Manhattan Private room 61
## 17271 Queens Entire home/apt 90
## 17272 Manhattan Private room 45
## 17273 Queens Entire home/apt 200
## 17274 Brooklyn Private room 60
## 17275 Manhattan Entire home/apt 150
## 17276 Brooklyn Entire home/apt 125
## 17277 Manhattan Private room 80
## 17278 Manhattan Private room 80
## 17279 Brooklyn Private room 35
## 17280 Queens Private room 40
## 17281 Brooklyn Private room 120
## 17282 Brooklyn Entire home/apt 100
## 17283 Brooklyn Entire home/apt 259
## 17284 Manhattan Entire home/apt 129
## 17285 Brooklyn Entire home/apt 89
## 17286 Brooklyn Private room 75
## 17287 Brooklyn Entire home/apt 135
## 17288 Manhattan Entire home/apt 200
## 17289 Manhattan Private room 90
## 17290 Brooklyn Entire home/apt 200
## 17291 Manhattan Private room 90
## 17292 Brooklyn Entire home/apt 150
## 17293 Manhattan Entire home/apt 110
## 17294 Manhattan Entire home/apt 150
## 17295 Manhattan Private room 115
## 17296 Brooklyn Private room 42
## 17297 Brooklyn Private room 75
## 17298 Manhattan Entire home/apt 189
## 17299 Manhattan Entire home/apt 125
## 17300 Brooklyn Entire home/apt 150
## 17301 Manhattan Entire home/apt 175
## 17302 Manhattan Private room 99
## 17303 Bronx Entire home/apt 85
## 17304 Manhattan Entire home/apt 185
## 17305 Manhattan Entire home/apt 177
## 17306 Brooklyn Private room 100
## 17307 Manhattan Entire home/apt 102
## 17308 Manhattan Entire home/apt 120
## 17309 Manhattan Entire home/apt 155
## 17310 Manhattan Private room 67
## 17311 Brooklyn Private room 50
## 17312 Manhattan Private room 55
## 17313 Staten Island Entire home/apt 100
## 17314 Manhattan Entire home/apt 125
## 17315 Brooklyn Entire home/apt 70
## 17316 Brooklyn Private room 39
## 17317 Brooklyn Private room 60
## 17318 Manhattan Entire home/apt 125
## 17319 Manhattan Entire home/apt 133
## 17320 Brooklyn Entire home/apt 149
## 17321 Brooklyn Private room 110
## 17322 Brooklyn Private room 150
## 17323 Queens Entire home/apt 205
## 17324 Manhattan Entire home/apt 100
## 17325 Brooklyn Private room 30
## 17326 Manhattan Private room 69
## 17327 Manhattan Entire home/apt 158
## 17328 Brooklyn Entire home/apt 190
## 17329 Brooklyn Private room 36
## 17330 Brooklyn Private room 79
## 17331 Manhattan Entire home/apt 176
## 17332 Brooklyn Entire home/apt 199
## 17333 Manhattan Private room 150
## 17334 Brooklyn Private room 64
## 17335 Manhattan Entire home/apt 250
## 17336 Manhattan Private room 50
## 17337 Manhattan Private room 65
## 17338 Manhattan Entire home/apt 118
## 17339 Manhattan Entire home/apt 189
## 17340 Manhattan Private room 79
## 17341 Brooklyn Entire home/apt 75
## 17342 Brooklyn Entire home/apt 100
## 17343 Manhattan Entire home/apt 200
## 17344 Brooklyn Private room 65
## 17345 Queens Entire home/apt 90
## 17346 Bronx Entire home/apt 65
## 17347 Manhattan Entire home/apt 125
## 17348 Manhattan Private room 124
## 17349 Brooklyn Entire home/apt 120
## 17350 Brooklyn Entire home/apt 300
## 17351 Queens Shared room 27
## 17352 Brooklyn Private room 75
## 17353 Manhattan Private room 86
## 17354 Brooklyn Entire home/apt 113
## 17355 Manhattan Private room 69
## 17356 Manhattan Private room 50
## 17357 Manhattan Entire home/apt 155
## 17358 Manhattan Private room 90
## 17359 Brooklyn Private room 44
## 17360 Queens Shared room 25
## 17361 Manhattan Entire home/apt 499
## 17362 Brooklyn Private room 90
## 17363 Manhattan Entire home/apt 118
## 17364 Bronx Private room 42
## 17365 Manhattan Private room 57
## 17366 Brooklyn Entire home/apt 150
## 17367 Brooklyn Private room 66
## 17368 Manhattan Entire home/apt 95
## 17369 Manhattan Private room 40
## 17370 Manhattan Private room 65
## 17371 Manhattan Private room 40
## 17372 Manhattan Entire home/apt 215
## 17373 Manhattan Entire home/apt 199
## 17374 Brooklyn Private room 65
## 17375 Brooklyn Shared room 70
## 17376 Manhattan Private room 59
## 17377 Manhattan Entire home/apt 150
## 17378 Brooklyn Entire home/apt 300
## 17379 Queens Private room 59
## 17380 Brooklyn Private room 45
## 17381 Manhattan Private room 110
## 17382 Brooklyn Private room 65
## 17383 Brooklyn Entire home/apt 130
## 17384 Manhattan Entire home/apt 300
## 17385 Brooklyn Entire home/apt 111
## 17386 Queens Private room 48
## 17387 Brooklyn Private room 65
## 17388 Manhattan Private room 75
## 17389 Brooklyn Private room 200
## 17390 Manhattan Private room 99
## 17391 Brooklyn Entire home/apt 225
## 17392 Queens Private room 65
## 17393 Manhattan Private room 51
## 17394 Brooklyn Entire home/apt 175
## 17395 Manhattan Private room 120
## 17396 Manhattan Private room 49
## 17397 Manhattan Private room 175
## 17398 Bronx Entire home/apt 71
## 17399 Manhattan Entire home/apt 350
## 17400 Manhattan Entire home/apt 119
## 17401 Manhattan Entire home/apt 110
## 17402 Manhattan Entire home/apt 185
## 17403 Brooklyn Entire home/apt 115
## 17404 Brooklyn Private room 90
## 17405 Brooklyn Private room 45
## 17406 Manhattan Private room 50
## 17407 Brooklyn Private room 80
## 17408 Manhattan Entire home/apt 95
## 17409 Brooklyn Private room 50
## 17410 Queens Private room 40
## 17411 Manhattan Shared room 30
## 17412 Manhattan Entire home/apt 225
## 17413 Brooklyn Private room 65
## 17414 Manhattan Entire home/apt 199
## 17415 Queens Entire home/apt 125
## 17416 Brooklyn Entire home/apt 89
## 17417 Manhattan Entire home/apt 300
## 17418 Brooklyn Entire home/apt 200
## 17419 Manhattan Entire home/apt 200
## 17420 Manhattan Entire home/apt 129
## 17421 Manhattan Entire home/apt 495
## 17422 Manhattan Private room 125
## 17423 Brooklyn Entire home/apt 185
## 17424 Manhattan Private room 92
## 17425 Manhattan Entire home/apt 119
## 17426 Brooklyn Entire home/apt 120
## 17427 Manhattan Entire home/apt 500
## 17428 Brooklyn Entire home/apt 80
## 17429 Manhattan Entire home/apt 124
## 17430 Manhattan Entire home/apt 85
## 17431 Brooklyn Private room 55
## 17432 Brooklyn Private room 82
## 17433 Manhattan Entire home/apt 150
## 17434 Manhattan Entire home/apt 250
## 17435 Brooklyn Entire home/apt 150
## 17436 Brooklyn Entire home/apt 121
## 17437 Queens Entire home/apt 350
## 17438 Manhattan Entire home/apt 115
## 17439 Brooklyn Private room 45
## 17440 Manhattan Private room 65
## 17441 Brooklyn Private room 200
## 17442 Brooklyn Entire home/apt 120
## 17443 Manhattan Entire home/apt 175
## 17444 Staten Island Entire home/apt 120
## 17445 Brooklyn Private room 49
## 17446 Manhattan Entire home/apt 250
## 17447 Manhattan Entire home/apt 250
## 17448 Brooklyn Entire home/apt 110
## 17449 Brooklyn Entire home/apt 199
## 17450 Manhattan Entire home/apt 350
## 17451 Manhattan Entire home/apt 124
## 17452 Brooklyn Entire home/apt 175
## 17453 Manhattan Private room 150
## 17454 Brooklyn Entire home/apt 295
## 17455 Manhattan Entire home/apt 210
## 17456 Manhattan Entire home/apt 125
## 17457 Manhattan Entire home/apt 112
## 17458 Brooklyn Entire home/apt 118
## 17459 Brooklyn Private room 85
## 17460 Brooklyn Private room 53
## 17461 Manhattan Entire home/apt 200
## 17462 Queens Private room 40
## 17463 Brooklyn Private room 60
## 17464 Brooklyn Shared room 50
## 17465 Manhattan Private room 135
## 17466 Queens Private room 61
## 17467 Manhattan Shared room 42
## 17468 Queens Private room 69
## 17469 Manhattan Entire home/apt 105
## 17470 Brooklyn Entire home/apt 150
## 17471 Manhattan Entire home/apt 240
## 17472 Manhattan Entire home/apt 140
## 17473 Brooklyn Entire home/apt 90
## 17474 Manhattan Entire home/apt 199
## 17475 Manhattan Private room 65
## 17476 Manhattan Private room 70
## 17477 Queens Private room 60
## 17478 Manhattan Private room 69
## 17479 Manhattan Entire home/apt 250
## 17480 Manhattan Private room 70
## 17481 Manhattan Entire home/apt 175
## 17482 Manhattan Private room 110
## 17483 Queens Private room 50
## 17484 Manhattan Private room 75
## 17485 Brooklyn Private room 55
## 17486 Manhattan Private room 75
## 17487 Queens Private room 30
## 17488 Brooklyn Entire home/apt 90
## 17489 Manhattan Private room 70
## 17490 Brooklyn Entire home/apt 140
## 17491 Manhattan Entire home/apt 200
## 17492 Manhattan Entire home/apt 120
## 17493 Brooklyn Private room 85
## 17494 Bronx Private room 82
## 17495 Manhattan Entire home/apt 200
## 17496 Brooklyn Entire home/apt 225
## 17497 Brooklyn Private room 75
## 17498 Manhattan Entire home/apt 230
## 17499 Brooklyn Private room 50
## 17500 Queens Private room 35
## 17501 Brooklyn Private room 95
## 17502 Brooklyn Private room 48
## 17503 Brooklyn Private room 50
## 17504 Manhattan Private room 48
## 17505 Queens Private room 55
## 17506 Brooklyn Entire home/apt 100
## 17507 Queens Private room 50
## 17508 Queens Private room 40
## 17509 Queens Private room 60
## 17510 Queens Private room 40
## 17511 Brooklyn Entire home/apt 245
## 17512 Manhattan Entire home/apt 135
## 17513 Manhattan Entire home/apt 150
## 17514 Manhattan Entire home/apt 100
## 17515 Brooklyn Private room 45
## 17516 Manhattan Private room 55
## 17517 Manhattan Private room 80
## 17518 Brooklyn Private room 60
## 17519 Manhattan Entire home/apt 399
## 17520 Manhattan Entire home/apt 150
## 17521 Brooklyn Shared room 47
## 17522 Queens Entire home/apt 125
## 17523 Queens Entire home/apt 75
## 17524 Brooklyn Entire home/apt 202
## 17525 Manhattan Private room 80
## 17526 Queens Private room 150
## 17527 Brooklyn Private room 45
## 17528 Queens Private room 30
## 17529 Brooklyn Private room 102
## 17530 Brooklyn Entire home/apt 55
## 17531 Manhattan Entire home/apt 155
## 17532 Manhattan Entire home/apt 120
## 17533 Manhattan Entire home/apt 95
## 17534 Brooklyn Entire home/apt 525
## 17535 Manhattan Entire home/apt 199
## 17536 Brooklyn Private room 45
## 17537 Manhattan Private room 90
## 17538 Manhattan Entire home/apt 150
## 17539 Brooklyn Private room 59
## 17540 Queens Private room 75
## 17541 Brooklyn Private room 69
## 17542 Brooklyn Private room 300
## 17543 Manhattan Private room 60
## 17544 Brooklyn Private room 50
## 17545 Brooklyn Entire home/apt 150
## 17546 Queens Private room 85
## 17547 Manhattan Entire home/apt 210
## 17548 Manhattan Private room 55
## 17549 Brooklyn Private room 57
## 17550 Brooklyn Private room 50
## 17551 Brooklyn Entire home/apt 100
## 17552 Brooklyn Private room 65
## 17553 Brooklyn Private room 50
## 17554 Queens Private room 70
## 17555 Brooklyn Private room 40
## 17556 Brooklyn Entire home/apt 250
## 17557 Brooklyn Private room 33
## 17558 Brooklyn Private room 46
## 17559 Queens Private room 101
## 17560 Brooklyn Entire home/apt 76
## 17561 Manhattan Private room 70
## 17562 Manhattan Private room 95
## 17563 Brooklyn Entire home/apt 129
## 17564 Brooklyn Private room 100
## 17565 Brooklyn Private room 58
## 17566 Brooklyn Private room 50
## 17567 Manhattan Entire home/apt 76
## 17568 Queens Private room 35
## 17569 Queens Private room 40
## 17570 Manhattan Entire home/apt 195
## 17571 Manhattan Private room 80
## 17572 Brooklyn Private room 44
## 17573 Brooklyn Entire home/apt 95
## 17574 Manhattan Entire home/apt 199
## 17575 Queens Private room 55
## 17576 Brooklyn Entire home/apt 249
## 17577 Manhattan Private room 40
## 17578 Queens Entire home/apt 200
## 17579 Manhattan Private room 39
## 17580 Brooklyn Entire home/apt 700
## 17581 Brooklyn Entire home/apt 45
## 17582 Brooklyn Entire home/apt 140
## 17583 Brooklyn Entire home/apt 99
## 17584 Manhattan Private room 175
## 17585 Manhattan Private room 80
## 17586 Brooklyn Entire home/apt 75
## 17587 Queens Private room 50
## 17588 Manhattan Entire home/apt 100
## 17589 Manhattan Entire home/apt 100
## 17590 Manhattan Entire home/apt 200
## 17591 Manhattan Entire home/apt 80
## 17592 Brooklyn Private room 60
## 17593 Brooklyn Entire home/apt 119
## 17594 Manhattan Private room 69
## 17595 Brooklyn Entire home/apt 400
## 17596 Brooklyn Private room 95
## 17597 Brooklyn Private room 45
## 17598 Queens Private room 73
## 17599 Manhattan Private room 123
## 17600 Manhattan Entire home/apt 130
## 17601 Manhattan Entire home/apt 325
## 17602 Manhattan Entire home/apt 95
## 17603 Queens Entire home/apt 90
## 17604 Brooklyn Entire home/apt 150
## 17605 Manhattan Entire home/apt 165
## 17606 Manhattan Entire home/apt 250
## 17607 Manhattan Entire home/apt 130
## 17608 Manhattan Entire home/apt 200
## 17609 Manhattan Private room 70
## 17610 Brooklyn Entire home/apt 105
## 17611 Brooklyn Entire home/apt 150
## 17612 Manhattan Entire home/apt 172
## 17613 Brooklyn Entire home/apt 105
## 17614 Manhattan Private room 100
## 17615 Manhattan Entire home/apt 150
## 17616 Manhattan Entire home/apt 133
## 17617 Manhattan Private room 65
## 17618 Manhattan Entire home/apt 125
## 17619 Manhattan Entire home/apt 140
## 17620 Manhattan Entire home/apt 300
## 17621 Queens Private room 90
## 17622 Queens Private room 30
## 17623 Brooklyn Entire home/apt 109
## 17624 Brooklyn Private room 750
## 17625 Brooklyn Entire home/apt 146
## 17626 Brooklyn Entire home/apt 120
## 17627 Brooklyn Entire home/apt 125
## 17628 Manhattan Private room 80
## 17629 Queens Entire home/apt 110
## 17630 Bronx Private room 50
## 17631 Manhattan Entire home/apt 200
## 17632 Manhattan Private room 74
## 17633 Brooklyn Private room 100
## 17634 Bronx Private room 52
## 17635 Manhattan Entire home/apt 135
## 17636 Manhattan Private room 90
## 17637 Manhattan Private room 200
## 17638 Manhattan Entire home/apt 165
## 17639 Brooklyn Private room 75
## 17640 Brooklyn Private room 155
## 17641 Brooklyn Entire home/apt 144
## 17642 Brooklyn Private room 25
## 17643 Manhattan Private room 500
## 17644 Manhattan Private room 97
## 17645 Manhattan Private room 150
## 17646 Brooklyn Private room 65
## 17647 Brooklyn Entire home/apt 99
## 17648 Manhattan Entire home/apt 100
## 17649 Brooklyn Entire home/apt 250
## 17650 Brooklyn Private room 55
## 17651 Manhattan Entire home/apt 169
## 17652 Manhattan Private room 70
## 17653 Manhattan Entire home/apt 1000
## 17654 Manhattan Shared room 60
## 17655 Brooklyn Private room 36
## 17656 Manhattan Private room 105
## 17657 Manhattan Entire home/apt 315
## 17658 Manhattan Private room 65
## 17659 Manhattan Private room 50
## 17660 Brooklyn Private room 69
## 17661 Manhattan Entire home/apt 110
## 17662 Manhattan Entire home/apt 95
## 17663 Brooklyn Entire home/apt 249
## 17664 Brooklyn Private room 57
## 17665 Manhattan Entire home/apt 150
## 17666 Manhattan Entire home/apt 3800
## 17667 Queens Entire home/apt 99
## 17668 Staten Island Private room 50
## 17669 Brooklyn Entire home/apt 370
## 17670 Brooklyn Private room 55
## 17671 Manhattan Entire home/apt 147
## 17672 Brooklyn Private room 40
## 17673 Queens Entire home/apt 87
## 17674 Brooklyn Private room 65
## 17675 Brooklyn Private room 46
## 17676 Manhattan Private room 110
## 17677 Manhattan Private room 100
## 17678 Manhattan Entire home/apt 110
## 17679 Manhattan Entire home/apt 140
## 17680 Brooklyn Private room 55
## 17681 Brooklyn Private room 130
## 17682 Queens Entire home/apt 125
## 17683 Brooklyn Private room 73
## 17684 Manhattan Entire home/apt 479
## 17685 Manhattan Entire home/apt 270
## 17686 Brooklyn Private room 41
## 17687 Manhattan Private room 85
## 17688 Brooklyn Entire home/apt 175
## 17689 Manhattan Entire home/apt 350
## 17690 Brooklyn Entire home/apt 140
## 17691 Manhattan Entire home/apt 89
## 17692 Manhattan Entire home/apt 450
## 17693 Brooklyn Entire home/apt 10000
## 17694 Manhattan Private room 113
## 17695 Brooklyn Entire home/apt 300
## 17696 Brooklyn Private room 38
## 17697 Brooklyn Entire home/apt 220
## 17698 Brooklyn Entire home/apt 250
## 17699 Manhattan Entire home/apt 120
## 17700 Manhattan Private room 99
## 17701 Brooklyn Entire home/apt 115
## 17702 Queens Private room 30
## 17703 Queens Entire home/apt 150
## 17704 Queens Private room 38
## 17705 Brooklyn Entire home/apt 62
## 17706 Manhattan Private room 120
## 17707 Brooklyn Private room 60
## 17708 Manhattan Private room 195
## 17709 Manhattan Private room 69
## 17710 Manhattan Entire home/apt 150
## 17711 Brooklyn Entire home/apt 138
## 17712 Queens Private room 85
## 17713 Brooklyn Entire home/apt 120
## 17714 Brooklyn Private room 41
## 17715 Queens Private room 159
## 17716 Brooklyn Private room 35
## 17717 Manhattan Entire home/apt 250
## 17718 Brooklyn Entire home/apt 215
## 17719 Queens Entire home/apt 115
## 17720 Manhattan Entire home/apt 99
## 17721 Manhattan Entire home/apt 129
## 17722 Queens Private room 75
## 17723 Queens Entire home/apt 200
## 17724 Brooklyn Private room 79
## 17725 Manhattan Entire home/apt 160
## 17726 Brooklyn Entire home/apt 130
## 17727 Manhattan Entire home/apt 70
## 17728 Queens Private room 32
## 17729 Queens Private room 37
## 17730 Brooklyn Private room 55
## 17731 Manhattan Entire home/apt 250
## 17732 Brooklyn Entire home/apt 75
## 17733 Manhattan Private room 150
## 17734 Brooklyn Private room 42
## 17735 Manhattan Entire home/apt 155
## 17736 Bronx Private room 22
## 17737 Brooklyn Entire home/apt 125
## 17738 Manhattan Entire home/apt 99
## 17739 Brooklyn Private room 60
## 17740 Manhattan Private room 45
## 17741 Manhattan Private room 130
## 17742 Manhattan Private room 40
## 17743 Manhattan Private room 95
## 17744 Queens Private room 55
## 17745 Brooklyn Private room 35
## 17746 Manhattan Entire home/apt 140
## 17747 Queens Private room 70
## 17748 Manhattan Entire home/apt 250
## 17749 Manhattan Private room 85
## 17750 Manhattan Private room 85
## 17751 Manhattan Entire home/apt 106
## 17752 Queens Entire home/apt 90
## 17753 Manhattan Entire home/apt 129
## 17754 Queens Private room 100
## 17755 Brooklyn Entire home/apt 150
## 17756 Manhattan Private room 100
## 17757 Manhattan Entire home/apt 100
## 17758 Brooklyn Private room 60
## 17759 Brooklyn Entire home/apt 120
## 17760 Queens Private room 75
## 17761 Manhattan Entire home/apt 140
## 17762 Brooklyn Private room 55
## 17763 Brooklyn Entire home/apt 75
## 17764 Brooklyn Private room 85
## 17765 Manhattan Entire home/apt 225
## 17766 Manhattan Entire home/apt 219
## 17767 Brooklyn Entire home/apt 185
## 17768 Queens Entire home/apt 70
## 17769 Brooklyn Entire home/apt 100
## 17770 Manhattan Private room 69
## 17771 Brooklyn Private room 40
## 17772 Queens Private room 55
## 17773 Brooklyn Entire home/apt 150
## 17774 Brooklyn Entire home/apt 113
## 17775 Brooklyn Private room 45
## 17776 Manhattan Entire home/apt 280
## 17777 Manhattan Private room 120
## 17778 Queens Private room 90
## 17779 Brooklyn Entire home/apt 225
## 17780 Manhattan Entire home/apt 159
## 17781 Manhattan Entire home/apt 650
## 17782 Manhattan Entire home/apt 275
## 17783 Brooklyn Entire home/apt 325
## 17784 Brooklyn Entire home/apt 359
## 17785 Queens Entire home/apt 99
## 17786 Manhattan Entire home/apt 108
## 17787 Brooklyn Private room 67
## 17788 Brooklyn Private room 25
## 17789 Manhattan Entire home/apt 190
## 17790 Queens Entire home/apt 125
## 17791 Manhattan Entire home/apt 124
## 17792 Brooklyn Private room 100
## 17793 Brooklyn Private room 60
## 17794 Brooklyn Private room 55
## 17795 Brooklyn Entire home/apt 175
## 17796 Brooklyn Entire home/apt 200
## 17797 Brooklyn Entire home/apt 200
## 17798 Queens Private room 60
## 17799 Manhattan Entire home/apt 175
## 17800 Manhattan Private room 88
## 17801 Brooklyn Private room 57
## 17802 Brooklyn Private room 145
## 17803 Manhattan Entire home/apt 133
## 17804 Queens Private room 55
## 17805 Manhattan Entire home/apt 125
## 17806 Brooklyn Entire home/apt 80
## 17807 Brooklyn Private room 70
## 17808 Bronx Entire home/apt 120
## 17809 Manhattan Private room 150
## 17810 Brooklyn Entire home/apt 90
## 17811 Brooklyn Entire home/apt 115
## 17812 Queens Entire home/apt 2350
## 17813 Manhattan Private room 51
## 17814 Brooklyn Entire home/apt 200
## 17815 Manhattan Private room 105
## 17816 Manhattan Entire home/apt 225
## 17817 Manhattan Private room 89
## 17818 Queens Private room 61
## 17819 Manhattan Shared room 70
## 17820 Manhattan Private room 69
## 17821 Manhattan Private room 79
## 17822 Brooklyn Entire home/apt 83
## 17823 Brooklyn Private room 160
## 17824 Brooklyn Shared room 40
## 17825 Brooklyn Private room 50
## 17826 Manhattan Private room 45
## 17827 Brooklyn Private room 85
## 17828 Brooklyn Entire home/apt 100
## 17829 Brooklyn Private room 57
## 17830 Brooklyn Entire home/apt 104
## 17831 Brooklyn Private room 53
## 17832 Queens Private room 38
## 17833 Brooklyn Entire home/apt 115
## 17834 Brooklyn Entire home/apt 139
## 17835 Brooklyn Entire home/apt 150
## 17836 Brooklyn Entire home/apt 280
## 17837 Manhattan Entire home/apt 90
## 17838 Queens Private room 50
## 17839 Brooklyn Private room 45
## 17840 Brooklyn Private room 70
## 17841 Manhattan Private room 150
## 17842 Manhattan Entire home/apt 155
## 17843 Manhattan Private room 109
## 17844 Brooklyn Entire home/apt 150
## 17845 Brooklyn Entire home/apt 130
## 17846 Manhattan Entire home/apt 275
## 17847 Brooklyn Entire home/apt 100
## 17848 Brooklyn Private room 55
## 17849 Brooklyn Private room 50
## 17850 Manhattan Entire home/apt 215
## 17851 Manhattan Private room 40
## 17852 Brooklyn Private room 103
## 17853 Brooklyn Private room 50
## 17854 Manhattan Shared room 500
## 17855 Brooklyn Private room 54
## 17856 Manhattan Shared room 79
## 17857 Brooklyn Private room 50
## 17858 Manhattan Private room 140
## 17859 Brooklyn Private room 59
## 17860 Brooklyn Entire home/apt 150
## 17861 Brooklyn Private room 80
## 17862 Brooklyn Private room 85
## 17863 Brooklyn Entire home/apt 185
## 17864 Brooklyn Entire home/apt 85
## 17865 Queens Entire home/apt 135
## 17866 Queens Entire home/apt 85
## 17867 Manhattan Entire home/apt 150
## 17868 Brooklyn Entire home/apt 75
## 17869 Manhattan Entire home/apt 150
## 17870 Manhattan Entire home/apt 150
## 17871 Queens Entire home/apt 199
## 17872 Queens Entire home/apt 120
## 17873 Queens Private room 88
## 17874 Manhattan Private room 99
## 17875 Manhattan Private room 75
## 17876 Manhattan Entire home/apt 107
## 17877 Manhattan Entire home/apt 400
## 17878 Brooklyn Entire home/apt 89
## 17879 Manhattan Entire home/apt 210
## 17880 Manhattan Entire home/apt 275
## 17881 Brooklyn Private room 57
## 17882 Brooklyn Private room 150
## 17883 Brooklyn Private room 50
## 17884 Manhattan Entire home/apt 150
## 17885 Brooklyn Private room 29
## 17886 Brooklyn Entire home/apt 100
## 17887 Manhattan Entire home/apt 152
## 17888 Manhattan Entire home/apt 822
## 17889 Manhattan Entire home/apt 350
## 17890 Brooklyn Private room 45
## 17891 Brooklyn Private room 49
## 17892 Brooklyn Private room 45
## 17893 Manhattan Private room 120
## 17894 Brooklyn Private room 66
## 17895 Manhattan Entire home/apt 122
## 17896 Manhattan Entire home/apt 64
## 17897 Manhattan Entire home/apt 135
## 17898 Brooklyn Private room 33
## 17899 Brooklyn Private room 70
## 17900 Manhattan Private room 320
## 17901 Staten Island Entire home/apt 62
## 17902 Manhattan Entire home/apt 130
## 17903 Manhattan Private room 95
## 17904 Queens Entire home/apt 100
## 17905 Manhattan Private room 90
## 17906 Queens Entire home/apt 150
## 17907 Manhattan Entire home/apt 350
## 17908 Manhattan Entire home/apt 120
## 17909 Manhattan Private room 250
## 17910 Brooklyn Entire home/apt 106
## 17911 Queens Entire home/apt 65
## 17912 Brooklyn Entire home/apt 175
## 17913 Brooklyn Entire home/apt 360
## 17914 Brooklyn Entire home/apt 119
## 17915 Manhattan Entire home/apt 85
## 17916 Brooklyn Entire home/apt 189
## 17917 Brooklyn Private room 68
## 17918 Manhattan Entire home/apt 100
## 17919 Manhattan Private room 40
## 17920 Brooklyn Private room 45
## 17921 Brooklyn Private room 38
## 17922 Brooklyn Private room 100
## 17923 Manhattan Private room 165
## 17924 Brooklyn Private room 80
## 17925 Brooklyn Private room 40
## 17926 Manhattan Entire home/apt 175
## 17927 Manhattan Entire home/apt 99
## 17928 Brooklyn Private room 50
## 17929 Queens Private room 70
## 17930 Queens Entire home/apt 85
## 17931 Bronx Private room 50
## 17932 Queens Private room 69
## 17933 Brooklyn Private room 54
## 17934 Manhattan Private room 38
## 17935 Brooklyn Shared room 300
## 17936 Brooklyn Private room 41
## 17937 Brooklyn Entire home/apt 199
## 17938 Manhattan Entire home/apt 235
## 17939 Brooklyn Entire home/apt 240
## 17940 Queens Private room 70
## 17941 Manhattan Entire home/apt 250
## 17942 Brooklyn Entire home/apt 91
## 17943 Manhattan Private room 125
## 17944 Brooklyn Private room 55
## 17945 Brooklyn Private room 75
## 17946 Brooklyn Private room 44
## 17947 Manhattan Private room 90
## 17948 Brooklyn Entire home/apt 100
## 17949 Manhattan Private room 170
## 17950 Brooklyn Entire home/apt 140
## 17951 Brooklyn Entire home/apt 199
## 17952 Manhattan Entire home/apt 156
## 17953 Manhattan Entire home/apt 170
## 17954 Manhattan Entire home/apt 110
## 17955 Manhattan Entire home/apt 115
## 17956 Manhattan Private room 70
## 17957 Manhattan Private room 250
## 17958 Manhattan Entire home/apt 200
## 17959 Manhattan Entire home/apt 197
## 17960 Brooklyn Private room 82
## 17961 Brooklyn Entire home/apt 85
## 17962 Queens Entire home/apt 69
## 17963 Queens Entire home/apt 150
## 17964 Manhattan Entire home/apt 150
## 17965 Brooklyn Private room 49
## 17966 Manhattan Entire home/apt 165
## 17967 Queens Private room 90
## 17968 Manhattan Entire home/apt 92
## 17969 Manhattan Entire home/apt 159
## 17970 Brooklyn Entire home/apt 280
## 17971 Manhattan Entire home/apt 325
## 17972 Manhattan Entire home/apt 120
## 17973 Manhattan Private room 61
## 17974 Brooklyn Entire home/apt 80
## 17975 Manhattan Private room 90
## 17976 Brooklyn Private room 51
## 17977 Manhattan Entire home/apt 178
## 17978 Manhattan Entire home/apt 1100
## 17979 Brooklyn Entire home/apt 119
## 17980 Brooklyn Private room 30
## 17981 Queens Private room 100
## 17982 Manhattan Private room 100
## 17983 Brooklyn Entire home/apt 100
## 17984 Manhattan Entire home/apt 250
## 17985 Brooklyn Private room 30
## 17986 Manhattan Entire home/apt 240
## 17987 Brooklyn Private room 60
## 17988 Brooklyn Private room 65
## 17989 Brooklyn Entire home/apt 140
## 17990 Manhattan Entire home/apt 265
## 17991 Manhattan Private room 86
## 17992 Manhattan Private room 145
## 17993 Manhattan Entire home/apt 100
## 17994 Manhattan Private room 75
## 17995 Queens Entire home/apt 105
## 17996 Brooklyn Private room 85
## 17997 Manhattan Entire home/apt 150
## 17998 Manhattan Private room 100
## 17999 Brooklyn Private room 90
## 18000 Manhattan Entire home/apt 150
## 18001 Brooklyn Entire home/apt 75
## 18002 Brooklyn Private room 60
## 18003 Brooklyn Private room 80
## 18004 Brooklyn Entire home/apt 137
## 18005 Manhattan Entire home/apt 79
## 18006 Brooklyn Private room 120
## 18007 Manhattan Entire home/apt 220
## 18008 Manhattan Entire home/apt 300
## 18009 Manhattan Entire home/apt 267
## 18010 Manhattan Entire home/apt 149
## 18011 Manhattan Entire home/apt 195
## 18012 Manhattan Private room 90
## 18013 Brooklyn Private room 48
## 18014 Brooklyn Entire home/apt 179
## 18015 Brooklyn Private room 58
## 18016 Brooklyn Private room 50
## 18017 Manhattan Entire home/apt 49
## 18018 Brooklyn Entire home/apt 110
## 18019 Manhattan Entire home/apt 190
## 18020 Queens Entire home/apt 450
## 18021 Manhattan Private room 69
## 18022 Manhattan Entire home/apt 250
## 18023 Manhattan Entire home/apt 400
## 18024 Manhattan Entire home/apt 249
## 18025 Manhattan Entire home/apt 125
## 18026 Manhattan Private room 96
## 18027 Queens Private room 60
## 18028 Manhattan Entire home/apt 179
## 18029 Queens Private room 48
## 18030 Manhattan Entire home/apt 155
## 18031 Queens Private room 65
## 18032 Manhattan Entire home/apt 499
## 18033 Manhattan Entire home/apt 250
## 18034 Brooklyn Entire home/apt 120
## 18035 Brooklyn Private room 50
## 18036 Brooklyn Private room 48
## 18037 Brooklyn Private room 45
## 18038 Brooklyn Private room 50
## 18039 Brooklyn Private room 75
## 18040 Brooklyn Private room 65
## 18041 Manhattan Private room 90
## 18042 Manhattan Private room 56
## 18043 Brooklyn Private room 80
## 18044 Manhattan Entire home/apt 174
## 18045 Brooklyn Private room 43
## 18046 Queens Private room 32
## 18047 Brooklyn Shared room 39
## 18048 Brooklyn Private room 70
## 18049 Manhattan Private room 75
## 18050 Brooklyn Entire home/apt 130
## 18051 Brooklyn Private room 85
## 18052 Queens Shared room 23
## 18053 Brooklyn Entire home/apt 95
## 18054 Brooklyn Private room 90
## 18055 Brooklyn Private room 45
## 18056 Bronx Private room 60
## 18057 Manhattan Entire home/apt 119
## 18058 Manhattan Entire home/apt 150
## 18059 Manhattan Entire home/apt 295
## 18060 Brooklyn Private room 38
## 18061 Brooklyn Private room 130
## 18062 Manhattan Private room 70
## 18063 Queens Entire home/apt 71
## 18064 Brooklyn Shared room 75
## 18065 Queens Entire home/apt 85
## 18066 Brooklyn Private room 67
## 18067 Manhattan Entire home/apt 75
## 18068 Queens Entire home/apt 79
## 18069 Queens Entire home/apt 72
## 18070 Manhattan Entire home/apt 153
## 18071 Queens Private room 60
## 18072 Manhattan Entire home/apt 150
## 18073 Manhattan Entire home/apt 142
## 18074 Queens Private room 55
## 18075 Brooklyn Entire home/apt 249
## 18076 Brooklyn Entire home/apt 111
## 18077 Manhattan Entire home/apt 179
## 18078 Brooklyn Private room 65
## 18079 Manhattan Private room 63
## 18080 Manhattan Private room 90
## 18081 Manhattan Entire home/apt 143
## 18082 Manhattan Private room 85
## 18083 Manhattan Private room 67
## 18084 Brooklyn Private room 45
## 18085 Brooklyn Entire home/apt 299
## 18086 Brooklyn Entire home/apt 150
## 18087 Manhattan Entire home/apt 175
## 18088 Queens Private room 90
## 18089 Queens Entire home/apt 150
## 18090 Brooklyn Entire home/apt 100
## 18091 Brooklyn Private room 53
## 18092 Brooklyn Private room 40
## 18093 Brooklyn Entire home/apt 250
## 18094 Queens Entire home/apt 115
## 18095 Brooklyn Private room 85
## 18096 Brooklyn Private room 45
## 18097 Manhattan Entire home/apt 65
## 18098 Brooklyn Entire home/apt 160
## 18099 Manhattan Entire home/apt 95
## 18100 Brooklyn Entire home/apt 120
## 18101 Brooklyn Entire home/apt 151
## 18102 Manhattan Private room 98
## 18103 Manhattan Private room 100
## 18104 Manhattan Private room 74
## 18105 Manhattan Private room 50
## 18106 Queens Entire home/apt 75
## 18107 Manhattan Entire home/apt 150
## 18108 Brooklyn Private room 30
## 18109 Manhattan Entire home/apt 200
## 18110 Brooklyn Private room 67
## 18111 Brooklyn Entire home/apt 153
## 18112 Brooklyn Private room 75
## 18113 Brooklyn Private room 98
## 18114 Manhattan Entire home/apt 375
## 18115 Manhattan Entire home/apt 215
## 18116 Queens Private room 60
## 18117 Manhattan Private room 100
## 18118 Brooklyn Entire home/apt 131
## 18119 Queens Entire home/apt 120
## 18120 Queens Private room 75
## 18121 Manhattan Entire home/apt 79
## 18122 Manhattan Private room 120
## 18123 Manhattan Entire home/apt 228
## 18124 Manhattan Private room 85
## 18125 Manhattan Entire home/apt 115
## 18126 Brooklyn Entire home/apt 130
## 18127 Manhattan Entire home/apt 109
## 18128 Manhattan Private room 65
## 18129 Brooklyn Entire home/apt 200
## 18130 Manhattan Entire home/apt 560
## 18131 Brooklyn Entire home/apt 180
## 18132 Queens Shared room 35
## 18133 Brooklyn Entire home/apt 140
## 18134 Manhattan Private room 110
## 18135 Queens Entire home/apt 75
## 18136 Brooklyn Private room 50
## 18137 Brooklyn Private room 89
## 18138 Manhattan Entire home/apt 175
## 18139 Brooklyn Private room 65
## 18140 Brooklyn Entire home/apt 55
## 18141 Brooklyn Entire home/apt 150
## 18142 Queens Entire home/apt 96
## 18143 Manhattan Private room 75
## 18144 Manhattan Entire home/apt 210
## 18145 Manhattan Entire home/apt 221
## 18146 Brooklyn Entire home/apt 150
## 18147 Manhattan Entire home/apt 350
## 18148 Manhattan Private room 65
## 18149 Brooklyn Entire home/apt 325
## 18150 Manhattan Entire home/apt 407
## 18151 Manhattan Private room 60
## 18152 Brooklyn Private room 91
## 18153 Brooklyn Private room 41
## 18154 Manhattan Entire home/apt 215
## 18155 Brooklyn Private room 57
## 18156 Brooklyn Private room 65
## 18157 Brooklyn Entire home/apt 149
## 18158 Queens Private room 70
## 18159 Manhattan Entire home/apt 290
## 18160 Manhattan Private room 70
## 18161 Brooklyn Private room 90
## 18162 Manhattan Entire home/apt 150
## 18163 Manhattan Private room 100
## 18164 Brooklyn Entire home/apt 165
## 18165 Brooklyn Entire home/apt 224
## 18166 Manhattan Entire home/apt 238
## 18167 Manhattan Entire home/apt 379
## 18168 Manhattan Private room 45
## 18169 Queens Entire home/apt 125
## 18170 Brooklyn Entire home/apt 49
## 18171 Manhattan Entire home/apt 700
## 18172 Brooklyn Entire home/apt 650
## 18173 Manhattan Entire home/apt 150
## 18174 Brooklyn Private room 50
## 18175 Brooklyn Private room 55
## 18176 Brooklyn Entire home/apt 90
## 18177 Bronx Entire home/apt 425
## 18178 Manhattan Entire home/apt 200
## 18179 Manhattan Entire home/apt 349
## 18180 Manhattan Entire home/apt 200
## 18181 Brooklyn Entire home/apt 100
## 18182 Manhattan Entire home/apt 115
## 18183 Manhattan Entire home/apt 150
## 18184 Manhattan Private room 100
## 18185 Brooklyn Private room 55
## 18186 Queens Private room 49
## 18187 Manhattan Private room 95
## 18188 Queens Private room 75
## 18189 Brooklyn Shared room 45
## 18190 Manhattan Entire home/apt 200
## 18191 Manhattan Entire home/apt 199
## 18192 Manhattan Entire home/apt 195
## 18193 Manhattan Entire home/apt 349
## 18194 Manhattan Entire home/apt 270
## 18195 Manhattan Entire home/apt 230
## 18196 Manhattan Entire home/apt 165
## 18197 Brooklyn Entire home/apt 159
## 18198 Manhattan Entire home/apt 196
## 18199 Manhattan Shared room 103
## 18200 Brooklyn Private room 92
## 18201 Manhattan Entire home/apt 150
## 18202 Manhattan Entire home/apt 294
## 18203 Manhattan Entire home/apt 110
## 18204 Bronx Entire home/apt 76
## 18205 Brooklyn Entire home/apt 180
## 18206 Queens Entire home/apt 100
## 18207 Brooklyn Entire home/apt 80
## 18208 Brooklyn Entire home/apt 120
## 18209 Manhattan Private room 90
## 18210 Brooklyn Entire home/apt 130
## 18211 Brooklyn Entire home/apt 84
## 18212 Brooklyn Private room 50
## 18213 Queens Entire home/apt 76
## 18214 Manhattan Entire home/apt 316
## 18215 Queens Entire home/apt 115
## 18216 Brooklyn Entire home/apt 325
## 18217 Brooklyn Entire home/apt 160
## 18218 Brooklyn Private room 47
## 18219 Manhattan Entire home/apt 200
## 18220 Brooklyn Entire home/apt 200
## 18221 Brooklyn Private room 75
## 18222 Brooklyn Private room 39
## 18223 Manhattan Entire home/apt 300
## 18224 Manhattan Entire home/apt 489
## 18225 Queens Entire home/apt 150
## 18226 Queens Entire home/apt 65
## 18227 Brooklyn Entire home/apt 120
## 18228 Manhattan Private room 80
## 18229 Brooklyn Private room 53
## 18230 Manhattan Entire home/apt 200
## 18231 Brooklyn Private room 50
## 18232 Manhattan Entire home/apt 150
## 18233 Manhattan Private room 120
## 18234 Manhattan Private room 175
## 18235 Manhattan Entire home/apt 49
## 18236 Queens Private room 59
## 18237 Queens Private room 79
## 18238 Manhattan Entire home/apt 195
## 18239 Brooklyn Entire home/apt 249
## 18240 Brooklyn Private room 53
## 18241 Manhattan Private room 189
## 18242 Brooklyn Private room 60
## 18243 Queens Entire home/apt 135
## 18244 Bronx Private room 75
## 18245 Brooklyn Private room 60
## 18246 Queens Entire home/apt 120
## 18247 Manhattan Private room 100
## 18248 Brooklyn Private room 95
## 18249 Manhattan Entire home/apt 185
## 18250 Manhattan Entire home/apt 99
## 18251 Brooklyn Entire home/apt 180
## 18252 Manhattan Entire home/apt 350
## 18253 Manhattan Private room 69
## 18254 Brooklyn Private room 50
## 18255 Queens Entire home/apt 144
## 18256 Brooklyn Entire home/apt 85
## 18257 Manhattan Entire home/apt 100
## 18258 Manhattan Entire home/apt 240
## 18259 Brooklyn Entire home/apt 125
## 18260 Manhattan Entire home/apt 165
## 18261 Queens Entire home/apt 145
## 18262 Queens Private room 88
## 18263 Brooklyn Private room 65
## 18264 Brooklyn Private room 60
## 18265 Queens Entire home/apt 122
## 18266 Manhattan Private room 65
## 18267 Brooklyn Private room 42
## 18268 Brooklyn Private room 55
## 18269 Brooklyn Entire home/apt 115
## 18270 Brooklyn Entire home/apt 95
## 18271 Brooklyn Entire home/apt 113
## 18272 Manhattan Entire home/apt 185
## 18273 Queens Private room 34
## 18274 Manhattan Private room 80
## 18275 Brooklyn Shared room 50
## 18276 Manhattan Private room 55
## 18277 Manhattan Entire home/apt 110
## 18278 Manhattan Private room 115
## 18279 Manhattan Entire home/apt 239
## 18280 Queens Private room 63
## 18281 Manhattan Entire home/apt 295
## 18282 Manhattan Entire home/apt 425
## 18283 Brooklyn Private room 125
## 18284 Bronx Entire home/apt 175
## 18285 Manhattan Shared room 90
## 18286 Brooklyn Private room 75
## 18287 Queens Entire home/apt 99
## 18288 Manhattan Private room 118
## 18289 Manhattan Private room 75
## 18290 Manhattan Entire home/apt 105
## 18291 Brooklyn Private room 56
## 18292 Brooklyn Private room 125
## 18293 Manhattan Private room 80
## 18294 Bronx Entire home/apt 110
## 18295 Brooklyn Private room 75
## 18296 Queens Private room 60
## 18297 Queens Private room 55
## 18298 Manhattan Private room 60
## 18299 Brooklyn Private room 200
## 18300 Manhattan Private room 49
## 18301 Queens Entire home/apt 200
## 18302 Brooklyn Private room 40
## 18303 Manhattan Entire home/apt 179
## 18304 Brooklyn Entire home/apt 75
## 18305 Brooklyn Private room 45
## 18306 Manhattan Entire home/apt 245
## 18307 Brooklyn Entire home/apt 120
## 18308 Brooklyn Private room 51
## 18309 Brooklyn Private room 83
## 18310 Brooklyn Private room 55
## 18311 Manhattan Private room 85
## 18312 Manhattan Entire home/apt 109
## 18313 Brooklyn Private room 85
## 18314 Manhattan Entire home/apt 179
## 18315 Manhattan Private room 95
## 18316 Brooklyn Entire home/apt 95
## 18317 Brooklyn Entire home/apt 170
## 18318 Queens Entire home/apt 110
## 18319 Brooklyn Entire home/apt 111
## 18320 Brooklyn Private room 125
## 18321 Brooklyn Private room 34
## 18322 Manhattan Private room 54
## 18323 Brooklyn Private room 79
## 18324 Brooklyn Private room 80
## 18325 Brooklyn Private room 89
## 18326 Manhattan Entire home/apt 175
## 18327 Brooklyn Private room 85
## 18328 Bronx Private room 38
## 18329 Brooklyn Private room 38
## 18330 Brooklyn Private room 29
## 18331 Brooklyn Private room 45
## 18332 Manhattan Entire home/apt 229
## 18333 Brooklyn Entire home/apt 147
## 18334 Queens Private room 35
## 18335 Manhattan Entire home/apt 300
## 18336 Brooklyn Entire home/apt 154
## 18337 Manhattan Entire home/apt 250
## 18338 Brooklyn Entire home/apt 150
## 18339 Brooklyn Private room 65
## 18340 Manhattan Entire home/apt 250
## 18341 Brooklyn Entire home/apt 99
## 18342 Brooklyn Private room 45
## 18343 Manhattan Private room 105
## 18344 Brooklyn Private room 45
## 18345 Manhattan Entire home/apt 180
## 18346 Queens Entire home/apt 130
## 18347 Manhattan Entire home/apt 210
## 18348 Queens Entire home/apt 77
## 18349 Brooklyn Private room 450
## 18350 Manhattan Private room 85
## 18351 Brooklyn Private room 67
## 18352 Queens Private room 58
## 18353 Brooklyn Private room 149
## 18354 Manhattan Entire home/apt 150
## 18355 Brooklyn Private room 80
## 18356 Queens Private room 80
## 18357 Manhattan Entire home/apt 2500
## 18358 Manhattan Entire home/apt 130
## 18359 Brooklyn Entire home/apt 150
## 18360 Manhattan Entire home/apt 180
## 18361 Manhattan Entire home/apt 125
## 18362 Manhattan Private room 150
## 18363 Manhattan Private room 89
## 18364 Brooklyn Shared room 42
## 18365 Brooklyn Private room 40
## 18366 Brooklyn Private room 70
## 18367 Brooklyn Entire home/apt 200
## 18368 Manhattan Private room 64
## 18369 Brooklyn Private room 75
## 18370 Brooklyn Entire home/apt 180
## 18371 Brooklyn Private room 75
## 18372 Manhattan Private room 139
## 18373 Manhattan Private room 149
## 18374 Brooklyn Private room 85
## 18375 Brooklyn Private room 92
## 18376 Manhattan Entire home/apt 129
## 18377 Manhattan Entire home/apt 150
## 18378 Manhattan Private room 125
## 18379 Manhattan Private room 100
## 18380 Manhattan Entire home/apt 198
## 18381 Manhattan Entire home/apt 239
## 18382 Manhattan Private room 82
## 18383 Manhattan Entire home/apt 215
## 18384 Brooklyn Entire home/apt 100
## 18385 Manhattan Entire home/apt 180
## 18386 Manhattan Entire home/apt 150
## 18387 Queens Entire home/apt 199
## 18388 Brooklyn Private room 99
## 18389 Queens Private room 40
## 18390 Manhattan Entire home/apt 199
## 18391 Manhattan Private room 69
## 18392 Manhattan Entire home/apt 170
## 18393 Brooklyn Entire home/apt 110
## 18394 Staten Island Entire home/apt 100
## 18395 Brooklyn Private room 50
## 18396 Manhattan Entire home/apt 310
## 18397 Brooklyn Private room 110
## 18398 Queens Entire home/apt 165
## 18399 Brooklyn Private room 85
## 18400 Brooklyn Private room 65
## 18401 Manhattan Entire home/apt 149
## 18402 Manhattan Entire home/apt 252
## 18403 Manhattan Private room 130
## 18404 Brooklyn Private room 80
## 18405 Queens Private room 75
## 18406 Brooklyn Private room 75
## 18407 Brooklyn Entire home/apt 125
## 18408 Manhattan Entire home/apt 650
## 18409 Brooklyn Entire home/apt 115
## 18410 Brooklyn Private room 90
## 18411 Manhattan Entire home/apt 249
## 18412 Brooklyn Entire home/apt 140
## 18413 Manhattan Entire home/apt 795
## 18414 Queens Shared room 27
## 18415 Queens Entire home/apt 105
## 18416 Brooklyn Private room 30
## 18417 Brooklyn Private room 55
## 18418 Brooklyn Private room 65
## 18419 Brooklyn Private room 65
## 18420 Queens Private room 55
## 18421 Manhattan Entire home/apt 800
## 18422 Queens Entire home/apt 100
## 18423 Brooklyn Private room 55
## 18424 Brooklyn Entire home/apt 73
## 18425 Manhattan Entire home/apt 289
## 18426 Brooklyn Private room 75
## 18427 Brooklyn Private room 100
## 18428 Brooklyn Entire home/apt 120
## 18429 Queens Private room 45
## 18430 Manhattan Private room 399
## 18431 Brooklyn Entire home/apt 155
## 18432 Queens Entire home/apt 60
## 18433 Brooklyn Entire home/apt 100
## 18434 Brooklyn Shared room 30
## 18435 Brooklyn Private room 50
## 18436 Manhattan Entire home/apt 330
## 18437 Queens Entire home/apt 300
## 18438 Queens Private room 65
## 18439 Brooklyn Entire home/apt 200
## 18440 Brooklyn Entire home/apt 85
## 18441 Brooklyn Entire home/apt 139
## 18442 Brooklyn Entire home/apt 135
## 18443 Brooklyn Private room 150
## 18444 Manhattan Entire home/apt 140
## 18445 Staten Island Entire home/apt 185
## 18446 Queens Entire home/apt 74
## 18447 Manhattan Entire home/apt 162
## 18448 Brooklyn Entire home/apt 185
## 18449 Brooklyn Shared room 400
## 18450 Manhattan Entire home/apt 160
## 18451 Manhattan Entire home/apt 98
## 18452 Manhattan Private room 95
## 18453 Brooklyn Entire home/apt 59
## 18454 Manhattan Entire home/apt 200
## 18455 Brooklyn Entire home/apt 200
## 18456 Brooklyn Entire home/apt 100
## 18457 Manhattan Entire home/apt 499
## 18458 Manhattan Entire home/apt 189
## 18459 Queens Private room 185
## 18460 Manhattan Private room 79
## 18461 Manhattan Private room 149
## 18462 Manhattan Entire home/apt 250
## 18463 Manhattan Private room 105
## 18464 Brooklyn Private room 45
## 18465 Brooklyn Entire home/apt 125
## 18466 Brooklyn Private room 95
## 18467 Queens Entire home/apt 75
## 18468 Manhattan Private room 30
## 18469 Manhattan Private room 175
## 18470 Brooklyn Entire home/apt 149
## 18471 Manhattan Entire home/apt 189
## 18472 Manhattan Private room 95
## 18473 Manhattan Shared room 61
## 18474 Manhattan Entire home/apt 190
## 18475 Manhattan Shared room 80
## 18476 Brooklyn Private room 99
## 18477 Manhattan Private room 84
## 18478 Brooklyn Entire home/apt 125
## 18479 Manhattan Private room 43
## 18480 Brooklyn Entire home/apt 107
## 18481 Manhattan Entire home/apt 190
## 18482 Brooklyn Entire home/apt 125
## 18483 Queens Private room 45
## 18484 Brooklyn Private room 65
## 18485 Manhattan Entire home/apt 174
## 18486 Manhattan Entire home/apt 170
## 18487 Manhattan Entire home/apt 200
## 18488 Manhattan Entire home/apt 250
## 18489 Manhattan Private room 95
## 18490 Manhattan Private room 250
## 18491 Bronx Private room 80
## 18492 Manhattan Entire home/apt 160
## 18493 Brooklyn Private room 45
## 18494 Manhattan Entire home/apt 70
## 18495 Brooklyn Private room 75
## 18496 Brooklyn Private room 35
## 18497 Brooklyn Entire home/apt 200
## 18498 Brooklyn Entire home/apt 95
## 18499 Brooklyn Entire home/apt 250
## 18500 Staten Island Entire home/apt 275
## 18501 Brooklyn Private room 70
## 18502 Queens Private room 30
## 18503 Manhattan Entire home/apt 289
## 18504 Manhattan Entire home/apt 375
## 18505 Manhattan Entire home/apt 129
## 18506 Manhattan Entire home/apt 219
## 18507 Brooklyn Private room 81
## 18508 Manhattan Private room 75
## 18509 Manhattan Entire home/apt 250
## 18510 Manhattan Private room 99
## 18511 Manhattan Entire home/apt 225
## 18512 Manhattan Private room 106
## 18513 Brooklyn Private room 55
## 18514 Brooklyn Entire home/apt 110
## 18515 Manhattan Entire home/apt 279
## 18516 Manhattan Entire home/apt 94
## 18517 Brooklyn Entire home/apt 220
## 18518 Brooklyn Entire home/apt 110
## 18519 Staten Island Entire home/apt 275
## 18520 Manhattan Entire home/apt 999
## 18521 Manhattan Private room 125
## 18522 Brooklyn Private room 90
## 18523 Manhattan Entire home/apt 122
## 18524 Manhattan Private room 60
## 18525 Brooklyn Entire home/apt 99
## 18526 Brooklyn Private room 48
## 18527 Manhattan Entire home/apt 159
## 18528 Manhattan Entire home/apt 117
## 18529 Brooklyn Private room 45
## 18530 Manhattan Private room 100
## 18531 Queens Private room 40
## 18532 Manhattan Entire home/apt 175
## 18533 Manhattan Private room 40
## 18534 Brooklyn Entire home/apt 85
## 18535 Brooklyn Private room 100
## 18536 Manhattan Entire home/apt 195
## 18537 Brooklyn Shared room 65
## 18538 Brooklyn Entire home/apt 250
## 18539 Brooklyn Entire home/apt 170
## 18540 Manhattan Entire home/apt 440
## 18541 Brooklyn Private room 58
## 18542 Brooklyn Private room 45
## 18543 Manhattan Private room 65
## 18544 Brooklyn Entire home/apt 299
## 18545 Manhattan Private room 100
## 18546 Manhattan Private room 99
## 18547 Manhattan Private room 120
## 18548 Manhattan Entire home/apt 149
## 18549 Brooklyn Entire home/apt 150
## 18550 Queens Entire home/apt 100
## 18551 Queens Private room 60
## 18552 Manhattan Entire home/apt 153
## 18553 Brooklyn Private room 50
## 18554 Brooklyn Entire home/apt 172
## 18555 Queens Entire home/apt 109
## 18556 Manhattan Entire home/apt 180
## 18557 Manhattan Private room 60
## 18558 Brooklyn Entire home/apt 175
## 18559 Queens Private room 98
## 18560 Brooklyn Entire home/apt 150
## 18561 Manhattan Entire home/apt 199
## 18562 Manhattan Private room 75
## 18563 Queens Entire home/apt 125
## 18564 Staten Island Private room 200
## 18565 Manhattan Shared room 300
## 18566 Manhattan Entire home/apt 750
## 18567 Brooklyn Private room 100
## 18568 Manhattan Entire home/apt 225
## 18569 Manhattan Private room 120
## 18570 Brooklyn Entire home/apt 295
## 18571 Manhattan Entire home/apt 160
## 18572 Brooklyn Private room 40
## 18573 Manhattan Entire home/apt 350
## 18574 Manhattan Private room 110
## 18575 Brooklyn Private room 43
## 18576 Brooklyn Private room 50
## 18577 Brooklyn Entire home/apt 85
## 18578 Manhattan Private room 56
## 18579 Brooklyn Private room 73
## 18580 Manhattan Private room 175
## 18581 Brooklyn Private room 49
## 18582 Manhattan Entire home/apt 175
## 18583 Manhattan Entire home/apt 672
## 18584 Queens Private room 44
## 18585 Brooklyn Private room 130
## 18586 Brooklyn Entire home/apt 132
## 18587 Queens Private room 55
## 18588 Manhattan Entire home/apt 250
## 18589 Manhattan Entire home/apt 300
## 18590 Brooklyn Private room 35
## 18591 Manhattan Private room 100
## 18592 Manhattan Entire home/apt 175
## 18593 Manhattan Private room 75
## 18594 Queens Private room 30
## 18595 Queens Private room 60
## 18596 Brooklyn Private room 47
## 18597 Manhattan Entire home/apt 200
## 18598 Brooklyn Private room 60
## 18599 Queens Private room 50
## 18600 Brooklyn Entire home/apt 100
## 18601 Brooklyn Entire home/apt 80
## 18602 Manhattan Private room 125
## 18603 Manhattan Entire home/apt 125
## 18604 Brooklyn Shared room 78
## 18605 Queens Private room 75
## 18606 Queens Entire home/apt 150
## 18607 Manhattan Private room 100
## 18608 Queens Entire home/apt 200
## 18609 Manhattan Entire home/apt 65
## 18610 Brooklyn Entire home/apt 145
## 18611 Manhattan Entire home/apt 180
## 18612 Brooklyn Shared room 99
## 18613 Brooklyn Private room 120
## 18614 Manhattan Private room 227
## 18615 Manhattan Private room 90
## 18616 Brooklyn Private room 99
## 18617 Brooklyn Private room 55
## 18618 Brooklyn Private room 55
## 18619 Brooklyn Private room 80
## 18620 Brooklyn Private room 40
## 18621 Manhattan Entire home/apt 133
## 18622 Manhattan Entire home/apt 175
## 18623 Brooklyn Entire home/apt 163
## 18624 Manhattan Entire home/apt 250
## 18625 Queens Entire home/apt 117
## 18626 Manhattan Entire home/apt 295
## 18627 Manhattan Private room 105
## 18628 Bronx Private room 59
## 18629 Manhattan Private room 60
## 18630 Queens Entire home/apt 49
## 18631 Brooklyn Entire home/apt 141
## 18632 Brooklyn Private room 59
## 18633 Manhattan Entire home/apt 3000
## 18634 Brooklyn Private room 50
## 18635 Manhattan Private room 41
## 18636 Manhattan Entire home/apt 399
## 18637 Brooklyn Entire home/apt 189
## 18638 Brooklyn Private room 48
## 18639 Brooklyn Entire home/apt 49
## 18640 Manhattan Entire home/apt 175
## 18641 Brooklyn Private room 55
## 18642 Manhattan Private room 53
## 18643 Brooklyn Private room 80
## 18644 Manhattan Entire home/apt 150
## 18645 Queens Private room 67
## 18646 Brooklyn Private room 80
## 18647 Brooklyn Private room 78
## 18648 Queens Private room 50
## 18649 Brooklyn Entire home/apt 120
## 18650 Brooklyn Private room 75
## 18651 Brooklyn Private room 60
## 18652 Brooklyn Private room 75
## 18653 Brooklyn Entire home/apt 99
## 18654 Manhattan Private room 100
## 18655 Manhattan Private room 95
## 18656 Manhattan Entire home/apt 200
## 18657 Queens Entire home/apt 249
## 18658 Manhattan Private room 33
## 18659 Manhattan Private room 80
## 18660 Brooklyn Entire home/apt 160
## 18661 Brooklyn Private room 50
## 18662 Queens Private room 50
## 18663 Brooklyn Entire home/apt 100
## 18664 Brooklyn Private room 33
## 18665 Brooklyn Private room 100
## 18666 Brooklyn Private room 35
## 18667 Brooklyn Private room 55
## 18668 Brooklyn Entire home/apt 60
## 18669 Brooklyn Entire home/apt 89
## 18670 Manhattan Private room 97
## 18671 Manhattan Entire home/apt 164
## 18672 Brooklyn Private room 57
## 18673 Queens Entire home/apt 66
## 18674 Queens Private room 400
## 18675 Manhattan Entire home/apt 199
## 18676 Brooklyn Private room 52
## 18677 Brooklyn Private room 70
## 18678 Brooklyn Entire home/apt 170
## 18679 Brooklyn Private room 62
## 18680 Manhattan Entire home/apt 200
## 18681 Manhattan Private room 75
## 18682 Manhattan Entire home/apt 200
## 18683 Brooklyn Entire home/apt 160
## 18684 Manhattan Private room 100
## 18685 Brooklyn Private room 100
## 18686 Manhattan Private room 58
## 18687 Brooklyn Entire home/apt 110
## 18688 Brooklyn Private room 120
## 18689 Queens Entire home/apt 95
## 18690 Brooklyn Entire home/apt 150
## 18691 Brooklyn Entire home/apt 150
## 18692 Brooklyn Entire home/apt 95
## 18693 Manhattan Entire home/apt 250
## 18694 Brooklyn Private room 37
## 18695 Brooklyn Private room 75
## 18696 Brooklyn Private room 67
## 18697 Brooklyn Private room 59
## 18698 Brooklyn Entire home/apt 227
## 18699 Manhattan Entire home/apt 160
## 18700 Staten Island Entire home/apt 125
## 18701 Manhattan Private room 50
## 18702 Brooklyn Entire home/apt 80
## 18703 Brooklyn Entire home/apt 225
## 18704 Manhattan Private room 180
## 18705 Brooklyn Entire home/apt 109
## 18706 Manhattan Private room 100
## 18707 Brooklyn Entire home/apt 79
## 18708 Queens Private room 105
## 18709 Manhattan Entire home/apt 125
## 18710 Queens Private room 47
## 18711 Brooklyn Private room 60
## 18712 Manhattan Entire home/apt 120
## 18713 Manhattan Entire home/apt 195
## 18714 Queens Private room 60
## 18715 Manhattan Private room 99
## 18716 Manhattan Entire home/apt 300
## 18717 Brooklyn Entire home/apt 250
## 18718 Manhattan Entire home/apt 105
## 18719 Manhattan Entire home/apt 129
## 18720 Queens Shared room 27
## 18721 Manhattan Private room 65
## 18722 Queens Private room 42
## 18723 Manhattan Private room 100
## 18724 Manhattan Private room 120
## 18725 Manhattan Entire home/apt 199
## 18726 Manhattan Private room 85
## 18727 Brooklyn Entire home/apt 135
## 18728 Brooklyn Shared room 50
## 18729 Brooklyn Private room 120
## 18730 Brooklyn Entire home/apt 160
## 18731 Manhattan Private room 120
## 18732 Manhattan Private room 120
## 18733 Manhattan Shared room 100
## 18734 Manhattan Entire home/apt 270
## 18735 Brooklyn Private room 72
## 18736 Manhattan Entire home/apt 179
## 18737 Brooklyn Private room 72
## 18738 Manhattan Entire home/apt 200
## 18739 Brooklyn Private room 48
## 18740 Brooklyn Entire home/apt 95
## 18741 Manhattan Entire home/apt 800
## 18742 Manhattan Private room 49
## 18743 Brooklyn Private room 65
## 18744 Manhattan Private room 129
## 18745 Brooklyn Private room 113
## 18746 Queens Entire home/apt 100
## 18747 Brooklyn Entire home/apt 175
## 18748 Brooklyn Entire home/apt 575
## 18749 Brooklyn Entire home/apt 135
## 18750 Manhattan Private room 200
## 18751 Brooklyn Entire home/apt 152
## 18752 Queens Entire home/apt 140
## 18753 Brooklyn Entire home/apt 800
## 18754 Manhattan Private room 95
## 18755 Brooklyn Entire home/apt 80
## 18756 Manhattan Entire home/apt 215
## 18757 Brooklyn Entire home/apt 140
## 18758 Manhattan Entire home/apt 110
## 18759 Manhattan Entire home/apt 100
## 18760 Brooklyn Private room 100
## 18761 Brooklyn Entire home/apt 94
## 18762 Queens Private room 76
## 18763 Queens Entire home/apt 150
## 18764 Manhattan Entire home/apt 195
## 18765 Manhattan Private room 49
## 18766 Manhattan Entire home/apt 500
## 18767 Brooklyn Private room 45
## 18768 Queens Private room 50
## 18769 Manhattan Entire home/apt 295
## 18770 Brooklyn Private room 65
## 18771 Manhattan Entire home/apt 90
## 18772 Manhattan Private room 71
## 18773 Brooklyn Entire home/apt 155
## 18774 Queens Private room 40
## 18775 Brooklyn Entire home/apt 50
## 18776 Brooklyn Private room 50
## 18777 Manhattan Entire home/apt 199
## 18778 Brooklyn Entire home/apt 136
## 18779 Brooklyn Entire home/apt 80
## 18780 Manhattan Private room 65
## 18781 Brooklyn Entire home/apt 200
## 18782 Brooklyn Entire home/apt 148
## 18783 Manhattan Private room 100
## 18784 Brooklyn Private room 90
## 18785 Brooklyn Entire home/apt 239
## 18786 Manhattan Entire home/apt 150
## 18787 Manhattan Entire home/apt 300
## 18788 Manhattan Entire home/apt 125
## 18789 Manhattan Private room 60
## 18790 Manhattan Entire home/apt 200
## 18791 Queens Private room 50
## 18792 Manhattan Private room 75
## 18793 Brooklyn Private room 100
## 18794 Queens Entire home/apt 50
## 18795 Queens Entire home/apt 150
## 18796 Brooklyn Private room 50
## 18797 Manhattan Entire home/apt 198
## 18798 Manhattan Entire home/apt 109
## 18799 Queens Entire home/apt 200
## 18800 Brooklyn Private room 55
## 18801 Staten Island Private room 80
## 18802 Manhattan Entire home/apt 165
## 18803 Manhattan Entire home/apt 415
## 18804 Manhattan Private room 80
## 18805 Manhattan Entire home/apt 235
## 18806 Queens Private room 99
## 18807 Manhattan Entire home/apt 180
## 18808 Brooklyn Entire home/apt 180
## 18809 Brooklyn Entire home/apt 100
## 18810 Brooklyn Private room 88
## 18811 Brooklyn Private room 56
## 18812 Brooklyn Entire home/apt 98
## 18813 Brooklyn Entire home/apt 93
## 18814 Manhattan Private room 60
## 18815 Brooklyn Entire home/apt 250
## 18816 Brooklyn Entire home/apt 225
## 18817 Brooklyn Entire home/apt 400
## 18818 Brooklyn Entire home/apt 130
## 18819 Brooklyn Entire home/apt 249
## 18820 Brooklyn Entire home/apt 85
## 18821 Bronx Private room 30
## 18822 Brooklyn Private room 60
## 18823 Brooklyn Private room 80
## 18824 Manhattan Private room 129
## 18825 Brooklyn Shared room 250
## 18826 Manhattan Private room 110
## 18827 Manhattan Private room 129
## 18828 Brooklyn Private room 75
## 18829 Manhattan Entire home/apt 199
## 18830 Manhattan Entire home/apt 129
## 18831 Manhattan Private room 75
## 18832 Queens Entire home/apt 105
## 18833 Bronx Private room 49
## 18834 Brooklyn Private room 215
## 18835 Manhattan Entire home/apt 85
## 18836 Brooklyn Entire home/apt 102
## 18837 Bronx Private room 85
## 18838 Brooklyn Private room 25
## 18839 Manhattan Entire home/apt 279
## 18840 Manhattan Private room 41
## 18841 Brooklyn Entire home/apt 280
## 18842 Manhattan Entire home/apt 165
## 18843 Manhattan Private room 40
## 18844 Manhattan Private room 120
## 18845 Manhattan Private room 60
## 18846 Brooklyn Private room 70
## 18847 Manhattan Entire home/apt 130
## 18848 Manhattan Entire home/apt 249
## 18849 Brooklyn Private room 80
## 18850 Brooklyn Entire home/apt 145
## 18851 Manhattan Entire home/apt 260
## 18852 Brooklyn Entire home/apt 86
## 18853 Manhattan Entire home/apt 219
## 18854 Brooklyn Private room 90
## 18855 Manhattan Private room 70
## 18856 Brooklyn Private room 70
## 18857 Brooklyn Private room 64
## 18858 Manhattan Private room 85
## 18859 Queens Entire home/apt 125
## 18860 Brooklyn Private room 60
## 18861 Manhattan Entire home/apt 225
## 18862 Brooklyn Entire home/apt 100
## 18863 Brooklyn Entire home/apt 218
## 18864 Brooklyn Entire home/apt 200
## 18865 Manhattan Private room 55
## 18866 Brooklyn Private room 90
## 18867 Brooklyn Entire home/apt 105
## 18868 Manhattan Entire home/apt 195
## 18869 Manhattan Entire home/apt 170
## 18870 Brooklyn Entire home/apt 150
## 18871 Manhattan Entire home/apt 300
## 18872 Brooklyn Entire home/apt 154
## 18873 Manhattan Entire home/apt 185
## 18874 Brooklyn Private room 50
## 18875 Brooklyn Private room 70
## 18876 Queens Entire home/apt 180
## 18877 Queens Private room 65
## 18878 Manhattan Private room 69
## 18879 Queens Entire home/apt 500
## 18880 Brooklyn Private room 40
## 18881 Queens Entire home/apt 85
## 18882 Manhattan Entire home/apt 250
## 18883 Manhattan Entire home/apt 69
## 18884 Manhattan Entire home/apt 270
## 18885 Queens Private room 53
## 18886 Brooklyn Entire home/apt 100
## 18887 Queens Private room 52
## 18888 Bronx Entire home/apt 299
## 18889 Manhattan Entire home/apt 175
## 18890 Bronx Private room 43
## 18891 Brooklyn Private room 50
## 18892 Brooklyn Private room 88
## 18893 Brooklyn Private room 70
## 18894 Brooklyn Private room 78
## 18895 Brooklyn Private room 50
## 18896 Manhattan Entire home/apt 200
## 18897 Brooklyn Private room 60
## 18898 Manhattan Entire home/apt 150
## 18899 Queens Private room 75
## 18900 Brooklyn Entire home/apt 150
## 18901 Manhattan Private room 129
## 18902 Manhattan Entire home/apt 220
## 18903 Brooklyn Private room 60
## 18904 Brooklyn Entire home/apt 105
## 18905 Brooklyn Private room 125
## 18906 Manhattan Private room 378
## 18907 Queens Private room 61
## 18908 Queens Private room 60
## 18909 Brooklyn Private room 75
## 18910 Manhattan Private room 80
## 18911 Manhattan Entire home/apt 151
## 18912 Brooklyn Entire home/apt 259
## 18913 Queens Entire home/apt 70
## 18914 Brooklyn Private room 60
## 18915 Queens Private room 65
## 18916 Manhattan Entire home/apt 180
## 18917 Brooklyn Entire home/apt 180
## 18918 Queens Private room 45
## 18919 Manhattan Private room 112
## 18920 Manhattan Entire home/apt 168
## 18921 Manhattan Entire home/apt 250
## 18922 Brooklyn Entire home/apt 130
## 18923 Brooklyn Private room 50
## 18924 Manhattan Entire home/apt 142
## 18925 Manhattan Entire home/apt 199
## 18926 Manhattan Private room 60
## 18927 Brooklyn Private room 45
## 18928 Manhattan Private room 85
## 18929 Manhattan Private room 99
## 18930 Brooklyn Shared room 37
## 18931 Brooklyn Private room 40
## 18932 Brooklyn Private room 45
## 18933 Manhattan Entire home/apt 77
## 18934 Manhattan Private room 55
## 18935 Queens Private room 60
## 18936 Manhattan Private room 95
## 18937 Brooklyn Entire home/apt 40
## 18938 Queens Private room 68
## 18939 Brooklyn Private room 85
## 18940 Queens Private room 55
## 18941 Queens Private room 45
## 18942 Queens Private room 50
## 18943 Queens Entire home/apt 54
## 18944 Queens Private room 70
## 18945 Manhattan Private room 60
## 18946 Brooklyn Entire home/apt 150
## 18947 Manhattan Entire home/apt 249
## 18948 Brooklyn Entire home/apt 90
## 18949 Manhattan Entire home/apt 584
## 18950 Manhattan Private room 135
## 18951 Brooklyn Private room 55
## 18952 Manhattan Entire home/apt 267
## 18953 Manhattan Entire home/apt 350
## 18954 Manhattan Entire home/apt 99
## 18955 Queens Private room 40
## 18956 Queens Private room 40
## 18957 Queens Private room 43
## 18958 Brooklyn Private room 45
## 18959 Brooklyn Entire home/apt 88
## 18960 Manhattan Private room 90
## 18961 Manhattan Entire home/apt 225
## 18962 Brooklyn Private room 40
## 18963 Brooklyn Private room 54
## 18964 Manhattan Private room 115
## 18965 Manhattan Entire home/apt 105
## 18966 Queens Private room 65
## 18967 Manhattan Private room 110
## 18968 Brooklyn Private room 99
## 18969 Manhattan Private room 47
## 18970 Manhattan Private room 150
## 18971 Brooklyn Entire home/apt 249
## 18972 Manhattan Entire home/apt 225
## 18973 Brooklyn Entire home/apt 195
## 18974 Queens Private room 90
## 18975 Manhattan Private room 64
## 18976 Manhattan Entire home/apt 750
## 18977 Bronx Entire home/apt 159
## 18978 Brooklyn Private room 59
## 18979 Brooklyn Entire home/apt 105
## 18980 Manhattan Entire home/apt 215
## 18981 Brooklyn Private room 54
## 18982 Manhattan Private room 79
## 18983 Queens Entire home/apt 155
## 18984 Brooklyn Private room 99
## 18985 Brooklyn Private room 57
## 18986 Manhattan Private room 140
## 18987 Staten Island Private room 69
## 18988 Manhattan Entire home/apt 150
## 18989 Brooklyn Private room 95
## 18990 Brooklyn Entire home/apt 150
## 18991 Manhattan Private room 110
## 18992 Manhattan Entire home/apt 175
## 18993 Brooklyn Entire home/apt 85
## 18994 Bronx Entire home/apt 76
## 18995 Manhattan Entire home/apt 399
## 18996 Queens Private room 79
## 18997 Brooklyn Private room 41
## 18998 Brooklyn Private room 85
## 18999 Brooklyn Private room 120
## 19000 Queens Private room 65
## 19001 Brooklyn Private room 54
## 19002 Brooklyn Private room 60
## 19003 Brooklyn Private room 51
## 19004 Brooklyn Entire home/apt 250
## 19005 Brooklyn Entire home/apt 125
## 19006 Manhattan Private room 80
## 19007 Manhattan Entire home/apt 105
## 19008 Brooklyn Private room 60
## 19009 Queens Private room 239
## 19010 Brooklyn Entire home/apt 200
## 19011 Manhattan Entire home/apt 250
## 19012 Manhattan Entire home/apt 200
## 19013 Brooklyn Private room 75
## 19014 Manhattan Entire home/apt 225
## 19015 Manhattan Private room 110
## 19016 Queens Private room 75
## 19017 Bronx Private room 40
## 19018 Brooklyn Entire home/apt 100
## 19019 Brooklyn Private room 55
## 19020 Manhattan Entire home/apt 185
## 19021 Brooklyn Private room 60
## 19022 Manhattan Entire home/apt 165
## 19023 Brooklyn Entire home/apt 188
## 19024 Brooklyn Entire home/apt 140
## 19025 Queens Entire home/apt 115
## 19026 Brooklyn Entire home/apt 150
## 19027 Manhattan Entire home/apt 300
## 19028 Manhattan Private room 132
## 19029 Manhattan Private room 95
## 19030 Manhattan Private room 85
## 19031 Brooklyn Private room 65
## 19032 Brooklyn Entire home/apt 150
## 19033 Brooklyn Private room 100
## 19034 Manhattan Private room 119
## 19035 Manhattan Entire home/apt 200
## 19036 Brooklyn Entire home/apt 90
## 19037 Manhattan Entire home/apt 163
## 19038 Brooklyn Private room 68
## 19039 Brooklyn Entire home/apt 100
## 19040 Manhattan Entire home/apt 169
## 19041 Manhattan Entire home/apt 105
## 19042 Manhattan Entire home/apt 475
## 19043 Queens Private room 70
## 19044 Queens Private room 90
## 19045 Manhattan Private room 100
## 19046 Brooklyn Private room 65
## 19047 Manhattan Entire home/apt 110
## 19048 Queens Private room 46
## 19049 Brooklyn Private room 40
## 19050 Brooklyn Private room 80
## 19051 Manhattan Entire home/apt 249
## 19052 Manhattan Private room 110
## 19053 Queens Private room 48
## 19054 Brooklyn Private room 50
## 19055 Brooklyn Entire home/apt 135
## 19056 Queens Private room 59
## 19057 Manhattan Private room 149
## 19058 Brooklyn Shared room 35
## 19059 Brooklyn Entire home/apt 85
## 19060 Manhattan Entire home/apt 120
## 19061 Manhattan Entire home/apt 894
## 19062 Manhattan Entire home/apt 643
## 19063 Manhattan Private room 180
## 19064 Manhattan Entire home/apt 299
## 19065 Brooklyn Private room 60
## 19066 Brooklyn Private room 45
## 19067 Brooklyn Private room 50
## 19068 Manhattan Entire home/apt 300
## 19069 Brooklyn Entire home/apt 151
## 19070 Brooklyn Private room 139
## 19071 Manhattan Entire home/apt 160
## 19072 Brooklyn Private room 55
## 19073 Manhattan Private room 120
## 19074 Manhattan Private room 699
## 19075 Brooklyn Private room 65
## 19076 Brooklyn Private room 130
## 19077 Brooklyn Private room 70
## 19078 Manhattan Entire home/apt 67
## 19079 Brooklyn Entire home/apt 130
## 19080 Manhattan Entire home/apt 117
## 19081 Brooklyn Entire home/apt 98
## 19082 Brooklyn Entire home/apt 120
## 19083 Brooklyn Private room 75
## 19084 Manhattan Private room 350
## 19085 Brooklyn Private room 60
## 19086 Manhattan Private room 40
## 19087 Brooklyn Private room 125
## 19088 Brooklyn Private room 60
## 19089 Brooklyn Private room 100
## 19090 Manhattan Shared room 95
## 19091 Manhattan Entire home/apt 124
## 19092 Queens Private room 85
## 19093 Brooklyn Private room 90
## 19094 Brooklyn Private room 70
## 19095 Staten Island Entire home/apt 150
## 19096 Manhattan Entire home/apt 93
## 19097 Queens Private room 80
## 19098 Queens Private room 76
## 19099 Brooklyn Entire home/apt 113
## 19100 Brooklyn Entire home/apt 130
## 19101 Manhattan Entire home/apt 160
## 19102 Manhattan Private room 89
## 19103 Brooklyn Private room 50
## 19104 Manhattan Entire home/apt 150
## 19105 Brooklyn Entire home/apt 125
## 19106 Queens Private room 85
## 19107 Brooklyn Private room 45
## 19108 Brooklyn Entire home/apt 150
## 19109 Brooklyn Entire home/apt 170
## 19110 Brooklyn Entire home/apt 85
## 19111 Manhattan Entire home/apt 462
## 19112 Manhattan Private room 198
## 19113 Manhattan Entire home/apt 198
## 19114 Queens Private room 43
## 19115 Queens Private room 65
## 19116 Brooklyn Private room 41
## 19117 Manhattan Private room 89
## 19118 Brooklyn Private room 80
## 19119 Manhattan Private room 110
## 19120 Manhattan Private room 80
## 19121 Queens Private room 75
## 19122 Manhattan Private room 749
## 19123 Manhattan Private room 799
## 19124 Manhattan Private room 599
## 19125 Brooklyn Private room 75
## 19126 Manhattan Private room 79
## 19127 Manhattan Private room 699
## 19128 Manhattan Private room 499
## 19129 Brooklyn Entire home/apt 175
## 19130 Staten Island Private room 110
## 19131 Manhattan Private room 189
## 19132 Brooklyn Private room 50
## 19133 Brooklyn Private room 50
## 19134 Manhattan Entire home/apt 150
## 19135 Brooklyn Private room 50
## 19136 Manhattan Private room 799
## 19137 Manhattan Private room 499
## 19138 Manhattan Entire home/apt 189
## 19139 Manhattan Private room 649
## 19140 Manhattan Private room 799
## 19141 Manhattan Entire home/apt 275
## 19142 Manhattan Private room 100
## 19143 Manhattan Entire home/apt 70
## 19144 Manhattan Private room 35
## 19145 Brooklyn Entire home/apt 95
## 19146 Manhattan Entire home/apt 140
## 19147 Manhattan Private room 75
## 19148 Manhattan Private room 302
## 19149 Manhattan Private room 65
## 19150 Manhattan Entire home/apt 399
## 19151 Manhattan Entire home/apt 321
## 19152 Manhattan Entire home/apt 499
## 19153 Manhattan Entire home/apt 534
## 19154 Manhattan Entire home/apt 748
## 19155 Manhattan Entire home/apt 748
## 19156 Manhattan Private room 33
## 19157 Brooklyn Entire home/apt 350
## 19158 Manhattan Entire home/apt 534
## 19159 Manhattan Entire home/apt 300
## 19160 Manhattan Entire home/apt 748
## 19161 Manhattan Entire home/apt 748
## 19162 Manhattan Entire home/apt 200
## 19163 Manhattan Entire home/apt 214
## 19164 Brooklyn Private room 40
## 19165 Brooklyn Private room 39
## 19166 Manhattan Private room 75
## 19167 Manhattan Private room 100
## 19168 Manhattan Private room 49
## 19169 Brooklyn Entire home/apt 185
## 19170 Brooklyn Private room 100
## 19171 Brooklyn Entire home/apt 130
## 19172 Manhattan Entire home/apt 375
## 19173 Manhattan Private room 69
## 19174 Brooklyn Private room 125
## 19175 Brooklyn Private room 85
## 19176 Manhattan Private room 59
## 19177 Manhattan Entire home/apt 110
## 19178 Brooklyn Entire home/apt 250
## 19179 Manhattan Entire home/apt 175
## 19180 Brooklyn Private room 99
## 19181 Manhattan Entire home/apt 175
## 19182 Brooklyn Private room 38
## 19183 Bronx Private room 77
## 19184 Manhattan Entire home/apt 850
## 19185 Brooklyn Private room 90
## 19186 Manhattan Entire home/apt 128
## 19187 Queens Entire home/apt 49
## 19188 Manhattan Entire home/apt 305
## 19189 Brooklyn Entire home/apt 83
## 19190 Brooklyn Private room 80
## 19191 Brooklyn Entire home/apt 400
## 19192 Manhattan Entire home/apt 450
## 19193 Brooklyn Private room 80
## 19194 Manhattan Private room 82
## 19195 Bronx Private room 68
## 19196 Manhattan Entire home/apt 200
## 19197 Brooklyn Entire home/apt 75
## 19198 Manhattan Private room 120
## 19199 Manhattan Entire home/apt 125
## 19200 Manhattan Private room 39
## 19201 Manhattan Entire home/apt 350
## 19202 Queens Entire home/apt 110
## 19203 Brooklyn Entire home/apt 349
## 19204 Manhattan Private room 85
## 19205 Brooklyn Private room 66
## 19206 Queens Private room 75
## 19207 Brooklyn Entire home/apt 144
## 19208 Manhattan Entire home/apt 550
## 19209 Manhattan Private room 110
## 19210 Brooklyn Private room 51
## 19211 Manhattan Private room 118
## 19212 Staten Island Private room 70
## 19213 Manhattan Private room 118
## 19214 Manhattan Entire home/apt 250
## 19215 Manhattan Private room 118
## 19216 Brooklyn Entire home/apt 135
## 19217 Manhattan Private room 252
## 19218 Manhattan Entire home/apt 300
## 19219 Queens Private room 49
## 19220 Bronx Private room 40
## 19221 Brooklyn Private room 65
## 19222 Brooklyn Entire home/apt 160
## 19223 Brooklyn Private room 65
## 19224 Manhattan Private room 60
## 19225 Bronx Private room 35
## 19226 Brooklyn Private room 125
## 19227 Brooklyn Entire home/apt 105
## 19228 Brooklyn Entire home/apt 150
## 19229 Manhattan Private room 73
## 19230 Brooklyn Private room 95
## 19231 Brooklyn Private room 75
## 19232 Manhattan Entire home/apt 120
## 19233 Manhattan Entire home/apt 199
## 19234 Manhattan Entire home/apt 199
## 19235 Queens Private room 60
## 19236 Brooklyn Private room 88
## 19237 Manhattan Entire home/apt 1000
## 19238 Manhattan Entire home/apt 179
## 19239 Manhattan Entire home/apt 120
## 19240 Queens Private room 50
## 19241 Manhattan Private room 110
## 19242 Brooklyn Entire home/apt 390
## 19243 Manhattan Private room 269
## 19244 Brooklyn Private room 60
## 19245 Manhattan Private room 65
## 19246 Manhattan Entire home/apt 150
## 19247 Brooklyn Private room 45
## 19248 Queens Private room 105
## 19249 Queens Private room 55
## 19250 Queens Entire home/apt 105
## 19251 Queens Private room 399
## 19252 Brooklyn Private room 75
## 19253 Brooklyn Private room 38
## 19254 Bronx Private room 50
## 19255 Brooklyn Private room 70
## 19256 Queens Private room 85
## 19257 Queens Private room 70
## 19258 Manhattan Private room 85
## 19259 Brooklyn Entire home/apt 180
## 19260 Manhattan Entire home/apt 600
## 19261 Manhattan Private room 75
## 19262 Brooklyn Private room 200
## 19263 Queens Private room 47
## 19264 Brooklyn Entire home/apt 300
## 19265 Queens Entire home/apt 150
## 19266 Manhattan Entire home/apt 225
## 19267 Queens Entire home/apt 149
## 19268 Manhattan Private room 100
## 19269 Brooklyn Entire home/apt 425
## 19270 Bronx Private room 59
## 19271 Manhattan Entire home/apt 2000
## 19272 Brooklyn Private room 77
## 19273 Queens Entire home/apt 129
## 19274 Manhattan Entire home/apt 245
## 19275 Manhattan Private room 50
## 19276 Manhattan Private room 120
## 19277 Manhattan Private room 55
## 19278 Brooklyn Private room 110
## 19279 Brooklyn Private room 150
## 19280 Brooklyn Private room 71
## 19281 Manhattan Entire home/apt 300
## 19282 Manhattan Entire home/apt 90
## 19283 Brooklyn Private room 65
## 19284 Brooklyn Entire home/apt 408
## 19285 Manhattan Private room 78
## 19286 Brooklyn Entire home/apt 95
## 19287 Manhattan Private room 99
## 19288 Manhattan Private room 77
## 19289 Manhattan Entire home/apt 120
## 19290 Brooklyn Entire home/apt 125
## 19291 Manhattan Private room 90
## 19292 Brooklyn Private room 86
## 19293 Queens Private room 99
## 19294 Manhattan Private room 115
## 19295 Brooklyn Private room 32
## 19296 Manhattan Entire home/apt 130
## 19297 Manhattan Private room 100
## 19298 Brooklyn Private room 45
## 19299 Brooklyn Entire home/apt 95
## 19300 Manhattan Entire home/apt 183
## 19301 Brooklyn Entire home/apt 150
## 19302 Brooklyn Private room 75
## 19303 Brooklyn Entire home/apt 150
## 19304 Manhattan Private room 90
## 19305 Manhattan Private room 1500
## 19306 Brooklyn Entire home/apt 500
## 19307 Manhattan Entire home/apt 100
## 19308 Queens Private room 70
## 19309 Manhattan Private room 99
## 19310 Brooklyn Entire home/apt 80
## 19311 Brooklyn Private room 79
## 19312 Manhattan Private room 80
## 19313 Manhattan Entire home/apt 200
## 19314 Brooklyn Entire home/apt 100
## 19315 Manhattan Entire home/apt 200
## 19316 Manhattan Private room 95
## 19317 Brooklyn Entire home/apt 135
## 19318 Manhattan Entire home/apt 198
## 19319 Manhattan Private room 85
## 19320 Queens Private room 90
## 19321 Manhattan Entire home/apt 275
## 19322 Brooklyn Private room 80
## 19323 Manhattan Private room 108
## 19324 Manhattan Private room 110
## 19325 Queens Private room 95
## 19326 Brooklyn Private room 95
## 19327 Brooklyn Entire home/apt 160
## 19328 Manhattan Private room 50
## 19329 Brooklyn Private room 45
## 19330 Manhattan Private room 200
## 19331 Brooklyn Private room 101
## 19332 Manhattan Entire home/apt 174
## 19333 Brooklyn Private room 90
## 19334 Brooklyn Private room 65
## 19335 Queens Entire home/apt 94
## 19336 Brooklyn Private room 39
## 19337 Brooklyn Private room 39
## 19338 Manhattan Private room 65
## 19339 Manhattan Private room 100
## 19340 Brooklyn Entire home/apt 100
## 19341 Manhattan Private room 100
## 19342 Queens Private room 29
## 19343 Brooklyn Entire home/apt 150
## 19344 Brooklyn Private room 110
## 19345 Queens Entire home/apt 80
## 19346 Manhattan Private room 200
## 19347 Queens Private room 37
## 19348 Brooklyn Entire home/apt 175
## 19349 Manhattan Entire home/apt 375
## 19350 Manhattan Entire home/apt 249
## 19351 Manhattan Private room 80
## 19352 Brooklyn Private room 90
## 19353 Brooklyn Private room 90
## 19354 Brooklyn Entire home/apt 250
## 19355 Manhattan Entire home/apt 290
## 19356 Manhattan Entire home/apt 180
## 19357 Brooklyn Entire home/apt 95
## 19358 Manhattan Private room 205
## 19359 Brooklyn Private room 87
## 19360 Manhattan Entire home/apt 379
## 19361 Manhattan Private room 69
## 19362 Manhattan Entire home/apt 125
## 19363 Queens Shared room 30
## 19364 Brooklyn Entire home/apt 150
## 19365 Manhattan Private room 98
## 19366 Manhattan Private room 130
## 19367 Queens Entire home/apt 122
## 19368 Brooklyn Shared room 40
## 19369 Brooklyn Private room 29
## 19370 Bronx Entire home/apt 100
## 19371 Brooklyn Private room 90
## 19372 Queens Private room 99
## 19373 Brooklyn Entire home/apt 350
## 19374 Manhattan Private room 49
## 19375 Manhattan Private room 80
## 19376 Bronx Private room 60
## 19377 Staten Island Private room 79
## 19378 Manhattan Entire home/apt 145
## 19379 Brooklyn Entire home/apt 90
## 19380 Brooklyn Entire home/apt 138
## 19381 Manhattan Private room 90
## 19382 Brooklyn Entire home/apt 95
## 19383 Manhattan Shared room 65
## 19384 Brooklyn Entire home/apt 90
## 19385 Brooklyn Entire home/apt 130
## 19386 Brooklyn Private room 70
## 19387 Brooklyn Entire home/apt 115
## 19388 Brooklyn Private room 100
## 19389 Brooklyn Shared room 40
## 19390 Queens Private room 33
## 19391 Queens Private room 39
## 19392 Manhattan Entire home/apt 120
## 19393 Manhattan Private room 75
## 19394 Queens Entire home/apt 125
## 19395 Brooklyn Entire home/apt 140
## 19396 Brooklyn Entire home/apt 70
## 19397 Brooklyn Entire home/apt 250
## 19398 Brooklyn Private room 65
## 19399 Brooklyn Private room 40
## 19400 Brooklyn Private room 50
## 19401 Queens Entire home/apt 78
## 19402 Brooklyn Private room 50
## 19403 Queens Private room 72
## 19404 Queens Private room 108
## 19405 Queens Private room 108
## 19406 Brooklyn Entire home/apt 170
## 19407 Brooklyn Entire home/apt 125
## 19408 Manhattan Entire home/apt 149
## 19409 Brooklyn Entire home/apt 125
## 19410 Brooklyn Entire home/apt 70
## 19411 Manhattan Entire home/apt 120
## 19412 Brooklyn Private room 149
## 19413 Brooklyn Private room 90
## 19414 Manhattan Private room 150
## 19415 Manhattan Private room 250
## 19416 Manhattan Entire home/apt 375
## 19417 Manhattan Entire home/apt 95
## 19418 Manhattan Entire home/apt 129
## 19419 Brooklyn Private room 80
## 19420 Brooklyn Private room 45
## 19421 Manhattan Private room 53
## 19422 Manhattan Entire home/apt 125
## 19423 Manhattan Entire home/apt 534
## 19424 Brooklyn Private room 65
## 19425 Manhattan Entire home/apt 534
## 19426 Manhattan Entire home/apt 534
## 19427 Manhattan Entire home/apt 534
## 19428 Manhattan Entire home/apt 534
## 19429 Manhattan Private room 99
## 19430 Manhattan Entire home/apt 748
## 19431 Manhattan Entire home/apt 748
## 19432 Brooklyn Private room 45
## 19433 Manhattan Entire home/apt 190
## 19434 Queens Entire home/apt 80
## 19435 Queens Entire home/apt 125
## 19436 Manhattan Entire home/apt 748
## 19437 Brooklyn Entire home/apt 99
## 19438 Manhattan Entire home/apt 229
## 19439 Brooklyn Entire home/apt 55
## 19440 Manhattan Private room 189
## 19441 Brooklyn Entire home/apt 449
## 19442 Manhattan Entire home/apt 202
## 19443 Manhattan Entire home/apt 250
## 19444 Manhattan Private room 85
## 19445 Manhattan Private room 52
## 19446 Bronx Entire home/apt 120
## 19447 Manhattan Private room 90
## 19448 Brooklyn Private room 74
## 19449 Manhattan Entire home/apt 75
## 19450 Brooklyn Private room 70
## 19451 Brooklyn Entire home/apt 147
## 19452 Brooklyn Private room 50
## 19453 Manhattan Entire home/apt 250
## 19454 Manhattan Private room 40
## 19455 Manhattan Entire home/apt 200
## 19456 Brooklyn Private room 80
## 19457 Brooklyn Private room 100
## 19458 Manhattan Shared room 65
## 19459 Brooklyn Private room 70
## 19460 Brooklyn Entire home/apt 150
## 19461 Manhattan Entire home/apt 135
## 19462 Queens Private room 51
## 19463 Manhattan Entire home/apt 335
## 19464 Brooklyn Entire home/apt 198
## 19465 Manhattan Private room 120
## 19466 Brooklyn Private room 39
## 19467 Manhattan Private room 51
## 19468 Queens Entire home/apt 87
## 19469 Brooklyn Entire home/apt 145
## 19470 Staten Island Private room 80
## 19471 Brooklyn Private room 90
## 19472 Brooklyn Entire home/apt 125
## 19473 Brooklyn Private room 75
## 19474 Manhattan Entire home/apt 140
## 19475 Brooklyn Private room 2000
## 19476 Queens Private room 75
## 19477 Manhattan Entire home/apt 150
## 19478 Brooklyn Entire home/apt 90
## 19479 Brooklyn Private room 61
## 19480 Brooklyn Entire home/apt 160
## 19481 Brooklyn Private room 69
## 19482 Brooklyn Private room 199
## 19483 Brooklyn Entire home/apt 95
## 19484 Brooklyn Private room 120
## 19485 Manhattan Entire home/apt 200
## 19486 Brooklyn Entire home/apt 190
## 19487 Manhattan Private room 65
## 19488 Brooklyn Entire home/apt 160
## 19489 Manhattan Entire home/apt 235
## 19490 Queens Private room 35
## 19491 Brooklyn Private room 65
## 19492 Manhattan Entire home/apt 180
## 19493 Queens Private room 55
## 19494 Brooklyn Private room 50
## 19495 Manhattan Entire home/apt 100
## 19496 Manhattan Entire home/apt 195
## 19497 Brooklyn Entire home/apt 100
## 19498 Brooklyn Entire home/apt 185
## 19499 Brooklyn Entire home/apt 135
## 19500 Manhattan Entire home/apt 175
## 19501 Brooklyn Entire home/apt 345
## 19502 Brooklyn Entire home/apt 275
## 19503 Manhattan Private room 230
## 19504 Brooklyn Private room 85
## 19505 Brooklyn Entire home/apt 130
## 19506 Queens Entire home/apt 79
## 19507 Manhattan Private room 110
## 19508 Queens Private room 63
## 19509 Bronx Private room 35
## 19510 Brooklyn Private room 100
## 19511 Manhattan Private room 120
## 19512 Queens Private room 159
## 19513 Brooklyn Entire home/apt 90
## 19514 Manhattan Entire home/apt 350
## 19515 Brooklyn Entire home/apt 140
## 19516 Manhattan Private room 90
## 19517 Manhattan Entire home/apt 487
## 19518 Brooklyn Entire home/apt 110
## 19519 Manhattan Entire home/apt 300
## 19520 Brooklyn Private room 40
## 19521 Brooklyn Entire home/apt 200
## 19522 Queens Private room 60
## 19523 Brooklyn Entire home/apt 155
## 19524 Brooklyn Private room 75
## 19525 Queens Private room 47
## 19526 Brooklyn Entire home/apt 139
## 19527 Brooklyn Private room 39
## 19528 Brooklyn Private room 79
## 19529 Brooklyn Private room 95
## 19530 Brooklyn Entire home/apt 93
## 19531 Brooklyn Private room 71
## 19532 Brooklyn Entire home/apt 88
## 19533 Brooklyn Private room 55
## 19534 Manhattan Entire home/apt 115
## 19535 Brooklyn Entire home/apt 75
## 19536 Manhattan Entire home/apt 135
## 19537 Manhattan Entire home/apt 209
## 19538 Manhattan Entire home/apt 185
## 19539 Brooklyn Private room 40
## 19540 Brooklyn Private room 48
## 19541 Manhattan Entire home/apt 154
## 19542 Manhattan Private room 78
## 19543 Manhattan Entire home/apt 163
## 19544 Manhattan Entire home/apt 129
## 19545 Brooklyn Entire home/apt 126
## 19546 Brooklyn Entire home/apt 229
## 19547 Manhattan Private room 110
## 19548 Manhattan Entire home/apt 170
## 19549 Queens Private room 55
## 19550 Brooklyn Private room 40
## 19551 Brooklyn Entire home/apt 200
## 19552 Manhattan Private room 125
## 19553 Manhattan Entire home/apt 140
## 19554 Manhattan Entire home/apt 144
## 19555 Manhattan Entire home/apt 210
## 19556 Queens Private room 65
## 19557 Manhattan Entire home/apt 186
## 19558 Brooklyn Entire home/apt 100
## 19559 Brooklyn Entire home/apt 250
## 19560 Brooklyn Private room 89
## 19561 Manhattan Private room 60
## 19562 Brooklyn Entire home/apt 200
## 19563 Manhattan Entire home/apt 180
## 19564 Queens Private room 50
## 19565 Brooklyn Entire home/apt 160
## 19566 Bronx Entire home/apt 75
## 19567 Manhattan Entire home/apt 145
## 19568 Brooklyn Entire home/apt 119
## 19569 Queens Private room 49
## 19570 Brooklyn Entire home/apt 300
## 19571 Manhattan Private room 140
## 19572 Brooklyn Entire home/apt 98
## 19573 Brooklyn Entire home/apt 199
## 19574 Brooklyn Entire home/apt 125
## 19575 Manhattan Entire home/apt 95
## 19576 Queens Entire home/apt 95
## 19577 Brooklyn Private room 60
## 19578 Manhattan Entire home/apt 249
## 19579 Brooklyn Entire home/apt 160
## 19580 Manhattan Entire home/apt 175
## 19581 Manhattan Private room 40
## 19582 Brooklyn Private room 115
## 19583 Brooklyn Entire home/apt 79
## 19584 Manhattan Entire home/apt 236
## 19585 Manhattan Private room 120
## 19586 Brooklyn Entire home/apt 120
## 19587 Brooklyn Private room 54
## 19588 Queens Private room 56
## 19589 Manhattan Private room 60
## 19590 Brooklyn Private room 90
## 19591 Brooklyn Entire home/apt 260
## 19592 Manhattan Entire home/apt 125
## 19593 Queens Private room 65
## 19594 Brooklyn Entire home/apt 120
## 19595 Brooklyn Private room 55
## 19596 Brooklyn Entire home/apt 130
## 19597 Queens Private room 96
## 19598 Brooklyn Private room 109
## 19599 Brooklyn Private room 99
## 19600 Brooklyn Private room 55
## 19601 Manhattan Entire home/apt 300
## 19602 Manhattan Entire home/apt 220
## 19603 Manhattan Private room 155
## 19604 Manhattan Entire home/apt 133
## 19605 Brooklyn Entire home/apt 180
## 19606 Brooklyn Entire home/apt 135
## 19607 Manhattan Private room 179
## 19608 Manhattan Entire home/apt 100
## 19609 Manhattan Private room 100
## 19610 Brooklyn Private room 45
## 19611 Manhattan Entire home/apt 250
## 19612 Manhattan Entire home/apt 180
## 19613 Brooklyn Private room 350
## 19614 Manhattan Private room 95
## 19615 Manhattan Entire home/apt 218
## 19616 Brooklyn Entire home/apt 176
## 19617 Manhattan Private room 89
## 19618 Manhattan Entire home/apt 160
## 19619 Brooklyn Private room 89
## 19620 Bronx Entire home/apt 79
## 19621 Manhattan Private room 70
## 19622 Brooklyn Entire home/apt 100
## 19623 Brooklyn Entire home/apt 150
## 19624 Brooklyn Private room 63
## 19625 Brooklyn Private room 63
## 19626 Queens Private room 55
## 19627 Brooklyn Private room 90
## 19628 Brooklyn Entire home/apt 164
## 19629 Queens Private room 40
## 19630 Brooklyn Entire home/apt 250
## 19631 Manhattan Private room 95
## 19632 Manhattan Private room 90
## 19633 Brooklyn Private room 111
## 19634 Brooklyn Entire home/apt 120
## 19635 Brooklyn Entire home/apt 95
## 19636 Manhattan Entire home/apt 175
## 19637 Manhattan Entire home/apt 100
## 19638 Brooklyn Entire home/apt 100
## 19639 Brooklyn Private room 49
## 19640 Brooklyn Entire home/apt 116
## 19641 Manhattan Entire home/apt 265
## 19642 Manhattan Private room 333
## 19643 Manhattan Private room 100
## 19644 Queens Entire home/apt 320
## 19645 Manhattan Entire home/apt 155
## 19646 Brooklyn Private room 65
## 19647 Queens Private room 149
## 19648 Manhattan Private room 125
## 19649 Brooklyn Private room 70
## 19650 Brooklyn Private room 59
## 19651 Brooklyn Private room 89
## 19652 Brooklyn Private room 59
## 19653 Manhattan Entire home/apt 150
## 19654 Manhattan Private room 369
## 19655 Brooklyn Private room 55
## 19656 Manhattan Private room 150
## 19657 Brooklyn Private room 45
## 19658 Queens Private room 55
## 19659 Queens Private room 55
## 19660 Manhattan Entire home/apt 196
## 19661 Brooklyn Private room 69
## 19662 Manhattan Private room 65
## 19663 Manhattan Private room 100
## 19664 Manhattan Private room 92
## 19665 Brooklyn Entire home/apt 365
## 19666 Brooklyn Entire home/apt 136
## 19667 Manhattan Entire home/apt 300
## 19668 Brooklyn Entire home/apt 175
## 19669 Bronx Private room 80
## 19670 Brooklyn Entire home/apt 90
## 19671 Brooklyn Entire home/apt 150
## 19672 Manhattan Private room 119
## 19673 Queens Private room 75
## 19674 Manhattan Private room 99
## 19675 Brooklyn Entire home/apt 450
## 19676 Brooklyn Entire home/apt 200
## 19677 Brooklyn Entire home/apt 99
## 19678 Manhattan Entire home/apt 270
## 19679 Manhattan Entire home/apt 190
## 19680 Manhattan Entire home/apt 205
## 19681 Brooklyn Private room 39
## 19682 Manhattan Entire home/apt 499
## 19683 Manhattan Entire home/apt 275
## 19684 Brooklyn Private room 80
## 19685 Manhattan Entire home/apt 1500
## 19686 Brooklyn Private room 105
## 19687 Manhattan Entire home/apt 275
## 19688 Brooklyn Entire home/apt 150
## 19689 Brooklyn Private room 70
## 19690 Manhattan Entire home/apt 150
## 19691 Brooklyn Entire home/apt 146
## 19692 Manhattan Private room 99
## 19693 Brooklyn Entire home/apt 125
## 19694 Brooklyn Private room 125
## 19695 Brooklyn Entire home/apt 182
## 19696 Brooklyn Private room 55
## 19697 Brooklyn Entire home/apt 255
## 19698 Manhattan Entire home/apt 160
## 19699 Manhattan Entire home/apt 160
## 19700 Manhattan Private room 75
## 19701 Brooklyn Entire home/apt 125
## 19702 Brooklyn Private room 60
## 19703 Brooklyn Private room 80
## 19704 Manhattan Entire home/apt 125
## 19705 Brooklyn Private room 54
## 19706 Brooklyn Entire home/apt 170
## 19707 Queens Entire home/apt 115
## 19708 Brooklyn Private room 65
## 19709 Manhattan Private room 50
## 19710 Brooklyn Private room 44
## 19711 Manhattan Entire home/apt 229
## 19712 Manhattan Entire home/apt 375
## 19713 Brooklyn Entire home/apt 139
## 19714 Brooklyn Private room 300
## 19715 Brooklyn Entire home/apt 85
## 19716 Queens Private room 139
## 19717 Brooklyn Entire home/apt 83
## 19718 Brooklyn Private room 50
## 19719 Brooklyn Private room 49
## 19720 Manhattan Entire home/apt 120
## 19721 Brooklyn Private room 79
## 19722 Queens Private room 60
## 19723 Manhattan Private room 175
## 19724 Manhattan Private room 75
## 19725 Queens Private room 50
## 19726 Manhattan Private room 80
## 19727 Manhattan Private room 110
## 19728 Brooklyn Private room 130
## 19729 Manhattan Private room 67
## 19730 Staten Island Entire home/apt 70
## 19731 Queens Private room 70
## 19732 Brooklyn Entire home/apt 153
## 19733 Brooklyn Entire home/apt 350
## 19734 Brooklyn Private room 500
## 19735 Brooklyn Entire home/apt 90
## 19736 Manhattan Entire home/apt 178
## 19737 Manhattan Private room 60
## 19738 Manhattan Entire home/apt 369
## 19739 Queens Private room 40
## 19740 Brooklyn Entire home/apt 160
## 19741 Brooklyn Private room 95
## 19742 Manhattan Private room 86
## 19743 Brooklyn Private room 200
## 19744 Brooklyn Private room 99
## 19745 Queens Private room 65
## 19746 Queens Private room 45
## 19747 Brooklyn Shared room 28
## 19748 Manhattan Entire home/apt 159
## 19749 Brooklyn Entire home/apt 250
## 19750 Manhattan Private room 85
## 19751 Manhattan Entire home/apt 160
## 19752 Brooklyn Private room 50
## 19753 Brooklyn Private room 49
## 19754 Manhattan Private room 69
## 19755 Brooklyn Entire home/apt 200
## 19756 Brooklyn Private room 62
## 19757 Manhattan Entire home/apt 400
## 19758 Brooklyn Private room 80
## 19759 Queens Entire home/apt 105
## 19760 Brooklyn Entire home/apt 87
## 19761 Brooklyn Entire home/apt 99
## 19762 Queens Private room 20
## 19763 Brooklyn Entire home/apt 109
## 19764 Manhattan Private room 75
## 19765 Manhattan Entire home/apt 175
## 19766 Manhattan Entire home/apt 289
## 19767 Brooklyn Entire home/apt 209
## 19768 Brooklyn Entire home/apt 75
## 19769 Brooklyn Private room 35
## 19770 Manhattan Entire home/apt 117
## 19771 Brooklyn Entire home/apt 80
## 19772 Manhattan Entire home/apt 250
## 19773 Manhattan Private room 50
## 19774 Brooklyn Private room 70
## 19775 Brooklyn Entire home/apt 150
## 19776 Manhattan Entire home/apt 145
## 19777 Manhattan Entire home/apt 221
## 19778 Brooklyn Entire home/apt 142
## 19779 Staten Island Entire home/apt 65
## 19780 Queens Entire home/apt 110
## 19781 Manhattan Private room 80
## 19782 Brooklyn Private room 35
## 19783 Manhattan Entire home/apt 150
## 19784 Manhattan Private room 40
## 19785 Brooklyn Entire home/apt 150
## 19786 Brooklyn Private room 47
## 19787 Queens Entire home/apt 85
## 19788 Brooklyn Entire home/apt 100
## 19789 Queens Private room 40
## 19790 Brooklyn Entire home/apt 85
## 19791 Queens Entire home/apt 99
## 19792 Bronx Entire home/apt 105
## 19793 Brooklyn Private room 33
## 19794 Brooklyn Private room 50
## 19795 Manhattan Entire home/apt 295
## 19796 Brooklyn Private room 72
## 19797 Manhattan Entire home/apt 300
## 19798 Brooklyn Private room 48
## 19799 Queens Private room 55
## 19800 Brooklyn Private room 100
## 19801 Brooklyn Entire home/apt 180
## 19802 Brooklyn Entire home/apt 300
## 19803 Manhattan Entire home/apt 2000
## 19804 Manhattan Entire home/apt 1020
## 19805 Brooklyn Private room 53
## 19806 Brooklyn Entire home/apt 160
## 19807 Manhattan Private room 143
## 19808 Manhattan Private room 164
## 19809 Manhattan Private room 164
## 19810 Brooklyn Private room 48
## 19811 Manhattan Shared room 65
## 19812 Manhattan Private room 70
## 19813 Queens Entire home/apt 159
## 19814 Brooklyn Private room 89
## 19815 Queens Entire home/apt 100
## 19816 Manhattan Private room 60
## 19817 Brooklyn Private room 42
## 19818 Brooklyn Private room 57
## 19819 Brooklyn Private room 43
## 19820 Manhattan Private room 99
## 19821 Brooklyn Private room 105
## 19822 Manhattan Entire home/apt 140
## 19823 Manhattan Private room 65
## 19824 Manhattan Entire home/apt 125
## 19825 Manhattan Entire home/apt 265
## 19826 Manhattan Private room 100
## 19827 Brooklyn Private room 38
## 19828 Queens Private room 88
## 19829 Manhattan Private room 60
## 19830 Brooklyn Entire home/apt 159
## 19831 Manhattan Private room 65
## 19832 Brooklyn Private room 700
## 19833 Manhattan Entire home/apt 150
## 19834 Brooklyn Private room 50
## 19835 Brooklyn Private room 70
## 19836 Brooklyn Private room 225
## 19837 Manhattan Private room 61
## 19838 Queens Private room 120
## 19839 Brooklyn Private room 110
## 19840 Brooklyn Entire home/apt 63
## 19841 Brooklyn Private room 65
## 19842 Brooklyn Shared room 25
## 19843 Queens Entire home/apt 143
## 19844 Manhattan Entire home/apt 197
## 19845 Brooklyn Private room 89
## 19846 Brooklyn Entire home/apt 158
## 19847 Manhattan Entire home/apt 125
## 19848 Manhattan Entire home/apt 250
## 19849 Manhattan Private room 119
## 19850 Manhattan Private room 128
## 19851 Brooklyn Entire home/apt 169
## 19852 Manhattan Private room 115
## 19853 Queens Private room 70
## 19854 Manhattan Private room 115
## 19855 Manhattan Private room 100
## 19856 Brooklyn Private room 50
## 19857 Manhattan Entire home/apt 200
## 19858 Manhattan Entire home/apt 220
## 19859 Manhattan Private room 45
## 19860 Manhattan Entire home/apt 203
## 19861 Manhattan Entire home/apt 180
## 19862 Bronx Private room 40
## 19863 Brooklyn Private room 42
## 19864 Brooklyn Entire home/apt 130
## 19865 Manhattan Entire home/apt 190
## 19866 Brooklyn Private room 58
## 19867 Brooklyn Entire home/apt 150
## 19868 Bronx Private room 55
## 19869 Manhattan Entire home/apt 180
## 19870 Brooklyn Entire home/apt 250
## 19871 Brooklyn Entire home/apt 150
## 19872 Manhattan Entire home/apt 125
## 19873 Brooklyn Private room 49
## 19874 Brooklyn Private room 40
## 19875 Queens Private room 40
## 19876 Manhattan Entire home/apt 130
## 19877 Brooklyn Private room 900
## 19878 Manhattan Private room 85
## 19879 Manhattan Private room 110
## 19880 Manhattan Private room 119
## 19881 Manhattan Private room 60
## 19882 Manhattan Entire home/apt 110
## 19883 Brooklyn Private room 200
## 19884 Brooklyn Private room 50
## 19885 Brooklyn Entire home/apt 110
## 19886 Manhattan Entire home/apt 180
## 19887 Queens Private room 75
## 19888 Queens Entire home/apt 105
## 19889 Queens Entire home/apt 105
## 19890 Manhattan Entire home/apt 300
## 19891 Brooklyn Private room 60
## 19892 Queens Entire home/apt 100
## 19893 Queens Private room 120
## 19894 Brooklyn Private room 35
## 19895 Brooklyn Private room 45
## 19896 Manhattan Entire home/apt 255
## 19897 Brooklyn Private room 40
## 19898 Brooklyn Private room 42
## 19899 Manhattan Entire home/apt 240
## 19900 Staten Island Entire home/apt 100
## 19901 Brooklyn Entire home/apt 110
## 19902 Brooklyn Entire home/apt 185
## 19903 Manhattan Entire home/apt 147
## 19904 Brooklyn Private room 65
## 19905 Manhattan Entire home/apt 200
## 19906 Brooklyn Entire home/apt 950
## 19907 Brooklyn Entire home/apt 275
## 19908 Brooklyn Private room 200
## 19909 Manhattan Entire home/apt 100
## 19910 Manhattan Entire home/apt 350
## 19911 Queens Private room 45
## 19912 Queens Private room 75
## 19913 Brooklyn Shared room 60
## 19914 Brooklyn Private room 40
## 19915 Queens Entire home/apt 74
## 19916 Brooklyn Entire home/apt 100
## 19917 Brooklyn Entire home/apt 95
## 19918 Queens Private room 59
## 19919 Brooklyn Entire home/apt 180
## 19920 Manhattan Private room 50
## 19921 Manhattan Entire home/apt 160
## 19922 Brooklyn Entire home/apt 139
## 19923 Brooklyn Shared room 19
## 19924 Manhattan Entire home/apt 375
## 19925 Manhattan Entire home/apt 135
## 19926 Manhattan Entire home/apt 175
## 19927 Brooklyn Entire home/apt 169
## 19928 Queens Private room 56
## 19929 Manhattan Entire home/apt 200
## 19930 Brooklyn Entire home/apt 115
## 19931 Brooklyn Entire home/apt 45
## 19932 Manhattan Entire home/apt 400
## 19933 Queens Private room 65
## 19934 Brooklyn Private room 39
## 19935 Manhattan Private room 80
## 19936 Manhattan Private room 85
## 19937 Manhattan Private room 150
## 19938 Manhattan Private room 75
## 19939 Queens Private room 120
## 19940 Queens Entire home/apt 100
## 19941 Manhattan Private room 75
## 19942 Brooklyn Private room 91
## 19943 Manhattan Private room 150
## 19944 Brooklyn Private room 46
## 19945 Brooklyn Private room 65
## 19946 Manhattan Entire home/apt 500
## 19947 Brooklyn Private room 45
## 19948 Brooklyn Private room 50
## 19949 Brooklyn Entire home/apt 155
## 19950 Brooklyn Entire home/apt 149
## 19951 Brooklyn Private room 60
## 19952 Manhattan Private room 42
## 19953 Manhattan Private room 198
## 19954 Manhattan Private room 45
## 19955 Brooklyn Entire home/apt 130
## 19956 Brooklyn Private room 44
## 19957 Manhattan Entire home/apt 250
## 19958 Manhattan Private room 50
## 19959 Brooklyn Entire home/apt 195
## 19960 Manhattan Private room 45
## 19961 Brooklyn Private room 37
## 19962 Manhattan Private room 78
## 19963 Manhattan Entire home/apt 80
## 19964 Manhattan Entire home/apt 200
## 19965 Manhattan Private room 78
## 19966 Manhattan Private room 35
## 19967 Queens Private room 52
## 19968 Brooklyn Entire home/apt 150
## 19969 Brooklyn Private room 33
## 19970 Manhattan Entire home/apt 129
## 19971 Staten Island Private room 49
## 19972 Manhattan Private room 103
## 19973 Manhattan Entire home/apt 150
## 19974 Brooklyn Private room 41
## 19975 Manhattan Private room 76
## 19976 Brooklyn Entire home/apt 120
## 19977 Manhattan Entire home/apt 167
## 19978 Queens Entire home/apt 95
## 19979 Brooklyn Private room 35
## 19980 Manhattan Shared room 99
## 19981 Manhattan Entire home/apt 150
## 19982 Manhattan Private room 65
## 19983 Brooklyn Entire home/apt 150
## 19984 Queens Entire home/apt 76
## 19985 Manhattan Entire home/apt 198
## 19986 Brooklyn Private room 35
## 19987 Queens Entire home/apt 110
## 19988 Brooklyn Entire home/apt 300
## 19989 Manhattan Entire home/apt 125
## 19990 Brooklyn Entire home/apt 225
## 19991 Manhattan Entire home/apt 265
## 19992 Manhattan Entire home/apt 110
## 19993 Brooklyn Private room 70
## 19994 Brooklyn Entire home/apt 220
## 19995 Brooklyn Entire home/apt 80
## 19996 Manhattan Private room 55
## 19997 Manhattan Entire home/apt 115
## 19998 Manhattan Entire home/apt 265
## 19999 Manhattan Entire home/apt 228
## 20000 Brooklyn Private room 50
## 20001 Manhattan Entire home/apt 280
## 20002 Queens Private room 75
## 20003 Brooklyn Entire home/apt 120
## 20004 Manhattan Entire home/apt 250
## 20005 Manhattan Private room 350
## 20006 Queens Private room 70
## 20007 Manhattan Entire home/apt 135
## 20008 Manhattan Private room 110
## 20009 Brooklyn Entire home/apt 149
## 20010 Brooklyn Shared room 22
## 20011 Brooklyn Private room 49
## 20012 Manhattan Private room 899
## 20013 Manhattan Private room 40
## 20014 Brooklyn Entire home/apt 70
## 20015 Brooklyn Entire home/apt 340
## 20016 Brooklyn Entire home/apt 75
## 20017 Queens Entire home/apt 53
## 20018 Manhattan Private room 90
## 20019 Queens Private room 105
## 20020 Brooklyn Private room 49
## 20021 Queens Private room 95
## 20022 Manhattan Entire home/apt 155
## 20023 Brooklyn Shared room 40
## 20024 Brooklyn Private room 47
## 20025 Manhattan Entire home/apt 190
## 20026 Manhattan Entire home/apt 700
## 20027 Manhattan Private room 109
## 20028 Manhattan Entire home/apt 198
## 20029 Manhattan Entire home/apt 149
## 20030 Queens Entire home/apt 101
## 20031 Manhattan Entire home/apt 150
## 20032 Manhattan Entire home/apt 135
## 20033 Manhattan Entire home/apt 220
## 20034 Manhattan Private room 80
## 20035 Brooklyn Entire home/apt 84
## 20036 Queens Entire home/apt 99
## 20037 Manhattan Private room 100
## 20038 Brooklyn Shared room 50
## 20039 Manhattan Entire home/apt 175
## 20040 Brooklyn Private room 60
## 20041 Brooklyn Entire home/apt 170
## 20042 Brooklyn Entire home/apt 170
## 20043 Brooklyn Entire home/apt 75
## 20044 Brooklyn Private room 75
## 20045 Manhattan Entire home/apt 130
## 20046 Manhattan Private room 88
## 20047 Manhattan Private room 110
## 20048 Manhattan Private room 200
## 20049 Brooklyn Private room 60
## 20050 Manhattan Entire home/apt 100
## 20051 Manhattan Entire home/apt 190
## 20052 Queens Entire home/apt 86
## 20053 Brooklyn Private room 75
## 20054 Bronx Private room 55
## 20055 Brooklyn Entire home/apt 145
## 20056 Bronx Private room 75
## 20057 Brooklyn Private room 200
## 20058 Brooklyn Entire home/apt 86
## 20059 Manhattan Entire home/apt 160
## 20060 Brooklyn Private room 59
## 20061 Manhattan Entire home/apt 280
## 20062 Manhattan Entire home/apt 89
## 20063 Brooklyn Private room 55
## 20064 Brooklyn Entire home/apt 100
## 20065 Brooklyn Entire home/apt 75
## 20066 Brooklyn Entire home/apt 100
## 20067 Manhattan Private room 95
## 20068 Brooklyn Private room 50
## 20069 Manhattan Entire home/apt 599
## 20070 Queens Private room 44
## 20071 Manhattan Private room 80
## 20072 Manhattan Private room 65
## 20073 Brooklyn Entire home/apt 98
## 20074 Manhattan Entire home/apt 131
## 20075 Queens Private room 69
## 20076 Brooklyn Private room 70
## 20077 Brooklyn Private room 35
## 20078 Brooklyn Entire home/apt 200
## 20079 Staten Island Private room 34
## 20080 Queens Entire home/apt 100
## 20081 Brooklyn Private room 85
## 20082 Manhattan Entire home/apt 120
## 20083 Queens Private room 37
## 20084 Brooklyn Private room 34
## 20085 Manhattan Entire home/apt 175
## 20086 Brooklyn Entire home/apt 150
## 20087 Queens Private room 48
## 20088 Brooklyn Private room 73
## 20089 Manhattan Private room 85
## 20090 Brooklyn Private room 69
## 20091 Manhattan Entire home/apt 170
## 20092 Brooklyn Private room 66
## 20093 Manhattan Entire home/apt 200
## 20094 Manhattan Private room 799
## 20095 Manhattan Private room 1599
## 20096 Staten Island Private room 34
## 20097 Brooklyn Private room 225
## 20098 Manhattan Private room 69
## 20099 Brooklyn Entire home/apt 73
## 20100 Brooklyn Private room 125
## 20101 Manhattan Entire home/apt 150
## 20102 Staten Island Private room 33
## 20103 Staten Island Private room 32
## 20104 Staten Island Private room 35
## 20105 Manhattan Private room 649
## 20106 Staten Island Private room 32
## 20107 Queens Private room 85
## 20108 Manhattan Private room 699
## 20109 Manhattan Private room 799
## 20110 Brooklyn Entire home/apt 290
## 20111 Brooklyn Entire home/apt 145
## 20112 Manhattan Entire home/apt 199
## 20113 Manhattan Entire home/apt 200
## 20114 Manhattan Entire home/apt 181
## 20115 Brooklyn Private room 75
## 20116 Brooklyn Entire home/apt 130
## 20117 Queens Entire home/apt 125
## 20118 Manhattan Entire home/apt 300
## 20119 Manhattan Entire home/apt 250
## 20120 Manhattan Entire home/apt 175
## 20121 Brooklyn Private room 59
## 20122 Brooklyn Entire home/apt 180
## 20123 Brooklyn Private room 250
## 20124 Brooklyn Shared room 40
## 20125 Manhattan Entire home/apt 156
## 20126 Manhattan Entire home/apt 500
## 20127 Manhattan Private room 65
## 20128 Manhattan Entire home/apt 68
## 20129 Manhattan Private room 60
## 20130 Manhattan Entire home/apt 150
## 20131 Brooklyn Entire home/apt 265
## 20132 Manhattan Entire home/apt 279
## 20133 Staten Island Private room 105
## 20134 Manhattan Entire home/apt 110
## 20135 Brooklyn Entire home/apt 130
## 20136 Manhattan Entire home/apt 500
## 20137 Staten Island Private room 34
## 20138 Brooklyn Private room 75
## 20139 Manhattan Private room 49
## 20140 Brooklyn Private room 65
## 20141 Brooklyn Private room 65
## 20142 Brooklyn Entire home/apt 300
## 20143 Manhattan Private room 100
## 20144 Brooklyn Private room 55
## 20145 Brooklyn Private room 70
## 20146 Brooklyn Private room 49
## 20147 Brooklyn Private room 50
## 20148 Brooklyn Entire home/apt 158
## 20149 Brooklyn Private room 50
## 20150 Brooklyn Private room 120
## 20151 Manhattan Private room 44
## 20152 Brooklyn Entire home/apt 150
## 20153 Brooklyn Entire home/apt 209
## 20154 Manhattan Entire home/apt 200
## 20155 Brooklyn Private room 30
## 20156 Manhattan Private room 80
## 20157 Queens Private room 135
## 20158 Brooklyn Entire home/apt 250
## 20159 Manhattan Private room 100
## 20160 Brooklyn Private room 50
## 20161 Manhattan Private room 110
## 20162 Queens Private room 30
## 20163 Brooklyn Entire home/apt 160
## 20164 Manhattan Entire home/apt 295
## 20165 Manhattan Private room 699
## 20166 Brooklyn Private room 60
## 20167 Bronx Private room 45
## 20168 Brooklyn Private room 29
## 20169 Manhattan Private room 80
## 20170 Manhattan Entire home/apt 265
## 20171 Manhattan Entire home/apt 225
## 20172 Manhattan Entire home/apt 210
## 20173 Manhattan Entire home/apt 220
## 20174 Bronx Private room 68
## 20175 Brooklyn Entire home/apt 135
## 20176 Manhattan Entire home/apt 130
## 20177 Manhattan Private room 110
## 20178 Brooklyn Entire home/apt 140
## 20179 Queens Private room 60
## 20180 Manhattan Entire home/apt 400
## 20181 Brooklyn Entire home/apt 200
## 20182 Brooklyn Entire home/apt 76
## 20183 Brooklyn Entire home/apt 200
## 20184 Brooklyn Shared room 25
## 20185 Brooklyn Private room 90
## 20186 Manhattan Private room 799
## 20187 Brooklyn Private room 45
## 20188 Manhattan Entire home/apt 800
## 20189 Manhattan Private room 176
## 20190 Brooklyn Private room 85
## 20191 Brooklyn Private room 21
## 20192 Brooklyn Entire home/apt 129
## 20193 Brooklyn Entire home/apt 135
## 20194 Brooklyn Private room 145
## 20195 Manhattan Private room 113
## 20196 Brooklyn Entire home/apt 199
## 20197 Bronx Entire home/apt 86
## 20198 Queens Entire home/apt 95
## 20199 Manhattan Private room 100
## 20200 Manhattan Entire home/apt 199
## 20201 Manhattan Private room 146
## 20202 Brooklyn Entire home/apt 150
## 20203 Manhattan Private room 98
## 20204 Brooklyn Entire home/apt 25
## 20205 Brooklyn Entire home/apt 130
## 20206 Manhattan Entire home/apt 200
## 20207 Queens Entire home/apt 94
## 20208 Manhattan Entire home/apt 150
## 20209 Brooklyn Private room 85
## 20210 Brooklyn Private room 110
## 20211 Manhattan Entire home/apt 60
## 20212 Manhattan Private room 48
## 20213 Manhattan Private room 110
## 20214 Brooklyn Private room 60
## 20215 Brooklyn Entire home/apt 72
## 20216 Manhattan Entire home/apt 120
## 20217 Manhattan Private room 58
## 20218 Manhattan Entire home/apt 150
## 20219 Queens Private room 40
## 20220 Manhattan Entire home/apt 1200
## 20221 Manhattan Entire home/apt 89
## 20222 Brooklyn Private room 55
## 20223 Queens Entire home/apt 150
## 20224 Brooklyn Private room 99
## 20225 Queens Private room 38
## 20226 Manhattan Entire home/apt 500
## 20227 Manhattan Entire home/apt 142
## 20228 Manhattan Private room 114
## 20229 Brooklyn Entire home/apt 175
## 20230 Manhattan Entire home/apt 350
## 20231 Manhattan Private room 60
## 20232 Brooklyn Private room 75
## 20233 Queens Entire home/apt 85
## 20234 Manhattan Private room 100
## 20235 Brooklyn Private room 60
## 20236 Bronx Private room 80
## 20237 Manhattan Private room 85
## 20238 Brooklyn Private room 36
## 20239 Manhattan Private room 150
## 20240 Manhattan Entire home/apt 330
## 20241 Brooklyn Private room 54
## 20242 Brooklyn Private room 35
## 20243 Brooklyn Private room 53
## 20244 Brooklyn Entire home/apt 175
## 20245 Brooklyn Private room 48
## 20246 Brooklyn Private room 39
## 20247 Queens Private room 70
## 20248 Brooklyn Private room 29
## 20249 Manhattan Entire home/apt 120
## 20250 Queens Entire home/apt 125
## 20251 Manhattan Entire home/apt 100
## 20252 Bronx Private room 79
## 20253 Brooklyn Private room 70
## 20254 Brooklyn Private room 95
## 20255 Brooklyn Entire home/apt 77
## 20256 Brooklyn Private room 75
## 20257 Brooklyn Entire home/apt 210
## 20258 Manhattan Private room 80
## 20259 Queens Entire home/apt 120
## 20260 Brooklyn Entire home/apt 175
## 20261 Brooklyn Private room 82
## 20262 Brooklyn Private room 114
## 20263 Brooklyn Private room 93
## 20264 Manhattan Private room 55
## 20265 Manhattan Entire home/apt 199
## 20266 Manhattan Entire home/apt 387
## 20267 Brooklyn Entire home/apt 150
## 20268 Brooklyn Private room 58
## 20269 Brooklyn Entire home/apt 185
## 20270 Manhattan Private room 90
## 20271 Queens Private room 50
## 20272 Manhattan Entire home/apt 189
## 20273 Brooklyn Private room 50
## 20274 Manhattan Entire home/apt 240
## 20275 Brooklyn Entire home/apt 131
## 20276 Brooklyn Private room 80
## 20277 Manhattan Entire home/apt 225
## 20278 Manhattan Entire home/apt 139
## 20279 Queens Private room 109
## 20280 Queens Entire home/apt 165
## 20281 Manhattan Private room 45
## 20282 Brooklyn Private room 50
## 20283 Manhattan Entire home/apt 90
## 20284 Staten Island Private room 55
## 20285 Brooklyn Entire home/apt 130
## 20286 Manhattan Entire home/apt 190
## 20287 Brooklyn Entire home/apt 150
## 20288 Manhattan Private room 75
## 20289 Queens Private room 30
## 20290 Brooklyn Entire home/apt 150
## 20291 Queens Private room 75
## 20292 Brooklyn Private room 30
## 20293 Manhattan Entire home/apt 110
## 20294 Brooklyn Private room 64
## 20295 Brooklyn Entire home/apt 135
## 20296 Brooklyn Private room 55
## 20297 Brooklyn Entire home/apt 165
## 20298 Manhattan Private room 132
## 20299 Brooklyn Entire home/apt 120
## 20300 Brooklyn Private room 60
## 20301 Brooklyn Private room 169
## 20302 Manhattan Entire home/apt 119
## 20303 Manhattan Private room 120
## 20304 Manhattan Private room 77
## 20305 Manhattan Entire home/apt 200
## 20306 Brooklyn Private room 85
## 20307 Manhattan Entire home/apt 400
## 20308 Manhattan Entire home/apt 200
## 20309 Queens Private room 30
## 20310 Manhattan Private room 80
## 20311 Brooklyn Shared room 68
## 20312 Brooklyn Entire home/apt 108
## 20313 Manhattan Private room 75
## 20314 Manhattan Entire home/apt 91
## 20315 Staten Island Entire home/apt 51
## 20316 Queens Private room 60
## 20317 Manhattan Entire home/apt 120
## 20318 Brooklyn Entire home/apt 110
## 20319 Brooklyn Entire home/apt 149
## 20320 Manhattan Entire home/apt 160
## 20321 Brooklyn Entire home/apt 90
## 20322 Brooklyn Entire home/apt 250
## 20323 Manhattan Entire home/apt 74
## 20324 Brooklyn Entire home/apt 230
## 20325 Brooklyn Private room 90
## 20326 Brooklyn Entire home/apt 200
## 20327 Brooklyn Private room 49
## 20328 Brooklyn Shared room 100
## 20329 Manhattan Private room 37
## 20330 Brooklyn Private room 47
## 20331 Manhattan Entire home/apt 127
## 20332 Queens Private room 250
## 20333 Manhattan Entire home/apt 250
## 20334 Brooklyn Entire home/apt 360
## 20335 Manhattan Entire home/apt 200
## 20336 Brooklyn Private room 50
## 20337 Queens Entire home/apt 85
## 20338 Brooklyn Private room 40
## 20339 Manhattan Private room 85
## 20340 Brooklyn Private room 85
## 20341 Queens Entire home/apt 239
## 20342 Brooklyn Entire home/apt 700
## 20343 Brooklyn Private room 60
## 20344 Queens Private room 87
## 20345 Brooklyn Private room 50
## 20346 Brooklyn Private room 85
## 20347 Brooklyn Private room 80
## 20348 Manhattan Private room 90
## 20349 Queens Private room 69
## 20350 Manhattan Entire home/apt 128
## 20351 Queens Entire home/apt 200
## 20352 Manhattan Entire home/apt 220
## 20353 Brooklyn Private room 35
## 20354 Queens Entire home/apt 110
## 20355 Manhattan Entire home/apt 300
## 20356 Brooklyn Entire home/apt 135
## 20357 Brooklyn Private room 40
## 20358 Brooklyn Private room 150
## 20359 Brooklyn Private room 35
## 20360 Brooklyn Private room 38
## 20361 Brooklyn Private room 70
## 20362 Manhattan Private room 350
## 20363 Manhattan Private room 50
## 20364 Manhattan Private room 68
## 20365 Queens Private room 95
## 20366 Manhattan Private room 80
## 20367 Manhattan Entire home/apt 150
## 20368 Brooklyn Entire home/apt 53
## 20369 Manhattan Private room 54
## 20370 Queens Entire home/apt 99
## 20371 Queens Private room 53
## 20372 Brooklyn Entire home/apt 135
## 20373 Brooklyn Entire home/apt 525
## 20374 Manhattan Private room 50
## 20375 Brooklyn Private room 200
## 20376 Brooklyn Private room 200
## 20377 Manhattan Entire home/apt 99
## 20378 Brooklyn Entire home/apt 145
## 20379 Manhattan Private room 129
## 20380 Brooklyn Private room 80
## 20381 Queens Entire home/apt 150
## 20382 Queens Entire home/apt 120
## 20383 Manhattan Entire home/apt 90
## 20384 Brooklyn Entire home/apt 123
## 20385 Manhattan Entire home/apt 250
## 20386 Manhattan Private room 100
## 20387 Brooklyn Entire home/apt 100
## 20388 Manhattan Entire home/apt 250
## 20389 Manhattan Entire home/apt 98
## 20390 Bronx Private room 60
## 20391 Manhattan Entire home/apt 165
## 20392 Manhattan Private room 100
## 20393 Manhattan Private room 40
## 20394 Brooklyn Private room 37
## 20395 Manhattan Private room 75
## 20396 Brooklyn Private room 39
## 20397 Brooklyn Private room 29
## 20398 Brooklyn Private room 80
## 20399 Manhattan Private room 100
## 20400 Queens Private room 40
## 20401 Manhattan Private room 45
## 20402 Brooklyn Entire home/apt 55
## 20403 Bronx Private room 30
## 20404 Queens Private room 48
## 20405 Brooklyn Private room 49
## 20406 Brooklyn Entire home/apt 135
## 20407 Manhattan Entire home/apt 200
## 20408 Manhattan Entire home/apt 850
## 20409 Brooklyn Entire home/apt 300
## 20410 Brooklyn Private room 70
## 20411 Manhattan Entire home/apt 225
## 20412 Brooklyn Private room 80
## 20413 Brooklyn Private room 50
## 20414 Brooklyn Entire home/apt 110
## 20415 Manhattan Private room 54
## 20416 Brooklyn Entire home/apt 125
## 20417 Bronx Private room 125
## 20418 Brooklyn Private room 40
## 20419 Brooklyn Entire home/apt 115
## 20420 Queens Private room 60
## 20421 Brooklyn Private room 30
## 20422 Brooklyn Private room 150
## 20423 Staten Island Private room 55
## 20424 Manhattan Private room 79
## 20425 Manhattan Entire home/apt 425
## 20426 Brooklyn Entire home/apt 85
## 20427 Manhattan Private room 80
## 20428 Staten Island Private room 55
## 20429 Manhattan Private room 66
## 20430 Brooklyn Entire home/apt 135
## 20431 Brooklyn Entire home/apt 140
## 20432 Manhattan Private room 52
## 20433 Brooklyn Entire home/apt 130
## 20434 Manhattan Entire home/apt 130
## 20435 Manhattan Entire home/apt 585
## 20436 Brooklyn Private room 35
## 20437 Brooklyn Private room 55
## 20438 Queens Entire home/apt 60
## 20439 Brooklyn Private room 43
## 20440 Brooklyn Shared room 36
## 20441 Manhattan Entire home/apt 166
## 20442 Brooklyn Private room 150
## 20443 Brooklyn Entire home/apt 97
## 20444 Manhattan Entire home/apt 250
## 20445 Brooklyn Shared room 28
## 20446 Brooklyn Entire home/apt 179
## 20447 Manhattan Entire home/apt 97
## 20448 Manhattan Private room 120
## 20449 Brooklyn Entire home/apt 350
## 20450 Queens Private room 65
## 20451 Brooklyn Private room 63
## 20452 Manhattan Entire home/apt 151
## 20453 Manhattan Private room 70
## 20454 Manhattan Private room 95
## 20455 Manhattan Entire home/apt 198
## 20456 Brooklyn Private room 60
## 20457 Manhattan Private room 100
## 20458 Brooklyn Entire home/apt 140
## 20459 Brooklyn Private room 49
## 20460 Manhattan Private room 799
## 20461 Manhattan Private room 85
## 20462 Manhattan Entire home/apt 250
## 20463 Brooklyn Private room 58
## 20464 Manhattan Private room 100
## 20465 Brooklyn Entire home/apt 110
## 20466 Manhattan Private room 55
## 20467 Manhattan Entire home/apt 65
## 20468 Manhattan Entire home/apt 75
## 20469 Brooklyn Private room 55
## 20470 Manhattan Entire home/apt 190
## 20471 Manhattan Private room 70
## 20472 Manhattan Private room 85
## 20473 Brooklyn Private room 57
## 20474 Brooklyn Shared room 25
## 20475 Brooklyn Private room 97
## 20476 Brooklyn Private room 80
## 20477 Brooklyn Entire home/apt 180
## 20478 Manhattan Entire home/apt 215
## 20479 Brooklyn Entire home/apt 89
## 20480 Brooklyn Private room 97
## 20481 Brooklyn Private room 97
## 20482 Manhattan Private room 120
## 20483 Brooklyn Private room 50
## 20484 Manhattan Entire home/apt 350
## 20485 Manhattan Entire home/apt 159
## 20486 Brooklyn Private room 150
## 20487 Brooklyn Entire home/apt 70
## 20488 Manhattan Entire home/apt 300
## 20489 Brooklyn Private room 44
## 20490 Brooklyn Private room 84
## 20491 Manhattan Private room 300
## 20492 Brooklyn Private room 30
## 20493 Manhattan Entire home/apt 245
## 20494 Brooklyn Private room 76
## 20495 Manhattan Entire home/apt 130
## 20496 Brooklyn Private room 124
## 20497 Manhattan Entire home/apt 160
## 20498 Brooklyn Private room 45
## 20499 Queens Private room 33
## 20500 Queens Private room 45
## 20501 Brooklyn Entire home/apt 200
## 20502 Manhattan Private room 130
## 20503 Manhattan Private room 95
## 20504 Queens Private room 45
## 20505 Brooklyn Private room 100
## 20506 Brooklyn Entire home/apt 117
## 20507 Brooklyn Entire home/apt 220
## 20508 Brooklyn Entire home/apt 100
## 20509 Manhattan Private room 155
## 20510 Brooklyn Entire home/apt 450
## 20511 Brooklyn Private room 31
## 20512 Queens Entire home/apt 99
## 20513 Manhattan Entire home/apt 900
## 20514 Brooklyn Private room 38
## 20515 Manhattan Private room 90
## 20516 Queens Private room 33
## 20517 Bronx Entire home/apt 125
## 20518 Brooklyn Entire home/apt 170
## 20519 Manhattan Private room 35
## 20520 Queens Private room 40
## 20521 Brooklyn Private room 68
## 20522 Queens Private room 65
## 20523 Brooklyn Shared room 37
## 20524 Brooklyn Entire home/apt 92
## 20525 Brooklyn Private room 125
## 20526 Brooklyn Entire home/apt 71
## 20527 Brooklyn Private room 40
## 20528 Manhattan Entire home/apt 110
## 20529 Bronx Entire home/apt 47
## 20530 Brooklyn Private room 45
## 20531 Manhattan Private room 50
## 20532 Brooklyn Private room 60
## 20533 Brooklyn Private room 60
## 20534 Manhattan Private room 55
## 20535 Bronx Private room 58
## 20536 Manhattan Entire home/apt 200
## 20537 Brooklyn Private room 50
## 20538 Brooklyn Private room 55
## 20539 Brooklyn Entire home/apt 180
## 20540 Queens Private room 50
## 20541 Manhattan Entire home/apt 129
## 20542 Manhattan Entire home/apt 255
## 20543 Manhattan Entire home/apt 177
## 20544 Brooklyn Private room 50
## 20545 Brooklyn Private room 49
## 20546 Brooklyn Entire home/apt 325
## 20547 Queens Private room 30
## 20548 Manhattan Entire home/apt 109
## 20549 Brooklyn Entire home/apt 100
## 20550 Manhattan Entire home/apt 280
## 20551 Manhattan Entire home/apt 149
## 20552 Manhattan Entire home/apt 2590
## 20553 Manhattan Entire home/apt 400
## 20554 Manhattan Entire home/apt 220
## 20555 Manhattan Private room 147
## 20556 Brooklyn Private room 50
## 20557 Brooklyn Private room 105
## 20558 Brooklyn Entire home/apt 175
## 20559 Brooklyn Entire home/apt 60
## 20560 Bronx Private room 55
## 20561 Manhattan Private room 65
## 20562 Manhattan Private room 59
## 20563 Manhattan Private room 165
## 20564 Manhattan Entire home/apt 100
## 20565 Manhattan Private room 50
## 20566 Manhattan Entire home/apt 145
## 20567 Manhattan Entire home/apt 100
## 20568 Brooklyn Entire home/apt 150
## 20569 Brooklyn Private room 59
## 20570 Brooklyn Private room 45
## 20571 Brooklyn Entire home/apt 170
## 20572 Manhattan Entire home/apt 120
## 20573 Manhattan Shared room 32
## 20574 Manhattan Private room 68
## 20575 Manhattan Private room 105
## 20576 Brooklyn Private room 65
## 20577 Brooklyn Entire home/apt 100
## 20578 Manhattan Entire home/apt 95
## 20579 Manhattan Private room 39
## 20580 Brooklyn Entire home/apt 75
## 20581 Brooklyn Entire home/apt 125
## 20582 Brooklyn Entire home/apt 100
## 20583 Queens Private room 48
## 20584 Manhattan Entire home/apt 149
## 20585 Brooklyn Private room 40
## 20586 Manhattan Entire home/apt 290
## 20587 Brooklyn Private room 120
## 20588 Brooklyn Private room 45
## 20589 Manhattan Entire home/apt 119
## 20590 Brooklyn Entire home/apt 95
## 20591 Manhattan Private room 45
## 20592 Manhattan Entire home/apt 400
## 20593 Brooklyn Entire home/apt 130
## 20594 Brooklyn Private room 80
## 20595 Bronx Private room 45
## 20596 Manhattan Private room 100
## 20597 Brooklyn Entire home/apt 80
## 20598 Manhattan Private room 65
## 20599 Manhattan Private room 200
## 20600 Brooklyn Private room 45
## 20601 Manhattan Private room 60
## 20602 Manhattan Entire home/apt 132
## 20603 Queens Private room 119
## 20604 Queens Entire home/apt 60
## 20605 Brooklyn Private room 38
## 20606 Brooklyn Entire home/apt 50
## 20607 Manhattan Entire home/apt 240
## 20608 Brooklyn Entire home/apt 285
## 20609 Brooklyn Entire home/apt 120
## 20610 Manhattan Entire home/apt 499
## 20611 Brooklyn Entire home/apt 119
## 20612 Queens Entire home/apt 225
## 20613 Manhattan Private room 110
## 20614 Queens Entire home/apt 79
## 20615 Brooklyn Private room 85
## 20616 Manhattan Entire home/apt 200
## 20617 Manhattan Entire home/apt 150
## 20618 Manhattan Entire home/apt 190
## 20619 Manhattan Entire home/apt 215
## 20620 Brooklyn Private room 67
## 20621 Manhattan Private room 79
## 20622 Brooklyn Entire home/apt 139
## 20623 Manhattan Entire home/apt 105
## 20624 Brooklyn Entire home/apt 250
## 20625 Brooklyn Shared room 50
## 20626 Bronx Private room 60
## 20627 Manhattan Private room 75
## 20628 Bronx Private room 50
## 20629 Manhattan Entire home/apt 190
## 20630 Manhattan Entire home/apt 230
## 20631 Manhattan Entire home/apt 80
## 20632 Manhattan Private room 100
## 20633 Brooklyn Entire home/apt 199
## 20634 Manhattan Entire home/apt 190
## 20635 Brooklyn Private room 64
## 20636 Brooklyn Entire home/apt 225
## 20637 Queens Private room 35
## 20638 Manhattan Private room 70
## 20639 Brooklyn Private room 60
## 20640 Brooklyn Entire home/apt 264
## 20641 Manhattan Private room 100
## 20642 Manhattan Entire home/apt 135
## 20643 Manhattan Private room 85
## 20644 Manhattan Private room 85
## 20645 Brooklyn Private room 55
## 20646 Manhattan Entire home/apt 295
## 20647 Brooklyn Private room 28
## 20648 Queens Private room 45
## 20649 Brooklyn Private room 120
## 20650 Brooklyn Private room 90
## 20651 Manhattan Private room 89
## 20652 Brooklyn Private room 50
## 20653 Brooklyn Private room 50
## 20654 Manhattan Entire home/apt 150
## 20655 Manhattan Shared room 40
## 20656 Manhattan Private room 99
## 20657 Brooklyn Entire home/apt 225
## 20658 Manhattan Entire home/apt 65
## 20659 Brooklyn Entire home/apt 280
## 20660 Manhattan Private room 100
## 20661 Manhattan Entire home/apt 120
## 20662 Manhattan Private room 70
## 20663 Manhattan Private room 100
## 20664 Brooklyn Private room 55
## 20665 Manhattan Entire home/apt 150
## 20666 Queens Private room 50
## 20667 Manhattan Entire home/apt 95
## 20668 Brooklyn Entire home/apt 140
## 20669 Manhattan Entire home/apt 180
## 20670 Manhattan Entire home/apt 200
## 20671 Brooklyn Private room 74
## 20672 Manhattan Private room 95
## 20673 Brooklyn Entire home/apt 114
## 20674 Manhattan Entire home/apt 205
## 20675 Manhattan Entire home/apt 279
## 20676 Brooklyn Private room 80
## 20677 Brooklyn Private room 31
## 20678 Manhattan Entire home/apt 299
## 20679 Brooklyn Private room 80
## 20680 Bronx Private room 50
## 20681 Brooklyn Entire home/apt 190
## 20682 Manhattan Private room 90
## 20683 Brooklyn Entire home/apt 399
## 20684 Manhattan Private room 79
## 20685 Manhattan Entire home/apt 110
## 20686 Brooklyn Entire home/apt 85
## 20687 Manhattan Private room 105
## 20688 Manhattan Shared room 89
## 20689 Manhattan Entire home/apt 200
## 20690 Brooklyn Private room 63
## 20691 Brooklyn Private room 50
## 20692 Queens Entire home/apt 95
## 20693 Brooklyn Private room 58
## 20694 Manhattan Private room 120
## 20695 Manhattan Entire home/apt 180
## 20696 Manhattan Private room 150
## 20697 Manhattan Private room 65
## 20698 Manhattan Private room 50
## 20699 Manhattan Private room 105
## 20700 Brooklyn Entire home/apt 70
## 20701 Manhattan Private room 53
## 20702 Manhattan Private room 50
## 20703 Manhattan Entire home/apt 205
## 20704 Brooklyn Entire home/apt 72
## 20705 Manhattan Entire home/apt 142
## 20706 Brooklyn Private room 52
## 20707 Brooklyn Private room 117
## 20708 Manhattan Entire home/apt 230
## 20709 Queens Entire home/apt 75
## 20710 Brooklyn Entire home/apt 89
## 20711 Brooklyn Shared room 30
## 20712 Queens Private room 80
## 20713 Brooklyn Entire home/apt 200
## 20714 Brooklyn Shared room 38
## 20715 Queens Entire home/apt 89
## 20716 Brooklyn Private room 41
## 20717 Brooklyn Private room 75
## 20718 Brooklyn Private room 90
## 20719 Manhattan Entire home/apt 135
## 20720 Bronx Private room 40
## 20721 Brooklyn Private room 93
## 20722 Queens Entire home/apt 100
## 20723 Brooklyn Entire home/apt 350
## 20724 Manhattan Private room 125
## 20725 Queens Private room 70
## 20726 Manhattan Entire home/apt 150
## 20727 Manhattan Entire home/apt 300
## 20728 Manhattan Private room 86
## 20729 Manhattan Entire home/apt 180
## 20730 Bronx Entire home/apt 135
## 20731 Manhattan Private room 100
## 20732 Brooklyn Entire home/apt 179
## 20733 Brooklyn Entire home/apt 116
## 20734 Queens Private room 115
## 20735 Brooklyn Private room 60
## 20736 Brooklyn Entire home/apt 137
## 20737 Manhattan Entire home/apt 190
## 20738 Brooklyn Private room 45
## 20739 Manhattan Entire home/apt 150
## 20740 Brooklyn Entire home/apt 165
## 20741 Manhattan Private room 599
## 20742 Manhattan Entire home/apt 275
## 20743 Brooklyn Private room 60
## 20744 Brooklyn Private room 33
## 20745 Manhattan Entire home/apt 125
## 20746 Brooklyn Private room 41
## 20747 Brooklyn Private room 89
## 20748 Manhattan Private room 85
## 20749 Queens Private room 85
## 20750 Brooklyn Entire home/apt 150
## 20751 Brooklyn Entire home/apt 150
## 20752 Brooklyn Entire home/apt 143
## 20753 Manhattan Entire home/apt 400
## 20754 Brooklyn Private room 36
## 20755 Manhattan Private room 75
## 20756 Bronx Entire home/apt 110
## 20757 Manhattan Entire home/apt 200
## 20758 Manhattan Entire home/apt 150
## 20759 Manhattan Entire home/apt 350
## 20760 Manhattan Private room 87
## 20761 Manhattan Private room 50
## 20762 Manhattan Entire home/apt 130
## 20763 Brooklyn Entire home/apt 120
## 20764 Manhattan Entire home/apt 100
## 20765 Queens Private room 55
## 20766 Manhattan Private room 120
## 20767 Brooklyn Private room 59
## 20768 Brooklyn Entire home/apt 100
## 20769 Brooklyn Entire home/apt 100
## 20770 Brooklyn Entire home/apt 375
## 20771 Manhattan Entire home/apt 105
## 20772 Brooklyn Entire home/apt 165
## 20773 Brooklyn Entire home/apt 150
## 20774 Manhattan Entire home/apt 96
## 20775 Brooklyn Private room 70
## 20776 Manhattan Private room 72
## 20777 Brooklyn Entire home/apt 225
## 20778 Manhattan Entire home/apt 200
## 20779 Manhattan Entire home/apt 145
## 20780 Brooklyn Shared room 22
## 20781 Brooklyn Entire home/apt 60
## 20782 Manhattan Private room 90
## 20783 Brooklyn Private room 80
## 20784 Manhattan Entire home/apt 190
## 20785 Brooklyn Entire home/apt 128
## 20786 Manhattan Entire home/apt 83
## 20787 Brooklyn Entire home/apt 50
## 20788 Manhattan Entire home/apt 300
## 20789 Manhattan Private room 200
## 20790 Brooklyn Private room 59
## 20791 Brooklyn Private room 85
## 20792 Manhattan Private room 77
## 20793 Manhattan Private room 113
## 20794 Brooklyn Private room 54
## 20795 Queens Private room 50
## 20796 Manhattan Entire home/apt 450
## 20797 Queens Private room 40
## 20798 Brooklyn Private room 100
## 20799 Brooklyn Shared room 45
## 20800 Bronx Entire home/apt 115
## 20801 Manhattan Entire home/apt 119
## 20802 Brooklyn Entire home/apt 218
## 20803 Manhattan Private room 35
## 20804 Manhattan Entire home/apt 120
## 20805 Manhattan Private room 119
## 20806 Brooklyn Entire home/apt 100
## 20807 Brooklyn Private room 69
## 20808 Manhattan Entire home/apt 190
## 20809 Manhattan Entire home/apt 110
## 20810 Manhattan Entire home/apt 120
## 20811 Brooklyn Entire home/apt 140
## 20812 Brooklyn Private room 75
## 20813 Manhattan Entire home/apt 85
## 20814 Manhattan Entire home/apt 200
## 20815 Queens Shared room 110
## 20816 Manhattan Private room 599
## 20817 Manhattan Private room 38
## 20818 Manhattan Entire home/apt 375
## 20819 Brooklyn Entire home/apt 90
## 20820 Manhattan Private room 999
## 20821 Queens Private room 57
## 20822 Manhattan Entire home/apt 200
## 20823 Brooklyn Entire home/apt 260
## 20824 Manhattan Private room 99
## 20825 Brooklyn Private room 98
## 20826 Manhattan Private room 79
## 20827 Manhattan Entire home/apt 175
## 20828 Manhattan Private room 200
## 20829 Manhattan Private room 50
## 20830 Brooklyn Private room 60
## 20831 Manhattan Entire home/apt 125
## 20832 Manhattan Private room 60
## 20833 Brooklyn Entire home/apt 100
## 20834 Manhattan Entire home/apt 225
## 20835 Brooklyn Entire home/apt 110
## 20836 Brooklyn Entire home/apt 195
## 20837 Brooklyn Private room 55
## 20838 Brooklyn Entire home/apt 55
## 20839 Manhattan Entire home/apt 99
## 20840 Bronx Private room 100
## 20841 Manhattan Private room 85
## 20842 Queens Private room 100
## 20843 Manhattan Private room 69
## 20844 Bronx Private room 46
## 20845 Manhattan Private room 165
## 20846 Manhattan Entire home/apt 75
## 20847 Queens Private room 40
## 20848 Bronx Entire home/apt 130
## 20849 Brooklyn Entire home/apt 115
## 20850 Manhattan Entire home/apt 349
## 20851 Manhattan Entire home/apt 259
## 20852 Brooklyn Entire home/apt 137
## 20853 Brooklyn Private room 40
## 20854 Manhattan Entire home/apt 160
## 20855 Brooklyn Entire home/apt 200
## 20856 Manhattan Private room 52
## 20857 Manhattan Entire home/apt 160
## 20858 Manhattan Entire home/apt 200
## 20859 Manhattan Entire home/apt 550
## 20860 Manhattan Private room 100
## 20861 Brooklyn Entire home/apt 175
## 20862 Manhattan Entire home/apt 275
## 20863 Queens Entire home/apt 100
## 20864 Brooklyn Private room 60
## 20865 Manhattan Entire home/apt 99
## 20866 Brooklyn Entire home/apt 56
## 20867 Manhattan Private room 100
## 20868 Manhattan Entire home/apt 180
## 20869 Brooklyn Private room 45
## 20870 Brooklyn Private room 48
## 20871 Manhattan Private room 115
## 20872 Manhattan Private room 50
## 20873 Brooklyn Private room 135
## 20874 Brooklyn Entire home/apt 200
## 20875 Manhattan Private room 80
## 20876 Brooklyn Private room 80
## 20877 Manhattan Entire home/apt 95
## 20878 Manhattan Private room 87
## 20879 Brooklyn Private room 83
## 20880 Brooklyn Entire home/apt 171
## 20881 Manhattan Private room 225
## 20882 Manhattan Entire home/apt 100
## 20883 Brooklyn Private room 60
## 20884 Brooklyn Private room 85
## 20885 Manhattan Private room 185
## 20886 Brooklyn Entire home/apt 249
## 20887 Brooklyn Private room 35
## 20888 Manhattan Entire home/apt 100
## 20889 Brooklyn Entire home/apt 159
## 20890 Manhattan Private room 895
## 20891 Manhattan Entire home/apt 196
## 20892 Manhattan Private room 40
## 20893 Manhattan Private room 95
## 20894 Queens Private room 55
## 20895 Brooklyn Entire home/apt 122
## 20896 Queens Private room 100
## 20897 Queens Private room 55
## 20898 Manhattan Private room 90
## 20899 Manhattan Private room 75
## 20900 Brooklyn Entire home/apt 200
## 20901 Brooklyn Private room 70
## 20902 Brooklyn Entire home/apt 136
## 20903 Queens Private room 50
## 20904 Brooklyn Private room 210
## 20905 Brooklyn Entire home/apt 95
## 20906 Brooklyn Private room 45
## 20907 Brooklyn Entire home/apt 69
## 20908 Bronx Entire home/apt 150
## 20909 Queens Private room 40
## 20910 Brooklyn Private room 90
## 20911 Brooklyn Private room 80
## 20912 Manhattan Private room 25
## 20913 Manhattan Private room 40
## 20914 Manhattan Entire home/apt 220
## 20915 Queens Private room 81
## 20916 Manhattan Private room 85
## 20917 Brooklyn Shared room 31
## 20918 Brooklyn Entire home/apt 130
## 20919 Manhattan Entire home/apt 91
## 20920 Brooklyn Private room 75
## 20921 Brooklyn Entire home/apt 73
## 20922 Brooklyn Entire home/apt 56
## 20923 Brooklyn Entire home/apt 175
## 20924 Manhattan Private room 47
## 20925 Manhattan Private room 80
## 20926 Brooklyn Entire home/apt 125
## 20927 Manhattan Private room 69
## 20928 Brooklyn Entire home/apt 75
## 20929 Brooklyn Private room 69
## 20930 Brooklyn Private room 60
## 20931 Brooklyn Private room 80
## 20932 Brooklyn Private room 60
## 20933 Queens Entire home/apt 225
## 20934 Brooklyn Entire home/apt 185
## 20935 Queens Shared room 120
## 20936 Queens Private room 80
## 20937 Brooklyn Private room 55
## 20938 Brooklyn Private room 36
## 20939 Queens Private room 55
## 20940 Manhattan Shared room 55
## 20941 Brooklyn Private room 80
## 20942 Brooklyn Entire home/apt 149
## 20943 Brooklyn Private room 41
## 20944 Brooklyn Entire home/apt 95
## 20945 Brooklyn Entire home/apt 350
## 20946 Brooklyn Private room 35
## 20947 Manhattan Private room 50
## 20948 Brooklyn Shared room 50
## 20949 Brooklyn Entire home/apt 100
## 20950 Brooklyn Entire home/apt 150
## 20951 Brooklyn Private room 55
## 20952 Manhattan Entire home/apt 190
## 20953 Bronx Entire home/apt 60
## 20954 Manhattan Entire home/apt 80
## 20955 Brooklyn Entire home/apt 380
## 20956 Brooklyn Entire home/apt 125
## 20957 Manhattan Entire home/apt 235
## 20958 Manhattan Private room 67
## 20959 Manhattan Entire home/apt 232
## 20960 Queens Private room 40
## 20961 Manhattan Private room 96
## 20962 Manhattan Entire home/apt 225
## 20963 Manhattan Private room 120
## 20964 Brooklyn Entire home/apt 120
## 20965 Queens Private room 72
## 20966 Brooklyn Private room 90
## 20967 Queens Private room 65
## 20968 Manhattan Private room 66
## 20969 Brooklyn Private room 41
## 20970 Brooklyn Private room 30
## 20971 Brooklyn Entire home/apt 175
## 20972 Queens Entire home/apt 100
## 20973 Queens Private room 100
## 20974 Brooklyn Private room 65
## 20975 Manhattan Private room 70
## 20976 Queens Private room 73
## 20977 Brooklyn Private room 80
## 20978 Brooklyn Entire home/apt 160
## 20979 Queens Private room 69
## 20980 Manhattan Entire home/apt 180
## 20981 Brooklyn Entire home/apt 199
## 20982 Manhattan Entire home/apt 159
## 20983 Manhattan Private room 60
## 20984 Brooklyn Private room 49
## 20985 Brooklyn Entire home/apt 94
## 20986 Manhattan Entire home/apt 77
## 20987 Brooklyn Private room 56
## 20988 Brooklyn Private room 47
## 20989 Queens Private room 89
## 20990 Brooklyn Entire home/apt 95
## 20991 Brooklyn Private room 60
## 20992 Brooklyn Entire home/apt 125
## 20993 Brooklyn Entire home/apt 11
## 20994 Brooklyn Private room 29
## 20995 Manhattan Private room 80
## 20996 Brooklyn Private room 75
## 20997 Manhattan Entire home/apt 175
## 20998 Manhattan Private room 85
## 20999 Brooklyn Entire home/apt 123
## 21000 Manhattan Entire home/apt 144
## 21001 Brooklyn Private room 99
## 21002 Manhattan Entire home/apt 899
## 21003 Manhattan Private room 141
## 21004 Manhattan Private room 50
## 21005 Brooklyn Private room 75
## 21006 Brooklyn Private room 50
## 21007 Queens Private room 70
## 21008 Brooklyn Entire home/apt 50
## 21009 Brooklyn Private room 40
## 21010 Queens Private room 35
## 21011 Brooklyn Entire home/apt 169
## 21012 Brooklyn Entire home/apt 78
## 21013 Brooklyn Private room 119
## 21014 Brooklyn Entire home/apt 115
## 21015 Manhattan Private room 115
## 21016 Manhattan Entire home/apt 200
## 21017 Brooklyn Entire home/apt 93
## 21018 Brooklyn Entire home/apt 160
## 21019 Manhattan Private room 100
## 21020 Brooklyn Private room 65
## 21021 Manhattan Private room 64
## 21022 Brooklyn Entire home/apt 95
## 21023 Brooklyn Entire home/apt 220
## 21024 Brooklyn Private room 70
## 21025 Queens Entire home/apt 125
## 21026 Brooklyn Entire home/apt 225
## 21027 Brooklyn Private room 54
## 21028 Queens Entire home/apt 184
## 21029 Brooklyn Entire home/apt 175
## 21030 Brooklyn Private room 69
## 21031 Brooklyn Entire home/apt 175
## 21032 Manhattan Private room 91
## 21033 Manhattan Private room 122
## 21034 Brooklyn Entire home/apt 150
## 21035 Manhattan Entire home/apt 250
## 21036 Brooklyn Private room 49
## 21037 Manhattan Private room 75
## 21038 Brooklyn Entire home/apt 125
## 21039 Manhattan Private room 120
## 21040 Manhattan Entire home/apt 233
## 21041 Manhattan Entire home/apt 220
## 21042 Brooklyn Private room 32
## 21043 Manhattan Entire home/apt 105
## 21044 Manhattan Entire home/apt 165
## 21045 Brooklyn Entire home/apt 175
## 21046 Manhattan Entire home/apt 75
## 21047 Manhattan Private room 200
## 21048 Brooklyn Private room 100
## 21049 Queens Private room 90
## 21050 Brooklyn Entire home/apt 109
## 21051 Brooklyn Entire home/apt 95
## 21052 Brooklyn Private room 60
## 21053 Brooklyn Private room 75
## 21054 Brooklyn Entire home/apt 175
## 21055 Brooklyn Private room 46
## 21056 Manhattan Private room 50
## 21057 Manhattan Entire home/apt 98
## 21058 Brooklyn Private room 95
## 21059 Queens Private room 34
## 21060 Queens Private room 79
## 21061 Manhattan Entire home/apt 130
## 21062 Manhattan Entire home/apt 100
## 21063 Manhattan Private room 75
## 21064 Manhattan Private room 61
## 21065 Queens Entire home/apt 99
## 21066 Manhattan Entire home/apt 110
## 21067 Manhattan Private room 99
## 21068 Brooklyn Private room 42
## 21069 Brooklyn Private room 50
## 21070 Brooklyn Entire home/apt 82
## 21071 Brooklyn Entire home/apt 206
## 21072 Manhattan Entire home/apt 120
## 21073 Brooklyn Entire home/apt 69
## 21074 Manhattan Entire home/apt 164
## 21075 Manhattan Entire home/apt 95
## 21076 Manhattan Entire home/apt 160
## 21077 Brooklyn Entire home/apt 150
## 21078 Brooklyn Private room 75
## 21079 Brooklyn Entire home/apt 130
## 21080 Manhattan Entire home/apt 95
## 21081 Manhattan Entire home/apt 199
## 21082 Brooklyn Entire home/apt 150
## 21083 Brooklyn Entire home/apt 550
## 21084 Brooklyn Entire home/apt 250
## 21085 Brooklyn Private room 150
## 21086 Manhattan Entire home/apt 200
## 21087 Manhattan Entire home/apt 100
## 21088 Brooklyn Private room 68
## 21089 Manhattan Entire home/apt 140
## 21090 Manhattan Private room 99
## 21091 Manhattan Private room 97
## 21092 Manhattan Entire home/apt 500
## 21093 Manhattan Private room 75
## 21094 Brooklyn Entire home/apt 150
## 21095 Brooklyn Entire home/apt 80
## 21096 Brooklyn Entire home/apt 98
## 21097 Brooklyn Entire home/apt 165
## 21098 Brooklyn Entire home/apt 125
## 21099 Queens Entire home/apt 300
## 21100 Manhattan Entire home/apt 124
## 21101 Manhattan Private room 100
## 21102 Queens Private room 33
## 21103 Brooklyn Entire home/apt 275
## 21104 Queens Private room 60
## 21105 Manhattan Private room 30
## 21106 Bronx Entire home/apt 71
## 21107 Manhattan Private room 158
## 21108 Manhattan Entire home/apt 100
## 21109 Brooklyn Private room 70
## 21110 Brooklyn Private room 77
## 21111 Manhattan Private room 90
## 21112 Manhattan Private room 210
## 21113 Brooklyn Entire home/apt 250
## 21114 Manhattan Private room 175
## 21115 Brooklyn Entire home/apt 116
## 21116 Manhattan Entire home/apt 190
## 21117 Queens Private room 65
## 21118 Manhattan Private room 68
## 21119 Manhattan Entire home/apt 200
## 21120 Brooklyn Private room 55
## 21121 Brooklyn Private room 89
## 21122 Brooklyn Entire home/apt 125
## 21123 Brooklyn Entire home/apt 197
## 21124 Manhattan Shared room 50
## 21125 Brooklyn Private room 37
## 21126 Manhattan Entire home/apt 189
## 21127 Bronx Entire home/apt 80
## 21128 Manhattan Private room 39
## 21129 Brooklyn Entire home/apt 123
## 21130 Manhattan Private room 60
## 21131 Brooklyn Private room 74
## 21132 Brooklyn Private room 45
## 21133 Manhattan Private room 175
## 21134 Brooklyn Entire home/apt 135
## 21135 Brooklyn Private room 30
## 21136 Bronx Entire home/apt 60
## 21137 Brooklyn Private room 52
## 21138 Brooklyn Entire home/apt 144
## 21139 Brooklyn Entire home/apt 75
## 21140 Bronx Private room 73
## 21141 Manhattan Private room 119
## 21142 Brooklyn Entire home/apt 170
## 21143 Manhattan Private room 135
## 21144 Manhattan Private room 25
## 21145 Brooklyn Private room 35
## 21146 Manhattan Entire home/apt 103
## 21147 Brooklyn Private room 50
## 21148 Manhattan Private room 55
## 21149 Manhattan Private room 99
## 21150 Bronx Private room 43
## 21151 Manhattan Private room 75
## 21152 Manhattan Private room 117
## 21153 Manhattan Entire home/apt 195
## 21154 Manhattan Private room 100
## 21155 Brooklyn Private room 34
## 21156 Brooklyn Private room 44
## 21157 Brooklyn Entire home/apt 210
## 21158 Manhattan Entire home/apt 150
## 21159 Brooklyn Entire home/apt 84
## 21160 Manhattan Entire home/apt 69
## 21161 Brooklyn Private room 39
## 21162 Manhattan Private room 88
## 21163 Brooklyn Private room 33
## 21164 Manhattan Private room 98
## 21165 Manhattan Private room 60
## 21166 Brooklyn Entire home/apt 75
## 21167 Brooklyn Entire home/apt 100
## 21168 Manhattan Entire home/apt 115
## 21169 Brooklyn Entire home/apt 200
## 21170 Manhattan Entire home/apt 130
## 21171 Brooklyn Shared room 28
## 21172 Manhattan Entire home/apt 230
## 21173 Manhattan Entire home/apt 179
## 21174 Brooklyn Entire home/apt 190
## 21175 Manhattan Private room 100
## 21176 Manhattan Private room 100
## 21177 Brooklyn Entire home/apt 1000
## 21178 Brooklyn Private room 55
## 21179 Brooklyn Private room 85
## 21180 Brooklyn Private room 55
## 21181 Brooklyn Private room 50
## 21182 Brooklyn Private room 95
## 21183 Brooklyn Entire home/apt 139
## 21184 Brooklyn Private room 100
## 21185 Queens Entire home/apt 120
## 21186 Brooklyn Private room 30
## 21187 Manhattan Private room 174
## 21188 Queens Private room 53
## 21189 Bronx Private room 79
## 21190 Manhattan Private room 173
## 21191 Brooklyn Private room 55
## 21192 Bronx Private room 60
## 21193 Manhattan Private room 120
## 21194 Manhattan Private room 130
## 21195 Brooklyn Private room 80
## 21196 Brooklyn Private room 50
## 21197 Brooklyn Shared room 20
## 21198 Brooklyn Entire home/apt 120
## 21199 Brooklyn Private room 66
## 21200 Manhattan Entire home/apt 250
## 21201 Brooklyn Entire home/apt 110
## 21202 Manhattan Entire home/apt 155
## 21203 Brooklyn Private room 200
## 21204 Queens Private room 85
## 21205 Manhattan Entire home/apt 130
## 21206 Manhattan Private room 64
## 21207 Manhattan Entire home/apt 200
## 21208 Manhattan Entire home/apt 130
## 21209 Manhattan Entire home/apt 170
## 21210 Brooklyn Shared room 22
## 21211 Brooklyn Shared room 28
## 21212 Brooklyn Shared room 27
## 21213 Brooklyn Private room 30
## 21214 Brooklyn Private room 300
## 21215 Brooklyn Private room 40
## 21216 Brooklyn Entire home/apt 280
## 21217 Manhattan Private room 60
## 21218 Manhattan Entire home/apt 200
## 21219 Brooklyn Private room 35
## 21220 Manhattan Entire home/apt 170
## 21221 Manhattan Entire home/apt 995
## 21222 Brooklyn Entire home/apt 140
## 21223 Manhattan Entire home/apt 399
## 21224 Brooklyn Entire home/apt 75
## 21225 Brooklyn Private room 65
## 21226 Brooklyn Private room 32
## 21227 Brooklyn Shared room 26
## 21228 Brooklyn Entire home/apt 100
## 21229 Manhattan Private room 98
## 21230 Manhattan Entire home/apt 149
## 21231 Brooklyn Private room 85
## 21232 Manhattan Private room 640
## 21233 Manhattan Private room 325
## 21234 Manhattan Entire home/apt 125
## 21235 Queens Private room 32
## 21236 Queens Entire home/apt 47
## 21237 Manhattan Private room 130
## 21238 Manhattan Entire home/apt 249
## 21239 Manhattan Entire home/apt 360
## 21240 Brooklyn Private room 40
## 21241 Manhattan Private room 55
## 21242 Brooklyn Private room 800
## 21243 Queens Entire home/apt 88
## 21244 Queens Entire home/apt 175
## 21245 Manhattan Private room 200
## 21246 Manhattan Entire home/apt 200
## 21247 Manhattan Entire home/apt 190
## 21248 Staten Island Entire home/apt 75
## 21249 Manhattan Entire home/apt 210
## 21250 Manhattan Entire home/apt 224
## 21251 Manhattan Entire home/apt 200
## 21252 Manhattan Entire home/apt 120
## 21253 Brooklyn Private room 55
## 21254 Queens Entire home/apt 106
## 21255 Brooklyn Entire home/apt 68
## 21256 Brooklyn Private room 60
## 21257 Bronx Entire home/apt 84
## 21258 Manhattan Private room 195
## 21259 Queens Entire home/apt 175
## 21260 Brooklyn Private room 53
## 21261 Brooklyn Private room 55
## 21262 Brooklyn Private room 47
## 21263 Manhattan Private room 53
## 21264 Manhattan Private room 110
## 21265 Manhattan Private room 95
## 21266 Brooklyn Entire home/apt 148
## 21267 Manhattan Entire home/apt 459
## 21268 Manhattan Entire home/apt 350
## 21269 Manhattan Private room 90
## 21270 Brooklyn Entire home/apt 120
## 21271 Brooklyn Entire home/apt 91
## 21272 Brooklyn Entire home/apt 170
## 21273 Manhattan Private room 73
## 21274 Manhattan Private room 60
## 21275 Queens Entire home/apt 90
## 21276 Brooklyn Private room 70
## 21277 Manhattan Entire home/apt 135
## 21278 Manhattan Private room 91
## 21279 Manhattan Private room 52
## 21280 Queens Entire home/apt 400
## 21281 Brooklyn Entire home/apt 239
## 21282 Manhattan Entire home/apt 12
## 21283 Brooklyn Entire home/apt 150
## 21284 Manhattan Private room 65
## 21285 Brooklyn Entire home/apt 220
## 21286 Manhattan Entire home/apt 110
## 21287 Queens Private room 44
## 21288 Brooklyn Private room 75
## 21289 Brooklyn Private room 65
## 21290 Brooklyn Private room 40
## 21291 Brooklyn Entire home/apt 175
## 21292 Brooklyn Entire home/apt 77
## 21293 Brooklyn Private room 59
## 21294 Manhattan Private room 85
## 21295 Brooklyn Entire home/apt 240
## 21296 Manhattan Shared room 49
## 21297 Brooklyn Private room 49
## 21298 Bronx Private room 45
## 21299 Manhattan Entire home/apt 150
## 21300 Brooklyn Private room 80
## 21301 Brooklyn Private room 99
## 21302 Brooklyn Private room 45
## 21303 Manhattan Private room 59
## 21304 Brooklyn Private room 82
## 21305 Manhattan Entire home/apt 110
## 21306 Manhattan Private room 95
## 21307 Brooklyn Private room 58
## 21308 Manhattan Private room 69
## 21309 Brooklyn Private room 50
## 21310 Brooklyn Private room 60
## 21311 Manhattan Private room 73
## 21312 Staten Island Private room 100
## 21313 Brooklyn Entire home/apt 139
## 21314 Queens Private room 55
## 21315 Manhattan Private room 48
## 21316 Manhattan Private room 63
## 21317 Manhattan Private room 97
## 21318 Manhattan Private room 99
## 21319 Manhattan Entire home/apt 175
## 21320 Manhattan Entire home/apt 159
## 21321 Manhattan Entire home/apt 153
## 21322 Manhattan Entire home/apt 243
## 21323 Brooklyn Private room 98
## 21324 Queens Private room 60
## 21325 Queens Entire home/apt 100
## 21326 Queens Entire home/apt 80
## 21327 Queens Private room 45
## 21328 Manhattan Private room 125
## 21329 Queens Private room 30
## 21330 Manhattan Entire home/apt 140
## 21331 Queens Private room 47
## 21332 Brooklyn Entire home/apt 99
## 21333 Brooklyn Entire home/apt 150
## 21334 Manhattan Private room 45
## 21335 Brooklyn Entire home/apt 150
## 21336 Manhattan Entire home/apt 140
## 21337 Manhattan Entire home/apt 200
## 21338 Manhattan Entire home/apt 400
## 21339 Brooklyn Private room 35
## 21340 Manhattan Entire home/apt 240
## 21341 Manhattan Entire home/apt 189
## 21342 Manhattan Entire home/apt 225
## 21343 Queens Entire home/apt 175
## 21344 Brooklyn Private room 50
## 21345 Brooklyn Entire home/apt 185
## 21346 Brooklyn Entire home/apt 107
## 21347 Manhattan Private room 85
## 21348 Brooklyn Private room 57
## 21349 Brooklyn Entire home/apt 195
## 21350 Queens Entire home/apt 40
## 21351 Manhattan Private room 100
## 21352 Brooklyn Entire home/apt 300
## 21353 Brooklyn Entire home/apt 150
## 21354 Brooklyn Entire home/apt 155
## 21355 Brooklyn Private room 45
## 21356 Brooklyn Private room 59
## 21357 Queens Private room 65
## 21358 Brooklyn Entire home/apt 91
## 21359 Manhattan Private room 118
## 21360 Brooklyn Entire home/apt 199
## 21361 Queens Shared room 34
## 21362 Queens Private room 40
## 21363 Manhattan Private room 100
## 21364 Manhattan Entire home/apt 200
## 21365 Brooklyn Private room 51
## 21366 Brooklyn Private room 30
## 21367 Brooklyn Entire home/apt 87
## 21368 Manhattan Entire home/apt 215
## 21369 Queens Private room 30
## 21370 Brooklyn Private room 900
## 21371 Manhattan Private room 80
## 21372 Manhattan Private room 71
## 21373 Brooklyn Entire home/apt 126
## 21374 Brooklyn Entire home/apt 200
## 21375 Brooklyn Entire home/apt 225
## 21376 Manhattan Entire home/apt 250
## 21377 Manhattan Private room 100
## 21378 Manhattan Private room 80
## 21379 Bronx Private room 34
## 21380 Bronx Private room 79
## 21381 Bronx Private room 60
## 21382 Manhattan Entire home/apt 115
## 21383 Brooklyn Entire home/apt 20
## 21384 Manhattan Private room 70
## 21385 Brooklyn Entire home/apt 165
## 21386 Manhattan Private room 46
## 21387 Queens Entire home/apt 85
## 21388 Manhattan Private room 99
## 21389 Brooklyn Entire home/apt 206
## 21390 Manhattan Private room 65
## 21391 Brooklyn Private room 55
## 21392 Staten Island Entire home/apt 60
## 21393 Queens Entire home/apt 127
## 21394 Queens Private room 50
## 21395 Staten Island Entire home/apt 120
## 21396 Manhattan Entire home/apt 275
## 21397 Manhattan Entire home/apt 165
## 21398 Bronx Entire home/apt 119
## 21399 Brooklyn Private room 150
## 21400 Manhattan Private room 65
## 21401 Manhattan Private room 103
## 21402 Brooklyn Private room 65
## 21403 Manhattan Private room 300
## 21404 Brooklyn Private room 60
## 21405 Manhattan Private room 80
## 21406 Manhattan Entire home/apt 160
## 21407 Queens Private room 75
## 21408 Bronx Private room 35
## 21409 Brooklyn Private room 55
## 21410 Manhattan Entire home/apt 175
## 21411 Brooklyn Private room 55
## 21412 Brooklyn Private room 46
## 21413 Queens Entire home/apt 95
## 21414 Brooklyn Entire home/apt 115
## 21415 Manhattan Private room 75
## 21416 Queens Private room 47
## 21417 Brooklyn Private room 70
## 21418 Queens Private room 70
## 21419 Brooklyn Entire home/apt 100
## 21420 Brooklyn Entire home/apt 135
## 21421 Queens Entire home/apt 145
## 21422 Queens Entire home/apt 75
## 21423 Manhattan Entire home/apt 125
## 21424 Manhattan Entire home/apt 600
## 21425 Manhattan Private room 89
## 21426 Queens Entire home/apt 125
## 21427 Manhattan Private room 135
## 21428 Manhattan Private room 125
## 21429 Manhattan Private room 70
## 21430 Manhattan Private room 65
## 21431 Manhattan Entire home/apt 489
## 21432 Brooklyn Entire home/apt 99
## 21433 Manhattan Private room 70
## 21434 Manhattan Private room 120
## 21435 Manhattan Entire home/apt 160
## 21436 Manhattan Private room 125
## 21437 Brooklyn Entire home/apt 300
## 21438 Manhattan Private room 85
## 21439 Manhattan Entire home/apt 115
## 21440 Manhattan Entire home/apt 600
## 21441 Manhattan Entire home/apt 100
## 21442 Manhattan Private room 47
## 21443 Brooklyn Entire home/apt 130
## 21444 Brooklyn Private room 55
## 21445 Manhattan Entire home/apt 230
## 21446 Manhattan Entire home/apt 125
## 21447 Manhattan Shared room 35
## 21448 Brooklyn Private room 85
## 21449 Manhattan Entire home/apt 450
## 21450 Brooklyn Entire home/apt 110
## 21451 Manhattan Private room 100
## 21452 Manhattan Private room 80
## 21453 Manhattan Private room 98
## 21454 Manhattan Private room 54
## 21455 Queens Private room 60
## 21456 Manhattan Entire home/apt 120
## 21457 Brooklyn Entire home/apt 115
## 21458 Brooklyn Private room 100
## 21459 Brooklyn Private room 129
## 21460 Manhattan Entire home/apt 100
## 21461 Queens Entire home/apt 90
## 21462 Brooklyn Private room 60
## 21463 Manhattan Private room 60
## 21464 Bronx Entire home/apt 89
## 21465 Manhattan Private room 85
## 21466 Manhattan Entire home/apt 350
## 21467 Manhattan Entire home/apt 285
## 21468 Manhattan Entire home/apt 125
## 21469 Manhattan Private room 109
## 21470 Manhattan Entire home/apt 545
## 21471 Brooklyn Entire home/apt 208
## 21472 Queens Entire home/apt 100
## 21473 Manhattan Private room 48
## 21474 Brooklyn Entire home/apt 93
## 21475 Brooklyn Private room 60
## 21476 Manhattan Private room 78
## 21477 Brooklyn Entire home/apt 270
## 21478 Manhattan Entire home/apt 160
## 21479 Brooklyn Entire home/apt 175
## 21480 Manhattan Entire home/apt 180
## 21481 Queens Private room 30
## 21482 Manhattan Entire home/apt 650
## 21483 Manhattan Private room 70
## 21484 Brooklyn Entire home/apt 185
## 21485 Brooklyn Private room 50
## 21486 Brooklyn Private room 65
## 21487 Brooklyn Private room 59
## 21488 Brooklyn Private room 53
## 21489 Manhattan Private room 65
## 21490 Manhattan Entire home/apt 100
## 21491 Manhattan Entire home/apt 150
## 21492 Brooklyn Private room 80
## 21493 Brooklyn Entire home/apt 100
## 21494 Manhattan Entire home/apt 200
## 21495 Queens Private room 64
## 21496 Brooklyn Private room 60
## 21497 Manhattan Entire home/apt 50
## 21498 Brooklyn Entire home/apt 160
## 21499 Queens Private room 55
## 21500 Manhattan Private room 63
## 21501 Brooklyn Private room 30
## 21502 Brooklyn Private room 90
## 21503 Manhattan Private room 98
## 21504 Manhattan Entire home/apt 110
## 21505 Manhattan Entire home/apt 170
## 21506 Brooklyn Private room 95
## 21507 Manhattan Private room 118
## 21508 Brooklyn Private room 43
## 21509 Queens Entire home/apt 100
## 21510 Brooklyn Private room 45
## 21511 Brooklyn Entire home/apt 199
## 21512 Brooklyn Entire home/apt 146
## 21513 Manhattan Entire home/apt 239
## 21514 Manhattan Entire home/apt 195
## 21515 Queens Entire home/apt 100
## 21516 Brooklyn Entire home/apt 103
## 21517 Manhattan Entire home/apt 159
## 21518 Queens Private room 48
## 21519 Manhattan Entire home/apt 190
## 21520 Queens Private room 80
## 21521 Queens Private room 96
## 21522 Brooklyn Private room 28
## 21523 Manhattan Entire home/apt 160
## 21524 Brooklyn Private room 30
## 21525 Queens Private room 50
## 21526 Manhattan Entire home/apt 300
## 21527 Brooklyn Private room 85
## 21528 Queens Entire home/apt 60
## 21529 Manhattan Entire home/apt 190
## 21530 Manhattan Entire home/apt 180
## 21531 Manhattan Entire home/apt 235
## 21532 Manhattan Entire home/apt 175
## 21533 Brooklyn Entire home/apt 160
## 21534 Manhattan Private room 145
## 21535 Brooklyn Shared room 37
## 21536 Manhattan Entire home/apt 140
## 21537 Brooklyn Private room 45
## 21538 Brooklyn Private room 52
## 21539 Bronx Private room 40
## 21540 Brooklyn Entire home/apt 100
## 21541 Queens Private room 40
## 21542 Manhattan Private room 74
## 21543 Brooklyn Entire home/apt 62
## 21544 Manhattan Entire home/apt 150
## 21545 Brooklyn Entire home/apt 100
## 21546 Manhattan Private room 49
## 21547 Brooklyn Private room 70
## 21548 Manhattan Entire home/apt 200
## 21549 Brooklyn Private room 45
## 21550 Brooklyn Private room 75
## 21551 Manhattan Entire home/apt 131
## 21552 Manhattan Entire home/apt 500
## 21553 Staten Island Entire home/apt 180
## 21554 Manhattan Entire home/apt 355
## 21555 Manhattan Private room 50
## 21556 Queens Entire home/apt 275
## 21557 Brooklyn Private room 49
## 21558 Manhattan Private room 58
## 21559 Brooklyn Entire home/apt 179
## 21560 Queens Entire home/apt 95
## 21561 Manhattan Entire home/apt 158
## 21562 Brooklyn Entire home/apt 165
## 21563 Brooklyn Entire home/apt 169
## 21564 Brooklyn Entire home/apt 135
## 21565 Queens Entire home/apt 50
## 21566 Brooklyn Entire home/apt 85
## 21567 Brooklyn Private room 53
## 21568 Manhattan Entire home/apt 185
## 21569 Manhattan Entire home/apt 260
## 21570 Brooklyn Entire home/apt 160
## 21571 Brooklyn Entire home/apt 100
## 21572 Brooklyn Entire home/apt 240
## 21573 Manhattan Entire home/apt 300
## 21574 Manhattan Entire home/apt 250
## 21575 Manhattan Private room 60
## 21576 Brooklyn Entire home/apt 149
## 21577 Queens Private room 69
## 21578 Brooklyn Entire home/apt 75
## 21579 Manhattan Private room 150
## 21580 Manhattan Entire home/apt 150
## 21581 Manhattan Private room 60
## 21582 Brooklyn Private room 80
## 21583 Manhattan Private room 110
## 21584 Manhattan Entire home/apt 160
## 21585 Brooklyn Private room 65
## 21586 Brooklyn Private room 72
## 21587 Brooklyn Entire home/apt 250
## 21588 Brooklyn Entire home/apt 175
## 21589 Brooklyn Private room 80
## 21590 Manhattan Private room 150
## 21591 Brooklyn Entire home/apt 144
## 21592 Brooklyn Private room 45
## 21593 Manhattan Private room 95
## 21594 Manhattan Private room 100
## 21595 Brooklyn Private room 56
## 21596 Queens Entire home/apt 150
## 21597 Brooklyn Private room 95
## 21598 Brooklyn Private room 95
## 21599 Brooklyn Private room 70
## 21600 Brooklyn Entire home/apt 100
## 21601 Brooklyn Private room 60
## 21602 Brooklyn Entire home/apt 170
## 21603 Manhattan Private room 55
## 21604 Manhattan Private room 50
## 21605 Brooklyn Entire home/apt 250
## 21606 Manhattan Entire home/apt 200
## 21607 Manhattan Entire home/apt 175
## 21608 Brooklyn Private room 45
## 21609 Manhattan Entire home/apt 175
## 21610 Queens Entire home/apt 90
## 21611 Brooklyn Private room 78
## 21612 Brooklyn Entire home/apt 100
## 21613 Manhattan Entire home/apt 175
## 21614 Manhattan Private room 99
## 21615 Queens Private room 70
## 21616 Manhattan Entire home/apt 250
## 21617 Manhattan Private room 91
## 21618 Brooklyn Entire home/apt 200
## 21619 Brooklyn Private room 40
## 21620 Manhattan Private room 75
## 21621 Queens Private room 50
## 21622 Brooklyn Entire home/apt 110
## 21623 Manhattan Private room 69
## 21624 Manhattan Private room 103
## 21625 Brooklyn Entire home/apt 100
## 21626 Manhattan Private room 73
## 21627 Queens Entire home/apt 180
## 21628 Manhattan Entire home/apt 79
## 21629 Brooklyn Entire home/apt 195
## 21630 Queens Entire home/apt 99
## 21631 Manhattan Private room 100
## 21632 Brooklyn Entire home/apt 125
## 21633 Brooklyn Entire home/apt 149
## 21634 Manhattan Entire home/apt 58
## 21635 Brooklyn Private room 75
## 21636 Manhattan Entire home/apt 140
## 21637 Queens Entire home/apt 69
## 21638 Manhattan Entire home/apt 250
## 21639 Manhattan Entire home/apt 160
## 21640 Manhattan Private room 70
## 21641 Manhattan Private room 289
## 21642 Brooklyn Private room 29
## 21643 Bronx Private room 75
## 21644 Queens Private room 35
## 21645 Manhattan Private room 82
## 21646 Queens Private room 35
## 21647 Brooklyn Private room 70
## 21648 Manhattan Private room 75
## 21649 Brooklyn Entire home/apt 120
## 21650 Brooklyn Private room 200
## 21651 Brooklyn Private room 65
## 21652 Manhattan Entire home/apt 178
## 21653 Brooklyn Entire home/apt 45
## 21654 Brooklyn Entire home/apt 150
## 21655 Brooklyn Private room 99
## 21656 Manhattan Entire home/apt 325
## 21657 Manhattan Entire home/apt 209
## 21658 Queens Entire home/apt 249
## 21659 Manhattan Entire home/apt 600
## 21660 Queens Private room 40
## 21661 Manhattan Entire home/apt 135
## 21662 Staten Island Entire home/apt 65
## 21663 Brooklyn Private room 35
## 21664 Brooklyn Entire home/apt 99
## 21665 Queens Private room 47
## 21666 Queens Private room 35
## 21667 Manhattan Private room 250
## 21668 Brooklyn Entire home/apt 90
## 21669 Brooklyn Private room 53
## 21670 Manhattan Private room 120
## 21671 Brooklyn Private room 54
## 21672 Manhattan Entire home/apt 125
## 21673 Manhattan Entire home/apt 126
## 21674 Queens Private room 50
## 21675 Manhattan Entire home/apt 110
## 21676 Queens Private room 45
## 21677 Queens Private room 49
## 21678 Brooklyn Entire home/apt 98
## 21679 Brooklyn Entire home/apt 289
## 21680 Queens Private room 110
## 21681 Brooklyn Private room 45
## 21682 Queens Entire home/apt 169
## 21683 Brooklyn Entire home/apt 275
## 21684 Brooklyn Private room 50
## 21685 Brooklyn Private room 36
## 21686 Brooklyn Entire home/apt 110
## 21687 Manhattan Private room 105
## 21688 Manhattan Entire home/apt 75
## 21689 Queens Entire home/apt 100
## 21690 Brooklyn Private room 75
## 21691 Queens Private room 30
## 21692 Manhattan Private room 150
## 21693 Manhattan Entire home/apt 155
## 21694 Brooklyn Private room 68
## 21695 Queens Private room 109
## 21696 Brooklyn Private room 20
## 21697 Brooklyn Entire home/apt 88
## 21698 Manhattan Private room 500
## 21699 Brooklyn Entire home/apt 80
## 21700 Brooklyn Private room 100
## 21701 Manhattan Shared room 10
## 21702 Manhattan Private room 55
## 21703 Brooklyn Entire home/apt 40
## 21704 Manhattan Private room 80
## 21705 Brooklyn Entire home/apt 75
## 21706 Manhattan Entire home/apt 184
## 21707 Brooklyn Private room 56
## 21708 Brooklyn Entire home/apt 160
## 21709 Manhattan Private room 65
## 21710 Queens Private room 77
## 21711 Manhattan Private room 65
## 21712 Brooklyn Private room 35
## 21713 Manhattan Private room 98
## 21714 Manhattan Entire home/apt 400
## 21715 Brooklyn Private room 64
## 21716 Brooklyn Private room 70
## 21717 Manhattan Entire home/apt 250
## 21718 Queens Private room 55
## 21719 Manhattan Entire home/apt 249
## 21720 Manhattan Private room 175
## 21721 Brooklyn Private room 69
## 21722 Manhattan Entire home/apt 198
## 21723 Manhattan Entire home/apt 69
## 21724 Brooklyn Private room 60
## 21725 Manhattan Entire home/apt 103
## 21726 Manhattan Entire home/apt 135
## 21727 Queens Private room 31
## 21728 Brooklyn Entire home/apt 245
## 21729 Brooklyn Shared room 175
## 21730 Manhattan Entire home/apt 200
## 21731 Manhattan Private room 72
## 21732 Manhattan Entire home/apt 123
## 21733 Brooklyn Private room 90
## 21734 Bronx Shared room 20
## 21735 Staten Island Private room 50
## 21736 Brooklyn Private room 45
## 21737 Brooklyn Private room 41
## 21738 Brooklyn Private room 75
## 21739 Brooklyn Entire home/apt 105
## 21740 Brooklyn Private room 55
## 21741 Brooklyn Private room 100
## 21742 Brooklyn Private room 65
## 21743 Queens Entire home/apt 149
## 21744 Manhattan Private room 50
## 21745 Manhattan Private room 78
## 21746 Queens Entire home/apt 75
## 21747 Manhattan Private room 70
## 21748 Brooklyn Private room 50
## 21749 Manhattan Entire home/apt 250
## 21750 Brooklyn Private room 75
## 21751 Manhattan Private room 133
## 21752 Brooklyn Entire home/apt 150
## 21753 Brooklyn Entire home/apt 140
## 21754 Manhattan Entire home/apt 200
## 21755 Manhattan Entire home/apt 99
## 21756 Brooklyn Private room 50
## 21757 Manhattan Entire home/apt 122
## 21758 Manhattan Private room 85
## 21759 Brooklyn Private room 45
## 21760 Queens Entire home/apt 130
## 21761 Queens Private room 31
## 21762 Manhattan Entire home/apt 125
## 21763 Manhattan Entire home/apt 100
## 21764 Brooklyn Private room 60
## 21765 Manhattan Entire home/apt 80
## 21766 Manhattan Entire home/apt 150
## 21767 Brooklyn Entire home/apt 160
## 21768 Brooklyn Entire home/apt 59
## 21769 Brooklyn Shared room 30
## 21770 Manhattan Entire home/apt 85
## 21771 Brooklyn Private room 110
## 21772 Manhattan Entire home/apt 180
## 21773 Manhattan Entire home/apt 199
## 21774 Manhattan Shared room 35
## 21775 Brooklyn Private room 70
## 21776 Manhattan Entire home/apt 195
## 21777 Manhattan Entire home/apt 169
## 21778 Manhattan Entire home/apt 195
## 21779 Manhattan Entire home/apt 195
## 21780 Manhattan Entire home/apt 195
## 21781 Manhattan Entire home/apt 243
## 21782 Manhattan Entire home/apt 195
## 21783 Manhattan Entire home/apt 115
## 21784 Manhattan Entire home/apt 150
## 21785 Manhattan Entire home/apt 150
## 21786 Manhattan Entire home/apt 155
## 21787 Brooklyn Entire home/apt 68
## 21788 Manhattan Entire home/apt 135
## 21789 Manhattan Private room 300
## 21790 Manhattan Entire home/apt 197
## 21791 Queens Entire home/apt 75
## 21792 Brooklyn Entire home/apt 350
## 21793 Brooklyn Entire home/apt 150
## 21794 Manhattan Entire home/apt 155
## 21795 Brooklyn Private room 81
## 21796 Manhattan Private room 100
## 21797 Manhattan Entire home/apt 185
## 21798 Queens Private room 65
## 21799 Brooklyn Entire home/apt 385
## 21800 Manhattan Private room 125
## 21801 Brooklyn Entire home/apt 130
## 21802 Brooklyn Private room 153
## 21803 Manhattan Private room 150
## 21804 Manhattan Private room 95
## 21805 Manhattan Entire home/apt 150
## 21806 Brooklyn Entire home/apt 350
## 21807 Brooklyn Entire home/apt 120
## 21808 Manhattan Entire home/apt 120
## 21809 Manhattan Private room 100
## 21810 Bronx Private room 45
## 21811 Manhattan Private room 74
## 21812 Manhattan Private room 110
## 21813 Queens Entire home/apt 110
## 21814 Manhattan Private room 75
## 21815 Brooklyn Entire home/apt 94
## 21816 Manhattan Private room 55
## 21817 Brooklyn Entire home/apt 100
## 21818 Manhattan Private room 99
## 21819 Manhattan Private room 69
## 21820 Brooklyn Entire home/apt 139
## 21821 Brooklyn Private room 42
## 21822 Manhattan Entire home/apt 4000
## 21823 Brooklyn Private room 55
## 21824 Manhattan Private room 119
## 21825 Manhattan Entire home/apt 105
## 21826 Brooklyn Private room 55
## 21827 Brooklyn Entire home/apt 125
## 21828 Manhattan Private room 46
## 21829 Brooklyn Private room 36
## 21830 Brooklyn Private room 45
## 21831 Manhattan Entire home/apt 150
## 21832 Manhattan Entire home/apt 275
## 21833 Brooklyn Entire home/apt 100
## 21834 Manhattan Private room 100
## 21835 Manhattan Shared room 35
## 21836 Manhattan Shared room 35
## 21837 Bronx Entire home/apt 130
## 21838 Brooklyn Entire home/apt 150
## 21839 Manhattan Private room 73
## 21840 Brooklyn Entire home/apt 160
## 21841 Brooklyn Private room 54
## 21842 Manhattan Private room 75
## 21843 Manhattan Entire home/apt 380
## 21844 Brooklyn Entire home/apt 115
## 21845 Brooklyn Private room 100
## 21846 Manhattan Private room 80
## 21847 Brooklyn Entire home/apt 109
## 21848 Staten Island Entire home/apt 180
## 21849 Brooklyn Entire home/apt 600
## 21850 Manhattan Private room 160
## 21851 Manhattan Entire home/apt 130
## 21852 Manhattan Private room 90
## 21853 Manhattan Private room 63
## 21854 Brooklyn Entire home/apt 126
## 21855 Manhattan Entire home/apt 195
## 21856 Brooklyn Private room 45
## 21857 Brooklyn Private room 47
## 21858 Queens Private room 55
## 21859 Brooklyn Entire home/apt 200
## 21860 Manhattan Entire home/apt 60
## 21861 Manhattan Private room 51
## 21862 Manhattan Entire home/apt 160
## 21863 Brooklyn Private room 55
## 21864 Manhattan Entire home/apt 110
## 21865 Manhattan Entire home/apt 200
## 21866 Brooklyn Entire home/apt 109
## 21867 Brooklyn Entire home/apt 149
## 21868 Manhattan Entire home/apt 220
## 21869 Manhattan Entire home/apt 130
## 21870 Manhattan Private room 75
## 21871 Brooklyn Entire home/apt 250
## 21872 Queens Entire home/apt 65
## 21873 Brooklyn Entire home/apt 300
## 21874 Brooklyn Entire home/apt 90
## 21875 Brooklyn Private room 69
## 21876 Bronx Private room 79
## 21877 Manhattan Entire home/apt 190
## 21878 Manhattan Private room 80
## 21879 Brooklyn Entire home/apt 175
## 21880 Queens Private room 65
## 21881 Manhattan Entire home/apt 148
## 21882 Manhattan Private room 63
## 21883 Manhattan Private room 99
## 21884 Brooklyn Entire home/apt 90
## 21885 Manhattan Entire home/apt 250
## 21886 Manhattan Private room 90
## 21887 Brooklyn Entire home/apt 120
## 21888 Queens Entire home/apt 39
## 21889 Brooklyn Entire home/apt 117
## 21890 Brooklyn Private room 160
## 21891 Manhattan Entire home/apt 500
## 21892 Manhattan Entire home/apt 100
## 21893 Manhattan Entire home/apt 117
## 21894 Manhattan Private room 175
## 21895 Manhattan Shared room 25
## 21896 Brooklyn Entire home/apt 152
## 21897 Brooklyn Private room 45
## 21898 Brooklyn Private room 59
## 21899 Manhattan Private room 70
## 21900 Brooklyn Private room 57
## 21901 Brooklyn Entire home/apt 200
## 21902 Brooklyn Entire home/apt 71
## 21903 Queens Private room 45
## 21904 Brooklyn Private room 61
## 21905 Brooklyn Private room 55
## 21906 Brooklyn Private room 74
## 21907 Manhattan Private room 100
## 21908 Manhattan Entire home/apt 178
## 21909 Queens Private room 80
## 21910 Queens Entire home/apt 75
## 21911 Manhattan Entire home/apt 158
## 21912 Brooklyn Entire home/apt 88
## 21913 Brooklyn Entire home/apt 95
## 21914 Manhattan Entire home/apt 225
## 21915 Brooklyn Entire home/apt 240
## 21916 Queens Entire home/apt 110
## 21917 Manhattan Entire home/apt 225
## 21918 Brooklyn Entire home/apt 165
## 21919 Brooklyn Entire home/apt 140
## 21920 Brooklyn Entire home/apt 100
## 21921 Brooklyn Private room 39
## 21922 Queens Entire home/apt 110
## 21923 Brooklyn Entire home/apt 105
## 21924 Manhattan Private room 49
## 21925 Queens Private room 45
## 21926 Brooklyn Entire home/apt 450
## 21927 Brooklyn Entire home/apt 99
## 21928 Manhattan Entire home/apt 169
## 21929 Manhattan Entire home/apt 130
## 21930 Manhattan Entire home/apt 255
## 21931 Manhattan Private room 80
## 21932 Brooklyn Private room 70
## 21933 Brooklyn Private room 60
## 21934 Manhattan Entire home/apt 219
## 21935 Brooklyn Private room 60
## 21936 Brooklyn Private room 60
## 21937 Brooklyn Private room 82
## 21938 Manhattan Entire home/apt 122
## 21939 Brooklyn Entire home/apt 125
## 21940 Brooklyn Private room 44
## 21941 Queens Entire home/apt 125
## 21942 Queens Private room 55
## 21943 Brooklyn Private room 47
## 21944 Brooklyn Private room 80
## 21945 Queens Private room 65
## 21946 Queens Private room 75
## 21947 Queens Private room 100
## 21948 Brooklyn Private room 90
## 21949 Brooklyn Private room 45
## 21950 Bronx Private room 125
## 21951 Brooklyn Private room 69
## 21952 Manhattan Entire home/apt 199
## 21953 Queens Private room 55
## 21954 Queens Private room 50
## 21955 Manhattan Private room 125
## 21956 Manhattan Entire home/apt 2250
## 21957 Brooklyn Entire home/apt 125
## 21958 Queens Private room 75
## 21959 Brooklyn Private room 32
## 21960 Brooklyn Private room 88
## 21961 Manhattan Entire home/apt 215
## 21962 Manhattan Entire home/apt 134
## 21963 Brooklyn Entire home/apt 125
## 21964 Brooklyn Private room 60
## 21965 Manhattan Private room 60
## 21966 Brooklyn Private room 56
## 21967 Brooklyn Private room 85
## 21968 Brooklyn Entire home/apt 100
## 21969 Manhattan Private room 55
## 21970 Manhattan Entire home/apt 150
## 21971 Manhattan Private room 60
## 21972 Brooklyn Entire home/apt 108
## 21973 Brooklyn Entire home/apt 122
## 21974 Queens Entire home/apt 45
## 21975 Brooklyn Entire home/apt 150
## 21976 Brooklyn Entire home/apt 160
## 21977 Brooklyn Entire home/apt 140
## 21978 Brooklyn Entire home/apt 210
## 21979 Manhattan Entire home/apt 180
## 21980 Queens Private room 80
## 21981 Manhattan Private room 79
## 21982 Brooklyn Entire home/apt 180
## 21983 Brooklyn Entire home/apt 190
## 21984 Brooklyn Private room 60
## 21985 Manhattan Entire home/apt 139
## 21986 Brooklyn Entire home/apt 163
## 21987 Brooklyn Private room 65
## 21988 Manhattan Entire home/apt 365
## 21989 Queens Entire home/apt 200
## 21990 Brooklyn Entire home/apt 84
## 21991 Queens Private room 58
## 21992 Brooklyn Private room 42
## 21993 Brooklyn Entire home/apt 90
## 21994 Brooklyn Private room 98
## 21995 Brooklyn Private room 75
## 21996 Manhattan Private room 86
## 21997 Manhattan Entire home/apt 251
## 21998 Brooklyn Entire home/apt 85
## 21999 Brooklyn Entire home/apt 285
## 22000 Manhattan Entire home/apt 325
## 22001 Manhattan Entire home/apt 220
## 22002 Brooklyn Private room 250
## 22003 Queens Private room 58
## 22004 Queens Private room 58
## 22005 Brooklyn Private room 50
## 22006 Brooklyn Entire home/apt 145
## 22007 Manhattan Private room 199
## 22008 Manhattan Private room 126
## 22009 Manhattan Entire home/apt 230
## 22010 Manhattan Private room 129
## 22011 Manhattan Private room 119
## 22012 Queens Private room 50
## 22013 Brooklyn Entire home/apt 100
## 22014 Brooklyn Entire home/apt 199
## 22015 Brooklyn Private room 65
## 22016 Manhattan Private room 50
## 22017 Brooklyn Private room 65
## 22018 Manhattan Entire home/apt 200
## 22019 Manhattan Private room 150
## 22020 Brooklyn Private room 50
## 22021 Brooklyn Private room 90
## 22022 Brooklyn Entire home/apt 180
## 22023 Brooklyn Private room 50
## 22024 Manhattan Entire home/apt 250
## 22025 Staten Island Entire home/apt 122
## 22026 Brooklyn Entire home/apt 225
## 22027 Queens Private room 51
## 22028 Brooklyn Entire home/apt 90
## 22029 Brooklyn Private room 79
## 22030 Brooklyn Entire home/apt 275
## 22031 Brooklyn Private room 45
## 22032 Manhattan Private room 100
## 22033 Manhattan Entire home/apt 199
## 22034 Manhattan Private room 75
## 22035 Brooklyn Entire home/apt 145
## 22036 Brooklyn Entire home/apt 161
## 22037 Brooklyn Private room 45
## 22038 Bronx Private room 43
## 22039 Brooklyn Private room 50
## 22040 Brooklyn Entire home/apt 95
## 22041 Queens Private room 60
## 22042 Bronx Entire home/apt 80
## 22043 Brooklyn Entire home/apt 180
## 22044 Manhattan Entire home/apt 150
## 22045 Staten Island Private room 49
## 22046 Staten Island Private room 49
## 22047 Manhattan Entire home/apt 249
## 22048 Brooklyn Private room 70
## 22049 Brooklyn Private room 60
## 22050 Queens Private room 49
## 22051 Queens Private room 22
## 22052 Brooklyn Shared room 50
## 22053 Manhattan Entire home/apt 105
## 22054 Manhattan Private room 89
## 22055 Brooklyn Entire home/apt 115
## 22056 Manhattan Private room 65
## 22057 Queens Private room 65
## 22058 Queens Private room 35
## 22059 Manhattan Private room 99
## 22060 Brooklyn Private room 83
## 22061 Brooklyn Private room 45
## 22062 Manhattan Private room 99
## 22063 Queens Private room 55
## 22064 Brooklyn Entire home/apt 100
## 22065 Brooklyn Entire home/apt 158
## 22066 Manhattan Private room 89
## 22067 Brooklyn Private room 37
## 22068 Queens Private room 60
## 22069 Queens Shared room 38
## 22070 Manhattan Entire home/apt 800
## 22071 Manhattan Entire home/apt 325
## 22072 Brooklyn Private room 89
## 22073 Manhattan Shared room 68
## 22074 Manhattan Entire home/apt 700
## 22075 Brooklyn Entire home/apt 210
## 22076 Brooklyn Entire home/apt 150
## 22077 Manhattan Entire home/apt 139
## 22078 Manhattan Private room 103
## 22079 Brooklyn Private room 45
## 22080 Manhattan Private room 90
## 22081 Manhattan Entire home/apt 227
## 22082 Brooklyn Entire home/apt 100
## 22083 Staten Island Entire home/apt 75
## 22084 Manhattan Entire home/apt 97
## 22085 Queens Private room 50
## 22086 Queens Private room 60
## 22087 Brooklyn Private room 50
## 22088 Queens Entire home/apt 229
## 22089 Manhattan Entire home/apt 150
## 22090 Brooklyn Private room 50
## 22091 Staten Island Entire home/apt 95
## 22092 Manhattan Private room 62
## 22093 Manhattan Entire home/apt 115
## 22094 Queens Private room 55
## 22095 Brooklyn Entire home/apt 90
## 22096 Manhattan Private room 30
## 22097 Manhattan Private room 100
## 22098 Brooklyn Private room 71
## 22099 Brooklyn Private room 70
## 22100 Manhattan Entire home/apt 115
## 22101 Queens Private room 65
## 22102 Queens Entire home/apt 120
## 22103 Brooklyn Private room 100
## 22104 Brooklyn Private room 59
## 22105 Queens Private room 65
## 22106 Manhattan Private room 89
## 22107 Brooklyn Private room 250
## 22108 Queens Private room 80
## 22109 Manhattan Entire home/apt 127
## 22110 Brooklyn Private room 150
## 22111 Brooklyn Entire home/apt 170
## 22112 Manhattan Private room 120
## 22113 Brooklyn Private room 44
## 22114 Queens Private room 71
## 22115 Brooklyn Private room 150
## 22116 Brooklyn Private room 75
## 22117 Queens Private room 53
## 22118 Brooklyn Private room 100
## 22119 Brooklyn Entire home/apt 175
## 22120 Manhattan Entire home/apt 170
## 22121 Manhattan Private room 25
## 22122 Queens Private room 51
## 22123 Manhattan Entire home/apt 95
## 22124 Brooklyn Entire home/apt 94
## 22125 Brooklyn Private room 69
## 22126 Manhattan Private room 105
## 22127 Manhattan Entire home/apt 79
## 22128 Queens Private room 64
## 22129 Brooklyn Private room 40
## 22130 Manhattan Private room 62
## 22131 Manhattan Entire home/apt 110
## 22132 Manhattan Entire home/apt 185
## 22133 Manhattan Entire home/apt 177
## 22134 Brooklyn Entire home/apt 110
## 22135 Manhattan Entire home/apt 235
## 22136 Manhattan Private room 80
## 22137 Queens Private room 53
## 22138 Brooklyn Private room 95
## 22139 Manhattan Entire home/apt 115
## 22140 Brooklyn Private room 65
## 22141 Manhattan Entire home/apt 130
## 22142 Manhattan Private room 79
## 22143 Brooklyn Entire home/apt 107
## 22144 Brooklyn Entire home/apt 116
## 22145 Brooklyn Private room 47
## 22146 Manhattan Private room 100
## 22147 Brooklyn Private room 75
## 22148 Brooklyn Entire home/apt 160
## 22149 Brooklyn Entire home/apt 275
## 22150 Brooklyn Private room 22
## 22151 Brooklyn Private room 60
## 22152 Manhattan Entire home/apt 70
## 22153 Brooklyn Private room 100
## 22154 Brooklyn Private room 55
## 22155 Manhattan Private room 64
## 22156 Manhattan Private room 47
## 22157 Manhattan Entire home/apt 250
## 22158 Brooklyn Entire home/apt 190
## 22159 Bronx Entire home/apt 99
## 22160 Brooklyn Private room 88
## 22161 Brooklyn Private room 100
## 22162 Manhattan Private room 250
## 22163 Manhattan Entire home/apt 250
## 22164 Brooklyn Entire home/apt 150
## 22165 Manhattan Entire home/apt 484
## 22166 Brooklyn Private room 50
## 22167 Manhattan Entire home/apt 141
## 22168 Manhattan Entire home/apt 199
## 22169 Manhattan Entire home/apt 140
## 22170 Manhattan Private room 79
## 22171 Brooklyn Entire home/apt 142
## 22172 Brooklyn Private room 80
## 22173 Manhattan Shared room 337
## 22174 Bronx Private room 47
## 22175 Brooklyn Private room 65
## 22176 Manhattan Entire home/apt 149
## 22177 Brooklyn Entire home/apt 300
## 22178 Brooklyn Private room 159
## 22179 Brooklyn Private room 60
## 22180 Brooklyn Private room 50
## 22181 Manhattan Entire home/apt 220
## 22182 Manhattan Entire home/apt 380
## 22183 Brooklyn Private room 99
## 22184 Brooklyn Entire home/apt 120
## 22185 Manhattan Entire home/apt 110
## 22186 Queens Private room 50
## 22187 Queens Private room 30
## 22188 Brooklyn Private room 60
## 22189 Brooklyn Entire home/apt 110
## 22190 Manhattan Private room 75
## 22191 Brooklyn Entire home/apt 100
## 22192 Manhattan Private room 65
## 22193 Manhattan Private room 125
## 22194 Brooklyn Private room 40
## 22195 Bronx Entire home/apt 105
## 22196 Brooklyn Entire home/apt 115
## 22197 Brooklyn Entire home/apt 75
## 22198 Manhattan Private room 429
## 22199 Bronx Shared room 60
## 22200 Brooklyn Private room 30
## 22201 Brooklyn Private room 84
## 22202 Manhattan Private room 75
## 22203 Brooklyn Private room 50
## 22204 Brooklyn Private room 39
## 22205 Brooklyn Entire home/apt 160
## 22206 Brooklyn Entire home/apt 175
## 22207 Queens Private room 47
## 22208 Queens Entire home/apt 89
## 22209 Brooklyn Private room 29
## 22210 Manhattan Private room 95
## 22211 Brooklyn Private room 40
## 22212 Queens Entire home/apt 145
## 22213 Manhattan Private room 90
## 22214 Manhattan Entire home/apt 250
## 22215 Manhattan Private room 38
## 22216 Queens Private room 65
## 22217 Bronx Entire home/apt 150
## 22218 Brooklyn Entire home/apt 139
## 22219 Manhattan Entire home/apt 127
## 22220 Brooklyn Entire home/apt 290
## 22221 Manhattan Private room 100
## 22222 Manhattan Private room 100
## 22223 Brooklyn Entire home/apt 150
## 22224 Brooklyn Private room 65
## 22225 Manhattan Entire home/apt 200
## 22226 Queens Entire home/apt 100
## 22227 Brooklyn Entire home/apt 148
## 22228 Brooklyn Entire home/apt 160
## 22229 Manhattan Entire home/apt 147
## 22230 Manhattan Entire home/apt 95
## 22231 Brooklyn Entire home/apt 130
## 22232 Manhattan Entire home/apt 157
## 22233 Manhattan Private room 95
## 22234 Brooklyn Entire home/apt 120
## 22235 Manhattan Entire home/apt 110
## 22236 Manhattan Entire home/apt 130
## 22237 Manhattan Private room 99
## 22238 Queens Entire home/apt 90
## 22239 Brooklyn Private room 138
## 22240 Manhattan Entire home/apt 125
## 22241 Manhattan Entire home/apt 395
## 22242 Brooklyn Entire home/apt 100
## 22243 Brooklyn Entire home/apt 150
## 22244 Manhattan Private room 150
## 22245 Brooklyn Entire home/apt 85
## 22246 Manhattan Entire home/apt 115
## 22247 Brooklyn Private room 50
## 22248 Queens Private room 45
## 22249 Brooklyn Entire home/apt 160
## 22250 Brooklyn Private room 40
## 22251 Queens Private room 70
## 22252 Brooklyn Private room 80
## 22253 Manhattan Private room 55
## 22254 Manhattan Entire home/apt 110
## 22255 Queens Entire home/apt 225
## 22256 Queens Private room 69
## 22257 Queens Private room 35
## 22258 Manhattan Private room 300
## 22259 Manhattan Entire home/apt 350
## 22260 Brooklyn Private room 45
## 22261 Brooklyn Entire home/apt 150
## 22262 Brooklyn Private room 10
## 22263 Queens Private room 108
## 22264 Staten Island Private room 89
## 22265 Queens Private room 70
## 22266 Manhattan Entire home/apt 210
## 22267 Manhattan Entire home/apt 150
## 22268 Brooklyn Private room 55
## 22269 Brooklyn Private room 200
## 22270 Brooklyn Entire home/apt 120
## 22271 Bronx Shared room 165
## 22272 Manhattan Private room 155
## 22273 Manhattan Private room 95
## 22274 Manhattan Entire home/apt 139
## 22275 Manhattan Private room 65
## 22276 Brooklyn Private room 57
## 22277 Bronx Private room 42
## 22278 Bronx Private room 42
## 22279 Manhattan Private room 90
## 22280 Queens Entire home/apt 69
## 22281 Manhattan Entire home/apt 376
## 22282 Bronx Private room 75
## 22283 Manhattan Private room 99
## 22284 Queens Private room 85
## 22285 Manhattan Private room 69
## 22286 Manhattan Private room 100
## 22287 Manhattan Private room 45
## 22288 Manhattan Private room 10
## 22289 Brooklyn Private room 60
## 22290 Manhattan Private room 48
## 22291 Bronx Entire home/apt 145
## 22292 Manhattan Private room 57
## 22293 Brooklyn Private room 85
## 22294 Manhattan Private room 100
## 22295 Queens Private room 45
## 22296 Manhattan Private room 100
## 22297 Brooklyn Entire home/apt 250
## 22298 Queens Private room 40
## 22299 Manhattan Entire home/apt 317
## 22300 Staten Island Entire home/apt 70
## 22301 Queens Private room 70
## 22302 Manhattan Private room 61
## 22303 Brooklyn Entire home/apt 300
## 22304 Brooklyn Entire home/apt 92
## 22305 Manhattan Entire home/apt 200
## 22306 Manhattan Entire home/apt 150
## 22307 Brooklyn Entire home/apt 120
## 22308 Manhattan Private room 45
## 22309 Manhattan Entire home/apt 170
## 22310 Manhattan Private room 150
## 22311 Bronx Private room 29
## 22312 Manhattan Entire home/apt 250
## 22313 Manhattan Entire home/apt 195
## 22314 Brooklyn Private room 15
## 22315 Manhattan Entire home/apt 230
## 22316 Manhattan Entire home/apt 130
## 22317 Queens Private room 78
## 22318 Brooklyn Private room 53
## 22319 Manhattan Private room 100
## 22320 Manhattan Entire home/apt 150
## 22321 Brooklyn Entire home/apt 89
## 22322 Manhattan Entire home/apt 105
## 22323 Brooklyn Entire home/apt 80
## 22324 Queens Private room 57
## 22325 Queens Private room 75
## 22326 Brooklyn Entire home/apt 151
## 22327 Brooklyn Entire home/apt 197
## 22328 Queens Entire home/apt 100
## 22329 Brooklyn Private room 88
## 22330 Brooklyn Private room 60
## 22331 Manhattan Entire home/apt 375
## 22332 Brooklyn Private room 45
## 22333 Manhattan Entire home/apt 95
## 22334 Brooklyn Entire home/apt 82
## 22335 Queens Private room 50
## 22336 Brooklyn Private room 40
## 22337 Manhattan Private room 45
## 22338 Brooklyn Private room 60
## 22339 Manhattan Private room 105
## 22340 Brooklyn Private room 159
## 22341 Manhattan Entire home/apt 208
## 22342 Manhattan Private room 105
## 22343 Queens Private room 69
## 22344 Queens Entire home/apt 250
## 22345 Brooklyn Entire home/apt 100
## 22346 Brooklyn Entire home/apt 80
## 22347 Brooklyn Private room 72
## 22348 Manhattan Private room 120
## 22349 Bronx Private room 41
## 22350 Brooklyn Entire home/apt 250
## 22351 Brooklyn Private room 50
## 22352 Manhattan Entire home/apt 134
## 22353 Brooklyn Entire home/apt 150
## 22354 Staten Island Entire home/apt 5000
## 22355 Brooklyn Entire home/apt 300
## 22356 Manhattan Entire home/apt 150
## 22357 Manhattan Private room 60
## 22358 Brooklyn Private room 45
## 22359 Manhattan Private room 67
## 22360 Brooklyn Entire home/apt 142
## 22361 Manhattan Private room 67
## 22362 Queens Private room 69
## 22363 Queens Private room 95
## 22364 Manhattan Entire home/apt 195
## 22365 Staten Island Entire home/apt 72
## 22366 Staten Island Entire home/apt 289
## 22367 Brooklyn Entire home/apt 80
## 22368 Brooklyn Entire home/apt 69
## 22369 Queens Private room 95
## 22370 Brooklyn Private room 110
## 22371 Manhattan Entire home/apt 175
## 22372 Queens Private room 35
## 22373 Brooklyn Entire home/apt 175
## 22374 Manhattan Private room 2800
## 22375 Manhattan Private room 100
## 22376 Brooklyn Private room 88
## 22377 Manhattan Entire home/apt 499
## 22378 Manhattan Private room 80
## 22379 Brooklyn Private room 49
## 22380 Manhattan Entire home/apt 510
## 22381 Brooklyn Private room 45
## 22382 Manhattan Private room 100
## 22383 Queens Private room 50
## 22384 Manhattan Entire home/apt 199
## 22385 Queens Entire home/apt 81
## 22386 Manhattan Entire home/apt 90
## 22387 Brooklyn Private room 80
## 22388 Manhattan Entire home/apt 175
## 22389 Manhattan Entire home/apt 50
## 22390 Brooklyn Private room 60
## 22391 Bronx Private room 70
## 22392 Brooklyn Entire home/apt 175
## 22393 Brooklyn Private room 30
## 22394 Manhattan Private room 350
## 22395 Brooklyn Private room 57
## 22396 Brooklyn Entire home/apt 120
## 22397 Brooklyn Entire home/apt 129
## 22398 Brooklyn Private room 60
## 22399 Brooklyn Entire home/apt 76
## 22400 Manhattan Entire home/apt 150
## 22401 Manhattan Private room 40
## 22402 Manhattan Entire home/apt 250
## 22403 Manhattan Private room 55
## 22404 Manhattan Entire home/apt 124
## 22405 Manhattan Entire home/apt 130
## 22406 Brooklyn Entire home/apt 700
## 22407 Manhattan Entire home/apt 219
## 22408 Manhattan Entire home/apt 2250
## 22409 Queens Entire home/apt 125
## 22410 Brooklyn Entire home/apt 200
## 22411 Manhattan Entire home/apt 179
## 22412 Brooklyn Entire home/apt 200
## 22413 Brooklyn Entire home/apt 160
## 22414 Manhattan Entire home/apt 270
## 22415 Brooklyn Private room 51
## 22416 Brooklyn Private room 65
## 22417 Queens Entire home/apt 100
## 22418 Queens Private room 49
## 22419 Brooklyn Entire home/apt 195
## 22420 Manhattan Entire home/apt 115
## 22421 Brooklyn Private room 65
## 22422 Brooklyn Private room 65
## 22423 Brooklyn Private room 60
## 22424 Brooklyn Entire home/apt 175
## 22425 Manhattan Private room 80
## 22426 Brooklyn Private room 72
## 22427 Manhattan Private room 100
## 22428 Manhattan Entire home/apt 100
## 22429 Queens Private room 47
## 22430 Brooklyn Private room 125
## 22431 Queens Private room 56
## 22432 Manhattan Entire home/apt 105
## 22433 Manhattan Private room 80
## 22434 Brooklyn Private room 40
## 22435 Manhattan Entire home/apt 180
## 22436 Manhattan Private room 79
## 22437 Brooklyn Entire home/apt 150
## 22438 Manhattan Entire home/apt 250
## 22439 Brooklyn Private room 169
## 22440 Brooklyn Entire home/apt 199
## 22441 Brooklyn Entire home/apt 125
## 22442 Manhattan Private room 120
## 22443 Manhattan Entire home/apt 199
## 22444 Brooklyn Entire home/apt 160
## 22445 Brooklyn Entire home/apt 100
## 22446 Brooklyn Entire home/apt 550
## 22447 Brooklyn Private room 40
## 22448 Brooklyn Entire home/apt 95
## 22449 Manhattan Private room 150
## 22450 Brooklyn Entire home/apt 189
## 22451 Brooklyn Private room 71
## 22452 Brooklyn Private room 40
## 22453 Brooklyn Private room 55
## 22454 Queens Private room 150
## 22455 Manhattan Entire home/apt 229
## 22456 Manhattan Entire home/apt 120
## 22457 Brooklyn Private room 100
## 22458 Brooklyn Entire home/apt 160
## 22459 Manhattan Private room 50
## 22460 Brooklyn Private room 60
## 22461 Manhattan Entire home/apt 229
## 22462 Queens Entire home/apt 99
## 22463 Manhattan Entire home/apt 136
## 22464 Manhattan Private room 120
## 22465 Brooklyn Entire home/apt 300
## 22466 Manhattan Entire home/apt 119
## 22467 Manhattan Private room 99
## 22468 Brooklyn Private room 60
## 22469 Manhattan Shared room 31
## 22470 Queens Private room 48
## 22471 Manhattan Private room 69
## 22472 Brooklyn Private room 60
## 22473 Queens Entire home/apt 1000
## 22474 Manhattan Entire home/apt 350
## 22475 Queens Entire home/apt 100
## 22476 Queens Entire home/apt 150
## 22477 Brooklyn Entire home/apt 140
## 22478 Manhattan Entire home/apt 200
## 22479 Brooklyn Entire home/apt 235
## 22480 Manhattan Entire home/apt 200
## 22481 Brooklyn Private room 40
## 22482 Brooklyn Entire home/apt 90
## 22483 Manhattan Entire home/apt 379
## 22484 Manhattan Entire home/apt 300
## 22485 Brooklyn Entire home/apt 250
## 22486 Manhattan Shared room 49
## 22487 Brooklyn Private room 60
## 22488 Brooklyn Entire home/apt 224
## 22489 Brooklyn Entire home/apt 115
## 22490 Brooklyn Private room 49
## 22491 Queens Entire home/apt 115
## 22492 Staten Island Entire home/apt 95
## 22493 Brooklyn Private room 98
## 22494 Manhattan Private room 110
## 22495 Manhattan Private room 50
## 22496 Brooklyn Private room 75
## 22497 Manhattan Entire home/apt 50
## 22498 Brooklyn Private room 27
## 22499 Brooklyn Entire home/apt 130
## 22500 Brooklyn Entire home/apt 85
## 22501 Brooklyn Private room 115
## 22502 Brooklyn Private room 53
## 22503 Queens Entire home/apt 80
## 22504 Manhattan Private room 35
## 22505 Manhattan Entire home/apt 165
## 22506 Brooklyn Private room 60
## 22507 Queens Entire home/apt 379
## 22508 Manhattan Entire home/apt 285
## 22509 Brooklyn Private room 60
## 22510 Manhattan Entire home/apt 329
## 22511 Manhattan Entire home/apt 225
## 22512 Bronx Private room 75
## 22513 Manhattan Private room 100
## 22514 Manhattan Entire home/apt 200
## 22515 Manhattan Private room 115
## 22516 Brooklyn Private room 85
## 22517 Manhattan Private room 40
## 22518 Manhattan Entire home/apt 235
## 22519 Brooklyn Private room 64
## 22520 Manhattan Entire home/apt 134
## 22521 Brooklyn Entire home/apt 86
## 22522 Manhattan Entire home/apt 330
## 22523 Brooklyn Entire home/apt 170
## 22524 Manhattan Private room 90
## 22525 Queens Entire home/apt 65
## 22526 Queens Private room 60
## 22527 Queens Private room 75
## 22528 Brooklyn Entire home/apt 265
## 22529 Manhattan Entire home/apt 148
## 22530 Queens Private room 95
## 22531 Manhattan Private room 94
## 22532 Brooklyn Entire home/apt 109
## 22533 Manhattan Entire home/apt 490
## 22534 Manhattan Entire home/apt 200
## 22535 Brooklyn Private room 69
## 22536 Queens Entire home/apt 99
## 22537 Brooklyn Private room 75
## 22538 Brooklyn Entire home/apt 146
## 22539 Manhattan Private room 77
## 22540 Queens Private room 35
## 22541 Manhattan Entire home/apt 140
## 22542 Manhattan Private room 100
## 22543 Queens Private room 45
## 22544 Brooklyn Entire home/apt 185
## 22545 Bronx Entire home/apt 60
## 22546 Queens Private room 50
## 22547 Brooklyn Private room 50
## 22548 Brooklyn Private room 47
## 22549 Manhattan Entire home/apt 186
## 22550 Manhattan Entire home/apt 100
## 22551 Manhattan Entire home/apt 400
## 22552 Bronx Private room 75
## 22553 Brooklyn Private room 145
## 22554 Staten Island Private room 65
## 22555 Brooklyn Entire home/apt 110
## 22556 Manhattan Entire home/apt 85
## 22557 Manhattan Entire home/apt 51
## 22558 Manhattan Entire home/apt 140
## 22559 Manhattan Entire home/apt 85
## 22560 Brooklyn Private room 165
## 22561 Manhattan Private room 30
## 22562 Manhattan Entire home/apt 116
## 22563 Brooklyn Entire home/apt 70
## 22564 Brooklyn Entire home/apt 46
## 22565 Manhattan Entire home/apt 70
## 22566 Manhattan Entire home/apt 250
## 22567 Brooklyn Private room 70
## 22568 Manhattan Private room 140
## 22569 Manhattan Private room 150
## 22570 Manhattan Entire home/apt 168
## 22571 Brooklyn Entire home/apt 85
## 22572 Brooklyn Private room 50
## 22573 Manhattan Private room 99
## 22574 Brooklyn Private room 65
## 22575 Manhattan Entire home/apt 145
## 22576 Queens Private room 50
## 22577 Manhattan Private room 39
## 22578 Brooklyn Private room 200
## 22579 Brooklyn Private room 69
## 22580 Manhattan Entire home/apt 300
## 22581 Brooklyn Private room 69
## 22582 Queens Private room 40
## 22583 Brooklyn Entire home/apt 160
## 22584 Manhattan Shared room 99
## 22585 Brooklyn Private room 29
## 22586 Brooklyn Private room 55
## 22587 Manhattan Entire home/apt 850
## 22588 Brooklyn Private room 75
## 22589 Brooklyn Private room 60
## 22590 Brooklyn Entire home/apt 249
## 22591 Brooklyn Private room 69
## 22592 Manhattan Private room 100
## 22593 Brooklyn Private room 75
## 22594 Manhattan Private room 179
## 22595 Staten Island Entire home/apt 80
## 22596 Brooklyn Entire home/apt 196
## 22597 Manhattan Private room 43
## 22598 Manhattan Shared room 145
## 22599 Manhattan Private room 50
## 22600 Manhattan Private room 99
## 22601 Manhattan Private room 80
## 22602 Manhattan Entire home/apt 118
## 22603 Queens Private room 55
## 22604 Brooklyn Entire home/apt 200
## 22605 Manhattan Private room 150
## 22606 Brooklyn Entire home/apt 125
## 22607 Manhattan Entire home/apt 145
## 22608 Manhattan Private room 99
## 22609 Brooklyn Private room 80
## 22610 Manhattan Entire home/apt 195
## 22611 Brooklyn Private room 42
## 22612 Manhattan Private room 53
## 22613 Brooklyn Entire home/apt 125
## 22614 Manhattan Private room 99
## 22615 Manhattan Entire home/apt 210
## 22616 Manhattan Entire home/apt 177
## 22617 Manhattan Entire home/apt 145
## 22618 Manhattan Private room 44
## 22619 Manhattan Private room 85
## 22620 Brooklyn Entire home/apt 150
## 22621 Queens Private room 70
## 22622 Brooklyn Private room 150
## 22623 Manhattan Entire home/apt 125
## 22624 Manhattan Private room 200
## 22625 Staten Island Private room 55
## 22626 Brooklyn Private room 69
## 22627 Manhattan Entire home/apt 215
## 22628 Brooklyn Entire home/apt 235
## 22629 Brooklyn Private room 42
## 22630 Brooklyn Private room 180
## 22631 Manhattan Private room 125
## 22632 Brooklyn Entire home/apt 160
## 22633 Manhattan Private room 100
## 22634 Manhattan Private room 39
## 22635 Brooklyn Private room 71
## 22636 Manhattan Entire home/apt 1475
## 22637 Manhattan Private room 100
## 22638 Manhattan Entire home/apt 180
## 22639 Brooklyn Private room 79
## 22640 Brooklyn Private room 60
## 22641 Manhattan Entire home/apt 160
## 22642 Manhattan Private room 110
## 22643 Manhattan Private room 193
## 22644 Queens Private room 50
## 22645 Brooklyn Entire home/apt 250
## 22646 Queens Private room 72
## 22647 Brooklyn Private room 50
## 22648 Brooklyn Private room 35
## 22649 Brooklyn Private room 90
## 22650 Manhattan Entire home/apt 325
## 22651 Queens Entire home/apt 79
## 22652 Manhattan Private room 180
## 22653 Brooklyn Entire home/apt 129
## 22654 Brooklyn Entire home/apt 125
## 22655 Brooklyn Entire home/apt 160
## 22656 Queens Private room 100
## 22657 Brooklyn Entire home/apt 110
## 22658 Manhattan Entire home/apt 278
## 22659 Manhattan Private room 100
## 22660 Manhattan Entire home/apt 350
## 22661 Manhattan Entire home/apt 200
## 22662 Brooklyn Private room 39
## 22663 Brooklyn Private room 99
## 22664 Manhattan Entire home/apt 110
## 22665 Manhattan Private room 250
## 22666 Brooklyn Private room 199
## 22667 Brooklyn Entire home/apt 150
## 22668 Manhattan Private room 55
## 22669 Brooklyn Private room 60
## 22670 Manhattan Private room 65
## 22671 Queens Private room 45
## 22672 Manhattan Entire home/apt 150
## 22673 Queens Private room 50
## 22674 Brooklyn Private room 250
## 22675 Manhattan Entire home/apt 120
## 22676 Brooklyn Private room 54
## 22677 Manhattan Entire home/apt 150
## 22678 Brooklyn Private room 100
## 22679 Manhattan Entire home/apt 130
## 22680 Manhattan Private room 95
## 22681 Brooklyn Private room 36
## 22682 Manhattan Private room 115
## 22683 Brooklyn Entire home/apt 199
## 22684 Manhattan Entire home/apt 195
## 22685 Manhattan Entire home/apt 350
## 22686 Brooklyn Private room 72
## 22687 Manhattan Entire home/apt 145
## 22688 Queens Private room 48
## 22689 Brooklyn Private room 35
## 22690 Brooklyn Private room 42
## 22691 Brooklyn Entire home/apt 225
## 22692 Manhattan Entire home/apt 149
## 22693 Manhattan Private room 75
## 22694 Manhattan Private room 46
## 22695 Queens Private room 100
## 22696 Manhattan Private room 130
## 22697 Manhattan Entire home/apt 150
## 22698 Brooklyn Entire home/apt 145
## 22699 Brooklyn Private room 95
## 22700 Brooklyn Private room 49
## 22701 Manhattan Entire home/apt 220
## 22702 Brooklyn Entire home/apt 200
## 22703 Brooklyn Entire home/apt 150
## 22704 Brooklyn Private room 30
## 22705 Brooklyn Private room 187
## 22706 Brooklyn Private room 85
## 22707 Brooklyn Private room 54
## 22708 Brooklyn Entire home/apt 175
## 22709 Bronx Private room 38
## 22710 Bronx Private room 53
## 22711 Manhattan Private room 145
## 22712 Brooklyn Entire home/apt 173
## 22713 Brooklyn Entire home/apt 150
## 22714 Manhattan Entire home/apt 89
## 22715 Brooklyn Entire home/apt 200
## 22716 Brooklyn Entire home/apt 120
## 22717 Brooklyn Private room 54
## 22718 Brooklyn Private room 50
## 22719 Brooklyn Private room 45
## 22720 Brooklyn Private room 59
## 22721 Manhattan Entire home/apt 149
## 22722 Manhattan Entire home/apt 142
## 22723 Manhattan Private room 120
## 22724 Brooklyn Private room 70
## 22725 Brooklyn Entire home/apt 200
## 22726 Brooklyn Entire home/apt 299
## 22727 Brooklyn Entire home/apt 80
## 22728 Brooklyn Private room 60
## 22729 Manhattan Shared room 99
## 22730 Manhattan Private room 60
## 22731 Brooklyn Private room 46
## 22732 Brooklyn Private room 60
## 22733 Brooklyn Entire home/apt 175
## 22734 Manhattan Private room 75
## 22735 Queens Private room 180
## 22736 Manhattan Private room 70
## 22737 Manhattan Entire home/apt 190
## 22738 Bronx Private room 60
## 22739 Bronx Private room 45
## 22740 Brooklyn Entire home/apt 450
## 22741 Queens Entire home/apt 99
## 22742 Manhattan Private room 37
## 22743 Brooklyn Entire home/apt 100
## 22744 Queens Entire home/apt 197
## 22745 Brooklyn Private room 90
## 22746 Brooklyn Entire home/apt 188
## 22747 Manhattan Entire home/apt 110
## 22748 Brooklyn Entire home/apt 175
## 22749 Manhattan Private room 100
## 22750 Manhattan Entire home/apt 295
## 22751 Queens Entire home/apt 99
## 22752 Manhattan Private room 70
## 22753 Manhattan Private room 55
## 22754 Staten Island Private room 65
## 22755 Manhattan Entire home/apt 99
## 22756 Manhattan Private room 60
## 22757 Manhattan Entire home/apt 259
## 22758 Manhattan Entire home/apt 159
## 22759 Manhattan Entire home/apt 300
## 22760 Brooklyn Entire home/apt 210
## 22761 Manhattan Entire home/apt 195
## 22762 Manhattan Entire home/apt 96
## 22763 Brooklyn Entire home/apt 80
## 22764 Manhattan Entire home/apt 160
## 22765 Queens Private room 199
## 22766 Manhattan Private room 35
## 22767 Manhattan Private room 80
## 22768 Manhattan Private room 35
## 22769 Brooklyn Private room 55
## 22770 Brooklyn Entire home/apt 207
## 22771 Queens Private room 59
## 22772 Brooklyn Private room 75
## 22773 Queens Private room 49
## 22774 Brooklyn Entire home/apt 115
## 22775 Manhattan Private room 40
## 22776 Bronx Private room 33
## 22777 Brooklyn Private room 199
## 22778 Brooklyn Entire home/apt 93
## 22779 Manhattan Entire home/apt 159
## 22780 Manhattan Entire home/apt 150
## 22781 Manhattan Entire home/apt 86
## 22782 Brooklyn Private room 75
## 22783 Manhattan Private room 57
## 22784 Manhattan Entire home/apt 200
## 22785 Bronx Private room 50
## 22786 Manhattan Private room 120
## 22787 Manhattan Entire home/apt 100
## 22788 Brooklyn Entire home/apt 90
## 22789 Brooklyn Private room 50
## 22790 Brooklyn Entire home/apt 100
## 22791 Manhattan Private room 35
## 22792 Brooklyn Entire home/apt 94
## 22793 Brooklyn Entire home/apt 190
## 22794 Manhattan Private room 86
## 22795 Manhattan Entire home/apt 199
## 22796 Manhattan Private room 55
## 22797 Manhattan Entire home/apt 226
## 22798 Brooklyn Entire home/apt 186
## 22799 Manhattan Entire home/apt 170
## 22800 Manhattan Private room 100
## 22801 Brooklyn Private room 90
## 22802 Brooklyn Private room 50
## 22803 Manhattan Entire home/apt 119
## 22804 Queens Entire home/apt 110
## 22805 Manhattan Entire home/apt 80
## 22806 Brooklyn Private room 64
## 22807 Queens Private room 47
## 22808 Brooklyn Entire home/apt 100
## 22809 Brooklyn Private room 49
## 22810 Brooklyn Private room 100
## 22811 Brooklyn Private room 47
## 22812 Brooklyn Entire home/apt 150
## 22813 Manhattan Private room 43
## 22814 Brooklyn Entire home/apt 165
## 22815 Queens Private room 70
## 22816 Brooklyn Private room 49
## 22817 Manhattan Entire home/apt 199
## 22818 Manhattan Private room 90
## 22819 Brooklyn Private room 60
## 22820 Brooklyn Private room 125
## 22821 Brooklyn Private room 100
## 22822 Manhattan Entire home/apt 80
## 22823 Manhattan Entire home/apt 200
## 22824 Manhattan Private room 50
## 22825 Manhattan Entire home/apt 185
## 22826 Manhattan Private room 37
## 22827 Queens Entire home/apt 135
## 22828 Brooklyn Private room 50
## 22829 Brooklyn Private room 60
## 22830 Brooklyn Private room 40
## 22831 Brooklyn Private room 40
## 22832 Manhattan Entire home/apt 85
## 22833 Brooklyn Entire home/apt 85
## 22834 Brooklyn Entire home/apt 165
## 22835 Brooklyn Entire home/apt 200
## 22836 Queens Entire home/apt 10
## 22837 Manhattan Entire home/apt 134
## 22838 Brooklyn Private room 60
## 22839 Queens Entire home/apt 400
## 22840 Brooklyn Private room 124
## 22841 Brooklyn Private room 75
## 22842 Brooklyn Entire home/apt 106
## 22843 Brooklyn Entire home/apt 190
## 22844 Brooklyn Private room 80
## 22845 Brooklyn Private room 199
## 22846 Queens Entire home/apt 60
## 22847 Brooklyn Private room 50
## 22848 Manhattan Private room 78
## 22849 Brooklyn Private room 79
## 22850 Brooklyn Private room 75
## 22851 Manhattan Private room 205
## 22852 Queens Private room 50
## 22853 Manhattan Entire home/apt 99
## 22854 Brooklyn Private room 44
## 22855 Manhattan Entire home/apt 615
## 22856 Brooklyn Entire home/apt 260
## 22857 Manhattan Entire home/apt 275
## 22858 Manhattan Shared room 75
## 22859 Queens Private room 45
## 22860 Bronx Private room 42
## 22861 Bronx Private room 43
## 22862 Brooklyn Entire home/apt 200
## 22863 Manhattan Entire home/apt 79
## 22864 Brooklyn Private room 70
## 22865 Manhattan Private room 139
## 22866 Manhattan Private room 100
## 22867 Brooklyn Entire home/apt 137
## 22868 Manhattan Private room 175
## 22869 Brooklyn Private room 40
## 22870 Brooklyn Entire home/apt 300
## 22871 Brooklyn Entire home/apt 180
## 22872 Brooklyn Entire home/apt 180
## 22873 Brooklyn Entire home/apt 149
## 22874 Brooklyn Private room 58
## 22875 Brooklyn Entire home/apt 125
## 22876 Brooklyn Entire home/apt 235
## 22877 Manhattan Entire home/apt 206
## 22878 Queens Entire home/apt 199
## 22879 Brooklyn Private room 40
## 22880 Queens Entire home/apt 120
## 22881 Queens Private room 38
## 22882 Bronx Private room 100
## 22883 Brooklyn Entire home/apt 100
## 22884 Manhattan Entire home/apt 175
## 22885 Brooklyn Entire home/apt 171
## 22886 Manhattan Private room 169
## 22887 Brooklyn Private room 60
## 22888 Manhattan Private room 94
## 22889 Brooklyn Entire home/apt 88
## 22890 Bronx Private room 65
## 22891 Manhattan Entire home/apt 134
## 22892 Manhattan Entire home/apt 419
## 22893 Manhattan Private room 90
## 22894 Brooklyn Entire home/apt 140
## 22895 Manhattan Entire home/apt 198
## 22896 Queens Private room 78
## 22897 Brooklyn Private room 65
## 22898 Manhattan Private room 65
## 22899 Bronx Entire home/apt 199
## 22900 Manhattan Private room 99
## 22901 Brooklyn Private room 70
## 22902 Brooklyn Private room 75
## 22903 Manhattan Entire home/apt 350
## 22904 Brooklyn Private room 75
## 22905 Manhattan Entire home/apt 199
## 22906 Brooklyn Private room 30
## 22907 Manhattan Private room 70
## 22908 Brooklyn Entire home/apt 120
## 22909 Manhattan Shared room 65
## 22910 Manhattan Entire home/apt 295
## 22911 Brooklyn Entire home/apt 135
## 22912 Manhattan Private room 67
## 22913 Bronx Private room 40
## 22914 Brooklyn Private room 70
## 22915 Brooklyn Private room 60
## 22916 Brooklyn Entire home/apt 109
## 22917 Manhattan Entire home/apt 50
## 22918 Queens Entire home/apt 99
## 22919 Manhattan Shared room 105
## 22920 Brooklyn Private room 45
## 22921 Brooklyn Private room 70
## 22922 Brooklyn Entire home/apt 150
## 22923 Brooklyn Entire home/apt 190
## 22924 Manhattan Entire home/apt 150
## 22925 Brooklyn Private room 70
## 22926 Brooklyn Entire home/apt 349
## 22927 Brooklyn Entire home/apt 79
## 22928 Brooklyn Private room 70
## 22929 Manhattan Private room 150
## 22930 Manhattan Entire home/apt 232
## 22931 Brooklyn Private room 47
## 22932 Brooklyn Private room 45
## 22933 Manhattan Entire home/apt 200
## 22934 Queens Entire home/apt 278
## 22935 Brooklyn Entire home/apt 195
## 22936 Brooklyn Entire home/apt 109
## 22937 Brooklyn Private room 65
## 22938 Manhattan Private room 80
## 22939 Brooklyn Private room 65
## 22940 Manhattan Private room 100
## 22941 Manhattan Entire home/apt 180
## 22942 Manhattan Entire home/apt 299
## 22943 Bronx Private room 80
## 22944 Brooklyn Entire home/apt 105
## 22945 Manhattan Shared room 350
## 22946 Brooklyn Private room 45
## 22947 Brooklyn Entire home/apt 315
## 22948 Brooklyn Private room 79
## 22949 Manhattan Entire home/apt 90
## 22950 Brooklyn Private room 215
## 22951 Brooklyn Private room 59
## 22952 Manhattan Entire home/apt 200
## 22953 Brooklyn Private room 90
## 22954 Queens Entire home/apt 545
## 22955 Brooklyn Private room 33
## 22956 Manhattan Entire home/apt 125
## 22957 Manhattan Entire home/apt 100
## 22958 Manhattan Private room 275
## 22959 Brooklyn Private room 45
## 22960 Brooklyn Entire home/apt 199
## 22961 Brooklyn Entire home/apt 150
## 22962 Manhattan Entire home/apt 125
## 22963 Brooklyn Private room 55
## 22964 Manhattan Entire home/apt 168
## 22965 Manhattan Entire home/apt 125
## 22966 Brooklyn Private room 150
## 22967 Brooklyn Private room 48
## 22968 Manhattan Private room 85
## 22969 Brooklyn Private room 80
## 22970 Staten Island Private room 43
## 22971 Manhattan Private room 60
## 22972 Brooklyn Private room 60
## 22973 Brooklyn Entire home/apt 179
## 22974 Brooklyn Entire home/apt 156
## 22975 Brooklyn Entire home/apt 153
## 22976 Manhattan Private room 76
## 22977 Manhattan Private room 2000
## 22978 Manhattan Private room 55
## 22979 Brooklyn Private room 145
## 22980 Brooklyn Private room 75
## 22981 Manhattan Private room 65
## 22982 Brooklyn Entire home/apt 199
## 22983 Brooklyn Entire home/apt 150
## 22984 Brooklyn Private room 60
## 22985 Manhattan Private room 70
## 22986 Queens Private room 36
## 22987 Manhattan Entire home/apt 210
## 22988 Bronx Private room 40
## 22989 Brooklyn Private room 140
## 22990 Manhattan Private room 120
## 22991 Brooklyn Private room 95
## 22992 Brooklyn Entire home/apt 90
## 22993 Manhattan Entire home/apt 2900
## 22994 Manhattan Entire home/apt 199
## 22995 Manhattan Private room 70
## 22996 Brooklyn Entire home/apt 169
## 22997 Brooklyn Private room 30
## 22998 Brooklyn Entire home/apt 140
## 22999 Manhattan Entire home/apt 110
## 23000 Queens Private room 30
## 23001 Brooklyn Entire home/apt 130
## 23002 Brooklyn Entire home/apt 99
## 23003 Manhattan Entire home/apt 200
## 23004 Manhattan Entire home/apt 170
## 23005 Brooklyn Private room 110
## 23006 Brooklyn Entire home/apt 100
## 23007 Manhattan Entire home/apt 133
## 23008 Manhattan Private room 75
## 23009 Brooklyn Entire home/apt 125
## 23010 Brooklyn Entire home/apt 325
## 23011 Brooklyn Private room 50
## 23012 Bronx Private room 50
## 23013 Manhattan Entire home/apt 120
## 23014 Manhattan Private room 50
## 23015 Queens Entire home/apt 100
## 23016 Brooklyn Private room 45
## 23017 Brooklyn Entire home/apt 94
## 23018 Brooklyn Private room 60
## 23019 Queens Private room 63
## 23020 Brooklyn Entire home/apt 175
## 23021 Brooklyn Private room 26
## 23022 Manhattan Private room 45
## 23023 Manhattan Entire home/apt 123
## 23024 Brooklyn Entire home/apt 185
## 23025 Manhattan Private room 55
## 23026 Manhattan Entire home/apt 133
## 23027 Manhattan Private room 75
## 23028 Brooklyn Entire home/apt 450
## 23029 Brooklyn Private room 40
## 23030 Queens Private room 90
## 23031 Brooklyn Private room 400
## 23032 Queens Private room 62
## 23033 Manhattan Entire home/apt 287
## 23034 Manhattan Entire home/apt 200
## 23035 Brooklyn Private room 58
## 23036 Brooklyn Entire home/apt 325
## 23037 Manhattan Entire home/apt 222
## 23038 Brooklyn Entire home/apt 130
## 23039 Manhattan Private room 70
## 23040 Brooklyn Private room 44
## 23041 Brooklyn Private room 85
## 23042 Manhattan Private room 85
## 23043 Brooklyn Private room 52
## 23044 Manhattan Private room 60
## 23045 Brooklyn Entire home/apt 275
## 23046 Manhattan Private room 75
## 23047 Brooklyn Entire home/apt 125
## 23048 Brooklyn Entire home/apt 475
## 23049 Brooklyn Private room 50
## 23050 Queens Entire home/apt 80
## 23051 Brooklyn Entire home/apt 200
## 23052 Brooklyn Private room 70
## 23053 Manhattan Private room 52
## 23054 Brooklyn Entire home/apt 150
## 23055 Brooklyn Private room 63
## 23056 Brooklyn Entire home/apt 100
## 23057 Staten Island Private room 50
## 23058 Queens Private room 69
## 23059 Brooklyn Entire home/apt 116
## 23060 Queens Private room 44
## 23061 Manhattan Private room 60
## 23062 Manhattan Private room 180
## 23063 Manhattan Entire home/apt 95
## 23064 Manhattan Private room 70
## 23065 Manhattan Entire home/apt 275
## 23066 Manhattan Entire home/apt 195
## 23067 Brooklyn Private room 45
## 23068 Manhattan Private room 135
## 23069 Manhattan Entire home/apt 145
## 23070 Manhattan Entire home/apt 160
## 23071 Brooklyn Entire home/apt 98
## 23072 Brooklyn Private room 80
## 23073 Manhattan Entire home/apt 150
## 23074 Bronx Private room 60
## 23075 Brooklyn Private room 430
## 23076 Manhattan Entire home/apt 128
## 23077 Manhattan Shared room 55
## 23078 Brooklyn Private room 60
## 23079 Brooklyn Private room 89
## 23080 Manhattan Private room 60
## 23081 Brooklyn Entire home/apt 145
## 23082 Brooklyn Entire home/apt 97
## 23083 Bronx Private room 45
## 23084 Manhattan Private room 50
## 23085 Manhattan Private room 110
## 23086 Brooklyn Private room 65
## 23087 Brooklyn Entire home/apt 175
## 23088 Manhattan Private room 80
## 23089 Brooklyn Entire home/apt 325
## 23090 Brooklyn Entire home/apt 126
## 23091 Manhattan Private room 104
## 23092 Brooklyn Entire home/apt 150
## 23093 Brooklyn Private room 85
## 23094 Brooklyn Private room 45
## 23095 Bronx Private room 60
## 23096 Brooklyn Private room 120
## 23097 Brooklyn Entire home/apt 200
## 23098 Manhattan Entire home/apt 235
## 23099 Manhattan Entire home/apt 180
## 23100 Brooklyn Entire home/apt 160
## 23101 Brooklyn Private room 42
## 23102 Manhattan Entire home/apt 135
## 23103 Brooklyn Entire home/apt 175
## 23104 Manhattan Entire home/apt 164
## 23105 Brooklyn Entire home/apt 147
## 23106 Brooklyn Entire home/apt 120
## 23107 Brooklyn Entire home/apt 88
## 23108 Brooklyn Entire home/apt 120
## 23109 Manhattan Private room 63
## 23110 Brooklyn Entire home/apt 114
## 23111 Manhattan Private room 110
## 23112 Queens Private room 60
## 23113 Manhattan Private room 55
## 23114 Brooklyn Entire home/apt 165
## 23115 Manhattan Private room 105
## 23116 Queens Entire home/apt 150
## 23117 Brooklyn Entire home/apt 75
## 23118 Brooklyn Private room 150
## 23119 Bronx Private room 60
## 23120 Brooklyn Entire home/apt 90
## 23121 Queens Private room 55
## 23122 Queens Private room 150
## 23123 Brooklyn Private room 41
## 23124 Manhattan Private room 115
## 23125 Brooklyn Entire home/apt 100
## 23126 Brooklyn Entire home/apt 155
## 23127 Brooklyn Private room 52
## 23128 Brooklyn Private room 80
## 23129 Manhattan Entire home/apt 75
## 23130 Brooklyn Private room 150
## 23131 Manhattan Private room 40
## 23132 Manhattan Entire home/apt 95
## 23133 Brooklyn Private room 50
## 23134 Brooklyn Entire home/apt 158
## 23135 Brooklyn Private room 60
## 23136 Manhattan Private room 50
## 23137 Bronx Private room 65
## 23138 Manhattan Private room 44
## 23139 Brooklyn Private room 30
## 23140 Brooklyn Entire home/apt 184
## 23141 Brooklyn Entire home/apt 175
## 23142 Brooklyn Entire home/apt 300
## 23143 Brooklyn Entire home/apt 99
## 23144 Brooklyn Entire home/apt 137
## 23145 Queens Private room 49
## 23146 Brooklyn Entire home/apt 75
## 23147 Queens Private room 39
## 23148 Brooklyn Entire home/apt 59
## 23149 Brooklyn Entire home/apt 229
## 23150 Brooklyn Entire home/apt 825
## 23151 Manhattan Private room 125
## 23152 Brooklyn Private room 39
## 23153 Manhattan Entire home/apt 130
## 23154 Manhattan Private room 500
## 23155 Brooklyn Entire home/apt 80
## 23156 Brooklyn Entire home/apt 125
## 23157 Brooklyn Entire home/apt 185
## 23158 Manhattan Entire home/apt 225
## 23159 Brooklyn Private room 90
## 23160 Manhattan Entire home/apt 150
## 23161 Manhattan Entire home/apt 120
## 23162 Brooklyn Private room 0
## 23163 Brooklyn Private room 65
## 23164 Brooklyn Entire home/apt 225
## 23165 Brooklyn Private room 100
## 23166 Manhattan Entire home/apt 195
## 23167 Queens Private room 69
## 23168 Manhattan Private room 75
## 23169 Brooklyn Entire home/apt 150
## 23170 Staten Island Private room 40
## 23171 Manhattan Entire home/apt 200
## 23172 Manhattan Entire home/apt 260
## 23173 Manhattan Private room 60
## 23174 Brooklyn Entire home/apt 150
## 23175 Manhattan Entire home/apt 254
## 23176 Manhattan Shared room 58
## 23177 Manhattan Entire home/apt 295
## 23178 Manhattan Private room 45
## 23179 Manhattan Private room 50
## 23180 Brooklyn Entire home/apt 80
## 23181 Brooklyn Private room 80
## 23182 Queens Entire home/apt 88
## 23183 Manhattan Entire home/apt 150
## 23184 Manhattan Private room 70
## 23185 Brooklyn Private room 98
## 23186 Brooklyn Entire home/apt 250
## 23187 Queens Entire home/apt 238
## 23188 Queens Private room 100
## 23189 Manhattan Entire home/apt 265
## 23190 Manhattan Entire home/apt 399
## 23191 Brooklyn Private room 55
## 23192 Manhattan Entire home/apt 160
## 23193 Brooklyn Entire home/apt 350
## 23194 Queens Private room 100
## 23195 Manhattan Entire home/apt 184
## 23196 Manhattan Entire home/apt 315
## 23197 Brooklyn Entire home/apt 250
## 23198 Brooklyn Private room 77
## 23199 Brooklyn Entire home/apt 180
## 23200 Manhattan Entire home/apt 150
## 23201 Brooklyn Entire home/apt 150
## 23202 Brooklyn Entire home/apt 165
## 23203 Brooklyn Entire home/apt 125
## 23204 Manhattan Entire home/apt 150
## 23205 Brooklyn Private room 51
## 23206 Brooklyn Private room 53
## 23207 Manhattan Private room 95
## 23208 Manhattan Private room 69
## 23209 Manhattan Entire home/apt 195
## 23210 Manhattan Entire home/apt 125
## 23211 Manhattan Entire home/apt 299
## 23212 Brooklyn Private room 146
## 23213 Brooklyn Private room 55
## 23214 Brooklyn Private room 50
## 23215 Brooklyn Private room 65
## 23216 Manhattan Entire home/apt 165
## 23217 Brooklyn Private room 41
## 23218 Queens Entire home/apt 70
## 23219 Bronx Private room 55
## 23220 Brooklyn Private room 55
## 23221 Manhattan Entire home/apt 250
## 23222 Manhattan Private room 73
## 23223 Brooklyn Private room 63
## 23224 Manhattan Private room 50
## 23225 Queens Entire home/apt 183
## 23226 Brooklyn Entire home/apt 91
## 23227 Queens Entire home/apt 250
## 23228 Brooklyn Private room 55
## 23229 Brooklyn Entire home/apt 85
## 23230 Manhattan Private room 50
## 23231 Brooklyn Entire home/apt 150
## 23232 Manhattan Entire home/apt 305
## 23233 Queens Private room 80
## 23234 Manhattan Entire home/apt 150
## 23235 Brooklyn Shared room 64
## 23236 Manhattan Private room 68
## 23237 Brooklyn Private room 31
## 23238 Brooklyn Private room 125
## 23239 Manhattan Entire home/apt 275
## 23240 Manhattan Entire home/apt 150
## 23241 Manhattan Private room 70
## 23242 Brooklyn Private room 90
## 23243 Manhattan Private room 130
## 23244 Brooklyn Entire home/apt 390
## 23245 Manhattan Entire home/apt 160
## 23246 Manhattan Entire home/apt 275
## 23247 Brooklyn Private room 43
## 23248 Manhattan Entire home/apt 119
## 23249 Brooklyn Private room 50
## 23250 Brooklyn Entire home/apt 115
## 23251 Brooklyn Private room 73
## 23252 Brooklyn Private room 85
## 23253 Brooklyn Private room 89
## 23254 Manhattan Entire home/apt 75
## 23255 Manhattan Entire home/apt 160
## 23256 Staten Island Entire home/apt 49
## 23257 Manhattan Entire home/apt 10
## 23258 Brooklyn Private room 55
## 23259 Brooklyn Entire home/apt 119
## 23260 Brooklyn Entire home/apt 85
## 23261 Manhattan Entire home/apt 350
## 23262 Manhattan Private room 76
## 23263 Brooklyn Entire home/apt 46
## 23264 Brooklyn Private room 95
## 23265 Brooklyn Entire home/apt 79
## 23266 Brooklyn Entire home/apt 350
## 23267 Manhattan Entire home/apt 205
## 23268 Manhattan Private room 190
## 23269 Brooklyn Entire home/apt 120
## 23270 Manhattan Private room 135
## 23271 Brooklyn Entire home/apt 111
## 23272 Brooklyn Entire home/apt 85
## 23273 Manhattan Private room 80
## 23274 Manhattan Private room 49
## 23275 Manhattan Private room 51
## 23276 Manhattan Entire home/apt 149
## 23277 Brooklyn Private room 55
## 23278 Manhattan Entire home/apt 270
## 23279 Bronx Private room 49
## 23280 Manhattan Private room 75
## 23281 Manhattan Private room 55
## 23282 Bronx Private room 70
## 23283 Queens Private room 54
## 23284 Brooklyn Private room 55
## 23285 Manhattan Private room 142
## 23286 Queens Private room 50
## 23287 Queens Private room 50
## 23288 Brooklyn Entire home/apt 109
## 23289 Manhattan Private room 100
## 23290 Brooklyn Private room 40
## 23291 Manhattan Private room 100
## 23292 Queens Entire home/apt 99
## 23293 Queens Entire home/apt 125
## 23294 Brooklyn Private room 75
## 23295 Brooklyn Entire home/apt 350
## 23296 Manhattan Entire home/apt 250
## 23297 Manhattan Entire home/apt 79
## 23298 Brooklyn Private room 90
## 23299 Manhattan Private room 80
## 23300 Brooklyn Private room 29
## 23301 Queens Entire home/apt 85
## 23302 Manhattan Private room 55
## 23303 Manhattan Private room 150
## 23304 Brooklyn Entire home/apt 250
## 23305 Manhattan Private room 50
## 23306 Queens Private room 60
## 23307 Queens Private room 60
## 23308 Bronx Entire home/apt 75
## 23309 Manhattan Entire home/apt 175
## 23310 Brooklyn Private room 33
## 23311 Manhattan Entire home/apt 175
## 23312 Brooklyn Entire home/apt 119
## 23313 Manhattan Entire home/apt 148
## 23314 Brooklyn Private room 77
## 23315 Manhattan Entire home/apt 118
## 23316 Manhattan Private room 350
## 23317 Manhattan Entire home/apt 170
## 23318 Queens Private room 60
## 23319 Brooklyn Entire home/apt 105
## 23320 Brooklyn Entire home/apt 100
## 23321 Queens Private room 50
## 23322 Brooklyn Private room 65
## 23323 Brooklyn Entire home/apt 245
## 23324 Manhattan Private room 80
## 23325 Manhattan Entire home/apt 155
## 23326 Queens Private room 40
## 23327 Brooklyn Private room 50
## 23328 Brooklyn Private room 40
## 23329 Manhattan Entire home/apt 254
## 23330 Brooklyn Private room 80
## 23331 Brooklyn Entire home/apt 299
## 23332 Brooklyn Private room 67
## 23333 Manhattan Private room 110
## 23334 Manhattan Private room 150
## 23335 Manhattan Private room 75
## 23336 Brooklyn Private room 80
## 23337 Brooklyn Entire home/apt 800
## 23338 Bronx Entire home/apt 48
## 23339 Brooklyn Private room 52
## 23340 Manhattan Entire home/apt 200
## 23341 Queens Private room 37
## 23342 Manhattan Entire home/apt 200
## 23343 Staten Island Private room 45
## 23344 Brooklyn Private room 119
## 23345 Queens Private room 60
## 23346 Queens Private room 259
## 23347 Bronx Private room 55
## 23348 Brooklyn Shared room 25
## 23349 Manhattan Private room 90
## 23350 Queens Entire home/apt 98
## 23351 Brooklyn Private room 149
## 23352 Manhattan Private room 515
## 23353 Brooklyn Entire home/apt 137
## 23354 Brooklyn Entire home/apt 70
## 23355 Brooklyn Shared room 60
## 23356 Manhattan Entire home/apt 200
## 23357 Brooklyn Private room 50
## 23358 Brooklyn Private room 45
## 23359 Manhattan Entire home/apt 125
## 23360 Manhattan Private room 45
## 23361 Brooklyn Private room 45
## 23362 Manhattan Entire home/apt 112
## 23363 Queens Private room 55
## 23364 Manhattan Entire home/apt 105
## 23365 Manhattan Entire home/apt 175
## 23366 Brooklyn Private room 65
## 23367 Brooklyn Private room 96
## 23368 Manhattan Entire home/apt 78
## 23369 Brooklyn Private room 120
## 23370 Manhattan Private room 49
## 23371 Queens Private room 66
## 23372 Bronx Entire home/apt 95
## 23373 Brooklyn Private room 43
## 23374 Brooklyn Private room 70
## 23375 Brooklyn Entire home/apt 265
## 23376 Brooklyn Private room 44
## 23377 Brooklyn Private room 35
## 23378 Manhattan Shared room 55
## 23379 Queens Private room 100
## 23380 Brooklyn Entire home/apt 123
## 23381 Manhattan Entire home/apt 100
## 23382 Manhattan Entire home/apt 200
## 23383 Brooklyn Private room 50
## 23384 Queens Private room 75
## 23385 Brooklyn Entire home/apt 225
## 23386 Brooklyn Private room 51
## 23387 Brooklyn Private room 45
## 23388 Brooklyn Entire home/apt 125
## 23389 Manhattan Private room 88
## 23390 Brooklyn Private room 70
## 23391 Manhattan Private room 55
## 23392 Queens Entire home/apt 104
## 23393 Manhattan Private room 90
## 23394 Queens Private room 59
## 23395 Manhattan Private room 55
## 23396 Queens Private room 175
## 23397 Queens Entire home/apt 1500
## 23398 Manhattan Entire home/apt 199
## 23399 Brooklyn Entire home/apt 150
## 23400 Manhattan Entire home/apt 145
## 23401 Manhattan Entire home/apt 220
## 23402 Brooklyn Entire home/apt 105
## 23403 Brooklyn Entire home/apt 185
## 23404 Brooklyn Private room 45
## 23405 Manhattan Private room 115
## 23406 Brooklyn Private room 90
## 23407 Brooklyn Entire home/apt 200
## 23408 Manhattan Entire home/apt 160
## 23409 Queens Private room 35
## 23410 Brooklyn Entire home/apt 200
## 23411 Manhattan Entire home/apt 129
## 23412 Brooklyn Entire home/apt 1067
## 23413 Manhattan Entire home/apt 120
## 23414 Brooklyn Entire home/apt 105
## 23415 Brooklyn Private room 36
## 23416 Brooklyn Private room 100
## 23417 Queens Private room 74
## 23418 Brooklyn Entire home/apt 68
## 23419 Manhattan Entire home/apt 122
## 23420 Manhattan Entire home/apt 200
## 23421 Staten Island Private room 85
## 23422 Queens Private room 71
## 23423 Brooklyn Private room 50
## 23424 Manhattan Private room 138
## 23425 Brooklyn Private room 39
## 23426 Manhattan Entire home/apt 158
## 23427 Queens Entire home/apt 195
## 23428 Brooklyn Private room 80
## 23429 Queens Private room 38
## 23430 Brooklyn Entire home/apt 134
## 23431 Manhattan Entire home/apt 70
## 23432 Brooklyn Private room 50
## 23433 Brooklyn Private room 60
## 23434 Manhattan Private room 79
## 23435 Brooklyn Entire home/apt 150
## 23436 Queens Private room 50
## 23437 Queens Private room 46
## 23438 Brooklyn Private room 65
## 23439 Manhattan Private room 51
## 23440 Manhattan Entire home/apt 176
## 23441 Bronx Private room 60
## 23442 Brooklyn Entire home/apt 95
## 23443 Bronx Private room 60
## 23444 Brooklyn Entire home/apt 350
## 23445 Brooklyn Private room 125
## 23446 Manhattan Entire home/apt 170
## 23447 Manhattan Private room 350
## 23448 Bronx Private room 40
## 23449 Brooklyn Private room 42
## 23450 Staten Island Entire home/apt 103
## 23451 Queens Entire home/apt 165
## 23452 Brooklyn Entire home/apt 128
## 23453 Queens Entire home/apt 250
## 23454 Queens Private room 60
## 23455 Brooklyn Entire home/apt 109
## 23456 Manhattan Entire home/apt 465
## 23457 Manhattan Private room 100
## 23458 Brooklyn Private room 40
## 23459 Brooklyn Private room 45
## 23460 Brooklyn Private room 85
## 23461 Staten Island Entire home/apt 85
## 23462 Brooklyn Entire home/apt 225
## 23463 Brooklyn Private room 65
## 23464 Brooklyn Private room 55
## 23465 Brooklyn Entire home/apt 59
## 23466 Brooklyn Entire home/apt 225
## 23467 Brooklyn Entire home/apt 200
## 23468 Manhattan Private room 200
## 23469 Queens Private room 55
## 23470 Brooklyn Entire home/apt 180
## 23471 Brooklyn Entire home/apt 115
## 23472 Brooklyn Entire home/apt 185
## 23473 Brooklyn Private room 50
## 23474 Manhattan Entire home/apt 218
## 23475 Queens Entire home/apt 99
## 23476 Brooklyn Private room 70
## 23477 Manhattan Private room 99
## 23478 Manhattan Private room 100
## 23479 Manhattan Entire home/apt 150
## 23480 Manhattan Private room 35
## 23481 Brooklyn Private room 75
## 23482 Brooklyn Entire home/apt 250
## 23483 Brooklyn Private room 78
## 23484 Manhattan Entire home/apt 250
## 23485 Manhattan Private room 117
## 23486 Manhattan Entire home/apt 179
## 23487 Manhattan Entire home/apt 1599
## 23488 Brooklyn Private room 49
## 23489 Manhattan Private room 85
## 23490 Manhattan Private room 80
## 23491 Manhattan Entire home/apt 350
## 23492 Manhattan Entire home/apt 100
## 23493 Manhattan Private room 125
## 23494 Queens Private room 65
## 23495 Manhattan Private room 80
## 23496 Brooklyn Entire home/apt 220
## 23497 Queens Entire home/apt 100
## 23498 Manhattan Entire home/apt 300
## 23499 Brooklyn Private room 40
## 23500 Manhattan Entire home/apt 389
## 23501 Brooklyn Private room 45
## 23502 Manhattan Entire home/apt 90
## 23503 Manhattan Private room 60
## 23504 Brooklyn Private room 49
## 23505 Manhattan Private room 51
## 23506 Manhattan Private room 125
## 23507 Brooklyn Private room 52
## 23508 Queens Entire home/apt 110
## 23509 Queens Private room 38
## 23510 Manhattan Private room 60
## 23511 Manhattan Private room 55
## 23512 Brooklyn Entire home/apt 119
## 23513 Brooklyn Entire home/apt 121
## 23514 Manhattan Private room 89
## 23515 Brooklyn Private room 60
## 23516 Brooklyn Private room 80
## 23517 Queens Private room 60
## 23518 Manhattan Private room 90
## 23519 Queens Entire home/apt 115
## 23520 Bronx Entire home/apt 350
## 23521 Brooklyn Private room 85
## 23522 Queens Private room 55
## 23523 Queens Private room 61
## 23524 Manhattan Private room 95
## 23525 Manhattan Private room 35
## 23526 Manhattan Entire home/apt 150
## 23527 Manhattan Entire home/apt 350
## 23528 Brooklyn Private room 48
## 23529 Manhattan Entire home/apt 165
## 23530 Brooklyn Private room 45
## 23531 Brooklyn Private room 200
## 23532 Manhattan Private room 75
## 23533 Manhattan Entire home/apt 279
## 23534 Brooklyn Entire home/apt 300
## 23535 Brooklyn Private room 400
## 23536 Brooklyn Entire home/apt 80
## 23537 Brooklyn Private room 125
## 23538 Bronx Entire home/apt 28
## 23539 Manhattan Entire home/apt 140
## 23540 Brooklyn Private room 101
## 23541 Brooklyn Private room 43
## 23542 Brooklyn Entire home/apt 424
## 23543 Manhattan Private room 80
## 23544 Brooklyn Entire home/apt 170
## 23545 Brooklyn Private room 60
## 23546 Queens Shared room 1000
## 23547 Brooklyn Entire home/apt 125
## 23548 Manhattan Entire home/apt 115
## 23549 Manhattan Private room 36
## 23550 Manhattan Private room 49
## 23551 Manhattan Entire home/apt 108
## 23552 Manhattan Entire home/apt 578
## 23553 Brooklyn Private room 40
## 23554 Queens Private room 50
## 23555 Manhattan Private room 55
## 23556 Brooklyn Private room 46
## 23557 Manhattan Private room 150
## 23558 Queens Private room 39
## 23559 Brooklyn Entire home/apt 100
## 23560 Manhattan Private room 36
## 23561 Manhattan Entire home/apt 113
## 23562 Manhattan Entire home/apt 300
## 23563 Brooklyn Private room 50
## 23564 Manhattan Entire home/apt 115
## 23565 Manhattan Private room 100
## 23566 Manhattan Private room 99
## 23567 Brooklyn Private room 120
## 23568 Manhattan Entire home/apt 175
## 23569 Manhattan Entire home/apt 125
## 23570 Manhattan Entire home/apt 100
## 23571 Manhattan Private room 53
## 23572 Brooklyn Shared room 29
## 23573 Brooklyn Private room 70
## 23574 Manhattan Private room 52
## 23575 Brooklyn Private room 105
## 23576 Manhattan Shared room 29
## 23577 Brooklyn Private room 110
## 23578 Brooklyn Private room 80
## 23579 Brooklyn Private room 31
## 23580 Manhattan Shared room 320
## 23581 Manhattan Private room 40
## 23582 Brooklyn Private room 70
## 23583 Queens Entire home/apt 104
## 23584 Bronx Entire home/apt 100
## 23585 Manhattan Entire home/apt 1200
## 23586 Brooklyn Private room 37
## 23587 Queens Private room 40
## 23588 Manhattan Entire home/apt 207
## 23589 Brooklyn Entire home/apt 150
## 23590 Brooklyn Entire home/apt 180
## 23591 Brooklyn Private room 90
## 23592 Brooklyn Private room 36
## 23593 Brooklyn Private room 80
## 23594 Manhattan Private room 145
## 23595 Brooklyn Private room 33
## 23596 Manhattan Private room 68
## 23597 Brooklyn Entire home/apt 70
## 23598 Brooklyn Private room 67
## 23599 Manhattan Entire home/apt 175
## 23600 Manhattan Entire home/apt 100
## 23601 Manhattan Entire home/apt 180
## 23602 Manhattan Private room 200
## 23603 Manhattan Entire home/apt 160
## 23604 Brooklyn Entire home/apt 130
## 23605 Brooklyn Entire home/apt 70
## 23606 Brooklyn Entire home/apt 300
## 23607 Brooklyn Private room 45
## 23608 Brooklyn Private room 69
## 23609 Manhattan Entire home/apt 290
## 23610 Brooklyn Private room 99
## 23611 Manhattan Entire home/apt 149
## 23612 Brooklyn Entire home/apt 100
## 23613 Brooklyn Entire home/apt 100
## 23614 Brooklyn Entire home/apt 95
## 23615 Brooklyn Entire home/apt 200
## 23616 Manhattan Private room 70
## 23617 Brooklyn Private room 75
## 23618 Queens Private room 49
## 23619 Brooklyn Private room 89
## 23620 Queens Private room 74
## 23621 Brooklyn Private room 65
## 23622 Bronx Entire home/apt 100
## 23623 Manhattan Private room 50
## 23624 Brooklyn Entire home/apt 79
## 23625 Manhattan Private room 950
## 23626 Manhattan Entire home/apt 350
## 23627 Brooklyn Entire home/apt 188
## 23628 Queens Private room 50
## 23629 Manhattan Entire home/apt 475
## 23630 Brooklyn Private room 105
## 23631 Manhattan Entire home/apt 225
## 23632 Manhattan Private room 40
## 23633 Brooklyn Entire home/apt 185
## 23634 Manhattan Private room 90
## 23635 Manhattan Entire home/apt 250
## 23636 Manhattan Private room 119
## 23637 Manhattan Entire home/apt 150
## 23638 Manhattan Entire home/apt 275
## 23639 Manhattan Entire home/apt 125
## 23640 Bronx Private room 60
## 23641 Brooklyn Private room 42
## 23642 Manhattan Entire home/apt 130
## 23643 Brooklyn Entire home/apt 66
## 23644 Brooklyn Private room 109
## 23645 Brooklyn Private room 90
## 23646 Brooklyn Private room 89
## 23647 Brooklyn Entire home/apt 600
## 23648 Manhattan Entire home/apt 250
## 23649 Manhattan Entire home/apt 278
## 23650 Manhattan Entire home/apt 800
## 23651 Queens Private room 70
## 23652 Manhattan Entire home/apt 275
## 23653 Manhattan Entire home/apt 195
## 23654 Brooklyn Private room 50
## 23655 Brooklyn Private room 45
## 23656 Brooklyn Private room 62
## 23657 Manhattan Entire home/apt 150
## 23658 Manhattan Entire home/apt 98
## 23659 Manhattan Entire home/apt 236
## 23660 Brooklyn Entire home/apt 250
## 23661 Manhattan Entire home/apt 200
## 23662 Brooklyn Entire home/apt 195
## 23663 Queens Entire home/apt 90
## 23664 Brooklyn Private room 128
## 23665 Brooklyn Private room 44
## 23666 Manhattan Private room 75
## 23667 Manhattan Private room 100
## 23668 Manhattan Entire home/apt 90
## 23669 Manhattan Private room 60
## 23670 Manhattan Entire home/apt 250
## 23671 Manhattan Entire home/apt 349
## 23672 Manhattan Entire home/apt 101
## 23673 Brooklyn Private room 120
## 23674 Queens Entire home/apt 86
## 23675 Queens Shared room 30
## 23676 Queens Private room 40
## 23677 Manhattan Entire home/apt 106
## 23678 Queens Private room 40
## 23679 Queens Shared room 30
## 23680 Brooklyn Private room 52
## 23681 Brooklyn Entire home/apt 147
## 23682 Manhattan Private room 200
## 23683 Manhattan Shared room 70
## 23684 Brooklyn Private room 37
## 23685 Manhattan Entire home/apt 249
## 23686 Brooklyn Private room 70
## 23687 Manhattan Entire home/apt 225
## 23688 Manhattan Entire home/apt 135
## 23689 Brooklyn Entire home/apt 150
## 23690 Manhattan Private room 108
## 23691 Brooklyn Entire home/apt 225
## 23692 Queens Private room 59
## 23693 Brooklyn Entire home/apt 115
## 23694 Brooklyn Private room 35
## 23695 Manhattan Entire home/apt 1000
## 23696 Queens Shared room 55
## 23697 Manhattan Entire home/apt 280
## 23698 Brooklyn Entire home/apt 100
## 23699 Brooklyn Entire home/apt 55
## 23700 Manhattan Private room 70
## 23701 Brooklyn Entire home/apt 219
## 23702 Brooklyn Private room 45
## 23703 Manhattan Private room 40
## 23704 Manhattan Private room 60
## 23705 Brooklyn Entire home/apt 150
## 23706 Brooklyn Entire home/apt 150
## 23707 Brooklyn Shared room 50
## 23708 Brooklyn Entire home/apt 200
## 23709 Brooklyn Private room 119
## 23710 Manhattan Entire home/apt 280
## 23711 Manhattan Private room 160
## 23712 Manhattan Private room 60
## 23713 Manhattan Entire home/apt 125
## 23714 Manhattan Private room 37
## 23715 Manhattan Entire home/apt 98
## 23716 Manhattan Private room 128
## 23717 Manhattan Entire home/apt 100
## 23718 Queens Entire home/apt 120
## 23719 Manhattan Entire home/apt 90
## 23720 Brooklyn Entire home/apt 147
## 23721 Queens Private room 60
## 23722 Manhattan Private room 115
## 23723 Manhattan Entire home/apt 110
## 23724 Manhattan Private room 155
## 23725 Manhattan Entire home/apt 275
## 23726 Manhattan Private room 150
## 23727 Queens Entire home/apt 159
## 23728 Brooklyn Private room 200
## 23729 Manhattan Private room 135
## 23730 Brooklyn Private room 89
## 23731 Queens Private room 80
## 23732 Brooklyn Private room 60
## 23733 Brooklyn Private room 45
## 23734 Brooklyn Private room 60
## 23735 Manhattan Entire home/apt 99
## 23736 Manhattan Private room 120
## 23737 Manhattan Entire home/apt 219
## 23738 Manhattan Private room 65
## 23739 Brooklyn Entire home/apt 215
## 23740 Manhattan Entire home/apt 90
## 23741 Brooklyn Private room 51
## 23742 Brooklyn Entire home/apt 170
## 23743 Manhattan Private room 90
## 23744 Brooklyn Private room 50
## 23745 Brooklyn Private room 79
## 23746 Brooklyn Private room 39
## 23747 Brooklyn Private room 65
## 23748 Brooklyn Private room 80
## 23749 Brooklyn Private room 120
## 23750 Manhattan Private room 52
## 23751 Bronx Private room 70
## 23752 Manhattan Entire home/apt 120
## 23753 Manhattan Entire home/apt 315
## 23754 Brooklyn Entire home/apt 125
## 23755 Manhattan Entire home/apt 399
## 23756 Brooklyn Shared room 72
## 23757 Queens Entire home/apt 239
## 23758 Queens Entire home/apt 200
## 23759 Manhattan Entire home/apt 110
## 23760 Brooklyn Private room 80
## 23761 Manhattan Entire home/apt 118
## 23762 Brooklyn Private room 37
## 23763 Brooklyn Private room 77
## 23764 Manhattan Private room 100
## 23765 Manhattan Entire home/apt 95
## 23766 Brooklyn Entire home/apt 180
## 23767 Queens Private room 55
## 23768 Manhattan Private room 76
## 23769 Brooklyn Private room 60
## 23770 Brooklyn Entire home/apt 240
## 23771 Manhattan Entire home/apt 287
## 23772 Manhattan Private room 100
## 23773 Queens Shared room 27
## 23774 Queens Shared room 26
## 23775 Manhattan Entire home/apt 290
## 23776 Queens Private room 85
## 23777 Queens Private room 69
## 23778 Manhattan Entire home/apt 196
## 23779 Brooklyn Entire home/apt 154
## 23780 Brooklyn Entire home/apt 113
## 23781 Manhattan Entire home/apt 250
## 23782 Queens Private room 45
## 23783 Manhattan Private room 70
## 23784 Queens Private room 70
## 23785 Brooklyn Private room 100
## 23786 Manhattan Entire home/apt 102
## 23787 Brooklyn Entire home/apt 350
## 23788 Queens Private room 70
## 23789 Brooklyn Entire home/apt 136
## 23790 Manhattan Private room 100
## 23791 Brooklyn Private room 80
## 23792 Manhattan Private room 115
## 23793 Brooklyn Entire home/apt 160
## 23794 Brooklyn Entire home/apt 130
## 23795 Manhattan Entire home/apt 148
## 23796 Brooklyn Private room 110
## 23797 Brooklyn Private room 87
## 23798 Manhattan Entire home/apt 72
## 23799 Manhattan Private room 90
## 23800 Manhattan Private room 120
## 23801 Brooklyn Entire home/apt 450
## 23802 Brooklyn Entire home/apt 84
## 23803 Manhattan Private room 75
## 23804 Manhattan Private room 110
## 23805 Brooklyn Entire home/apt 148
## 23806 Manhattan Entire home/apt 225
## 23807 Manhattan Entire home/apt 122
## 23808 Manhattan Entire home/apt 190
## 23809 Manhattan Entire home/apt 120
## 23810 Brooklyn Entire home/apt 200
## 23811 Queens Entire home/apt 80
## 23812 Brooklyn Entire home/apt 149
## 23813 Manhattan Private room 60
## 23814 Brooklyn Entire home/apt 650
## 23815 Manhattan Entire home/apt 175
## 23816 Brooklyn Private room 55
## 23817 Manhattan Private room 77
## 23818 Brooklyn Private room 55
## 23819 Brooklyn Private room 50
## 23820 Manhattan Entire home/apt 350
## 23821 Manhattan Private room 50
## 23822 Queens Private room 100
## 23823 Manhattan Entire home/apt 319
## 23824 Manhattan Private room 46
## 23825 Manhattan Entire home/apt 120
## 23826 Brooklyn Entire home/apt 150
## 23827 Manhattan Entire home/apt 250
## 23828 Staten Island Private room 200
## 23829 Manhattan Entire home/apt 400
## 23830 Brooklyn Private room 125
## 23831 Brooklyn Entire home/apt 125
## 23832 Manhattan Entire home/apt 180
## 23833 Brooklyn Entire home/apt 90
## 23834 Manhattan Entire home/apt 200
## 23835 Queens Entire home/apt 100
## 23836 Brooklyn Private room 70
## 23837 Queens Entire home/apt 100
## 23838 Queens Entire home/apt 199
## 23839 Manhattan Private room 120
## 23840 Brooklyn Private room 60
## 23841 Brooklyn Entire home/apt 199
## 23842 Brooklyn Entire home/apt 130
## 23843 Brooklyn Private room 60
## 23844 Queens Private room 69
## 23845 Manhattan Private room 30
## 23846 Brooklyn Entire home/apt 350
## 23847 Brooklyn Private room 125
## 23848 Brooklyn Entire home/apt 93
## 23849 Manhattan Entire home/apt 150
## 23850 Brooklyn Private room 60
## 23851 Manhattan Private room 180
## 23852 Queens Private room 116
## 23853 Brooklyn Entire home/apt 225
## 23854 Manhattan Entire home/apt 183
## 23855 Queens Private room 40
## 23856 Brooklyn Entire home/apt 124
## 23857 Manhattan Entire home/apt 140
## 23858 Manhattan Entire home/apt 84
## 23859 Brooklyn Entire home/apt 149
## 23860 Queens Entire home/apt 130
## 23861 Manhattan Entire home/apt 125
## 23862 Brooklyn Entire home/apt 63
## 23863 Brooklyn Entire home/apt 85
## 23864 Brooklyn Entire home/apt 425
## 23865 Brooklyn Private room 50
## 23866 Queens Entire home/apt 1500
## 23867 Manhattan Entire home/apt 215
## 23868 Bronx Private room 60
## 23869 Brooklyn Entire home/apt 200
## 23870 Brooklyn Entire home/apt 125
## 23871 Manhattan Entire home/apt 135
## 23872 Manhattan Entire home/apt 250
## 23873 Brooklyn Shared room 32
## 23874 Queens Private room 85
## 23875 Manhattan Entire home/apt 195
## 23876 Manhattan Entire home/apt 352
## 23877 Manhattan Entire home/apt 225
## 23878 Brooklyn Entire home/apt 60
## 23879 Brooklyn Private room 35
## 23880 Manhattan Private room 87
## 23881 Manhattan Entire home/apt 230
## 23882 Brooklyn Private room 60
## 23883 Queens Entire home/apt 90
## 23884 Queens Entire home/apt 274
## 23885 Manhattan Private room 69
## 23886 Brooklyn Private room 65
## 23887 Manhattan Entire home/apt 278
## 23888 Brooklyn Private room 60
## 23889 Manhattan Private room 79
## 23890 Brooklyn Private room 100
## 23891 Manhattan Entire home/apt 500
## 23892 Brooklyn Private room 100
## 23893 Manhattan Entire home/apt 210
## 23894 Manhattan Entire home/apt 180
## 23895 Queens Entire home/apt 165
## 23896 Brooklyn Entire home/apt 225
## 23897 Queens Entire home/apt 150
## 23898 Brooklyn Entire home/apt 90
## 23899 Brooklyn Entire home/apt 77
## 23900 Manhattan Entire home/apt 145
## 23901 Manhattan Private room 60
## 23902 Manhattan Entire home/apt 250
## 23903 Manhattan Private room 90
## 23904 Manhattan Entire home/apt 220
## 23905 Brooklyn Private room 46
## 23906 Brooklyn Private room 55
## 23907 Brooklyn Entire home/apt 250
## 23908 Brooklyn Private room 55
## 23909 Manhattan Entire home/apt 225
## 23910 Manhattan Entire home/apt 120
## 23911 Brooklyn Entire home/apt 89
## 23912 Bronx Private room 40
## 23913 Manhattan Private room 69
## 23914 Manhattan Shared room 55
## 23915 Manhattan Entire home/apt 152
## 23916 Manhattan Entire home/apt 57
## 23917 Queens Entire home/apt 57
## 23918 Brooklyn Shared room 37
## 23919 Brooklyn Shared room 37
## 23920 Brooklyn Private room 42
## 23921 Manhattan Entire home/apt 100
## 23922 Brooklyn Entire home/apt 226
## 23923 Manhattan Private room 60
## 23924 Brooklyn Entire home/apt 300
## 23925 Brooklyn Private room 85
## 23926 Manhattan Shared room 165
## 23927 Manhattan Entire home/apt 390
## 23928 Brooklyn Private room 80
## 23929 Brooklyn Entire home/apt 150
## 23930 Brooklyn Entire home/apt 225
## 23931 Manhattan Private room 69
## 23932 Manhattan Private room 61
## 23933 Brooklyn Entire home/apt 100
## 23934 Brooklyn Entire home/apt 399
## 23935 Brooklyn Entire home/apt 90
## 23936 Brooklyn Private room 40
## 23937 Brooklyn Private room 60
## 23938 Manhattan Entire home/apt 165
## 23939 Brooklyn Entire home/apt 212
## 23940 Manhattan Entire home/apt 200
## 23941 Manhattan Entire home/apt 180
## 23942 Manhattan Private room 115
## 23943 Manhattan Entire home/apt 185
## 23944 Brooklyn Entire home/apt 130
## 23945 Manhattan Entire home/apt 165
## 23946 Brooklyn Entire home/apt 160
## 23947 Brooklyn Entire home/apt 185
## 23948 Manhattan Entire home/apt 170
## 23949 Brooklyn Private room 50
## 23950 Brooklyn Entire home/apt 250
## 23951 Manhattan Entire home/apt 150
## 23952 Manhattan Entire home/apt 90
## 23953 Manhattan Entire home/apt 70
## 23954 Manhattan Entire home/apt 210
## 23955 Manhattan Private room 113
## 23956 Brooklyn Entire home/apt 97
## 23957 Manhattan Private room 85
## 23958 Brooklyn Entire home/apt 550
## 23959 Brooklyn Private room 85
## 23960 Manhattan Entire home/apt 260
## 23961 Manhattan Private room 100
## 23962 Bronx Private room 37
## 23963 Brooklyn Private room 85
## 23964 Queens Entire home/apt 85
## 23965 Manhattan Entire home/apt 100
## 23966 Brooklyn Private room 65
## 23967 Brooklyn Private room 90
## 23968 Queens Entire home/apt 115
## 23969 Brooklyn Entire home/apt 160
## 23970 Manhattan Entire home/apt 325
## 23971 Brooklyn Private room 65
## 23972 Manhattan Private room 80
## 23973 Brooklyn Private room 80
## 23974 Brooklyn Entire home/apt 90
## 23975 Brooklyn Entire home/apt 150
## 23976 Brooklyn Private room 125
## 23977 Brooklyn Private room 65
## 23978 Manhattan Entire home/apt 150
## 23979 Manhattan Private room 200
## 23980 Brooklyn Private room 80
## 23981 Brooklyn Entire home/apt 125
## 23982 Brooklyn Entire home/apt 139
## 23983 Manhattan Private room 43
## 23984 Brooklyn Private room 45
## 23985 Manhattan Entire home/apt 198
## 23986 Brooklyn Private room 40
## 23987 Manhattan Private room 50
## 23988 Brooklyn Private room 60
## 23989 Manhattan Private room 75
## 23990 Brooklyn Private room 35
## 23991 Brooklyn Entire home/apt 162
## 23992 Manhattan Private room 50
## 23993 Manhattan Private room 49
## 23994 Brooklyn Private room 75
## 23995 Queens Entire home/apt 50
## 23996 Brooklyn Private room 130
## 23997 Brooklyn Private room 75
## 23998 Manhattan Private room 60
## 23999 Manhattan Entire home/apt 125
## 24000 Manhattan Entire home/apt 80
## 24001 Queens Entire home/apt 120
## 24002 Brooklyn Entire home/apt 150
## 24003 Brooklyn Private room 37
## 24004 Brooklyn Entire home/apt 250
## 24005 Brooklyn Entire home/apt 130
## 24006 Manhattan Private room 69
## 24007 Manhattan Private room 75
## 24008 Brooklyn Private room 100
## 24009 Bronx Entire home/apt 120
## 24010 Queens Private room 40
## 24011 Manhattan Entire home/apt 300
## 24012 Queens Private room 70
## 24013 Brooklyn Entire home/apt 300
## 24014 Brooklyn Entire home/apt 160
## 24015 Queens Private room 60
## 24016 Queens Private room 70
## 24017 Manhattan Private room 55
## 24018 Manhattan Private room 94
## 24019 Brooklyn Entire home/apt 105
## 24020 Manhattan Private room 50
## 24021 Brooklyn Entire home/apt 87
## 24022 Manhattan Entire home/apt 299
## 24023 Manhattan Private room 100
## 24024 Queens Private room 44
## 24025 Manhattan Private room 52
## 24026 Queens Private room 80
## 24027 Brooklyn Private room 55
## 24028 Brooklyn Entire home/apt 81
## 24029 Manhattan Entire home/apt 185
## 24030 Brooklyn Private room 60
## 24031 Brooklyn Private room 37
## 24032 Brooklyn Private room 70
## 24033 Brooklyn Private room 69
## 24034 Manhattan Entire home/apt 191
## 24035 Manhattan Private room 80
## 24036 Manhattan Entire home/apt 250
## 24037 Manhattan Private room 70
## 24038 Manhattan Private room 45
## 24039 Brooklyn Private room 33
## 24040 Manhattan Entire home/apt 200
## 24041 Manhattan Entire home/apt 135
## 24042 Brooklyn Private room 49
## 24043 Manhattan Entire home/apt 190
## 24044 Queens Entire home/apt 80
## 24045 Brooklyn Private room 225
## 24046 Brooklyn Private room 120
## 24047 Manhattan Private room 130
## 24048 Queens Private room 75
## 24049 Brooklyn Entire home/apt 157
## 24050 Queens Private room 120
## 24051 Manhattan Private room 72
## 24052 Brooklyn Entire home/apt 150
## 24053 Brooklyn Private room 110
## 24054 Queens Entire home/apt 70
## 24055 Manhattan Entire home/apt 179
## 24056 Queens Private room 45
## 24057 Brooklyn Entire home/apt 95
## 24058 Manhattan Private room 120
## 24059 Brooklyn Entire home/apt 450
## 24060 Manhattan Entire home/apt 140
## 24061 Manhattan Private room 89
## 24062 Queens Entire home/apt 88
## 24063 Brooklyn Private room 55
## 24064 Manhattan Private room 50
## 24065 Manhattan Private room 95
## 24066 Brooklyn Entire home/apt 124
## 24067 Manhattan Entire home/apt 180
## 24068 Brooklyn Entire home/apt 165
## 24069 Brooklyn Entire home/apt 102
## 24070 Manhattan Private room 100
## 24071 Manhattan Private room 88
## 24072 Manhattan Entire home/apt 200
## 24073 Manhattan Entire home/apt 127
## 24074 Brooklyn Entire home/apt 133
## 24075 Brooklyn Private room 49
## 24076 Manhattan Private room 35
## 24077 Brooklyn Private room 69
## 24078 Brooklyn Entire home/apt 250
## 24079 Brooklyn Private room 35
## 24080 Manhattan Entire home/apt 375
## 24081 Manhattan Entire home/apt 135
## 24082 Manhattan Entire home/apt 175
## 24083 Manhattan Entire home/apt 175
## 24084 Brooklyn Private room 60
## 24085 Manhattan Entire home/apt 125
## 24086 Manhattan Private room 140
## 24087 Brooklyn Private room 80
## 24088 Brooklyn Entire home/apt 160
## 24089 Brooklyn Private room 70
## 24090 Manhattan Entire home/apt 145
## 24091 Manhattan Entire home/apt 225
## 24092 Brooklyn Private room 68
## 24093 Brooklyn Private room 90
## 24094 Manhattan Entire home/apt 102
## 24095 Brooklyn Shared room 60
## 24096 Manhattan Entire home/apt 400
## 24097 Queens Private room 49
## 24098 Brooklyn Private room 70
## 24099 Manhattan Entire home/apt 150
## 24100 Manhattan Entire home/apt 119
## 24101 Manhattan Shared room 10
## 24102 Brooklyn Entire home/apt 375
## 24103 Manhattan Entire home/apt 175
## 24104 Manhattan Entire home/apt 132
## 24105 Manhattan Entire home/apt 200
## 24106 Manhattan Entire home/apt 150
## 24107 Brooklyn Private room 45
## 24108 Queens Entire home/apt 150
## 24109 Brooklyn Private room 55
## 24110 Brooklyn Private room 60
## 24111 Manhattan Entire home/apt 250
## 24112 Brooklyn Private room 36
## 24113 Queens Private room 59
## 24114 Brooklyn Private room 39
## 24115 Manhattan Entire home/apt 130
## 24116 Manhattan Entire home/apt 99
## 24117 Bronx Private room 50
## 24118 Brooklyn Entire home/apt 155
## 24119 Queens Private room 166
## 24120 Queens Private room 40
## 24121 Queens Private room 135
## 24122 Brooklyn Private room 40
## 24123 Brooklyn Entire home/apt 140
## 24124 Manhattan Entire home/apt 120
## 24125 Brooklyn Shared room 37
## 24126 Brooklyn Private room 50
## 24127 Manhattan Private room 103
## 24128 Manhattan Private room 125
## 24129 Queens Entire home/apt 120
## 24130 Brooklyn Private room 65
## 24131 Queens Entire home/apt 79
## 24132 Manhattan Entire home/apt 189
## 24133 Queens Entire home/apt 250
## 24134 Manhattan Private room 100
## 24135 Manhattan Entire home/apt 105
## 24136 Manhattan Private room 36
## 24137 Brooklyn Private room 45
## 24138 Brooklyn Private room 70
## 24139 Manhattan Private room 99
## 24140 Brooklyn Entire home/apt 95
## 24141 Manhattan Private room 48
## 24142 Brooklyn Entire home/apt 126
## 24143 Manhattan Private room 135
## 24144 Manhattan Private room 100
## 24145 Brooklyn Entire home/apt 126
## 24146 Manhattan Entire home/apt 150
## 24147 Manhattan Private room 49
## 24148 Brooklyn Entire home/apt 88
## 24149 Brooklyn Entire home/apt 139
## 24150 Manhattan Private room 65
## 24151 Brooklyn Private room 40
## 24152 Manhattan Entire home/apt 250
## 24153 Queens Private room 93
## 24154 Brooklyn Entire home/apt 125
## 24155 Queens Entire home/apt 85
## 24156 Brooklyn Entire home/apt 210
## 24157 Manhattan Private room 60
## 24158 Manhattan Private room 100
## 24159 Queens Entire home/apt 278
## 24160 Queens Private room 75
## 24161 Bronx Entire home/apt 85
## 24162 Queens Private room 99
## 24163 Brooklyn Private room 35
## 24164 Brooklyn Private room 60
## 24165 Brooklyn Entire home/apt 225
## 24166 Brooklyn Entire home/apt 112
## 24167 Manhattan Entire home/apt 250
## 24168 Brooklyn Entire home/apt 60
## 24169 Brooklyn Private room 62
## 24170 Queens Private room 99
## 24171 Manhattan Entire home/apt 250
## 24172 Brooklyn Entire home/apt 150
## 24173 Brooklyn Entire home/apt 180
## 24174 Manhattan Entire home/apt 265
## 24175 Manhattan Entire home/apt 173
## 24176 Queens Private room 60
## 24177 Manhattan Private room 85
## 24178 Manhattan Entire home/apt 150
## 24179 Manhattan Entire home/apt 250
## 24180 Manhattan Private room 28
## 24181 Queens Private room 60
## 24182 Brooklyn Private room 25
## 24183 Brooklyn Entire home/apt 256
## 24184 Manhattan Private room 70
## 24185 Brooklyn Entire home/apt 70
## 24186 Brooklyn Entire home/apt 105
## 24187 Manhattan Private room 65
## 24188 Brooklyn Private room 40
## 24189 Queens Entire home/apt 85
## 24190 Manhattan Private room 72
## 24191 Manhattan Shared room 40
## 24192 Brooklyn Private room 80
## 24193 Manhattan Entire home/apt 230
## 24194 Manhattan Entire home/apt 119
## 24195 Brooklyn Entire home/apt 389
## 24196 Manhattan Entire home/apt 180
## 24197 Brooklyn Private room 40
## 24198 Manhattan Entire home/apt 300
## 24199 Manhattan Private room 135
## 24200 Manhattan Entire home/apt 139
## 24201 Manhattan Shared room 50
## 24202 Manhattan Private room 54
## 24203 Manhattan Private room 38
## 24204 Manhattan Private room 99
## 24205 Manhattan Private room 99
## 24206 Manhattan Private room 82
## 24207 Queens Entire home/apt 65
## 24208 Brooklyn Private room 65
## 24209 Manhattan Entire home/apt 225
## 24210 Brooklyn Private room 75
## 24211 Brooklyn Entire home/apt 120
## 24212 Manhattan Private room 165
## 24213 Manhattan Private room 149
## 24214 Brooklyn Private room 52
## 24215 Queens Entire home/apt 248
## 24216 Brooklyn Private room 44
## 24217 Brooklyn Entire home/apt 150
## 24218 Brooklyn Private room 89
## 24219 Manhattan Entire home/apt 350
## 24220 Queens Private room 900
## 24221 Manhattan Entire home/apt 275
## 24222 Brooklyn Entire home/apt 200
## 24223 Brooklyn Entire home/apt 115
## 24224 Brooklyn Private room 100
## 24225 Staten Island Entire home/apt 91
## 24226 Manhattan Entire home/apt 200
## 24227 Brooklyn Private room 39
## 24228 Brooklyn Entire home/apt 275
## 24229 Brooklyn Private room 70
## 24230 Brooklyn Private room 50
## 24231 Brooklyn Private room 79
## 24232 Brooklyn Private room 80
## 24233 Bronx Entire home/apt 127
## 24234 Manhattan Entire home/apt 110
## 24235 Brooklyn Entire home/apt 167
## 24236 Manhattan Entire home/apt 145
## 24237 Brooklyn Entire home/apt 174
## 24238 Queens Entire home/apt 119
## 24239 Bronx Private room 62
## 24240 Brooklyn Private room 65
## 24241 Queens Private room 60
## 24242 Brooklyn Private room 50
## 24243 Brooklyn Entire home/apt 139
## 24244 Brooklyn Entire home/apt 200
## 24245 Manhattan Entire home/apt 130
## 24246 Brooklyn Private room 43
## 24247 Brooklyn Entire home/apt 80
## 24248 Manhattan Entire home/apt 180
## 24249 Brooklyn Private room 54
## 24250 Manhattan Private room 75
## 24251 Manhattan Entire home/apt 176
## 24252 Brooklyn Private room 49
## 24253 Manhattan Entire home/apt 200
## 24254 Brooklyn Entire home/apt 95
## 24255 Manhattan Private room 80
## 24256 Brooklyn Private room 63
## 24257 Brooklyn Shared room 32
## 24258 Brooklyn Shared room 32
## 24259 Queens Entire home/apt 275
## 24260 Brooklyn Entire home/apt 70
## 24261 Manhattan Private room 70
## 24262 Manhattan Entire home/apt 400
## 24263 Manhattan Entire home/apt 100
## 24264 Manhattan Entire home/apt 125
## 24265 Brooklyn Private room 100
## 24266 Manhattan Entire home/apt 220
## 24267 Brooklyn Private room 36
## 24268 Queens Private room 100
## 24269 Manhattan Entire home/apt 175
## 24270 Queens Entire home/apt 93
## 24271 Queens Private room 150
## 24272 Brooklyn Entire home/apt 85
## 24273 Manhattan Entire home/apt 499
## 24274 Manhattan Private room 60
## 24275 Manhattan Entire home/apt 175
## 24276 Manhattan Private room 129
## 24277 Brooklyn Entire home/apt 225
## 24278 Manhattan Entire home/apt 68
## 24279 Manhattan Entire home/apt 250
## 24280 Queens Entire home/apt 49
## 24281 Brooklyn Private room 77
## 24282 Brooklyn Entire home/apt 400
## 24283 Manhattan Private room 80
## 24284 Brooklyn Private room 340
## 24285 Brooklyn Entire home/apt 135
## 24286 Manhattan Entire home/apt 220
## 24287 Manhattan Entire home/apt 2500
## 24288 Manhattan Private room 60
## 24289 Manhattan Private room 300
## 24290 Queens Private room 100
## 24291 Manhattan Private room 50
## 24292 Manhattan Entire home/apt 175
## 24293 Manhattan Private room 140
## 24294 Brooklyn Private room 90
## 24295 Queens Private room 54
## 24296 Brooklyn Entire home/apt 91
## 24297 Brooklyn Private room 99
## 24298 Brooklyn Entire home/apt 200
## 24299 Manhattan Private room 70
## 24300 Manhattan Private room 77
## 24301 Manhattan Entire home/apt 100
## 24302 Brooklyn Private room 67
## 24303 Brooklyn Private room 70
## 24304 Brooklyn Entire home/apt 250
## 24305 Manhattan Entire home/apt 175
## 24306 Manhattan Private room 106
## 24307 Brooklyn Private room 49
## 24308 Brooklyn Entire home/apt 200
## 24309 Brooklyn Entire home/apt 100
## 24310 Manhattan Entire home/apt 150
## 24311 Manhattan Entire home/apt 140
## 24312 Brooklyn Entire home/apt 125
## 24313 Brooklyn Private room 45
## 24314 Brooklyn Private room 58
## 24315 Manhattan Private room 94
## 24316 Queens Private room 75
## 24317 Brooklyn Entire home/apt 95
## 24318 Manhattan Private room 79
## 24319 Manhattan Entire home/apt 145
## 24320 Brooklyn Private room 50
## 24321 Queens Private room 40
## 24322 Brooklyn Shared room 34
## 24323 Brooklyn Private room 45
## 24324 Brooklyn Private room 32
## 24325 Manhattan Entire home/apt 190
## 24326 Queens Entire home/apt 138
## 24327 Bronx Private room 75
## 24328 Queens Private room 110
## 24329 Brooklyn Entire home/apt 264
## 24330 Manhattan Private room 120
## 24331 Queens Entire home/apt 298
## 24332 Queens Entire home/apt 150
## 24333 Queens Entire home/apt 398
## 24334 Queens Entire home/apt 155
## 24335 Manhattan Private room 157
## 24336 Manhattan Entire home/apt 120
## 24337 Bronx Private room 29
## 24338 Manhattan Entire home/apt 160
## 24339 Queens Entire home/apt 150
## 24340 Brooklyn Entire home/apt 100
## 24341 Manhattan Entire home/apt 150
## 24342 Manhattan Private room 160
## 24343 Brooklyn Private room 45
## 24344 Brooklyn Private room 85
## 24345 Manhattan Private room 85
## 24346 Brooklyn Entire home/apt 100
## 24347 Manhattan Private room 45
## 24348 Manhattan Entire home/apt 250
## 24349 Manhattan Private room 165
## 24350 Brooklyn Private room 64
## 24351 Queens Private room 60
## 24352 Manhattan Private room 101
## 24353 Manhattan Private room 50
## 24354 Brooklyn Private room 55
## 24355 Brooklyn Private room 100
## 24356 Brooklyn Entire home/apt 200
## 24357 Brooklyn Private room 53
## 24358 Brooklyn Private room 44
## 24359 Manhattan Private room 90
## 24360 Manhattan Private room 105
## 24361 Brooklyn Entire home/apt 215
## 24362 Brooklyn Entire home/apt 150
## 24363 Manhattan Entire home/apt 150
## 24364 Queens Entire home/apt 99
## 24365 Manhattan Entire home/apt 325
## 24366 Manhattan Entire home/apt 155
## 24367 Brooklyn Entire home/apt 100
## 24368 Brooklyn Entire home/apt 115
## 24369 Brooklyn Shared room 59
## 24370 Brooklyn Entire home/apt 275
## 24371 Brooklyn Entire home/apt 110
## 24372 Queens Entire home/apt 150
## 24373 Manhattan Private room 75
## 24374 Manhattan Private room 100
## 24375 Manhattan Private room 175
## 24376 Brooklyn Private room 90
## 24377 Brooklyn Entire home/apt 250
## 24378 Queens Entire home/apt 150
## 24379 Manhattan Entire home/apt 148
## 24380 Brooklyn Entire home/apt 100
## 24381 Queens Entire home/apt 188
## 24382 Brooklyn Private room 43
## 24383 Manhattan Private room 110
## 24384 Manhattan Entire home/apt 200
## 24385 Manhattan Entire home/apt 200
## 24386 Manhattan Private room 120
## 24387 Brooklyn Private room 51
## 24388 Brooklyn Private room 42
## 24389 Brooklyn Private room 60
## 24390 Manhattan Shared room 250
## 24391 Staten Island Private room 40
## 24392 Queens Entire home/apt 140
## 24393 Manhattan Entire home/apt 116
## 24394 Manhattan Entire home/apt 215
## 24395 Brooklyn Entire home/apt 181
## 24396 Manhattan Private room 70
## 24397 Brooklyn Entire home/apt 169
## 24398 Queens Entire home/apt 105
## 24399 Manhattan Private room 55
## 24400 Manhattan Entire home/apt 163
## 24401 Queens Private room 75
## 24402 Brooklyn Entire home/apt 225
## 24403 Manhattan Private room 110
## 24404 Brooklyn Private room 29
## 24405 Brooklyn Private room 55
## 24406 Manhattan Entire home/apt 102
## 24407 Manhattan Entire home/apt 130
## 24408 Brooklyn Entire home/apt 350
## 24409 Brooklyn Private room 53
## 24410 Manhattan Private room 69
## 24411 Manhattan Entire home/apt 130
## 24412 Bronx Entire home/apt 140
## 24413 Brooklyn Entire home/apt 84
## 24414 Brooklyn Entire home/apt 145
## 24415 Bronx Entire home/apt 100
## 24416 Queens Private room 125
## 24417 Manhattan Private room 125
## 24418 Queens Entire home/apt 60
## 24419 Brooklyn Private room 88
## 24420 Bronx Private room 39
## 24421 Brooklyn Entire home/apt 48
## 24422 Queens Private room 60
## 24423 Manhattan Entire home/apt 75
## 24424 Brooklyn Private room 55
## 24425 Brooklyn Private room 51
## 24426 Brooklyn Private room 54
## 24427 Brooklyn Private room 52
## 24428 Manhattan Entire home/apt 117
## 24429 Brooklyn Private room 62
## 24430 Brooklyn Private room 63
## 24431 Brooklyn Private room 120
## 24432 Queens Private room 45
## 24433 Brooklyn Private room 52
## 24434 Manhattan Private room 42
## 24435 Brooklyn Entire home/apt 175
## 24436 Queens Entire home/apt 142
## 24437 Manhattan Private room 80
## 24438 Brooklyn Private room 42
## 24439 Brooklyn Private room 90
## 24440 Brooklyn Private room 50
## 24441 Brooklyn Private room 52
## 24442 Manhattan Entire home/apt 350
## 24443 Queens Entire home/apt 125
## 24444 Manhattan Private room 105
## 24445 Brooklyn Entire home/apt 100
## 24446 Brooklyn Private room 31
## 24447 Brooklyn Private room 45
## 24448 Brooklyn Private room 50
## 24449 Brooklyn Private room 60
## 24450 Manhattan Private room 80
## 24451 Manhattan Entire home/apt 180
## 24452 Brooklyn Private room 40
## 24453 Manhattan Entire home/apt 550
## 24454 Bronx Shared room 70
## 24455 Brooklyn Private room 60
## 24456 Brooklyn Private room 55
## 24457 Brooklyn Private room 40
## 24458 Brooklyn Entire home/apt 99
## 24459 Manhattan Private room 125
## 24460 Staten Island Private room 34
## 24461 Manhattan Entire home/apt 100
## 24462 Manhattan Private room 115
## 24463 Manhattan Entire home/apt 170
## 24464 Manhattan Entire home/apt 200
## 24465 Manhattan Entire home/apt 175
## 24466 Brooklyn Entire home/apt 100
## 24467 Brooklyn Private room 50
## 24468 Manhattan Entire home/apt 220
## 24469 Brooklyn Private room 50
## 24470 Brooklyn Entire home/apt 275
## 24471 Brooklyn Entire home/apt 200
## 24472 Brooklyn Private room 115
## 24473 Brooklyn Private room 60
## 24474 Brooklyn Private room 54
## 24475 Brooklyn Private room 55
## 24476 Brooklyn Private room 44
## 24477 Brooklyn Entire home/apt 70
## 24478 Bronx Private room 2500
## 24479 Brooklyn Entire home/apt 135
## 24480 Manhattan Entire home/apt 138
## 24481 Manhattan Private room 115
## 24482 Queens Private room 70
## 24483 Manhattan Entire home/apt 150
## 24484 Queens Entire home/apt 150
## 24485 Brooklyn Entire home/apt 170
## 24486 Manhattan Entire home/apt 140
## 24487 Manhattan Entire home/apt 400
## 24488 Queens Entire home/apt 95
## 24489 Brooklyn Private room 50
## 24490 Brooklyn Private room 65
## 24491 Manhattan Entire home/apt 102
## 24492 Brooklyn Entire home/apt 175
## 24493 Manhattan Entire home/apt 275
## 24494 Manhattan Entire home/apt 145
## 24495 Manhattan Entire home/apt 700
## 24496 Manhattan Entire home/apt 239
## 24497 Manhattan Entire home/apt 65
## 24498 Brooklyn Entire home/apt 250
## 24499 Brooklyn Private room 90
## 24500 Brooklyn Entire home/apt 85
## 24501 Brooklyn Entire home/apt 170
## 24502 Manhattan Private room 60
## 24503 Brooklyn Private room 50
## 24504 Brooklyn Private room 60
## 24505 Brooklyn Entire home/apt 152
## 24506 Queens Private room 62
## 24507 Brooklyn Private room 70
## 24508 Brooklyn Entire home/apt 99
## 24509 Manhattan Entire home/apt 150
## 24510 Brooklyn Entire home/apt 100
## 24511 Queens Private room 110
## 24512 Brooklyn Private room 60
## 24513 Manhattan Entire home/apt 700
## 24514 Manhattan Private room 100
## 24515 Manhattan Private room 73
## 24516 Manhattan Entire home/apt 100
## 24517 Bronx Entire home/apt 58
## 24518 Brooklyn Entire home/apt 200
## 24519 Brooklyn Private room 70
## 24520 Manhattan Entire home/apt 140
## 24521 Queens Private room 45
## 24522 Manhattan Entire home/apt 98
## 24523 Manhattan Entire home/apt 150
## 24524 Manhattan Entire home/apt 80
## 24525 Brooklyn Entire home/apt 299
## 24526 Manhattan Private room 60
## 24527 Manhattan Private room 51
## 24528 Queens Entire home/apt 140
## 24529 Manhattan Entire home/apt 150
## 24530 Queens Private room 150
## 24531 Brooklyn Private room 70
## 24532 Brooklyn Private room 40
## 24533 Brooklyn Private room 45
## 24534 Manhattan Private room 67
## 24535 Brooklyn Entire home/apt 290
## 24536 Brooklyn Entire home/apt 150
## 24537 Manhattan Entire home/apt 159
## 24538 Brooklyn Entire home/apt 77
## 24539 Manhattan Entire home/apt 175
## 24540 Brooklyn Entire home/apt 85
## 24541 Manhattan Entire home/apt 1000
## 24542 Manhattan Private room 60
## 24543 Manhattan Private room 45
## 24544 Brooklyn Private room 55
## 24545 Queens Private room 48
## 24546 Brooklyn Private room 100
## 24547 Manhattan Entire home/apt 200
## 24548 Manhattan Private room 56
## 24549 Bronx Private room 50
## 24550 Brooklyn Private room 114
## 24551 Brooklyn Entire home/apt 200
## 24552 Brooklyn Entire home/apt 125
## 24553 Queens Private room 60
## 24554 Brooklyn Private room 40
## 24555 Brooklyn Entire home/apt 105
## 24556 Manhattan Private room 70
## 24557 Queens Entire home/apt 108
## 24558 Brooklyn Private room 60
## 24559 Brooklyn Entire home/apt 130
## 24560 Queens Private room 30
## 24561 Queens Entire home/apt 135
## 24562 Manhattan Private room 300
## 24563 Manhattan Entire home/apt 79
## 24564 Brooklyn Entire home/apt 146
## 24565 Brooklyn Private room 57
## 24566 Manhattan Entire home/apt 250
## 24567 Manhattan Entire home/apt 150
## 24568 Bronx Entire home/apt 85
## 24569 Manhattan Private room 70
## 24570 Manhattan Private room 67
## 24571 Bronx Private room 35
## 24572 Brooklyn Entire home/apt 160
## 24573 Manhattan Private room 100
## 24574 Brooklyn Private room 47
## 24575 Manhattan Private room 46
## 24576 Brooklyn Private room 50
## 24577 Brooklyn Private room 65
## 24578 Manhattan Entire home/apt 115
## 24579 Manhattan Entire home/apt 135
## 24580 Brooklyn Private room 110
## 24581 Queens Private room 48
## 24582 Brooklyn Private room 45
## 24583 Brooklyn Entire home/apt 140
## 24584 Manhattan Private room 45
## 24585 Manhattan Private room 72
## 24586 Queens Entire home/apt 137
## 24587 Brooklyn Entire home/apt 170
## 24588 Brooklyn Private room 100
## 24589 Manhattan Entire home/apt 198
## 24590 Manhattan Private room 100
## 24591 Queens Shared room 33
## 24592 Manhattan Private room 70
## 24593 Brooklyn Private room 42
## 24594 Queens Entire home/apt 139
## 24595 Manhattan Entire home/apt 150
## 24596 Brooklyn Entire home/apt 180
## 24597 Queens Private room 60
## 24598 Manhattan Entire home/apt 275
## 24599 Manhattan Private room 59
## 24600 Brooklyn Entire home/apt 167
## 24601 Manhattan Private room 95
## 24602 Manhattan Private room 50
## 24603 Manhattan Entire home/apt 200
## 24604 Brooklyn Entire home/apt 125
## 24605 Manhattan Entire home/apt 100
## 24606 Manhattan Entire home/apt 94
## 24607 Brooklyn Private room 70
## 24608 Queens Private room 135
## 24609 Brooklyn Entire home/apt 550
## 24610 Bronx Private room 80
## 24611 Brooklyn Entire home/apt 68
## 24612 Queens Private room 63
## 24613 Staten Island Private room 83
## 24614 Queens Entire home/apt 60
## 24615 Manhattan Entire home/apt 155
## 24616 Brooklyn Entire home/apt 108
## 24617 Brooklyn Private room 75
## 24618 Brooklyn Entire home/apt 250
## 24619 Brooklyn Private room 35
## 24620 Brooklyn Private room 70
## 24621 Brooklyn Entire home/apt 195
## 24622 Bronx Private room 75
## 24623 Brooklyn Entire home/apt 98
## 24624 Manhattan Entire home/apt 100
## 24625 Brooklyn Private room 57
## 24626 Manhattan Entire home/apt 200
## 24627 Manhattan Shared room 350
## 24628 Manhattan Entire home/apt 145
## 24629 Queens Entire home/apt 170
## 24630 Queens Entire home/apt 180
## 24631 Brooklyn Entire home/apt 200
## 24632 Brooklyn Entire home/apt 400
## 24633 Brooklyn Entire home/apt 789
## 24634 Brooklyn Private room 60
## 24635 Manhattan Private room 60
## 24636 Queens Entire home/apt 140
## 24637 Queens Entire home/apt 89
## 24638 Manhattan Entire home/apt 150
## 24639 Brooklyn Entire home/apt 127
## 24640 Brooklyn Private room 110
## 24641 Manhattan Entire home/apt 123
## 24642 Manhattan Private room 81
## 24643 Brooklyn Private room 44
## 24644 Brooklyn Private room 105
## 24645 Brooklyn Entire home/apt 100
## 24646 Manhattan Entire home/apt 305
## 24647 Manhattan Private room 85
## 24648 Brooklyn Private room 65
## 24649 Brooklyn Private room 90
## 24650 Queens Private room 50
## 24651 Brooklyn Entire home/apt 100
## 24652 Manhattan Entire home/apt 176
## 24653 Brooklyn Entire home/apt 100
## 24654 Manhattan Private room 187
## 24655 Queens Private room 70
## 24656 Manhattan Private room 76
## 24657 Manhattan Entire home/apt 175
## 24658 Manhattan Private room 43
## 24659 Brooklyn Entire home/apt 350
## 24660 Manhattan Private room 65
## 24661 Queens Private room 50
## 24662 Queens Shared room 37
## 24663 Queens Private room 48
## 24664 Manhattan Entire home/apt 300
## 24665 Manhattan Entire home/apt 135
## 24666 Manhattan Private room 135
## 24667 Manhattan Private room 72
## 24668 Brooklyn Entire home/apt 90
## 24669 Manhattan Private room 120
## 24670 Manhattan Entire home/apt 200
## 24671 Manhattan Entire home/apt 128
## 24672 Manhattan Entire home/apt 300
## 24673 Brooklyn Entire home/apt 100
## 24674 Manhattan Entire home/apt 190
## 24675 Brooklyn Entire home/apt 150
## 24676 Manhattan Private room 50
## 24677 Bronx Shared room 110
## 24678 Brooklyn Entire home/apt 60
## 24679 Brooklyn Entire home/apt 175
## 24680 Manhattan Entire home/apt 229
## 24681 Manhattan Private room 95
## 24682 Brooklyn Private room 84
## 24683 Manhattan Entire home/apt 80
## 24684 Queens Private room 120
## 24685 Brooklyn Entire home/apt 100
## 24686 Manhattan Entire home/apt 210
## 24687 Brooklyn Entire home/apt 260
## 24688 Brooklyn Entire home/apt 99
## 24689 Manhattan Private room 125
## 24690 Brooklyn Private room 65
## 24691 Brooklyn Private room 80
## 24692 Manhattan Private room 69
## 24693 Brooklyn Private room 48
## 24694 Brooklyn Private room 40
## 24695 Manhattan Private room 135
## 24696 Brooklyn Entire home/apt 103
## 24697 Queens Entire home/apt 110
## 24698 Manhattan Private room 50
## 24699 Brooklyn Private room 45
## 24700 Manhattan Entire home/apt 125
## 24701 Manhattan Private room 129
## 24702 Manhattan Private room 129
## 24703 Manhattan Private room 129
## 24704 Manhattan Entire home/apt 190
## 24705 Bronx Private room 65
## 24706 Manhattan Private room 99
## 24707 Manhattan Private room 60
## 24708 Brooklyn Entire home/apt 89
## 24709 Brooklyn Private room 75
## 24710 Manhattan Entire home/apt 187
## 24711 Queens Entire home/apt 95
## 24712 Brooklyn Private room 45
## 24713 Brooklyn Entire home/apt 160
## 24714 Manhattan Entire home/apt 140
## 24715 Brooklyn Private room 90
## 24716 Queens Entire home/apt 200
## 24717 Queens Private room 48
## 24718 Manhattan Private room 69
## 24719 Brooklyn Private room 45
## 24720 Brooklyn Private room 90
## 24721 Queens Private room 45
## 24722 Manhattan Entire home/apt 110
## 24723 Brooklyn Private room 40
## 24724 Manhattan Shared room 50
## 24725 Queens Entire home/apt 180
## 24726 Brooklyn Private room 45
## 24727 Manhattan Entire home/apt 125
## 24728 Manhattan Entire home/apt 325
## 24729 Brooklyn Private room 55
## 24730 Queens Private room 39
## 24731 Queens Private room 85
## 24732 Brooklyn Private room 80
## 24733 Brooklyn Entire home/apt 124
## 24734 Manhattan Entire home/apt 120
## 24735 Manhattan Entire home/apt 120
## 24736 Brooklyn Entire home/apt 198
## 24737 Manhattan Private room 55
## 24738 Manhattan Entire home/apt 100
## 24739 Brooklyn Entire home/apt 225
## 24740 Brooklyn Private room 60
## 24741 Brooklyn Private room 57
## 24742 Brooklyn Private room 95
## 24743 Brooklyn Private room 600
## 24744 Brooklyn Entire home/apt 200
## 24745 Bronx Private room 80
## 24746 Brooklyn Entire home/apt 116
## 24747 Manhattan Private room 75
## 24748 Queens Private room 45
## 24749 Brooklyn Private room 50
## 24750 Queens Entire home/apt 150
## 24751 Manhattan Entire home/apt 120
## 24752 Brooklyn Entire home/apt 99
## 24753 Manhattan Entire home/apt 325
## 24754 Manhattan Entire home/apt 150
## 24755 Manhattan Private room 500
## 24756 Brooklyn Entire home/apt 210
## 24757 Brooklyn Private room 55
## 24758 Brooklyn Entire home/apt 108
## 24759 Manhattan Private room 50
## 24760 Bronx Entire home/apt 72
## 24761 Staten Island Private room 33
## 24762 Manhattan Entire home/apt 500
## 24763 Brooklyn Private room 42
## 24764 Manhattan Private room 87
## 24765 Bronx Private room 45
## 24766 Brooklyn Entire home/apt 150
## 24767 Brooklyn Entire home/apt 170
## 24768 Brooklyn Private room 75
## 24769 Brooklyn Entire home/apt 200
## 24770 Manhattan Entire home/apt 115
## 24771 Queens Entire home/apt 165
## 24772 Brooklyn Private room 60
## 24773 Brooklyn Private room 59
## 24774 Brooklyn Private room 49
## 24775 Manhattan Entire home/apt 150
## 24776 Manhattan Private room 77
## 24777 Brooklyn Entire home/apt 99
## 24778 Brooklyn Entire home/apt 120
## 24779 Manhattan Private room 85
## 24780 Brooklyn Entire home/apt 175
## 24781 Brooklyn Private room 60
## 24782 Manhattan Entire home/apt 250
## 24783 Queens Private room 30
## 24784 Manhattan Private room 99
## 24785 Brooklyn Private room 42
## 24786 Brooklyn Private room 90
## 24787 Manhattan Private room 48
## 24788 Manhattan Private room 55
## 24789 Queens Entire home/apt 40
## 24790 Manhattan Entire home/apt 200
## 24791 Brooklyn Entire home/apt 100
## 24792 Brooklyn Private room 107
## 24793 Brooklyn Entire home/apt 175
## 24794 Manhattan Private room 150
## 24795 Manhattan Entire home/apt 225
## 24796 Brooklyn Private room 27
## 24797 Brooklyn Entire home/apt 101
## 24798 Manhattan Entire home/apt 255
## 24799 Manhattan Entire home/apt 320
## 24800 Brooklyn Entire home/apt 87
## 24801 Manhattan Entire home/apt 60
## 24802 Manhattan Entire home/apt 199
## 24803 Manhattan Entire home/apt 320
## 24804 Brooklyn Private room 88
## 24805 Manhattan Private room 115
## 24806 Brooklyn Private room 85
## 24807 Brooklyn Entire home/apt 83
## 24808 Manhattan Entire home/apt 176
## 24809 Manhattan Private room 100
## 24810 Manhattan Private room 100
## 24811 Staten Island Entire home/apt 135
## 24812 Manhattan Entire home/apt 150
## 24813 Manhattan Entire home/apt 250
## 24814 Brooklyn Entire home/apt 125
## 24815 Manhattan Entire home/apt 160
## 24816 Brooklyn Entire home/apt 95
## 24817 Brooklyn Entire home/apt 250
## 24818 Manhattan Entire home/apt 175
## 24819 Manhattan Entire home/apt 150
## 24820 Manhattan Entire home/apt 192
## 24821 Queens Private room 69
## 24822 Brooklyn Entire home/apt 110
## 24823 Brooklyn Entire home/apt 92
## 24824 Brooklyn Entire home/apt 95
## 24825 Manhattan Entire home/apt 280
## 24826 Brooklyn Entire home/apt 275
## 24827 Brooklyn Private room 60
## 24828 Manhattan Private room 110
## 24829 Manhattan Private room 80
## 24830 Queens Private room 65
## 24831 Manhattan Private room 89
## 24832 Manhattan Entire home/apt 200
## 24833 Queens Private room 59
## 24834 Queens Private room 55
## 24835 Queens Private room 60
## 24836 Manhattan Entire home/apt 199
## 24837 Brooklyn Entire home/apt 120
## 24838 Brooklyn Private room 35
## 24839 Brooklyn Private room 79
## 24840 Brooklyn Private room 65
## 24841 Brooklyn Private room 65
## 24842 Brooklyn Entire home/apt 85
## 24843 Bronx Entire home/apt 250
## 24844 Manhattan Private room 246
## 24845 Manhattan Entire home/apt 150
## 24846 Brooklyn Entire home/apt 250
## 24847 Staten Island Private room 34
## 24848 Queens Entire home/apt 80
## 24849 Staten Island Private room 35
## 24850 Brooklyn Private room 75
## 24851 Staten Island Private room 33
## 24852 Manhattan Entire home/apt 130
## 24853 Manhattan Entire home/apt 350
## 24854 Queens Private room 60
## 24855 Manhattan Private room 150
## 24856 Brooklyn Private room 65
## 24857 Manhattan Entire home/apt 150
## 24858 Brooklyn Private room 100
## 24859 Manhattan Entire home/apt 219
## 24860 Brooklyn Entire home/apt 90
## 24861 Brooklyn Private room 46
## 24862 Manhattan Entire home/apt 200
## 24863 Brooklyn Entire home/apt 160
## 24864 Manhattan Entire home/apt 599
## 24865 Manhattan Entire home/apt 350
## 24866 Brooklyn Entire home/apt 88
## 24867 Queens Private room 105
## 24868 Brooklyn Entire home/apt 175
## 24869 Brooklyn Private room 80
## 24870 Manhattan Entire home/apt 105
## 24871 Manhattan Entire home/apt 160
## 24872 Brooklyn Entire home/apt 160
## 24873 Brooklyn Entire home/apt 200
## 24874 Brooklyn Private room 97
## 24875 Manhattan Private room 89
## 24876 Manhattan Entire home/apt 225
## 24877 Manhattan Entire home/apt 130
## 24878 Brooklyn Private room 50
## 24879 Manhattan Private room 125
## 24880 Brooklyn Entire home/apt 149
## 24881 Brooklyn Shared room 200
## 24882 Brooklyn Private room 60
## 24883 Brooklyn Entire home/apt 200
## 24884 Manhattan Shared room 65
## 24885 Manhattan Private room 55
## 24886 Brooklyn Entire home/apt 78
## 24887 Brooklyn Entire home/apt 275
## 24888 Brooklyn Private room 140
## 24889 Brooklyn Entire home/apt 214
## 24890 Queens Private room 65
## 24891 Brooklyn Entire home/apt 75
## 24892 Queens Private room 45
## 24893 Brooklyn Entire home/apt 95
## 24894 Manhattan Private room 65
## 24895 Manhattan Private room 111
## 24896 Manhattan Entire home/apt 210
## 24897 Manhattan Private room 100
## 24898 Brooklyn Entire home/apt 145
## 24899 Brooklyn Entire home/apt 50
## 24900 Manhattan Entire home/apt 280
## 24901 Brooklyn Entire home/apt 136
## 24902 Brooklyn Entire home/apt 585
## 24903 Queens Entire home/apt 200
## 24904 Brooklyn Entire home/apt 180
## 24905 Brooklyn Private room 40
## 24906 Brooklyn Private room 40
## 24907 Brooklyn Entire home/apt 56
## 24908 Manhattan Entire home/apt 795
## 24909 Queens Entire home/apt 135
## 24910 Manhattan Entire home/apt 130
## 24911 Queens Entire home/apt 80
## 24912 Manhattan Private room 110
## 24913 Manhattan Entire home/apt 50
## 24914 Brooklyn Entire home/apt 298
## 24915 Manhattan Private room 55
## 24916 Manhattan Private room 110
## 24917 Brooklyn Entire home/apt 145
## 24918 Manhattan Private room 87
## 24919 Brooklyn Entire home/apt 100
## 24920 Manhattan Entire home/apt 125
## 24921 Manhattan Entire home/apt 115
## 24922 Brooklyn Private room 50
## 24923 Staten Island Private room 43
## 24924 Manhattan Entire home/apt 449
## 24925 Bronx Shared room 26
## 24926 Brooklyn Private room 38
## 24927 Brooklyn Private room 110
## 24928 Brooklyn Private room 32
## 24929 Brooklyn Entire home/apt 149
## 24930 Brooklyn Entire home/apt 130
## 24931 Queens Private room 75
## 24932 Manhattan Entire home/apt 350
## 24933 Brooklyn Private room 62
## 24934 Manhattan Entire home/apt 110
## 24935 Manhattan Private room 80
## 24936 Manhattan Private room 120
## 24937 Brooklyn Private room 57
## 24938 Manhattan Entire home/apt 239
## 24939 Queens Private room 84
## 24940 Manhattan Private room 44
## 24941 Manhattan Private room 100
## 24942 Manhattan Entire home/apt 500
## 24943 Manhattan Private room 46
## 24944 Queens Entire home/apt 140
## 24945 Manhattan Private room 41
## 24946 Brooklyn Private room 35
## 24947 Brooklyn Entire home/apt 114
## 24948 Queens Private room 57
## 24949 Brooklyn Private room 40
## 24950 Brooklyn Private room 60
## 24951 Manhattan Entire home/apt 137
## 24952 Manhattan Entire home/apt 150
## 24953 Brooklyn Private room 80
## 24954 Brooklyn Private room 33
## 24955 Brooklyn Private room 50
## 24956 Brooklyn Private room 65
## 24957 Brooklyn Private room 55
## 24958 Queens Entire home/apt 39
## 24959 Queens Private room 150
## 24960 Manhattan Entire home/apt 197
## 24961 Bronx Private room 65
## 24962 Brooklyn Private room 50
## 24963 Brooklyn Private room 50
## 24964 Brooklyn Entire home/apt 130
## 24965 Brooklyn Entire home/apt 200
## 24966 Manhattan Private room 45
## 24967 Brooklyn Private room 66
## 24968 Brooklyn Private room 60
## 24969 Brooklyn Entire home/apt 399
## 24970 Manhattan Private room 90
## 24971 Manhattan Private room 33
## 24972 Manhattan Private room 75
## 24973 Manhattan Entire home/apt 279
## 24974 Brooklyn Entire home/apt 120
## 24975 Manhattan Private room 51
## 24976 Manhattan Private room 130
## 24977 Queens Entire home/apt 90
## 24978 Brooklyn Private room 100
## 24979 Brooklyn Private room 47
## 24980 Brooklyn Private room 85
## 24981 Manhattan Private room 99
## 24982 Manhattan Entire home/apt 120
## 24983 Brooklyn Private room 60
## 24984 Bronx Private room 29
## 24985 Manhattan Entire home/apt 170
## 24986 Brooklyn Private room 45
## 24987 Manhattan Private room 70
## 24988 Manhattan Entire home/apt 198
## 24989 Brooklyn Private room 87
## 24990 Manhattan Entire home/apt 80
## 24991 Manhattan Entire home/apt 250
## 24992 Brooklyn Entire home/apt 152
## 24993 Manhattan Private room 95
## 24994 Manhattan Entire home/apt 1795
## 24995 Manhattan Entire home/apt 210
## 24996 Brooklyn Entire home/apt 135
## 24997 Brooklyn Entire home/apt 69
## 24998 Brooklyn Private room 55
## 24999 Manhattan Entire home/apt 90
## 25000 Brooklyn Private room 45
## 25001 Brooklyn Entire home/apt 80
## 25002 Queens Shared room 37
## 25003 Manhattan Entire home/apt 130
## 25004 Queens Entire home/apt 275
## 25005 Brooklyn Entire home/apt 150
## 25006 Brooklyn Entire home/apt 200
## 25007 Manhattan Entire home/apt 230
## 25008 Brooklyn Private room 65
## 25009 Brooklyn Entire home/apt 149
## 25010 Manhattan Entire home/apt 690
## 25011 Manhattan Private room 53
## 25012 Brooklyn Private room 245
## 25013 Brooklyn Private room 70
## 25014 Manhattan Entire home/apt 275
## 25015 Manhattan Entire home/apt 113
## 25016 Queens Private room 56
## 25017 Queens Entire home/apt 268
## 25018 Brooklyn Private room 75
## 25019 Manhattan Private room 82
## 25020 Brooklyn Private room 65
## 25021 Brooklyn Entire home/apt 71
## 25022 Brooklyn Private room 89
## 25023 Staten Island Private room 59
## 25024 Brooklyn Private room 50
## 25025 Brooklyn Entire home/apt 100
## 25026 Manhattan Private room 55
## 25027 Queens Entire home/apt 69
## 25028 Manhattan Private room 35
## 25029 Manhattan Private room 108
## 25030 Brooklyn Entire home/apt 100
## 25031 Brooklyn Private room 75
## 25032 Manhattan Entire home/apt 99
## 25033 Brooklyn Private room 80
## 25034 Brooklyn Entire home/apt 158
## 25035 Brooklyn Private room 50
## 25036 Manhattan Entire home/apt 250
## 25037 Brooklyn Private room 100
## 25038 Manhattan Entire home/apt 299
## 25039 Manhattan Private room 65
## 25040 Manhattan Entire home/apt 175
## 25041 Brooklyn Entire home/apt 90
## 25042 Brooklyn Private room 120
## 25043 Brooklyn Entire home/apt 150
## 25044 Queens Private room 61
## 25045 Manhattan Private room 175
## 25046 Brooklyn Entire home/apt 150
## 25047 Queens Private room 80
## 25048 Brooklyn Entire home/apt 100
## 25049 Staten Island Entire home/apt 75
## 25050 Manhattan Private room 500
## 25051 Queens Entire home/apt 115
## 25052 Manhattan Private room 150
## 25053 Queens Entire home/apt 110
## 25054 Manhattan Private room 160
## 25055 Manhattan Entire home/apt 230
## 25056 Queens Entire home/apt 120
## 25057 Queens Entire home/apt 110
## 25058 Brooklyn Entire home/apt 80
## 25059 Manhattan Entire home/apt 199
## 25060 Manhattan Entire home/apt 280
## 25061 Manhattan Entire home/apt 140
## 25062 Brooklyn Private room 50
## 25063 Brooklyn Private room 40
## 25064 Brooklyn Entire home/apt 200
## 25065 Brooklyn Entire home/apt 1095
## 25066 Brooklyn Private room 56
## 25067 Queens Private room 80
## 25068 Brooklyn Entire home/apt 154
## 25069 Brooklyn Private room 63
## 25070 Brooklyn Private room 125
## 25071 Brooklyn Entire home/apt 99
## 25072 Manhattan Entire home/apt 265
## 25073 Brooklyn Private room 65
## 25074 Brooklyn Entire home/apt 199
## 25075 Queens Private room 45
## 25076 Manhattan Private room 69
## 25077 Brooklyn Private room 65
## 25078 Manhattan Entire home/apt 82
## 25079 Brooklyn Entire home/apt 249
## 25080 Manhattan Entire home/apt 220
## 25081 Brooklyn Entire home/apt 95
## 25082 Brooklyn Private room 34
## 25083 Brooklyn Entire home/apt 190
## 25084 Manhattan Entire home/apt 160
## 25085 Manhattan Private room 85
## 25086 Brooklyn Private room 38
## 25087 Manhattan Private room 58
## 25088 Manhattan Entire home/apt 179
## 25089 Queens Private room 40
## 25090 Brooklyn Private room 45
## 25091 Manhattan Entire home/apt 150
## 25092 Manhattan Entire home/apt 200
## 25093 Manhattan Entire home/apt 125
## 25094 Queens Private room 50
## 25095 Queens Private room 60
## 25096 Manhattan Private room 70
## 25097 Manhattan Private room 88
## 25098 Manhattan Entire home/apt 370
## 25099 Manhattan Private room 100
## 25100 Manhattan Entire home/apt 122
## 25101 Brooklyn Private room 50
## 25102 Queens Shared room 60
## 25103 Brooklyn Private room 50
## 25104 Manhattan Private room 60
## 25105 Brooklyn Private room 53
## 25106 Brooklyn Entire home/apt 150
## 25107 Manhattan Private room 75
## 25108 Brooklyn Entire home/apt 129
## 25109 Brooklyn Entire home/apt 250
## 25110 Manhattan Private room 98
## 25111 Manhattan Entire home/apt 99
## 25112 Queens Entire home/apt 120
## 25113 Manhattan Private room 120
## 25114 Brooklyn Private room 60
## 25115 Queens Private room 89
## 25116 Bronx Private room 40
## 25117 Brooklyn Entire home/apt 150
## 25118 Brooklyn Private room 89
## 25119 Queens Entire home/apt 49
## 25120 Brooklyn Private room 60
## 25121 Manhattan Entire home/apt 500
## 25122 Bronx Private room 75
## 25123 Manhattan Entire home/apt 169
## 25124 Brooklyn Entire home/apt 150
## 25125 Manhattan Entire home/apt 120
## 25126 Brooklyn Entire home/apt 165
## 25127 Manhattan Private room 72
## 25128 Manhattan Entire home/apt 120
## 25129 Brooklyn Entire home/apt 275
## 25130 Queens Entire home/apt 130
## 25131 Staten Island Entire home/apt 90
## 25132 Staten Island Entire home/apt 105
## 25133 Manhattan Entire home/apt 190
## 25134 Manhattan Entire home/apt 82
## 25135 Brooklyn Private room 69
## 25136 Manhattan Private room 99
## 25137 Brooklyn Private room 58
## 25138 Brooklyn Entire home/apt 100
## 25139 Brooklyn Entire home/apt 121
## 25140 Brooklyn Private room 95
## 25141 Brooklyn Entire home/apt 389
## 25142 Brooklyn Entire home/apt 90
## 25143 Manhattan Private room 75
## 25144 Brooklyn Entire home/apt 150
## 25145 Brooklyn Private room 35
## 25146 Brooklyn Private room 45
## 25147 Staten Island Entire home/apt 150
## 25148 Manhattan Entire home/apt 190
## 25149 Brooklyn Entire home/apt 199
## 25150 Bronx Private room 35
## 25151 Queens Private room 75
## 25152 Queens Private room 40
## 25153 Manhattan Private room 99
## 25154 Brooklyn Private room 75
## 25155 Queens Private room 40
## 25156 Brooklyn Entire home/apt 180
## 25157 Brooklyn Private room 91
## 25158 Brooklyn Private room 55
## 25159 Manhattan Private room 120
## 25160 Manhattan Private room 69
## 25161 Manhattan Private room 60
## 25162 Manhattan Entire home/apt 333
## 25163 Queens Private room 50
## 25164 Queens Private room 60
## 25165 Queens Entire home/apt 150
## 25166 Brooklyn Entire home/apt 150
## 25167 Brooklyn Private room 89
## 25168 Manhattan Entire home/apt 135
## 25169 Queens Entire home/apt 115
## 25170 Queens Entire home/apt 100
## 25171 Manhattan Private room 76
## 25172 Brooklyn Entire home/apt 110
## 25173 Brooklyn Private room 60
## 25174 Queens Private room 40
## 25175 Brooklyn Private room 50
## 25176 Queens Private room 49
## 25177 Manhattan Entire home/apt 200
## 25178 Manhattan Entire home/apt 65
## 25179 Brooklyn Private room 68
## 25180 Manhattan Entire home/apt 199
## 25181 Queens Private room 80
## 25182 Queens Private room 50
## 25183 Queens Private room 78
## 25184 Brooklyn Private room 65
## 25185 Brooklyn Private room 55
## 25186 Manhattan Private room 63
## 25187 Queens Private room 43
## 25188 Manhattan Private room 140
## 25189 Bronx Entire home/apt 72
## 25190 Queens Entire home/apt 199
## 25191 Brooklyn Private room 90
## 25192 Queens Private room 55
## 25193 Brooklyn Entire home/apt 120
## 25194 Manhattan Entire home/apt 135
## 25195 Brooklyn Private room 80
## 25196 Manhattan Private room 154
## 25197 Manhattan Entire home/apt 175
## 25198 Manhattan Entire home/apt 80
## 25199 Brooklyn Private room 50
## 25200 Manhattan Entire home/apt 125
## 25201 Brooklyn Entire home/apt 150
## 25202 Manhattan Private room 174
## 25203 Brooklyn Private room 40
## 25204 Bronx Private room 45
## 25205 Manhattan Private room 100
## 25206 Brooklyn Private room 50
## 25207 Brooklyn Entire home/apt 115
## 25208 Manhattan Entire home/apt 175
## 25209 Manhattan Entire home/apt 130
## 25210 Queens Entire home/apt 63
## 25211 Brooklyn Entire home/apt 130
## 25212 Manhattan Entire home/apt 275
## 25213 Manhattan Entire home/apt 130
## 25214 Manhattan Entire home/apt 154
## 25215 Brooklyn Private room 43
## 25216 Brooklyn Shared room 225
## 25217 Brooklyn Private room 60
## 25218 Queens Private room 60
## 25219 Manhattan Entire home/apt 180
## 25220 Brooklyn Private room 150
## 25221 Brooklyn Entire home/apt 169
## 25222 Brooklyn Entire home/apt 83
## 25223 Queens Private room 40
## 25224 Queens Private room 75
## 25225 Brooklyn Entire home/apt 89
## 25226 Brooklyn Entire home/apt 150
## 25227 Brooklyn Entire home/apt 68
## 25228 Manhattan Entire home/apt 200
## 25229 Brooklyn Entire home/apt 144
## 25230 Brooklyn Entire home/apt 150
## 25231 Manhattan Private room 75
## 25232 Brooklyn Entire home/apt 150
## 25233 Manhattan Private room 105
## 25234 Manhattan Entire home/apt 350
## 25235 Brooklyn Entire home/apt 200
## 25236 Brooklyn Entire home/apt 150
## 25237 Queens Private room 98
## 25238 Brooklyn Entire home/apt 122
## 25239 Brooklyn Private room 90
## 25240 Brooklyn Entire home/apt 450
## 25241 Queens Entire home/apt 125
## 25242 Manhattan Private room 185
## 25243 Manhattan Private room 359
## 25244 Queens Private room 39
## 25245 Queens Private room 65
## 25246 Queens Private room 60
## 25247 Brooklyn Entire home/apt 170
## 25248 Brooklyn Private room 60
## 25249 Manhattan Entire home/apt 200
## 25250 Queens Entire home/apt 50
## 25251 Manhattan Entire home/apt 206
## 25252 Queens Private room 50
## 25253 Manhattan Entire home/apt 222
## 25254 Manhattan Entire home/apt 175
## 25255 Brooklyn Entire home/apt 90
## 25256 Brooklyn Entire home/apt 196
## 25257 Manhattan Entire home/apt 170
## 25258 Queens Private room 70
## 25259 Manhattan Entire home/apt 899
## 25260 Queens Private room 78
## 25261 Manhattan Entire home/apt 399
## 25262 Manhattan Entire home/apt 120
## 25263 Brooklyn Private room 55
## 25264 Brooklyn Entire home/apt 189
## 25265 Brooklyn Entire home/apt 95
## 25266 Queens Private room 70
## 25267 Brooklyn Private room 60
## 25268 Brooklyn Private room 45
## 25269 Brooklyn Entire home/apt 120
## 25270 Staten Island Private room 37
## 25271 Brooklyn Entire home/apt 125
## 25272 Brooklyn Private room 50
## 25273 Brooklyn Entire home/apt 75
## 25274 Manhattan Entire home/apt 80
## 25275 Brooklyn Private room 60
## 25276 Manhattan Private room 68
## 25277 Brooklyn Entire home/apt 300
## 25278 Brooklyn Private room 75
## 25279 Queens Private room 89
## 25280 Brooklyn Private room 53
## 25281 Queens Private room 62
## 25282 Brooklyn Entire home/apt 100
## 25283 Manhattan Entire home/apt 300
## 25284 Brooklyn Entire home/apt 83
## 25285 Brooklyn Private room 60
## 25286 Brooklyn Private room 30
## 25287 Queens Entire home/apt 118
## 25288 Brooklyn Entire home/apt 150
## 25289 Brooklyn Private room 92
## 25290 Brooklyn Entire home/apt 99
## 25291 Brooklyn Entire home/apt 124
## 25292 Queens Private room 45
## 25293 Brooklyn Entire home/apt 175
## 25294 Manhattan Entire home/apt 147
## 25295 Brooklyn Entire home/apt 75
## 25296 Queens Entire home/apt 99
## 25297 Queens Entire home/apt 120
## 25298 Brooklyn Private room 47
## 25299 Brooklyn Entire home/apt 157
## 25300 Brooklyn Private room 80
## 25301 Brooklyn Private room 69
## 25302 Brooklyn Entire home/apt 250
## 25303 Manhattan Entire home/apt 175
## 25304 Bronx Private room 45
## 25305 Manhattan Entire home/apt 80
## 25306 Brooklyn Entire home/apt 217
## 25307 Manhattan Entire home/apt 129
## 25308 Manhattan Entire home/apt 199
## 25309 Bronx Private room 119
## 25310 Brooklyn Entire home/apt 195
## 25311 Manhattan Private room 80
## 25312 Manhattan Entire home/apt 126
## 25313 Brooklyn Private room 55
## 25314 Brooklyn Entire home/apt 100
## 25315 Brooklyn Private room 59
## 25316 Manhattan Private room 51
## 25317 Brooklyn Private room 250
## 25318 Brooklyn Private room 150
## 25319 Brooklyn Entire home/apt 800
## 25320 Manhattan Private room 140
## 25321 Brooklyn Private room 95
## 25322 Manhattan Entire home/apt 600
## 25323 Manhattan Private room 40
## 25324 Queens Private room 85
## 25325 Manhattan Entire home/apt 150
## 25326 Brooklyn Private room 60
## 25327 Manhattan Entire home/apt 149
## 25328 Brooklyn Private room 40
## 25329 Manhattan Private room 69
## 25330 Manhattan Entire home/apt 300
## 25331 Brooklyn Entire home/apt 149
## 25332 Manhattan Private room 120
## 25333 Brooklyn Private room 40
## 25334 Manhattan Entire home/apt 270
## 25335 Manhattan Entire home/apt 200
## 25336 Manhattan Entire home/apt 120
## 25337 Brooklyn Private room 50
## 25338 Manhattan Entire home/apt 290
## 25339 Brooklyn Entire home/apt 100
## 25340 Brooklyn Entire home/apt 250
## 25341 Queens Private room 45
## 25342 Brooklyn Entire home/apt 85
## 25343 Manhattan Entire home/apt 300
## 25344 Queens Private room 35
## 25345 Manhattan Private room 55
## 25346 Brooklyn Entire home/apt 225
## 25347 Brooklyn Entire home/apt 78
## 25348 Brooklyn Private room 49
## 25349 Manhattan Entire home/apt 130
## 25350 Brooklyn Entire home/apt 115
## 25351 Brooklyn Private room 59
## 25352 Brooklyn Private room 32
## 25353 Brooklyn Private room 45
## 25354 Brooklyn Private room 70
## 25355 Brooklyn Entire home/apt 99
## 25356 Queens Entire home/apt 105
## 25357 Queens Entire home/apt 160
## 25358 Manhattan Entire home/apt 114
## 25359 Brooklyn Private room 55
## 25360 Queens Entire home/apt 120
## 25361 Brooklyn Private room 55
## 25362 Queens Private room 160
## 25363 Brooklyn Entire home/apt 110
## 25364 Manhattan Private room 60
## 25365 Manhattan Entire home/apt 130
## 25366 Manhattan Shared room 115
## 25367 Manhattan Entire home/apt 150
## 25368 Brooklyn Entire home/apt 100
## 25369 Brooklyn Private room 85
## 25370 Queens Private room 55
## 25371 Brooklyn Private room 55
## 25372 Manhattan Private room 90
## 25373 Manhattan Private room 80
## 25374 Brooklyn Private room 150
## 25375 Manhattan Entire home/apt 350
## 25376 Brooklyn Private room 110
## 25377 Manhattan Entire home/apt 164
## 25378 Queens Private room 42
## 25379 Manhattan Entire home/apt 325
## 25380 Manhattan Entire home/apt 140
## 25381 Queens Entire home/apt 75
## 25382 Brooklyn Private room 66
## 25383 Brooklyn Private room 66
## 25384 Manhattan Private room 95
## 25385 Manhattan Private room 115
## 25386 Manhattan Private room 60
## 25387 Staten Island Entire home/apt 800
## 25388 Brooklyn Entire home/apt 200
## 25389 Queens Private room 112
## 25390 Queens Entire home/apt 100
## 25391 Queens Private room 84
## 25392 Queens Private room 62
## 25393 Brooklyn Private room 35
## 25394 Queens Private room 62
## 25395 Queens Entire home/apt 115
## 25396 Bronx Entire home/apt 155
## 25397 Brooklyn Entire home/apt 165
## 25398 Brooklyn Private room 60
## 25399 Brooklyn Entire home/apt 400
## 25400 Brooklyn Entire home/apt 90
## 25401 Manhattan Private room 90
## 25402 Brooklyn Private room 75
## 25403 Manhattan Entire home/apt 1500
## 25404 Brooklyn Private room 55
## 25405 Manhattan Private room 120
## 25406 Bronx Private room 600
## 25407 Brooklyn Private room 72
## 25408 Brooklyn Private room 120
## 25409 Manhattan Entire home/apt 200
## 25410 Brooklyn Entire home/apt 99
## 25411 Brooklyn Private room 40
## 25412 Manhattan Entire home/apt 185
## 25413 Manhattan Private room 90
## 25414 Manhattan Entire home/apt 615
## 25415 Manhattan Entire home/apt 180
## 25416 Brooklyn Private room 75
## 25417 Queens Entire home/apt 80
## 25418 Brooklyn Entire home/apt 90
## 25419 Manhattan Entire home/apt 179
## 25420 Brooklyn Entire home/apt 269
## 25421 Brooklyn Entire home/apt 106
## 25422 Manhattan Private room 110
## 25423 Bronx Shared room 800
## 25424 Manhattan Private room 60
## 25425 Manhattan Entire home/apt 219
## 25426 Manhattan Entire home/apt 150
## 25427 Manhattan Entire home/apt 289
## 25428 Manhattan Private room 55
## 25429 Manhattan Private room 139
## 25430 Queens Entire home/apt 65
## 25431 Manhattan Entire home/apt 239
## 25432 Manhattan Private room 110
## 25433 Manhattan Private room 89
## 25434 Bronx Private room 0
## 25435 Brooklyn Entire home/apt 150
## 25436 Queens Shared room 45
## 25437 Manhattan Private room 55
## 25438 Manhattan Private room 55
## 25439 Manhattan Entire home/apt 164
## 25440 Manhattan Shared room 65
## 25441 Brooklyn Private room 63
## 25442 Manhattan Private room 70
## 25443 Brooklyn Entire home/apt 120
## 25444 Manhattan Private room 82
## 25445 Manhattan Private room 56
## 25446 Brooklyn Private room 80
## 25447 Manhattan Entire home/apt 139
## 25448 Queens Entire home/apt 110
## 25449 Brooklyn Private room 60
## 25450 Manhattan Private room 70
## 25451 Manhattan Private room 69
## 25452 Brooklyn Shared room 45
## 25453 Manhattan Private room 58
## 25454 Brooklyn Private room 110
## 25455 Manhattan Private room 80
## 25456 Queens Private room 51
## 25457 Brooklyn Private room 50
## 25458 Manhattan Entire home/apt 273
## 25459 Manhattan Entire home/apt 212
## 25460 Brooklyn Private room 54
## 25461 Brooklyn Entire home/apt 170
## 25462 Manhattan Private room 102
## 25463 Brooklyn Private room 50
## 25464 Brooklyn Private room 85
## 25465 Brooklyn Private room 80
## 25466 Brooklyn Private room 50
## 25467 Manhattan Private room 86
## 25468 Manhattan Private room 136
## 25469 Brooklyn Shared room 79
## 25470 Brooklyn Entire home/apt 211
## 25471 Bronx Entire home/apt 70
## 25472 Brooklyn Shared room 159
## 25473 Brooklyn Private room 55
## 25474 Brooklyn Private room 119
## 25475 Brooklyn Entire home/apt 120
## 25476 Manhattan Entire home/apt 71
## 25477 Manhattan Entire home/apt 170
## 25478 Brooklyn Entire home/apt 70
## 25479 Brooklyn Private room 80
## 25480 Manhattan Private room 50
## 25481 Manhattan Private room 80
## 25482 Manhattan Entire home/apt 129
## 25483 Manhattan Entire home/apt 99
## 25484 Manhattan Private room 49
## 25485 Brooklyn Entire home/apt 125
## 25486 Manhattan Entire home/apt 150
## 25487 Queens Private room 30
## 25488 Brooklyn Entire home/apt 144
## 25489 Bronx Private room 55
## 25490 Brooklyn Entire home/apt 170
## 25491 Manhattan Entire home/apt 185
## 25492 Queens Entire home/apt 120
## 25493 Manhattan Entire home/apt 174
## 25494 Brooklyn Entire home/apt 125
## 25495 Manhattan Private room 60
## 25496 Manhattan Private room 73
## 25497 Manhattan Private room 105
## 25498 Brooklyn Entire home/apt 85
## 25499 Manhattan Entire home/apt 300
## 25500 Manhattan Private room 150
## 25501 Brooklyn Private room 130
## 25502 Queens Private room 80
## 25503 Brooklyn Entire home/apt 140
## 25504 Brooklyn Private room 75
## 25505 Brooklyn Entire home/apt 300
## 25506 Manhattan Shared room 69
## 25507 Queens Private room 53
## 25508 Manhattan Private room 79
## 25509 Manhattan Entire home/apt 409
## 25510 Queens Entire home/apt 600
## 25511 Brooklyn Private room 38
## 25512 Manhattan Entire home/apt 185
## 25513 Brooklyn Entire home/apt 175
## 25514 Manhattan Entire home/apt 115
## 25515 Brooklyn Private room 50
## 25516 Brooklyn Private room 75
## 25517 Brooklyn Private room 1000
## 25518 Brooklyn Entire home/apt 70
## 25519 Brooklyn Private room 85
## 25520 Manhattan Entire home/apt 250
## 25521 Brooklyn Private room 40
## 25522 Brooklyn Private room 50
## 25523 Manhattan Entire home/apt 162
## 25524 Manhattan Entire home/apt 250
## 25525 Queens Private room 35
## 25526 Queens Entire home/apt 295
## 25527 Brooklyn Private room 75
## 25528 Queens Shared room 45
## 25529 Brooklyn Private room 38
## 25530 Manhattan Private room 61
## 25531 Manhattan Entire home/apt 340
## 25532 Manhattan Entire home/apt 170
## 25533 Manhattan Private room 80
## 25534 Brooklyn Private room 94
## 25535 Brooklyn Private room 54
## 25536 Brooklyn Private room 80
## 25537 Bronx Entire home/apt 58
## 25538 Manhattan Entire home/apt 120
## 25539 Queens Private room 45
## 25540 Brooklyn Entire home/apt 120
## 25541 Bronx Private room 70
## 25542 Brooklyn Entire home/apt 215
## 25543 Manhattan Entire home/apt 250
## 25544 Brooklyn Entire home/apt 72
## 25545 Manhattan Entire home/apt 181
## 25546 Manhattan Private room 85
## 25547 Brooklyn Private room 80
## 25548 Manhattan Private room 115
## 25549 Brooklyn Private room 50
## 25550 Brooklyn Entire home/apt 255
## 25551 Brooklyn Entire home/apt 120
## 25552 Brooklyn Private room 61
## 25553 Manhattan Private room 65
## 25554 Brooklyn Private room 55
## 25555 Brooklyn Entire home/apt 298
## 25556 Manhattan Entire home/apt 672
## 25557 Bronx Entire home/apt 100
## 25558 Brooklyn Entire home/apt 199
## 25559 Queens Private room 60
## 25560 Manhattan Entire home/apt 130
## 25561 Brooklyn Private room 80
## 25562 Manhattan Entire home/apt 200
## 25563 Brooklyn Private room 66
## 25564 Brooklyn Entire home/apt 165
## 25565 Manhattan Entire home/apt 350
## 25566 Queens Private room 85
## 25567 Brooklyn Entire home/apt 150
## 25568 Queens Entire home/apt 100
## 25569 Manhattan Private room 90
## 25570 Manhattan Private room 144
## 25571 Brooklyn Private room 90
## 25572 Brooklyn Entire home/apt 210
## 25573 Manhattan Entire home/apt 350
## 25574 Staten Island Private room 68
## 25575 Queens Private room 60
## 25576 Queens Private room 60
## 25577 Manhattan Entire home/apt 127
## 25578 Queens Entire home/apt 60
## 25579 Manhattan Private room 60
## 25580 Brooklyn Entire home/apt 110
## 25581 Bronx Entire home/apt 69
## 25582 Brooklyn Private room 70
## 25583 Manhattan Entire home/apt 125
## 25584 Brooklyn Private room 59
## 25585 Manhattan Entire home/apt 200
## 25586 Brooklyn Private room 70
## 25587 Queens Private room 60
## 25588 Brooklyn Private room 70
## 25589 Brooklyn Private room 50
## 25590 Queens Private room 65
## 25591 Manhattan Private room 120
## 25592 Manhattan Private room 95
## 25593 Manhattan Private room 70
## 25594 Brooklyn Entire home/apt 192
## 25595 Brooklyn Private room 60
## 25596 Brooklyn Entire home/apt 175
## 25597 Brooklyn Entire home/apt 295
## 25598 Manhattan Private room 50
## 25599 Brooklyn Private room 66
## 25600 Manhattan Entire home/apt 226
## 25601 Manhattan Private room 250
## 25602 Manhattan Private room 530
## 25603 Queens Entire home/apt 106
## 25604 Brooklyn Private room 40
## 25605 Brooklyn Shared room 34
## 25606 Brooklyn Entire home/apt 140
## 25607 Brooklyn Private room 50
## 25608 Manhattan Private room 125
## 25609 Manhattan Entire home/apt 245
## 25610 Manhattan Entire home/apt 400
## 25611 Brooklyn Entire home/apt 65
## 25612 Manhattan Private room 65
## 25613 Queens Private room 50
## 25614 Brooklyn Entire home/apt 80
## 25615 Brooklyn Private room 150
## 25616 Manhattan Private room 77
## 25617 Manhattan Private room 99
## 25618 Manhattan Entire home/apt 127
## 25619 Queens Private room 39
## 25620 Manhattan Private room 69
## 25621 Manhattan Entire home/apt 195
## 25622 Manhattan Private room 50
## 25623 Queens Entire home/apt 99
## 25624 Manhattan Private room 75
## 25625 Brooklyn Private room 89
## 25626 Manhattan Entire home/apt 265
## 25627 Brooklyn Entire home/apt 400
## 25628 Manhattan Entire home/apt 160
## 25629 Manhattan Shared room 75
## 25630 Brooklyn Entire home/apt 175
## 25631 Brooklyn Private room 55
## 25632 Brooklyn Entire home/apt 105
## 25633 Manhattan Entire home/apt 495
## 25634 Brooklyn Entire home/apt 34
## 25635 Brooklyn Private room 0
## 25636 Manhattan Entire home/apt 233
## 25637 Manhattan Private room 85
## 25638 Manhattan Private room 133
## 25639 Brooklyn Private room 70
## 25640 Brooklyn Private room 70
## 25641 Brooklyn Private room 60
## 25642 Brooklyn Entire home/apt 300
## 25643 Brooklyn Entire home/apt 150
## 25644 Brooklyn Private room 72
## 25645 Manhattan Entire home/apt 200
## 25646 Brooklyn Entire home/apt 80
## 25647 Brooklyn Private room 74
## 25648 Manhattan Entire home/apt 190
## 25649 Manhattan Private room 78
## 25650 Manhattan Entire home/apt 250
## 25651 Manhattan Private room 198
## 25652 Queens Entire home/apt 220
## 25653 Manhattan Private room 75
## 25654 Brooklyn Entire home/apt 110
## 25655 Bronx Entire home/apt 105
## 25656 Queens Entire home/apt 250
## 25657 Brooklyn Private room 150
## 25658 Staten Island Private room 32
## 25659 Manhattan Entire home/apt 260
## 25660 Manhattan Private room 70
## 25661 Manhattan Entire home/apt 115
## 25662 Queens Private room 80
## 25663 Brooklyn Private room 50
## 25664 Brooklyn Private room 47
## 25665 Brooklyn Entire home/apt 97
## 25666 Manhattan Private room 95
## 25667 Brooklyn Private room 35
## 25668 Manhattan Private room 65
## 25669 Brooklyn Private room 45
## 25670 Brooklyn Private room 60
## 25671 Queens Private room 99
## 25672 Queens Private room 35
## 25673 Queens Entire home/apt 150
## 25674 Manhattan Private room 50
## 25675 Manhattan Private room 50
## 25676 Manhattan Entire home/apt 151
## 25677 Queens Private room 44
## 25678 Queens Private room 38
## 25679 Manhattan Entire home/apt 325
## 25680 Manhattan Entire home/apt 300
## 25681 Brooklyn Entire home/apt 139
## 25682 Bronx Entire home/apt 175
## 25683 Manhattan Entire home/apt 168
## 25684 Manhattan Entire home/apt 250
## 25685 Manhattan Entire home/apt 250
## 25686 Brooklyn Entire home/apt 100
## 25687 Brooklyn Entire home/apt 160
## 25688 Manhattan Private room 449
## 25689 Brooklyn Private room 90
## 25690 Manhattan Entire home/apt 250
## 25691 Brooklyn Entire home/apt 350
## 25692 Manhattan Private room 55
## 25693 Brooklyn Private room 70
## 25694 Brooklyn Entire home/apt 275
## 25695 Manhattan Private room 79
## 25696 Staten Island Private room 70
## 25697 Manhattan Private room 40
## 25698 Brooklyn Entire home/apt 105
## 25699 Brooklyn Private room 70
## 25700 Queens Entire home/apt 60
## 25701 Brooklyn Private room 64
## 25702 Queens Entire home/apt 250
## 25703 Brooklyn Private room 75
## 25704 Manhattan Entire home/apt 275
## 25705 Bronx Entire home/apt 100
## 25706 Bronx Private room 50
## 25707 Brooklyn Private room 49
## 25708 Brooklyn Entire home/apt 125
## 25709 Manhattan Entire home/apt 130
## 25710 Brooklyn Entire home/apt 118
## 25711 Manhattan Entire home/apt 150
## 25712 Manhattan Entire home/apt 300
## 25713 Brooklyn Private room 49
## 25714 Brooklyn Entire home/apt 245
## 25715 Brooklyn Private room 60
## 25716 Brooklyn Entire home/apt 160
## 25717 Manhattan Entire home/apt 275
## 25718 Manhattan Entire home/apt 120
## 25719 Brooklyn Entire home/apt 150
## 25720 Manhattan Private room 59
## 25721 Manhattan Entire home/apt 150
## 25722 Manhattan Entire home/apt 154
## 25723 Brooklyn Entire home/apt 174
## 25724 Manhattan Entire home/apt 250
## 25725 Manhattan Entire home/apt 200
## 25726 Bronx Shared room 60
## 25727 Brooklyn Private room 85
## 25728 Brooklyn Entire home/apt 120
## 25729 Manhattan Entire home/apt 115
## 25730 Brooklyn Private room 47
## 25731 Manhattan Entire home/apt 150
## 25732 Brooklyn Entire home/apt 140
## 25733 Brooklyn Private room 65
## 25734 Manhattan Private room 140
## 25735 Brooklyn Private room 47
## 25736 Brooklyn Entire home/apt 100
## 25737 Manhattan Shared room 70
## 25738 Queens Entire home/apt 62
## 25739 Manhattan Private room 188
## 25740 Brooklyn Entire home/apt 185
## 25741 Manhattan Private room 252
## 25742 Brooklyn Private room 44
## 25743 Brooklyn Entire home/apt 180
## 25744 Brooklyn Private room 50
## 25745 Manhattan Entire home/apt 799
## 25746 Brooklyn Entire home/apt 180
## 25747 Manhattan Entire home/apt 180
## 25748 Brooklyn Private room 170
## 25749 Manhattan Entire home/apt 186
## 25750 Manhattan Private room 82
## 25751 Queens Private room 90
## 25752 Manhattan Entire home/apt 172
## 25753 Brooklyn Private room 60
## 25754 Brooklyn Private room 0
## 25755 Manhattan Private room 52
## 25756 Brooklyn Entire home/apt 184
## 25757 Manhattan Entire home/apt 145
## 25758 Brooklyn Private room 65
## 25759 Manhattan Entire home/apt 100
## 25760 Brooklyn Entire home/apt 74
## 25761 Manhattan Entire home/apt 200
## 25762 Manhattan Entire home/apt 175
## 25763 Manhattan Entire home/apt 130
## 25764 Brooklyn Private room 48
## 25765 Manhattan Private room 200
## 25766 Manhattan Entire home/apt 205
## 25767 Queens Entire home/apt 90
## 25768 Brooklyn Entire home/apt 130
## 25769 Brooklyn Private room 149
## 25770 Manhattan Private room 389
## 25771 Manhattan Private room 250
## 25772 Manhattan Entire home/apt 699
## 25773 Brooklyn Private room 67
## 25774 Manhattan Entire home/apt 135
## 25775 Brooklyn Private room 90
## 25776 Manhattan Private room 83
## 25777 Brooklyn Private room 37
## 25778 Manhattan Private room 65
## 25779 Brooklyn Entire home/apt 0
## 25780 Brooklyn Entire home/apt 100
## 25781 Manhattan Entire home/apt 270
## 25782 Brooklyn Private room 35
## 25783 Manhattan Entire home/apt 120
## 25784 Brooklyn Private room 67
## 25785 Manhattan Private room 85
## 25786 Manhattan Entire home/apt 225
## 25787 Brooklyn Private room 200
## 25788 Manhattan Private room 389
## 25789 Brooklyn Entire home/apt 182
## 25790 Queens Private room 54
## 25791 Manhattan Entire home/apt 400
## 25792 Queens Private room 50
## 25793 Manhattan Shared room 125
## 25794 Queens Entire home/apt 140
## 25795 Brooklyn Private room 0
## 25796 Brooklyn Private room 0
## 25797 Brooklyn Private room 0
## 25798 Manhattan Entire home/apt 99
## 25799 Brooklyn Private room 105
## 25800 Manhattan Entire home/apt 139
## 25801 Brooklyn Private room 100
## 25802 Brooklyn Entire home/apt 130
## 25803 Manhattan Entire home/apt 229
## 25804 Manhattan Private room 77
## 25805 Brooklyn Private room 75
## 25806 Manhattan Entire home/apt 65
## 25807 Brooklyn Private room 80
## 25808 Brooklyn Private room 125
## 25809 Brooklyn Private room 65
## 25810 Manhattan Entire home/apt 220
## 25811 Brooklyn Private room 150
## 25812 Brooklyn Private room 60
## 25813 Brooklyn Entire home/apt 180
## 25814 Manhattan Private room 165
## 25815 Manhattan Private room 75
## 25816 Manhattan Private room 100
## 25817 Brooklyn Entire home/apt 120
## 25818 Brooklyn Entire home/apt 179
## 25819 Queens Private room 125
## 25820 Manhattan Shared room 49
## 25821 Manhattan Shared room 49
## 25822 Brooklyn Private room 90
## 25823 Brooklyn Private room 50
## 25824 Manhattan Entire home/apt 499
## 25825 Brooklyn Private room 36
## 25826 Brooklyn Entire home/apt 5000
## 25827 Manhattan Entire home/apt 275
## 25828 Brooklyn Entire home/apt 80
## 25829 Bronx Private room 35
## 25830 Brooklyn Private room 90
## 25831 Brooklyn Private room 50
## 25832 Brooklyn Private room 250
## 25833 Brooklyn Private room 140
## 25834 Manhattan Shared room 125
## 25835 Brooklyn Private room 50
## 25836 Manhattan Private room 150
## 25837 Brooklyn Private room 59
## 25838 Brooklyn Entire home/apt 85
## 25839 Brooklyn Private room 60
## 25840 Manhattan Private room 110
## 25841 Brooklyn Private room 37
## 25842 Brooklyn Private room 90
## 25843 Manhattan Entire home/apt 180
## 25844 Brooklyn Entire home/apt 111
## 25845 Brooklyn Private room 150
## 25846 Brooklyn Entire home/apt 135
## 25847 Manhattan Private room 120
## 25848 Brooklyn Entire home/apt 241
## 25849 Brooklyn Private room 69
## 25850 Brooklyn Private room 150
## 25851 Brooklyn Entire home/apt 94
## 25852 Manhattan Entire home/apt 130
## 25853 Manhattan Entire home/apt 135
## 25854 Manhattan Private room 70
## 25855 Manhattan Entire home/apt 290
## 25856 Brooklyn Private room 95
## 25857 Brooklyn Private room 53
## 25858 Brooklyn Private room 58
## 25859 Brooklyn Private room 80
## 25860 Brooklyn Private room 33
## 25861 Queens Entire home/apt 198
## 25862 Staten Island Private room 55
## 25863 Brooklyn Private room 150
## 25864 Manhattan Private room 100
## 25865 Brooklyn Entire home/apt 129
## 25866 Manhattan Entire home/apt 138
## 25867 Brooklyn Private room 40
## 25868 Queens Private room 35
## 25869 Queens Private room 50
## 25870 Brooklyn Private room 40
## 25871 Brooklyn Private room 57
## 25872 Manhattan Private room 115
## 25873 Queens Entire home/apt 80
## 25874 Brooklyn Entire home/apt 210
## 25875 Manhattan Entire home/apt 379
## 25876 Brooklyn Private room 48
## 25877 Manhattan Private room 37
## 25878 Manhattan Entire home/apt 175
## 25879 Brooklyn Entire home/apt 50
## 25880 Manhattan Entire home/apt 173
## 25881 Bronx Entire home/apt 450
## 25882 Manhattan Entire home/apt 225
## 25883 Bronx Entire home/apt 80
## 25884 Manhattan Entire home/apt 176
## 25885 Brooklyn Entire home/apt 165
## 25886 Brooklyn Private room 125
## 25887 Manhattan Entire home/apt 239
## 25888 Brooklyn Entire home/apt 130
## 25889 Manhattan Entire home/apt 104
## 25890 Manhattan Entire home/apt 225
## 25891 Manhattan Entire home/apt 178
## 25892 Brooklyn Entire home/apt 114
## 25893 Brooklyn Entire home/apt 130
## 25894 Brooklyn Entire home/apt 230
## 25895 Queens Private room 60
## 25896 Bronx Private room 65
## 25897 Manhattan Private room 150
## 25898 Manhattan Entire home/apt 150
## 25899 Manhattan Private room 100
## 25900 Bronx Private room 55
## 25901 Brooklyn Private room 75
## 25902 Manhattan Entire home/apt 3900
## 25903 Brooklyn Private room 65
## 25904 Manhattan Private room 89
## 25905 Brooklyn Entire home/apt 159
## 25906 Manhattan Entire home/apt 170
## 25907 Brooklyn Entire home/apt 115
## 25908 Queens Entire home/apt 125
## 25909 Manhattan Entire home/apt 325
## 25910 Brooklyn Entire home/apt 165
## 25911 Brooklyn Entire home/apt 129
## 25912 Manhattan Entire home/apt 350
## 25913 Manhattan Entire home/apt 90
## 25914 Manhattan Entire home/apt 216
## 25915 Bronx Private room 50
## 25916 Manhattan Private room 110
## 25917 Brooklyn Private room 55
## 25918 Manhattan Entire home/apt 300
## 25919 Queens Private room 49
## 25920 Manhattan Entire home/apt 158
## 25921 Brooklyn Entire home/apt 97
## 25922 Manhattan Entire home/apt 95
## 25923 Brooklyn Private room 100
## 25924 Manhattan Private room 65
## 25925 Brooklyn Entire home/apt 100
## 25926 Brooklyn Private room 50
## 25927 Brooklyn Private room 75
## 25928 Brooklyn Private room 55
## 25929 Manhattan Private room 55
## 25930 Brooklyn Entire home/apt 175
## 25931 Manhattan Private room 100
## 25932 Brooklyn Private room 75
## 25933 Brooklyn Private room 75
## 25934 Brooklyn Private room 35
## 25935 Brooklyn Private room 53
## 25936 Manhattan Private room 95
## 25937 Manhattan Entire home/apt 175
## 25938 Manhattan Entire home/apt 180
## 25939 Queens Private room 55
## 25940 Queens Private room 79
## 25941 Brooklyn Private room 30
## 25942 Manhattan Entire home/apt 50
## 25943 Manhattan Private room 150
## 25944 Manhattan Entire home/apt 133
## 25945 Brooklyn Entire home/apt 496
## 25946 Manhattan Private room 75
## 25947 Manhattan Private room 100
## 25948 Brooklyn Entire home/apt 1700
## 25949 Manhattan Private room 80
## 25950 Manhattan Private room 123
## 25951 Brooklyn Private room 30
## 25952 Brooklyn Private room 50
## 25953 Brooklyn Entire home/apt 195
## 25954 Manhattan Private room 69
## 25955 Queens Entire home/apt 150
## 25956 Brooklyn Private room 49
## 25957 Brooklyn Entire home/apt 95
## 25958 Staten Island Entire home/apt 109
## 25959 Manhattan Entire home/apt 105
## 25960 Queens Private room 49
## 25961 Brooklyn Entire home/apt 120
## 25962 Manhattan Private room 69
## 25963 Manhattan Private room 85
## 25964 Manhattan Entire home/apt 120
## 25965 Brooklyn Entire home/apt 135
## 25966 Brooklyn Private room 49
## 25967 Brooklyn Private room 100
## 25968 Manhattan Entire home/apt 250
## 25969 Brooklyn Private room 48
## 25970 Manhattan Entire home/apt 87
## 25971 Manhattan Private room 85
## 25972 Brooklyn Private room 48
## 25973 Manhattan Private room 90
## 25974 Brooklyn Private room 60
## 25975 Brooklyn Private room 50
## 25976 Brooklyn Private room 85
## 25977 Brooklyn Private room 70
## 25978 Brooklyn Entire home/apt 125
## 25979 Queens Private room 45
## 25980 Brooklyn Private room 88
## 25981 Manhattan Private room 89
## 25982 Queens Private room 42
## 25983 Brooklyn Private room 50
## 25984 Queens Private room 120
## 25985 Manhattan Private room 60
## 25986 Manhattan Shared room 62
## 25987 Manhattan Entire home/apt 175
## 25988 Brooklyn Private room 76
## 25989 Brooklyn Private room 47
## 25990 Manhattan Entire home/apt 175
## 25991 Manhattan Private room 60
## 25992 Brooklyn Entire home/apt 200
## 25993 Manhattan Entire home/apt 175
## 25994 Queens Private room 55
## 25995 Manhattan Entire home/apt 220
## 25996 Manhattan Shared room 60
## 25997 Brooklyn Private room 50
## 25998 Manhattan Entire home/apt 175
## 25999 Manhattan Entire home/apt 75
## 26000 Brooklyn Entire home/apt 250
## 26001 Brooklyn Private room 85
## 26002 Manhattan Entire home/apt 174
## 26003 Brooklyn Private room 100
## 26004 Manhattan Entire home/apt 260
## 26005 Queens Private room 75
## 26006 Brooklyn Entire home/apt 160
## 26007 Brooklyn Private room 88
## 26008 Queens Entire home/apt 170
## 26009 Brooklyn Private room 95
## 26010 Brooklyn Private room 62
## 26011 Queens Private room 45
## 26012 Manhattan Entire home/apt 100
## 26013 Queens Private room 60
## 26014 Manhattan Entire home/apt 211
## 26015 Brooklyn Entire home/apt 100
## 26016 Brooklyn Entire home/apt 250
## 26017 Manhattan Entire home/apt 125
## 26018 Manhattan Entire home/apt 145
## 26019 Brooklyn Private room 116
## 26020 Manhattan Private room 50
## 26021 Brooklyn Entire home/apt 175
## 26022 Manhattan Entire home/apt 175
## 26023 Queens Entire home/apt 246
## 26024 Brooklyn Private room 44
## 26025 Manhattan Entire home/apt 99
## 26026 Bronx Private room 62
## 26027 Bronx Private room 55
## 26028 Manhattan Private room 69
## 26029 Manhattan Entire home/apt 150
## 26030 Manhattan Entire home/apt 125
## 26031 Brooklyn Private room 80
## 26032 Bronx Private room 42
## 26033 Bronx Private room 42
## 26034 Manhattan Private room 50
## 26035 Manhattan Private room 69
## 26036 Manhattan Entire home/apt 145
## 26037 Brooklyn Entire home/apt 58
## 26038 Brooklyn Private room 65
## 26039 Manhattan Entire home/apt 175
## 26040 Manhattan Private room 100
## 26041 Manhattan Entire home/apt 135
## 26042 Manhattan Private room 120
## 26043 Brooklyn Private room 49
## 26044 Brooklyn Private room 48
## 26045 Bronx Shared room 55
## 26046 Manhattan Entire home/apt 435
## 26047 Manhattan Private room 93
## 26048 Queens Private room 60
## 26049 Brooklyn Private room 42
## 26050 Queens Private room 40
## 26051 Manhattan Private room 88
## 26052 Brooklyn Shared room 85
## 26053 Brooklyn Private room 60
## 26054 Brooklyn Private room 58
## 26055 Brooklyn Entire home/apt 90
## 26056 Manhattan Private room 65
## 26057 Brooklyn Private room 76
## 26058 Brooklyn Entire home/apt 74
## 26059 Brooklyn Private room 95
## 26060 Brooklyn Entire home/apt 210
## 26061 Manhattan Private room 50
## 26062 Queens Entire home/apt 93
## 26063 Brooklyn Entire home/apt 250
## 26064 Manhattan Entire home/apt 269
## 26065 Manhattan Private room 70
## 26066 Brooklyn Private room 90
## 26067 Manhattan Entire home/apt 422
## 26068 Manhattan Entire home/apt 250
## 26069 Queens Private room 99
## 26070 Manhattan Private room 65
## 26071 Queens Private room 55
## 26072 Manhattan Entire home/apt 149
## 26073 Queens Private room 45
## 26074 Bronx Private room 40
## 26075 Brooklyn Private room 135
## 26076 Bronx Shared room 45
## 26077 Manhattan Entire home/apt 75
## 26078 Manhattan Entire home/apt 200
## 26079 Brooklyn Entire home/apt 145
## 26080 Manhattan Entire home/apt 160
## 26081 Brooklyn Private room 100
## 26082 Queens Private room 58
## 26083 Brooklyn Private room 120
## 26084 Queens Private room 80
## 26085 Manhattan Private room 65
## 26086 Brooklyn Entire home/apt 115
## 26087 Manhattan Entire home/apt 220
## 26088 Manhattan Entire home/apt 225
## 26089 Queens Entire home/apt 100
## 26090 Manhattan Entire home/apt 225
## 26091 Manhattan Entire home/apt 245
## 26092 Brooklyn Entire home/apt 80
## 26093 Brooklyn Private room 110
## 26094 Manhattan Entire home/apt 183
## 26095 Queens Private room 55
## 26096 Manhattan Entire home/apt 250
## 26097 Brooklyn Entire home/apt 275
## 26098 Brooklyn Private room 120
## 26099 Manhattan Private room 89
## 26100 Brooklyn Entire home/apt 100
## 26101 Brooklyn Private room 59
## 26102 Brooklyn Private room 50
## 26103 Bronx Private room 45
## 26104 Brooklyn Private room 50
## 26105 Queens Private room 49
## 26106 Manhattan Private room 55
## 26107 Queens Entire home/apt 69
## 26108 Brooklyn Entire home/apt 275
## 26109 Manhattan Entire home/apt 125
## 26110 Manhattan Entire home/apt 300
## 26111 Brooklyn Entire home/apt 145
## 26112 Manhattan Entire home/apt 170
## 26113 Queens Entire home/apt 95
## 26114 Manhattan Entire home/apt 243
## 26115 Manhattan Entire home/apt 150
## 26116 Queens Private room 23
## 26117 Brooklyn Private room 60
## 26118 Manhattan Entire home/apt 181
## 26119 Brooklyn Private room 70
## 26120 Manhattan Private room 53
## 26121 Manhattan Private room 130
## 26122 Manhattan Entire home/apt 350
## 26123 Bronx Private room 60
## 26124 Bronx Private room 35
## 26125 Queens Entire home/apt 179
## 26126 Brooklyn Private room 65
## 26127 Brooklyn Private room 75
## 26128 Brooklyn Entire home/apt 90
## 26129 Manhattan Private room 114
## 26130 Queens Entire home/apt 111
## 26131 Queens Private room 58
## 26132 Queens Entire home/apt 95
## 26133 Manhattan Entire home/apt 220
## 26134 Brooklyn Private room 99
## 26135 Brooklyn Private room 93
## 26136 Brooklyn Private room 55
## 26137 Manhattan Private room 50
## 26138 Manhattan Entire home/apt 308
## 26139 Brooklyn Entire home/apt 150
## 26140 Brooklyn Private room 35
## 26141 Manhattan Entire home/apt 150
## 26142 Brooklyn Entire home/apt 75
## 26143 Manhattan Entire home/apt 150
## 26144 Manhattan Private room 65
## 26145 Brooklyn Entire home/apt 350
## 26146 Brooklyn Entire home/apt 125
## 26147 Bronx Private room 59
## 26148 Manhattan Private room 140
## 26149 Brooklyn Private room 75
## 26150 Brooklyn Entire home/apt 184
## 26151 Brooklyn Entire home/apt 125
## 26152 Manhattan Entire home/apt 175
## 26153 Manhattan Entire home/apt 367
## 26154 Brooklyn Private room 75
## 26155 Manhattan Entire home/apt 80
## 26156 Brooklyn Entire home/apt 137
## 26157 Manhattan Private room 95
## 26158 Queens Private room 125
## 26159 Manhattan Private room 150
## 26160 Brooklyn Entire home/apt 115
## 26161 Queens Private room 45
## 26162 Bronx Private room 55
## 26163 Brooklyn Entire home/apt 180
## 26164 Queens Private room 55
## 26165 Manhattan Private room 99
## 26166 Manhattan Entire home/apt 200
## 26167 Brooklyn Entire home/apt 70
## 26168 Brooklyn Entire home/apt 125
## 26169 Manhattan Entire home/apt 150
## 26170 Manhattan Entire home/apt 164
## 26171 Queens Private room 101
## 26172 Brooklyn Private room 60
## 26173 Brooklyn Entire home/apt 130
## 26174 Queens Private room 150
## 26175 Brooklyn Entire home/apt 114
## 26176 Brooklyn Entire home/apt 225
## 26177 Brooklyn Entire home/apt 250
## 26178 Brooklyn Entire home/apt 99
## 26179 Manhattan Entire home/apt 209
## 26180 Brooklyn Private room 59
## 26181 Manhattan Entire home/apt 300
## 26182 Manhattan Private room 160
## 26183 Queens Private room 45
## 26184 Brooklyn Entire home/apt 250
## 26185 Queens Private room 60
## 26186 Manhattan Shared room 120
## 26187 Queens Private room 47
## 26188 Manhattan Private room 53
## 26189 Queens Private room 55
## 26190 Manhattan Entire home/apt 225
## 26191 Queens Private room 78
## 26192 Staten Island Private room 52
## 26193 Queens Private room 60
## 26194 Manhattan Entire home/apt 161
## 26195 Brooklyn Private room 150
## 26196 Brooklyn Private room 60
## 26197 Manhattan Private room 75
## 26198 Brooklyn Private room 38
## 26199 Queens Private room 35
## 26200 Manhattan Entire home/apt 115
## 26201 Brooklyn Entire home/apt 130
## 26202 Brooklyn Entire home/apt 159
## 26203 Manhattan Private room 83
## 26204 Brooklyn Entire home/apt 225
## 26205 Brooklyn Private room 70
## 26206 Brooklyn Private room 70
## 26207 Manhattan Entire home/apt 125
## 26208 Manhattan Entire home/apt 125
## 26209 Brooklyn Private room 75
## 26210 Queens Private room 55
## 26211 Manhattan Entire home/apt 198
## 26212 Brooklyn Entire home/apt 200
## 26213 Brooklyn Entire home/apt 102
## 26214 Brooklyn Private room 80
## 26215 Manhattan Private room 350
## 26216 Manhattan Entire home/apt 140
## 26217 Brooklyn Entire home/apt 155
## 26218 Brooklyn Entire home/apt 310
## 26219 Manhattan Entire home/apt 525
## 26220 Manhattan Entire home/apt 200
## 26221 Brooklyn Entire home/apt 95
## 26222 Brooklyn Private room 35
## 26223 Brooklyn Private room 150
## 26224 Brooklyn Private room 98
## 26225 Manhattan Private room 79
## 26226 Bronx Entire home/apt 79
## 26227 Manhattan Private room 87
## 26228 Manhattan Entire home/apt 210
## 26229 Manhattan Entire home/apt 150
## 26230 Manhattan Entire home/apt 260
## 26231 Manhattan Entire home/apt 121
## 26232 Manhattan Entire home/apt 129
## 26233 Brooklyn Entire home/apt 90
## 26234 Brooklyn Private room 100
## 26235 Brooklyn Entire home/apt 250
## 26236 Brooklyn Entire home/apt 250
## 26237 Brooklyn Entire home/apt 225
## 26238 Brooklyn Private room 45
## 26239 Brooklyn Entire home/apt 165
## 26240 Queens Entire home/apt 85
## 26241 Staten Island Private room 29
## 26242 Brooklyn Private room 85
## 26243 Brooklyn Private room 75
## 26244 Manhattan Entire home/apt 330
## 26245 Brooklyn Private room 79
## 26246 Manhattan Private room 125
## 26247 Manhattan Private room 78
## 26248 Queens Private room 70
## 26249 Queens Entire home/apt 113
## 26250 Brooklyn Entire home/apt 370
## 26251 Brooklyn Entire home/apt 150
## 26252 Queens Private room 60
## 26253 Manhattan Private room 65
## 26254 Manhattan Entire home/apt 103
## 26255 Brooklyn Private room 60
## 26256 Manhattan Private room 65
## 26257 Brooklyn Private room 80
## 26258 Queens Private room 50
## 26259 Queens Private room 60
## 26260 Manhattan Entire home/apt 0
## 26261 Brooklyn Private room 137
## 26262 Brooklyn Entire home/apt 150
## 26263 Manhattan Private room 65
## 26264 Manhattan Private room 120
## 26265 Manhattan Entire home/apt 225
## 26266 Brooklyn Private room 50
## 26267 Manhattan Entire home/apt 435
## 26268 Manhattan Private room 100
## 26269 Brooklyn Entire home/apt 150
## 26270 Staten Island Private room 85
## 26271 Brooklyn Private room 69
## 26272 Manhattan Entire home/apt 235
## 26273 Queens Private room 47
## 26274 Manhattan Private room 134
## 26275 Brooklyn Entire home/apt 200
## 26276 Manhattan Entire home/apt 150
## 26277 Queens Entire home/apt 99
## 26278 Brooklyn Private room 70
## 26279 Manhattan Entire home/apt 148
## 26280 Brooklyn Private room 30
## 26281 Queens Entire home/apt 450
## 26282 Manhattan Entire home/apt 150
## 26283 Manhattan Private room 50
## 26284 Queens Private room 45
## 26285 Queens Private room 55
## 26286 Brooklyn Private room 105
## 26287 Manhattan Private room 85
## 26288 Brooklyn Entire home/apt 131
## 26289 Brooklyn Entire home/apt 169
## 26290 Brooklyn Private room 58
## 26291 Bronx Entire home/apt 140
## 26292 Brooklyn Entire home/apt 200
## 26293 Brooklyn Private room 120
## 26294 Brooklyn Private room 75
## 26295 Brooklyn Entire home/apt 99
## 26296 Brooklyn Entire home/apt 120
## 26297 Brooklyn Private room 45
## 26298 Queens Private room 89
## 26299 Manhattan Entire home/apt 186
## 26300 Queens Private room 70
## 26301 Queens Entire home/apt 90
## 26302 Brooklyn Private room 35
## 26303 Brooklyn Entire home/apt 134
## 26304 Queens Entire home/apt 99
## 26305 Brooklyn Entire home/apt 85
## 26306 Brooklyn Private room 80
## 26307 Brooklyn Private room 45
## 26308 Brooklyn Private room 110
## 26309 Brooklyn Entire home/apt 139
## 26310 Brooklyn Entire home/apt 120
## 26311 Manhattan Entire home/apt 110
## 26312 Manhattan Private room 110
## 26313 Manhattan Private room 38
## 26314 Brooklyn Private room 100
## 26315 Brooklyn Entire home/apt 250
## 26316 Manhattan Private room 110
## 26317 Manhattan Entire home/apt 199
## 26318 Brooklyn Private room 40
## 26319 Manhattan Entire home/apt 195
## 26320 Brooklyn Private room 25
## 26321 Brooklyn Private room 52
## 26322 Brooklyn Private room 75
## 26323 Brooklyn Entire home/apt 99
## 26324 Brooklyn Private room 55
## 26325 Brooklyn Private room 54
## 26326 Brooklyn Private room 90
## 26327 Brooklyn Private room 50
## 26328 Brooklyn Private room 53
## 26329 Brooklyn Private room 59
## 26330 Brooklyn Private room 99
## 26331 Manhattan Entire home/apt 195
## 26332 Brooklyn Entire home/apt 160
## 26333 Manhattan Entire home/apt 250
## 26334 Queens Entire home/apt 150
## 26335 Queens Private room 85
## 26336 Brooklyn Private room 45
## 26337 Brooklyn Entire home/apt 149
## 26338 Brooklyn Private room 60
## 26339 Queens Entire home/apt 99
## 26340 Brooklyn Private room 65
## 26341 Manhattan Entire home/apt 225
## 26342 Brooklyn Private room 79
## 26343 Queens Private room 36
## 26344 Brooklyn Private room 79
## 26345 Brooklyn Private room 54
## 26346 Brooklyn Entire home/apt 79
## 26347 Brooklyn Entire home/apt 145
## 26348 Brooklyn Entire home/apt 300
## 26349 Manhattan Private room 58
## 26350 Manhattan Private room 70
## 26351 Brooklyn Private room 50
## 26352 Queens Private room 55
## 26353 Brooklyn Entire home/apt 170
## 26354 Brooklyn Entire home/apt 124
## 26355 Manhattan Private room 40
## 26356 Manhattan Private room 111
## 26357 Queens Private room 75
## 26358 Manhattan Entire home/apt 325
## 26359 Manhattan Private room 107
## 26360 Bronx Private room 60
## 26361 Brooklyn Private room 60
## 26362 Brooklyn Private room 60
## 26363 Bronx Entire home/apt 120
## 26364 Manhattan Entire home/apt 200
## 26365 Manhattan Private room 135
## 26366 Queens Shared room 41
## 26367 Brooklyn Entire home/apt 160
## 26368 Brooklyn Private room 80
## 26369 Brooklyn Private room 100
## 26370 Queens Private room 59
## 26371 Bronx Entire home/apt 65
## 26372 Brooklyn Entire home/apt 225
## 26373 Manhattan Private room 175
## 26374 Manhattan Entire home/apt 100
## 26375 Brooklyn Private room 119
## 26376 Brooklyn Private room 30
## 26377 Manhattan Entire home/apt 400
## 26378 Queens Private room 32
## 26379 Manhattan Entire home/apt 245
## 26380 Manhattan Entire home/apt 700
## 26381 Manhattan Private room 90
## 26382 Manhattan Private room 30
## 26383 Manhattan Entire home/apt 135
## 26384 Manhattan Entire home/apt 200
## 26385 Brooklyn Entire home/apt 120
## 26386 Brooklyn Private room 119
## 26387 Manhattan Entire home/apt 196
## 26388 Brooklyn Private room 80
## 26389 Queens Private room 55
## 26390 Queens Entire home/apt 88
## 26391 Manhattan Private room 78
## 26392 Manhattan Private room 50
## 26393 Manhattan Entire home/apt 215
## 26394 Brooklyn Entire home/apt 300
## 26395 Manhattan Entire home/apt 160
## 26396 Brooklyn Entire home/apt 250
## 26397 Queens Entire home/apt 125
## 26398 Brooklyn Entire home/apt 180
## 26399 Manhattan Entire home/apt 650
## 26400 Bronx Private room 60
## 26401 Manhattan Entire home/apt 695
## 26402 Manhattan Entire home/apt 280
## 26403 Queens Entire home/apt 100
## 26404 Brooklyn Entire home/apt 75
## 26405 Brooklyn Entire home/apt 135
## 26406 Brooklyn Private room 50
## 26407 Manhattan Entire home/apt 175
## 26408 Manhattan Private room 80
## 26409 Queens Private room 50
## 26410 Queens Entire home/apt 130
## 26411 Brooklyn Private room 70
## 26412 Queens Private room 45
## 26413 Manhattan Private room 250
## 26414 Manhattan Private room 155
## 26415 Brooklyn Entire home/apt 100
## 26416 Brooklyn Private room 76
## 26417 Brooklyn Entire home/apt 240
## 26418 Brooklyn Private room 80
## 26419 Brooklyn Private room 35
## 26420 Brooklyn Private room 50
## 26421 Brooklyn Private room 90
## 26422 Brooklyn Private room 65
## 26423 Manhattan Private room 100
## 26424 Manhattan Private room 92
## 26425 Manhattan Private room 425
## 26426 Brooklyn Private room 58
## 26427 Manhattan Entire home/apt 85
## 26428 Manhattan Entire home/apt 250
## 26429 Brooklyn Entire home/apt 116
## 26430 Brooklyn Entire home/apt 120
## 26431 Manhattan Private room 70
## 26432 Brooklyn Private room 100
## 26433 Queens Private room 76
## 26434 Manhattan Entire home/apt 150
## 26435 Brooklyn Entire home/apt 100
## 26436 Brooklyn Private room 75
## 26437 Manhattan Entire home/apt 125
## 26438 Brooklyn Entire home/apt 120
## 26439 Bronx Private room 42
## 26440 Brooklyn Entire home/apt 349
## 26441 Manhattan Shared room 299
## 26442 Bronx Private room 30
## 26443 Brooklyn Private room 70
## 26444 Manhattan Entire home/apt 1177
## 26445 Manhattan Private room 110
## 26446 Brooklyn Private room 65
## 26447 Brooklyn Private room 30
## 26448 Brooklyn Entire home/apt 120
## 26449 Queens Private room 33
## 26450 Queens Private room 38
## 26451 Queens Entire home/apt 200
## 26452 Manhattan Entire home/apt 790
## 26453 Manhattan Entire home/apt 225
## 26454 Queens Private room 90
## 26455 Queens Private room 100
## 26456 Manhattan Private room 99
## 26457 Queens Private room 55
## 26458 Queens Private room 55
## 26459 Queens Private room 58
## 26460 Brooklyn Entire home/apt 97
## 26461 Brooklyn Entire home/apt 165
## 26462 Manhattan Entire home/apt 125
## 26463 Brooklyn Entire home/apt 106
## 26464 Queens Private room 60
## 26465 Brooklyn Entire home/apt 99
## 26466 Manhattan Entire home/apt 180
## 26467 Manhattan Entire home/apt 129
## 26468 Manhattan Entire home/apt 160
## 26469 Manhattan Private room 86
## 26470 Brooklyn Private room 155
## 26471 Brooklyn Entire home/apt 185
## 26472 Manhattan Private room 210
## 26473 Manhattan Private room 80
## 26474 Manhattan Entire home/apt 130
## 26475 Manhattan Entire home/apt 113
## 26476 Brooklyn Entire home/apt 160
## 26477 Brooklyn Entire home/apt 350
## 26478 Manhattan Entire home/apt 222
## 26479 Manhattan Private room 65
## 26480 Manhattan Private room 90
## 26481 Manhattan Private room 65
## 26482 Manhattan Private room 55
## 26483 Brooklyn Entire home/apt 94
## 26484 Manhattan Entire home/apt 185
## 26485 Queens Private room 49
## 26486 Manhattan Private room 80
## 26487 Brooklyn Entire home/apt 139
## 26488 Manhattan Private room 70
## 26489 Brooklyn Entire home/apt 400
## 26490 Queens Private room 45
## 26491 Manhattan Private room 75
## 26492 Manhattan Private room 100
## 26493 Manhattan Entire home/apt 150
## 26494 Brooklyn Entire home/apt 100
## 26495 Manhattan Entire home/apt 139
## 26496 Bronx Entire home/apt 40
## 26497 Manhattan Entire home/apt 80
## 26498 Queens Private room 100
## 26499 Brooklyn Private room 100
## 26500 Brooklyn Entire home/apt 150
## 26501 Manhattan Entire home/apt 273
## 26502 Manhattan Entire home/apt 225
## 26503 Brooklyn Entire home/apt 100
## 26504 Brooklyn Entire home/apt 135
## 26505 Manhattan Entire home/apt 400
## 26506 Brooklyn Entire home/apt 125
## 26507 Manhattan Private room 150
## 26508 Manhattan Private room 222
## 26509 Manhattan Entire home/apt 175
## 26510 Manhattan Entire home/apt 70
## 26511 Manhattan Entire home/apt 175
## 26512 Manhattan Entire home/apt 130
## 26513 Manhattan Entire home/apt 150
## 26514 Queens Private room 45
## 26515 Queens Private room 50
## 26516 Brooklyn Private room 100
## 26517 Manhattan Private room 90
## 26518 Brooklyn Private room 45
## 26519 Brooklyn Entire home/apt 175
## 26520 Manhattan Private room 99
## 26521 Brooklyn Private room 60
## 26522 Brooklyn Entire home/apt 158
## 26523 Brooklyn Private room 60
## 26524 Brooklyn Private room 45
## 26525 Manhattan Private room 145
## 26526 Queens Entire home/apt 110
## 26527 Bronx Entire home/apt 115
## 26528 Brooklyn Private room 50
## 26529 Queens Private room 45
## 26530 Queens Entire home/apt 180
## 26531 Brooklyn Entire home/apt 350
## 26532 Brooklyn Entire home/apt 125
## 26533 Manhattan Entire home/apt 180
## 26534 Queens Private room 70
## 26535 Manhattan Entire home/apt 126
## 26536 Manhattan Entire home/apt 190
## 26537 Brooklyn Private room 50
## 26538 Brooklyn Private room 50
## 26539 Manhattan Private room 95
## 26540 Brooklyn Private room 100
## 26541 Brooklyn Entire home/apt 115
## 26542 Queens Entire home/apt 85
## 26543 Bronx Private room 40
## 26544 Manhattan Entire home/apt 195
## 26545 Brooklyn Private room 79
## 26546 Brooklyn Private room 89
## 26547 Manhattan Shared room 32
## 26548 Bronx Private room 28
## 26549 Brooklyn Private room 55
## 26550 Queens Entire home/apt 100
## 26551 Brooklyn Private room 125
## 26552 Brooklyn Entire home/apt 150
## 26553 Manhattan Entire home/apt 300
## 26554 Brooklyn Entire home/apt 150
## 26555 Brooklyn Private room 115
## 26556 Manhattan Private room 100
## 26557 Brooklyn Private room 45
## 26558 Queens Entire home/apt 150
## 26559 Manhattan Entire home/apt 199
## 26560 Brooklyn Private room 50
## 26561 Manhattan Entire home/apt 275
## 26562 Brooklyn Private room 75
## 26563 Brooklyn Entire home/apt 150
## 26564 Brooklyn Entire home/apt 180
## 26565 Queens Private room 43
## 26566 Brooklyn Private room 85
## 26567 Manhattan Private room 115
## 26568 Brooklyn Entire home/apt 105
## 26569 Brooklyn Private room 70
## 26570 Manhattan Entire home/apt 290
## 26571 Queens Entire home/apt 148
## 26572 Manhattan Private room 110
## 26573 Manhattan Private room 110
## 26574 Queens Private room 43
## 26575 Manhattan Entire home/apt 170
## 26576 Brooklyn Private room 65
## 26577 Manhattan Private room 90
## 26578 Manhattan Entire home/apt 159
## 26579 Queens Entire home/apt 175
## 26580 Brooklyn Private room 60
## 26581 Brooklyn Private room 35
## 26582 Brooklyn Entire home/apt 148
## 26583 Manhattan Entire home/apt 110
## 26584 Manhattan Private room 115
## 26585 Manhattan Private room 85
## 26586 Manhattan Private room 50
## 26587 Manhattan Entire home/apt 120
## 26588 Bronx Private room 300
## 26589 Brooklyn Entire home/apt 200
## 26590 Brooklyn Private room 319
## 26591 Manhattan Private room 100
## 26592 Brooklyn Entire home/apt 200
## 26593 Brooklyn Private room 80
## 26594 Brooklyn Entire home/apt 120
## 26595 Manhattan Entire home/apt 239
## 26596 Manhattan Private room 71
## 26597 Manhattan Entire home/apt 120
## 26598 Manhattan Private room 145
## 26599 Brooklyn Private room 95
## 26600 Queens Private room 100
## 26601 Queens Private room 65
## 26602 Brooklyn Private room 60
## 26603 Manhattan Entire home/apt 100
## 26604 Queens Private room 47
## 26605 Manhattan Entire home/apt 126
## 26606 Bronx Private room 25
## 26607 Manhattan Private room 114
## 26608 Manhattan Entire home/apt 185
## 26609 Manhattan Entire home/apt 165
## 26610 Brooklyn Private room 60
## 26611 Manhattan Entire home/apt 225
## 26612 Manhattan Entire home/apt 150
## 26613 Queens Private room 55
## 26614 Manhattan Private room 125
## 26615 Brooklyn Private room 59
## 26616 Queens Private room 95
## 26617 Brooklyn Private room 75
## 26618 Manhattan Private room 1500
## 26619 Manhattan Private room 85
## 26620 Brooklyn Private room 75
## 26621 Brooklyn Private room 130
## 26622 Manhattan Private room 70
## 26623 Manhattan Entire home/apt 128
## 26624 Manhattan Entire home/apt 130
## 26625 Manhattan Entire home/apt 120
## 26626 Brooklyn Private room 69
## 26627 Manhattan Private room 47
## 26628 Manhattan Entire home/apt 181
## 26629 Brooklyn Private room 48
## 26630 Manhattan Private room 50
## 26631 Queens Private room 60
## 26632 Queens Private room 58
## 26633 Manhattan Private room 99
## 26634 Queens Entire home/apt 150
## 26635 Brooklyn Entire home/apt 225
## 26636 Brooklyn Private room 40
## 26637 Brooklyn Entire home/apt 130
## 26638 Queens Private room 35
## 26639 Manhattan Entire home/apt 169
## 26640 Manhattan Private room 150
## 26641 Manhattan Entire home/apt 169
## 26642 Brooklyn Private room 37
## 26643 Manhattan Entire home/apt 125
## 26644 Brooklyn Private room 62
## 26645 Brooklyn Entire home/apt 120
## 26646 Brooklyn Private room 55
## 26647 Brooklyn Entire home/apt 250
## 26648 Brooklyn Private room 45
## 26649 Brooklyn Private room 120
## 26650 Brooklyn Private room 55
## 26651 Manhattan Entire home/apt 140
## 26652 Brooklyn Private room 100
## 26653 Manhattan Private room 80
## 26654 Brooklyn Entire home/apt 70
## 26655 Brooklyn Entire home/apt 189
## 26656 Queens Private room 200
## 26657 Brooklyn Private room 45
## 26658 Manhattan Entire home/apt 275
## 26659 Manhattan Entire home/apt 150
## 26660 Manhattan Entire home/apt 150
## 26661 Brooklyn Private room 65
## 26662 Manhattan Entire home/apt 150
## 26663 Manhattan Entire home/apt 195
## 26664 Brooklyn Private room 59
## 26665 Queens Private room 43
## 26666 Brooklyn Entire home/apt 160
## 26667 Queens Private room 95
## 26668 Brooklyn Entire home/apt 190
## 26669 Manhattan Entire home/apt 125
## 26670 Brooklyn Entire home/apt 165
## 26671 Manhattan Private room 135
## 26672 Brooklyn Entire home/apt 225
## 26673 Brooklyn Entire home/apt 380
## 26674 Brooklyn Entire home/apt 200
## 26675 Manhattan Entire home/apt 129
## 26676 Brooklyn Entire home/apt 133
## 26677 Brooklyn Private room 44
## 26678 Manhattan Entire home/apt 142
## 26679 Manhattan Private room 55
## 26680 Queens Entire home/apt 185
## 26681 Queens Private room 110
## 26682 Manhattan Entire home/apt 175
## 26683 Manhattan Entire home/apt 222
## 26684 Manhattan Entire home/apt 175
## 26685 Manhattan Entire home/apt 175
## 26686 Brooklyn Entire home/apt 115
## 26687 Brooklyn Private room 180
## 26688 Manhattan Private room 80
## 26689 Manhattan Entire home/apt 125
## 26690 Brooklyn Entire home/apt 125
## 26691 Brooklyn Entire home/apt 475
## 26692 Brooklyn Private room 750
## 26693 Queens Entire home/apt 86
## 26694 Brooklyn Private room 75
## 26695 Manhattan Entire home/apt 153
## 26696 Manhattan Entire home/apt 165
## 26697 Queens Private room 55
## 26698 Queens Private room 50
## 26699 Manhattan Private room 45
## 26700 Queens Private room 35
## 26701 Queens Private room 90
## 26702 Manhattan Private room 149
## 26703 Manhattan Entire home/apt 175
## 26704 Queens Entire home/apt 90
## 26705 Manhattan Entire home/apt 108
## 26706 Brooklyn Private room 78
## 26707 Manhattan Private room 50
## 26708 Brooklyn Entire home/apt 250
## 26709 Manhattan Entire home/apt 95
## 26710 Manhattan Private room 85
## 26711 Brooklyn Private room 100
## 26712 Queens Private room 60
## 26713 Manhattan Entire home/apt 160
## 26714 Brooklyn Private room 68
## 26715 Manhattan Private room 85
## 26716 Brooklyn Entire home/apt 198
## 26717 Brooklyn Entire home/apt 290
## 26718 Queens Private room 48
## 26719 Manhattan Shared room 60
## 26720 Brooklyn Private room 75
## 26721 Manhattan Entire home/apt 250
## 26722 Manhattan Private room 50
## 26723 Brooklyn Private room 90
## 26724 Manhattan Private room 155
## 26725 Manhattan Entire home/apt 220
## 26726 Manhattan Entire home/apt 250
## 26727 Manhattan Entire home/apt 378
## 26728 Brooklyn Entire home/apt 325
## 26729 Brooklyn Private room 35
## 26730 Queens Private room 45
## 26731 Manhattan Entire home/apt 96
## 26732 Brooklyn Private room 78
## 26733 Manhattan Private room 110
## 26734 Brooklyn Private room 37
## 26735 Queens Private room 135
## 26736 Brooklyn Private room 45
## 26737 Manhattan Private room 60
## 26738 Manhattan Entire home/apt 125
## 26739 Queens Private room 95
## 26740 Brooklyn Entire home/apt 5000
## 26741 Brooklyn Entire home/apt 115
## 26742 Manhattan Entire home/apt 250
## 26743 Brooklyn Private room 179
## 26744 Manhattan Entire home/apt 99
## 26745 Brooklyn Private room 65
## 26746 Manhattan Private room 125
## 26747 Brooklyn Private room 75
## 26748 Manhattan Entire home/apt 125
## 26749 Manhattan Entire home/apt 295
## 26750 Manhattan Entire home/apt 200
## 26751 Manhattan Private room 200
## 26752 Brooklyn Private room 60
## 26753 Queens Private room 135
## 26754 Queens Private room 135
## 26755 Manhattan Private room 100
## 26756 Brooklyn Entire home/apt 250
## 26757 Queens Private room 125
## 26758 Brooklyn Private room 38
## 26759 Brooklyn Entire home/apt 220
## 26760 Manhattan Private room 100
## 26761 Brooklyn Entire home/apt 150
## 26762 Brooklyn Private room 58
## 26763 Manhattan Private room 160
## 26764 Brooklyn Entire home/apt 130
## 26765 Manhattan Entire home/apt 200
## 26766 Bronx Private room 35
## 26767 Manhattan Private room 45
## 26768 Brooklyn Entire home/apt 235
## 26769 Manhattan Private room 150
## 26770 Brooklyn Shared room 35
## 26771 Brooklyn Private room 40
## 26772 Manhattan Entire home/apt 525
## 26773 Queens Entire home/apt 85
## 26774 Manhattan Entire home/apt 253
## 26775 Manhattan Entire home/apt 275
## 26776 Manhattan Private room 110
## 26777 Brooklyn Entire home/apt 73
## 26778 Manhattan Entire home/apt 573
## 26779 Queens Private room 80
## 26780 Manhattan Entire home/apt 170
## 26781 Queens Entire home/apt 135
## 26782 Manhattan Entire home/apt 1100
## 26783 Manhattan Entire home/apt 120
## 26784 Brooklyn Entire home/apt 195
## 26785 Staten Island Entire home/apt 115
## 26786 Brooklyn Private room 70
## 26787 Manhattan Entire home/apt 766
## 26788 Manhattan Entire home/apt 200
## 26789 Brooklyn Entire home/apt 150
## 26790 Manhattan Private room 125
## 26791 Queens Entire home/apt 75
## 26792 Brooklyn Entire home/apt 95
## 26793 Manhattan Private room 140
## 26794 Manhattan Entire home/apt 83
## 26795 Manhattan Private room 135
## 26796 Manhattan Private room 231
## 26797 Brooklyn Private room 95
## 26798 Brooklyn Entire home/apt 84
## 26799 Queens Entire home/apt 89
## 26800 Brooklyn Private room 55
## 26801 Manhattan Entire home/apt 155
## 26802 Bronx Private room 77
## 26803 Brooklyn Private room 52
## 26804 Manhattan Entire home/apt 95
## 26805 Manhattan Entire home/apt 250
## 26806 Brooklyn Shared room 45
## 26807 Manhattan Private room 75
## 26808 Brooklyn Entire home/apt 100
## 26809 Queens Entire home/apt 100
## 26810 Brooklyn Entire home/apt 130
## 26811 Manhattan Entire home/apt 840
## 26812 Manhattan Private room 250
## 26813 Manhattan Entire home/apt 250
## 26814 Manhattan Entire home/apt 300
## 26815 Manhattan Entire home/apt 100
## 26816 Manhattan Entire home/apt 200
## 26817 Brooklyn Entire home/apt 120
## 26818 Queens Private room 55
## 26819 Manhattan Private room 160
## 26820 Brooklyn Private room 85
## 26821 Brooklyn Entire home/apt 100
## 26822 Brooklyn Entire home/apt 85
## 26823 Queens Private room 40
## 26824 Brooklyn Entire home/apt 150
## 26825 Manhattan Entire home/apt 230
## 26826 Brooklyn Private room 40
## 26827 Manhattan Entire home/apt 130
## 26828 Queens Private room 50
## 26829 Brooklyn Entire home/apt 75
## 26830 Queens Private room 43
## 26831 Queens Private room 40
## 26832 Queens Entire home/apt 255
## 26833 Brooklyn Private room 38
## 26834 Manhattan Private room 105
## 26835 Brooklyn Private room 130
## 26836 Brooklyn Entire home/apt 350
## 26837 Queens Private room 35
## 26838 Manhattan Private room 120
## 26839 Queens Private room 68
## 26840 Manhattan Private room 55
## 26841 Brooklyn Private room 49
## 26842 Brooklyn Shared room 0
## 26843 Brooklyn Private room 55
## 26844 Brooklyn Entire home/apt 298
## 26845 Brooklyn Shared room 29
## 26846 Brooklyn Private room 50
## 26847 Queens Private room 40
## 26848 Manhattan Private room 150
## 26849 Queens Entire home/apt 298
## 26850 Manhattan Entire home/apt 175
## 26851 Brooklyn Private room 60
## 26852 Manhattan Entire home/apt 250
## 26853 Brooklyn Private room 43
## 26854 Brooklyn Entire home/apt 265
## 26855 Brooklyn Private room 60
## 26856 Brooklyn Entire home/apt 400
## 26857 Queens Private room 180
## 26858 Brooklyn Entire home/apt 235
## 26859 Brooklyn Private room 52
## 26860 Manhattan Entire home/apt 250
## 26861 Queens Entire home/apt 130
## 26862 Manhattan Private room 150
## 26863 Queens Private room 50
## 26864 Brooklyn Entire home/apt 160
## 26865 Brooklyn Entire home/apt 300
## 26866 Manhattan Private room 70
## 26867 Brooklyn Shared room 0
## 26868 Queens Private room 130
## 26869 Queens Private room 120
## 26870 Manhattan Entire home/apt 200
## 26871 Brooklyn Private room 80
## 26872 Manhattan Entire home/apt 170
## 26873 Brooklyn Private room 80
## 26874 Queens Entire home/apt 65
## 26875 Brooklyn Private room 60
## 26876 Brooklyn Entire home/apt 400
## 26877 Manhattan Private room 100
## 26878 Manhattan Shared room 68
## 26879 Brooklyn Entire home/apt 120
## 26880 Manhattan Private room 80
## 26881 Manhattan Private room 100
## 26882 Brooklyn Private room 80
## 26883 Brooklyn Entire home/apt 92
## 26884 Brooklyn Entire home/apt 95
## 26885 Brooklyn Entire home/apt 185
## 26886 Brooklyn Entire home/apt 200
## 26887 Manhattan Entire home/apt 300
## 26888 Manhattan Entire home/apt 99
## 26889 Queens Private room 50
## 26890 Queens Private room 135
## 26891 Manhattan Entire home/apt 115
## 26892 Queens Private room 135
## 26893 Queens Private room 135
## 26894 Queens Private room 135
## 26895 Queens Private room 135
## 26896 Queens Private room 135
## 26897 Queens Private room 165
## 26898 Queens Private room 165
## 26899 Queens Private room 165
## 26900 Queens Private room 165
## 26901 Queens Private room 165
## 26902 Queens Private room 135
## 26903 Queens Private room 135
## 26904 Queens Private room 50
## 26905 Brooklyn Private room 40
## 26906 Manhattan Entire home/apt 540
## 26907 Manhattan Private room 85
## 26908 Brooklyn Entire home/apt 130
## 26909 Manhattan Entire home/apt 150
## 26910 Manhattan Private room 90
## 26911 Manhattan Private room 121
## 26912 Bronx Private room 29
## 26913 Queens Shared room 40
## 26914 Manhattan Private room 79
## 26915 Queens Entire home/apt 115
## 26916 Manhattan Entire home/apt 250
## 26917 Bronx Entire home/apt 149
## 26918 Brooklyn Private room 50
## 26919 Brooklyn Entire home/apt 85
## 26920 Manhattan Private room 180
## 26921 Brooklyn Entire home/apt 100
## 26922 Brooklyn Entire home/apt 200
## 26923 Manhattan Entire home/apt 200
## 26924 Brooklyn Private room 119
## 26925 Queens Entire home/apt 70
## 26926 Queens Private room 55
## 26927 Queens Entire home/apt 250
## 26928 Manhattan Private room 75
## 26929 Queens Private room 40
## 26930 Manhattan Private room 50
## 26931 Queens Shared room 37
## 26932 Brooklyn Private room 90
## 26933 Brooklyn Entire home/apt 150
## 26934 Brooklyn Entire home/apt 140
## 26935 Queens Shared room 48
## 26936 Queens Entire home/apt 80
## 26937 Manhattan Private room 125
## 26938 Manhattan Entire home/apt 188
## 26939 Queens Private room 130
## 26940 Manhattan Entire home/apt 100
## 26941 Brooklyn Private room 75
## 26942 Manhattan Entire home/apt 249
## 26943 Brooklyn Entire home/apt 345
## 26944 Manhattan Private room 130
## 26945 Manhattan Private room 90
## 26946 Manhattan Private room 160
## 26947 Manhattan Private room 85
## 26948 Brooklyn Entire home/apt 125
## 26949 Queens Private room 30
## 26950 Brooklyn Entire home/apt 200
## 26951 Queens Private room 200
## 26952 Brooklyn Private room 90
## 26953 Manhattan Entire home/apt 148
## 26954 Brooklyn Entire home/apt 99
## 26955 Brooklyn Entire home/apt 148
## 26956 Manhattan Private room 89
## 26957 Brooklyn Entire home/apt 585
## 26958 Queens Entire home/apt 120
## 26959 Brooklyn Private room 36
## 26960 Queens Private room 100
## 26961 Brooklyn Private room 60
## 26962 Manhattan Entire home/apt 200
## 26963 Brooklyn Private room 200
## 26964 Bronx Private room 80
## 26965 Brooklyn Private room 90
## 26966 Queens Private room 80
## 26967 Queens Private room 83
## 26968 Brooklyn Entire home/apt 71
## 26969 Manhattan Entire home/apt 140
## 26970 Brooklyn Entire home/apt 180
## 26971 Brooklyn Entire home/apt 120
## 26972 Brooklyn Private room 65
## 26973 Brooklyn Entire home/apt 69
## 26974 Manhattan Entire home/apt 170
## 26975 Brooklyn Private room 70
## 26976 Brooklyn Private room 150
## 26977 Queens Entire home/apt 67
## 26978 Queens Entire home/apt 96
## 26979 Manhattan Private room 57
## 26980 Manhattan Entire home/apt 395
## 26981 Bronx Private room 29
## 26982 Manhattan Entire home/apt 350
## 26983 Brooklyn Entire home/apt 120
## 26984 Brooklyn Private room 100
## 26985 Brooklyn Entire home/apt 190
## 26986 Brooklyn Entire home/apt 200
## 26987 Brooklyn Private room 70
## 26988 Bronx Private room 49
## 26989 Brooklyn Private room 70
## 26990 Brooklyn Private room 70
## 26991 Manhattan Entire home/apt 237
## 26992 Brooklyn Private room 129
## 26993 Manhattan Private room 72
## 26994 Manhattan Private room 90
## 26995 Brooklyn Entire home/apt 800
## 26996 Brooklyn Entire home/apt 130
## 26997 Brooklyn Entire home/apt 160
## 26998 Manhattan Entire home/apt 175
## 26999 Staten Island Entire home/apt 58
## 27000 Manhattan Entire home/apt 115
## 27001 Manhattan Entire home/apt 300
## 27002 Manhattan Private room 577
## 27003 Manhattan Private room 104
## 27004 Manhattan Shared room 49
## 27005 Queens Private room 35
## 27006 Brooklyn Private room 85
## 27007 Manhattan Private room 91
## 27008 Brooklyn Private room 80
## 27009 Manhattan Entire home/apt 200
## 27010 Brooklyn Private room 80
## 27011 Brooklyn Entire home/apt 175
## 27012 Queens Shared room 45
## 27013 Manhattan Private room 96
## 27014 Brooklyn Entire home/apt 180
## 27015 Brooklyn Entire home/apt 100
## 27016 Brooklyn Entire home/apt 129
## 27017 Queens Private room 60
## 27018 Manhattan Entire home/apt 135
## 27019 Manhattan Private room 95
## 27020 Queens Private room 125
## 27021 Queens Private room 48
## 27022 Queens Entire home/apt 250
## 27023 Manhattan Private room 300
## 27024 Brooklyn Private room 44
## 27025 Brooklyn Private room 75
## 27026 Brooklyn Entire home/apt 88
## 27027 Brooklyn Entire home/apt 125
## 27028 Manhattan Entire home/apt 300
## 27029 Queens Entire home/apt 250
## 27030 Brooklyn Private room 44
## 27031 Manhattan Private room 174
## 27032 Manhattan Entire home/apt 199
## 27033 Brooklyn Private room 128
## 27034 Manhattan Private room 30
## 27035 Brooklyn Entire home/apt 150
## 27036 Queens Private room 65
## 27037 Manhattan Private room 50
## 27038 Bronx Entire home/apt 175
## 27039 Manhattan Private room 86
## 27040 Manhattan Private room 325
## 27041 Manhattan Entire home/apt 95
## 27042 Manhattan Private room 50
## 27043 Manhattan Entire home/apt 250
## 27044 Brooklyn Entire home/apt 165
## 27045 Manhattan Entire home/apt 150
## 27046 Brooklyn Entire home/apt 90
## 27047 Manhattan Private room 156
## 27048 Queens Entire home/apt 110
## 27049 Brooklyn Private room 70
## 27050 Brooklyn Entire home/apt 154
## 27051 Manhattan Private room 85
## 27052 Brooklyn Entire home/apt 299
## 27053 Bronx Private room 40
## 27054 Manhattan Private room 85
## 27055 Manhattan Entire home/apt 127
## 27056 Bronx Private room 80
## 27057 Manhattan Entire home/apt 195
## 27058 Manhattan Shared room 25
## 27059 Queens Private room 35
## 27060 Manhattan Entire home/apt 250
## 27061 Brooklyn Entire home/apt 120
## 27062 Manhattan Entire home/apt 139
## 27063 Brooklyn Private room 100
## 27064 Queens Entire home/apt 90
## 27065 Manhattan Private room 150
## 27066 Manhattan Private room 82
## 27067 Bronx Entire home/apt 125
## 27068 Manhattan Entire home/apt 350
## 27069 Manhattan Private room 40
## 27070 Brooklyn Private room 80
## 27071 Brooklyn Private room 40
## 27072 Queens Entire home/apt 85
## 27073 Manhattan Entire home/apt 185
## 27074 Manhattan Entire home/apt 215
## 27075 Queens Private room 45
## 27076 Brooklyn Entire home/apt 150
## 27077 Queens Private room 65
## 27078 Manhattan Entire home/apt 190
## 27079 Manhattan Private room 60
## 27080 Manhattan Entire home/apt 175
## 27081 Brooklyn Shared room 60
## 27082 Manhattan Entire home/apt 250
## 27083 Manhattan Entire home/apt 288
## 27084 Brooklyn Entire home/apt 100
## 27085 Manhattan Private room 95
## 27086 Brooklyn Private room 50
## 27087 Manhattan Private room 200
## 27088 Brooklyn Entire home/apt 110
## 27089 Manhattan Shared room 60
## 27090 Manhattan Private room 143
## 27091 Brooklyn Entire home/apt 97
## 27092 Manhattan Entire home/apt 350
## 27093 Manhattan Entire home/apt 150
## 27094 Manhattan Entire home/apt 589
## 27095 Manhattan Entire home/apt 138
## 27096 Manhattan Entire home/apt 200
## 27097 Brooklyn Entire home/apt 50
## 27098 Brooklyn Private room 65
## 27099 Manhattan Entire home/apt 245
## 27100 Brooklyn Entire home/apt 100
## 27101 Brooklyn Private room 60
## 27102 Brooklyn Entire home/apt 89
## 27103 Manhattan Private room 51
## 27104 Brooklyn Entire home/apt 150
## 27105 Brooklyn Entire home/apt 110
## 27106 Manhattan Entire home/apt 230
## 27107 Manhattan Private room 119
## 27108 Brooklyn Private room 44
## 27109 Brooklyn Private room 80
## 27110 Manhattan Entire home/apt 233
## 27111 Manhattan Entire home/apt 150
## 27112 Brooklyn Entire home/apt 115
## 27113 Brooklyn Private room 60
## 27114 Manhattan Private room 150
## 27115 Brooklyn Private room 70
## 27116 Manhattan Private room 75
## 27117 Brooklyn Entire home/apt 109
## 27118 Brooklyn Private room 65
## 27119 Manhattan Entire home/apt 210
## 27120 Manhattan Private room 145
## 27121 Brooklyn Private room 40
## 27122 Manhattan Entire home/apt 180
## 27123 Queens Private room 40
## 27124 Manhattan Shared room 75
## 27125 Queens Private room 40
## 27126 Manhattan Entire home/apt 128
## 27127 Manhattan Private room 36
## 27128 Brooklyn Entire home/apt 85
## 27129 Manhattan Entire home/apt 173
## 27130 Brooklyn Entire home/apt 150
## 27131 Brooklyn Entire home/apt 200
## 27132 Queens Entire home/apt 98
## 27133 Brooklyn Private room 69
## 27134 Brooklyn Entire home/apt 142
## 27135 Manhattan Entire home/apt 180
## 27136 Brooklyn Entire home/apt 150
## 27137 Manhattan Private room 100
## 27138 Brooklyn Entire home/apt 125
## 27139 Brooklyn Entire home/apt 175
## 27140 Brooklyn Private room 66
## 27141 Manhattan Private room 150
## 27142 Manhattan Private room 79
## 27143 Brooklyn Private room 66
## 27144 Brooklyn Private room 85
## 27145 Manhattan Entire home/apt 125
## 27146 Brooklyn Private room 89
## 27147 Brooklyn Entire home/apt 105
## 27148 Brooklyn Private room 120
## 27149 Manhattan Shared room 56
## 27150 Manhattan Private room 129
## 27151 Manhattan Entire home/apt 180
## 27152 Brooklyn Shared room 35
## 27153 Manhattan Private room 130
## 27154 Brooklyn Private room 35
## 27155 Brooklyn Private room 25
## 27156 Manhattan Entire home/apt 150
## 27157 Brooklyn Entire home/apt 120
## 27158 Brooklyn Private room 60
## 27159 Queens Private room 90
## 27160 Brooklyn Entire home/apt 109
## 27161 Manhattan Private room 70
## 27162 Manhattan Entire home/apt 145
## 27163 Manhattan Private room 200
## 27164 Manhattan Entire home/apt 225
## 27165 Manhattan Entire home/apt 200
## 27166 Queens Private room 40
## 27167 Brooklyn Private room 75
## 27168 Manhattan Private room 85
## 27169 Brooklyn Entire home/apt 145
## 27170 Manhattan Entire home/apt 150
## 27171 Brooklyn Entire home/apt 100
## 27172 Queens Entire home/apt 100
## 27173 Brooklyn Private room 42
## 27174 Manhattan Entire home/apt 299
## 27175 Brooklyn Private room 50
## 27176 Manhattan Entire home/apt 200
## 27177 Manhattan Entire home/apt 105
## 27178 Brooklyn Private room 60
## 27179 Manhattan Entire home/apt 175
## 27180 Bronx Entire home/apt 114
## 27181 Brooklyn Entire home/apt 62
## 27182 Manhattan Entire home/apt 160
## 27183 Brooklyn Private room 184
## 27184 Manhattan Shared room 299
## 27185 Manhattan Private room 103
## 27186 Manhattan Entire home/apt 225
## 27187 Manhattan Entire home/apt 750
## 27188 Manhattan Entire home/apt 249
## 27189 Brooklyn Entire home/apt 75
## 27190 Manhattan Entire home/apt 175
## 27191 Brooklyn Private room 58
## 27192 Manhattan Entire home/apt 250
## 27193 Manhattan Entire home/apt 110
## 27194 Brooklyn Entire home/apt 150
## 27195 Brooklyn Private room 60
## 27196 Brooklyn Entire home/apt 65
## 27197 Bronx Private room 60
## 27198 Brooklyn Private room 80
## 27199 Brooklyn Private room 25
## 27200 Brooklyn Entire home/apt 150
## 27201 Manhattan Entire home/apt 170
## 27202 Queens Entire home/apt 70
## 27203 Brooklyn Private room 65
## 27204 Staten Island Private room 55
## 27205 Manhattan Entire home/apt 550
## 27206 Manhattan Entire home/apt 215
## 27207 Brooklyn Entire home/apt 90
## 27208 Queens Entire home/apt 110
## 27209 Brooklyn Private room 30
## 27210 Manhattan Entire home/apt 95
## 27211 Brooklyn Private room 35
## 27212 Queens Private room 70
## 27213 Manhattan Private room 150
## 27214 Brooklyn Entire home/apt 80
## 27215 Manhattan Entire home/apt 160
## 27216 Brooklyn Entire home/apt 90
## 27217 Brooklyn Entire home/apt 196
## 27218 Brooklyn Private room 62
## 27219 Brooklyn Private room 36
## 27220 Manhattan Private room 143
## 27221 Manhattan Entire home/apt 120
## 27222 Brooklyn Entire home/apt 129
## 27223 Brooklyn Private room 32
## 27224 Queens Private room 48
## 27225 Manhattan Entire home/apt 150
## 27226 Manhattan Entire home/apt 250
## 27227 Manhattan Private room 70
## 27228 Brooklyn Private room 100
## 27229 Queens Private room 40
## 27230 Manhattan Entire home/apt 110
## 27231 Manhattan Entire home/apt 200
## 27232 Manhattan Entire home/apt 250
## 27233 Brooklyn Private room 60
## 27234 Brooklyn Private room 60
## 27235 Staten Island Entire home/apt 125
## 27236 Queens Entire home/apt 85
## 27237 Brooklyn Entire home/apt 140
## 27238 Manhattan Private room 67
## 27239 Bronx Entire home/apt 50
## 27240 Manhattan Private room 300
## 27241 Brooklyn Private room 75
## 27242 Queens Entire home/apt 140
## 27243 Brooklyn Entire home/apt 165
## 27244 Manhattan Private room 100
## 27245 Brooklyn Entire home/apt 100
## 27246 Queens Private room 55
## 27247 Brooklyn Entire home/apt 100
## 27248 Queens Entire home/apt 108
## 27249 Brooklyn Shared room 42
## 27250 Brooklyn Private room 39
## 27251 Brooklyn Entire home/apt 100
## 27252 Brooklyn Entire home/apt 95
## 27253 Manhattan Entire home/apt 140
## 27254 Brooklyn Entire home/apt 110
## 27255 Queens Entire home/apt 300
## 27256 Brooklyn Entire home/apt 70
## 27257 Queens Private room 85
## 27258 Brooklyn Entire home/apt 55
## 27259 Manhattan Private room 949
## 27260 Brooklyn Private room 120
## 27261 Brooklyn Shared room 45
## 27262 Queens Entire home/apt 125
## 27263 Manhattan Private room 80
## 27264 Manhattan Entire home/apt 300
## 27265 Manhattan Entire home/apt 99
## 27266 Queens Private room 71
## 27267 Brooklyn Entire home/apt 95
## 27268 Queens Entire home/apt 123
## 27269 Brooklyn Entire home/apt 80
## 27270 Queens Entire home/apt 95
## 27271 Bronx Entire home/apt 110
## 27272 Queens Entire home/apt 90
## 27273 Brooklyn Entire home/apt 100
## 27274 Manhattan Private room 75
## 27275 Brooklyn Private room 150
## 27276 Manhattan Entire home/apt 400
## 27277 Brooklyn Private room 55
## 27278 Brooklyn Entire home/apt 120
## 27279 Manhattan Entire home/apt 165
## 27280 Brooklyn Entire home/apt 150
## 27281 Queens Private room 58
## 27282 Brooklyn Entire home/apt 150
## 27283 Brooklyn Private room 60
## 27284 Brooklyn Entire home/apt 250
## 27285 Manhattan Entire home/apt 315
## 27286 Manhattan Private room 75
## 27287 Brooklyn Entire home/apt 125
## 27288 Queens Private room 80
## 27289 Staten Island Private room 32
## 27290 Brooklyn Entire home/apt 32
## 27291 Manhattan Private room 80
## 27292 Manhattan Private room 69
## 27293 Manhattan Entire home/apt 200
## 27294 Manhattan Entire home/apt 350
## 27295 Manhattan Private room 150
## 27296 Brooklyn Private room 50
## 27297 Brooklyn Private room 48
## 27298 Brooklyn Private room 49
## 27299 Manhattan Shared room 150
## 27300 Manhattan Entire home/apt 230
## 27301 Brooklyn Private room 90
## 27302 Manhattan Private room 75
## 27303 Brooklyn Private room 89
## 27304 Queens Entire home/apt 150
## 27305 Brooklyn Entire home/apt 200
## 27306 Queens Private room 65
## 27307 Brooklyn Private room 94
## 27308 Brooklyn Entire home/apt 95
## 27309 Brooklyn Entire home/apt 159
## 27310 Brooklyn Entire home/apt 150
## 27311 Brooklyn Entire home/apt 159
## 27312 Manhattan Private room 80
## 27313 Manhattan Entire home/apt 190
## 27314 Manhattan Private room 70
## 27315 Brooklyn Private room 59
## 27316 Manhattan Entire home/apt 190
## 27317 Brooklyn Entire home/apt 200
## 27318 Queens Private room 69
## 27319 Brooklyn Private room 70
## 27320 Manhattan Entire home/apt 170
## 27321 Manhattan Entire home/apt 133
## 27322 Brooklyn Private room 60
## 27323 Brooklyn Private room 50
## 27324 Queens Entire home/apt 90
## 27325 Brooklyn Entire home/apt 235
## 27326 Manhattan Shared room 59
## 27327 Brooklyn Entire home/apt 100
## 27328 Brooklyn Private room 51
## 27329 Queens Private room 65
## 27330 Brooklyn Private room 95
## 27331 Queens Private room 50
## 27332 Manhattan Shared room 68
## 27333 Brooklyn Private room 35
## 27334 Manhattan Entire home/apt 110
## 27335 Brooklyn Private room 70
## 27336 Brooklyn Private room 65
## 27337 Manhattan Entire home/apt 145
## 27338 Manhattan Private room 125
## 27339 Brooklyn Entire home/apt 250
## 27340 Manhattan Entire home/apt 275
## 27341 Brooklyn Private room 31
## 27342 Manhattan Private room 125
## 27343 Queens Private room 55
## 27344 Brooklyn Private room 32
## 27345 Brooklyn Private room 65
## 27346 Brooklyn Private room 75
## 27347 Queens Private room 65
## 27348 Brooklyn Entire home/apt 84
## 27349 Manhattan Private room 90
## 27350 Brooklyn Entire home/apt 150
## 27351 Manhattan Entire home/apt 185
## 27352 Brooklyn Private room 47
## 27353 Manhattan Private room 85
## 27354 Queens Private room 60
## 27355 Manhattan Entire home/apt 200
## 27356 Manhattan Entire home/apt 160
## 27357 Brooklyn Private room 50
## 27358 Brooklyn Entire home/apt 107
## 27359 Manhattan Shared room 120
## 27360 Brooklyn Entire home/apt 150
## 27361 Brooklyn Private room 65
## 27362 Brooklyn Private room 40
## 27363 Brooklyn Private room 52
## 27364 Brooklyn Entire home/apt 358
## 27365 Brooklyn Entire home/apt 219
## 27366 Manhattan Private room 130
## 27367 Manhattan Entire home/apt 157
## 27368 Manhattan Private room 100
## 27369 Queens Private room 48
## 27370 Queens Private room 60
## 27371 Brooklyn Entire home/apt 100
## 27372 Brooklyn Private room 45
## 27373 Brooklyn Private room 48
## 27374 Manhattan Entire home/apt 375
## 27375 Brooklyn Private room 125
## 27376 Manhattan Entire home/apt 118
## 27377 Manhattan Entire home/apt 116
## 27378 Manhattan Private room 55
## 27379 Queens Private room 55
## 27380 Queens Private room 85
## 27381 Queens Private room 47
## 27382 Manhattan Private room 80
## 27383 Queens Entire home/apt 40
## 27384 Brooklyn Entire home/apt 102
## 27385 Bronx Entire home/apt 75
## 27386 Brooklyn Private room 69
## 27387 Manhattan Private room 59
## 27388 Manhattan Private room 489
## 27389 Brooklyn Private room 70
## 27390 Manhattan Private room 90
## 27391 Manhattan Private room 35
## 27392 Manhattan Private room 50
## 27393 Brooklyn Entire home/apt 100
## 27394 Manhattan Entire home/apt 80
## 27395 Brooklyn Private room 120
## 27396 Brooklyn Private room 75
## 27397 Brooklyn Private room 48
## 27398 Queens Private room 40
## 27399 Manhattan Entire home/apt 379
## 27400 Bronx Private room 50
## 27401 Manhattan Entire home/apt 210
## 27402 Brooklyn Private room 120
## 27403 Brooklyn Private room 62
## 27404 Brooklyn Private room 45
## 27405 Bronx Private room 54
## 27406 Queens Private room 75
## 27407 Brooklyn Entire home/apt 66
## 27408 Brooklyn Private room 44
## 27409 Brooklyn Private room 65
## 27410 Brooklyn Private room 70
## 27411 Manhattan Entire home/apt 249
## 27412 Queens Entire home/apt 128
## 27413 Brooklyn Entire home/apt 128
## 27414 Brooklyn Private room 50
## 27415 Manhattan Entire home/apt 150
## 27416 Brooklyn Private room 75
## 27417 Brooklyn Private room 60
## 27418 Manhattan Private room 80
## 27419 Queens Private room 40
## 27420 Manhattan Private room 60
## 27421 Queens Entire home/apt 125
## 27422 Manhattan Private room 75
## 27423 Staten Island Private room 30
## 27424 Manhattan Entire home/apt 199
## 27425 Brooklyn Private room 100
## 27426 Manhattan Entire home/apt 385
## 27427 Manhattan Private room 47
## 27428 Brooklyn Entire home/apt 70
## 27429 Brooklyn Entire home/apt 265
## 27430 Manhattan Shared room 60
## 27431 Manhattan Shared room 33
## 27432 Manhattan Shared room 29
## 27433 Manhattan Shared room 60
## 27434 Manhattan Shared room 33
## 27435 Brooklyn Entire home/apt 219
## 27436 Manhattan Private room 80
## 27437 Queens Entire home/apt 150
## 27438 Manhattan Private room 80
## 27439 Queens Private room 60
## 27440 Brooklyn Private room 55
## 27441 Brooklyn Entire home/apt 100
## 27442 Brooklyn Entire home/apt 125
## 27443 Brooklyn Private room 72
## 27444 Brooklyn Private room 64
## 27445 Brooklyn Entire home/apt 149
## 27446 Queens Entire home/apt 99
## 27447 Manhattan Entire home/apt 225
## 27448 Manhattan Entire home/apt 265
## 27449 Manhattan Entire home/apt 200
## 27450 Manhattan Entire home/apt 80
## 27451 Manhattan Entire home/apt 111
## 27452 Brooklyn Entire home/apt 150
## 27453 Manhattan Private room 55
## 27454 Brooklyn Private room 85
## 27455 Manhattan Entire home/apt 400
## 27456 Brooklyn Private room 60
## 27457 Brooklyn Entire home/apt 90
## 27458 Brooklyn Private room 70
## 27459 Brooklyn Entire home/apt 220
## 27460 Brooklyn Entire home/apt 120
## 27461 Manhattan Private room 64
## 27462 Brooklyn Private room 40
## 27463 Brooklyn Private room 70
## 27464 Manhattan Private room 169
## 27465 Manhattan Private room 75
## 27466 Manhattan Entire home/apt 139
## 27467 Brooklyn Entire home/apt 300
## 27468 Brooklyn Shared room 38
## 27469 Brooklyn Private room 40
## 27470 Queens Private room 58
## 27471 Brooklyn Private room 43
## 27472 Brooklyn Private room 60
## 27473 Brooklyn Private room 32
## 27474 Queens Private room 55
## 27475 Brooklyn Private room 100
## 27476 Brooklyn Entire home/apt 99
## 27477 Manhattan Private room 50
## 27478 Queens Private room 47
## 27479 Queens Private room 67
## 27480 Queens Private room 55
## 27481 Brooklyn Entire home/apt 125
## 27482 Manhattan Entire home/apt 190
## 27483 Brooklyn Private room 50
## 27484 Brooklyn Private room 80
## 27485 Manhattan Entire home/apt 150
## 27486 Brooklyn Entire home/apt 99
## 27487 Brooklyn Entire home/apt 500
## 27488 Manhattan Entire home/apt 225
## 27489 Brooklyn Private room 41
## 27490 Manhattan Entire home/apt 140
## 27491 Brooklyn Entire home/apt 85
## 27492 Manhattan Private room 105
## 27493 Brooklyn Entire home/apt 115
## 27494 Brooklyn Private room 31
## 27495 Brooklyn Entire home/apt 120
## 27496 Manhattan Private room 100
## 27497 Manhattan Entire home/apt 250
## 27498 Brooklyn Shared room 28
## 27499 Brooklyn Private room 150
## 27500 Brooklyn Shared room 30
## 27501 Brooklyn Shared room 30
## 27502 Queens Shared room 60
## 27503 Manhattan Entire home/apt 75
## 27504 Brooklyn Entire home/apt 150
## 27505 Brooklyn Private room 50
## 27506 Brooklyn Private room 50
## 27507 Brooklyn Entire home/apt 160
## 27508 Manhattan Entire home/apt 125
## 27509 Manhattan Entire home/apt 239
## 27510 Manhattan Entire home/apt 250
## 27511 Brooklyn Entire home/apt 110
## 27512 Brooklyn Private room 95
## 27513 Manhattan Entire home/apt 1000
## 27514 Brooklyn Entire home/apt 160
## 27515 Brooklyn Private room 118
## 27516 Brooklyn Private room 70
## 27517 Brooklyn Entire home/apt 125
## 27518 Brooklyn Private room 55
## 27519 Brooklyn Entire home/apt 130
## 27520 Manhattan Private room 80
## 27521 Manhattan Entire home/apt 248
## 27522 Brooklyn Private room 48
## 27523 Brooklyn Entire home/apt 150
## 27524 Brooklyn Entire home/apt 175
## 27525 Brooklyn Private room 67
## 27526 Brooklyn Private room 80
## 27527 Queens Private room 45
## 27528 Manhattan Entire home/apt 180
## 27529 Brooklyn Private room 31
## 27530 Brooklyn Entire home/apt 98
## 27531 Brooklyn Private room 40
## 27532 Brooklyn Entire home/apt 100
## 27533 Manhattan Entire home/apt 200
## 27534 Brooklyn Entire home/apt 125
## 27535 Brooklyn Entire home/apt 90
## 27536 Queens Entire home/apt 82
## 27537 Brooklyn Entire home/apt 100
## 27538 Manhattan Entire home/apt 485
## 27539 Queens Private room 43
## 27540 Manhattan Entire home/apt 175
## 27541 Manhattan Entire home/apt 200
## 27542 Manhattan Entire home/apt 108
## 27543 Brooklyn Entire home/apt 80
## 27544 Brooklyn Private room 100
## 27545 Manhattan Entire home/apt 89
## 27546 Brooklyn Entire home/apt 95
## 27547 Brooklyn Entire home/apt 95
## 27548 Brooklyn Private room 46
## 27549 Brooklyn Entire home/apt 200
## 27550 Brooklyn Private room 148
## 27551 Brooklyn Private room 120
## 27552 Manhattan Private room 120
## 27553 Manhattan Private room 130
## 27554 Manhattan Entire home/apt 225
## 27555 Manhattan Entire home/apt 125
## 27556 Manhattan Private room 80
## 27557 Brooklyn Private room 90
## 27558 Brooklyn Entire home/apt 55
## 27559 Manhattan Entire home/apt 500
## 27560 Brooklyn Entire home/apt 175
## 27561 Brooklyn Private room 75
## 27562 Brooklyn Private room 80
## 27563 Manhattan Entire home/apt 320
## 27564 Brooklyn Entire home/apt 300
## 27565 Brooklyn Private room 78
## 27566 Manhattan Entire home/apt 100
## 27567 Brooklyn Entire home/apt 213
## 27568 Manhattan Private room 141
## 27569 Queens Entire home/apt 100
## 27570 Brooklyn Entire home/apt 175
## 27571 Manhattan Entire home/apt 225
## 27572 Brooklyn Entire home/apt 87
## 27573 Brooklyn Private room 36
## 27574 Manhattan Entire home/apt 78
## 27575 Manhattan Entire home/apt 199
## 27576 Queens Private room 50
## 27577 Brooklyn Entire home/apt 125
## 27578 Brooklyn Private room 100
## 27579 Brooklyn Private room 37
## 27580 Queens Private room 78
## 27581 Manhattan Private room 98
## 27582 Brooklyn Private room 120
## 27583 Brooklyn Private room 250
## 27584 Brooklyn Private room 70
## 27585 Brooklyn Private room 188
## 27586 Brooklyn Private room 75
## 27587 Brooklyn Private room 60
## 27588 Manhattan Private room 63
## 27589 Manhattan Private room 125
## 27590 Manhattan Entire home/apt 175
## 27591 Manhattan Entire home/apt 2200
## 27592 Brooklyn Private room 95
## 27593 Manhattan Private room 135
## 27594 Manhattan Private room 126
## 27595 Queens Private room 70
## 27596 Manhattan Private room 150
## 27597 Brooklyn Entire home/apt 150
## 27598 Manhattan Entire home/apt 395
## 27599 Manhattan Entire home/apt 165
## 27600 Brooklyn Private room 69
## 27601 Manhattan Entire home/apt 850
## 27602 Manhattan Private room 47
## 27603 Brooklyn Entire home/apt 200
## 27604 Manhattan Private room 75
## 27605 Brooklyn Entire home/apt 58
## 27606 Brooklyn Entire home/apt 90
## 27607 Manhattan Private room 47
## 27608 Brooklyn Entire home/apt 95
## 27609 Brooklyn Entire home/apt 180
## 27610 Brooklyn Private room 54
## 27611 Manhattan Entire home/apt 400
## 27612 Manhattan Entire home/apt 175
## 27613 Manhattan Entire home/apt 138
## 27614 Manhattan Entire home/apt 110
## 27615 Queens Entire home/apt 245
## 27616 Queens Entire home/apt 95
## 27617 Brooklyn Entire home/apt 125
## 27618 Brooklyn Private room 45
## 27619 Brooklyn Private room 100
## 27620 Manhattan Entire home/apt 195
## 27621 Manhattan Entire home/apt 101
## 27622 Queens Private room 49
## 27623 Bronx Private room 70
## 27624 Manhattan Entire home/apt 185
## 27625 Brooklyn Private room 100
## 27626 Brooklyn Entire home/apt 100
## 27627 Brooklyn Entire home/apt 249
## 27628 Manhattan Entire home/apt 99
## 27629 Brooklyn Private room 60
## 27630 Brooklyn Entire home/apt 459
## 27631 Brooklyn Private room 70
## 27632 Brooklyn Private room 60
## 27633 Manhattan Entire home/apt 497
## 27634 Brooklyn Private room 130
## 27635 Brooklyn Entire home/apt 59
## 27636 Brooklyn Private room 60
## 27637 Manhattan Entire home/apt 350
## 27638 Brooklyn Private room 75
## 27639 Brooklyn Entire home/apt 160
## 27640 Manhattan Entire home/apt 550
## 27641 Brooklyn Private room 60
## 27642 Brooklyn Entire home/apt 100
## 27643 Brooklyn Private room 100
## 27644 Manhattan Entire home/apt 250
## 27645 Brooklyn Entire home/apt 105
## 27646 Queens Entire home/apt 70
## 27647 Brooklyn Entire home/apt 105
## 27648 Brooklyn Private room 75
## 27649 Brooklyn Private room 75
## 27650 Queens Private room 52
## 27651 Brooklyn Private room 42
## 27652 Brooklyn Private room 55
## 27653 Brooklyn Entire home/apt 120
## 27654 Manhattan Private room 175
## 27655 Brooklyn Entire home/apt 80
## 27656 Brooklyn Entire home/apt 220
## 27657 Brooklyn Private room 101
## 27658 Manhattan Private room 50
## 27659 Brooklyn Entire home/apt 73
## 27660 Brooklyn Entire home/apt 275
## 27661 Brooklyn Entire home/apt 110
## 27662 Manhattan Entire home/apt 125
## 27663 Manhattan Private room 75
## 27664 Brooklyn Entire home/apt 130
## 27665 Manhattan Private room 69
## 27666 Brooklyn Private room 25
## 27667 Manhattan Entire home/apt 185
## 27668 Brooklyn Private room 60
## 27669 Manhattan Entire home/apt 125
## 27670 Brooklyn Entire home/apt 150
## 27671 Manhattan Private room 175
## 27672 Manhattan Entire home/apt 500
## 27673 Manhattan Entire home/apt 130
## 27674 Brooklyn Private room 67
## 27675 Queens Private room 65
## 27676 Bronx Private room 70
## 27677 Brooklyn Entire home/apt 130
## 27678 Brooklyn Entire home/apt 92
## 27679 Brooklyn Private room 51
## 27680 Brooklyn Private room 45
## 27681 Brooklyn Shared room 20
## 27682 Brooklyn Entire home/apt 43
## 27683 Brooklyn Private room 55
## 27684 Brooklyn Entire home/apt 175
## 27685 Brooklyn Private room 45
## 27686 Brooklyn Entire home/apt 70
## 27687 Brooklyn Entire home/apt 150
## 27688 Brooklyn Private room 65
## 27689 Brooklyn Private room 140
## 27690 Manhattan Entire home/apt 200
## 27691 Manhattan Entire home/apt 195
## 27692 Manhattan Private room 45
## 27693 Manhattan Entire home/apt 225
## 27694 Manhattan Entire home/apt 150
## 27695 Brooklyn Private room 40
## 27696 Brooklyn Entire home/apt 105
## 27697 Manhattan Private room 150
## 27698 Brooklyn Entire home/apt 195
## 27699 Brooklyn Entire home/apt 225
## 27700 Brooklyn Private room 94
## 27701 Manhattan Entire home/apt 220
## 27702 Brooklyn Private room 30
## 27703 Manhattan Entire home/apt 187
## 27704 Brooklyn Private room 60
## 27705 Brooklyn Private room 45
## 27706 Brooklyn Entire home/apt 200
## 27707 Manhattan Shared room 89
## 27708 Manhattan Private room 97
## 27709 Brooklyn Private room 49
## 27710 Manhattan Private room 147
## 27711 Brooklyn Private room 26
## 27712 Queens Private room 31
## 27713 Brooklyn Entire home/apt 100
## 27714 Manhattan Entire home/apt 120
## 27715 Brooklyn Entire home/apt 700
## 27716 Brooklyn Entire home/apt 100
## 27717 Manhattan Private room 80
## 27718 Queens Entire home/apt 83
## 27719 Brooklyn Shared room 35
## 27720 Manhattan Entire home/apt 133
## 27721 Brooklyn Entire home/apt 92
## 27722 Brooklyn Shared room 35
## 27723 Manhattan Private room 95
## 27724 Bronx Private room 73
## 27725 Manhattan Entire home/apt 255
## 27726 Brooklyn Entire home/apt 200
## 27727 Manhattan Entire home/apt 225
## 27728 Manhattan Entire home/apt 275
## 27729 Manhattan Entire home/apt 159
## 27730 Brooklyn Entire home/apt 195
## 27731 Manhattan Entire home/apt 495
## 27732 Manhattan Entire home/apt 130
## 27733 Brooklyn Entire home/apt 135
## 27734 Queens Entire home/apt 100
## 27735 Brooklyn Private room 59
## 27736 Brooklyn Private room 150
## 27737 Brooklyn Private room 65
## 27738 Brooklyn Entire home/apt 175
## 27739 Brooklyn Entire home/apt 380
## 27740 Queens Entire home/apt 170
## 27741 Queens Private room 50
## 27742 Brooklyn Entire home/apt 78
## 27743 Brooklyn Private room 30
## 27744 Manhattan Entire home/apt 200
## 27745 Brooklyn Entire home/apt 80
## 27746 Brooklyn Entire home/apt 99
## 27747 Brooklyn Entire home/apt 125
## 27748 Manhattan Entire home/apt 165
## 27749 Manhattan Entire home/apt 159
## 27750 Bronx Entire home/apt 99
## 27751 Manhattan Private room 50
## 27752 Brooklyn Entire home/apt 96
## 27753 Brooklyn Private room 65
## 27754 Manhattan Entire home/apt 226
## 27755 Brooklyn Private room 65
## 27756 Manhattan Private room 250
## 27757 Manhattan Entire home/apt 193
## 27758 Brooklyn Private room 110
## 27759 Brooklyn Entire home/apt 245
## 27760 Manhattan Entire home/apt 220
## 27761 Brooklyn Private room 70
## 27762 Brooklyn Entire home/apt 80
## 27763 Brooklyn Private room 70
## 27764 Manhattan Entire home/apt 200
## 27765 Manhattan Entire home/apt 145
## 27766 Manhattan Private room 50
## 27767 Brooklyn Entire home/apt 170
## 27768 Manhattan Private room 135
## 27769 Brooklyn Private room 65
## 27770 Brooklyn Private room 60
## 27771 Manhattan Entire home/apt 339
## 27772 Brooklyn Entire home/apt 125
## 27773 Manhattan Private room 60
## 27774 Manhattan Private room 60
## 27775 Manhattan Entire home/apt 750
## 27776 Manhattan Private room 200
## 27777 Brooklyn Entire home/apt 250
## 27778 Manhattan Entire home/apt 325
## 27779 Queens Entire home/apt 75
## 27780 Manhattan Private room 129
## 27781 Brooklyn Private room 85
## 27782 Manhattan Private room 60
## 27783 Bronx Private room 35
## 27784 Queens Entire home/apt 99
## 27785 Brooklyn Entire home/apt 140
## 27786 Manhattan Entire home/apt 1000
## 27787 Brooklyn Entire home/apt 116
## 27788 Brooklyn Private room 60
## 27789 Brooklyn Entire home/apt 130
## 27790 Brooklyn Entire home/apt 350
## 27791 Brooklyn Entire home/apt 95
## 27792 Queens Shared room 21
## 27793 Manhattan Entire home/apt 499
## 27794 Manhattan Entire home/apt 108
## 27795 Queens Entire home/apt 50
## 27796 Manhattan Entire home/apt 175
## 27797 Manhattan Entire home/apt 230
## 27798 Brooklyn Private room 60
## 27799 Brooklyn Entire home/apt 130
## 27800 Manhattan Entire home/apt 299
## 27801 Brooklyn Private room 40
## 27802 Brooklyn Private room 40
## 27803 Manhattan Entire home/apt 270
## 27804 Manhattan Private room 48
## 27805 Manhattan Entire home/apt 300
## 27806 Queens Entire home/apt 228
## 27807 Brooklyn Private room 60
## 27808 Manhattan Private room 99
## 27809 Manhattan Private room 65
## 27810 Manhattan Private room 325
## 27811 Brooklyn Entire home/apt 90
## 27812 Manhattan Private room 139
## 27813 Brooklyn Private room 50
## 27814 Brooklyn Entire home/apt 60
## 27815 Brooklyn Entire home/apt 110
## 27816 Brooklyn Private room 69
## 27817 Manhattan Entire home/apt 500
## 27818 Manhattan Entire home/apt 600
## 27819 Manhattan Entire home/apt 125
## 27820 Bronx Entire home/apt 62
## 27821 Manhattan Entire home/apt 196
## 27822 Manhattan Entire home/apt 299
## 27823 Brooklyn Private room 80
## 27824 Manhattan Private room 111
## 27825 Brooklyn Private room 80
## 27826 Manhattan Entire home/apt 184
## 27827 Brooklyn Private room 60
## 27828 Brooklyn Private room 75
## 27829 Manhattan Entire home/apt 70
## 27830 Manhattan Entire home/apt 210
## 27831 Brooklyn Entire home/apt 165
## 27832 Brooklyn Private room 40
## 27833 Manhattan Private room 170
## 27834 Brooklyn Entire home/apt 93
## 27835 Brooklyn Private room 47
## 27836 Brooklyn Entire home/apt 200
## 27837 Manhattan Entire home/apt 175
## 27838 Manhattan Private room 120
## 27839 Brooklyn Entire home/apt 70
## 27840 Brooklyn Entire home/apt 175
## 27841 Manhattan Entire home/apt 105
## 27842 Brooklyn Entire home/apt 275
## 27843 Manhattan Entire home/apt 165
## 27844 Queens Private room 48
## 27845 Manhattan Entire home/apt 195
## 27846 Brooklyn Entire home/apt 280
## 27847 Manhattan Private room 100
## 27848 Queens Entire home/apt 80
## 27849 Brooklyn Private room 48
## 27850 Manhattan Entire home/apt 228
## 27851 Queens Private room 55
## 27852 Brooklyn Entire home/apt 60
## 27853 Queens Entire home/apt 90
## 27854 Brooklyn Private room 139
## 27855 Queens Entire home/apt 95
## 27856 Brooklyn Private room 129
## 27857 Manhattan Entire home/apt 150
## 27858 Brooklyn Private room 119
## 27859 Manhattan Private room 90
## 27860 Manhattan Entire home/apt 125
## 27861 Brooklyn Private room 55
## 27862 Brooklyn Entire home/apt 79
## 27863 Manhattan Entire home/apt 120
## 27864 Manhattan Private room 138
## 27865 Manhattan Entire home/apt 126
## 27866 Manhattan Private room 35
## 27867 Manhattan Private room 46
## 27868 Queens Private room 55
## 27869 Brooklyn Private room 50
## 27870 Manhattan Private room 60
## 27871 Brooklyn Private room 400
## 27872 Brooklyn Entire home/apt 160
## 27873 Brooklyn Private room 70
## 27874 Brooklyn Private room 45
## 27875 Manhattan Private room 340
## 27876 Brooklyn Private room 50
## 27877 Brooklyn Private room 300
## 27878 Queens Entire home/apt 95
## 27879 Manhattan Private room 150
## 27880 Bronx Entire home/apt 70
## 27881 Brooklyn Private room 45
## 27882 Brooklyn Entire home/apt 280
## 27883 Manhattan Private room 45
## 27884 Manhattan Entire home/apt 400
## 27885 Manhattan Entire home/apt 400
## 27886 Queens Entire home/apt 245
## 27887 Brooklyn Private room 50
## 27888 Brooklyn Entire home/apt 125
## 27889 Brooklyn Entire home/apt 95
## 27890 Brooklyn Entire home/apt 150
## 27891 Brooklyn Entire home/apt 100
## 27892 Brooklyn Entire home/apt 385
## 27893 Manhattan Entire home/apt 125
## 27894 Manhattan Entire home/apt 100
## 27895 Brooklyn Private room 105
## 27896 Brooklyn Private room 59
## 27897 Manhattan Private room 99
## 27898 Brooklyn Shared room 80
## 27899 Brooklyn Entire home/apt 115
## 27900 Brooklyn Private room 53
## 27901 Queens Private room 45
## 27902 Brooklyn Private room 80
## 27903 Brooklyn Shared room 43
## 27904 Manhattan Entire home/apt 275
## 27905 Brooklyn Entire home/apt 200
## 27906 Manhattan Private room 200
## 27907 Manhattan Entire home/apt 96
## 27908 Brooklyn Private room 65
## 27909 Manhattan Entire home/apt 180
## 27910 Brooklyn Private room 95
## 27911 Manhattan Private room 125
## 27912 Manhattan Private room 36
## 27913 Brooklyn Private room 95
## 27914 Manhattan Entire home/apt 150
## 27915 Brooklyn Private room 85
## 27916 Manhattan Entire home/apt 190
## 27917 Brooklyn Private room 61
## 27918 Manhattan Entire home/apt 130
## 27919 Manhattan Entire home/apt 180
## 27920 Queens Private room 60
## 27921 Queens Entire home/apt 200
## 27922 Brooklyn Private room 65
## 27923 Manhattan Entire home/apt 1066
## 27924 Manhattan Entire home/apt 200
## 27925 Manhattan Entire home/apt 130
## 27926 Manhattan Private room 70
## 27927 Brooklyn Entire home/apt 95
## 27928 Brooklyn Entire home/apt 400
## 27929 Manhattan Entire home/apt 150
## 27930 Brooklyn Entire home/apt 115
## 27931 Brooklyn Entire home/apt 80
## 27932 Manhattan Entire home/apt 345
## 27933 Manhattan Entire home/apt 110
## 27934 Manhattan Entire home/apt 150
## 27935 Manhattan Entire home/apt 265
## 27936 Brooklyn Private room 42
## 27937 Manhattan Entire home/apt 95
## 27938 Manhattan Entire home/apt 130
## 27939 Brooklyn Entire home/apt 99
## 27940 Brooklyn Private room 51
## 27941 Brooklyn Entire home/apt 300
## 27942 Brooklyn Entire home/apt 259
## 27943 Manhattan Entire home/apt 250
## 27944 Manhattan Private room 71
## 27945 Manhattan Private room 155
## 27946 Manhattan Entire home/apt 135
## 27947 Manhattan Private room 89
## 27948 Brooklyn Entire home/apt 150
## 27949 Brooklyn Private room 250
## 27950 Manhattan Entire home/apt 150
## 27951 Brooklyn Private room 75
## 27952 Brooklyn Private room 50
## 27953 Brooklyn Private room 70
## 27954 Manhattan Entire home/apt 450
## 27955 Queens Private room 68
## 27956 Brooklyn Private room 80
## 27957 Manhattan Private room 200
## 27958 Manhattan Entire home/apt 450
## 27959 Manhattan Entire home/apt 398
## 27960 Manhattan Entire home/apt 398
## 27961 Brooklyn Entire home/apt 41
## 27962 Manhattan Entire home/apt 200
## 27963 Manhattan Private room 120
## 27964 Manhattan Entire home/apt 160
## 27965 Brooklyn Private room 55
## 27966 Manhattan Private room 37
## 27967 Brooklyn Private room 60
## 27968 Brooklyn Entire home/apt 135
## 27969 Queens Entire home/apt 95
## 27970 Brooklyn Entire home/apt 350
## 27971 Manhattan Entire home/apt 245
## 27972 Manhattan Entire home/apt 150
## 27973 Brooklyn Entire home/apt 10
## 27974 Manhattan Private room 69
## 27975 Manhattan Entire home/apt 250
## 27976 Manhattan Private room 88
## 27977 Manhattan Private room 200
## 27978 Brooklyn Entire home/apt 160
## 27979 Queens Private room 40
## 27980 Manhattan Entire home/apt 150
## 27981 Brooklyn Entire home/apt 280
## 27982 Brooklyn Entire home/apt 65
## 27983 Brooklyn Entire home/apt 150
## 27984 Brooklyn Entire home/apt 159
## 27985 Manhattan Entire home/apt 150
## 27986 Brooklyn Entire home/apt 195
## 27987 Manhattan Entire home/apt 200
## 27988 Brooklyn Entire home/apt 100
## 27989 Manhattan Entire home/apt 425
## 27990 Brooklyn Entire home/apt 115
## 27991 Manhattan Private room 50
## 27992 Manhattan Entire home/apt 412
## 27993 Manhattan Private room 93
## 27994 Manhattan Entire home/apt 160
## 27995 Brooklyn Private room 50
## 27996 Manhattan Entire home/apt 210
## 27997 Manhattan Entire home/apt 250
## 27998 Manhattan Private room 90
## 27999 Manhattan Private room 225
## 28000 Queens Private room 40
## 28001 Manhattan Entire home/apt 215
## 28002 Brooklyn Private room 55
## 28003 Manhattan Private room 90
## 28004 Manhattan Entire home/apt 170
## 28005 Brooklyn Entire home/apt 160
## 28006 Brooklyn Entire home/apt 80
## 28007 Queens Private room 35
## 28008 Manhattan Entire home/apt 200
## 28009 Brooklyn Private room 43
## 28010 Brooklyn Entire home/apt 100
## 28011 Brooklyn Private room 55
## 28012 Brooklyn Private room 55
## 28013 Manhattan Private room 95
## 28014 Manhattan Entire home/apt 350
## 28015 Brooklyn Private room 42
## 28016 Manhattan Entire home/apt 125
## 28017 Brooklyn Private room 80
## 28018 Manhattan Entire home/apt 133
## 28019 Manhattan Entire home/apt 150
## 28020 Manhattan Private room 12
## 28021 Brooklyn Entire home/apt 120
## 28022 Brooklyn Private room 50
## 28023 Brooklyn Entire home/apt 250
## 28024 Brooklyn Private room 70
## 28025 Brooklyn Private room 80
## 28026 Manhattan Private room 40
## 28027 Brooklyn Entire home/apt 79
## 28028 Manhattan Entire home/apt 120
## 28029 Brooklyn Entire home/apt 139
## 28030 Brooklyn Private room 66
## 28031 Bronx Private room 40
## 28032 Brooklyn Entire home/apt 100
## 28033 Brooklyn Private room 50
## 28034 Brooklyn Entire home/apt 185
## 28035 Manhattan Private room 55
## 28036 Manhattan Private room 160
## 28037 Manhattan Private room 80
## 28038 Brooklyn Entire home/apt 119
## 28039 Manhattan Entire home/apt 125
## 28040 Brooklyn Entire home/apt 155
## 28041 Manhattan Private room 76
## 28042 Staten Island Private room 100
## 28043 Manhattan Private room 120
## 28044 Brooklyn Private room 38
## 28045 Brooklyn Entire home/apt 80
## 28046 Brooklyn Private room 36
## 28047 Brooklyn Private room 119
## 28048 Brooklyn Private room 119
## 28049 Queens Private room 50
## 28050 Brooklyn Private room 119
## 28051 Brooklyn Private room 119
## 28052 Manhattan Entire home/apt 195
## 28053 Brooklyn Private room 119
## 28054 Manhattan Entire home/apt 200
## 28055 Queens Entire home/apt 143
## 28056 Manhattan Private room 45
## 28057 Manhattan Entire home/apt 350
## 28058 Queens Entire home/apt 99
## 28059 Manhattan Private room 65
## 28060 Manhattan Entire home/apt 85
## 28061 Brooklyn Entire home/apt 160
## 28062 Manhattan Entire home/apt 400
## 28063 Manhattan Entire home/apt 333
## 28064 Manhattan Private room 85
## 28065 Manhattan Entire home/apt 89
## 28066 Manhattan Entire home/apt 375
## 28067 Brooklyn Private room 39
## 28068 Brooklyn Entire home/apt 50
## 28069 Brooklyn Private room 37
## 28070 Manhattan Entire home/apt 90
## 28071 Brooklyn Entire home/apt 150
## 28072 Brooklyn Entire home/apt 85
## 28073 Brooklyn Entire home/apt 99
## 28074 Brooklyn Entire home/apt 100
## 28075 Brooklyn Entire home/apt 165
## 28076 Brooklyn Private room 52
## 28077 Brooklyn Entire home/apt 100
## 28078 Brooklyn Entire home/apt 130
## 28079 Manhattan Private room 100
## 28080 Brooklyn Entire home/apt 120
## 28081 Manhattan Private room 50
## 28082 Manhattan Entire home/apt 130
## 28083 Manhattan Entire home/apt 250
## 28084 Brooklyn Entire home/apt 90
## 28085 Brooklyn Entire home/apt 110
## 28086 Manhattan Private room 40
## 28087 Queens Entire home/apt 92
## 28088 Queens Entire home/apt 100
## 28089 Queens Entire home/apt 45
## 28090 Queens Private room 35
## 28091 Manhattan Private room 85
## 28092 Brooklyn Private room 50
## 28093 Queens Private room 50
## 28094 Queens Private room 38
## 28095 Brooklyn Private room 65
## 28096 Manhattan Entire home/apt 50
## 28097 Brooklyn Private room 75
## 28098 Queens Private room 100
## 28099 Manhattan Entire home/apt 250
## 28100 Manhattan Entire home/apt 650
## 28101 Brooklyn Private room 129
## 28102 Brooklyn Private room 129
## 28103 Brooklyn Private room 41
## 28104 Brooklyn Private room 65
## 28105 Brooklyn Private room 129
## 28106 Brooklyn Private room 129
## 28107 Brooklyn Private room 70
## 28108 Manhattan Entire home/apt 150
## 28109 Manhattan Private room 89
## 28110 Manhattan Private room 100
## 28111 Manhattan Entire home/apt 175
## 28112 Manhattan Private room 20
## 28113 Brooklyn Entire home/apt 300
## 28114 Manhattan Entire home/apt 275
## 28115 Manhattan Shared room 185
## 28116 Queens Entire home/apt 120
## 28117 Manhattan Entire home/apt 220
## 28118 Brooklyn Private room 50
## 28119 Queens Private room 30
## 28120 Manhattan Private room 70
## 28121 Queens Private room 600
## 28122 Brooklyn Private room 75
## 28123 Manhattan Entire home/apt 200
## 28124 Brooklyn Private room 60
## 28125 Queens Entire home/apt 125
## 28126 Brooklyn Private room 50
## 28127 Queens Private room 75
## 28128 Manhattan Entire home/apt 150
## 28129 Manhattan Private room 78
## 28130 Manhattan Entire home/apt 200
## 28131 Brooklyn Entire home/apt 199
## 28132 Brooklyn Private room 70
## 28133 Brooklyn Entire home/apt 115
## 28134 Brooklyn Entire home/apt 250
## 28135 Brooklyn Entire home/apt 142
## 28136 Brooklyn Private room 67
## 28137 Manhattan Private room 40
## 28138 Manhattan Entire home/apt 350
## 28139 Brooklyn Entire home/apt 160
## 28140 Brooklyn Entire home/apt 149
## 28141 Brooklyn Private room 75
## 28142 Manhattan Entire home/apt 850
## 28143 Queens Private room 75
## 28144 Manhattan Entire home/apt 400
## 28145 Manhattan Private room 95
## 28146 Brooklyn Entire home/apt 85
## 28147 Manhattan Shared room 130
## 28148 Brooklyn Entire home/apt 149
## 28149 Brooklyn Entire home/apt 90
## 28150 Brooklyn Entire home/apt 95
## 28151 Manhattan Entire home/apt 850
## 28152 Brooklyn Private room 60
## 28153 Queens Private room 65
## 28154 Brooklyn Private room 45
## 28155 Manhattan Entire home/apt 105
## 28156 Manhattan Entire home/apt 395
## 28157 Brooklyn Entire home/apt 550
## 28158 Brooklyn Private room 50
## 28159 Manhattan Entire home/apt 190
## 28160 Manhattan Entire home/apt 160
## 28161 Queens Entire home/apt 51
## 28162 Manhattan Entire home/apt 220
## 28163 Manhattan Entire home/apt 130
## 28164 Manhattan Entire home/apt 300
## 28165 Queens Private room 45
## 28166 Brooklyn Private room 79
## 28167 Manhattan Private room 55
## 28168 Brooklyn Private room 45
## 28169 Bronx Entire home/apt 50
## 28170 Manhattan Entire home/apt 200
## 28171 Brooklyn Entire home/apt 103
## 28172 Brooklyn Private room 139
## 28173 Bronx Private room 69
## 28174 Brooklyn Private room 60
## 28175 Manhattan Entire home/apt 150
## 28176 Brooklyn Private room 31
## 28177 Manhattan Private room 100
## 28178 Brooklyn Entire home/apt 650
## 28179 Manhattan Entire home/apt 210
## 28180 Bronx Private room 49
## 28181 Brooklyn Private room 30
## 28182 Queens Entire home/apt 140
## 28183 Brooklyn Private room 71
## 28184 Brooklyn Entire home/apt 60
## 28185 Brooklyn Entire home/apt 90
## 28186 Brooklyn Private room 80
## 28187 Brooklyn Entire home/apt 60
## 28188 Brooklyn Private room 109
## 28189 Brooklyn Private room 75
## 28190 Brooklyn Private room 139
## 28191 Brooklyn Private room 139
## 28192 Brooklyn Entire home/apt 350
## 28193 Brooklyn Entire home/apt 86
## 28194 Brooklyn Entire home/apt 100
## 28195 Brooklyn Private room 120
## 28196 Brooklyn Private room 139
## 28197 Manhattan Private room 150
## 28198 Manhattan Entire home/apt 161
## 28199 Manhattan Entire home/apt 245
## 28200 Manhattan Entire home/apt 800
## 28201 Manhattan Entire home/apt 350
## 28202 Brooklyn Entire home/apt 135
## 28203 Manhattan Entire home/apt 349
## 28204 Manhattan Private room 35
## 28205 Brooklyn Private room 79
## 28206 Manhattan Entire home/apt 649
## 28207 Manhattan Private room 80
## 28208 Brooklyn Entire home/apt 200
## 28209 Brooklyn Entire home/apt 225
## 28210 Brooklyn Private room 50
## 28211 Manhattan Entire home/apt 300
## 28212 Manhattan Private room 130
## 28213 Brooklyn Private room 40
## 28214 Brooklyn Entire home/apt 90
## 28215 Brooklyn Private room 50
## 28216 Manhattan Shared room 35
## 28217 Brooklyn Private room 50
## 28218 Brooklyn Private room 50
## 28219 Brooklyn Private room 50
## 28220 Manhattan Entire home/apt 250
## 28221 Brooklyn Entire home/apt 180
## 28222 Manhattan Entire home/apt 485
## 28223 Brooklyn Entire home/apt 350
## 28224 Brooklyn Entire home/apt 99
## 28225 Manhattan Private room 85
## 28226 Manhattan Entire home/apt 150
## 28227 Manhattan Entire home/apt 300
## 28228 Brooklyn Private room 40
## 28229 Brooklyn Private room 60
## 28230 Manhattan Entire home/apt 100
## 28231 Manhattan Entire home/apt 275
## 28232 Brooklyn Entire home/apt 70
## 28233 Manhattan Entire home/apt 100
## 28234 Brooklyn Entire home/apt 66
## 28235 Queens Entire home/apt 250
## 28236 Brooklyn Entire home/apt 99
## 28237 Brooklyn Entire home/apt 200
## 28238 Brooklyn Entire home/apt 100
## 28239 Brooklyn Entire home/apt 55
## 28240 Manhattan Entire home/apt 650
## 28241 Manhattan Entire home/apt 100
## 28242 Brooklyn Entire home/apt 120
## 28243 Brooklyn Entire home/apt 12
## 28244 Manhattan Private room 88
## 28245 Staten Island Private room 27
## 28246 Brooklyn Private room 85
## 28247 Manhattan Entire home/apt 150
## 28248 Manhattan Entire home/apt 150
## 28249 Brooklyn Private room 50
## 28250 Brooklyn Entire home/apt 125
## 28251 Manhattan Private room 43
## 28252 Brooklyn Entire home/apt 90
## 28253 Manhattan Entire home/apt 150
## 28254 Brooklyn Entire home/apt 110
## 28255 Queens Entire home/apt 150
## 28256 Brooklyn Private room 80
## 28257 Brooklyn Entire home/apt 120
## 28258 Manhattan Private room 130
## 28259 Brooklyn Entire home/apt 196
## 28260 Brooklyn Entire home/apt 115
## 28261 Manhattan Entire home/apt 225
## 28262 Manhattan Entire home/apt 274
## 28263 Manhattan Entire home/apt 107
## 28264 Manhattan Entire home/apt 115
## 28265 Manhattan Entire home/apt 250
## 28266 Brooklyn Private room 41
## 28267 Brooklyn Entire home/apt 125
## 28268 Brooklyn Private room 169
## 28269 Brooklyn Private room 43
## 28270 Manhattan Private room 99
## 28271 Queens Entire home/apt 66
## 28272 Brooklyn Private room 38
## 28273 Brooklyn Entire home/apt 150
## 28274 Brooklyn Shared room 49
## 28275 Manhattan Private room 120
## 28276 Manhattan Private room 75
## 28277 Manhattan Private room 88
## 28278 Manhattan Private room 300
## 28279 Manhattan Entire home/apt 205
## 28280 Brooklyn Entire home/apt 199
## 28281 Queens Private room 50
## 28282 Manhattan Private room 69
## 28283 Brooklyn Entire home/apt 85
## 28284 Manhattan Private room 150
## 28285 Manhattan Entire home/apt 250
## 28286 Brooklyn Entire home/apt 210
## 28287 Manhattan Entire home/apt 475
## 28288 Manhattan Entire home/apt 299
## 28289 Manhattan Entire home/apt 215
## 28290 Brooklyn Entire home/apt 180
## 28291 Manhattan Entire home/apt 150
## 28292 Brooklyn Private room 75
## 28293 Manhattan Private room 60
## 28294 Brooklyn Private room 75
## 28295 Manhattan Private room 150
## 28296 Queens Entire home/apt 460
## 28297 Manhattan Entire home/apt 125
## 28298 Manhattan Private room 65
## 28299 Manhattan Entire home/apt 150
## 28300 Manhattan Private room 85
## 28301 Brooklyn Private room 75
## 28302 Manhattan Private room 99
## 28303 Brooklyn Entire home/apt 159
## 28304 Brooklyn Entire home/apt 60
## 28305 Manhattan Entire home/apt 135
## 28306 Brooklyn Private room 50
## 28307 Queens Private room 65
## 28308 Brooklyn Private room 100
## 28309 Brooklyn Private room 35
## 28310 Manhattan Private room 69
## 28311 Brooklyn Entire home/apt 85
## 28312 Manhattan Private room 54
## 28313 Manhattan Entire home/apt 120
## 28314 Brooklyn Private room 75
## 28315 Queens Entire home/apt 100
## 28316 Manhattan Entire home/apt 73
## 28317 Manhattan Entire home/apt 94
## 28318 Brooklyn Entire home/apt 300
## 28319 Brooklyn Private room 65
## 28320 Brooklyn Private room 100
## 28321 Manhattan Entire home/apt 186
## 28322 Queens Entire home/apt 113
## 28323 Queens Private room 50
## 28324 Manhattan Private room 70
## 28325 Manhattan Entire home/apt 325
## 28326 Brooklyn Private room 49
## 28327 Brooklyn Private room 85
## 28328 Manhattan Entire home/apt 487
## 28329 Brooklyn Entire home/apt 49
## 28330 Brooklyn Entire home/apt 150
## 28331 Manhattan Entire home/apt 80
## 28332 Brooklyn Private room 35
## 28333 Queens Entire home/apt 90
## 28334 Manhattan Private room 34
## 28335 Brooklyn Private room 51
## 28336 Manhattan Entire home/apt 200
## 28337 Manhattan Private room 45
## 28338 Brooklyn Private room 45
## 28339 Manhattan Entire home/apt 115
## 28340 Brooklyn Private room 60
## 28341 Manhattan Entire home/apt 150
## 28342 Brooklyn Private room 33
## 28343 Brooklyn Entire home/apt 100
## 28344 Manhattan Entire home/apt 200
## 28345 Brooklyn Entire home/apt 150
## 28346 Brooklyn Entire home/apt 131
## 28347 Queens Private room 58
## 28348 Manhattan Private room 45
## 28349 Brooklyn Entire home/apt 300
## 28350 Brooklyn Entire home/apt 102
## 28351 Queens Entire home/apt 88
## 28352 Queens Private room 57
## 28353 Brooklyn Entire home/apt 209
## 28354 Brooklyn Entire home/apt 200
## 28355 Queens Entire home/apt 120
## 28356 Manhattan Private room 60
## 28357 Brooklyn Entire home/apt 58
## 28358 Manhattan Private room 200
## 28359 Manhattan Private room 120
## 28360 Manhattan Entire home/apt 128
## 28361 Brooklyn Private room 60
## 28362 Brooklyn Private room 110
## 28363 Manhattan Entire home/apt 145
## 28364 Brooklyn Private room 35
## 28365 Brooklyn Private room 75
## 28366 Manhattan Entire home/apt 300
## 28367 Brooklyn Entire home/apt 325
## 28368 Manhattan Entire home/apt 200
## 28369 Bronx Entire home/apt 50
## 28370 Brooklyn Entire home/apt 120
## 28371 Queens Private room 53
## 28372 Manhattan Entire home/apt 90
## 28373 Manhattan Entire home/apt 110
## 28374 Queens Entire home/apt 250
## 28375 Brooklyn Private room 53
## 28376 Bronx Private room 39
## 28377 Manhattan Entire home/apt 150
## 28378 Brooklyn Private room 65
## 28379 Brooklyn Private room 105
## 28380 Manhattan Entire home/apt 100
## 28381 Manhattan Entire home/apt 175
## 28382 Brooklyn Private room 50
## 28383 Manhattan Entire home/apt 455
## 28384 Brooklyn Private room 70
## 28385 Manhattan Private room 58
## 28386 Manhattan Entire home/apt 125
## 28387 Brooklyn Private room 75
## 28388 Manhattan Private room 55
## 28389 Brooklyn Shared room 29
## 28390 Brooklyn Private room 37
## 28391 Brooklyn Entire home/apt 90
## 28392 Manhattan Shared room 65
## 28393 Queens Private room 80
## 28394 Queens Entire home/apt 95
## 28395 Queens Private room 98
## 28396 Queens Private room 120
## 28397 Manhattan Private room 90
## 28398 Manhattan Entire home/apt 160
## 28399 Bronx Private room 45
## 28400 Queens Shared room 41
## 28401 Manhattan Entire home/apt 175
## 28402 Brooklyn Entire home/apt 150
## 28403 Manhattan Entire home/apt 200
## 28404 Brooklyn Private room 60
## 28405 Brooklyn Entire home/apt 80
## 28406 Brooklyn Entire home/apt 81
## 28407 Queens Private room 31
## 28408 Brooklyn Private room 47
## 28409 Brooklyn Private room 50
## 28410 Manhattan Private room 50
## 28411 Brooklyn Private room 130
## 28412 Manhattan Entire home/apt 105
## 28413 Brooklyn Private room 50
## 28414 Brooklyn Private room 35
## 28415 Manhattan Entire home/apt 115
## 28416 Brooklyn Entire home/apt 275
## 28417 Manhattan Entire home/apt 170
## 28418 Queens Entire home/apt 90
## 28419 Brooklyn Entire home/apt 130
## 28420 Manhattan Entire home/apt 190
## 28421 Manhattan Entire home/apt 150
## 28422 Manhattan Entire home/apt 143
## 28423 Manhattan Entire home/apt 200
## 28424 Manhattan Private room 55
## 28425 Queens Private room 59
## 28426 Manhattan Private room 65
## 28427 Manhattan Private room 50
## 28428 Brooklyn Entire home/apt 148
## 28429 Manhattan Private room 55
## 28430 Brooklyn Entire home/apt 230
## 28431 Manhattan Entire home/apt 250
## 28432 Brooklyn Entire home/apt 200
## 28433 Brooklyn Entire home/apt 100
## 28434 Brooklyn Entire home/apt 90
## 28435 Queens Private room 120
## 28436 Brooklyn Private room 47
## 28437 Brooklyn Private room 75
## 28438 Brooklyn Private room 80
## 28439 Brooklyn Private room 110
## 28440 Queens Private room 45
## 28441 Manhattan Entire home/apt 300
## 28442 Manhattan Entire home/apt 150
## 28443 Manhattan Entire home/apt 80
## 28444 Manhattan Entire home/apt 350
## 28445 Brooklyn Entire home/apt 250
## 28446 Brooklyn Private room 57
## 28447 Brooklyn Private room 50
## 28448 Brooklyn Entire home/apt 399
## 28449 Manhattan Entire home/apt 132
## 28450 Brooklyn Entire home/apt 150
## 28451 Brooklyn Private room 40
## 28452 Manhattan Private room 150
## 28453 Manhattan Entire home/apt 189
## 28454 Manhattan Entire home/apt 400
## 28455 Brooklyn Entire home/apt 65
## 28456 Queens Private room 100
## 28457 Manhattan Entire home/apt 250
## 28458 Manhattan Private room 100
## 28459 Brooklyn Private room 51
## 28460 Manhattan Entire home/apt 299
## 28461 Manhattan Private room 125
## 28462 Brooklyn Entire home/apt 150
## 28463 Brooklyn Private room 65
## 28464 Brooklyn Entire home/apt 295
## 28465 Manhattan Private room 60
## 28466 Manhattan Entire home/apt 195
## 28467 Brooklyn Entire home/apt 80
## 28468 Brooklyn Private room 75
## 28469 Manhattan Entire home/apt 91
## 28470 Brooklyn Private room 30
## 28471 Brooklyn Entire home/apt 57
## 28472 Brooklyn Entire home/apt 160
## 28473 Manhattan Entire home/apt 400
## 28474 Manhattan Private room 100
## 28475 Manhattan Private room 149
## 28476 Brooklyn Entire home/apt 250
## 28477 Brooklyn Private room 40
## 28478 Manhattan Entire home/apt 400
## 28479 Queens Private room 55
## 28480 Manhattan Private room 250
## 28481 Bronx Entire home/apt 100
## 28482 Bronx Private room 55
## 28483 Staten Island Entire home/apt 65
## 28484 Queens Private room 425
## 28485 Manhattan Private room 49
## 28486 Manhattan Entire home/apt 175
## 28487 Brooklyn Entire home/apt 129
## 28488 Bronx Private room 87
## 28489 Brooklyn Private room 42
## 28490 Brooklyn Entire home/apt 115
## 28491 Manhattan Entire home/apt 150
## 28492 Brooklyn Private room 50
## 28493 Manhattan Entire home/apt 374
## 28494 Brooklyn Private room 70
## 28495 Brooklyn Private room 50
## 28496 Manhattan Private room 75
## 28497 Brooklyn Private room 45
## 28498 Manhattan Entire home/apt 143
## 28499 Manhattan Entire home/apt 170
## 28500 Brooklyn Private room 42
## 28501 Brooklyn Private room 65
## 28502 Brooklyn Private room 65
## 28503 Queens Entire home/apt 112
## 28504 Brooklyn Entire home/apt 150
## 28505 Manhattan Entire home/apt 200
## 28506 Manhattan Private room 100
## 28507 Manhattan Entire home/apt 142
## 28508 Brooklyn Private room 55
## 28509 Queens Private room 50
## 28510 Manhattan Entire home/apt 185
## 28511 Brooklyn Entire home/apt 185
## 28512 Brooklyn Private room 45
## 28513 Brooklyn Entire home/apt 160
## 28514 Manhattan Entire home/apt 179
## 28515 Queens Private room 55
## 28516 Manhattan Private room 195
## 28517 Brooklyn Private room 74
## 28518 Brooklyn Entire home/apt 22
## 28519 Brooklyn Entire home/apt 175
## 28520 Brooklyn Entire home/apt 225
## 28521 Manhattan Private room 99
## 28522 Brooklyn Entire home/apt 150
## 28523 Brooklyn Entire home/apt 100
## 28524 Brooklyn Entire home/apt 88
## 28525 Queens Private room 29
## 28526 Brooklyn Entire home/apt 400
## 28527 Brooklyn Entire home/apt 85
## 28528 Manhattan Entire home/apt 140
## 28529 Brooklyn Private room 65
## 28530 Brooklyn Entire home/apt 150
## 28531 Manhattan Entire home/apt 70
## 28532 Manhattan Entire home/apt 250
## 28533 Manhattan Private room 99
## 28534 Queens Shared room 45
## 28535 Manhattan Entire home/apt 189
## 28536 Brooklyn Private room 70
## 28537 Brooklyn Private room 27
## 28538 Brooklyn Private room 80
## 28539 Manhattan Entire home/apt 450
## 28540 Brooklyn Private room 75
## 28541 Manhattan Entire home/apt 175
## 28542 Brooklyn Private room 35
## 28543 Brooklyn Private room 41
## 28544 Brooklyn Shared room 50
## 28545 Brooklyn Private room 40
## 28546 Brooklyn Entire home/apt 150
## 28547 Manhattan Entire home/apt 400
## 28548 Manhattan Private room 85
## 28549 Brooklyn Private room 100
## 28550 Manhattan Entire home/apt 150
## 28551 Staten Island Entire home/apt 149
## 28552 Manhattan Entire home/apt 210
## 28553 Manhattan Entire home/apt 150
## 28554 Manhattan Private room 50
## 28555 Brooklyn Entire home/apt 350
## 28556 Manhattan Private room 130
## 28557 Manhattan Entire home/apt 285
## 28558 Brooklyn Shared room 45
## 28559 Bronx Private room 30
## 28560 Brooklyn Private room 50
## 28561 Brooklyn Private room 50
## 28562 Manhattan Private room 250
## 28563 Manhattan Entire home/apt 110
## 28564 Queens Entire home/apt 125
## 28565 Brooklyn Private room 80
## 28566 Queens Private room 70
## 28567 Manhattan Private room 150
## 28568 Manhattan Shared room 53
## 28569 Brooklyn Private room 55
## 28570 Brooklyn Entire home/apt 647
## 28571 Manhattan Private room 95
## 28572 Brooklyn Entire home/apt 109
## 28573 Manhattan Entire home/apt 485
## 28574 Brooklyn Entire home/apt 160
## 28575 Manhattan Entire home/apt 150
## 28576 Manhattan Entire home/apt 200
## 28577 Brooklyn Private room 58
## 28578 Manhattan Entire home/apt 109
## 28579 Manhattan Private room 75
## 28580 Manhattan Private room 50
## 28581 Manhattan Entire home/apt 215
## 28582 Manhattan Entire home/apt 249
## 28583 Manhattan Entire home/apt 200
## 28584 Brooklyn Private room 56
## 28585 Brooklyn Entire home/apt 120
## 28586 Brooklyn Entire home/apt 127
## 28587 Queens Entire home/apt 83
## 28588 Brooklyn Entire home/apt 290
## 28589 Brooklyn Entire home/apt 150
## 28590 Queens Private room 39
## 28591 Queens Shared room 27
## 28592 Brooklyn Private room 56
## 28593 Manhattan Entire home/apt 200
## 28594 Bronx Entire home/apt 65
## 28595 Brooklyn Private room 50
## 28596 Brooklyn Entire home/apt 195
## 28597 Manhattan Entire home/apt 625
## 28598 Manhattan Private room 69
## 28599 Brooklyn Entire home/apt 125
## 28600 Brooklyn Entire home/apt 160
## 28601 Manhattan Entire home/apt 195
## 28602 Brooklyn Entire home/apt 250
## 28603 Manhattan Entire home/apt 125
## 28604 Brooklyn Private room 100
## 28605 Brooklyn Entire home/apt 180
## 28606 Manhattan Entire home/apt 175
## 28607 Brooklyn Private room 90
## 28608 Manhattan Private room 50
## 28609 Manhattan Entire home/apt 200
## 28610 Brooklyn Entire home/apt 90
## 28611 Brooklyn Private room 70
## 28612 Brooklyn Entire home/apt 115
## 28613 Manhattan Private room 75
## 28614 Manhattan Entire home/apt 190
## 28615 Manhattan Entire home/apt 200
## 28616 Brooklyn Private room 125
## 28617 Brooklyn Private room 33
## 28618 Brooklyn Entire home/apt 130
## 28619 Manhattan Entire home/apt 149
## 28620 Manhattan Entire home/apt 195
## 28621 Brooklyn Entire home/apt 105
## 28622 Brooklyn Shared room 40
## 28623 Brooklyn Private room 28
## 28624 Brooklyn Private room 45
## 28625 Brooklyn Entire home/apt 68
## 28626 Brooklyn Entire home/apt 150
## 28627 Brooklyn Private room 60
## 28628 Manhattan Entire home/apt 260
## 28629 Manhattan Private room 79
## 28630 Manhattan Entire home/apt 130
## 28631 Manhattan Entire home/apt 90
## 28632 Manhattan Entire home/apt 250
## 28633 Manhattan Entire home/apt 100
## 28634 Brooklyn Entire home/apt 55
## 28635 Queens Entire home/apt 280
## 28636 Brooklyn Private room 43
## 28637 Manhattan Entire home/apt 200
## 28638 Queens Private room 41
## 28639 Brooklyn Entire home/apt 89
## 28640 Brooklyn Private room 50
## 28641 Brooklyn Private room 85
## 28642 Brooklyn Private room 42
## 28643 Brooklyn Private room 85
## 28644 Brooklyn Private room 45
## 28645 Manhattan Shared room 39
## 28646 Brooklyn Private room 56
## 28647 Manhattan Entire home/apt 295
## 28648 Queens Entire home/apt 110
## 28649 Manhattan Entire home/apt 170
## 28650 Manhattan Entire home/apt 90
## 28651 Brooklyn Private room 40
## 28652 Queens Private room 50
## 28653 Brooklyn Entire home/apt 120
## 28654 Brooklyn Private room 69
## 28655 Queens Private room 100
## 28656 Brooklyn Private room 25
## 28657 Queens Entire home/apt 135
## 28658 Brooklyn Entire home/apt 120
## 28659 Bronx Entire home/apt 200
## 28660 Brooklyn Private room 35
## 28661 Manhattan Private room 70
## 28662 Brooklyn Private room 99
## 28663 Brooklyn Private room 75
## 28664 Manhattan Private room 150
## 28665 Manhattan Private room 220
## 28666 Brooklyn Entire home/apt 175
## 28667 Manhattan Shared room 90
## 28668 Brooklyn Entire home/apt 120
## 28669 Manhattan Entire home/apt 320
## 28670 Brooklyn Entire home/apt 250
## 28671 Manhattan Private room 199
## 28672 Brooklyn Entire home/apt 105
## 28673 Brooklyn Entire home/apt 110
## 28674 Manhattan Private room 99
## 28675 Queens Entire home/apt 80
## 28676 Queens Private room 59
## 28677 Manhattan Private room 200
## 28678 Brooklyn Entire home/apt 300
## 28679 Manhattan Private room 85
## 28680 Brooklyn Entire home/apt 150
## 28681 Brooklyn Entire home/apt 180
## 28682 Manhattan Private room 75
## 28683 Manhattan Entire home/apt 229
## 28684 Queens Private room 50
## 28685 Manhattan Entire home/apt 248
## 28686 Manhattan Private room 299
## 28687 Manhattan Private room 67
## 28688 Manhattan Entire home/apt 150
## 28689 Manhattan Entire home/apt 200
## 28690 Manhattan Entire home/apt 277
## 28691 Brooklyn Entire home/apt 99
## 28692 Manhattan Entire home/apt 600
## 28693 Brooklyn Private room 80
## 28694 Manhattan Entire home/apt 500
## 28695 Brooklyn Private room 175
## 28696 Queens Entire home/apt 150
## 28697 Manhattan Entire home/apt 239
## 28698 Manhattan Entire home/apt 500
## 28699 Brooklyn Entire home/apt 320
## 28700 Brooklyn Entire home/apt 125
## 28701 Queens Private room 31
## 28702 Brooklyn Entire home/apt 189
## 28703 Manhattan Private room 200
## 28704 Brooklyn Entire home/apt 120
## 28705 Manhattan Entire home/apt 150
## 28706 Queens Entire home/apt 70
## 28707 Manhattan Entire home/apt 135
## 28708 Brooklyn Private room 38
## 28709 Queens Entire home/apt 135
## 28710 Manhattan Entire home/apt 125
## 28711 Brooklyn Private room 50
## 28712 Brooklyn Private room 55
## 28713 Manhattan Private room 50
## 28714 Manhattan Entire home/apt 110
## 28715 Manhattan Shared room 70
## 28716 Brooklyn Entire home/apt 140
## 28717 Brooklyn Entire home/apt 149
## 28718 Brooklyn Private room 100
## 28719 Manhattan Private room 70
## 28720 Manhattan Entire home/apt 400
## 28721 Brooklyn Private room 40
## 28722 Manhattan Entire home/apt 220
## 28723 Queens Private room 25
## 28724 Brooklyn Private room 39
## 28725 Manhattan Entire home/apt 350
## 28726 Manhattan Entire home/apt 90
## 28727 Brooklyn Private room 30
## 28728 Brooklyn Private room 3000
## 28729 Queens Entire home/apt 359
## 28730 Brooklyn Private room 65
## 28731 Brooklyn Entire home/apt 109
## 28732 Brooklyn Private room 70
## 28733 Manhattan Private room 75
## 28734 Manhattan Entire home/apt 125
## 28735 Queens Private room 40
## 28736 Brooklyn Private room 98
## 28737 Manhattan Entire home/apt 110
## 28738 Manhattan Entire home/apt 115
## 28739 Brooklyn Entire home/apt 145
## 28740 Brooklyn Entire home/apt 89
## 28741 Brooklyn Private room 85
## 28742 Manhattan Entire home/apt 300
## 28743 Brooklyn Private room 85
## 28744 Brooklyn Entire home/apt 100
## 28745 Manhattan Entire home/apt 225
## 28746 Manhattan Private room 95
## 28747 Manhattan Entire home/apt 91
## 28748 Queens Entire home/apt 59
## 28749 Brooklyn Private room 74
## 28750 Manhattan Private room 33
## 28751 Manhattan Private room 42
## 28752 Manhattan Entire home/apt 75
## 28753 Manhattan Entire home/apt 225
## 28754 Brooklyn Private room 39
## 28755 Manhattan Entire home/apt 225
## 28756 Manhattan Entire home/apt 225
## 28757 Brooklyn Private room 100
## 28758 Brooklyn Entire home/apt 66
## 28759 Brooklyn Private room 50
## 28760 Brooklyn Shared room 32
## 28761 Brooklyn Private room 50
## 28762 Manhattan Private room 35
## 28763 Manhattan Entire home/apt 250
## 28764 Brooklyn Entire home/apt 95
## 28765 Manhattan Entire home/apt 80
## 28766 Manhattan Entire home/apt 225
## 28767 Brooklyn Entire home/apt 220
## 28768 Manhattan Private room 105
## 28769 Manhattan Private room 199
## 28770 Brooklyn Private room 53
## 28771 Queens Entire home/apt 125
## 28772 Manhattan Entire home/apt 400
## 28773 Brooklyn Private room 70
## 28774 Queens Private room 50
## 28775 Manhattan Private room 20
## 28776 Brooklyn Entire home/apt 300
## 28777 Brooklyn Entire home/apt 89
## 28778 Brooklyn Private room 59
## 28779 Manhattan Entire home/apt 221
## 28780 Brooklyn Private room 100
## 28781 Manhattan Private room 69
## 28782 Queens Entire home/apt 150
## 28783 Brooklyn Private room 275
## 28784 Brooklyn Private room 55
## 28785 Brooklyn Private room 65
## 28786 Manhattan Entire home/apt 250
## 28787 Manhattan Entire home/apt 225
## 28788 Manhattan Entire home/apt 135
## 28789 Brooklyn Entire home/apt 90
## 28790 Manhattan Entire home/apt 175
## 28791 Manhattan Entire home/apt 82
## 28792 Manhattan Private room 200
## 28793 Manhattan Entire home/apt 135
## 28794 Manhattan Private room 75
## 28795 Manhattan Entire home/apt 225
## 28796 Manhattan Private room 34
## 28797 Queens Shared room 19
## 28798 Brooklyn Shared room 35
## 28799 Brooklyn Private room 40
## 28800 Bronx Private room 38
## 28801 Manhattan Entire home/apt 249
## 28802 Manhattan Private room 115
## 28803 Brooklyn Entire home/apt 150
## 28804 Manhattan Private room 105
## 28805 Brooklyn Entire home/apt 69
## 28806 Manhattan Private room 79
## 28807 Brooklyn Private room 100
## 28808 Brooklyn Private room 80
## 28809 Queens Private room 85
## 28810 Brooklyn Entire home/apt 92
## 28811 Brooklyn Entire home/apt 100
## 28812 Brooklyn Shared room 22
## 28813 Manhattan Entire home/apt 720
## 28814 Brooklyn Private room 65
## 28815 Queens Private room 35
## 28816 Brooklyn Private room 50
## 28817 Brooklyn Private room 70
## 28818 Queens Private room 38
## 28819 Manhattan Entire home/apt 237
## 28820 Brooklyn Private room 30
## 28821 Manhattan Entire home/apt 250
## 28822 Brooklyn Entire home/apt 170
## 28823 Manhattan Entire home/apt 400
## 28824 Manhattan Entire home/apt 210
## 28825 Queens Private room 50
## 28826 Brooklyn Private room 75
## 28827 Brooklyn Private room 65
## 28828 Brooklyn Entire home/apt 85
## 28829 Brooklyn Entire home/apt 100
## 28830 Manhattan Entire home/apt 290
## 28831 Manhattan Entire home/apt 165
## 28832 Manhattan Private room 180
## 28833 Brooklyn Private room 40
## 28834 Manhattan Entire home/apt 325
## 28835 Brooklyn Entire home/apt 190
## 28836 Queens Private room 90
## 28837 Manhattan Private room 70
## 28838 Manhattan Entire home/apt 167
## 28839 Brooklyn Private room 33
## 28840 Queens Shared room 33
## 28841 Manhattan Entire home/apt 151
## 28842 Brooklyn Shared room 15
## 28843 Brooklyn Private room 72
## 28844 Manhattan Private room 150
## 28845 Brooklyn Entire home/apt 145
## 28846 Brooklyn Entire home/apt 200
## 28847 Brooklyn Private room 35
## 28848 Brooklyn Private room 48
## 28849 Brooklyn Private room 50
## 28850 Bronx Private room 30
## 28851 Manhattan Entire home/apt 125
## 28852 Queens Entire home/apt 81
## 28853 Manhattan Entire home/apt 115
## 28854 Manhattan Entire home/apt 225
## 28855 Manhattan Private room 128
## 28856 Manhattan Private room 65
## 28857 Brooklyn Private room 80
## 28858 Manhattan Entire home/apt 135
## 28859 Manhattan Entire home/apt 3000
## 28860 Manhattan Entire home/apt 240
## 28861 Brooklyn Private room 50
## 28862 Brooklyn Private room 100
## 28863 Manhattan Entire home/apt 150
## 28864 Manhattan Private room 65
## 28865 Manhattan Entire home/apt 150
## 28866 Manhattan Entire home/apt 180
## 28867 Manhattan Private room 50
## 28868 Manhattan Entire home/apt 329
## 28869 Queens Private room 138
## 28870 Brooklyn Private room 54
## 28871 Bronx Private room 50
## 28872 Brooklyn Entire home/apt 63
## 28873 Brooklyn Entire home/apt 150
## 28874 Manhattan Private room 43
## 28875 Brooklyn Entire home/apt 145
## 28876 Brooklyn Entire home/apt 160
## 28877 Brooklyn Private room 60
## 28878 Manhattan Private room 85
## 28879 Manhattan Entire home/apt 149
## 28880 Manhattan Private room 69
## 28881 Brooklyn Private room 40
## 28882 Manhattan Entire home/apt 400
## 28883 Queens Private room 150
## 28884 Manhattan Entire home/apt 350
## 28885 Brooklyn Private room 90
## 28886 Manhattan Entire home/apt 140
## 28887 Queens Private room 80
## 28888 Manhattan Private room 129
## 28889 Manhattan Entire home/apt 60
## 28890 Brooklyn Entire home/apt 110
## 28891 Staten Island Private room 75
## 28892 Brooklyn Private room 150
## 28893 Brooklyn Private room 45
## 28894 Brooklyn Entire home/apt 64
## 28895 Queens Entire home/apt 71
## 28896 Manhattan Entire home/apt 135
## 28897 Brooklyn Private room 100
## 28898 Manhattan Shared room 30
## 28899 Brooklyn Entire home/apt 110
## 28900 Manhattan Private room 200
## 28901 Manhattan Private room 200
## 28902 Brooklyn Private room 30
## 28903 Manhattan Private room 65
## 28904 Brooklyn Entire home/apt 100
## 28905 Manhattan Entire home/apt 109
## 28906 Brooklyn Private room 71
## 28907 Brooklyn Private room 70
## 28908 Manhattan Private room 70
## 28909 Manhattan Private room 85
## 28910 Manhattan Private room 100
## 28911 Queens Private room 83
## 28912 Brooklyn Entire home/apt 169
## 28913 Queens Private room 50
## 28914 Brooklyn Private room 55
## 28915 Brooklyn Private room 65
## 28916 Manhattan Entire home/apt 110
## 28917 Manhattan Entire home/apt 285
## 28918 Manhattan Entire home/apt 180
## 28919 Manhattan Private room 69
## 28920 Manhattan Entire home/apt 199
## 28921 Brooklyn Entire home/apt 95
## 28922 Brooklyn Entire home/apt 140
## 28923 Manhattan Private room 99
## 28924 Queens Private room 79
## 28925 Manhattan Entire home/apt 225
## 28926 Brooklyn Entire home/apt 149
## 28927 Brooklyn Private room 60
## 28928 Brooklyn Private room 85
## 28929 Manhattan Entire home/apt 130
## 28930 Brooklyn Entire home/apt 150
## 28931 Queens Private room 75
## 28932 Manhattan Entire home/apt 150
## 28933 Queens Private room 60
## 28934 Manhattan Private room 80
## 28935 Manhattan Entire home/apt 220
## 28936 Manhattan Entire home/apt 129
## 28937 Manhattan Entire home/apt 245
## 28938 Manhattan Entire home/apt 500
## 28939 Manhattan Entire home/apt 135
## 28940 Brooklyn Private room 190
## 28941 Brooklyn Entire home/apt 100
## 28942 Manhattan Private room 80
## 28943 Brooklyn Entire home/apt 200
## 28944 Manhattan Entire home/apt 150
## 28945 Queens Entire home/apt 120
## 28946 Manhattan Private room 2010
## 28947 Manhattan Private room 3210
## 28948 Manhattan Entire home/apt 4160
## 28949 Brooklyn Entire home/apt 117
## 28950 Brooklyn Entire home/apt 125
## 28951 Brooklyn Private room 70
## 28952 Brooklyn Private room 75
## 28953 Manhattan Entire home/apt 1046
## 28954 Brooklyn Private room 60
## 28955 Manhattan Entire home/apt 152
## 28956 Brooklyn Entire home/apt 65
## 28957 Brooklyn Private room 195
## 28958 Manhattan Private room 70
## 28959 Brooklyn Entire home/apt 225
## 28960 Brooklyn Private room 57
## 28961 Queens Entire home/apt 160
## 28962 Manhattan Entire home/apt 200
## 28963 Brooklyn Private room 29
## 28964 Bronx Private room 200
## 28965 Brooklyn Entire home/apt 149
## 28966 Brooklyn Private room 45
## 28967 Brooklyn Private room 45
## 28968 Manhattan Entire home/apt 162
## 28969 Brooklyn Entire home/apt 50
## 28970 Manhattan Entire home/apt 400
## 28971 Queens Entire home/apt 110
## 28972 Manhattan Entire home/apt 90
## 28973 Brooklyn Entire home/apt 38
## 28974 Brooklyn Entire home/apt 59
## 28975 Manhattan Entire home/apt 105
## 28976 Manhattan Entire home/apt 210
## 28977 Manhattan Entire home/apt 150
## 28978 Brooklyn Private room 250
## 28979 Manhattan Entire home/apt 170
## 28980 Brooklyn Entire home/apt 115
## 28981 Manhattan Entire home/apt 150
## 28982 Queens Private room 100
## 28983 Manhattan Shared room 42
## 28984 Queens Entire home/apt 125
## 28985 Queens Private room 50
## 28986 Manhattan Private room 130
## 28987 Queens Entire home/apt 100
## 28988 Brooklyn Private room 59
## 28989 Manhattan Entire home/apt 199
## 28990 Manhattan Private room 84
## 28991 Manhattan Entire home/apt 80
## 28992 Manhattan Private room 70
## 28993 Brooklyn Entire home/apt 90
## 28994 Manhattan Entire home/apt 75
## 28995 Manhattan Entire home/apt 150
## 28996 Manhattan Private room 87
## 28997 Manhattan Entire home/apt 140
## 28998 Queens Private room 49
## 28999 Queens Entire home/apt 105
## 29000 Brooklyn Entire home/apt 60
## 29001 Manhattan Private room 75
## 29002 Manhattan Private room 65
## 29003 Brooklyn Entire home/apt 150
## 29004 Brooklyn Entire home/apt 125
## 29005 Manhattan Private room 41
## 29006 Brooklyn Private room 100
## 29007 Manhattan Entire home/apt 249
## 29008 Manhattan Entire home/apt 250
## 29009 Queens Private room 45
## 29010 Manhattan Private room 150
## 29011 Brooklyn Private room 40
## 29012 Brooklyn Entire home/apt 170
## 29013 Manhattan Entire home/apt 299
## 29014 Brooklyn Private room 55
## 29015 Queens Private room 45
## 29016 Brooklyn Private room 49
## 29017 Queens Private room 475
## 29018 Manhattan Private room 34
## 29019 Brooklyn Entire home/apt 129
## 29020 Manhattan Private room 75
## 29021 Brooklyn Private room 95
## 29022 Manhattan Entire home/apt 180
## 29023 Brooklyn Private room 100
## 29024 Manhattan Entire home/apt 220
## 29025 Manhattan Entire home/apt 205
## 29026 Brooklyn Private room 100
## 29027 Brooklyn Entire home/apt 112
## 29028 Bronx Private room 125
## 29029 Brooklyn Entire home/apt 102
## 29030 Brooklyn Private room 40
## 29031 Brooklyn Private room 65
## 29032 Manhattan Entire home/apt 100
## 29033 Queens Entire home/apt 80
## 29034 Manhattan Entire home/apt 200
## 29035 Manhattan Entire home/apt 100
## 29036 Manhattan Entire home/apt 175
## 29037 Manhattan Entire home/apt 115
## 29038 Brooklyn Private room 45
## 29039 Manhattan Entire home/apt 70
## 29040 Brooklyn Shared room 50
## 29041 Brooklyn Private room 60
## 29042 Manhattan Private room 90
## 29043 Brooklyn Entire home/apt 110
## 29044 Manhattan Private room 65
## 29045 Brooklyn Private room 70
## 29046 Brooklyn Private room 75
## 29047 Brooklyn Private room 64
## 29048 Brooklyn Entire home/apt 120
## 29049 Manhattan Private room 95
## 29050 Brooklyn Private room 67
## 29051 Manhattan Private room 60
## 29052 Manhattan Entire home/apt 150
## 29053 Brooklyn Entire home/apt 175
## 29054 Manhattan Entire home/apt 220
## 29055 Manhattan Entire home/apt 365
## 29056 Brooklyn Entire home/apt 325
## 29057 Queens Private room 59
## 29058 Brooklyn Private room 121
## 29059 Queens Private room 50
## 29060 Brooklyn Private room 32
## 29061 Brooklyn Private room 49
## 29062 Queens Private room 50
## 29063 Queens Entire home/apt 95
## 29064 Brooklyn Private room 75
## 29065 Manhattan Private room 1000
## 29066 Manhattan Entire home/apt 191
## 29067 Brooklyn Private room 125
## 29068 Brooklyn Private room 55
## 29069 Brooklyn Entire home/apt 110
## 29070 Brooklyn Entire home/apt 250
## 29071 Brooklyn Private room 85
## 29072 Brooklyn Private room 45
## 29073 Manhattan Private room 150
## 29074 Brooklyn Entire home/apt 125
## 29075 Manhattan Entire home/apt 185
## 29076 Brooklyn Entire home/apt 104
## 29077 Brooklyn Private room 45
## 29078 Queens Entire home/apt 135
## 29079 Brooklyn Private room 55
## 29080 Queens Private room 79
## 29081 Queens Shared room 27
## 29082 Queens Private room 75
## 29083 Brooklyn Entire home/apt 135
## 29084 Manhattan Entire home/apt 110
## 29085 Brooklyn Entire home/apt 200
## 29086 Manhattan Private room 50
## 29087 Manhattan Private room 60
## 29088 Manhattan Entire home/apt 175
## 29089 Manhattan Entire home/apt 190
## 29090 Manhattan Entire home/apt 100
## 29091 Manhattan Entire home/apt 111
## 29092 Manhattan Private room 130
## 29093 Manhattan Private room 100
## 29094 Manhattan Private room 44
## 29095 Manhattan Private room 100
## 29096 Brooklyn Entire home/apt 70
## 29097 Manhattan Private room 140
## 29098 Brooklyn Entire home/apt 80
## 29099 Brooklyn Entire home/apt 179
## 29100 Manhattan Private room 47
## 29101 Manhattan Entire home/apt 160
## 29102 Brooklyn Private room 80
## 29103 Manhattan Entire home/apt 110
## 29104 Brooklyn Entire home/apt 250
## 29105 Manhattan Entire home/apt 400
## 29106 Brooklyn Private room 70
## 29107 Manhattan Entire home/apt 225
## 29108 Brooklyn Private room 80
## 29109 Brooklyn Entire home/apt 350
## 29110 Manhattan Entire home/apt 190
## 29111 Manhattan Entire home/apt 275
## 29112 Manhattan Entire home/apt 90
## 29113 Manhattan Entire home/apt 159
## 29114 Brooklyn Entire home/apt 80
## 29115 Brooklyn Private room 45
## 29116 Manhattan Private room 65
## 29117 Brooklyn Entire home/apt 118
## 29118 Queens Entire home/apt 60
## 29119 Queens Entire home/apt 57
## 29120 Brooklyn Shared room 32
## 29121 Brooklyn Shared room 29
## 29122 Brooklyn Private room 44
## 29123 Brooklyn Private room 35
## 29124 Brooklyn Entire home/apt 126
## 29125 Brooklyn Entire home/apt 200
## 29126 Manhattan Private room 120
## 29127 Brooklyn Entire home/apt 64
## 29128 Manhattan Private room 78
## 29129 Manhattan Entire home/apt 271
## 29130 Brooklyn Private room 78
## 29131 Brooklyn Entire home/apt 65
## 29132 Brooklyn Private room 38
## 29133 Brooklyn Entire home/apt 140
## 29134 Bronx Private room 187
## 29135 Brooklyn Entire home/apt 300
## 29136 Manhattan Private room 100
## 29137 Brooklyn Entire home/apt 117
## 29138 Brooklyn Entire home/apt 500
## 29139 Manhattan Entire home/apt 158
## 29140 Manhattan Private room 61
## 29141 Brooklyn Private room 60
## 29142 Brooklyn Entire home/apt 95
## 29143 Brooklyn Entire home/apt 160
## 29144 Brooklyn Entire home/apt 109
## 29145 Manhattan Private room 160
## 29146 Manhattan Entire home/apt 330
## 29147 Queens Private room 50
## 29148 Queens Private room 50
## 29149 Brooklyn Private room 23
## 29150 Brooklyn Private room 68
## 29151 Queens Private room 36
## 29152 Manhattan Entire home/apt 190
## 29153 Brooklyn Private room 140
## 29154 Manhattan Private room 185
## 29155 Manhattan Private room 50
## 29156 Brooklyn Private room 45
## 29157 Brooklyn Private room 35
## 29158 Manhattan Entire home/apt 110
## 29159 Bronx Entire home/apt 140
## 29160 Brooklyn Entire home/apt 120
## 29161 Brooklyn Entire home/apt 125
## 29162 Brooklyn Private room 50
## 29163 Manhattan Entire home/apt 130
## 29164 Manhattan Entire home/apt 150
## 29165 Queens Private room 68
## 29166 Manhattan Entire home/apt 199
## 29167 Manhattan Entire home/apt 450
## 29168 Queens Private room 76
## 29169 Manhattan Shared room 39
## 29170 Brooklyn Private room 48
## 29171 Manhattan Entire home/apt 70
## 29172 Brooklyn Entire home/apt 175
## 29173 Brooklyn Entire home/apt 120
## 29174 Manhattan Private room 100
## 29175 Brooklyn Private room 50
## 29176 Manhattan Private room 90
## 29177 Manhattan Shared room 37
## 29178 Queens Private room 40
## 29179 Bronx Entire home/apt 60
## 29180 Brooklyn Private room 53
## 29181 Brooklyn Private room 120
## 29182 Queens Entire home/apt 150
## 29183 Manhattan Entire home/apt 115
## 29184 Brooklyn Private room 59
## 29185 Brooklyn Entire home/apt 99
## 29186 Manhattan Entire home/apt 89
## 29187 Manhattan Private room 47
## 29188 Brooklyn Entire home/apt 149
## 29189 Manhattan Private room 159
## 29190 Manhattan Entire home/apt 90
## 29191 Manhattan Private room 80
## 29192 Queens Private room 50
## 29193 Manhattan Private room 60
## 29194 Manhattan Entire home/apt 240
## 29195 Queens Private room 37
## 29196 Brooklyn Private room 58
## 29197 Brooklyn Private room 70
## 29198 Brooklyn Entire home/apt 280
## 29199 Brooklyn Private room 35
## 29200 Brooklyn Entire home/apt 349
## 29201 Manhattan Entire home/apt 120
## 29202 Brooklyn Private room 40
## 29203 Manhattan Entire home/apt 450
## 29204 Manhattan Entire home/apt 250
## 29205 Brooklyn Private room 80
## 29206 Brooklyn Private room 80
## 29207 Manhattan Entire home/apt 300
## 29208 Queens Shared room 40
## 29209 Manhattan Private room 119
## 29210 Manhattan Private room 110
## 29211 Brooklyn Entire home/apt 110
## 29212 Manhattan Entire home/apt 499
## 29213 Queens Private room 99
## 29214 Manhattan Entire home/apt 499
## 29215 Staten Island Private room 40
## 29216 Brooklyn Private room 50
## 29217 Queens Entire home/apt 130
## 29218 Queens Entire home/apt 175
## 29219 Queens Private room 60
## 29220 Queens Private room 60
## 29221 Manhattan Private room 92
## 29222 Brooklyn Shared room 30
## 29223 Manhattan Private room 129
## 29224 Brooklyn Private room 34
## 29225 Manhattan Private room 95
## 29226 Brooklyn Private room 125
## 29227 Manhattan Private room 65
## 29228 Queens Private room 38
## 29229 Manhattan Entire home/apt 225
## 29230 Manhattan Private room 68
## 29231 Brooklyn Entire home/apt 65
## 29232 Manhattan Entire home/apt 180
## 29233 Queens Private room 110
## 29234 Brooklyn Private room 150
## 29235 Brooklyn Private room 32
## 29236 Brooklyn Entire home/apt 108
## 29237 Manhattan Private room 68
## 29238 Manhattan Entire home/apt 1500
## 29239 Manhattan Entire home/apt 10000
## 29240 Brooklyn Private room 75
## 29241 Brooklyn Entire home/apt 150
## 29242 Manhattan Entire home/apt 165
## 29243 Manhattan Private room 125
## 29244 Manhattan Entire home/apt 150
## 29245 Brooklyn Entire home/apt 60
## 29246 Brooklyn Private room 27
## 29247 Brooklyn Private room 50
## 29248 Manhattan Entire home/apt 199
## 29249 Brooklyn Private room 48
## 29250 Manhattan Entire home/apt 180
## 29251 Manhattan Private room 109
## 29252 Manhattan Private room 80
## 29253 Manhattan Private room 109
## 29254 Brooklyn Entire home/apt 139
## 29255 Brooklyn Private room 39
## 29256 Brooklyn Private room 80
## 29257 Brooklyn Entire home/apt 225
## 29258 Brooklyn Private room 55
## 29259 Staten Island Entire home/apt 99
## 29260 Manhattan Entire home/apt 145
## 29261 Brooklyn Entire home/apt 75
## 29262 Brooklyn Private room 85
## 29263 Brooklyn Entire home/apt 150
## 29264 Manhattan Entire home/apt 150
## 29265 Queens Private room 70
## 29266 Manhattan Private room 150
## 29267 Brooklyn Entire home/apt 140
## 29268 Manhattan Entire home/apt 160
## 29269 Manhattan Private room 78
## 29270 Bronx Private room 300
## 29271 Manhattan Entire home/apt 225
## 29272 Queens Entire home/apt 200
## 29273 Manhattan Entire home/apt 220
## 29274 Manhattan Private room 90
## 29275 Queens Private room 40
## 29276 Manhattan Entire home/apt 200
## 29277 Brooklyn Private room 40
## 29278 Manhattan Entire home/apt 240
## 29279 Manhattan Entire home/apt 150
## 29280 Brooklyn Entire home/apt 170
## 29281 Brooklyn Private room 35
## 29282 Manhattan Entire home/apt 250
## 29283 Brooklyn Entire home/apt 399
## 29284 Manhattan Entire home/apt 210
## 29285 Manhattan Entire home/apt 220
## 29286 Manhattan Entire home/apt 170
## 29287 Manhattan Entire home/apt 170
## 29288 Brooklyn Private room 90
## 29289 Manhattan Entire home/apt 80
## 29290 Manhattan Entire home/apt 96
## 29291 Queens Private room 59
## 29292 Brooklyn Private room 80
## 29293 Brooklyn Private room 39
## 29294 Brooklyn Entire home/apt 100
## 29295 Brooklyn Private room 100
## 29296 Manhattan Private room 70
## 29297 Queens Entire home/apt 80
## 29298 Manhattan Entire home/apt 235
## 29299 Brooklyn Private room 55
## 29300 Manhattan Entire home/apt 140
## 29301 Brooklyn Entire home/apt 260
## 29302 Manhattan Private room 200
## 29303 Brooklyn Private room 80
## 29304 Brooklyn Private room 78
## 29305 Manhattan Entire home/apt 208
## 29306 Brooklyn Private room 32
## 29307 Brooklyn Private room 85
## 29308 Manhattan Entire home/apt 250
## 29309 Brooklyn Entire home/apt 28
## 29310 Manhattan Private room 101
## 29311 Manhattan Entire home/apt 168
## 29312 Brooklyn Entire home/apt 100
## 29313 Brooklyn Private room 79
## 29314 Brooklyn Entire home/apt 190
## 29315 Queens Private room 30
## 29316 Brooklyn Private room 69
## 29317 Queens Private room 44
## 29318 Brooklyn Private room 45
## 29319 Brooklyn Private room 70
## 29320 Manhattan Private room 85
## 29321 Manhattan Entire home/apt 140
## 29322 Manhattan Entire home/apt 140
## 29323 Queens Private room 75
## 29324 Brooklyn Entire home/apt 400
## 29325 Brooklyn Private room 50
## 29326 Brooklyn Private room 35
## 29327 Manhattan Entire home/apt 140
## 29328 Manhattan Private room 75
## 29329 Bronx Entire home/apt 140
## 29330 Manhattan Entire home/apt 125
## 29331 Manhattan Entire home/apt 125
## 29332 Manhattan Private room 60
## 29333 Manhattan Entire home/apt 80
## 29334 Manhattan Private room 250
## 29335 Manhattan Entire home/apt 100
## 29336 Manhattan Private room 60
## 29337 Manhattan Entire home/apt 350
## 29338 Brooklyn Private room 60
## 29339 Brooklyn Private room 42
## 29340 Brooklyn Entire home/apt 60
## 29341 Queens Private room 120
## 29342 Manhattan Entire home/apt 95
## 29343 Manhattan Private room 70
## 29344 Brooklyn Private room 40
## 29345 Manhattan Private room 132
## 29346 Manhattan Private room 45
## 29347 Bronx Private room 26
## 29348 Staten Island Entire home/apt 95
## 29349 Manhattan Private room 78
## 29350 Brooklyn Private room 75
## 29351 Brooklyn Private room 75
## 29352 Brooklyn Private room 50
## 29353 Manhattan Private room 50
## 29354 Manhattan Entire home/apt 105
## 29355 Manhattan Entire home/apt 149
## 29356 Manhattan Private room 54
## 29357 Manhattan Entire home/apt 100
## 29358 Brooklyn Private room 89
## 29359 Brooklyn Entire home/apt 80
## 29360 Manhattan Entire home/apt 132
## 29361 Brooklyn Private room 50
## 29362 Brooklyn Private room 50
## 29363 Queens Private room 50
## 29364 Brooklyn Entire home/apt 300
## 29365 Queens Entire home/apt 85
## 29366 Brooklyn Private room 80
## 29367 Manhattan Private room 350
## 29368 Manhattan Private room 65
## 29369 Manhattan Entire home/apt 180
## 29370 Brooklyn Entire home/apt 111
## 29371 Brooklyn Private room 35
## 29372 Brooklyn Private room 30
## 29373 Brooklyn Private room 90
## 29374 Brooklyn Entire home/apt 89
## 29375 Manhattan Entire home/apt 255
## 29376 Brooklyn Private room 44
## 29377 Manhattan Private room 30
## 29378 Brooklyn Private room 75
## 29379 Manhattan Entire home/apt 110
## 29380 Manhattan Entire home/apt 160
## 29381 Brooklyn Entire home/apt 200
## 29382 Brooklyn Private room 60
## 29383 Brooklyn Entire home/apt 300
## 29384 Brooklyn Private room 72
## 29385 Brooklyn Private room 39
## 29386 Brooklyn Private room 75
## 29387 Brooklyn Private room 60
## 29388 Brooklyn Entire home/apt 350
## 29389 Bronx Entire home/apt 80
## 29390 Brooklyn Entire home/apt 550
## 29391 Manhattan Private room 39
## 29392 Brooklyn Private room 108
## 29393 Brooklyn Private room 38
## 29394 Brooklyn Entire home/apt 85
## 29395 Brooklyn Entire home/apt 800
## 29396 Bronx Private room 40
## 29397 Brooklyn Private room 60
## 29398 Queens Shared room 30
## 29399 Brooklyn Private room 48
## 29400 Brooklyn Entire home/apt 175
## 29401 Brooklyn Entire home/apt 175
## 29402 Manhattan Private room 88
## 29403 Brooklyn Entire home/apt 60
## 29404 Brooklyn Private room 85
## 29405 Manhattan Private room 70
## 29406 Manhattan Entire home/apt 161
## 29407 Bronx Entire home/apt 145
## 29408 Queens Private room 38
## 29409 Brooklyn Private room 150
## 29410 Brooklyn Private room 75
## 29411 Queens Private room 35
## 29412 Brooklyn Entire home/apt 70
## 29413 Brooklyn Entire home/apt 89
## 29414 Manhattan Entire home/apt 275
## 29415 Brooklyn Private room 50
## 29416 Brooklyn Private room 55
## 29417 Queens Entire home/apt 300
## 29418 Brooklyn Entire home/apt 180
## 29419 Manhattan Private room 94
## 29420 Manhattan Private room 80
## 29421 Manhattan Entire home/apt 150
## 29422 Manhattan Private room 70
## 29423 Brooklyn Entire home/apt 125
## 29424 Queens Private room 69
## 29425 Brooklyn Entire home/apt 179
## 29426 Manhattan Entire home/apt 170
## 29427 Brooklyn Entire home/apt 105
## 29428 Brooklyn Shared room 23
## 29429 Brooklyn Private room 54
## 29430 Brooklyn Private room 69
## 29431 Queens Private room 80
## 29432 Queens Shared room 30
## 29433 Queens Private room 60
## 29434 Manhattan Entire home/apt 450
## 29435 Manhattan Entire home/apt 490
## 29436 Queens Private room 78
## 29437 Brooklyn Entire home/apt 179
## 29438 Brooklyn Entire home/apt 245
## 29439 Manhattan Entire home/apt 100
## 29440 Manhattan Entire home/apt 160
## 29441 Manhattan Private room 35
## 29442 Brooklyn Private room 50
## 29443 Brooklyn Private room 45
## 29444 Brooklyn Private room 38
## 29445 Brooklyn Entire home/apt 120
## 29446 Manhattan Entire home/apt 280
## 29447 Brooklyn Entire home/apt 120
## 29448 Brooklyn Entire home/apt 175
## 29449 Brooklyn Private room 100
## 29450 Brooklyn Private room 60
## 29451 Brooklyn Private room 80
## 29452 Brooklyn Entire home/apt 175
## 29453 Manhattan Entire home/apt 130
## 29454 Brooklyn Entire home/apt 185
## 29455 Manhattan Entire home/apt 60
## 29456 Brooklyn Entire home/apt 140
## 29457 Manhattan Entire home/apt 140
## 29458 Manhattan Private room 50
## 29459 Queens Entire home/apt 95
## 29460 Brooklyn Entire home/apt 95
## 29461 Brooklyn Private room 49
## 29462 Manhattan Private room 90
## 29463 Brooklyn Private room 58
## 29464 Manhattan Entire home/apt 175
## 29465 Manhattan Private room 25
## 29466 Manhattan Private room 32
## 29467 Brooklyn Private room 85
## 29468 Queens Private room 45
## 29469 Manhattan Entire home/apt 100
## 29470 Manhattan Private room 100
## 29471 Manhattan Entire home/apt 230
## 29472 Manhattan Private room 34
## 29473 Queens Private room 65
## 29474 Brooklyn Private room 35
## 29475 Manhattan Entire home/apt 103
## 29476 Brooklyn Private room 60
## 29477 Brooklyn Private room 55
## 29478 Manhattan Private room 95
## 29479 Manhattan Entire home/apt 416
## 29480 Brooklyn Private room 45
## 29481 Manhattan Entire home/apt 99
## 29482 Manhattan Private room 125
## 29483 Manhattan Entire home/apt 75
## 29484 Manhattan Entire home/apt 200
## 29485 Brooklyn Private room 100
## 29486 Brooklyn Private room 40
## 29487 Brooklyn Private room 60
## 29488 Brooklyn Private room 97
## 29489 Queens Private room 55
## 29490 Brooklyn Entire home/apt 120
## 29491 Brooklyn Private room 39
## 29492 Manhattan Private room 38
## 29493 Queens Private room 45
## 29494 Queens Private room 60
## 29495 Manhattan Entire home/apt 225
## 29496 Queens Private room 25
## 29497 Queens Private room 25
## 29498 Brooklyn Private room 30
## 29499 Brooklyn Private room 50
## 29500 Brooklyn Private room 25
## 29501 Manhattan Entire home/apt 200
## 29502 Manhattan Entire home/apt 100
## 29503 Staten Island Entire home/apt 65
## 29504 Queens Private room 30
## 29505 Manhattan Entire home/apt 110
## 29506 Queens Entire home/apt 45
## 29507 Manhattan Entire home/apt 200
## 29508 Manhattan Entire home/apt 115
## 29509 Manhattan Private room 75
## 29510 Brooklyn Entire home/apt 89
## 29511 Brooklyn Private room 50
## 29512 Brooklyn Private room 125
## 29513 Bronx Private room 80
## 29514 Brooklyn Private room 70
## 29515 Manhattan Entire home/apt 100
## 29516 Brooklyn Entire home/apt 169
## 29517 Manhattan Entire home/apt 200
## 29518 Brooklyn Entire home/apt 300
## 29519 Queens Private room 50
## 29520 Manhattan Entire home/apt 225
## 29521 Manhattan Shared room 30
## 29522 Manhattan Entire home/apt 545
## 29523 Queens Entire home/apt 200
## 29524 Brooklyn Entire home/apt 189
## 29525 Brooklyn Private room 71
## 29526 Manhattan Entire home/apt 200
## 29527 Manhattan Private room 65
## 29528 Brooklyn Private room 85
## 29529 Manhattan Private room 125
## 29530 Manhattan Private room 395
## 29531 Brooklyn Private room 38
## 29532 Brooklyn Private room 38
## 29533 Brooklyn Private room 70
## 29534 Brooklyn Private room 74
## 29535 Brooklyn Private room 69
## 29536 Manhattan Entire home/apt 155
## 29537 Manhattan Entire home/apt 165
## 29538 Manhattan Private room 80
## 29539 Manhattan Private room 90
## 29540 Brooklyn Private room 55
## 29541 Queens Entire home/apt 150
## 29542 Manhattan Entire home/apt 170
## 29543 Manhattan Entire home/apt 95
## 29544 Brooklyn Private room 22
## 29545 Manhattan Private room 150
## 29546 Queens Entire home/apt 200
## 29547 Brooklyn Entire home/apt 130
## 29548 Manhattan Entire home/apt 173
## 29549 Brooklyn Entire home/apt 75
## 29550 Manhattan Entire home/apt 170
## 29551 Brooklyn Entire home/apt 110
## 29552 Brooklyn Private room 50
## 29553 Brooklyn Private room 55
## 29554 Manhattan Entire home/apt 135
## 29555 Manhattan Private room 85
## 29556 Brooklyn Private room 55
## 29557 Brooklyn Entire home/apt 189
## 29558 Brooklyn Private room 60
## 29559 Brooklyn Entire home/apt 100
## 29560 Brooklyn Private room 76
## 29561 Brooklyn Entire home/apt 97
## 29562 Manhattan Entire home/apt 175
## 29563 Brooklyn Entire home/apt 150
## 29564 Brooklyn Private room 42
## 29565 Manhattan Private room 175
## 29566 Queens Private room 40
## 29567 Brooklyn Private room 75
## 29568 Brooklyn Entire home/apt 75
## 29569 Brooklyn Entire home/apt 79
## 29570 Brooklyn Private room 45
## 29571 Brooklyn Private room 78
## 29572 Brooklyn Entire home/apt 160
## 29573 Brooklyn Private room 50
## 29574 Queens Private room 60
## 29575 Manhattan Private room 300
## 29576 Brooklyn Private room 55
## 29577 Manhattan Entire home/apt 800
## 29578 Manhattan Entire home/apt 170
## 29579 Manhattan Private room 120
## 29580 Manhattan Private room 99
## 29581 Brooklyn Entire home/apt 90
## 29582 Manhattan Private room 65
## 29583 Manhattan Private room 70
## 29584 Manhattan Private room 80
## 29585 Bronx Entire home/apt 40
## 29586 Queens Private room 54
## 29587 Brooklyn Private room 138
## 29588 Brooklyn Private room 66
## 29589 Manhattan Private room 35
## 29590 Queens Private room 25
## 29591 Brooklyn Shared room 55
## 29592 Bronx Private room 45
## 29593 Manhattan Private room 109
## 29594 Brooklyn Entire home/apt 110
## 29595 Brooklyn Entire home/apt 125
## 29596 Brooklyn Entire home/apt 119
## 29597 Manhattan Entire home/apt 375
## 29598 Brooklyn Private room 65
## 29599 Brooklyn Private room 75
## 29600 Brooklyn Entire home/apt 58
## 29601 Brooklyn Private room 85
## 29602 Brooklyn Private room 68
## 29603 Manhattan Entire home/apt 90
## 29604 Manhattan Private room 90
## 29605 Staten Island Entire home/apt 75
## 29606 Brooklyn Entire home/apt 130
## 29607 Brooklyn Private room 50
## 29608 Manhattan Entire home/apt 150
## 29609 Brooklyn Private room 100
## 29610 Brooklyn Private room 70
## 29611 Brooklyn Entire home/apt 345
## 29612 Brooklyn Private room 59
## 29613 Manhattan Entire home/apt 150
## 29614 Queens Private room 80
## 29615 Queens Private room 60
## 29616 Manhattan Entire home/apt 100
## 29617 Brooklyn Private room 50
## 29618 Manhattan Private room 120
## 29619 Queens Entire home/apt 120
## 29620 Manhattan Private room 48
## 29621 Manhattan Private room 78
## 29622 Queens Shared room 23
## 29623 Brooklyn Entire home/apt 175
## 29624 Brooklyn Entire home/apt 95
## 29625 Brooklyn Private room 40
## 29626 Manhattan Entire home/apt 339
## 29627 Brooklyn Entire home/apt 100
## 29628 Brooklyn Entire home/apt 79
## 29629 Queens Private room 50
## 29630 Manhattan Private room 40
## 29631 Manhattan Shared room 85
## 29632 Brooklyn Entire home/apt 129
## 29633 Brooklyn Entire home/apt 105
## 29634 Manhattan Entire home/apt 275
## 29635 Brooklyn Private room 47
## 29636 Manhattan Entire home/apt 265
## 29637 Manhattan Entire home/apt 155
## 29638 Brooklyn Private room 80
## 29639 Manhattan Entire home/apt 115
## 29640 Brooklyn Private room 35
## 29641 Brooklyn Private room 69
## 29642 Brooklyn Entire home/apt 250
## 29643 Manhattan Entire home/apt 100
## 29644 Manhattan Entire home/apt 120
## 29645 Manhattan Entire home/apt 450
## 29646 Brooklyn Private room 36
## 29647 Manhattan Private room 52
## 29648 Manhattan Entire home/apt 175
## 29649 Queens Private room 130
## 29650 Brooklyn Private room 45
## 29651 Manhattan Entire home/apt 150
## 29652 Queens Entire home/apt 228
## 29653 Brooklyn Entire home/apt 80
## 29654 Manhattan Entire home/apt 200
## 29655 Queens Private room 50
## 29656 Bronx Entire home/apt 150
## 29657 Brooklyn Private room 65
## 29658 Brooklyn Private room 115
## 29659 Manhattan Entire home/apt 180
## 29660 Brooklyn Private room 47
## 29661 Queens Private room 40
## 29662 Brooklyn Entire home/apt 1680
## 29663 Manhattan Entire home/apt 7703
## 29664 Manhattan Entire home/apt 3518
## 29665 Manhattan Entire home/apt 6419
## 29666 Brooklyn Entire home/apt 2626
## 29667 Brooklyn Entire home/apt 2103
## 29668 Manhattan Entire home/apt 75
## 29669 Brooklyn Entire home/apt 125
## 29670 Queens Private room 140
## 29671 Manhattan Entire home/apt 220
## 29672 Manhattan Private room 50
## 29673 Brooklyn Private room 30
## 29674 Manhattan Entire home/apt 980
## 29675 Brooklyn Private room 49
## 29676 Manhattan Private room 79
## 29677 Queens Private room 90
## 29678 Staten Island Entire home/apt 150
## 29679 Brooklyn Private room 69
## 29680 Brooklyn Private room 50
## 29681 Manhattan Private room 49
## 29682 Manhattan Entire home/apt 1100
## 29683 Bronx Private room 50
## 29684 Manhattan Entire home/apt 1500
## 29685 Manhattan Private room 69
## 29686 Manhattan Private room 69
## 29687 Manhattan Private room 65
## 29688 Manhattan Entire home/apt 150
## 29689 Manhattan Entire home/apt 200
## 29690 Brooklyn Entire home/apt 150
## 29691 Brooklyn Entire home/apt 110
## 29692 Brooklyn Entire home/apt 110
## 29693 Manhattan Private room 69
## 29694 Brooklyn Entire home/apt 230
## 29695 Brooklyn Private room 50
## 29696 Manhattan Private room 60
## 29697 Queens Entire home/apt 100
## 29698 Brooklyn Entire home/apt 92
## 29699 Queens Private room 98
## 29700 Brooklyn Entire home/apt 145
## 29701 Brooklyn Private room 175
## 29702 Brooklyn Private room 80
## 29703 Manhattan Private room 69
## 29704 Manhattan Private room 55
## 29705 Manhattan Private room 65
## 29706 Manhattan Private room 65
## 29707 Brooklyn Private room 40
## 29708 Brooklyn Private room 100
## 29709 Brooklyn Private room 40
## 29710 Brooklyn Private room 68
## 29711 Manhattan Entire home/apt 250
## 29712 Brooklyn Entire home/apt 66
## 29713 Brooklyn Entire home/apt 66
## 29714 Brooklyn Entire home/apt 600
## 29715 Queens Private room 60
## 29716 Brooklyn Entire home/apt 237
## 29717 Manhattan Entire home/apt 100
## 29718 Manhattan Private room 120
## 29719 Manhattan Private room 60
## 29720 Brooklyn Entire home/apt 105
## 29721 Brooklyn Entire home/apt 150
## 29722 Brooklyn Entire home/apt 125
## 29723 Brooklyn Private room 45
## 29724 Brooklyn Entire home/apt 90
## 29725 Queens Entire home/apt 175
## 29726 Brooklyn Entire home/apt 125
## 29727 Manhattan Private room 46
## 29728 Manhattan Entire home/apt 150
## 29729 Brooklyn Private room 60
## 29730 Queens Private room 70
## 29731 Bronx Private room 70
## 29732 Manhattan Private room 149
## 29733 Brooklyn Private room 50
## 29734 Queens Private room 50
## 29735 Manhattan Private room 60
## 29736 Manhattan Private room 69
## 29737 Queens Private room 44
## 29738 Brooklyn Entire home/apt 80
## 29739 Staten Island Private room 25
## 29740 Brooklyn Entire home/apt 480
## 29741 Brooklyn Private room 46
## 29742 Manhattan Entire home/apt 150
## 29743 Brooklyn Private room 55
## 29744 Brooklyn Private room 58
## 29745 Brooklyn Private room 58
## 29746 Manhattan Entire home/apt 280
## 29747 Manhattan Private room 139
## 29748 Manhattan Private room 125
## 29749 Brooklyn Entire home/apt 69
## 29750 Manhattan Entire home/apt 110
## 29751 Brooklyn Entire home/apt 275
## 29752 Brooklyn Private room 45
## 29753 Brooklyn Private room 125
## 29754 Brooklyn Entire home/apt 249
## 29755 Queens Shared room 32
## 29756 Brooklyn Entire home/apt 140
## 29757 Manhattan Entire home/apt 86
## 29758 Brooklyn Private room 50
## 29759 Manhattan Entire home/apt 165
## 29760 Manhattan Entire home/apt 150
## 29761 Brooklyn Private room 80
## 29762 Brooklyn Private room 58
## 29763 Brooklyn Private room 38
## 29764 Brooklyn Entire home/apt 350
## 29765 Brooklyn Entire home/apt 80
## 29766 Brooklyn Entire home/apt 73
## 29767 Manhattan Entire home/apt 169
## 29768 Brooklyn Private room 75
## 29769 Queens Private room 59
## 29770 Manhattan Entire home/apt 145
## 29771 Brooklyn Entire home/apt 195
## 29772 Manhattan Entire home/apt 199
## 29773 Manhattan Entire home/apt 100
## 29774 Brooklyn Private room 60
## 29775 Brooklyn Private room 45
## 29776 Manhattan Private room 90
## 29777 Queens Entire home/apt 78
## 29778 Manhattan Private room 59
## 29779 Queens Private room 37
## 29780 Manhattan Private room 110
## 29781 Brooklyn Private room 35
## 29782 Manhattan Entire home/apt 188
## 29783 Brooklyn Private room 70
## 29784 Brooklyn Private room 45
## 29785 Brooklyn Entire home/apt 169
## 29786 Manhattan Entire home/apt 275
## 29787 Queens Private room 50
## 29788 Manhattan Entire home/apt 220
## 29789 Manhattan Entire home/apt 190
## 29790 Brooklyn Private room 35
## 29791 Manhattan Private room 60
## 29792 Manhattan Entire home/apt 189
## 29793 Brooklyn Private room 45
## 29794 Brooklyn Private room 60
## 29795 Brooklyn Entire home/apt 149
## 29796 Manhattan Entire home/apt 170
## 29797 Queens Entire home/apt 199
## 29798 Queens Private room 72
## 29799 Manhattan Shared room 30
## 29800 Brooklyn Private room 60
## 29801 Manhattan Private room 300
## 29802 Queens Entire home/apt 195
## 29803 Manhattan Entire home/apt 119
## 29804 Manhattan Entire home/apt 159
## 29805 Brooklyn Private room 27
## 29806 Brooklyn Private room 50
## 29807 Brooklyn Entire home/apt 150
## 29808 Brooklyn Entire home/apt 140
## 29809 Manhattan Entire home/apt 120
## 29810 Brooklyn Private room 65
## 29811 Brooklyn Entire home/apt 98
## 29812 Staten Island Private room 39
## 29813 Brooklyn Private room 50
## 29814 Manhattan Entire home/apt 189
## 29815 Manhattan Shared room 75
## 29816 Brooklyn Entire home/apt 100
## 29817 Brooklyn Private room 36
## 29818 Brooklyn Private room 25
## 29819 Manhattan Private room 84
## 29820 Manhattan Entire home/apt 295
## 29821 Queens Private room 38
## 29822 Brooklyn Private room 35
## 29823 Manhattan Entire home/apt 220
## 29824 Manhattan Private room 70
## 29825 Brooklyn Entire home/apt 150
## 29826 Brooklyn Entire home/apt 125
## 29827 Manhattan Private room 75
## 29828 Brooklyn Entire home/apt 110
## 29829 Manhattan Shared room 60
## 29830 Brooklyn Private room 53
## 29831 Manhattan Private room 89
## 29832 Brooklyn Private room 75
## 29833 Brooklyn Private room 29
## 29834 Brooklyn Entire home/apt 128
## 29835 Manhattan Entire home/apt 130
## 29836 Brooklyn Private room 50
## 29837 Manhattan Private room 110
## 29838 Queens Private room 45
## 29839 Brooklyn Private room 90
## 29840 Brooklyn Entire home/apt 125
## 29841 Manhattan Entire home/apt 170
## 29842 Brooklyn Private room 60
## 29843 Queens Private room 89
## 29844 Brooklyn Entire home/apt 150
## 29845 Brooklyn Private room 35
## 29846 Brooklyn Private room 32
## 29847 Brooklyn Entire home/apt 69
## 29848 Queens Private room 47
## 29849 Manhattan Private room 50
## 29850 Queens Entire home/apt 150
## 29851 Manhattan Entire home/apt 175
## 29852 Brooklyn Private room 80
## 29853 Staten Island Shared room 20
## 29854 Brooklyn Entire home/apt 140
## 29855 Brooklyn Private room 150
## 29856 Manhattan Entire home/apt 299
## 29857 Brooklyn Private room 75
## 29858 Queens Entire home/apt 50
## 29859 Brooklyn Entire home/apt 57
## 29860 Brooklyn Private room 75
## 29861 Brooklyn Entire home/apt 100
## 29862 Manhattan Entire home/apt 190
## 29863 Manhattan Entire home/apt 130
## 29864 Brooklyn Private room 65
## 29865 Queens Private room 25
## 29866 Queens Entire home/apt 175
## 29867 Brooklyn Entire home/apt 450
## 29868 Queens Entire home/apt 200
## 29869 Queens Private room 55
## 29870 Manhattan Entire home/apt 400
## 29871 Brooklyn Entire home/apt 200
## 29872 Queens Entire home/apt 140
## 29873 Manhattan Private room 160
## 29874 Queens Private room 100
## 29875 Manhattan Private room 90
## 29876 Manhattan Private room 120
## 29877 Brooklyn Private room 95
## 29878 Brooklyn Entire home/apt 200
## 29879 Brooklyn Private room 169
## 29880 Queens Private room 65
## 29881 Manhattan Entire home/apt 150
## 29882 Brooklyn Private room 65
## 29883 Manhattan Entire home/apt 350
## 29884 Manhattan Entire home/apt 250
## 29885 Manhattan Private room 90
## 29886 Manhattan Entire home/apt 350
## 29887 Brooklyn Private room 65
## 29888 Brooklyn Private room 27
## 29889 Brooklyn Entire home/apt 115
## 29890 Brooklyn Private room 74
## 29891 Manhattan Private room 110
## 29892 Manhattan Entire home/apt 148
## 29893 Manhattan Entire home/apt 150
## 29894 Queens Private room 35
## 29895 Brooklyn Private room 35
## 29896 Brooklyn Entire home/apt 125
## 29897 Manhattan Private room 65
## 29898 Brooklyn Entire home/apt 150
## 29899 Manhattan Entire home/apt 150
## 29900 Brooklyn Entire home/apt 60
## 29901 Bronx Entire home/apt 69
## 29902 Manhattan Entire home/apt 70
## 29903 Queens Entire home/apt 118
## 29904 Manhattan Entire home/apt 115
## 29905 Brooklyn Private room 100
## 29906 Queens Entire home/apt 125
## 29907 Manhattan Entire home/apt 399
## 29908 Queens Private room 70
## 29909 Manhattan Entire home/apt 100
## 29910 Brooklyn Entire home/apt 100
## 29911 Manhattan Entire home/apt 495
## 29912 Manhattan Entire home/apt 120
## 29913 Brooklyn Private room 140
## 29914 Queens Private room 50
## 29915 Bronx Entire home/apt 119
## 29916 Brooklyn Entire home/apt 200
## 29917 Manhattan Entire home/apt 145
## 29918 Queens Entire home/apt 50
## 29919 Manhattan Entire home/apt 125
## 29920 Manhattan Entire home/apt 117
## 29921 Manhattan Entire home/apt 350
## 29922 Manhattan Private room 145
## 29923 Brooklyn Private room 35
## 29924 Manhattan Entire home/apt 125
## 29925 Manhattan Entire home/apt 300
## 29926 Brooklyn Entire home/apt 50
## 29927 Manhattan Entire home/apt 135
## 29928 Manhattan Entire home/apt 225
## 29929 Bronx Entire home/apt 60
## 29930 Manhattan Entire home/apt 300
## 29931 Manhattan Entire home/apt 250
## 29932 Manhattan Entire home/apt 300
## 29933 Brooklyn Entire home/apt 110
## 29934 Manhattan Entire home/apt 525
## 29935 Brooklyn Entire home/apt 104
## 29936 Brooklyn Private room 39
## 29937 Queens Private room 45
## 29938 Brooklyn Entire home/apt 178
## 29939 Brooklyn Entire home/apt 220
## 29940 Brooklyn Private room 45
## 29941 Brooklyn Private room 55
## 29942 Brooklyn Entire home/apt 97
## 29943 Queens Private room 35
## 29944 Queens Private room 80
## 29945 Brooklyn Entire home/apt 180
## 29946 Brooklyn Private room 50
## 29947 Queens Private room 68
## 29948 Brooklyn Entire home/apt 140
## 29949 Manhattan Private room 150
## 29950 Queens Entire home/apt 100
## 29951 Brooklyn Private room 42
## 29952 Brooklyn Entire home/apt 75
## 29953 Staten Island Entire home/apt 77
## 29954 Brooklyn Entire home/apt 130
## 29955 Brooklyn Entire home/apt 93
## 29956 Manhattan Entire home/apt 75
## 29957 Brooklyn Entire home/apt 130
## 29958 Brooklyn Entire home/apt 65
## 29959 Manhattan Entire home/apt 99
## 29960 Brooklyn Entire home/apt 119
## 29961 Manhattan Private room 55
## 29962 Brooklyn Private room 65
## 29963 Brooklyn Entire home/apt 250
## 29964 Brooklyn Entire home/apt 140
## 29965 Manhattan Shared room 29
## 29966 Brooklyn Private room 94
## 29967 Manhattan Entire home/apt 72
## 29968 Queens Private room 31
## 29969 Manhattan Entire home/apt 150
## 29970 Brooklyn Entire home/apt 250
## 29971 Brooklyn Private room 80
## 29972 Brooklyn Private room 80
## 29973 Manhattan Entire home/apt 150
## 29974 Queens Private room 75
## 29975 Queens Private room 49
## 29976 Manhattan Private room 85
## 29977 Queens Private room 83
## 29978 Manhattan Entire home/apt 135
## 29979 Manhattan Entire home/apt 100
## 29980 Manhattan Shared room 25
## 29981 Manhattan Entire home/apt 329
## 29982 Manhattan Private room 48
## 29983 Manhattan Entire home/apt 180
## 29984 Brooklyn Private room 55
## 29985 Manhattan Entire home/apt 365
## 29986 Manhattan Entire home/apt 150
## 29987 Brooklyn Private room 99
## 29988 Brooklyn Private room 109
## 29989 Brooklyn Private room 40
## 29990 Manhattan Entire home/apt 325
## 29991 Brooklyn Private room 58
## 29992 Queens Private room 76
## 29993 Queens Entire home/apt 289
## 29994 Queens Entire home/apt 65
## 29995 Manhattan Entire home/apt 850
## 29996 Manhattan Entire home/apt 160
## 29997 Manhattan Entire home/apt 225
## 29998 Brooklyn Entire home/apt 90
## 29999 Brooklyn Private room 70
## 30000 Brooklyn Private room 45
## 30001 Manhattan Entire home/apt 100
## 30002 Manhattan Entire home/apt 90
## 30003 Bronx Private room 35
## 30004 Bronx Private room 41
## 30005 Brooklyn Entire home/apt 149
## 30006 Bronx Private room 45
## 30007 Manhattan Private room 40
## 30008 Queens Entire home/apt 90
## 30009 Bronx Private room 29
## 30010 Queens Entire home/apt 257
## 30011 Manhattan Entire home/apt 295
## 30012 Manhattan Private room 70
## 30013 Brooklyn Private room 70
## 30014 Manhattan Private room 65
## 30015 Brooklyn Private room 62
## 30016 Queens Entire home/apt 60
## 30017 Manhattan Private room 95
## 30018 Manhattan Entire home/apt 225
## 30019 Queens Private room 49
## 30020 Brooklyn Entire home/apt 325
## 30021 Manhattan Private room 100
## 30022 Manhattan Entire home/apt 67
## 30023 Brooklyn Private room 90
## 30024 Brooklyn Private room 45
## 30025 Manhattan Entire home/apt 495
## 30026 Manhattan Private room 112
## 30027 Manhattan Entire home/apt 160
## 30028 Bronx Private room 37
## 30029 Brooklyn Entire home/apt 104
## 30030 Manhattan Private room 95
## 30031 Bronx Private room 80
## 30032 Manhattan Entire home/apt 115
## 30033 Brooklyn Entire home/apt 148
## 30034 Brooklyn Entire home/apt 75
## 30035 Brooklyn Entire home/apt 173
## 30036 Bronx Private room 65
## 30037 Queens Entire home/apt 75
## 30038 Brooklyn Entire home/apt 250
## 30039 Manhattan Entire home/apt 160
## 30040 Manhattan Entire home/apt 300
## 30041 Manhattan Entire home/apt 169
## 30042 Brooklyn Private room 60
## 30043 Brooklyn Entire home/apt 84
## 30044 Manhattan Entire home/apt 115
## 30045 Queens Entire home/apt 106
## 30046 Brooklyn Entire home/apt 100
## 30047 Queens Private room 100
## 30048 Brooklyn Private room 50
## 30049 Brooklyn Entire home/apt 55
## 30050 Queens Entire home/apt 120
## 30051 Brooklyn Entire home/apt 120
## 30052 Manhattan Entire home/apt 127
## 30053 Manhattan Entire home/apt 160
## 30054 Manhattan Entire home/apt 200
## 30055 Brooklyn Entire home/apt 117
## 30056 Bronx Entire home/apt 250
## 30057 Brooklyn Entire home/apt 76
## 30058 Manhattan Private room 30
## 30059 Brooklyn Private room 40
## 30060 Manhattan Private room 92
## 30061 Brooklyn Entire home/apt 175
## 30062 Brooklyn Entire home/apt 200
## 30063 Staten Island Entire home/apt 50
## 30064 Manhattan Entire home/apt 180
## 30065 Brooklyn Entire home/apt 100
## 30066 Manhattan Entire home/apt 117
## 30067 Manhattan Entire home/apt 130
## 30068 Queens Private room 59
## 30069 Brooklyn Entire home/apt 94
## 30070 Queens Entire home/apt 63
## 30071 Brooklyn Private room 55
## 30072 Queens Entire home/apt 69
## 30073 Queens Private room 80
## 30074 Bronx Shared room 20
## 30075 Brooklyn Private room 40
## 30076 Manhattan Entire home/apt 127
## 30077 Manhattan Private room 63
## 30078 Brooklyn Private room 95
## 30079 Manhattan Private room 75
## 30080 Queens Private room 50
## 30081 Queens Shared room 1250
## 30082 Manhattan Private room 80
## 30083 Queens Private room 40
## 30084 Manhattan Entire home/apt 145
## 30085 Manhattan Entire home/apt 135
## 30086 Queens Private room 44
## 30087 Brooklyn Private room 70
## 30088 Brooklyn Private room 47
## 30089 Brooklyn Private room 42
## 30090 Manhattan Shared room 33
## 30091 Brooklyn Private room 70
## 30092 Brooklyn Entire home/apt 350
## 30093 Manhattan Private room 85
## 30094 Manhattan Private room 90
## 30095 Manhattan Private room 120
## 30096 Manhattan Entire home/apt 100
## 30097 Manhattan Entire home/apt 145
## 30098 Brooklyn Private room 75
## 30099 Manhattan Entire home/apt 250
## 30100 Manhattan Entire home/apt 150
## 30101 Manhattan Private room 65
## 30102 Manhattan Entire home/apt 159
## 30103 Brooklyn Private room 65
## 30104 Manhattan Private room 159
## 30105 Brooklyn Entire home/apt 200
## 30106 Queens Private room 60
## 30107 Queens Private room 46
## 30108 Manhattan Entire home/apt 150
## 30109 Brooklyn Entire home/apt 69
## 30110 Brooklyn Private room 26
## 30111 Brooklyn Entire home/apt 190
## 30112 Brooklyn Private room 50
## 30113 Brooklyn Private room 65
## 30114 Brooklyn Private room 80
## 30115 Brooklyn Entire home/apt 125
## 30116 Staten Island Entire home/apt 71
## 30117 Brooklyn Entire home/apt 150
## 30118 Queens Entire home/apt 80
## 30119 Brooklyn Entire home/apt 70
## 30120 Manhattan Entire home/apt 80
## 30121 Brooklyn Private room 43
## 30122 Manhattan Entire home/apt 210
## 30123 Brooklyn Entire home/apt 133
## 30124 Brooklyn Private room 50
## 30125 Queens Entire home/apt 100
## 30126 Manhattan Private room 47
## 30127 Manhattan Private room 99
## 30128 Brooklyn Entire home/apt 150
## 30129 Brooklyn Private room 50
## 30130 Manhattan Shared room 80
## 30131 Brooklyn Entire home/apt 200
## 30132 Bronx Private room 47
## 30133 Brooklyn Private room 44
## 30134 Brooklyn Private room 67
## 30135 Queens Private room 60
## 30136 Brooklyn Private room 50
## 30137 Staten Island Entire home/apt 245
## 30138 Brooklyn Private room 29
## 30139 Brooklyn Entire home/apt 180
## 30140 Manhattan Entire home/apt 189
## 30141 Brooklyn Private room 41
## 30142 Queens Private room 60
## 30143 Brooklyn Entire home/apt 120
## 30144 Manhattan Entire home/apt 123
## 30145 Manhattan Entire home/apt 339
## 30146 Brooklyn Entire home/apt 125
## 30147 Queens Private room 30
## 30148 Bronx Private room 54
## 30149 Brooklyn Entire home/apt 75
## 30150 Manhattan Entire home/apt 92
## 30151 Brooklyn Entire home/apt 130
## 30152 Brooklyn Private room 55
## 30153 Brooklyn Private room 35
## 30154 Brooklyn Entire home/apt 75
## 30155 Manhattan Private room 50
## 30156 Manhattan Entire home/apt 180
## 30157 Brooklyn Entire home/apt 89
## 30158 Manhattan Private room 93
## 30159 Manhattan Entire home/apt 289
## 30160 Queens Entire home/apt 85
## 30161 Manhattan Private room 80
## 30162 Brooklyn Entire home/apt 150
## 30163 Brooklyn Private room 100
## 30164 Manhattan Shared room 35
## 30165 Brooklyn Entire home/apt 175
## 30166 Brooklyn Entire home/apt 113
## 30167 Manhattan Private room 69
## 30168 Brooklyn Private room 50
## 30169 Manhattan Entire home/apt 105
## 30170 Queens Private room 55
## 30171 Brooklyn Entire home/apt 100
## 30172 Queens Entire home/apt 109
## 30173 Manhattan Entire home/apt 500
## 30174 Brooklyn Private room 150
## 30175 Brooklyn Entire home/apt 125
## 30176 Bronx Private room 34
## 30177 Brooklyn Entire home/apt 260
## 30178 Brooklyn Private room 68
## 30179 Manhattan Private room 250
## 30180 Brooklyn Entire home/apt 200
## 30181 Manhattan Entire home/apt 200
## 30182 Brooklyn Entire home/apt 125
## 30183 Queens Entire home/apt 199
## 30184 Brooklyn Private room 68
## 30185 Brooklyn Entire home/apt 37
## 30186 Brooklyn Entire home/apt 60
## 30187 Manhattan Entire home/apt 300
## 30188 Brooklyn Entire home/apt 87
## 30189 Manhattan Entire home/apt 500
## 30190 Brooklyn Entire home/apt 160
## 30191 Manhattan Entire home/apt 145
## 30192 Staten Island Private room 40
## 30193 Brooklyn Private room 50
## 30194 Manhattan Shared room 60
## 30195 Brooklyn Private room 40
## 30196 Queens Private room 70
## 30197 Manhattan Entire home/apt 100
## 30198 Manhattan Entire home/apt 172
## 30199 Manhattan Private room 75
## 30200 Manhattan Entire home/apt 118
## 30201 Manhattan Entire home/apt 240
## 30202 Bronx Private room 73
## 30203 Brooklyn Private room 58
## 30204 Staten Island Private room 60
## 30205 Queens Shared room 34
## 30206 Queens Entire home/apt 60
## 30207 Brooklyn Entire home/apt 125
## 30208 Manhattan Private room 79
## 30209 Manhattan Private room 55
## 30210 Manhattan Private room 165
## 30211 Brooklyn Private room 45
## 30212 Manhattan Private room 70
## 30213 Queens Entire home/apt 93
## 30214 Queens Private room 49
## 30215 Queens Entire home/apt 65
## 30216 Manhattan Private room 140
## 30217 Manhattan Private room 700
## 30218 Manhattan Private room 100
## 30219 Manhattan Private room 125
## 30220 Manhattan Entire home/apt 295
## 30221 Queens Private room 120
## 30222 Brooklyn Private room 75
## 30223 Brooklyn Shared room 75
## 30224 Queens Shared room 30
## 30225 Manhattan Entire home/apt 127
## 30226 Brooklyn Private room 60
## 30227 Staten Island Entire home/apt 165
## 30228 Brooklyn Private room 59
## 30229 Brooklyn Private room 100
## 30230 Brooklyn Entire home/apt 105
## 30231 Brooklyn Private room 58
## 30232 Manhattan Entire home/apt 125
## 30233 Queens Shared room 30
## 30234 Queens Shared room 30
## 30235 Manhattan Entire home/apt 146
## 30236 Brooklyn Private room 52
## 30237 Manhattan Private room 35
## 30238 Brooklyn Private room 62
## 30239 Brooklyn Private room 43
## 30240 Brooklyn Private room 32
## 30241 Brooklyn Private room 88
## 30242 Brooklyn Private room 80
## 30243 Manhattan Entire home/apt 149
## 30244 Manhattan Entire home/apt 169
## 30245 Queens Private room 85
## 30246 Manhattan Entire home/apt 395
## 30247 Manhattan Private room 60
## 30248 Brooklyn Entire home/apt 100
## 30249 Brooklyn Private room 50
## 30250 Brooklyn Private room 35
## 30251 Brooklyn Entire home/apt 99
## 30252 Manhattan Shared room 75
## 30253 Manhattan Private room 60
## 30254 Queens Private room 46
## 30255 Brooklyn Entire home/apt 175
## 30256 Queens Entire home/apt 120
## 30257 Manhattan Entire home/apt 179
## 30258 Brooklyn Entire home/apt 1000
## 30259 Manhattan Entire home/apt 120
## 30260 Brooklyn Entire home/apt 2000
## 30261 Brooklyn Entire home/apt 2500
## 30262 Brooklyn Private room 69
## 30263 Manhattan Private room 98
## 30264 Brooklyn Private room 100
## 30265 Manhattan Entire home/apt 117
## 30266 Brooklyn Entire home/apt 115
## 30267 Brooklyn Private room 45
## 30268 Manhattan Private room 149
## 30269 Manhattan Entire home/apt 8500
## 30270 Brooklyn Entire home/apt 175
## 30271 Brooklyn Private room 80
## 30272 Queens Entire home/apt 125
## 30273 Manhattan Entire home/apt 125
## 30274 Brooklyn Private room 99
## 30275 Manhattan Private room 115
## 30276 Brooklyn Entire home/apt 96
## 30277 Brooklyn Private room 150
## 30278 Manhattan Private room 67
## 30279 Brooklyn Entire home/apt 225
## 30280 Queens Private room 36
## 30281 Manhattan Private room 62
## 30282 Brooklyn Private room 35
## 30283 Brooklyn Entire home/apt 175
## 30284 Manhattan Shared room 32
## 30285 Manhattan Private room 39
## 30286 Manhattan Private room 60
## 30287 Manhattan Private room 110
## 30288 Brooklyn Private room 47
## 30289 Brooklyn Private room 59
## 30290 Brooklyn Private room 30
## 30291 Brooklyn Entire home/apt 139
## 30292 Brooklyn Private room 70
## 30293 Manhattan Entire home/apt 110
## 30294 Manhattan Private room 81
## 30295 Brooklyn Private room 85
## 30296 Manhattan Entire home/apt 68
## 30297 Brooklyn Entire home/apt 95
## 30298 Brooklyn Private room 80
## 30299 Manhattan Entire home/apt 409
## 30300 Manhattan Private room 60
## 30301 Manhattan Entire home/apt 400
## 30302 Manhattan Private room 80
## 30303 Manhattan Entire home/apt 66
## 30304 Brooklyn Entire home/apt 200
## 30305 Manhattan Private room 50
## 30306 Manhattan Private room 95
## 30307 Brooklyn Shared room 29
## 30308 Brooklyn Private room 60
## 30309 Queens Entire home/apt 90
## 30310 Manhattan Entire home/apt 240
## 30311 Brooklyn Entire home/apt 162
## 30312 Queens Private room 46
## 30313 Staten Island Private room 31
## 30314 Queens Private room 100
## 30315 Brooklyn Entire home/apt 159
## 30316 Brooklyn Private room 50
## 30317 Brooklyn Entire home/apt 70
## 30318 Brooklyn Private room 35
## 30319 Brooklyn Private room 59
## 30320 Brooklyn Entire home/apt 150
## 30321 Queens Private room 80
## 30322 Manhattan Entire home/apt 200
## 30323 Manhattan Entire home/apt 225
## 30324 Manhattan Entire home/apt 225
## 30325 Queens Entire home/apt 100
## 30326 Brooklyn Private room 96
## 30327 Queens Private room 60
## 30328 Queens Private room 60
## 30329 Brooklyn Entire home/apt 300
## 30330 Manhattan Entire home/apt 145
## 30331 Manhattan Private room 335
## 30332 Queens Private room 75
## 30333 Brooklyn Private room 80
## 30334 Brooklyn Entire home/apt 155
## 30335 Manhattan Entire home/apt 100
## 30336 Brooklyn Entire home/apt 150
## 30337 Brooklyn Entire home/apt 120
## 30338 Manhattan Entire home/apt 225
## 30339 Manhattan Entire home/apt 175
## 30340 Manhattan Private room 75
## 30341 Manhattan Private room 89
## 30342 Brooklyn Private room 55
## 30343 Manhattan Private room 100
## 30344 Queens Private room 60
## 30345 Queens Private room 60
## 30346 Manhattan Shared room 77
## 30347 Brooklyn Private room 50
## 30348 Brooklyn Entire home/apt 250
## 30349 Manhattan Private room 80
## 30350 Brooklyn Private room 43
## 30351 Manhattan Private room 99
## 30352 Brooklyn Private room 43
## 30353 Brooklyn Private room 43
## 30354 Staten Island Entire home/apt 60
## 30355 Brooklyn Private room 52
## 30356 Brooklyn Entire home/apt 110
## 30357 Manhattan Private room 60
## 30358 Brooklyn Shared room 26
## 30359 Queens Private room 46
## 30360 Brooklyn Entire home/apt 200
## 30361 Manhattan Entire home/apt 150
## 30362 Manhattan Private room 80
## 30363 Bronx Private room 65
## 30364 Manhattan Entire home/apt 130
## 30365 Manhattan Private room 90
## 30366 Manhattan Shared room 75
## 30367 Brooklyn Private room 40
## 30368 Queens Private room 47
## 30369 Manhattan Entire home/apt 450
## 30370 Brooklyn Entire home/apt 150
## 30371 Brooklyn Entire home/apt 110
## 30372 Brooklyn Private room 101
## 30373 Queens Entire home/apt 135
## 30374 Brooklyn Private room 55
## 30375 Queens Private room 51
## 30376 Queens Private room 39
## 30377 Queens Private room 37
## 30378 Queens Private room 37
## 30379 Queens Private room 37
## 30380 Queens Private room 75
## 30381 Brooklyn Private room 25
## 30382 Manhattan Entire home/apt 130
## 30383 Manhattan Entire home/apt 479
## 30384 Queens Private room 150
## 30385 Queens Private room 89
## 30386 Brooklyn Entire home/apt 220
## 30387 Brooklyn Entire home/apt 175
## 30388 Manhattan Private room 36
## 30389 Queens Private room 49
## 30390 Queens Entire home/apt 135
## 30391 Brooklyn Entire home/apt 84
## 30392 Queens Private room 60
## 30393 Manhattan Entire home/apt 170
## 30394 Manhattan Entire home/apt 126
## 30395 Brooklyn Private room 100
## 30396 Manhattan Private room 55
## 30397 Manhattan Entire home/apt 159
## 30398 Brooklyn Private room 90
## 30399 Brooklyn Entire home/apt 90
## 30400 Queens Private room 30
## 30401 Brooklyn Entire home/apt 325
## 30402 Manhattan Entire home/apt 250
## 30403 Manhattan Entire home/apt 550
## 30404 Brooklyn Private room 70
## 30405 Bronx Private room 80
## 30406 Manhattan Entire home/apt 150
## 30407 Bronx Private room 80
## 30408 Manhattan Private room 83
## 30409 Brooklyn Private room 80
## 30410 Queens Shared room 50
## 30411 Brooklyn Private room 60
## 30412 Queens Private room 40
## 30413 Manhattan Entire home/apt 165
## 30414 Brooklyn Entire home/apt 130
## 30415 Brooklyn Private room 65
## 30416 Brooklyn Private room 50
## 30417 Brooklyn Entire home/apt 60
## 30418 Brooklyn Private room 42
## 30419 Manhattan Entire home/apt 158
## 30420 Manhattan Entire home/apt 174
## 30421 Queens Entire home/apt 65
## 30422 Manhattan Entire home/apt 380
## 30423 Brooklyn Entire home/apt 110
## 30424 Brooklyn Entire home/apt 145
## 30425 Brooklyn Private room 77
## 30426 Brooklyn Private room 99
## 30427 Manhattan Private room 89
## 30428 Manhattan Private room 98
## 30429 Manhattan Entire home/apt 305
## 30430 Manhattan Shared room 75
## 30431 Manhattan Shared room 70
## 30432 Brooklyn Private room 68
## 30433 Brooklyn Entire home/apt 450
## 30434 Brooklyn Private room 40
## 30435 Brooklyn Entire home/apt 75
## 30436 Brooklyn Private room 50
## 30437 Manhattan Entire home/apt 200
## 30438 Manhattan Entire home/apt 290
## 30439 Bronx Private room 50
## 30440 Brooklyn Entire home/apt 175
## 30441 Brooklyn Entire home/apt 125
## 30442 Manhattan Entire home/apt 96
## 30443 Manhattan Entire home/apt 250
## 30444 Manhattan Entire home/apt 135
## 30445 Brooklyn Entire home/apt 140
## 30446 Brooklyn Private room 45
## 30447 Brooklyn Private room 75
## 30448 Manhattan Entire home/apt 220
## 30449 Manhattan Entire home/apt 186
## 30450 Brooklyn Private room 70
## 30451 Manhattan Entire home/apt 175
## 30452 Brooklyn Private room 55
## 30453 Queens Entire home/apt 95
## 30454 Brooklyn Private room 640
## 30455 Queens Entire home/apt 278
## 30456 Manhattan Entire home/apt 125
## 30457 Manhattan Entire home/apt 150
## 30458 Queens Private room 65
## 30459 Brooklyn Private room 43
## 30460 Brooklyn Shared room 250
## 30461 Brooklyn Entire home/apt 285
## 30462 Queens Private room 65
## 30463 Manhattan Entire home/apt 85
## 30464 Manhattan Private room 120
## 30465 Manhattan Entire home/apt 165
## 30466 Brooklyn Private room 39
## 30467 Manhattan Private room 39
## 30468 Brooklyn Private room 40
## 30469 Manhattan Entire home/apt 250
## 30470 Brooklyn Entire home/apt 140
## 30471 Brooklyn Private room 60
## 30472 Brooklyn Entire home/apt 250
## 30473 Manhattan Entire home/apt 200
## 30474 Queens Entire home/apt 135
## 30475 Queens Entire home/apt 120
## 30476 Brooklyn Private room 48
## 30477 Queens Entire home/apt 200
## 30478 Manhattan Private room 55
## 30479 Brooklyn Entire home/apt 86
## 30480 Manhattan Entire home/apt 130
## 30481 Brooklyn Entire home/apt 112
## 30482 Brooklyn Private room 70
## 30483 Manhattan Entire home/apt 275
## 30484 Brooklyn Entire home/apt 150
## 30485 Manhattan Entire home/apt 175
## 30486 Brooklyn Entire home/apt 378
## 30487 Manhattan Entire home/apt 150
## 30488 Brooklyn Private room 65
## 30489 Bronx Entire home/apt 85
## 30490 Staten Island Entire home/apt 57
## 30491 Manhattan Private room 46
## 30492 Queens Entire home/apt 190
## 30493 Manhattan Private room 70
## 30494 Brooklyn Private room 60
## 30495 Manhattan Entire home/apt 125
## 30496 Brooklyn Entire home/apt 175
## 30497 Manhattan Private room 100
## 30498 Manhattan Entire home/apt 245
## 30499 Brooklyn Entire home/apt 68
## 30500 Brooklyn Entire home/apt 85
## 30501 Brooklyn Entire home/apt 95
## 30502 Manhattan Private room 110
## 30503 Brooklyn Private room 74
## 30504 Manhattan Private room 53
## 30505 Manhattan Private room 45
## 30506 Brooklyn Private room 125
## 30507 Manhattan Private room 95
## 30508 Brooklyn Private room 45
## 30509 Brooklyn Private room 250
## 30510 Manhattan Entire home/apt 300
## 30511 Brooklyn Entire home/apt 148
## 30512 Queens Private room 55
## 30513 Bronx Private room 47
## 30514 Manhattan Entire home/apt 250
## 30515 Manhattan Entire home/apt 115
## 30516 Brooklyn Private room 55
## 30517 Brooklyn Entire home/apt 140
## 30518 Bronx Entire home/apt 240
## 30519 Manhattan Entire home/apt 140
## 30520 Queens Private room 120
## 30521 Brooklyn Entire home/apt 200
## 30522 Brooklyn Shared room 50
## 30523 Brooklyn Private room 49
## 30524 Brooklyn Entire home/apt 175
## 30525 Manhattan Entire home/apt 180
## 30526 Queens Private room 70
## 30527 Manhattan Entire home/apt 400
## 30528 Manhattan Entire home/apt 199
## 30529 Manhattan Entire home/apt 194
## 30530 Manhattan Entire home/apt 500
## 30531 Manhattan Private room 105
## 30532 Manhattan Private room 70
## 30533 Brooklyn Private room 50
## 30534 Manhattan Entire home/apt 187
## 30535 Manhattan Entire home/apt 250
## 30536 Manhattan Private room 53
## 30537 Brooklyn Private room 50
## 30538 Brooklyn Entire home/apt 100
## 30539 Brooklyn Private room 65
## 30540 Manhattan Private room 110
## 30541 Brooklyn Private room 36
## 30542 Queens Private room 40
## 30543 Manhattan Entire home/apt 185
## 30544 Brooklyn Entire home/apt 175
## 30545 Brooklyn Private room 65
## 30546 Brooklyn Private room 42
## 30547 Brooklyn Shared room 25
## 30548 Brooklyn Private room 72
## 30549 Manhattan Private room 45
## 30550 Brooklyn Entire home/apt 77
## 30551 Manhattan Private room 120
## 30552 Brooklyn Entire home/apt 70
## 30553 Queens Private room 35
## 30554 Manhattan Entire home/apt 200
## 30555 Queens Private room 70
## 30556 Brooklyn Private room 100
## 30557 Manhattan Private room 179
## 30558 Manhattan Entire home/apt 110
## 30559 Manhattan Entire home/apt 374
## 30560 Manhattan Entire home/apt 133
## 30561 Brooklyn Entire home/apt 175
## 30562 Brooklyn Private room 42
## 30563 Manhattan Private room 350
## 30564 Queens Entire home/apt 200
## 30565 Brooklyn Private room 65
## 30566 Brooklyn Private room 55
## 30567 Brooklyn Entire home/apt 150
## 30568 Manhattan Private room 115
## 30569 Manhattan Shared room 75
## 30570 Brooklyn Private room 62
## 30571 Manhattan Private room 139
## 30572 Manhattan Entire home/apt 150
## 30573 Brooklyn Private room 75
## 30574 Queens Private room 45
## 30575 Manhattan Private room 90
## 30576 Queens Entire home/apt 113
## 30577 Brooklyn Private room 100
## 30578 Brooklyn Entire home/apt 186
## 30579 Queens Private room 60
## 30580 Bronx Private room 34
## 30581 Queens Private room 72
## 30582 Brooklyn Private room 42
## 30583 Brooklyn Entire home/apt 250
## 30584 Manhattan Entire home/apt 120
## 30585 Manhattan Entire home/apt 120
## 30586 Manhattan Entire home/apt 107
## 30587 Manhattan Entire home/apt 137
## 30588 Manhattan Entire home/apt 163
## 30589 Manhattan Entire home/apt 153
## 30590 Manhattan Entire home/apt 120
## 30591 Manhattan Entire home/apt 137
## 30592 Manhattan Entire home/apt 120
## 30593 Manhattan Entire home/apt 163
## 30594 Manhattan Entire home/apt 153
## 30595 Manhattan Entire home/apt 137
## 30596 Manhattan Entire home/apt 120
## 30597 Manhattan Entire home/apt 208
## 30598 Manhattan Entire home/apt 153
## 30599 Manhattan Entire home/apt 163
## 30600 Brooklyn Entire home/apt 110
## 30601 Manhattan Private room 400
## 30602 Manhattan Private room 65
## 30603 Bronx Entire home/apt 360
## 30604 Manhattan Private room 120
## 30605 Brooklyn Entire home/apt 95
## 30606 Brooklyn Private room 50
## 30607 Brooklyn Private room 65
## 30608 Bronx Shared room 26
## 30609 Brooklyn Entire home/apt 189
## 30610 Brooklyn Private room 60
## 30611 Brooklyn Private room 150
## 30612 Manhattan Entire home/apt 400
## 30613 Manhattan Private room 90
## 30614 Manhattan Private room 400
## 30615 Manhattan Entire home/apt 245
## 30616 Manhattan Private room 100
## 30617 Brooklyn Entire home/apt 125
## 30618 Manhattan Entire home/apt 220
## 30619 Brooklyn Private room 49
## 30620 Queens Private room 55
## 30621 Brooklyn Entire home/apt 250
## 30622 Manhattan Private room 110
## 30623 Queens Private room 45
## 30624 Queens Private room 100
## 30625 Manhattan Entire home/apt 175
## 30626 Manhattan Private room 81
## 30627 Manhattan Shared room 75
## 30628 Brooklyn Shared room 37
## 30629 Brooklyn Shared room 32
## 30630 Manhattan Entire home/apt 200
## 30631 Brooklyn Entire home/apt 120
## 30632 Brooklyn Entire home/apt 150
## 30633 Brooklyn Private room 70
## 30634 Brooklyn Private room 40
## 30635 Manhattan Private room 108
## 30636 Manhattan Entire home/apt 91
## 30637 Brooklyn Private room 140
## 30638 Manhattan Entire home/apt 212
## 30639 Manhattan Private room 105
## 30640 Manhattan Private room 147
## 30641 Manhattan Entire home/apt 205
## 30642 Manhattan Entire home/apt 92
## 30643 Brooklyn Entire home/apt 139
## 30644 Queens Private room 100
## 30645 Manhattan Private room 55
## 30646 Manhattan Entire home/apt 80
## 30647 Brooklyn Private room 75
## 30648 Bronx Private room 40
## 30649 Brooklyn Entire home/apt 400
## 30650 Manhattan Entire home/apt 205
## 30651 Manhattan Private room 70
## 30652 Manhattan Private room 80
## 30653 Manhattan Entire home/apt 220
## 30654 Manhattan Entire home/apt 215
## 30655 Manhattan Private room 119
## 30656 Brooklyn Private room 44
## 30657 Manhattan Entire home/apt 199
## 30658 Manhattan Entire home/apt 190
## 30659 Brooklyn Private room 45
## 30660 Queens Private room 60
## 30661 Manhattan Entire home/apt 178
## 30662 Brooklyn Entire home/apt 750
## 30663 Manhattan Private room 175
## 30664 Brooklyn Private room 49
## 30665 Brooklyn Entire home/apt 130
## 30666 Brooklyn Entire home/apt 135
## 30667 Queens Entire home/apt 100
## 30668 Queens Entire home/apt 325
## 30669 Brooklyn Entire home/apt 150
## 30670 Brooklyn Entire home/apt 100
## 30671 Brooklyn Private room 45
## 30672 Brooklyn Private room 75
## 30673 Manhattan Private room 30
## 30674 Brooklyn Private room 130
## 30675 Queens Private room 75
## 30676 Brooklyn Entire home/apt 105
## 30677 Queens Entire home/apt 75
## 30678 Manhattan Entire home/apt 150
## 30679 Manhattan Entire home/apt 89
## 30680 Bronx Private room 57
## 30681 Manhattan Private room 800
## 30682 Queens Private room 50
## 30683 Manhattan Entire home/apt 325
## 30684 Brooklyn Entire home/apt 300
## 30685 Manhattan Private room 219
## 30686 Queens Entire home/apt 150
## 30687 Manhattan Entire home/apt 99
## 30688 Queens Shared room 100
## 30689 Manhattan Entire home/apt 250
## 30690 Manhattan Private room 150
## 30691 Brooklyn Entire home/apt 112
## 30692 Manhattan Entire home/apt 175
## 30693 Manhattan Private room 95
## 30694 Brooklyn Entire home/apt 100
## 30695 Manhattan Entire home/apt 220
## 30696 Manhattan Entire home/apt 227
## 30697 Manhattan Entire home/apt 280
## 30698 Brooklyn Entire home/apt 750
## 30699 Brooklyn Private room 55
## 30700 Manhattan Entire home/apt 165
## 30701 Manhattan Entire home/apt 200
## 30702 Manhattan Entire home/apt 159
## 30703 Manhattan Entire home/apt 200
## 30704 Manhattan Private room 93
## 30705 Brooklyn Entire home/apt 125
## 30706 Manhattan Private room 100
## 30707 Brooklyn Entire home/apt 105
## 30708 Brooklyn Entire home/apt 99
## 30709 Bronx Entire home/apt 69
## 30710 Bronx Private room 47
## 30711 Manhattan Private room 50
## 30712 Manhattan Private room 120
## 30713 Manhattan Entire home/apt 210
## 30714 Brooklyn Entire home/apt 84
## 30715 Queens Entire home/apt 89
## 30716 Brooklyn Private room 90
## 30717 Manhattan Entire home/apt 222
## 30718 Manhattan Entire home/apt 100
## 30719 Manhattan Entire home/apt 227
## 30720 Brooklyn Entire home/apt 220
## 30721 Manhattan Entire home/apt 172
## 30722 Brooklyn Entire home/apt 550
## 30723 Brooklyn Entire home/apt 800
## 30724 Manhattan Entire home/apt 162
## 30725 Queens Entire home/apt 175
## 30726 Queens Entire home/apt 149
## 30727 Queens Entire home/apt 149
## 30728 Brooklyn Entire home/apt 190
## 30729 Manhattan Entire home/apt 600
## 30730 Brooklyn Private room 96
## 30731 Brooklyn Private room 125
## 30732 Manhattan Entire home/apt 166
## 30733 Brooklyn Private room 45
## 30734 Brooklyn Private room 75
## 30735 Manhattan Private room 30
## 30736 Queens Private room 70
## 30737 Manhattan Entire home/apt 300
## 30738 Brooklyn Entire home/apt 200
## 30739 Manhattan Private room 160
## 30740 Manhattan Entire home/apt 300
## 30741 Manhattan Private room 90
## 30742 Manhattan Entire home/apt 375
## 30743 Brooklyn Entire home/apt 100
## 30744 Brooklyn Private room 50
## 30745 Manhattan Private room 89
## 30746 Manhattan Private room 60
## 30747 Brooklyn Entire home/apt 100
## 30748 Brooklyn Private room 65
## 30749 Queens Private room 100
## 30750 Brooklyn Entire home/apt 125
## 30751 Queens Private room 100
## 30752 Brooklyn Shared room 35
## 30753 Queens Entire home/apt 85
## 30754 Brooklyn Private room 86
## 30755 Brooklyn Entire home/apt 30
## 30756 Manhattan Private room 600
## 30757 Manhattan Private room 99
## 30758 Manhattan Entire home/apt 50
## 30759 Manhattan Entire home/apt 270
## 30760 Queens Entire home/apt 195
## 30761 Manhattan Entire home/apt 110
## 30762 Manhattan Private room 80
## 30763 Manhattan Private room 85
## 30764 Manhattan Entire home/apt 125
## 30765 Brooklyn Entire home/apt 190
## 30766 Brooklyn Private room 75
## 30767 Brooklyn Private room 55
## 30768 Brooklyn Private room 35
## 30769 Brooklyn Private room 48
## 30770 Manhattan Private room 129
## 30771 Manhattan Private room 139
## 30772 Manhattan Private room 129
## 30773 Manhattan Entire home/apt 400
## 30774 Manhattan Entire home/apt 240
## 30775 Brooklyn Entire home/apt 85
## 30776 Queens Entire home/apt 105
## 30777 Brooklyn Entire home/apt 600
## 30778 Brooklyn Entire home/apt 110
## 30779 Brooklyn Entire home/apt 280
## 30780 Brooklyn Private room 75
## 30781 Brooklyn Private room 50
## 30782 Brooklyn Private room 40
## 30783 Queens Private room 60
## 30784 Manhattan Entire home/apt 375
## 30785 Manhattan Private room 30
## 30786 Brooklyn Shared room 45
## 30787 Brooklyn Entire home/apt 100
## 30788 Brooklyn Private room 67
## 30789 Manhattan Entire home/apt 200
## 30790 Manhattan Private room 65
## 30791 Staten Island Entire home/apt 110
## 30792 Brooklyn Private room 49
## 30793 Manhattan Private room 39
## 30794 Manhattan Entire home/apt 199
## 30795 Queens Private room 65
## 30796 Manhattan Private room 45
## 30797 Manhattan Entire home/apt 196
## 30798 Brooklyn Private room 65
## 30799 Brooklyn Private room 47
## 30800 Queens Entire home/apt 110
## 30801 Manhattan Entire home/apt 240
## 30802 Manhattan Private room 45
## 30803 Brooklyn Entire home/apt 225
## 30804 Brooklyn Entire home/apt 200
## 30805 Brooklyn Private room 45
## 30806 Manhattan Entire home/apt 171
## 30807 Manhattan Entire home/apt 70
## 30808 Manhattan Entire home/apt 170
## 30809 Queens Entire home/apt 125
## 30810 Brooklyn Entire home/apt 45
## 30811 Manhattan Entire home/apt 150
## 30812 Brooklyn Private room 106
## 30813 Brooklyn Private room 80
## 30814 Queens Private room 50
## 30815 Queens Private room 50
## 30816 Brooklyn Private room 90
## 30817 Brooklyn Private room 60
## 30818 Brooklyn Entire home/apt 154
## 30819 Manhattan Private room 80
## 30820 Bronx Private room 65
## 30821 Bronx Private room 65
## 30822 Manhattan Private room 149
## 30823 Brooklyn Private room 66
## 30824 Brooklyn Entire home/apt 150
## 30825 Manhattan Entire home/apt 2990
## 30826 Brooklyn Entire home/apt 69
## 30827 Brooklyn Shared room 30
## 30828 Brooklyn Private room 65
## 30829 Brooklyn Private room 31
## 30830 Brooklyn Entire home/apt 120
## 30831 Manhattan Entire home/apt 140
## 30832 Brooklyn Private room 55
## 30833 Queens Private room 50
## 30834 Brooklyn Private room 60
## 30835 Manhattan Entire home/apt 179
## 30836 Queens Private room 45
## 30837 Manhattan Entire home/apt 187
## 30838 Manhattan Private room 50
## 30839 Manhattan Entire home/apt 179
## 30840 Brooklyn Entire home/apt 249
## 30841 Manhattan Entire home/apt 182
## 30842 Brooklyn Private room 40
## 30843 Queens Private room 60
## 30844 Queens Private room 50
## 30845 Brooklyn Entire home/apt 175
## 30846 Brooklyn Entire home/apt 195
## 30847 Brooklyn Private room 40
## 30848 Bronx Private room 60
## 30849 Brooklyn Private room 75
## 30850 Brooklyn Private room 40
## 30851 Brooklyn Entire home/apt 150
## 30852 Manhattan Entire home/apt 115
## 30853 Manhattan Private room 72
## 30854 Brooklyn Entire home/apt 95
## 30855 Brooklyn Entire home/apt 100
## 30856 Brooklyn Private room 75
## 30857 Manhattan Entire home/apt 250
## 30858 Manhattan Entire home/apt 1000
## 30859 Brooklyn Private room 60
## 30860 Manhattan Entire home/apt 163
## 30861 Manhattan Private room 75
## 30862 Brooklyn Private room 48
## 30863 Brooklyn Private room 100
## 30864 Brooklyn Entire home/apt 125
## 30865 Manhattan Entire home/apt 339
## 30866 Brooklyn Private room 40
## 30867 Queens Private room 60
## 30868 Manhattan Entire home/apt 339
## 30869 Queens Private room 65
## 30870 Manhattan Entire home/apt 269
## 30871 Manhattan Entire home/apt 269
## 30872 Manhattan Entire home/apt 269
## 30873 Manhattan Entire home/apt 300
## 30874 Manhattan Entire home/apt 180
## 30875 Manhattan Entire home/apt 200
## 30876 Manhattan Shared room 63
## 30877 Manhattan Entire home/apt 65
## 30878 Manhattan Entire home/apt 300
## 30879 Brooklyn Private room 100
## 30880 Brooklyn Entire home/apt 95
## 30881 Bronx Entire home/apt 190
## 30882 Brooklyn Entire home/apt 300
## 30883 Queens Entire home/apt 231
## 30884 Brooklyn Entire home/apt 125
## 30885 Brooklyn Private room 45
## 30886 Manhattan Private room 64
## 30887 Brooklyn Private room 150
## 30888 Brooklyn Private room 50
## 30889 Manhattan Entire home/apt 115
## 30890 Brooklyn Private room 29
## 30891 Queens Private room 50
## 30892 Manhattan Private room 105
## 30893 Queens Private room 40
## 30894 Queens Private room 50
## 30895 Manhattan Entire home/apt 199
## 30896 Queens Private room 49
## 30897 Brooklyn Entire home/apt 105
## 30898 Brooklyn Private room 50
## 30899 Brooklyn Private room 45
## 30900 Brooklyn Private room 95
## 30901 Brooklyn Private room 47
## 30902 Manhattan Entire home/apt 100
## 30903 Brooklyn Private room 65
## 30904 Manhattan Private room 105
## 30905 Brooklyn Private room 50
## 30906 Brooklyn Entire home/apt 175
## 30907 Brooklyn Entire home/apt 195
## 30908 Brooklyn Entire home/apt 225
## 30909 Queens Private room 75
## 30910 Brooklyn Private room 45
## 30911 Manhattan Entire home/apt 125
## 30912 Brooklyn Private room 75
## 30913 Brooklyn Private room 60
## 30914 Manhattan Entire home/apt 148
## 30915 Brooklyn Entire home/apt 50
## 30916 Brooklyn Entire home/apt 150
## 30917 Manhattan Entire home/apt 1000
## 30918 Brooklyn Entire home/apt 135
## 30919 Brooklyn Entire home/apt 140
## 30920 Manhattan Private room 159
## 30921 Manhattan Entire home/apt 50
## 30922 Bronx Private room 44
## 30923 Manhattan Private room 49
## 30924 Manhattan Entire home/apt 600
## 30925 Brooklyn Private room 70
## 30926 Manhattan Entire home/apt 295
## 30927 Brooklyn Entire home/apt 200
## 30928 Brooklyn Private room 49
## 30929 Brooklyn Entire home/apt 175
## 30930 Brooklyn Private room 45
## 30931 Brooklyn Private room 35
## 30932 Brooklyn Entire home/apt 180
## 30933 Manhattan Private room 100
## 30934 Brooklyn Entire home/apt 155
## 30935 Manhattan Private room 80
## 30936 Manhattan Private room 70
## 30937 Queens Private room 38
## 30938 Manhattan Private room 70
## 30939 Queens Private room 38
## 30940 Manhattan Private room 75
## 30941 Manhattan Entire home/apt 120
## 30942 Manhattan Entire home/apt 200
## 30943 Brooklyn Entire home/apt 160
## 30944 Queens Private room 28
## 30945 Manhattan Entire home/apt 210
## 30946 Queens Shared room 37
## 30947 Brooklyn Entire home/apt 120
## 30948 Brooklyn Entire home/apt 77
## 30949 Manhattan Private room 80
## 30950 Brooklyn Entire home/apt 150
## 30951 Brooklyn Entire home/apt 124
## 30952 Brooklyn Private room 30
## 30953 Manhattan Private room 65
## 30954 Manhattan Private room 65
## 30955 Brooklyn Private room 55
## 30956 Manhattan Entire home/apt 90
## 30957 Brooklyn Entire home/apt 225
## 30958 Queens Private room 48
## 30959 Manhattan Private room 39
## 30960 Brooklyn Entire home/apt 88
## 30961 Brooklyn Entire home/apt 159
## 30962 Brooklyn Entire home/apt 99
## 30963 Queens Private room 40
## 30964 Queens Private room 35
## 30965 Brooklyn Entire home/apt 115
## 30966 Manhattan Entire home/apt 620
## 30967 Manhattan Shared room 75
## 30968 Staten Island Private room 37
## 30969 Manhattan Entire home/apt 200
## 30970 Brooklyn Private room 75
## 30971 Staten Island Private room 50
## 30972 Brooklyn Private room 120
## 30973 Manhattan Entire home/apt 95
## 30974 Brooklyn Entire home/apt 80
## 30975 Queens Private room 50
## 30976 Brooklyn Private room 55
## 30977 Manhattan Private room 48
## 30978 Brooklyn Entire home/apt 100
## 30979 Brooklyn Entire home/apt 99
## 30980 Manhattan Private room 74
## 30981 Brooklyn Private room 65
## 30982 Brooklyn Entire home/apt 158
## 30983 Staten Island Private room 40
## 30984 Manhattan Entire home/apt 119
## 30985 Queens Entire home/apt 325
## 30986 Manhattan Entire home/apt 215
## 30987 Brooklyn Entire home/apt 120
## 30988 Brooklyn Private room 65
## 30989 Brooklyn Entire home/apt 90
## 30990 Queens Entire home/apt 230
## 30991 Queens Entire home/apt 188
## 30992 Manhattan Entire home/apt 140
## 30993 Queens Private room 60
## 30994 Brooklyn Entire home/apt 95
## 30995 Manhattan Private room 100
## 30996 Manhattan Entire home/apt 175
## 30997 Brooklyn Private room 45
## 30998 Brooklyn Private room 70
## 30999 Manhattan Private room 60
## 31000 Manhattan Private room 95
## 31001 Brooklyn Entire home/apt 70
## 31002 Manhattan Entire home/apt 119
## 31003 Brooklyn Private room 120
## 31004 Manhattan Entire home/apt 115
## 31005 Manhattan Entire home/apt 125
## 31006 Brooklyn Private room 45
## 31007 Manhattan Private room 89
## 31008 Brooklyn Private room 75
## 31009 Manhattan Entire home/apt 240
## 31010 Brooklyn Entire home/apt 199
## 31011 Brooklyn Private room 40
## 31012 Queens Entire home/apt 100
## 31013 Brooklyn Private room 60
## 31014 Brooklyn Private room 45
## 31015 Bronx Private room 50
## 31016 Brooklyn Entire home/apt 175
## 31017 Queens Private room 60
## 31018 Queens Entire home/apt 99
## 31019 Brooklyn Private room 70
## 31020 Manhattan Entire home/apt 260
## 31021 Queens Entire home/apt 159
## 31022 Staten Island Entire home/apt 60
## 31023 Manhattan Entire home/apt 100
## 31024 Manhattan Entire home/apt 78
## 31025 Brooklyn Entire home/apt 180
## 31026 Manhattan Entire home/apt 80
## 31027 Brooklyn Entire home/apt 250
## 31028 Brooklyn Private room 50
## 31029 Brooklyn Entire home/apt 118
## 31030 Queens Shared room 42
## 31031 Manhattan Private room 69
## 31032 Brooklyn Private room 42
## 31033 Manhattan Private room 100
## 31034 Manhattan Private room 110
## 31035 Brooklyn Entire home/apt 155
## 31036 Queens Entire home/apt 150
## 31037 Manhattan Entire home/apt 119
## 31038 Manhattan Private room 89
## 31039 Manhattan Entire home/apt 399
## 31040 Manhattan Entire home/apt 275
## 31041 Brooklyn Entire home/apt 150
## 31042 Manhattan Entire home/apt 140
## 31043 Manhattan Entire home/apt 199
## 31044 Manhattan Private room 65
## 31045 Manhattan Private room 100
## 31046 Queens Entire home/apt 103
## 31047 Manhattan Entire home/apt 649
## 31048 Manhattan Private room 85
## 31049 Bronx Private room 79
## 31050 Brooklyn Entire home/apt 96
## 31051 Brooklyn Private room 70
## 31052 Brooklyn Private room 57
## 31053 Manhattan Private room 274
## 31054 Manhattan Entire home/apt 250
## 31055 Brooklyn Private room 90
## 31056 Brooklyn Entire home/apt 100
## 31057 Manhattan Entire home/apt 412
## 31058 Manhattan Entire home/apt 412
## 31059 Manhattan Entire home/apt 412
## 31060 Queens Private room 50
## 31061 Manhattan Entire home/apt 148
## 31062 Brooklyn Entire home/apt 120
## 31063 Queens Private room 41
## 31064 Manhattan Private room 70
## 31065 Manhattan Private room 90
## 31066 Manhattan Private room 99
## 31067 Manhattan Private room 10
## 31068 Queens Entire home/apt 69
## 31069 Manhattan Private room 54
## 31070 Bronx Private room 35
## 31071 Brooklyn Private room 39
## 31072 Manhattan Entire home/apt 82
## 31073 Brooklyn Private room 40
## 31074 Manhattan Entire home/apt 148
## 31075 Queens Private room 60
## 31076 Brooklyn Entire home/apt 130
## 31077 Bronx Entire home/apt 95
## 31078 Manhattan Private room 65
## 31079 Brooklyn Private room 20
## 31080 Queens Entire home/apt 190
## 31081 Brooklyn Private room 60
## 31082 Brooklyn Private room 55
## 31083 Brooklyn Private room 49
## 31084 Manhattan Private room 100
## 31085 Brooklyn Private room 52
## 31086 Bronx Private room 35
## 31087 Queens Private room 45
## 31088 Brooklyn Private room 41
## 31089 Manhattan Entire home/apt 275
## 31090 Manhattan Entire home/apt 265
## 31091 Manhattan Entire home/apt 250
## 31092 Manhattan Private room 130
## 31093 Manhattan Private room 55
## 31094 Manhattan Entire home/apt 365
## 31095 Brooklyn Private room 70
## 31096 Manhattan Shared room 30
## 31097 Manhattan Entire home/apt 225
## 31098 Manhattan Entire home/apt 650
## 31099 Brooklyn Private room 95
## 31100 Manhattan Entire home/apt 500
## 31101 Brooklyn Entire home/apt 244
## 31102 Manhattan Entire home/apt 750
## 31103 Brooklyn Private room 46
## 31104 Bronx Private room 40
## 31105 Manhattan Entire home/apt 140
## 31106 Manhattan Private room 1500
## 31107 Manhattan Entire home/apt 140
## 31108 Brooklyn Entire home/apt 199
## 31109 Manhattan Shared room 80
## 31110 Queens Private room 69
## 31111 Manhattan Entire home/apt 188
## 31112 Manhattan Entire home/apt 100
## 31113 Brooklyn Entire home/apt 235
## 31114 Manhattan Entire home/apt 165
## 31115 Queens Entire home/apt 55
## 31116 Manhattan Private room 65
## 31117 Brooklyn Entire home/apt 70
## 31118 Manhattan Private room 125
## 31119 Brooklyn Entire home/apt 90
## 31120 Brooklyn Private room 56
## 31121 Manhattan Entire home/apt 394
## 31122 Brooklyn Entire home/apt 172
## 31123 Brooklyn Entire home/apt 100
## 31124 Manhattan Entire home/apt 80
## 31125 Manhattan Entire home/apt 142
## 31126 Brooklyn Entire home/apt 220
## 31127 Manhattan Entire home/apt 264
## 31128 Queens Entire home/apt 150
## 31129 Brooklyn Entire home/apt 200
## 31130 Brooklyn Private room 45
## 31131 Brooklyn Private room 150
## 31132 Manhattan Entire home/apt 160
## 31133 Queens Entire home/apt 135
## 31134 Queens Private room 55
## 31135 Brooklyn Private room 50
## 31136 Manhattan Entire home/apt 89
## 31137 Queens Private room 49
## 31138 Manhattan Entire home/apt 185
## 31139 Manhattan Entire home/apt 180
## 31140 Brooklyn Private room 70
## 31141 Brooklyn Entire home/apt 450
## 31142 Manhattan Entire home/apt 110
## 31143 Brooklyn Entire home/apt 125
## 31144 Brooklyn Private room 72
## 31145 Brooklyn Private room 80
## 31146 Brooklyn Private room 44
## 31147 Brooklyn Private room 45
## 31148 Brooklyn Private room 71
## 31149 Brooklyn Private room 60
## 31150 Brooklyn Private room 65
## 31151 Manhattan Entire home/apt 300
## 31152 Brooklyn Private room 99
## 31153 Brooklyn Private room 79
## 31154 Manhattan Entire home/apt 339
## 31155 Queens Private room 58
## 31156 Brooklyn Private room 90
## 31157 Manhattan Entire home/apt 175
## 31158 Manhattan Entire home/apt 158
## 31159 Manhattan Entire home/apt 145
## 31160 Brooklyn Private room 60
## 31161 Manhattan Entire home/apt 99
## 31162 Brooklyn Entire home/apt 80
## 31163 Brooklyn Private room 85
## 31164 Manhattan Private room 115
## 31165 Manhattan Private room 52
## 31166 Queens Entire home/apt 280
## 31167 Manhattan Entire home/apt 250
## 31168 Manhattan Private room 55
## 31169 Manhattan Entire home/apt 100
## 31170 Brooklyn Entire home/apt 195
## 31171 Manhattan Private room 80
## 31172 Manhattan Private room 100
## 31173 Brooklyn Private room 55
## 31174 Manhattan Entire home/apt 120
## 31175 Manhattan Entire home/apt 300
## 31176 Manhattan Entire home/apt 339
## 31177 Brooklyn Entire home/apt 140
## 31178 Manhattan Private room 53
## 31179 Queens Shared room 21
## 31180 Brooklyn Entire home/apt 125
## 31181 Brooklyn Private room 47
## 31182 Manhattan Private room 180
## 31183 Brooklyn Private room 58
## 31184 Brooklyn Private room 58
## 31185 Manhattan Private room 150
## 31186 Manhattan Private room 120
## 31187 Brooklyn Private room 47
## 31188 Manhattan Entire home/apt 288
## 31189 Brooklyn Private room 65
## 31190 Brooklyn Entire home/apt 300
## 31191 Manhattan Private room 104
## 31192 Brooklyn Entire home/apt 160
## 31193 Brooklyn Entire home/apt 250
## 31194 Manhattan Entire home/apt 186
## 31195 Brooklyn Private room 73
## 31196 Manhattan Entire home/apt 195
## 31197 Manhattan Entire home/apt 200
## 31198 Brooklyn Private room 100
## 31199 Brooklyn Private room 300
## 31200 Brooklyn Entire home/apt 150
## 31201 Manhattan Entire home/apt 190
## 31202 Brooklyn Private room 75
## 31203 Manhattan Private room 81
## 31204 Bronx Private room 25
## 31205 Manhattan Entire home/apt 275
## 31206 Queens Private room 60
## 31207 Brooklyn Entire home/apt 180
## 31208 Brooklyn Private room 90
## 31209 Manhattan Entire home/apt 222
## 31210 Brooklyn Entire home/apt 95
## 31211 Queens Entire home/apt 70
## 31212 Brooklyn Entire home/apt 125
## 31213 Brooklyn Entire home/apt 173
## 31214 Brooklyn Entire home/apt 220
## 31215 Manhattan Entire home/apt 148
## 31216 Manhattan Private room 75
## 31217 Manhattan Entire home/apt 199
## 31218 Manhattan Private room 54
## 31219 Manhattan Entire home/apt 150
## 31220 Manhattan Entire home/apt 153
## 31221 Brooklyn Entire home/apt 99
## 31222 Manhattan Private room 65
## 31223 Queens Private room 50
## 31224 Brooklyn Private room 45
## 31225 Manhattan Private room 100
## 31226 Brooklyn Private room 62
## 31227 Manhattan Private room 77
## 31228 Brooklyn Private room 46
## 31229 Manhattan Private room 95
## 31230 Manhattan Entire home/apt 159
## 31231 Manhattan Entire home/apt 300
## 31232 Brooklyn Entire home/apt 103
## 31233 Manhattan Entire home/apt 200
## 31234 Manhattan Private room 102
## 31235 Brooklyn Entire home/apt 350
## 31236 Queens Entire home/apt 425
## 31237 Brooklyn Private room 45
## 31238 Brooklyn Entire home/apt 168
## 31239 Brooklyn Private room 40
## 31240 Manhattan Private room 55
## 31241 Manhattan Entire home/apt 150
## 31242 Brooklyn Private room 79
## 31243 Brooklyn Private room 65
## 31244 Manhattan Private room 70
## 31245 Brooklyn Entire home/apt 199
## 31246 Queens Private room 45
## 31247 Brooklyn Private room 70
## 31248 Brooklyn Private room 60
## 31249 Manhattan Entire home/apt 194
## 31250 Brooklyn Private room 59
## 31251 Brooklyn Private room 49
## 31252 Queens Private room 65
## 31253 Manhattan Entire home/apt 165
## 31254 Brooklyn Private room 80
## 31255 Queens Entire home/apt 175
## 31256 Queens Private room 95
## 31257 Manhattan Entire home/apt 100
## 31258 Queens Private room 95
## 31259 Brooklyn Private room 54
## 31260 Manhattan Entire home/apt 299
## 31261 Brooklyn Private room 45
## 31262 Manhattan Entire home/apt 250
## 31263 Queens Entire home/apt 120
## 31264 Manhattan Entire home/apt 105
## 31265 Manhattan Entire home/apt 299
## 31266 Brooklyn Entire home/apt 130
## 31267 Queens Entire home/apt 90
## 31268 Brooklyn Private room 62
## 31269 Brooklyn Private room 70
## 31270 Manhattan Entire home/apt 225
## 31271 Manhattan Private room 95
## 31272 Queens Entire home/apt 288
## 31273 Manhattan Entire home/apt 149
## 31274 Brooklyn Private room 95
## 31275 Brooklyn Entire home/apt 150
## 31276 Manhattan Entire home/apt 200
## 31277 Queens Entire home/apt 150
## 31278 Manhattan Entire home/apt 175
## 31279 Queens Entire home/apt 180
## 31280 Bronx Private room 70
## 31281 Manhattan Private room 100
## 31282 Queens Private room 79
## 31283 Manhattan Private room 350
## 31284 Queens Private room 75
## 31285 Manhattan Entire home/apt 235
## 31286 Queens Private room 39
## 31287 Manhattan Entire home/apt 300
## 31288 Queens Private room 50
## 31289 Manhattan Private room 130
## 31290 Manhattan Private room 130
## 31291 Manhattan Entire home/apt 250
## 31292 Brooklyn Entire home/apt 120
## 31293 Queens Entire home/apt 450
## 31294 Brooklyn Private room 47
## 31295 Manhattan Entire home/apt 115
## 31296 Manhattan Entire home/apt 100
## 31297 Brooklyn Entire home/apt 120
## 31298 Bronx Private room 65
## 31299 Bronx Private room 79
## 31300 Manhattan Private room 89
## 31301 Manhattan Entire home/apt 300
## 31302 Manhattan Entire home/apt 220
## 31303 Manhattan Entire home/apt 265
## 31304 Queens Entire home/apt 300
## 31305 Brooklyn Private room 150
## 31306 Manhattan Entire home/apt 150
## 31307 Manhattan Entire home/apt 150
## 31308 Queens Private room 46
## 31309 Brooklyn Private room 68
## 31310 Manhattan Private room 55
## 31311 Manhattan Private room 65
## 31312 Manhattan Private room 70
## 31313 Manhattan Private room 65
## 31314 Manhattan Entire home/apt 310
## 31315 Bronx Entire home/apt 88
## 31316 Manhattan Private room 50
## 31317 Brooklyn Entire home/apt 250
## 31318 Manhattan Private room 80
## 31319 Manhattan Private room 80
## 31320 Brooklyn Entire home/apt 130
## 31321 Brooklyn Entire home/apt 130
## 31322 Queens Entire home/apt 100
## 31323 Manhattan Entire home/apt 250
## 31324 Queens Entire home/apt 200
## 31325 Brooklyn Private room 54
## 31326 Brooklyn Private room 65
## 31327 Manhattan Private room 120
## 31328 Manhattan Entire home/apt 95
## 31329 Queens Private room 50
## 31330 Manhattan Entire home/apt 299
## 31331 Queens Entire home/apt 138
## 31332 Queens Private room 42
## 31333 Manhattan Private room 175
## 31334 Brooklyn Private room 85
## 31335 Queens Private room 74
## 31336 Brooklyn Private room 65
## 31337 Brooklyn Private room 47
## 31338 Brooklyn Private room 85
## 31339 Manhattan Entire home/apt 975
## 31340 Brooklyn Entire home/apt 130
## 31341 Brooklyn Private room 70
## 31342 Manhattan Private room 70
## 31343 Queens Entire home/apt 179
## 31344 Brooklyn Private room 300
## 31345 Brooklyn Entire home/apt 150
## 31346 Brooklyn Entire home/apt 99
## 31347 Manhattan Entire home/apt 125
## 31348 Manhattan Entire home/apt 170
## 31349 Manhattan Private room 89
## 31350 Brooklyn Private room 50
## 31351 Manhattan Entire home/apt 90
## 31352 Brooklyn Private room 80
## 31353 Manhattan Entire home/apt 168
## 31354 Brooklyn Private room 100
## 31355 Manhattan Entire home/apt 118
## 31356 Manhattan Entire home/apt 150
## 31357 Manhattan Entire home/apt 120
## 31358 Manhattan Entire home/apt 175
## 31359 Brooklyn Entire home/apt 190
## 31360 Manhattan Entire home/apt 195
## 31361 Brooklyn Entire home/apt 112
## 31362 Manhattan Entire home/apt 450
## 31363 Manhattan Private room 200
## 31364 Brooklyn Private room 45
## 31365 Manhattan Entire home/apt 150
## 31366 Brooklyn Entire home/apt 99
## 31367 Brooklyn Entire home/apt 100
## 31368 Manhattan Private room 50
## 31369 Manhattan Entire home/apt 220
## 31370 Brooklyn Entire home/apt 123
## 31371 Brooklyn Entire home/apt 110
## 31372 Manhattan Private room 120
## 31373 Manhattan Entire home/apt 110
## 31374 Manhattan Private room 85
## 31375 Manhattan Entire home/apt 299
## 31376 Brooklyn Private room 55
## 31377 Brooklyn Private room 47
## 31378 Brooklyn Private room 55
## 31379 Brooklyn Private room 130
## 31380 Brooklyn Private room 40
## 31381 Brooklyn Entire home/apt 150
## 31382 Brooklyn Private room 70
## 31383 Manhattan Entire home/apt 180
## 31384 Manhattan Private room 90
## 31385 Manhattan Entire home/apt 120
## 31386 Brooklyn Entire home/apt 145
## 31387 Queens Entire home/apt 100
## 31388 Manhattan Entire home/apt 150
## 31389 Manhattan Private room 125
## 31390 Manhattan Private room 60
## 31391 Brooklyn Entire home/apt 150
## 31392 Manhattan Private room 190
## 31393 Manhattan Entire home/apt 145
## 31394 Manhattan Private room 50
## 31395 Brooklyn Private room 95
## 31396 Brooklyn Private room 91
## 31397 Brooklyn Entire home/apt 145
## 31398 Manhattan Private room 100
## 31399 Brooklyn Private room 35
## 31400 Manhattan Private room 120
## 31401 Brooklyn Entire home/apt 69
## 31402 Queens Private room 50
## 31403 Manhattan Private room 290
## 31404 Brooklyn Private room 50
## 31405 Manhattan Entire home/apt 545
## 31406 Brooklyn Entire home/apt 200
## 31407 Brooklyn Entire home/apt 180
## 31408 Manhattan Private room 10
## 31409 Staten Island Private room 47
## 31410 Manhattan Entire home/apt 175
## 31411 Queens Private room 75
## 31412 Brooklyn Private room 45
## 31413 Manhattan Entire home/apt 275
## 31414 Bronx Private room 23
## 31415 Manhattan Private room 95
## 31416 Manhattan Entire home/apt 199
## 31417 Manhattan Entire home/apt 130
## 31418 Brooklyn Entire home/apt 161
## 31419 Brooklyn Private room 65
## 31420 Brooklyn Private room 60
## 31421 Manhattan Entire home/apt 165
## 31422 Queens Private room 69
## 31423 Brooklyn Private room 100
## 31424 Brooklyn Private room 89
## 31425 Manhattan Private room 55
## 31426 Brooklyn Shared room 37
## 31427 Queens Private room 80
## 31428 Queens Private room 80
## 31429 Brooklyn Private room 37
## 31430 Brooklyn Private room 40
## 31431 Queens Private room 60
## 31432 Queens Entire home/apt 90
## 31433 Manhattan Entire home/apt 245
## 31434 Manhattan Entire home/apt 175
## 31435 Brooklyn Private room 50
## 31436 Brooklyn Entire home/apt 210
## 31437 Brooklyn Entire home/apt 350
## 31438 Manhattan Private room 45
## 31439 Manhattan Entire home/apt 300
## 31440 Brooklyn Entire home/apt 155
## 31441 Brooklyn Entire home/apt 125
## 31442 Brooklyn Entire home/apt 225
## 31443 Queens Private room 90
## 31444 Queens Shared room 110
## 31445 Brooklyn Private room 65
## 31446 Brooklyn Entire home/apt 125
## 31447 Brooklyn Private room 35
## 31448 Manhattan Entire home/apt 150
## 31449 Manhattan Entire home/apt 299
## 31450 Brooklyn Private room 50
## 31451 Brooklyn Private room 60
## 31452 Brooklyn Private room 59
## 31453 Brooklyn Entire home/apt 250
## 31454 Manhattan Entire home/apt 185
## 31455 Queens Private room 60
## 31456 Manhattan Private room 139
## 31457 Manhattan Private room 80
## 31458 Staten Island Private room 33
## 31459 Manhattan Private room 89
## 31460 Queens Private room 69
## 31461 Manhattan Private room 68
## 31462 Manhattan Entire home/apt 185
## 31463 Brooklyn Entire home/apt 100
## 31464 Manhattan Private room 116
## 31465 Brooklyn Entire home/apt 140
## 31466 Manhattan Entire home/apt 225
## 31467 Brooklyn Entire home/apt 99
## 31468 Manhattan Entire home/apt 135
## 31469 Manhattan Private room 90
## 31470 Brooklyn Entire home/apt 160
## 31471 Manhattan Entire home/apt 148
## 31472 Brooklyn Private room 60
## 31473 Brooklyn Entire home/apt 200
## 31474 Manhattan Entire home/apt 125
## 31475 Manhattan Entire home/apt 150
## 31476 Manhattan Entire home/apt 125
## 31477 Manhattan Entire home/apt 125
## 31478 Manhattan Entire home/apt 185
## 31479 Brooklyn Private room 65
## 31480 Manhattan Entire home/apt 85
## 31481 Queens Private room 89
## 31482 Manhattan Entire home/apt 150
## 31483 Manhattan Entire home/apt 300
## 31484 Bronx Private room 65
## 31485 Manhattan Entire home/apt 110
## 31486 Brooklyn Entire home/apt 125
## 31487 Queens Private room 75
## 31488 Brooklyn Entire home/apt 145
## 31489 Brooklyn Private room 65
## 31490 Manhattan Entire home/apt 142
## 31491 Brooklyn Entire home/apt 200
## 31492 Manhattan Entire home/apt 225
## 31493 Manhattan Entire home/apt 235
## 31494 Manhattan Entire home/apt 200
## 31495 Manhattan Private room 50
## 31496 Brooklyn Private room 36
## 31497 Brooklyn Entire home/apt 75
## 31498 Manhattan Private room 60
## 31499 Manhattan Entire home/apt 247
## 31500 Brooklyn Entire home/apt 295
## 31501 Brooklyn Private room 80
## 31502 Queens Private room 99
## 31503 Brooklyn Private room 36
## 31504 Manhattan Entire home/apt 400
## 31505 Manhattan Private room 73
## 31506 Manhattan Entire home/apt 117
## 31507 Manhattan Entire home/apt 323
## 31508 Brooklyn Entire home/apt 1000
## 31509 Manhattan Entire home/apt 100
## 31510 Manhattan Entire home/apt 265
## 31511 Manhattan Entire home/apt 145
## 31512 Manhattan Entire home/apt 255
## 31513 Manhattan Entire home/apt 209
## 31514 Manhattan Entire home/apt 300
## 31515 Manhattan Entire home/apt 101
## 31516 Brooklyn Private room 60
## 31517 Manhattan Entire home/apt 185
## 31518 Manhattan Shared room 65
## 31519 Manhattan Entire home/apt 222
## 31520 Manhattan Entire home/apt 250
## 31521 Brooklyn Private room 80
## 31522 Manhattan Entire home/apt 140
## 31523 Brooklyn Entire home/apt 110
## 31524 Manhattan Entire home/apt 200
## 31525 Manhattan Private room 100
## 31526 Manhattan Entire home/apt 175
## 31527 Manhattan Entire home/apt 255
## 31528 Brooklyn Private room 112
## 31529 Brooklyn Private room 70
## 31530 Brooklyn Private room 102
## 31531 Brooklyn Private room 50
## 31532 Manhattan Entire home/apt 75
## 31533 Brooklyn Private room 974
## 31534 Manhattan Shared room 33
## 31535 Manhattan Private room 55
## 31536 Brooklyn Private room 50
## 31537 Brooklyn Private room 62
## 31538 Brooklyn Entire home/apt 119
## 31539 Brooklyn Private room 52
## 31540 Manhattan Private room 45
## 31541 Manhattan Entire home/apt 160
## 31542 Brooklyn Entire home/apt 162
## 31543 Manhattan Entire home/apt 205
## 31544 Brooklyn Entire home/apt 86
## 31545 Manhattan Shared room 65
## 31546 Manhattan Entire home/apt 85
## 31547 Brooklyn Entire home/apt 61
## 31548 Manhattan Private room 75
## 31549 Queens Private room 79
## 31550 Manhattan Private room 93
## 31551 Manhattan Shared room 32
## 31552 Manhattan Entire home/apt 119
## 31553 Brooklyn Entire home/apt 150
## 31554 Manhattan Entire home/apt 129
## 31555 Staten Island Private room 35
## 31556 Manhattan Private room 51
## 31557 Manhattan Private room 120
## 31558 Queens Private room 78
## 31559 Manhattan Entire home/apt 100
## 31560 Brooklyn Entire home/apt 114
## 31561 Brooklyn Private room 35
## 31562 Manhattan Entire home/apt 150
## 31563 Manhattan Private room 75
## 31564 Brooklyn Entire home/apt 128
## 31565 Manhattan Private room 160
## 31566 Brooklyn Private room 100
## 31567 Manhattan Entire home/apt 199
## 31568 Brooklyn Private room 100
## 31569 Manhattan Entire home/apt 170
## 31570 Brooklyn Entire home/apt 99
## 31571 Manhattan Shared room 35
## 31572 Manhattan Entire home/apt 175
## 31573 Manhattan Entire home/apt 400
## 31574 Bronx Entire home/apt 125
## 31575 Manhattan Private room 75
## 31576 Manhattan Entire home/apt 271
## 31577 Brooklyn Private room 46
## 31578 Manhattan Entire home/apt 240
## 31579 Brooklyn Entire home/apt 240
## 31580 Queens Private room 50
## 31581 Manhattan Private room 115
## 31582 Bronx Private room 75
## 31583 Manhattan Entire home/apt 160
## 31584 Manhattan Private room 80
## 31585 Manhattan Entire home/apt 150
## 31586 Staten Island Private room 79
## 31587 Brooklyn Entire home/apt 250
## 31588 Queens Private room 60
## 31589 Queens Private room 85
## 31590 Brooklyn Entire home/apt 200
## 31591 Queens Private room 40
## 31592 Brooklyn Private room 89
## 31593 Manhattan Private room 95
## 31594 Brooklyn Entire home/apt 135
## 31595 Manhattan Entire home/apt 260
## 31596 Manhattan Private room 80
## 31597 Brooklyn Entire home/apt 130
## 31598 Manhattan Entire home/apt 165
## 31599 Manhattan Entire home/apt 400
## 31600 Queens Entire home/apt 200
## 31601 Manhattan Entire home/apt 139
## 31602 Manhattan Private room 59
## 31603 Brooklyn Private room 45
## 31604 Staten Island Entire home/apt 75
## 31605 Brooklyn Entire home/apt 159
## 31606 Manhattan Private room 120
## 31607 Brooklyn Private room 99
## 31608 Manhattan Private room 112
## 31609 Manhattan Entire home/apt 175
## 31610 Brooklyn Entire home/apt 85
## 31611 Queens Private room 55
## 31612 Queens Private room 80
## 31613 Manhattan Private room 90
## 31614 Manhattan Entire home/apt 180
## 31615 Manhattan Entire home/apt 215
## 31616 Brooklyn Private room 47
## 31617 Manhattan Entire home/apt 415
## 31618 Queens Entire home/apt 275
## 31619 Brooklyn Private room 115
## 31620 Staten Island Entire home/apt 199
## 31621 Manhattan Entire home/apt 150
## 31622 Manhattan Entire home/apt 150
## 31623 Brooklyn Private room 120
## 31624 Manhattan Private room 60
## 31625 Brooklyn Private room 58
## 31626 Brooklyn Private room 149
## 31627 Manhattan Entire home/apt 700
## 31628 Queens Private room 45
## 31629 Brooklyn Private room 55
## 31630 Manhattan Private room 110
## 31631 Queens Private room 70
## 31632 Queens Private room 60
## 31633 Brooklyn Entire home/apt 121
## 31634 Brooklyn Private room 62
## 31635 Manhattan Private room 75
## 31636 Manhattan Private room 50
## 31637 Queens Private room 52
## 31638 Brooklyn Private room 109
## 31639 Queens Entire home/apt 100
## 31640 Brooklyn Entire home/apt 160
## 31641 Brooklyn Private room 200
## 31642 Brooklyn Private room 65
## 31643 Queens Entire home/apt 115
## 31644 Staten Island Private room 50
## 31645 Manhattan Private room 95
## 31646 Manhattan Entire home/apt 300
## 31647 Manhattan Private room 69
## 31648 Brooklyn Entire home/apt 169
## 31649 Brooklyn Entire home/apt 134
## 31650 Queens Private room 89
## 31651 Queens Shared room 35
## 31652 Manhattan Private room 120
## 31653 Manhattan Entire home/apt 140
## 31654 Manhattan Entire home/apt 200
## 31655 Manhattan Private room 139
## 31656 Manhattan Private room 80
## 31657 Manhattan Private room 79
## 31658 Manhattan Entire home/apt 125
## 31659 Bronx Shared room 40
## 31660 Brooklyn Entire home/apt 91
## 31661 Manhattan Entire home/apt 295
## 31662 Manhattan Entire home/apt 400
## 31663 Manhattan Private room 76
## 31664 Brooklyn Entire home/apt 400
## 31665 Brooklyn Private room 48
## 31666 Bronx Entire home/apt 125
## 31667 Manhattan Entire home/apt 250
## 31668 Manhattan Private room 65
## 31669 Brooklyn Private room 80
## 31670 Manhattan Entire home/apt 650
## 31671 Staten Island Entire home/apt 48
## 31672 Manhattan Private room 99
## 31673 Queens Private room 55
## 31674 Manhattan Shared room 44
## 31675 Queens Entire home/apt 200
## 31676 Brooklyn Entire home/apt 150
## 31677 Bronx Entire home/apt 100
## 31678 Manhattan Entire home/apt 150
## 31679 Manhattan Private room 150
## 31680 Brooklyn Entire home/apt 350
## 31681 Queens Entire home/apt 128
## 31682 Manhattan Entire home/apt 200
## 31683 Brooklyn Entire home/apt 190
## 31684 Brooklyn Private room 40
## 31685 Manhattan Entire home/apt 71
## 31686 Queens Private room 60
## 31687 Queens Private room 59
## 31688 Brooklyn Entire home/apt 599
## 31689 Brooklyn Entire home/apt 125
## 31690 Brooklyn Entire home/apt 115
## 31691 Brooklyn Entire home/apt 65
## 31692 Manhattan Shared room 50
## 31693 Brooklyn Entire home/apt 198
## 31694 Brooklyn Entire home/apt 78
## 31695 Manhattan Entire home/apt 160
## 31696 Brooklyn Shared room 125
## 31697 Brooklyn Private room 90
## 31698 Brooklyn Private room 43
## 31699 Brooklyn Entire home/apt 80
## 31700 Brooklyn Private room 60
## 31701 Manhattan Entire home/apt 190
## 31702 Brooklyn Shared room 60
## 31703 Manhattan Private room 57
## 31704 Manhattan Entire home/apt 120
## 31705 Manhattan Entire home/apt 119
## 31706 Brooklyn Entire home/apt 200
## 31707 Queens Shared room 38
## 31708 Manhattan Entire home/apt 92
## 31709 Brooklyn Private room 45
## 31710 Manhattan Entire home/apt 200
## 31711 Manhattan Private room 120
## 31712 Brooklyn Private room 42
## 31713 Manhattan Private room 89
## 31714 Manhattan Private room 95
## 31715 Manhattan Private room 80
## 31716 Manhattan Entire home/apt 235
## 31717 Brooklyn Private room 40
## 31718 Bronx Entire home/apt 150
## 31719 Manhattan Entire home/apt 120
## 31720 Manhattan Entire home/apt 400
## 31721 Manhattan Private room 130
## 31722 Brooklyn Private room 75
## 31723 Manhattan Entire home/apt 125
## 31724 Manhattan Private room 120
## 31725 Brooklyn Entire home/apt 120
## 31726 Brooklyn Private room 35
## 31727 Brooklyn Private room 45
## 31728 Brooklyn Entire home/apt 100
## 31729 Manhattan Private room 97
## 31730 Brooklyn Entire home/apt 225
## 31731 Brooklyn Entire home/apt 89
## 31732 Queens Private room 80
## 31733 Queens Private room 200
## 31734 Brooklyn Private room 40
## 31735 Manhattan Private room 80
## 31736 Manhattan Entire home/apt 175
## 31737 Brooklyn Entire home/apt 250
## 31738 Brooklyn Entire home/apt 135
## 31739 Manhattan Entire home/apt 179
## 31740 Manhattan Private room 59
## 31741 Manhattan Entire home/apt 180
## 31742 Manhattan Private room 125
## 31743 Manhattan Entire home/apt 170
## 31744 Manhattan Entire home/apt 182
## 31745 Manhattan Private room 65
## 31746 Brooklyn Entire home/apt 450
## 31747 Queens Private room 42
## 31748 Brooklyn Private room 79
## 31749 Brooklyn Entire home/apt 80
## 31750 Manhattan Entire home/apt 165
## 31751 Brooklyn Private room 50
## 31752 Brooklyn Entire home/apt 75
## 31753 Brooklyn Entire home/apt 128
## 31754 Manhattan Entire home/apt 122
## 31755 Queens Private room 46
## 31756 Manhattan Private room 85
## 31757 Queens Entire home/apt 150
## 31758 Manhattan Entire home/apt 199
## 31759 Manhattan Private room 70
## 31760 Brooklyn Entire home/apt 105
## 31761 Queens Private room 59
## 31762 Manhattan Private room 67
## 31763 Brooklyn Private room 61
## 31764 Brooklyn Entire home/apt 170
## 31765 Manhattan Entire home/apt 100
## 31766 Queens Entire home/apt 86
## 31767 Queens Private room 85
## 31768 Manhattan Entire home/apt 145
## 31769 Manhattan Entire home/apt 210
## 31770 Bronx Private room 50
## 31771 Manhattan Private room 80
## 31772 Queens Private room 50
## 31773 Brooklyn Private room 50
## 31774 Queens Private room 50
## 31775 Brooklyn Private room 151
## 31776 Manhattan Private room 200
## 31777 Manhattan Entire home/apt 150
## 31778 Manhattan Entire home/apt 147
## 31779 Manhattan Entire home/apt 350
## 31780 Brooklyn Entire home/apt 200
## 31781 Brooklyn Private room 70
## 31782 Brooklyn Entire home/apt 140
## 31783 Queens Entire home/apt 109
## 31784 Queens Private room 55
## 31785 Bronx Private room 50
## 31786 Manhattan Entire home/apt 200
## 31787 Manhattan Entire home/apt 190
## 31788 Brooklyn Entire home/apt 200
## 31789 Brooklyn Private room 49
## 31790 Brooklyn Entire home/apt 119
## 31791 Queens Private room 40
## 31792 Manhattan Entire home/apt 210
## 31793 Brooklyn Entire home/apt 105
## 31794 Manhattan Entire home/apt 86
## 31795 Manhattan Entire home/apt 150
## 31796 Queens Private room 60
## 31797 Brooklyn Entire home/apt 225
## 31798 Brooklyn Private room 157
## 31799 Brooklyn Private room 70
## 31800 Queens Entire home/apt 140
## 31801 Bronx Entire home/apt 74
## 31802 Brooklyn Entire home/apt 150
## 31803 Manhattan Entire home/apt 75
## 31804 Brooklyn Private room 40
## 31805 Manhattan Entire home/apt 180
## 31806 Brooklyn Private room 37
## 31807 Manhattan Entire home/apt 344
## 31808 Brooklyn Private room 40
## 31809 Brooklyn Entire home/apt 130
## 31810 Brooklyn Private room 99
## 31811 Manhattan Entire home/apt 142
## 31812 Manhattan Entire home/apt 550
## 31813 Brooklyn Private room 70
## 31814 Bronx Private room 45
## 31815 Queens Private room 59
## 31816 Manhattan Entire home/apt 160
## 31817 Queens Private room 125
## 31818 Brooklyn Private room 59
## 31819 Manhattan Entire home/apt 239
## 31820 Manhattan Entire home/apt 200
## 31821 Brooklyn Entire home/apt 130
## 31822 Queens Entire home/apt 104
## 31823 Manhattan Entire home/apt 182
## 31824 Queens Private room 30
## 31825 Manhattan Private room 65
## 31826 Manhattan Entire home/apt 250
## 31827 Queens Private room 60
## 31828 Queens Private room 48
## 31829 Queens Entire home/apt 149
## 31830 Brooklyn Private room 59
## 31831 Manhattan Entire home/apt 100
## 31832 Brooklyn Entire home/apt 62
## 31833 Brooklyn Entire home/apt 135
## 31834 Queens Private room 95
## 31835 Queens Entire home/apt 450
## 31836 Brooklyn Private room 59
## 31837 Manhattan Private room 59
## 31838 Bronx Private room 40
## 31839 Brooklyn Entire home/apt 215
## 31840 Queens Entire home/apt 120
## 31841 Queens Private room 49
## 31842 Manhattan Private room 41
## 31843 Manhattan Private room 125
## 31844 Manhattan Entire home/apt 250
## 31845 Brooklyn Entire home/apt 75
## 31846 Brooklyn Private room 34
## 31847 Manhattan Private room 169
## 31848 Brooklyn Private room 60
## 31849 Manhattan Entire home/apt 375
## 31850 Brooklyn Private room 150
## 31851 Manhattan Entire home/apt 150
## 31852 Manhattan Entire home/apt 224
## 31853 Queens Private room 80
## 31854 Brooklyn Private room 100
## 31855 Queens Entire home/apt 100
## 31856 Manhattan Entire home/apt 125
## 31857 Brooklyn Entire home/apt 120
## 31858 Brooklyn Private room 75
## 31859 Brooklyn Entire home/apt 600
## 31860 Queens Private room 70
## 31861 Queens Private room 60
## 31862 Manhattan Private room 50
## 31863 Manhattan Entire home/apt 149
## 31864 Manhattan Entire home/apt 180
## 31865 Manhattan Entire home/apt 118
## 31866 Manhattan Entire home/apt 70
## 31867 Manhattan Entire home/apt 1195
## 31868 Manhattan Private room 175
## 31869 Brooklyn Entire home/apt 165
## 31870 Manhattan Private room 150
## 31871 Manhattan Entire home/apt 50
## 31872 Manhattan Private room 50
## 31873 Staten Island Private room 33
## 31874 Queens Private room 60
## 31875 Queens Private room 50
## 31876 Manhattan Private room 110
## 31877 Manhattan Entire home/apt 145
## 31878 Manhattan Entire home/apt 137
## 31879 Brooklyn Private room 50
## 31880 Manhattan Entire home/apt 150
## 31881 Brooklyn Private room 45
## 31882 Manhattan Private room 75
## 31883 Manhattan Private room 50
## 31884 Manhattan Private room 91
## 31885 Queens Entire home/apt 250
## 31886 Brooklyn Entire home/apt 80
## 31887 Manhattan Entire home/apt 136
## 31888 Brooklyn Private room 99
## 31889 Bronx Entire home/apt 103
## 31890 Manhattan Private room 175
## 31891 Manhattan Private room 125
## 31892 Brooklyn Entire home/apt 180
## 31893 Manhattan Entire home/apt 120
## 31894 Manhattan Entire home/apt 164
## 31895 Queens Private room 50
## 31896 Brooklyn Private room 80
## 31897 Queens Private room 49
## 31898 Manhattan Private room 50
## 31899 Queens Private room 120
## 31900 Queens Entire home/apt 60
## 31901 Manhattan Private room 45
## 31902 Manhattan Private room 70
## 31903 Manhattan Entire home/apt 120
## 31904 Manhattan Entire home/apt 375
## 31905 Brooklyn Private room 75
## 31906 Brooklyn Private room 70
## 31907 Queens Entire home/apt 60
## 31908 Queens Private room 55
## 31909 Brooklyn Private room 80
## 31910 Manhattan Entire home/apt 150
## 31911 Brooklyn Entire home/apt 150
## 31912 Manhattan Entire home/apt 225
## 31913 Queens Entire home/apt 200
## 31914 Brooklyn Entire home/apt 99
## 31915 Queens Entire home/apt 110
## 31916 Queens Entire home/apt 115
## 31917 Brooklyn Entire home/apt 225
## 31918 Brooklyn Private room 95
## 31919 Brooklyn Entire home/apt 139
## 31920 Brooklyn Private room 65
## 31921 Manhattan Entire home/apt 160
## 31922 Queens Private room 150
## 31923 Manhattan Entire home/apt 250
## 31924 Manhattan Entire home/apt 175
## 31925 Brooklyn Entire home/apt 179
## 31926 Brooklyn Entire home/apt 130
## 31927 Brooklyn Entire home/apt 80
## 31928 Brooklyn Private room 44
## 31929 Manhattan Entire home/apt 300
## 31930 Manhattan Entire home/apt 215
## 31931 Brooklyn Entire home/apt 100
## 31932 Brooklyn Entire home/apt 295
## 31933 Manhattan Entire home/apt 100
## 31934 Manhattan Shared room 85
## 31935 Brooklyn Entire home/apt 150
## 31936 Brooklyn Entire home/apt 225
## 31937 Queens Private room 80
## 31938 Brooklyn Private room 75
## 31939 Queens Private room 140
## 31940 Brooklyn Entire home/apt 110
## 31941 Brooklyn Private room 100
## 31942 Brooklyn Entire home/apt 265
## 31943 Brooklyn Entire home/apt 150
## 31944 Brooklyn Entire home/apt 91
## 31945 Manhattan Entire home/apt 795
## 31946 Manhattan Entire home/apt 185
## 31947 Manhattan Private room 125
## 31948 Queens Entire home/apt 75
## 31949 Manhattan Entire home/apt 330
## 31950 Brooklyn Private room 99
## 31951 Queens Private room 50
## 31952 Manhattan Private room 79
## 31953 Brooklyn Entire home/apt 129
## 31954 Queens Private room 40
## 31955 Manhattan Entire home/apt 1200
## 31956 Brooklyn Entire home/apt 200
## 31957 Brooklyn Private room 41
## 31958 Brooklyn Private room 140
## 31959 Manhattan Entire home/apt 295
## 31960 Brooklyn Entire home/apt 125
## 31961 Manhattan Entire home/apt 150
## 31962 Manhattan Entire home/apt 170
## 31963 Queens Entire home/apt 101
## 31964 Queens Entire home/apt 350
## 31965 Manhattan Entire home/apt 175
## 31966 Manhattan Entire home/apt 105
## 31967 Brooklyn Private room 54
## 31968 Queens Private room 90
## 31969 Queens Entire home/apt 125
## 31970 Brooklyn Entire home/apt 233
## 31971 Manhattan Entire home/apt 400
## 31972 Brooklyn Entire home/apt 139
## 31973 Brooklyn Entire home/apt 135
## 31974 Manhattan Entire home/apt 305
## 31975 Manhattan Entire home/apt 175
## 31976 Brooklyn Entire home/apt 140
## 31977 Manhattan Entire home/apt 126
## 31978 Brooklyn Private room 75
## 31979 Brooklyn Private room 62
## 31980 Brooklyn Private room 99
## 31981 Queens Private room 50
## 31982 Manhattan Entire home/apt 224
## 31983 Brooklyn Private room 95
## 31984 Brooklyn Entire home/apt 108
## 31985 Manhattan Private room 94
## 31986 Manhattan Entire home/apt 160
## 31987 Staten Island Entire home/apt 72
## 31988 Manhattan Entire home/apt 199
## 31989 Queens Private room 50
## 31990 Brooklyn Private room 75
## 31991 Queens Entire home/apt 169
## 31992 Brooklyn Private room 75
## 31993 Manhattan Entire home/apt 85
## 31994 Queens Private room 75
## 31995 Queens Private room 99
## 31996 Staten Island Private room 120
## 31997 Manhattan Entire home/apt 200
## 31998 Queens Private room 80
## 31999 Brooklyn Entire home/apt 150
## 32000 Queens Private room 55
## 32001 Manhattan Entire home/apt 180
## 32002 Manhattan Entire home/apt 120
## 32003 Manhattan Private room 90
## 32004 Manhattan Entire home/apt 1500
## 32005 Queens Private room 40
## 32006 Queens Private room 42
## 32007 Queens Private room 55
## 32008 Manhattan Entire home/apt 180
## 32009 Manhattan Entire home/apt 225
## 32010 Brooklyn Entire home/apt 150
## 32011 Bronx Private room 50
## 32012 Manhattan Entire home/apt 170
## 32013 Brooklyn Entire home/apt 50
## 32014 Manhattan Entire home/apt 350
## 32015 Brooklyn Entire home/apt 415
## 32016 Brooklyn Entire home/apt 112
## 32017 Manhattan Private room 170
## 32018 Brooklyn Private room 80
## 32019 Manhattan Entire home/apt 300
## 32020 Brooklyn Private room 60
## 32021 Queens Private room 54
## 32022 Bronx Private room 46
## 32023 Bronx Private room 80
## 32024 Staten Island Entire home/apt 180
## 32025 Brooklyn Entire home/apt 168
## 32026 Brooklyn Entire home/apt 400
## 32027 Queens Private room 100
## 32028 Brooklyn Private room 97
## 32029 Queens Private room 48
## 32030 Brooklyn Entire home/apt 95
## 32031 Manhattan Entire home/apt 170
## 32032 Manhattan Private room 125
## 32033 Manhattan Private room 175
## 32034 Manhattan Private room 80
## 32035 Manhattan Entire home/apt 139
## 32036 Manhattan Entire home/apt 162
## 32037 Brooklyn Private room 75
## 32038 Queens Entire home/apt 93
## 32039 Manhattan Private room 99
## 32040 Manhattan Entire home/apt 89
## 32041 Brooklyn Private room 85
## 32042 Manhattan Entire home/apt 2500
## 32043 Manhattan Private room 105
## 32044 Brooklyn Entire home/apt 100
## 32045 Manhattan Entire home/apt 198
## 32046 Brooklyn Private room 48
## 32047 Manhattan Entire home/apt 117
## 32048 Brooklyn Entire home/apt 110
## 32049 Manhattan Entire home/apt 206
## 32050 Manhattan Entire home/apt 164
## 32051 Brooklyn Private room 90
## 32052 Manhattan Entire home/apt 220
## 32053 Brooklyn Private room 150
## 32054 Brooklyn Private room 45
## 32055 Manhattan Private room 65
## 32056 Manhattan Entire home/apt 170
## 32057 Bronx Entire home/apt 399
## 32058 Manhattan Entire home/apt 175
## 32059 Brooklyn Entire home/apt 99
## 32060 Brooklyn Entire home/apt 185
## 32061 Manhattan Entire home/apt 150
## 32062 Brooklyn Entire home/apt 175
## 32063 Brooklyn Entire home/apt 189
## 32064 Brooklyn Private room 51
## 32065 Manhattan Entire home/apt 398
## 32066 Manhattan Entire home/apt 175
## 32067 Brooklyn Entire home/apt 160
## 32068 Brooklyn Entire home/apt 65
## 32069 Brooklyn Private room 130
## 32070 Brooklyn Entire home/apt 96
## 32071 Queens Entire home/apt 89
## 32072 Brooklyn Private room 70
## 32073 Brooklyn Entire home/apt 99
## 32074 Manhattan Entire home/apt 450
## 32075 Manhattan Private room 69
## 32076 Manhattan Entire home/apt 500
## 32077 Manhattan Private room 50
## 32078 Brooklyn Private room 120
## 32079 Brooklyn Entire home/apt 197
## 32080 Manhattan Entire home/apt 225
## 32081 Queens Entire home/apt 105
## 32082 Manhattan Entire home/apt 170
## 32083 Brooklyn Private room 68
## 32084 Manhattan Entire home/apt 110
## 32085 Manhattan Entire home/apt 200
## 32086 Manhattan Entire home/apt 360
## 32087 Manhattan Entire home/apt 165
## 32088 Manhattan Entire home/apt 200
## 32089 Brooklyn Entire home/apt 265
## 32090 Manhattan Private room 100
## 32091 Manhattan Entire home/apt 140
## 32092 Manhattan Entire home/apt 128
## 32093 Brooklyn Entire home/apt 125
## 32094 Manhattan Entire home/apt 150
## 32095 Manhattan Private room 80
## 32096 Brooklyn Private room 52
## 32097 Brooklyn Entire home/apt 350
## 32098 Brooklyn Entire home/apt 129
## 32099 Manhattan Entire home/apt 125
## 32100 Brooklyn Private room 100
## 32101 Manhattan Entire home/apt 140
## 32102 Brooklyn Private room 45
## 32103 Brooklyn Private room 70
## 32104 Brooklyn Private room 75
## 32105 Brooklyn Private room 110
## 32106 Bronx Private room 90
## 32107 Manhattan Private room 100
## 32108 Manhattan Entire home/apt 176
## 32109 Manhattan Shared room 90
## 32110 Manhattan Private room 89
## 32111 Manhattan Entire home/apt 120
## 32112 Manhattan Private room 65
## 32113 Manhattan Shared room 95
## 32114 Manhattan Entire home/apt 180
## 32115 Brooklyn Private room 60
## 32116 Queens Private room 80
## 32117 Manhattan Entire home/apt 191
## 32118 Manhattan Entire home/apt 130
## 32119 Brooklyn Entire home/apt 650
## 32120 Manhattan Private room 175
## 32121 Manhattan Private room 100
## 32122 Brooklyn Entire home/apt 113
## 32123 Manhattan Private room 43
## 32124 Manhattan Private room 65
## 32125 Manhattan Private room 95
## 32126 Manhattan Entire home/apt 200
## 32127 Brooklyn Entire home/apt 130
## 32128 Brooklyn Entire home/apt 275
## 32129 Brooklyn Private room 100
## 32130 Queens Private room 85
## 32131 Brooklyn Private room 100
## 32132 Manhattan Entire home/apt 190
## 32133 Manhattan Entire home/apt 150
## 32134 Queens Entire home/apt 65
## 32135 Queens Entire home/apt 100
## 32136 Manhattan Private room 50
## 32137 Brooklyn Entire home/apt 120
## 32138 Brooklyn Entire home/apt 186
## 32139 Brooklyn Entire home/apt 120
## 32140 Queens Private room 50
## 32141 Staten Island Private room 32
## 32142 Manhattan Entire home/apt 239
## 32143 Brooklyn Private room 45
## 32144 Manhattan Entire home/apt 159
## 32145 Manhattan Entire home/apt 130
## 32146 Brooklyn Entire home/apt 107
## 32147 Brooklyn Entire home/apt 75
## 32148 Manhattan Private room 120
## 32149 Brooklyn Entire home/apt 80
## 32150 Manhattan Entire home/apt 250
## 32151 Brooklyn Entire home/apt 217
## 32152 Manhattan Entire home/apt 699
## 32153 Brooklyn Entire home/apt 475
## 32154 Brooklyn Entire home/apt 150
## 32155 Brooklyn Entire home/apt 150
## 32156 Manhattan Entire home/apt 225
## 32157 Manhattan Entire home/apt 225
## 32158 Manhattan Entire home/apt 140
## 32159 Queens Private room 49
## 32160 Queens Entire home/apt 450
## 32161 Manhattan Entire home/apt 200
## 32162 Manhattan Entire home/apt 112
## 32163 Queens Entire home/apt 89
## 32164 Brooklyn Private room 209
## 32165 Brooklyn Entire home/apt 300
## 32166 Queens Private room 49
## 32167 Queens Private room 50
## 32168 Manhattan Entire home/apt 294
## 32169 Manhattan Entire home/apt 450
## 32170 Brooklyn Entire home/apt 150
## 32171 Manhattan Entire home/apt 89
## 32172 Brooklyn Entire home/apt 79
## 32173 Brooklyn Entire home/apt 50
## 32174 Manhattan Private room 70
## 32175 Queens Entire home/apt 118
## 32176 Manhattan Private room 75
## 32177 Brooklyn Private room 41
## 32178 Queens Entire home/apt 190
## 32179 Manhattan Entire home/apt 90
## 32180 Brooklyn Entire home/apt 195
## 32181 Brooklyn Entire home/apt 150
## 32182 Brooklyn Private room 47
## 32183 Queens Entire home/apt 86
## 32184 Manhattan Private room 160
## 32185 Manhattan Entire home/apt 150
## 32186 Brooklyn Private room 45
## 32187 Manhattan Entire home/apt 337
## 32188 Brooklyn Private room 78
## 32189 Brooklyn Entire home/apt 169
## 32190 Queens Entire home/apt 169
## 32191 Manhattan Private room 86
## 32192 Manhattan Entire home/apt 350
## 32193 Brooklyn Private room 99
## 32194 Manhattan Entire home/apt 180
## 32195 Brooklyn Private room 105
## 32196 Brooklyn Private room 85
## 32197 Manhattan Entire home/apt 222
## 32198 Manhattan Private room 97
## 32199 Manhattan Entire home/apt 219
## 32200 Manhattan Entire home/apt 232
## 32201 Brooklyn Private room 40
## 32202 Brooklyn Private room 100
## 32203 Manhattan Entire home/apt 100
## 32204 Manhattan Entire home/apt 400
## 32205 Queens Private room 69
## 32206 Manhattan Entire home/apt 180
## 32207 Brooklyn Entire home/apt 150
## 32208 Brooklyn Entire home/apt 88
## 32209 Manhattan Entire home/apt 169
## 32210 Staten Island Private room 40
## 32211 Manhattan Entire home/apt 390
## 32212 Manhattan Entire home/apt 600
## 32213 Staten Island Private room 50
## 32214 Brooklyn Private room 55
## 32215 Manhattan Private room 90
## 32216 Brooklyn Private room 95
## 32217 Queens Entire home/apt 85
## 32218 Manhattan Private room 65
## 32219 Brooklyn Entire home/apt 100
## 32220 Brooklyn Entire home/apt 295
## 32221 Manhattan Entire home/apt 280
## 32222 Brooklyn Private room 45
## 32223 Manhattan Private room 89
## 32224 Brooklyn Private room 49
## 32225 Staten Island Private room 75
## 32226 Queens Shared room 45
## 32227 Brooklyn Private room 90
## 32228 Brooklyn Entire home/apt 125
## 32229 Manhattan Private room 149
## 32230 Queens Private room 110
## 32231 Manhattan Entire home/apt 115
## 32232 Manhattan Private room 76
## 32233 Manhattan Private room 90
## 32234 Manhattan Entire home/apt 182
## 32235 Brooklyn Entire home/apt 65
## 32236 Manhattan Entire home/apt 95
## 32237 Brooklyn Private room 46
## 32238 Brooklyn Private room 120
## 32239 Brooklyn Private room 37
## 32240 Brooklyn Private room 85
## 32241 Brooklyn Private room 85
## 32242 Queens Private room 75
## 32243 Manhattan Private room 110
## 32244 Brooklyn Entire home/apt 140
## 32245 Manhattan Entire home/apt 150
## 32246 Brooklyn Private room 85
## 32247 Manhattan Entire home/apt 130
## 32248 Brooklyn Entire home/apt 300
## 32249 Brooklyn Entire home/apt 130
## 32250 Brooklyn Entire home/apt 125
## 32251 Bronx Private room 74
## 32252 Manhattan Private room 99
## 32253 Brooklyn Private room 62
## 32254 Manhattan Entire home/apt 200
## 32255 Manhattan Entire home/apt 180
## 32256 Manhattan Private room 46
## 32257 Brooklyn Private room 70
## 32258 Manhattan Entire home/apt 166
## 32259 Manhattan Entire home/apt 359
## 32260 Queens Entire home/apt 200
## 32261 Manhattan Private room 100
## 32262 Brooklyn Entire home/apt 100
## 32263 Manhattan Entire home/apt 175
## 32264 Brooklyn Private room 40
## 32265 Manhattan Entire home/apt 120
## 32266 Queens Private room 38
## 32267 Brooklyn Private room 55
## 32268 Brooklyn Private room 60
## 32269 Manhattan Entire home/apt 199
## 32270 Manhattan Private room 50
## 32271 Brooklyn Private room 32
## 32272 Queens Entire home/apt 175
## 32273 Manhattan Private room 74
## 32274 Manhattan Entire home/apt 175
## 32275 Manhattan Entire home/apt 113
## 32276 Brooklyn Entire home/apt 150
## 32277 Brooklyn Entire home/apt 200
## 32278 Brooklyn Private room 95
## 32279 Bronx Entire home/apt 86
## 32280 Brooklyn Entire home/apt 260
## 32281 Brooklyn Private room 65
## 32282 Manhattan Entire home/apt 165
## 32283 Brooklyn Entire home/apt 150
## 32284 Manhattan Entire home/apt 140
## 32285 Manhattan Entire home/apt 62
## 32286 Manhattan Shared room 100
## 32287 Brooklyn Entire home/apt 100
## 32288 Queens Entire home/apt 125
## 32289 Manhattan Shared room 44
## 32290 Manhattan Private room 75
## 32291 Manhattan Entire home/apt 299
## 32292 Manhattan Entire home/apt 799
## 32293 Queens Private room 70
## 32294 Manhattan Private room 149
## 32295 Brooklyn Entire home/apt 145
## 32296 Manhattan Private room 50
## 32297 Manhattan Private room 50
## 32298 Brooklyn Private room 80
## 32299 Queens Private room 100
## 32300 Brooklyn Private room 60
## 32301 Brooklyn Entire home/apt 92
## 32302 Queens Private room 80
## 32303 Brooklyn Entire home/apt 155
## 32304 Brooklyn Private room 65
## 32305 Manhattan Private room 156
## 32306 Brooklyn Private room 100
## 32307 Manhattan Entire home/apt 197
## 32308 Brooklyn Private room 80
## 32309 Brooklyn Entire home/apt 250
## 32310 Brooklyn Private room 45
## 32311 Brooklyn Private room 50
## 32312 Manhattan Entire home/apt 250
## 32313 Manhattan Entire home/apt 199
## 32314 Brooklyn Entire home/apt 150
## 32315 Brooklyn Private room 80
## 32316 Bronx Private room 33
## 32317 Manhattan Private room 85
## 32318 Brooklyn Private room 65
## 32319 Manhattan Private room 100
## 32320 Brooklyn Entire home/apt 60
## 32321 Brooklyn Entire home/apt 150
## 32322 Manhattan Private room 80
## 32323 Manhattan Entire home/apt 339
## 32324 Manhattan Entire home/apt 175
## 32325 Manhattan Entire home/apt 339
## 32326 Manhattan Private room 100
## 32327 Manhattan Private room 100
## 32328 Brooklyn Entire home/apt 200
## 32329 Manhattan Private room 75
## 32330 Manhattan Entire home/apt 140
## 32331 Brooklyn Entire home/apt 245
## 32332 Bronx Entire home/apt 195
## 32333 Brooklyn Private room 45
## 32334 Brooklyn Entire home/apt 93
## 32335 Manhattan Private room 35
## 32336 Queens Private room 40
## 32337 Manhattan Entire home/apt 99
## 32338 Brooklyn Private room 65
## 32339 Queens Entire home/apt 156
## 32340 Brooklyn Private room 60
## 32341 Brooklyn Private room 60
## 32342 Manhattan Entire home/apt 399
## 32343 Queens Entire home/apt 100
## 32344 Brooklyn Entire home/apt 95
## 32345 Brooklyn Entire home/apt 108
## 32346 Manhattan Entire home/apt 269
## 32347 Brooklyn Entire home/apt 240
## 32348 Manhattan Entire home/apt 200
## 32349 Bronx Entire home/apt 80
## 32350 Brooklyn Private room 61
## 32351 Brooklyn Entire home/apt 200
## 32352 Manhattan Private room 50
## 32353 Queens Entire home/apt 100
## 32354 Queens Private room 65
## 32355 Brooklyn Private room 60
## 32356 Manhattan Entire home/apt 410
## 32357 Manhattan Private room 55
## 32358 Manhattan Entire home/apt 245
## 32359 Queens Entire home/apt 132
## 32360 Bronx Private room 45
## 32361 Manhattan Entire home/apt 155
## 32362 Manhattan Entire home/apt 225
## 32363 Brooklyn Entire home/apt 150
## 32364 Brooklyn Private room 150
## 32365 Manhattan Entire home/apt 450
## 32366 Manhattan Private room 100
## 32367 Manhattan Private room 110
## 32368 Brooklyn Entire home/apt 160
## 32369 Manhattan Shared room 220
## 32370 Queens Entire home/apt 150
## 32371 Manhattan Entire home/apt 350
## 32372 Brooklyn Entire home/apt 53
## 32373 Manhattan Entire home/apt 1000
## 32374 Manhattan Entire home/apt 145
## 32375 Manhattan Private room 68
## 32376 Queens Private room 60
## 32377 Manhattan Private room 85
## 32378 Brooklyn Private room 60
## 32379 Queens Private room 65
## 32380 Manhattan Entire home/apt 130
## 32381 Brooklyn Private room 61
## 32382 Brooklyn Entire home/apt 300
## 32383 Brooklyn Private room 41
## 32384 Manhattan Entire home/apt 425
## 32385 Brooklyn Entire home/apt 135
## 32386 Brooklyn Entire home/apt 85
## 32387 Brooklyn Private room 48
## 32388 Manhattan Shared room 165
## 32389 Manhattan Private room 50
## 32390 Brooklyn Entire home/apt 117
## 32391 Brooklyn Entire home/apt 95
## 32392 Brooklyn Private room 75
## 32393 Brooklyn Entire home/apt 140
## 32394 Brooklyn Entire home/apt 125
## 32395 Manhattan Private room 85
## 32396 Brooklyn Entire home/apt 200
## 32397 Bronx Entire home/apt 149
## 32398 Brooklyn Private room 85
## 32399 Brooklyn Shared room 30
## 32400 Queens Private room 92
## 32401 Manhattan Entire home/apt 200
## 32402 Queens Private room 60
## 32403 Manhattan Private room 150
## 32404 Manhattan Private room 109
## 32405 Brooklyn Private room 60
## 32406 Manhattan Entire home/apt 650
## 32407 Brooklyn Entire home/apt 140
## 32408 Brooklyn Entire home/apt 200
## 32409 Manhattan Entire home/apt 120
## 32410 Brooklyn Entire home/apt 175
## 32411 Brooklyn Entire home/apt 170
## 32412 Manhattan Entire home/apt 83
## 32413 Brooklyn Private room 90
## 32414 Queens Private room 110
## 32415 Manhattan Entire home/apt 89
## 32416 Queens Entire home/apt 96
## 32417 Manhattan Private room 70
## 32418 Queens Private room 80
## 32419 Brooklyn Private room 65
## 32420 Brooklyn Private room 150
## 32421 Manhattan Private room 100
## 32422 Manhattan Private room 99
## 32423 Manhattan Private room 150
## 32424 Brooklyn Private room 69
## 32425 Brooklyn Entire home/apt 375
## 32426 Brooklyn Private room 55
## 32427 Manhattan Entire home/apt 175
## 32428 Queens Private room 90
## 32429 Brooklyn Private room 60
## 32430 Manhattan Private room 100
## 32431 Manhattan Private room 47
## 32432 Manhattan Entire home/apt 160
## 32433 Queens Entire home/apt 80
## 32434 Manhattan Private room 125
## 32435 Manhattan Private room 81
## 32436 Brooklyn Entire home/apt 350
## 32437 Brooklyn Entire home/apt 183
## 32438 Bronx Entire home/apt 60
## 32439 Manhattan Entire home/apt 120
## 32440 Brooklyn Entire home/apt 1000
## 32441 Brooklyn Private room 156
## 32442 Brooklyn Entire home/apt 300
## 32443 Manhattan Private room 179
## 32444 Brooklyn Private room 70
## 32445 Manhattan Private room 80
## 32446 Brooklyn Entire home/apt 120
## 32447 Brooklyn Private room 73
## 32448 Manhattan Entire home/apt 236
## 32449 Brooklyn Private room 110
## 32450 Manhattan Private room 55
## 32451 Brooklyn Private room 100
## 32452 Manhattan Private room 55
## 32453 Brooklyn Private room 75
## 32454 Brooklyn Entire home/apt 160
## 32455 Manhattan Entire home/apt 170
## 32456 Manhattan Entire home/apt 167
## 32457 Manhattan Entire home/apt 120
## 32458 Brooklyn Private room 230
## 32459 Brooklyn Entire home/apt 125
## 32460 Brooklyn Private room 100
## 32461 Manhattan Entire home/apt 300
## 32462 Manhattan Entire home/apt 125
## 32463 Manhattan Private room 300
## 32464 Brooklyn Private room 100
## 32465 Manhattan Entire home/apt 250
## 32466 Queens Private room 50
## 32467 Queens Private room 70
## 32468 Queens Private room 43
## 32469 Brooklyn Private room 95
## 32470 Manhattan Entire home/apt 164
## 32471 Brooklyn Private room 40
## 32472 Brooklyn Entire home/apt 95
## 32473 Manhattan Entire home/apt 229
## 32474 Manhattan Entire home/apt 190
## 32475 Brooklyn Private room 120
## 32476 Manhattan Entire home/apt 207
## 32477 Brooklyn Entire home/apt 100
## 32478 Manhattan Entire home/apt 180
## 32479 Manhattan Private room 99
## 32480 Brooklyn Entire home/apt 125
## 32481 Queens Private room 50
## 32482 Brooklyn Entire home/apt 190
## 32483 Manhattan Private room 55
## 32484 Brooklyn Entire home/apt 150
## 32485 Brooklyn Entire home/apt 75
## 32486 Manhattan Entire home/apt 500
## 32487 Manhattan Shared room 69
## 32488 Manhattan Shared room 99
## 32489 Manhattan Shared room 65
## 32490 Manhattan Shared room 65
## 32491 Brooklyn Private room 36
## 32492 Brooklyn Entire home/apt 125
## 32493 Brooklyn Private room 50
## 32494 Brooklyn Entire home/apt 250
## 32495 Queens Private room 54
## 32496 Queens Private room 55
## 32497 Brooklyn Entire home/apt 95
## 32498 Manhattan Entire home/apt 115
## 32499 Bronx Private room 35
## 32500 Bronx Entire home/apt 105
## 32501 Queens Private room 200
## 32502 Manhattan Private room 123
## 32503 Brooklyn Entire home/apt 95
## 32504 Manhattan Entire home/apt 300
## 32505 Manhattan Private room 120
## 32506 Bronx Private room 70
## 32507 Manhattan Private room 140
## 32508 Manhattan Private room 114
## 32509 Brooklyn Private room 80
## 32510 Brooklyn Entire home/apt 85
## 32511 Bronx Private room 125
## 32512 Manhattan Entire home/apt 157
## 32513 Manhattan Entire home/apt 125
## 32514 Manhattan Private room 90
## 32515 Manhattan Private room 54
## 32516 Manhattan Entire home/apt 195
## 32517 Brooklyn Private room 230
## 32518 Manhattan Private room 40
## 32519 Brooklyn Private room 65
## 32520 Manhattan Entire home/apt 325
## 32521 Brooklyn Entire home/apt 460
## 32522 Brooklyn Shared room 30
## 32523 Manhattan Entire home/apt 132
## 32524 Brooklyn Private room 40
## 32525 Manhattan Entire home/apt 180
## 32526 Manhattan Entire home/apt 149
## 32527 Brooklyn Entire home/apt 90
## 32528 Manhattan Entire home/apt 149
## 32529 Manhattan Private room 94
## 32530 Manhattan Private room 91
## 32531 Staten Island Entire home/apt 115
## 32532 Queens Entire home/apt 50
## 32533 Manhattan Private room 55
## 32534 Brooklyn Entire home/apt 100
## 32535 Brooklyn Private room 90
## 32536 Manhattan Entire home/apt 160
## 32537 Queens Entire home/apt 100
## 32538 Queens Private room 60
## 32539 Brooklyn Private room 75
## 32540 Brooklyn Entire home/apt 130
## 32541 Brooklyn Private room 120
## 32542 Brooklyn Private room 149
## 32543 Manhattan Private room 85
## 32544 Manhattan Private room 182
## 32545 Brooklyn Private room 1333
## 32546 Brooklyn Entire home/apt 160
## 32547 Manhattan Private room 50
## 32548 Manhattan Entire home/apt 175
## 32549 Manhattan Entire home/apt 155
## 32550 Manhattan Entire home/apt 179
## 32551 Manhattan Entire home/apt 350
## 32552 Brooklyn Private room 45
## 32553 Brooklyn Private room 100
## 32554 Manhattan Private room 136
## 32555 Bronx Entire home/apt 125
## 32556 Brooklyn Entire home/apt 60
## 32557 Manhattan Entire home/apt 200
## 32558 Brooklyn Entire home/apt 80
## 32559 Brooklyn Private room 60
## 32560 Manhattan Shared room 235
## 32561 Manhattan Private room 249
## 32562 Manhattan Private room 125
## 32563 Brooklyn Private room 65
## 32564 Brooklyn Private room 500
## 32565 Brooklyn Private room 45
## 32566 Queens Entire home/apt 325
## 32567 Brooklyn Entire home/apt 150
## 32568 Manhattan Private room 150
## 32569 Manhattan Entire home/apt 163
## 32570 Manhattan Entire home/apt 165
## 32571 Queens Entire home/apt 189
## 32572 Manhattan Private room 1100
## 32573 Brooklyn Private room 50
## 32574 Brooklyn Entire home/apt 200
## 32575 Manhattan Entire home/apt 225
## 32576 Brooklyn Entire home/apt 350
## 32577 Manhattan Private room 46
## 32578 Brooklyn Entire home/apt 350
## 32579 Manhattan Entire home/apt 499
## 32580 Manhattan Entire home/apt 115
## 32581 Queens Private room 100
## 32582 Manhattan Private room 95
## 32583 Manhattan Private room 43
## 32584 Manhattan Entire home/apt 120
## 32585 Queens Private room 88
## 32586 Brooklyn Entire home/apt 215
## 32587 Brooklyn Entire home/apt 200
## 32588 Manhattan Entire home/apt 299
## 32589 Manhattan Private room 115
## 32590 Manhattan Private room 199
## 32591 Brooklyn Entire home/apt 129
## 32592 Brooklyn Private room 84
## 32593 Brooklyn Entire home/apt 170
## 32594 Manhattan Entire home/apt 149
## 32595 Brooklyn Private room 47
## 32596 Brooklyn Entire home/apt 125
## 32597 Manhattan Entire home/apt 177
## 32598 Brooklyn Entire home/apt 500
## 32599 Brooklyn Private room 60
## 32600 Manhattan Entire home/apt 100
## 32601 Manhattan Entire home/apt 180
## 32602 Manhattan Private room 65
## 32603 Manhattan Entire home/apt 200
## 32604 Queens Private room 50
## 32605 Brooklyn Private room 150
## 32606 Brooklyn Entire home/apt 159
## 32607 Brooklyn Entire home/apt 130
## 32608 Manhattan Private room 100
## 32609 Queens Private room 65
## 32610 Manhattan Private room 100
## 32611 Manhattan Entire home/apt 185
## 32612 Manhattan Entire home/apt 150
## 32613 Manhattan Entire home/apt 225
## 32614 Manhattan Entire home/apt 398
## 32615 Manhattan Private room 62
## 32616 Brooklyn Entire home/apt 180
## 32617 Manhattan Entire home/apt 250
## 32618 Brooklyn Entire home/apt 75
## 32619 Bronx Entire home/apt 150
## 32620 Bronx Shared room 33
## 32621 Brooklyn Entire home/apt 200
## 32622 Brooklyn Entire home/apt 99
## 32623 Manhattan Private room 100
## 32624 Brooklyn Private room 49
## 32625 Brooklyn Private room 50
## 32626 Manhattan Private room 83
## 32627 Queens Private room 40
## 32628 Brooklyn Private room 45
## 32629 Staten Island Entire home/apt 161
## 32630 Manhattan Private room 125
## 32631 Queens Entire home/apt 90
## 32632 Manhattan Private room 85
## 32633 Manhattan Shared room 69
## 32634 Queens Private room 85
## 32635 Manhattan Shared room 65
## 32636 Manhattan Private room 99
## 32637 Queens Entire home/apt 110
## 32638 Manhattan Private room 70
## 32639 Manhattan Private room 100
## 32640 Queens Entire home/apt 25
## 32641 Manhattan Entire home/apt 225
## 32642 Manhattan Entire home/apt 110
## 32643 Queens Private room 60
## 32644 Brooklyn Private room 55
## 32645 Manhattan Private room 98
## 32646 Brooklyn Entire home/apt 295
## 32647 Queens Entire home/apt 80
## 32648 Manhattan Shared room 70
## 32649 Queens Entire home/apt 400
## 32650 Brooklyn Private room 66
## 32651 Manhattan Private room 98
## 32652 Manhattan Entire home/apt 186
## 32653 Queens Private room 60
## 32654 Manhattan Private room 97
## 32655 Queens Private room 60
## 32656 Manhattan Private room 98
## 32657 Brooklyn Entire home/apt 200
## 32658 Manhattan Private room 62
## 32659 Manhattan Private room 62
## 32660 Manhattan Entire home/apt 138
## 32661 Manhattan Private room 65
## 32662 Brooklyn Private room 90
## 32663 Queens Entire home/apt 99
## 32664 Manhattan Entire home/apt 350
## 32665 Brooklyn Entire home/apt 140
## 32666 Brooklyn Entire home/apt 85
## 32667 Manhattan Entire home/apt 200
## 32668 Manhattan Private room 90
## 32669 Brooklyn Private room 60
## 32670 Manhattan Entire home/apt 225
## 32671 Brooklyn Private room 48
## 32672 Queens Entire home/apt 149
## 32673 Manhattan Entire home/apt 200
## 32674 Manhattan Entire home/apt 225
## 32675 Queens Private room 50
## 32676 Queens Private room 65
## 32677 Manhattan Private room 80
## 32678 Brooklyn Private room 87
## 32679 Brooklyn Private room 87
## 32680 Brooklyn Entire home/apt 149
## 32681 Brooklyn Entire home/apt 169
## 32682 Brooklyn Private room 95
## 32683 Brooklyn Entire home/apt 305
## 32684 Brooklyn Entire home/apt 525
## 32685 Brooklyn Private room 102
## 32686 Manhattan Entire home/apt 220
## 32687 Manhattan Entire home/apt 179
## 32688 Brooklyn Entire home/apt 190
## 32689 Brooklyn Private room 50
## 32690 Brooklyn Entire home/apt 140
## 32691 Manhattan Entire home/apt 220
## 32692 Manhattan Private room 124
## 32693 Brooklyn Entire home/apt 114
## 32694 Manhattan Entire home/apt 199
## 32695 Brooklyn Entire home/apt 135
## 32696 Manhattan Private room 55
## 32697 Brooklyn Private room 125
## 32698 Manhattan Entire home/apt 131
## 32699 Brooklyn Entire home/apt 100
## 32700 Manhattan Private room 95
## 32701 Brooklyn Entire home/apt 220
## 32702 Brooklyn Entire home/apt 135
## 32703 Manhattan Private room 80
## 32704 Brooklyn Private room 89
## 32705 Staten Island Entire home/apt 97
## 32706 Manhattan Entire home/apt 167
## 32707 Manhattan Private room 45
## 32708 Brooklyn Private room 45
## 32709 Brooklyn Shared room 45
## 32710 Brooklyn Private room 75
## 32711 Brooklyn Private room 100
## 32712 Manhattan Entire home/apt 189
## 32713 Manhattan Private room 70
## 32714 Manhattan Private room 120
## 32715 Manhattan Entire home/apt 164
## 32716 Brooklyn Entire home/apt 375
## 32717 Brooklyn Private room 25
## 32718 Brooklyn Entire home/apt 165
## 32719 Manhattan Private room 56
## 32720 Manhattan Private room 52
## 32721 Manhattan Entire home/apt 275
## 32722 Manhattan Entire home/apt 250
## 32723 Queens Private room 89
## 32724 Queens Private room 89
## 32725 Brooklyn Private room 49
## 32726 Brooklyn Private room 60
## 32727 Manhattan Entire home/apt 159
## 32728 Manhattan Private room 120
## 32729 Brooklyn Private room 88
## 32730 Manhattan Entire home/apt 186
## 32731 Manhattan Entire home/apt 99
## 32732 Manhattan Private room 90
## 32733 Brooklyn Private room 70
## 32734 Brooklyn Private room 40
## 32735 Manhattan Entire home/apt 649
## 32736 Brooklyn Private room 50
## 32737 Brooklyn Private room 45
## 32738 Brooklyn Private room 95
## 32739 Manhattan Private room 149
## 32740 Brooklyn Entire home/apt 50
## 32741 Brooklyn Entire home/apt 280
## 32742 Brooklyn Private room 75
## 32743 Queens Private room 65
## 32744 Brooklyn Entire home/apt 100
## 32745 Manhattan Private room 80
## 32746 Manhattan Private room 80
## 32747 Brooklyn Private room 60
## 32748 Brooklyn Entire home/apt 100
## 32749 Brooklyn Private room 35
## 32750 Brooklyn Entire home/apt 250
## 32751 Brooklyn Private room 75
## 32752 Brooklyn Entire home/apt 60
## 32753 Brooklyn Private room 49
## 32754 Brooklyn Entire home/apt 125
## 32755 Brooklyn Private room 50
## 32756 Manhattan Private room 50
## 32757 Brooklyn Entire home/apt 100
## 32758 Manhattan Private room 43
## 32759 Brooklyn Entire home/apt 200
## 32760 Manhattan Private room 55
## 32761 Manhattan Private room 54
## 32762 Manhattan Private room 80
## 32763 Manhattan Private room 140
## 32764 Manhattan Entire home/apt 250
## 32765 Queens Entire home/apt 250
## 32766 Manhattan Entire home/apt 499
## 32767 Brooklyn Entire home/apt 140
## 32768 Brooklyn Entire home/apt 175
## 32769 Manhattan Private room 111
## 32770 Manhattan Entire home/apt 160
## 32771 Manhattan Private room 150
## 32772 Manhattan Shared room 60
## 32773 Brooklyn Private room 70
## 32774 Brooklyn Private room 70
## 32775 Brooklyn Private room 425
## 32776 Manhattan Entire home/apt 230
## 32777 Brooklyn Private room 50
## 32778 Manhattan Entire home/apt 200
## 32779 Manhattan Entire home/apt 125
## 32780 Manhattan Private room 60
## 32781 Brooklyn Private room 40
## 32782 Bronx Entire home/apt 107
## 32783 Manhattan Private room 62
## 32784 Manhattan Entire home/apt 195
## 32785 Bronx Entire home/apt 150
## 32786 Brooklyn Private room 50
## 32787 Manhattan Private room 85
## 32788 Brooklyn Entire home/apt 110
## 32789 Manhattan Entire home/apt 211
## 32790 Manhattan Private room 100
## 32791 Manhattan Entire home/apt 125
## 32792 Brooklyn Private room 45
## 32793 Queens Private room 38
## 32794 Queens Private room 50
## 32795 Manhattan Private room 83
## 32796 Manhattan Private room 100
## 32797 Manhattan Entire home/apt 1000
## 32798 Bronx Private room 35
## 32799 Brooklyn Private room 75
## 32800 Queens Private room 26
## 32801 Manhattan Private room 62
## 32802 Brooklyn Entire home/apt 170
## 32803 Manhattan Private room 62
## 32804 Queens Entire home/apt 60
## 32805 Queens Private room 51
## 32806 Brooklyn Private room 70
## 32807 Manhattan Entire home/apt 105
## 32808 Queens Private room 60
## 32809 Manhattan Private room 100
## 32810 Manhattan Private room 122
## 32811 Brooklyn Entire home/apt 10
## 32812 Manhattan Entire home/apt 299
## 32813 Queens Private room 85
## 32814 Manhattan Private room 90
## 32815 Brooklyn Entire home/apt 124
## 32816 Queens Private room 42
## 32817 Brooklyn Entire home/apt 180
## 32818 Queens Private room 80
## 32819 Manhattan Entire home/apt 175
## 32820 Queens Private room 85
## 32821 Manhattan Private room 45
## 32822 Manhattan Entire home/apt 160
## 32823 Brooklyn Entire home/apt 59
## 32824 Brooklyn Private room 150
## 32825 Manhattan Shared room 69
## 32826 Manhattan Shared room 69
## 32827 Manhattan Entire home/apt 180
## 32828 Brooklyn Entire home/apt 100
## 32829 Brooklyn Entire home/apt 125
## 32830 Brooklyn Private room 50
## 32831 Brooklyn Private room 75
## 32832 Manhattan Private room 55
## 32833 Manhattan Private room 65
## 32834 Manhattan Entire home/apt 200
## 32835 Brooklyn Entire home/apt 120
## 32836 Manhattan Entire home/apt 160
## 32837 Brooklyn Entire home/apt 200
## 32838 Manhattan Private room 34
## 32839 Manhattan Entire home/apt 195
## 32840 Manhattan Private room 70
## 32841 Queens Entire home/apt 105
## 32842 Brooklyn Entire home/apt 195
## 32843 Manhattan Private room 60
## 32844 Manhattan Entire home/apt 120
## 32845 Manhattan Entire home/apt 250
## 32846 Brooklyn Private room 89
## 32847 Manhattan Private room 32
## 32848 Queens Entire home/apt 340
## 32849 Manhattan Entire home/apt 550
## 32850 Manhattan Private room 88
## 32851 Queens Private room 70
## 32852 Manhattan Private room 65
## 32853 Manhattan Entire home/apt 125
## 32854 Bronx Entire home/apt 100
## 32855 Manhattan Entire home/apt 110
## 32856 Queens Entire home/apt 125
## 32857 Brooklyn Private room 40
## 32858 Manhattan Entire home/apt 150
## 32859 Manhattan Private room 70
## 32860 Manhattan Private room 72
## 32861 Brooklyn Entire home/apt 195
## 32862 Brooklyn Shared room 45
## 32863 Brooklyn Private room 45
## 32864 Brooklyn Entire home/apt 90
## 32865 Brooklyn Private room 60
## 32866 Manhattan Private room 134
## 32867 Manhattan Entire home/apt 250
## 32868 Queens Entire home/apt 75
## 32869 Brooklyn Private room 80
## 32870 Brooklyn Entire home/apt 300
## 32871 Manhattan Private room 75
## 32872 Manhattan Private room 150
## 32873 Manhattan Private room 52
## 32874 Brooklyn Entire home/apt 550
## 32875 Brooklyn Entire home/apt 250
## 32876 Manhattan Private room 110
## 32877 Brooklyn Entire home/apt 250
## 32878 Queens Entire home/apt 325
## 32879 Bronx Private room 21
## 32880 Manhattan Entire home/apt 150
## 32881 Brooklyn Entire home/apt 75
## 32882 Manhattan Private room 100
## 32883 Queens Private room 37
## 32884 Queens Private room 50
## 32885 Manhattan Entire home/apt 275
## 32886 Brooklyn Entire home/apt 110
## 32887 Bronx Entire home/apt 115
## 32888 Brooklyn Entire home/apt 160
## 32889 Brooklyn Private room 65
## 32890 Manhattan Entire home/apt 184
## 32891 Manhattan Entire home/apt 189
## 32892 Manhattan Entire home/apt 169
## 32893 Manhattan Private room 129
## 32894 Manhattan Private room 119
## 32895 Manhattan Private room 119
## 32896 Brooklyn Private room 65
## 32897 Manhattan Shared room 40
## 32898 Brooklyn Private room 45
## 32899 Manhattan Entire home/apt 375
## 32900 Manhattan Entire home/apt 200
## 32901 Manhattan Private room 65
## 32902 Manhattan Private room 70
## 32903 Manhattan Private room 190
## 32904 Brooklyn Private room 85
## 32905 Manhattan Entire home/apt 800
## 32906 Brooklyn Private room 80
## 32907 Manhattan Private room 65
## 32908 Queens Private room 129
## 32909 Queens Private room 60
## 32910 Manhattan Entire home/apt 180
## 32911 Manhattan Private room 35
## 32912 Brooklyn Private room 60
## 32913 Brooklyn Private room 60
## 32914 Manhattan Private room 39
## 32915 Brooklyn Private room 70
## 32916 Brooklyn Entire home/apt 115
## 32917 Brooklyn Private room 60
## 32918 Manhattan Private room 80
## 32919 Manhattan Private room 68
## 32920 Brooklyn Entire home/apt 155
## 32921 Brooklyn Entire home/apt 780
## 32922 Manhattan Entire home/apt 135
## 32923 Manhattan Private room 115
## 32924 Queens Private room 59
## 32925 Manhattan Entire home/apt 169
## 32926 Brooklyn Entire home/apt 100
## 32927 Manhattan Entire home/apt 195
## 32928 Manhattan Private room 85
## 32929 Brooklyn Entire home/apt 109
## 32930 Manhattan Private room 109
## 32931 Brooklyn Entire home/apt 85
## 32932 Brooklyn Private room 85
## 32933 Manhattan Private room 45
## 32934 Manhattan Private room 60
## 32935 Manhattan Entire home/apt 115
## 32936 Manhattan Entire home/apt 100
## 32937 Brooklyn Private room 50
## 32938 Manhattan Entire home/apt 125
## 32939 Manhattan Entire home/apt 850
## 32940 Manhattan Private room 70
## 32941 Manhattan Private room 100
## 32942 Manhattan Private room 55
## 32943 Queens Entire home/apt 95
## 32944 Brooklyn Entire home/apt 347
## 32945 Brooklyn Private room 50
## 32946 Brooklyn Entire home/apt 190
## 32947 Manhattan Entire home/apt 169
## 32948 Manhattan Private room 215
## 32949 Manhattan Entire home/apt 299
## 32950 Manhattan Entire home/apt 175
## 32951 Manhattan Entire home/apt 220
## 32952 Manhattan Entire home/apt 120
## 32953 Manhattan Entire home/apt 200
## 32954 Brooklyn Entire home/apt 190
## 32955 Brooklyn Private room 90
## 32956 Bronx Entire home/apt 85
## 32957 Manhattan Entire home/apt 90
## 32958 Brooklyn Entire home/apt 399
## 32959 Brooklyn Entire home/apt 349
## 32960 Brooklyn Entire home/apt 379
## 32961 Brooklyn Private room 399
## 32962 Brooklyn Entire home/apt 150
## 32963 Manhattan Private room 98
## 32964 Brooklyn Entire home/apt 140
## 32965 Manhattan Private room 50
## 32966 Manhattan Entire home/apt 393
## 32967 Brooklyn Private room 62
## 32968 Brooklyn Private room 112
## 32969 Manhattan Entire home/apt 90
## 32970 Manhattan Entire home/apt 117
## 32971 Brooklyn Entire home/apt 350
## 32972 Brooklyn Private room 62
## 32973 Bronx Private room 45
## 32974 Manhattan Private room 285
## 32975 Manhattan Private room 125
## 32976 Manhattan Private room 75
## 32977 Manhattan Entire home/apt 333
## 32978 Bronx Private room 65
## 32979 Manhattan Private room 250
## 32980 Brooklyn Entire home/apt 100
## 32981 Brooklyn Entire home/apt 103
## 32982 Manhattan Entire home/apt 95
## 32983 Manhattan Private room 75
## 32984 Manhattan Entire home/apt 220
## 32985 Brooklyn Entire home/apt 100
## 32986 Brooklyn Entire home/apt 110
## 32987 Manhattan Entire home/apt 125
## 32988 Brooklyn Private room 110
## 32989 Brooklyn Private room 39
## 32990 Manhattan Entire home/apt 179
## 32991 Brooklyn Private room 90
## 32992 Brooklyn Private room 55
## 32993 Manhattan Private room 99
## 32994 Brooklyn Entire home/apt 200
## 32995 Brooklyn Private room 120
## 32996 Brooklyn Private room 149
## 32997 Manhattan Entire home/apt 200
## 32998 Brooklyn Entire home/apt 190
## 32999 Brooklyn Entire home/apt 149
## 33000 Manhattan Entire home/apt 230
## 33001 Brooklyn Private room 50
## 33002 Manhattan Private room 97
## 33003 Brooklyn Private room 76
## 33004 Brooklyn Private room 60
## 33005 Manhattan Entire home/apt 350
## 33006 Manhattan Private room 60
## 33007 Brooklyn Private room 60
## 33008 Manhattan Private room 209
## 33009 Manhattan Entire home/apt 125
## 33010 Brooklyn Entire home/apt 150
## 33011 Manhattan Private room 125
## 33012 Manhattan Private room 90
## 33013 Manhattan Private room 50
## 33014 Manhattan Entire home/apt 350
## 33015 Manhattan Private room 60
## 33016 Manhattan Entire home/apt 300
## 33017 Brooklyn Entire home/apt 150
## 33018 Manhattan Private room 50
## 33019 Brooklyn Entire home/apt 200
## 33020 Brooklyn Private room 60
## 33021 Brooklyn Entire home/apt 183
## 33022 Brooklyn Private room 70
## 33023 Brooklyn Private room 60
## 33024 Brooklyn Private room 95
## 33025 Manhattan Private room 100
## 33026 Brooklyn Private room 70
## 33027 Brooklyn Private room 55
## 33028 Manhattan Private room 59
## 33029 Queens Private room 83
## 33030 Brooklyn Private room 67
## 33031 Manhattan Entire home/apt 259
## 33032 Brooklyn Entire home/apt 150
## 33033 Brooklyn Private room 41
## 33034 Manhattan Entire home/apt 550
## 33035 Brooklyn Entire home/apt 99
## 33036 Brooklyn Private room 70
## 33037 Manhattan Entire home/apt 350
## 33038 Brooklyn Entire home/apt 350
## 33039 Queens Private room 37
## 33040 Queens Entire home/apt 140
## 33041 Manhattan Entire home/apt 349
## 33042 Manhattan Private room 105
## 33043 Queens Entire home/apt 75
## 33044 Brooklyn Private room 55
## 33045 Manhattan Entire home/apt 85
## 33046 Brooklyn Entire home/apt 165
## 33047 Brooklyn Entire home/apt 250
## 33048 Brooklyn Private room 55
## 33049 Brooklyn Private room 59
## 33050 Manhattan Private room 129
## 33051 Brooklyn Private room 55
## 33052 Manhattan Private room 109
## 33053 Brooklyn Private room 75
## 33054 Manhattan Private room 52
## 33055 Brooklyn Entire home/apt 115
## 33056 Manhattan Entire home/apt 113
## 33057 Brooklyn Private room 50
## 33058 Queens Private room 40
## 33059 Bronx Entire home/apt 100
## 33060 Queens Private room 45
## 33061 Brooklyn Entire home/apt 150
## 33062 Queens Private room 66
## 33063 Manhattan Entire home/apt 200
## 33064 Brooklyn Private room 35
## 33065 Manhattan Private room 90
## 33066 Brooklyn Private room 75
## 33067 Manhattan Private room 90
## 33068 Brooklyn Entire home/apt 139
## 33069 Manhattan Private room 82
## 33070 Manhattan Entire home/apt 85
## 33071 Brooklyn Private room 106
## 33072 Brooklyn Entire home/apt 100
## 33073 Staten Island Entire home/apt 106
## 33074 Brooklyn Entire home/apt 130
## 33075 Queens Entire home/apt 60
## 33076 Brooklyn Entire home/apt 200
## 33077 Brooklyn Entire home/apt 200
## 33078 Brooklyn Private room 100
## 33079 Brooklyn Entire home/apt 745
## 33080 Manhattan Private room 95
## 33081 Manhattan Entire home/apt 85
## 33082 Brooklyn Private room 230
## 33083 Brooklyn Entire home/apt 89
## 33084 Brooklyn Entire home/apt 150
## 33085 Brooklyn Entire home/apt 274
## 33086 Brooklyn Entire home/apt 85
## 33087 Brooklyn Private room 100
## 33088 Brooklyn Entire home/apt 225
## 33089 Brooklyn Private room 75
## 33090 Queens Entire home/apt 175
## 33091 Manhattan Private room 69
## 33092 Manhattan Private room 65
## 33093 Manhattan Entire home/apt 100
## 33094 Queens Entire home/apt 120
## 33095 Queens Private room 60
## 33096 Queens Entire home/apt 249
## 33097 Bronx Entire home/apt 110
## 33098 Brooklyn Entire home/apt 95
## 33099 Brooklyn Entire home/apt 170
## 33100 Queens Entire home/apt 100
## 33101 Brooklyn Private room 65
## 33102 Manhattan Entire home/apt 350
## 33103 Manhattan Private room 155
## 33104 Manhattan Private room 90
## 33105 Brooklyn Private room 50
## 33106 Brooklyn Entire home/apt 150
## 33107 Manhattan Entire home/apt 200
## 33108 Manhattan Entire home/apt 250
## 33109 Manhattan Entire home/apt 189
## 33110 Brooklyn Entire home/apt 119
## 33111 Brooklyn Entire home/apt 112
## 33112 Queens Private room 70
## 33113 Brooklyn Private room 41
## 33114 Queens Private room 45
## 33115 Manhattan Entire home/apt 280
## 33116 Manhattan Entire home/apt 200
## 33117 Manhattan Entire home/apt 175
## 33118 Manhattan Entire home/apt 199
## 33119 Manhattan Private room 64
## 33120 Queens Entire home/apt 99
## 33121 Brooklyn Entire home/apt 168
## 33122 Manhattan Entire home/apt 150
## 33123 Brooklyn Entire home/apt 163
## 33124 Queens Entire home/apt 52
## 33125 Queens Entire home/apt 156
## 33126 Bronx Entire home/apt 85
## 33127 Bronx Private room 40
## 33128 Brooklyn Private room 60
## 33129 Bronx Private room 60
## 33130 Manhattan Private room 70
## 33131 Brooklyn Private room 130
## 33132 Manhattan Private room 80
## 33133 Manhattan Entire home/apt 145
## 33134 Queens Private room 73
## 33135 Brooklyn Private room 38
## 33136 Brooklyn Private room 60
## 33137 Queens Private room 59
## 33138 Manhattan Private room 1200
## 33139 Brooklyn Private room 36
## 33140 Bronx Private room 200
## 33141 Brooklyn Entire home/apt 90
## 33142 Bronx Private room 200
## 33143 Manhattan Private room 102
## 33144 Queens Entire home/apt 230
## 33145 Manhattan Entire home/apt 174
## 33146 Manhattan Entire home/apt 200
## 33147 Queens Private room 42
## 33148 Brooklyn Private room 70
## 33149 Manhattan Entire home/apt 170
## 33150 Staten Island Entire home/apt 99
## 33151 Manhattan Entire home/apt 750
## 33152 Manhattan Entire home/apt 289
## 33153 Manhattan Entire home/apt 200
## 33154 Brooklyn Entire home/apt 208
## 33155 Brooklyn Entire home/apt 175
## 33156 Brooklyn Entire home/apt 225
## 33157 Brooklyn Entire home/apt 300
## 33158 Brooklyn Entire home/apt 130
## 33159 Manhattan Entire home/apt 170
## 33160 Queens Entire home/apt 275
## 33161 Brooklyn Private room 40
## 33162 Manhattan Entire home/apt 131
## 33163 Brooklyn Private room 75
## 33164 Manhattan Entire home/apt 425
## 33165 Brooklyn Private room 100
## 33166 Manhattan Entire home/apt 250
## 33167 Brooklyn Private room 40
## 33168 Brooklyn Private room 120
## 33169 Manhattan Private room 85
## 33170 Manhattan Entire home/apt 156
## 33171 Manhattan Private room 112
## 33172 Manhattan Entire home/apt 139
## 33173 Manhattan Entire home/apt 169
## 33174 Brooklyn Private room 75
## 33175 Queens Private room 70
## 33176 Brooklyn Entire home/apt 300
## 33177 Brooklyn Private room 75
## 33178 Brooklyn Entire home/apt 595
## 33179 Manhattan Private room 90
## 33180 Queens Entire home/apt 99
## 33181 Brooklyn Entire home/apt 120
## 33182 Brooklyn Entire home/apt 185
## 33183 Queens Entire home/apt 160
## 33184 Bronx Private room 30
## 33185 Manhattan Private room 74
## 33186 Manhattan Private room 240
## 33187 Manhattan Entire home/apt 131
## 33188 Brooklyn Private room 40
## 33189 Manhattan Entire home/apt 125
## 33190 Manhattan Private room 60
## 33191 Brooklyn Entire home/apt 95
## 33192 Manhattan Private room 155
## 33193 Brooklyn Private room 120
## 33194 Brooklyn Entire home/apt 200
## 33195 Brooklyn Entire home/apt 250
## 33196 Brooklyn Private room 95
## 33197 Brooklyn Private room 38
## 33198 Manhattan Entire home/apt 187
## 33199 Manhattan Entire home/apt 400
## 33200 Queens Entire home/apt 50
## 33201 Manhattan Entire home/apt 249
## 33202 Queens Private room 60
## 33203 Queens Entire home/apt 215
## 33204 Queens Entire home/apt 89
## 33205 Manhattan Private room 90
## 33206 Brooklyn Entire home/apt 165
## 33207 Brooklyn Entire home/apt 108
## 33208 Brooklyn Private room 55
## 33209 Manhattan Entire home/apt 499
## 33210 Brooklyn Shared room 35
## 33211 Brooklyn Shared room 35
## 33212 Queens Private room 75
## 33213 Manhattan Entire home/apt 99
## 33214 Queens Entire home/apt 155
## 33215 Queens Private room 50
## 33216 Brooklyn Private room 75
## 33217 Staten Island Private room 50
## 33218 Brooklyn Entire home/apt 220
## 33219 Brooklyn Private room 90
## 33220 Brooklyn Entire home/apt 75
## 33221 Brooklyn Private room 60
## 33222 Manhattan Entire home/apt 295
## 33223 Manhattan Private room 60
## 33224 Queens Entire home/apt 100
## 33225 Manhattan Shared room 75
## 33226 Queens Entire home/apt 10
## 33227 Manhattan Private room 58
## 33228 Queens Entire home/apt 60
## 33229 Manhattan Private room 100
## 33230 Manhattan Entire home/apt 369
## 33231 Manhattan Private room 150
## 33232 Brooklyn Private room 63
## 33233 Manhattan Entire home/apt 219
## 33234 Brooklyn Entire home/apt 90
## 33235 Brooklyn Entire home/apt 171
## 33236 Brooklyn Private room 40
## 33237 Brooklyn Private room 35
## 33238 Manhattan Entire home/apt 309
## 33239 Brooklyn Private room 60
## 33240 Manhattan Entire home/apt 250
## 33241 Manhattan Entire home/apt 650
## 33242 Manhattan Shared room 80
## 33243 Queens Private room 50
## 33244 Queens Private room 30
## 33245 Brooklyn Entire home/apt 90
## 33246 Manhattan Shared room 65
## 33247 Manhattan Private room 150
## 33248 Queens Entire home/apt 110
## 33249 Brooklyn Private room 95
## 33250 Queens Private room 32
## 33251 Bronx Entire home/apt 142
## 33252 Manhattan Entire home/apt 150
## 33253 Brooklyn Private room 35
## 33254 Queens Private room 55
## 33255 Brooklyn Private room 50
## 33256 Brooklyn Entire home/apt 140
## 33257 Manhattan Entire home/apt 175
## 33258 Brooklyn Private room 59
## 33259 Brooklyn Private room 39
## 33260 Brooklyn Private room 80
## 33261 Manhattan Entire home/apt 65
## 33262 Staten Island Entire home/apt 75
## 33263 Brooklyn Private room 94
## 33264 Manhattan Private room 91
## 33265 Brooklyn Private room 60
## 33266 Brooklyn Entire home/apt 260
## 33267 Queens Shared room 73
## 33268 Brooklyn Entire home/apt 225
## 33269 Queens Private room 34
## 33270 Brooklyn Private room 67
## 33271 Manhattan Entire home/apt 170
## 33272 Brooklyn Entire home/apt 190
## 33273 Manhattan Private room 40
## 33274 Manhattan Private room 97
## 33275 Staten Island Private room 50
## 33276 Staten Island Entire home/apt 100
## 33277 Queens Shared room 65
## 33278 Manhattan Entire home/apt 220
## 33279 Manhattan Entire home/apt 250
## 33280 Brooklyn Entire home/apt 120
## 33281 Manhattan Private room 120
## 33282 Manhattan Private room 50
## 33283 Manhattan Private room 120
## 33284 Brooklyn Private room 66
## 33285 Manhattan Private room 80
## 33286 Staten Island Private room 80
## 33287 Manhattan Private room 80
## 33288 Brooklyn Private room 45
## 33289 Queens Entire home/apt 129
## 33290 Manhattan Entire home/apt 220
## 33291 Manhattan Entire home/apt 200
## 33292 Brooklyn Private room 55
## 33293 Brooklyn Private room 40
## 33294 Staten Island Private room 55
## 33295 Manhattan Private room 150
## 33296 Brooklyn Private room 75
## 33297 Brooklyn Entire home/apt 75
## 33298 Brooklyn Private room 67
## 33299 Brooklyn Entire home/apt 250
## 33300 Brooklyn Entire home/apt 125
## 33301 Manhattan Private room 59
## 33302 Brooklyn Entire home/apt 165
## 33303 Brooklyn Entire home/apt 195
## 33304 Manhattan Private room 50
## 33305 Bronx Entire home/apt 79
## 33306 Brooklyn Private room 98
## 33307 Brooklyn Shared room 36
## 33308 Brooklyn Shared room 37
## 33309 Manhattan Entire home/apt 295
## 33310 Brooklyn Private room 75
## 33311 Manhattan Entire home/apt 265
## 33312 Brooklyn Private room 79
## 33313 Brooklyn Entire home/apt 449
## 33314 Manhattan Entire home/apt 400
## 33315 Brooklyn Entire home/apt 195
## 33316 Brooklyn Private room 59
## 33317 Queens Entire home/apt 100
## 33318 Brooklyn Entire home/apt 100
## 33319 Manhattan Private room 80
## 33320 Manhattan Shared room 96
## 33321 Queens Private room 45
## 33322 Bronx Entire home/apt 125
## 33323 Manhattan Private room 85
## 33324 Manhattan Entire home/apt 250
## 33325 Staten Island Private room 40
## 33326 Brooklyn Private room 43
## 33327 Brooklyn Private room 55
## 33328 Brooklyn Private room 150
## 33329 Brooklyn Entire home/apt 229
## 33330 Manhattan Private room 67
## 33331 Manhattan Private room 69
## 33332 Brooklyn Private room 51
## 33333 Brooklyn Entire home/apt 275
## [ reached 'max' / getOption("max.print") -- omitted 15562 rows ]
# which neighborhood gives you a bang for your money meaning on average, which areas would allow you to rent an entire home or apartment for the least about of money?
subset_airbnb|>
group_by(room_type)|>
summarise(min_price= min(price),
max_price= max(price),
median_price= median(price)
)
## # A tibble: 3 × 4
## room_type min_price max_price median_price
## <chr> <int> <int> <dbl>
## 1 Entire home/apt 0 10000 160
## 2 Private room 0 10000 70
## 3 Shared room 0 1800 45
subset_airbnb|>
group_by(neighbourhood_group)|>
summarise(min_price= min(price),
max_price= max(price),
median_price= median(price)
)
## # A tibble: 5 × 4
## neighbourhood_group min_price max_price median_price
## <chr> <int> <int> <dbl>
## 1 Bronx 0 2500 65
## 2 Brooklyn 0 10000 90
## 3 Manhattan 0 10000 150
## 4 Queens 10 10000 75
## 5 Staten Island 13 5000 75
#As expected, shared rooms are the cheapest. In terms of neighborhoods, Manhattan tends to be the most expensive, while Bronx is the cheapest.