rSAFE软件可用于对复杂模型提取特征,然后用于拟合更简单的可解释模型,提高其整体性能。

library(rSAFE)
## Welcome to rSAFE (version: 0.1.4).
head(apartments)
##   m2.price construction.year surface floor no.rooms    district
## 1     5897              1953      25     3        1 Srodmiescie
## 2     1818              1992     143     9        5     Bielany
## 3     3643              1937      56     1        2       Praga
## 4     3517              1995      93     7        3      Ochota
## 5     3013              1992     144     6        5     Mokotow
## 6     5795              1926      61     6        2 Srodmiescie

构建黑盒模型

library(randomForest)
## randomForest 4.7-1.1
## Type rfNews() to see new features/changes/bug fixes.
set.seed(111)
model_rf1 <- randomForest(m2.price ~ construction.year + surface + floor + no.rooms + district, data = apartments)
model_rf1
## 
## Call:
##  randomForest(formula = m2.price ~ construction.year + surface +      floor + no.rooms + district, data = apartments) 
##                Type of random forest: regression
##                      Number of trees: 500
## No. of variables tried at each split: 1
## 
##           Mean of squared residuals: 80968.41
##                     % Var explained: 90.14

创建解释器

library(DALEX)
## Welcome to DALEX (version: 2.4.2).
## Find examples and detailed introduction at: http://ema.drwhy.ai/
explainer_rf1 <- DALEX::explain(model_rf1, data = apartmentsTest[1:3000,2:6], y = apartmentsTest[1:3000,1], label = "rf1", verbose = FALSE)
explainer_rf1
## Model label:  rf1 
## Model class:  randomForest.formula,randomForest 
## Data head  :
##      construction.year surface floor no.rooms    district
## 1001              1976     131     3        5 Srodmiescie
## 1002              1978     112     9        4     Mokotow

创建 safe_extractor

safe_extractor <- safe_extraction(explainer_rf1, penalty = 25, verbose = FALSE)
safe_extractor
## Variable 'construction.year' - selected intervals:
##  (-Inf, 1937]
##      (1937, 1992]
##      (1992, Inf)
## Variable 'surface' - selected intervals:
##  (-Inf, 47]
##      (47, 101]
##      (101, Inf)
## Variable 'floor' - selected intervals:
##  (-Inf, 5]
##      (5, Inf)
## Variable 'no.rooms' - selected intervals:
##  (-Inf, 3]
##      (3, Inf)
## Variable 'district' - created levels:
##  Bemowo, Bielany, Ursus, Ursynow, Praga, Wola ->  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola 
##  Zoliborz, Mokotow, Ochota ->  Mokotow_Ochota_Zoliborz 
##  Srodmiescie ->  Srodmiescie

可以对数据进行可视化:

plot(safe_extractor, variable = "construction.year")

plot(safe_extractor, variable = "district")
## Warning: The `<scale>` argument of `guides()` cannot be `FALSE`. Use "none" instead as
## of ggplot2 3.3.4.
## ℹ The deprecated feature was likely used in the rSAFE package.
##   Please report the issue at <]8;;https://github.com/ModelOriented/rSAFE/issueshttps://github.com/ModelOriented/rSAFE/issues]8;;>.

plot(safe_extractor, variable = "floor")

数据转换

data1 <- safely_transform_data(safe_extractor, apartmentsTest[3001:6000,], verbose = FALSE)

data1
##         district m2.price construction.year surface floor no.rooms
## 1        Bielany     3542              1979      21     6        1
## 2    Srodmiescie     5631              1997     107     2        4
## 3        Bielany     2989              1994      41     9        2
## 4        Ursynow     3822              1968      28     2        2
## 5        Ursynow     2337              1971     146     3        6
## 6         Ochota     3381              1956      97     8        3
## 7          Praga     3036              1939      76     4        4
## 8        Mokotow     5414              1927      29     1        2
## 9          Praga     3961              2000      64     3        2
## 10         Ursus     2727              1951     127     2        4
## 11        Ochota     3747              1945      90     5        3
## 12        Ochota     4832              2000      77     1        4
## 13       Mokotow     4118              1934     138     1        6
## 14        Bemowo     2088              1972     111    10        4
## 15          Wola     2471              1932     128    10        5
## 16       Bielany     2077              1988     107    10        5
## 17         Praga     1741              1955     141    10        5
## 18       Ursynow     2820              1970     103     4        3
## 19        Ochota     3913              1975      74     5        3
## 20      Zoliborz     3050              1967     125     8        4
## 21        Bemowo     2895              1955     115     1        5
## 22       Bielany     2238              1984     106     9        4
## 23        Bemowo     3934              2000      57     4        2
## 24        Ochota     5010              2003      69     1        2
## 25      Zoliborz     4318              1968      73     1        3
## 26         Ursus     3643              1979      51     1        3
## 27   Srodmiescie     6457              1926      29     3        1
## 28   Srodmiescie     4704              1991      95     7        3
## 29      Zoliborz     4255              1996     119     2        5
## 30   Srodmiescie     5478              2007     127     1        5
## 31   Srodmiescie     5606              1943      29     5        2
## 32   Srodmiescie     4055              1966     129     9        5
## 33      Zoliborz     5205              1920      40     2        2
## 34      Zoliborz     3955              1979      44     8        2
## 35       Ursynow     3267              1968      68     3        3
## 36       Bielany     3565              1935      83     4        4
## 37         Ursus     3326              1964      22     8        1
## 38       Ursynow     2934              1921     132     5        5
## 39          Wola     3360              1952      39     6        1
## 40      Zoliborz     4204              1947      25     8        1
## 41        Bemowo     3133              1944      62     5        3
## 42   Srodmiescie     4699              1979     130     3        4
## 43       Bielany     3488              1980      61     2        2
## 44         Praga     2712              1995     139     6        6
## 45         Ursus     2525              1978      82     9        3
## 46         Praga     2178              1984     112     9        4
## 47          Wola     2759              1958      79     7        3
## 48   Srodmiescie     4922              1977      98     4        4
## 49         Ursus     2696              1990     105     4        5
## 50         Ursus     2278              1985     107     8        5
## 51        Ochota     4023              1980      58     6        2
## 52         Ursus     2710              1944     129     2        4
## 53          Wola     2965              1979      39    10        1
## 54       Mokotow     3441              1935     136     2        6
## 55         Ursus     3230              2001      72     9        3
## 56         Ursus     2667              1968     133     2        4
## 57         Ursus     3405              1990      65     2        3
## 58       Mokotow     2851              1936     130     9        5
## 59      Zoliborz     3111              1948      99    10        4
## 60       Ursynow     2786              1967      66     8        3
## 61       Bielany     2790              1967      76     7        3
## 62       Bielany     3017              1984      88     3        4
## 63      Zoliborz     3837              1993     101     3        3
## 64       Mokotow     3506              1991      64    10        3
## 65       Bielany     3654              1926      80     4        3
## 66       Bielany     4045              1926      50     3        3
## 67          Wola     3839              1922      26     8        2
## 68   Srodmiescie     5646              1990      35     4        2
## 69        Bemowo     3335              1933      82     7        3
## 70       Ursynow     2676              1968      97     6        3
## 71       Bielany     2596              1984      65    10        3
## 72      Zoliborz     4662              2008      29     9        1
## 73       Mokotow     3554              1997     145     6        6
## 74         Ursus     2510              1959      89     8        4
## 75       Ursynow     3972              1933      73     2        2
## 76       Ursynow     2513              1985      79     9        4
## 77         Praga     3967              1923      53     4        2
## 78         Ursus     2590              1955      66    10        3
## 79         Ursus     2544              1945      91     8        3
## 80          Wola     3112              1984      69     5        2
## 81        Bemowo     3377              1990      32     6        2
## 82        Bemowo     2668              1946     138     1        5
## 83         Praga     2346              1976      85    10        4
## 84        Bemowo     2568              1986      93     7        4
## 85   Srodmiescie     5963              1995      69     3        3
## 86       Bielany     3090              1939      96     2        3
## 87       Ursynow     3122              1930      98     7        4
## 88         Praga     3668              2006      88     3        3
## 89   Srodmiescie     4464              1936      99     9        3
## 90        Ochota     3803              1955     105     3        3
## 91          Wola     3191              1992      71     4        2
## 92         Ursus     3164              1938      29     9        1
## 93          Wola     3741              1921      31     9        1
## 94      Zoliborz     4240              2001     116     3        4
## 95         Ursus     3772              1930      33     8        2
## 96          Wola     2484              1978      82     9        4
## 97       Ursynow     4026              2008      52     3        3
## 98         Praga     3068              1951      28    10        1
## 99       Bielany     2844              1932     136     5        6
## 100  Srodmiescie     4935              1943     116     2        4
## 101         Wola     3912              1932      59     4        2
## 102        Praga     3507              1973      34     5        1
## 103      Mokotow     3822              1941      73     6        3
## 104       Bemowo     2674              1998     108    10        5
## 105       Bemowo     2207              1944     144     5        5
## 106        Praga     2540              1947     146     1        6
## 107         Wola     2994              1966      76     5        3
## 108         Wola     2525              1927     127    10        4
## 109      Bielany     4372              1997      23     3        2
## 110        Ursus     3332              1922      77     7        4
## 111  Srodmiescie     3859              1953     144     9        6
## 112      Ursynow     3088              1974      46     7        3
## 113        Ursus     2211              1983     139     5        6
## 114      Ursynow     2792              1992      66     8        3
## 115        Ursus     4067              1933      58     2        3
## 116  Srodmiescie     5321              1998     128     3        4
## 117      Bielany     3098              1975      85     3        3
## 118       Ochota     3895              1939      36    10        1
## 119        Praga     2281              1963     117     7        5
## 120      Mokotow     3414              1977     149     1        6
## 121       Bemowo     2279              1938     112     8        4
## 122      Ursynow     3563              1923     109     1        5
## 123         Wola     1882              1980     127    10        5
## 124      Bielany     3424              1931      68     8        2
## 125      Ursynow     3592              1927      71     6        2
## 126      Ursynow     3856              1933      39     7        1
## 127  Srodmiescie     6168              1921      63     2        2
## 128        Praga     4612              2000      24     1        1
## 129       Ochota     2817              1994     138     8        6
## 130      Bielany     4526              2005      22     2        1
## 131     Zoliborz     3985              1984      82     3        4
## 132        Praga     2295              1944     105     8        5
## 133      Bielany     3565              1923      63     7        2
## 134        Ursus     3637              1925     101     2        3
## 135      Mokotow     4314              1995      74     7        3
## 136      Ursynow     2761              1922     114     9        4
## 137       Ochota     3493              1973      71    10        2
## 138     Zoliborz     4120              1961      63     4        3
## 139         Wola     3547              1957      40     4        1
## 140       Ochota     3424              1958     128     4        4
## 141       Bemowo     3412              1986      74     1        3
## 142  Srodmiescie     5987              1966      31     1        2
## 143       Bemowo     3473              1951      63     2        2
## 144        Ursus     3271              1970      83     1        4
## 145        Ursus     2323              1981     128     6        4
## 146       Bemowo     2750              1937      95     5        4
## 147      Ursynow     3407              1967      24     7        1
## 148         Wola     3223              1946      58     5        2
## 149       Ochota     4065              1923     124     4        4
## 150       Bemowo     2237              1956     101    10        3
## 151         Wola     2262              1981      99    10        3
## 152         Wola     2901              1951      80     5        4
## 153        Praga     1860              1948     129    10        5
## 154         Wola     2717              1938      73     8        3
## 155        Ursus     3778              1959      32     2        2
## 156     Zoliborz     5462              2005      24     1        2
## 157      Bielany     2927              2004     142     4        5
## 158        Ursus     3684              1932      57     6        3
## 159         Wola     3678              2004      77     4        3
## 160      Ursynow     2351              1922     145     9        6
## 161      Mokotow     4372              1988      68     1        3
## 162  Srodmiescie     5433              1998      57    10        2
## 163       Bemowo     4075              1934      22     6        2
## 164       Bemowo     3590              2006      66     6        3
## 165         Wola     2672              1981      88     7        3
## 166  Srodmiescie     5449              1931     130     1        5
## 167     Zoliborz     4439              1986      36     4        2
## 168        Ursus     2743              1960     126     2        4
## 169      Ursynow     2727              1968      97     5        4
## 170        Ursus     3657              1943      54     1        2
## 171        Ursus     3257              1973      39     7        1
## 172        Praga     3360              1935      29     7        1
## 173      Mokotow     4109              1942      44     7        1
## 174      Bielany     2787              1929     111     9        4
## 175        Praga     2404              1985     110     7        4
## 176       Bemowo     2594              1968     116     4        5
## 177      Ursynow     3347              1938      45     5        2
## 178       Bemowo     2332              1955     142     4        5
## 179        Praga     2652              1987      95     6        4
## 180        Praga     2954              1959      80     5        3
## 181        Praga     2548              1958     120     4        5
## 182        Praga     2925              1971      42    10        1
## 183        Praga     2620              1974     113     4        5
## 184        Praga     2702              1991      90     6        4
## 185        Praga     2309              2007     149     9        6
## 186       Bemowo     3742              1934      31     9        1
## 187  Srodmiescie     3912              1960     139     9        6
## 188     Zoliborz     2944              1992     131     8        5
## 189       Bemowo     3067              1948      48     7        3
## 190        Praga     2261              1985     149     4        5
## 191      Mokotow     4936              1928      61     2        3
## 192       Bemowo     3075              1956      87     3        3
## 193       Ochota     3889              2002      81    10        4
## 194     Zoliborz     2955              1949     145     6        6
## 195       Ochota     4727              1923      22     9        1
## 196       Ochota     3897              1955      80     4        4
## 197        Praga     3440              1931      81     6        3
## 198         Wola     1890              1993     126    10        5
## 199       Ochota     4005              1948      95     2        3
## 200      Ursynow     3344              1933      71     8        3
## 201         Wola     2948              1939     115     1        4
## 202       Ochota     5012              2001      39     4        2
## 203        Ursus     2367              1964     148     3        5
## 204      Bielany     2749              1958      50    10        3
## 205         Wola     2361              1962     149     3        5
## 206      Bielany     4094              2010      61     2        2
## 207  Srodmiescie     4471              2010     138    10        5
## 208  Srodmiescie     5891              1922      26     9        1
## 209         Wola     2356              1973     144     3        6
## 210       Ochota     5063              1929      54     2        2
## 211      Ursynow     2735              1935     132     1        5
## 212      Bielany     3400              1932      45    10        3
## 213         Wola     1981              1990     147     7        5
## 214      Bielany     2360              1965     129     5        5
## 215         Wola     3133              1969      32     9        1
## 216      Mokotow     3424              1981     103     7        3
## 217      Mokotow     3829              1920     107     8        4
## 218      Mokotow     4276              1978      47     4        3
## 219      Bielany     2951              1977     115     1        4
## 220       Bemowo     3118              1959      88     2        4
## 221     Zoliborz     5102              1928      35     4        1
## 222      Ursynow     3583              1978      62     1        2
## 223         Wola     3124              1937     103     1        3
## 224  Srodmiescie     4306              1958     124     7        5
## 225       Bemowo     2680              1986      97     6        3
## 226      Ursynow     3800              2000      50     6        2
## 227  Srodmiescie     5398              1956      35     7        1
## 228        Praga     2832              1999     147     4        6
## 229     Zoliborz     4617              1922      78     3        4
## 230        Ursus     3509              1991      29     5        2
## 231  Srodmiescie     5216              1996      78     9        4
## 232      Bielany     3221              1966      93     1        3
## 233        Praga     3491              1942      46     3        3
## 234       Ochota     4720              1998      48     6        2
## 235      Bielany     3201              1939      60     5        2
## 236        Praga     3318              1962      63     3        3
## 237       Bemowo     2405              1937      94     9        3
## 238        Praga     3332              2006     122     2        5
## 239        Praga     3651              2006      45     8        2
## 240       Ochota     3584              1996     132     8        4
## 241     Zoliborz     4504              1963      60     1        2
## 242     Zoliborz     3504              1977      70    10        2
## 243         Wola     2863              1938     109     2        5
## 244      Mokotow     3110              1989     124     7        5
## 245     Zoliborz     3311              1941     109     7        4
## 246        Ursus     3124              2003      73    10        3
## 247        Praga     3154              1940      75     4        2
## 248      Bielany     2397              1942     115     6        5
## 249         Wola     2874              1945      88     5        3
## 250        Ursus     2691              1991      66     9        3
## 251       Ochota     4536              1932      56     7        2
## 252      Mokotow     4130              2009     137     1        6
## 253         Wola     2848              1956      70     7        3
## 254      Ursynow     3223              1927      98     6        4
## 255  Srodmiescie     6100              1920      45     4        3
## 256      Mokotow     5426              1920      32     1        1
## 257         Wola     2714              1962      74     8        3
## 258     Zoliborz     4733              1921      87     1        4
## 259      Mokotow     4220              2002      88     6        4
## 260      Ursynow     3721              2008      93     2        3
## 261       Bemowo     3212              1928      79     8        4
## 262        Ursus     2256              1994     104     9        4
## 263        Praga     3924              1966      33     1        1
## 264       Ochota     3864              1967      69     6        3
## 265      Bielany     2600              1975     115     4        5
## 266       Bemowo     2886              1957      66     7        3
## 267         Wola     2672              1929     133     8        4
## 268        Praga     3358              1995      69     2        3
## 269        Ursus     3651              1937      25     4        2
## 270         Wola     4227              1923      22     5        1
## 271         Wola     2745              1932     141     6        5
## 272        Praga     2286              1983      96    10        3
## 273      Mokotow     3388              1953     131     4        4
## 274        Praga     3587              2001      61     7        2
## 275       Bemowo     3874              1926      78     2        3
## 276  Srodmiescie     5886              1933      96     1        3
## 277     Zoliborz     4480              1934     102     2        4
## 278        Praga     3420              1946      53     3        3
## 279     Zoliborz     5197              2002      40     2        2
## 280  Srodmiescie     5737              2007      81     4        3
## 281  Srodmiescie     5138              1935      91     3        3
## 282       Ochota     2994              1972     111    10        4
## 283  Srodmiescie     5565              1954      48     3        3
## 284      Ursynow     2562              1944     149     1        5
## 285        Ursus     3850              1922      75     2        4
## 286       Ochota     3318              1935      78    10        4
## 287     Zoliborz     4058              1936      69     4        3
## 288        Ursus     3730              1924      22    10        1
## 289      Ursynow     4192              1931      56     1        3
## 290       Bemowo     4161              1996      29     5        1
## 291         Wola     3671              1942      53     1        2
## 292       Bemowo     3176              1978      32     8        2
## 293      Mokotow     3474              1979     113     5        4
## 294       Bemowo     2816              1979     128     1        4
## 295       Ochota     4192              1974      46     5        3
## 296       Ochota     3337              1927     131    10        5
## 297     Zoliborz     2600              1976     145    10        5
## 298        Ursus     4479              1928      22     2        2
## 299         Wola     3847              1930      25     8        2
## 300        Ursus     3412              1956      74     1        3
## 301        Ursus     3007              1950     109     1        4
## 302     Zoliborz     4319              1993      23     7        1
## 303     Zoliborz     4837              1972      26     1        2
## 304        Praga     2573              1950     148     1        5
## 305      Mokotow     5179              1926      42     2        2
## 306      Ursynow     3361              1935      54     4        2
## 307     Zoliborz     3502              1958      95     7        3
## 308     Zoliborz     2533              1992     147    10        6
## 309  Srodmiescie     5794              1947      31     3        2
## 310  Srodmiescie     5332              1999     132     2        5
## 311      Ursynow     3371              1979      28     7        1
## 312        Ursus     2386              1944     111     7        4
## 313      Ursynow     3531              1959      27     5        2
## 314      Bielany     3610              2002      84     4        3
## 315      Mokotow     4263              1929      74     8        2
## 316         Wola     3230              1950      22     9        1
## 317      Ursynow     1906              1976     139     8        6
## 318         Wola     2510              1998     129    10        4
## 319      Mokotow     3668              1972     123     2        4
## 320       Ochota     3441              1961     101     7        3
## 321        Ursus     3835              1928      51     5        3
## 322         Wola     3488              1921      76     6        3
## 323      Ursynow     3953              1933      60     3        3
## 324        Praga     2753              1969     100     5        3
## 325        Ursus     3060              1972      49     7        3
## 326        Praga     3387              1977      61     3        2
## 327       Bemowo     3039              1931     121     5        5
## 328      Ursynow     3335              1932     122     2        5
## 329  Srodmiescie     5584              1923      87     5        3
## 330  Srodmiescie     4849              1979     100     5        3
## 331       Ochota     4014              2001     114     5        5
## 332      Ursynow     3148              1982     100     1        3
## 333  Srodmiescie     4814              1969     114     3        5
## 334       Ochota     4100              1936      85     2        3
## 335     Zoliborz     3334              1972     107     7        4
## 336      Ursynow     2387              1957     131     5        4
## 337      Ursynow     3036              2001     126     5        4
## 338        Ursus     2289              1994     126     6        5
## 339        Ursus     3667              1977      53     1        2
## 340     Zoliborz     4096              2001      95     7        3
## 341        Praga     2538              1971      81     9        3
## 342        Ursus     3045              1964      41     9        1
## 343        Praga     2325              2010     137    10        6
## 344      Ursynow     2083              1984     132     8        4
## 345      Ursynow     3470              1937      23     6        2
## 346       Bemowo     4029              1930      52     3        3
## 347       Ochota     3566              1989     128     2        5
## 348        Ursus     3571              1926      88     4        3
## 349         Wola     2723              1955      73     8        3
## 350       Ochota     2875              1953     147     7        5
## 351         Wola     2721              1953      63     9        3
## 352  Srodmiescie     4198              1955     140     6        6
## 353         Wola     3336              2003      61     9        3
## 354       Ochota     5224              1933      33     3        1
## 355      Ursynow     2931              1958      72     6        3
## 356       Ochota     3969              1988      38     9        1
## 357      Bielany     3341              1959      76     1        4
## 358        Ursus     3501              1929      60     8        2
## 359      Bielany     4290              1929      46     1        3
## 360         Wola     3226              1953      87     1        4
## 361       Bemowo     3438              1932     121     1        5
## 362        Ursus     2738              1969      96     5        4
## 363      Ursynow     3211              1971      34     8        1
## 364      Bielany     3075              1961      52     7        2
## 365         Wola     3270              1948      23     8        2
## 366       Bemowo     2463              1995     139     9        5
## 367         Wola     3108              1945      69     5        2
## 368  Srodmiescie     4207              1956     114     9        5
## 369      Mokotow     4073              1930     118     4        5
## 370         Wola     2516              1981     113     5        5
## 371      Mokotow     4017              1987      93     2        3
## 372       Bemowo     2912              1938      54     8        3
## 373       Bemowo     3122              2009     118     5        4
## 374        Praga     2680              1953     132     2        4
## 375        Praga     3301              2001     135     1        5
## 376         Wola     2055              1975     139     7        5
## 377      Ursynow     1724              1959     143    10        5
## 378      Ursynow     2605              1939     145     1        5
## 379        Praga     3844              1932      76     2        4
## 380     Zoliborz     4837              1937      26     1        2
## 381  Srodmiescie     5057              1997      99     9        3
## 382      Bielany     3478              1960      42     4        2
## 383       Ochota     3716              1994     118     2        4
## 384        Ursus     3122              1933     108     6        4
## 385     Zoliborz     3582              1955      92     6        4
## 386         Wola     3773              1934      23     9        2
## 387      Mokotow     3976              1942      87     3        3
## 388     Zoliborz     3717              1967     118     2        4
## 389      Mokotow     4160              1968      44     6        2
## 390       Ochota     4437              1995      66     7        2
## 391       Ochota     4073              1946      53     6        2
## 392        Ursus     3015              1921     114     6        5
## 393       Ochota     4345              1954      56     3        2
## 394     Zoliborz     4408              1939      59     2        2
## 395       Ochota     4225              2001      93     6        3
## 396  Srodmiescie     4924              1951     103     4        3
## 397      Ursynow     2076              1974     112    10        4
## 398      Ursynow     2945              1960      80     5        3
## 399      Mokotow     3864              1983     114     1        4
## 400       Ochota     4111              1947      44     7        1
## 401      Mokotow     4091              2003     141     1        6
## 402        Praga     2064              1972     119     9        5
## 403        Praga     2953              1954     100     3        3
## 404        Praga     2655              2002     115    10        4
## 405      Bielany     4142              2005      26     5        2
## 406      Ursynow     2111              1962     149     5        6
## 407  Srodmiescie     4773              1937      98     6        3
## 408        Ursus     3391              1975      51     4        2
## 409     Zoliborz     4102              1995      25     9        1
## 410       Bemowo     2618              1953     128     3        4
## 411     Zoliborz     3938              2004      96     8        4
## 412     Zoliborz     4076              1929      87     8        3
## 413       Bemowo     3424              1922     113     2        5
## 414      Mokotow     3303              1985     140     3        6
## 415       Ochota     4132              1954      92     1        3
## 416  Srodmiescie     4664              1958     139     2        5
## 417       Bemowo     3812              1946      44     1        1
## 418        Praga     2772              1937     108     3        5
## 419      Mokotow     3622              1990     123     2        5
## 420       Bemowo     3006              1995     149     2        6
## 421     Zoliborz     3809              1945      49     9        2
## 422      Ursynow     2822              1930     123     7        5
## 423      Mokotow     4132              1940      77     2        4
## 424        Praga     2324              1963     103     9        3
## 425      Ursynow     2838              1969      71     7        3
## 426      Bielany     3921              1966      28     1        2
## 427      Ursynow     3528              2000      72     6        3
## 428  Srodmiescie     5293              1946      46     6        3
## 429     Zoliborz     3383              1960      87     9        3
## 430       Bemowo     3204              1994      80     2        4
## 431  Srodmiescie     4893              1970      66     8        3
## 432     Zoliborz     5071              1921      43     3        2
## 433        Ursus     2702              1973     115     3        5
## 434       Bemowo     3214              1926     124     3        5
## 435      Mokotow     3777              1980      52     9        2
## 436      Bielany     2538              1986      76     9        4
## 437       Bemowo     2839              2005     146     4        6
## 438        Ursus     2543              1999     141     8        5
## 439     Zoliborz     3893              1945      96     3        3
## 440      Mokotow     3612              2002     129     8        4
## 441       Bemowo     3204              1993      30     8        2
## 442      Bielany     2683              1988     107     4        5
## 443        Praga     2236              1978     106     9        4
## 444     Zoliborz     4112              1939      94     1        3
## 445        Praga     2636              1947      96     6        4
## 446         Wola     3046              1988      75     4        4
## 447       Bemowo     2129              1962     142     6        5
## 448      Mokotow     4810              1928      79     1        4
## 449       Bemowo     2515              1940      74    10        3
## 450      Ursynow     2917              1964      83     5        3
## 451  Srodmiescie     5734              1922      92     3        3
## 452        Praga     2783              1929     127     7        5
## 453      Mokotow     3824              1934     108     8        4
## 454        Praga     3084              1945      32     9        2
## 455      Bielany     1651              1957     145    10        6
## 456        Praga     2338              2009     136    10        6
## 457        Ursus     2624              1940     118     4        4
## 458       Ochota     4319              1927      68     8        2
## 459        Ursus     3975              1934      23     7        2
## 460       Bemowo     3232              1954      87     1        4
## 461        Ursus     3072              1928      78    10        3
## 462  Srodmiescie     4846              1938      75     7        4
## 463      Mokotow     3335              1955     107     7        4
## 464       Bemowo     2464              1959      99     8        3
## 465         Wola     3414              1951      59     3        2
## 466        Praga     2878              2010      92    10        4
## 467     Zoliborz     3775              2002     137     5        5
## 468        Praga     3226              1946      47     6        2
## 469         Wola     1839              1974     131    10        5
## 470       Bemowo     2306              1975     129     6        4
## 471         Wola     2792              1989      46    10        3
## 472      Mokotow     3359              1922     134    10        4
## 473        Praga     2703              1931     130     8        4
## 474      Mokotow     3103              1925     150    10        6
## 475        Praga     2188              1984     141     5        6
## 476      Bielany     2334              1992     132     5        5
## 477     Zoliborz     3961              1942      69     5        3
## 478      Ursynow     3550              1999      65     7        2
## 479      Mokotow     3587              1962      81     7        4
## 480     Zoliborz     3671              1964     108     3        5
## 481        Praga     3750              1926      60     5        3
## 482      Mokotow     3255              1962     105     8        4
## 483        Ursus     3250              1933     135     1        6
## 484      Ursynow     3299              1995      80     7        4
## 485        Praga     3822              1938      38     1        2
## 486       Ochota     4255              1960      74     2        2
## 487     Zoliborz     5445              1930      25     1        2
## 488      Bielany     3082              2009     107     6        5
## 489       Bemowo     3069              1990      38     9        1
## 490         Wola     4060              1922      34     5        2
## 491      Ursynow     1939              1990     126    10        4
## 492       Ochota     4139              1936      81     2        3
## 493       Ochota     3190              1977     111     8        4
## 494        Ursus     1767              1975     148     9        5
## 495      Mokotow     3438              1941     111     5        5
## 496        Ursus     2897              1950      95     4        3
## 497       Bemowo     3244              1936      36     7        2
## 498       Ochota     4007              1962     104     1        3
## 499       Bemowo     2694              1934     141     6        6
## 500        Praga     2806              1993      79     6        4
## 501      Mokotow     3064              1969     149     5        5
## 502       Ochota     3309              1958      94     9        3
## 503        Ursus     2355              1953     119     6        5
## 504       Ochota     4136              1999     111     4        5
## 505       Bemowo     2271              1955      98    10        3
## 506  Srodmiescie     4571              1985     143     2        6
## 507       Ochota     4045              1952      46     7        2
## 508     Zoliborz     3785              1990      97     4        3
## 509  Srodmiescie     4553              1967     115     6        4
## 510       Bemowo     3269              1974      28     8        1
## 511        Praga     2693              1951     106     4        5
## 512        Ursus     3368              1968      43     5        2
## 513      Mokotow     2752              1972     140     9        5
## 514       Ochota     3153              1982     110     8        5
## 515        Praga     3303              1982      45     6        1
## 516       Ochota     4523              1998      63     6        3
## 517      Bielany     3071              1922     113     6        4
## 518       Bemowo     2471              1961     118     5        5
## 519         Wola     4358              2002      39     2        1
## 520     Zoliborz     3650              1926     105    10        4
## 521     Zoliborz     4495              2005      75     5        3
## 522        Praga     3582              1972      27     5        1
## 523       Bemowo     2525              1980      83     9        3
## 524      Mokotow     2913              1955     134     8        5
## 525       Ochota     3977              1981      32     9        2
## 526      Mokotow     4322              2004     113     2        5
## 527        Praga     2197              1994     115     8        5
## 528        Praga     2498              1983      85     9        3
## 529  Srodmiescie     4894              1999     121     8        4
## 530      Mokotow     3979              1950     102     1        4
## 531  Srodmiescie     6229              1925      22     6        1
## 532       Bemowo     3896              1921      35     7        1
## 533        Praga     2863              1978      99     4        3
## 534       Bemowo     3273              1947      88     1        3
## 535        Praga     3202              1969      30     8        2
## 536      Bielany     2576              1972     117     4        5
## 537  Srodmiescie     4721              1971     133     2        5
## 538  Srodmiescie     5003              1933     105     9        3
## 539        Ursus     3129              2006      77     9        4
## 540       Bemowo     2809              1992      59     9        2
## 541  Srodmiescie     6035              2009      22     8        1
## 542        Praga     3550              1929      95     3        4
## 543  Srodmiescie     4988              1971      46     9        3
## 544  Srodmiescie     5114              1941      44     9        1
## 545     Zoliborz     3715              1994      63     8        3
## 546      Ursynow     3073              1955      88     3        3
## 547        Praga     4102              1932      70     1        2
## 548      Mokotow     3327              1921     132    10        5
## 549        Praga     3065              1948      48     7        3
## 550  Srodmiescie     5436              2004      56    10        2
## 551      Bielany     3459              1994      44     4        2
## 552        Ursus     2296              1944     135     5        5
## 553      Bielany     4389              1927      41     1        2
## 554        Ursus     3211              1934     144     1        5
## 555       Bemowo     2497              1939     105     6        5
## 556        Praga     2952              1928     125     6        4
## 557        Praga     2694              2007     136     7        5
## 558      Bielany     3036              1975      86     3        4
## 559     Zoliborz     3020              1967     118     9        4
## 560  Srodmiescie     4840              1960      91     6        3
## 561        Ursus     3148              1944      50     6        3
## 562  Srodmiescie     4217              1992     108    10        4
## 563       Ochota     4867              1931      78     1        3
## 564        Ursus     3932              1945      22     2        1
## 565       Bemowo     3060              1989      89     3        3
## 566       Ochota     4221              1981      73     2        3
## 567       Bemowo     2938              1928     116     7        4
## 568        Ursus     3748              2007      20    10        1
## 569        Praga     3462              1968      69     1        3
## 570        Ursus     2262              1974     114     8        4
## 571     Zoliborz     4708              1957      29     2        2
## 572      Bielany     3069              1959      68     5        3
## 573      Mokotow     3407              1958     149     1        6
## 574     Zoliborz     5267              2005      28     3        1
## 575        Ursus     3436              2005      56     9        2
## 576     Zoliborz     3428              1948     122     4        5
## 577       Ochota     3161              1993     124     7        4
## 578       Bemowo     3804              2004      65     4        3
## 579      Bielany     3034              1982     107     1        4
## 580        Ursus     2438              1950     141     3        5
## 581  Srodmiescie     5243              1956      26     9        2
## 582  Srodmiescie     5641              1922      86     4        4
## 583         Wola     1986              1960     141     7        6
## 584        Praga     3682              1926      52     7        2
## 585  Srodmiescie     5535              1961      22     7        1
## 586      Mokotow     3444              1994     101     7        3
## 587       Ochota     3875              1993      32    10        2
## 588        Praga     2054              1941     125     9        4
## 589       Ochota     3741              2009     111     8        5
## 590         Wola     3031              1944      62     6        3
## 591      Ursynow     3252              1957      55     5        2
## 592       Bemowo     3295              1928      60    10        2
## 593      Ursynow     3094              1987      26    10        1
## 594         Wola     2342              2009     146     9        6
## 595        Praga     3040              1927     126     5        4
## 596     Zoliborz     4564              1938      29     4        1
## 597       Ochota     4043              1921     106     6        4
## 598       Bemowo     3117              1947      93     2        3
## 599       Bemowo     3521              1958      48     3        2
## 600      Bielany     2120              1979     118     9        4
## 601     Zoliborz     4014              1953      79     3        4
## 602      Mokotow     4392              1942      21     6        2
## 603        Ursus     3841              1927      31     8        1
## 604         Wola     4390              1928      26     3        1
## 605       Ochota     3829              1999     127     6        4
## 606      Mokotow     4229              1928      97     5        4
## 607  Srodmiescie     6160              1934      39     5        1
## 608      Bielany     2229              1945     142     5        5
## 609     Zoliborz     4220              1940      53     4        3
## 610       Ochota     3871              1969      93     3        4
## 611     Zoliborz     3299              2007     140     9        6
## 612         Wola     2804              2006     135     6        5
## 613         Wola     4473              1930      38     1        1
## 614  Srodmiescie     5269              1975      38     8        1
## 615         Wola     3035              1966      86     3        4
## 616       Bemowo     2258              1954     139     5        5
## 617       Bemowo     1608              1973     149    10        6
## 618      Ursynow     4320              2009      28     3        2
## 619     Zoliborz     3979              2008     112     6        4
## 620      Ursynow     3126              2008      82     9        3
## 621     Zoliborz     3674              2006     148     5        5
## 622        Praga     2900              1993     100     3        4
## 623       Ochota     3306              1963     129     5        4
## 624      Bielany     2253              1938     115     8        4
## 625  Srodmiescie     5701              1986      40     3        2
## 626      Mokotow     4687              1967      41     1        2
## 627        Praga     3240              1978      46     6        2
## 628     Zoliborz     4654              1986      35     2        2
## 629       Bemowo     3167              1931      93     7        4
## 630      Ursynow     3816              1932      48     6        2
## 631  Srodmiescie     5674              1975      53     2        2
## 632      Mokotow     4995              2007      51     3        2
## 633      Mokotow     3606              1949      94     6        3
## 634  Srodmiescie     5253              1957     100     1        3
## 635       Bemowo     3718              1920      43     8        1
## 636      Bielany     3027              1927      97     8        4
## 637       Ochota     4199              1971      65     3        3
## 638      Bielany     3366              1979      23     7        2
## 639     Zoliborz     3565              1956     119     3        5
## 640     Zoliborz     4224              1970      58     4        2
## 641         Wola     1687              1987     146    10        5
## 642      Ursynow     2672              1942      78     8        3
## 643      Mokotow     4275              1932     103     4        4
## 644        Praga     3140              1939      96     1        4
## 645        Ursus     2258              1951     144     4        6
## 646        Ursus     2361              1972     119     6        5
## 647        Praga     3029              1972      27    10        2
## 648      Ursynow     2164              1983     129     7        5
## 649     Zoliborz     4219              1933     118     3        4
## 650         Wola     4257              2008      39     3        1
## 651      Mokotow     4200              1930     120     3        4
## 652     Zoliborz     3981              1989     102     1        4
## 653       Ochota     3081              1974     132     7        4
## 654      Mokotow     2708              1994     134    10        5
## 655       Ochota     4400              1986      50     3        2
## 656         Wola     2487              2009     141     8        6
## 657     Zoliborz     4187              1952      76     2        3
## 658        Praga     3232              2007      72     9        3
## 659     Zoliborz     3814              1941     104     3        3
## 660       Ochota     4512              1942      59     1        2
## 661      Bielany     3242              1975      86     1        4
## 662      Ursynow     2810              1941     129     1        4
## 663       Ochota     4316              1980      48     4        2
## 664        Praga     4119              1932      33     5        1
## 665       Ochota     4927              1995      52     3        3
## 666     Zoliborz     2993              1969     136     7        5
## 667        Ursus     3482              2003     102     3        4
## 668         Wola     3081              1986      47     7        3
## 669      Ursynow     1739              1948     136    10        6
## 670     Zoliborz     3928              1949      27    10        2
## 671      Bielany     2204              1961     115     8        5
## 672     Zoliborz     4524              1951      38     3        2
## 673        Ursus     2599              1991      90     7        4
## 674       Bemowo     3193              1994      21     9        2
## 675  Srodmiescie     6314              1934      39     3        2
## 676     Zoliborz     4107              1938      54     5        3
## 677       Bemowo     3288              1983      41     6        2
## 678     Zoliborz     3184              1992     112     8        4
## 679      Mokotow     3824              1943      78     5        4
## 680  Srodmiescie     4203              1941     130     8        4
## 681        Praga     3417              1978      38     5        2
## 682  Srodmiescie     5234              1989     102     1        3
## 683         Wola     4278              1924      27     4        1
## 684         Wola     3949              1925      65     3        2
## 685     Zoliborz     4652              2005      95     1        4
## 686      Bielany     2176              1981     147     5        5
## 687     Zoliborz     4481              1935      87     4        3
## 688       Ochota     4469              1975      48     2        3
## 689         Wola     3322              1988      43     6        1
## 690         Wola     2471              1987     103     7        4
## 691      Ursynow     1862              1983     139     9        5
## 692      Ursynow     2642              1967     126     3        4
## 693      Ursynow     3762              1966      34     2        2
## 694       Ochota     3975              1991      82     3        4
## 695       Bemowo     3643              2005      66     6        2
## 696      Mokotow     4191              1939      41     6        2
## 697         Wola     3333              1948      37     6        2
## 698        Praga     2967              1986      43     9        2
## 699      Ursynow     1702              1963     150     9        6
## 700        Praga     2834              1939     107     3        4
## 701       Ochota     4806              2008      74     2        3
## 702        Praga     2847              1977      50     9        3
## 703      Mokotow     4178              1992      77     2        3
## 704  Srodmiescie     4674              1968      68    10        3
## 705         Wola     2769              1940      63     9        2
## 706      Ursynow     2422              1976      78    10        4
## 707       Bemowo     2508              1997     134     9        5
## 708         Wola     3402              1985      40     5        2
## 709      Bielany     2491              1923     136     9        5
## 710       Ochota     4067              1945      28     9        1
## 711        Ursus     3199              1998     115     4        5
## 712         Wola     2541              1949     111     5        5
## 713      Ursynow     3330              1964      82     1        3
## 714        Ursus     3804              1933      55     5        3
## 715         Wola     3527              1973      47     3        2
## 716      Ursynow     3483              1934      52     9        2
## 717     Zoliborz     4382              1997     117     1        5
## 718      Mokotow     3851              2003     145     3        6
## 719       Ochota     4245              1934     121     2        5
## 720        Ursus     3955              1999      39     6        1
## 721  Srodmiescie     5883              2002      57     5        3
## 722        Praga     3238              1927      91     7        3
## 723      Ursynow     3419              1922      63     8        3
## 724      Bielany     3727              1977      42     2        1
## 725       Bemowo     2198              1936     100    10        4
## 726        Ursus     3830              2003      82     2        3
## 727     Zoliborz     3355              1941     129     4        5
## 728         Wola     2959              1964      79     5        3
## 729       Ochota     4294              1963      41     5        2
## 730      Bielany     3689              1935     101     1        4
## 731      Ursynow     3158              1926     114     5        4
## 732        Praga     2838              1974      86     5        4
## 733     Zoliborz     4030              1934      72    10        3
## 734         Wola     3450              1974      50     3        3
## 735       Ochota     3462              1951     149     1        5
## 736      Bielany     2992              1994      51     8        2
## 737       Bemowo     2539              1922     126    10        4
## 738  Srodmiescie     6191              1929      46     3        3
## 739      Ursynow     3116              1966      78     3        4
## 740       Ochota     4048              1969      50     6        3
## 741        Praga     2036              1985     116    10        4
## 742      Ursynow     2931              1942      67     7        2
## 743       Ochota     4378              1954      52     3        2
## 744       Bemowo     3272              2002     138     1        5
## 745      Mokotow     3970              1964      58     6        3
## 746       Ochota     3717              1961     123     1        5
## 747      Mokotow     3868              1938      78     5        3
## 748        Praga     3090              1998      96     8        3
## 749         Wola     2649              1923     145     6        6
## 750      Bielany     2861              1932     144     4        6
## 751        Praga     3575              1982      53     2        2
## 752     Zoliborz     4412              2005      69     7        2
## 753       Ochota     3472              1939      93     7        4
## 754      Bielany     3026              1936      57     7        2
## 755        Praga     3837              1927      31     8        1
## 756        Ursus     4055              1923      30     6        1
## 757      Bielany     2606              1966      69    10        2
## 758       Ochota     2892              1990     126     9        5
## 759      Bielany     3552              1974      65     1        2
## 760       Ochota     3864              1988     104     2        4
## 761      Bielany     3130              1986      92     2        3
## 762         Wola     3707              1928      84     3        3
## 763       Bemowo     4331              1930      22     4        1
## 764      Mokotow     4349              1956      20     7        1
## 765       Bemowo     2855              1974     100     4        3
## 766  Srodmiescie     5221              1939      73     4        3
## 767      Mokotow     3500              1999     115    10        5
## 768  Srodmiescie     5151              2005      90     9        3
## 769       Bemowo     2633              2004     147     6        6
## 770      Ursynow     3260              1984      89     1        3
## 771      Mokotow     3884              1998     137     4        5
## 772        Ursus     2503              1950     140     2        6
## 773  Srodmiescie     6528              2001      27     2        2
## 774       Bemowo     3167              1956      28     9        1
## 775        Ursus     2843              1957      91     5        3
## 776     Zoliborz     2915              1941     148     6        6
## 777         Wola     2854              1944     105     3        4
## 778         Wola     2775              1957     108     3        5
## 779       Bemowo     3285              1981      51     5        2
## 780      Mokotow     4344              1937      71     1        3
## 781        Praga     3830              1999      77     2        4
## 782      Bielany     3140              2006     106     6        4
## 783       Bemowo     3088              1980      76     4        3
## 784       Ochota     4623              1931      53     6        3
## 785         Wola     2644              1993      61    10        3
## 786      Bielany     3063              1978      79     4        3
## 787  Srodmiescie     5628              1946      37     4        2
## 788        Praga     3909              1921      44     6        1
## 789     Zoliborz     3587              1990      61    10        2
## 790       Bemowo     2284              1970     127     6        5
## 791       Ochota     3328              1978      77    10        4
## 792        Ursus     2417              1995      88     9        4
## 793       Bemowo     2479              1987     137     3        5
## 794        Praga     4005              1997      65     2        3
## 795         Wola     3255              1966      64     4        2
## 796      Bielany     4599              1921      25     1        1
## 797      Mokotow     4534              2008      92     3        3
## 798        Praga     2660              1980     139     1        5
## 799       Bemowo     2735              1989      66     9        2
## 800     Zoliborz     2935              1977     127     9        4
## 801      Bielany     3320              1982      63     3        3
## 802       Bemowo     2937              2008      91    10        3
## 803  Srodmiescie     5398              1955      20     8        2
## 804      Mokotow     4060              1923     119     4        5
## 805  Srodmiescie     4342              1980     116     8        4
## 806      Ursynow     4478              1925      32     1        2
## 807  Srodmiescie     5730              1973      32     4        1
## 808      Ursynow     2661              1942     114     4        4
## 809      Mokotow     3891              1951      76     5        3
## 810       Bemowo     3892              1920      46     5        3
## 811        Ursus     3449              1985      50     3        3
## 812     Zoliborz     3258              1978      94     9        4
## 813       Bemowo     3073              1939      48     7        3
## 814        Ursus     3945              1934      20     8        1
## 815       Bemowo     2441              1987     101     8        3
## 816  Srodmiescie     4303              1978     130     7        4
## 817        Ursus     2601              1970     140     1        6
## 818        Praga     2687              1940     106     4        5
## 819         Wola     2697              1959      75     8        3
## 820     Zoliborz     3357              1964     114     6        4
## 821       Bemowo     3992              2007      46     4        3
## 822      Mokotow     3137              1936     136     5        6
## 823       Ochota     2705              1945     139     9        6
## 824       Bemowo     4314              1927      29     3        2
## 825     Zoliborz     3664              1993      99     5        3
## 826         Wola     2529              1922     142     8        5
## 827        Praga     3798              1931      55     5        3
## 828      Ursynow     3885              1966      36     1        1
## 829      Mokotow     3868              1943      78     5        3
## 830        Ursus     3542              1991      26     5        2
## 831  Srodmiescie     6031              1925      32     7        1
## 832       Ochota     3839              1972      71     6        3
## 833      Mokotow     4095              1929      90     7        4
## 834     Zoliborz     4149              1972      35     7        2
## 835         Wola     3378              1935      57     9        3
## 836         Wola     3561              2005      74     6        2
## 837      Bielany     2210              1995      99    10        4
## 838      Ursynow     2928              1956     102     3        3
## 839       Bemowo     3259              1971      69     3        3
## 840        Ursus     3139              1990      46     7        2
## 841       Bemowo     3043              1983      96     2        4
## 842      Ursynow     3051              1967      90     3        3
## 843       Bemowo     3673              1996      63     6        2
## 844      Ursynow     2919              1934     113     7        5
## 845      Ursynow     2784              1963      67     8        3
## 846      Bielany     3667              1997      43     8        2
## 847        Praga     3369              1983      48     4        3
## 848      Mokotow     2868              1967     118    10        5
## 849  Srodmiescie     5057              1995     129     5        5
## 850  Srodmiescie     5332              1977      72     3        3
## 851         Wola     2367              2004     143     9        6
## 852        Praga     3490              1974      56     2        3
## 853         Wola     2988              1962      86     4        3
## 854      Ursynow     2649              1978      65    10        2
## 855  Srodmiescie     4396              1965     110     8        4
## 856      Bielany     3399              1926     130     1        4
## 857       Ochota     4513              1951      49     2        2
## 858         Wola     3302              1990      25     8        1
## 859      Mokotow     4122              1965      38     7        2
## 860     Zoliborz     2622              1950     148     9        6
## 861      Mokotow     4380              1978      22     6        2
## 862  Srodmiescie     4621              1984     143     2        5
## 863      Mokotow     4155              1941      65     4        2
## 864        Praga     2792              1941      61     9        2
## 865      Bielany     2866              1925     123     7        4
## 866        Praga     3787              1923      91     1        4
## 867        Praga     3202              1994      25     9        1
## 868       Ochota     4425              1929     112     1        5
## 869      Bielany     2852              1961      65     8        2
## 870     Zoliborz     3961              1994      24    10        2
## 871       Ochota     4804              1968      30     1        2
## 872      Bielany     2875              1991      93     4        4
## 873      Mokotow     4222              1999      53    10        3
## 874        Praga     3207              1939      94     1        3
## 875     Zoliborz     3460              1944     104     6        4
## 876  Srodmiescie     5862              2005      84     2        4
## 877        Praga     2525              2007     138     8        6
## 878        Praga     2147              1981     110     9        5
## 879      Ursynow     3251              1926     115     4        4
## 880      Ursynow     3342              1939      41     6        1
## 881       Bemowo     3118              1975      23    10        1
## 882      Ursynow     2785              1961      77     7        3
## 883       Bemowo     3309              1966      79     1        4
## 884       Ochota     3701              1936     125     1        5
## 885      Bielany     3367              1999     128     1        5
## 886        Praga     3747              1935      25     9        2
## 887      Ursynow     3215              1942      34     8        1
## 888      Mokotow     3396              1981     125     4        5
## 889  Srodmiescie     4487              2010     136    10        5
## 890         Wola     2648              1978      60    10        3
## 891         Wola     2183              1956     117     8        5
## 892  Srodmiescie     4732              1968      92     7        3
## 893        Praga     3002              1988      95     3        3
## 894      Bielany     2797              1965      95     5        3
## 895        Ursus     3783              1990      32     2        2
## 896  Srodmiescie     6276              1929      37     4        1
## 897  Srodmiescie     5254              1958      65     5        2
## 898       Ochota     3885              1941      67     6        3
## 899       Bemowo     3092              1965      26    10        1
## 900      Mokotow     4732              1927      57     5        2
## 901      Ursynow     2379              2000     147     9        5
## 902  Srodmiescie     5537              1978      71     1        3
## 903         Wola     2916              1976      98     3        4
## 904        Praga     2819              1990      68     8        2
## 905      Bielany     2367              1948     138     4        5
## 906       Bemowo     2676              1921     147     6        5
## 907         Wola     3193              1938      66     4        3
## 908  Srodmiescie     4732              1944      82     8        3
## 909         Wola     2922              2008     138     4        6
## 910       Bemowo     2368              1958     133     5        4
## 911       Ochota     3831              1978      72     6        3
## 912      Mokotow     4146              1988      90     1        3
## 913         Wola     2786              1956      91     5        4
## 914      Bielany     2386              1959      81    10        4
## 915        Praga     2322              1960     143     4        5
## 916  Srodmiescie     4112              1983     149     6        6
## 917       Bemowo     3112              1935      99     1        4
## 918      Bielany     2183              1995     147     5        5
## 919         Wola     2892              1984      66     7        3
## 920        Ursus     2538              1963      86     8        4
## 921       Ochota     4638              1975      26     3        2
## 922       Ochota     4726              2004      52     5        3
## 923      Mokotow     4019              1959      88     2        4
## 924      Mokotow     4038              1990      91     2        3
## 925      Bielany     2757              1978      99     5        3
## 926       Bemowo     2391              1965     121     6        4
## 927       Ochota     4496              2006     100     2        4
## 928        Ursus     2745              1956     100     5        3
## 929       Bemowo     2859              1962      84     5        4
## 930        Ursus     3730              1979      37     2        2
## 931        Ursus     3981              1989      22     1        2
## 932      Bielany     3681              1931      87     3        3
## 933       Ochota     3920              1972      28    10        2
## 934      Ursynow     2492              1948     101     7        4
## 935  Srodmiescie     5025              1961      38    10        2
## 936       Ochota     4563              2006      44     8        2
## 937       Bemowo     3704              1933      25    10        1
## 938       Ochota     4251              1957      40     6        1
## 939     Zoliborz     3560              1930     144     6        6
## 940         Wola     3216              1939      48     6        2
## 941      Mokotow     2833              1992     132     9        5
## 942        Praga     2408              1971     104     8        3
## 943       Bemowo     2654              1978      70     9        3
## 944       Ochota     4361              1922     104     3        4
## 945  Srodmiescie     3925              1939     143     9        5
## 946      Ursynow     4127              1931      57     2        2
## 947      Bielany     1949              1967     125    10        4
## 948       Ochota     4419              1985      38     4        2
## 949      Ursynow     2750              1976     120     2        5
## 950      Bielany     3189              1975      61     5        2
## 951       Ochota     4319              1958      43     5        1
## 952       Bemowo     2865              1989      88     5        3
## 953       Bemowo     2805              1985      70     8        2
## 954        Ursus     3848              1998      65     4        2
## 955       Bemowo     3703              1924      85     3        3
## 956      Ursynow     3708              1925      64     5        3
## 957      Ursynow     2897              1981     115     1        5
## 958       Bemowo     3581              1935      37     4        1
## 959  Srodmiescie     5042              1937     116     1        4
## 960      Bielany     4123              2009      68     1        2
## 961      Ursynow     3966              1924      78     1        3
## 962        Ursus     4436              1934      41     1        1
## 963        Ursus     2677              1922     142     6        6
## 964       Bemowo     4540              1999      21     2        1
## 965      Mokotow     4108              1936      44     7        1
## 966         Wola     3953              1932      60     3        3
## 967       Ochota     3023              1965     123     8        5
## 968       Bemowo     2555              1999     144     7        6
## 969        Ursus     3268              1942      43     6        2
## 970         Wola     3806              2002      89     1        4
## 971        Praga     3927              1921      72     2        3
## 972      Ursynow     1971              1979     128     9        5
## 973        Praga     4073              2001      38     5        1
## 974         Wola     2375              1951     107     7        5
## 975       Ochota     4570              1960      23     4        2
## 976       Ochota     3710              1945     114     2        5
## 977  Srodmiescie     5330              1988      82     2        3
## 978       Bemowo     3953              1934      35     6        2
## 979  Srodmiescie     5749              1957      50     1        3
## 980         Wola     2252              1985     115     8        4
## 981     Zoliborz     2623              1964     143    10        5
## 982       Ochota     4134              1964      52     5        3
## 983        Praga     3036              1933     121     5        5
## 984        Ursus     3586              1975      46     2        3
## 985  Srodmiescie     5385              1939      57     4        3
## 986       Bemowo     2595              1967     145     1        5
## 987  Srodmiescie     5519              1925      68     8        2
## 988        Praga     2107              1970     134     7        5
## 989        Ursus     2662              1933     144     6        6
## 990       Ochota     3692              1990     126     1        5
## 991        Ursus     2442              1997     141     9        5
## 992      Ursynow     3543              1936      66     1        2
## 993       Ochota     3610              1971     114     3        5
## 994       Ochota     4303              1927     105     4        3
## 995      Ursynow     3023              1949      98     2        4
## 996        Praga     2488              1990     136     3        5
## 997      Bielany     3772              1921      98     1        3
## 998      Bielany     2378              1961     147     3        5
## 999         Wola     3994              1949      26     1        1
## 1000      Bemowo     3659              1967      54     1        2
## 1001     Ursynow     3943              1960      31     1        1
## 1002       Ursus     2951              1986      55     8        2
## 1003 Srodmiescie     4960              1973     104     3        4
## 1004      Bemowo     4165              1932      58     1        3
## 1005     Mokotow     4861              1932      29     7        1
## 1006       Praga     2694              1951      81     7        4
## 1007 Srodmiescie     4599              1955     100     7        4
## 1008     Bielany     1850              1951     140     9        5
## 1009       Ursus     3568              1965      53     2        2
## 1010     Mokotow     3171              1947      93    10        4
## 1011    Zoliborz     4102              1992      60     5        2
## 1012       Praga     3989              1961      21     1        2
## 1013       Praga     4180              1928      42     3        2
## 1014       Ursus     3104              1958      30     9        2
## 1015      Ochota     3520              1987      83     8        3
## 1016      Bemowo     3019              1964      73     5        3
## 1017     Ursynow     2830              1994     127     1        4
## 1018      Bemowo     4237              2007      41     3        1
## 1019      Ochota     4678              1924      87     2        3
## 1020      Ochota     4216              1960      78     1        4
## 1021       Ursus     2482              1953      77    10        3
## 1022        Wola     2819              1970      98     4        4
## 1023    Zoliborz     3359              1949     134     4        4
## 1024     Bielany     2736              1973      66     9        2
## 1025      Bemowo     3409              1976      54     3        3
## 1026        Wola     2251              1937     145     4        6
## 1027       Praga     2414              1922     144     9        5
## 1028       Praga     3801              2007      35     8        1
## 1029      Bemowo     2288              1982     121     7        4
## 1030     Ursynow     3355              1947      25     7        2
## 1031      Ochota     2981              1937     142     6        6
## 1032    Zoliborz     4000              1972     100     1        4
## 1033 Srodmiescie     4748              1994     105     5        4
## 1034 Srodmiescie     5748              1941      25     4        2
## 1035     Ursynow     1813              1988     134    10        5
## 1036       Ursus     1937              1941     136     8        6
## 1037       Ursus     3338              1986      51     4        3
## 1038       Ursus     3153              1967      25     9        2
## 1039      Bemowo     4218              2005      38     3        2
## 1040 Srodmiescie     4902              1993     125     1        5
## 1041       Praga     4242              1999      56     1        2
## 1042      Ochota     4139              1976      46     6        2
## 1043        Wola     2616              1984     133     2        5
## 1044     Ursynow     2545              1974      96     7        4
## 1045      Ochota     4891              1998      66     2        3
## 1046        Wola     2869              1978      88     5        3
## 1047 Srodmiescie     6308              1923      54     1        3
## 1048        Wola     3763              1979      34     2        2
## 1049     Bielany     2976              1933     122     6        4
## 1050        Wola     4154              1935      35     4        2
## 1051    Zoliborz     4413              1962      34     5        1
## 1052     Ursynow     2469              1978     113     6        4
## 1053     Mokotow     4022              1966      73     4        3
## 1054       Praga     3184              1996     112     5        4
## 1055      Ochota     4255              1967      75     2        2
## 1056    Zoliborz     2613              1982     139    10        6
## 1057      Bemowo     2823              1960      63     8        3
## 1058     Bielany     2680              1945     137     1        5
## 1059    Zoliborz     3939              1990      76     4        4
## 1060     Ursynow     2573              1935     138     2        5
## 1061     Ursynow     2807              1970     109     3        4
## 1062      Ochota     4073              1964      58     5        3
## 1063     Bielany     3763              1929      24     9        2
## 1064     Ursynow     2740              2008     131     7        5
## 1065     Bielany     3043              1933      81    10        3
## 1066       Praga     2021              1963     123     9        5
## 1067      Ochota     3829              1972      97     3        4
## 1068       Praga     3561              2004      94     3        4
## 1069     Mokotow     3937              2002      81    10        3
## 1070      Ochota     3736              1986      96     4        4
## 1071    Zoliborz     4875              1997      63     3        2
## 1072       Ursus     2799              1989      65     8        3
## 1073    Zoliborz     4037              1938      76     3        4
## 1074     Bielany     2740              1944     121     2        5
## 1075     Bielany     2349              1971     145     3        6
## 1076     Mokotow     3847              1950      60     7        3
## 1077 Srodmiescie     5901              1973      45     1        1
## 1078     Ursynow     3952              2001      80     1        3
## 1079       Praga     3488              1997      71     7        2
## 1080       Praga     3470              1997     103     3        4
## 1081      Bemowo     2515              1974     138     2        6
## 1082 Srodmiescie     5664              1931      49     8        3
## 1083      Ochota     4118              1953      28     8        2
## 1084     Ursynow     2650              1943     140     1        5
## 1085       Praga     3817              2009      33     8        1
## 1086    Zoliborz     2759              1969     144     8        6
## 1087     Bielany     3189              1943      51     6        2
## 1088 Srodmiescie     5320              1939      48     6        2
## 1089       Praga     3039              1948      86     3        4
## 1090    Zoliborz     4159              2003     104     5        4
## 1091        Wola     3226              1957      32     8        1
## 1092    Zoliborz     3924              1981      38     9        2
## 1093      Ochota     4538              1981      56     1        2
## 1094     Mokotow     3291              1936      96     9        3
## 1095    Zoliborz     4119              1972      23     9        1
## 1096    Zoliborz     3083              1976     102    10        4
## 1097     Ursynow     2843              1960     101     4        3
## 1098       Praga     3490              1977      71     1        2
## 1099    Zoliborz     4079              1958      77     3        3
## 1100     Bielany     4481              1931      37     1        1
## 1101       Praga     2797              1952      75     7        3
## 1102     Mokotow     3823              1984     118     1        4
## 1103     Mokotow     3985              1970      86     3        3
## 1104     Mokotow     3847              1978      80     5        3
## 1105       Praga     3056              1957      64     6        2
## 1106      Bemowo     2183              1959     117     8        5
## 1107       Ursus     2238              1991     126     7        4
## 1108      Ochota     3995              1990      91     2        4
## 1109     Ursynow     2187              1959     141     5        6
## 1110 Srodmiescie     5051              2009     150     3        5
## 1111     Ursynow     3543              1948      26     5        2
## 1112     Ursynow     2623              1964     138     1        6
## 1113    Zoliborz     4152              1949      75     3        2
## 1114       Praga     2186              1952     146     5        5
## 1115        Wola     2968              1976      33    10        2
## 1116 Srodmiescie     5366              2000     138     1        5
## 1117     Mokotow     3231              1929     142    10        5
## 1118      Ochota     3587              1993     101     5        4
## 1119     Bielany     3255              1965      80     2        3
## 1120       Praga     2599              1987     120     4        4
## 1121     Ursynow     2927              2000     117     7        4
## 1122 Srodmiescie     4493              1964     111     7        4
## 1123     Mokotow     3208              1993     134     5        5
## 1124       Ursus     1946              1991     120    10        5
## 1125     Mokotow     3975              1950      83     3        4
## 1126    Zoliborz     4918              1932      23     7        1
## 1127     Bielany     3995              1931      35     6        1
## 1128     Ursynow     4259              2010      44     2        2
## 1129      Ochota     3200              1959      90    10        4
## 1130        Wola     2720              1987     103     5        3
## 1131      Ochota     4495              1921      50     8        2
## 1132     Ursynow     2114              1981     129     8        4
## 1133     Mokotow     3090              1937     136     6        5
## 1134    Zoliborz     3643              1964      66     9        2
## 1135     Mokotow     4271              1970      28     7        1
## 1136     Ursynow     2716              1982      78     7        4
## 1137     Bielany     2281              1984     117     7        5
## 1138     Mokotow     4350              2004      85     5        4
## 1139       Ursus     3880              1968      27     2        1
## 1140       Praga     3507              1971      59     2        2
## 1141       Praga     2975              2002      83    10        4
## 1142      Bemowo     2535              1968      87     8        4
## 1143       Praga     2820              1986      83     6        3
## 1144     Bielany     2201              1961     125     7        5
## 1145       Praga     2595              1989      66    10        3
## 1146      Ochota     3521              1938     113     4        5
## 1147        Wola     3401              1974      35     6        1
## 1148     Ursynow     3622              1967      28     4        2
## 1149       Praga     3583              1922      77     5        3
## 1150     Ursynow     2162              1936     119     8        5
## 1151     Ursynow     3545              1963      36     4        2
## 1152        Wola     2676              1949     137     1        5
## 1153       Ursus     2039              1942     136     7        6
## 1154     Ursynow     2870              1946      48     9        3
## 1155     Ursynow     1938              1979     136     8        6
## 1156       Ursus     3026              1958      37     9        2
## 1157    Zoliborz     4408              2002      39    10        2
## 1158        Wola     4199              1996      25     5        1
## 1159        Wola     3266              2006     138     1        5
## 1160     Ursynow     2401              1929     140     9        6
## 1161     Mokotow     4239              1941      56     4        2
## 1162    Zoliborz     2927              1980     142     7        5
## 1163     Mokotow     2975              1980     107    10        5
## 1164    Zoliborz     4023              1972      73     4        3
## 1165      Ochota     3470              1942     128     3        5
## 1166 Srodmiescie     4702              1922     115    10        5
## 1167    Zoliborz     4782              1922      57     4        3
## 1168       Ursus     2091              1982     116     9        5
## 1169        Wola     2744              1950      61     9        3
## 1170 Srodmiescie     5788              1971      21     4        2
## 1171      Ochota     3389              2006     126    10        5
## 1172       Praga     2792              2010     146     5        5
## 1173     Ursynow     2392              1940     141     3        6
## 1174 Srodmiescie     4815              1921     113     9        5
## 1175     Ursynow     3224              1952      38     7        2
## 1176    Zoliborz     4365              1935      44     4        2
## 1177       Praga     3467              2009      83     5        4
## 1178     Bielany     2998              1993     100     2        4
## 1179       Praga     3217              1962      73     3        3
## 1180        Wola     3349              1998      90     6        3
## 1181       Ursus     2749              2001     110     9        5
## 1182      Ochota     4316              1923      73     7        3
## 1183     Mokotow     3504              1967     105     6        3
## 1184      Bemowo     3795              1930      21     9        2
## 1185       Praga     2560              1949     149     1        5
## 1186     Ursynow     3344              1974      46     5        2
## 1187        Wola     2658              1979      69     9        3
## 1188 Srodmiescie     5284              1986      62     5        2
## 1189      Ochota     4660              1947      24     3        2
## 1190        Wola     2347              1991      90    10        3
## 1191        Wola     2675              1980     137     1        5
## 1192    Zoliborz     5382              1929      22     2        2
## 1193      Bemowo     2218              1936      98    10        4
## 1194     Bielany     4012              1920      49     4        2
## 1195       Praga     3332              1959      52     4        3
## 1196     Bielany     3065              1936      84     3        4
## 1197     Mokotow     3644              1969      61     9        3
## 1198      Bemowo     2762              1961      49    10        3
## 1199     Ursynow     4027              1963      22     1        1
## 1200      Ochota     4570              1974      38     3        1
## 1201    Zoliborz     3348              1973      95     8        4
## 1202     Ursynow     3665              1986      53     1        2
## 1203       Ursus     3760              1955      29     3        1
## 1204     Bielany     3077              1973      82     3        4
## 1205     Bielany     3453              1993      55     3        2
## 1206      Bemowo     3040              1975      91     3        3
## 1207     Mokotow     3957              1963      24    10        2
## 1208     Bielany     3043              1943      76     4        4
## 1209     Bielany     3420              1990      53     3        3
## 1210      Ochota     3381              1943      77    10        3
## 1211       Ursus     2813              1946      69     8        2
## 1212        Wola     3179              1966      32     8        2
## 1213    Zoliborz     4926              1932      47     4        2
## 1214      Ochota     4002              1926     125     4        5
## 1215    Zoliborz     3898              1954      90     3        4
## 1216        Wola     2473              1949     128     4        5
## 1217      Ochota     4035              1970      77     3        4
## 1218      Bemowo     3940              2000      21     8        1
## 1219     Bielany     2751              1981     125     2        4
## 1220     Mokotow     3670              1972      98     5        3
## 1221 Srodmiescie     4605              2004     139     8        6
## 1222       Praga     4093              1998      71     1        2
## 1223    Zoliborz     3021              1936     143     6        5
## 1224       Ursus     2693              1958      86     7        3
## 1225     Mokotow     3508              1957      99     6        4
## 1226    Zoliborz     4091              2004      96     7        3
## 1227      Bemowo     3799              1943      35     2        1
## 1228       Ursus     3099              1968      50     7        2
## 1229        Wola     3897              1997      75     2        3
## 1230       Ursus     3071              1960     103     1        4
## 1231      Bemowo     3522              1995      53     2        3
## 1232        Wola     3077              1926      87     9        3
## 1233      Ochota     3953              1997     135     4        4
## 1234 Srodmiescie     4956              1990      79     6        3
## 1235      Bemowo     2352              1964     145     3        6
## 1236     Bielany     2474              1987      78    10        3
## 1237    Zoliborz     4105              1962      54     5        3
## 1238       Praga     3143              1968      41     8        1
## 1239      Bemowo     4194              2001      26     5        1
## 1240     Mokotow     3995              2006     145     2        5
## 1241     Ursynow     3270              1960      78     2        3
## 1242        Wola     2959              1969      49     8        3
## 1243        Wola     2573              1962     128     3        5
## 1244       Praga     2460              1983     134     4        4
## 1245      Bemowo     2310              2007     139    10        6
## 1246    Zoliborz     3858              1972      79     5        3
## 1247    Zoliborz     3582              1975      87     7        3
## 1248     Mokotow     4652              1931      70     4        3
## 1249      Ochota     4349              1998      95     4        4
## 1250      Bemowo     3008              2007     114     6        5
## 1251     Mokotow     5136              2003      31     4        1
## 1252      Ochota     4188              1923      96     6        3
## 1253    Zoliborz     4259              1984      49     4        3
## 1254        Wola     3158              1960      34     8        2
## 1255        Wola     3610              1966      29     4        2
## 1256 Srodmiescie     4655              1958     144     1        6
## 1257        Wola     3671              1932      33     9        2
## 1258     Bielany     3090              1928     106     6        5
## 1259 Srodmiescie     4401              1936     150     3        6
## 1260     Mokotow     3770              1947      63     8        2
## 1261       Ursus     3225              1968      68     4        2
## 1262 Srodmiescie     5290              1950      61     5        2
## 1263 Srodmiescie     5206              2004      84     9        3
## 1264        Wola     3647              1935      55     1        2
## 1265       Ursus     3651              2005      35     9        2
## 1266     Mokotow     3707              2006     119     8        4
## 1267     Mokotow     3831              1929      92    10        3
## 1268      Bemowo     2862              1942      54     9        2
## 1269      Bemowo     3988              1927      46     4        3
## 1270      Bemowo     2559              1969      89     8        3
## 1271     Bielany     3730              1933      32     9        1
## 1272      Bemowo     2767              1986      78     7        3
## 1273     Bielany     2151              1956     110     9        5
## 1274       Praga     4113              2004      69     1        2
## 1275 Srodmiescie     4408              1965      94    10        3
## 1276      Bemowo     3059              1948      79     4        3
## 1277        Wola     2591              1933     121    10        4
## 1278     Ursynow     2836              1992      71     7        3
## 1279    Zoliborz     4417              1921     113     1        5
## 1280        Wola     3423              1974      63     2        3
## 1281     Ursynow     2927              1959     112     1        5
## 1282        Wola     2479              1981      77    10        3
## 1283     Ursynow     2838              1962     106     3        4
## 1284     Mokotow     3865              1921     118     6        5
## 1285 Srodmiescie     5436              1991      46     5        2
## 1286     Mokotow     3595              1977     115     3        5
## 1287       Praga     1868              1983     128    10        5
## 1288     Bielany     3940              1924      46     5        2
## 1289 Srodmiescie     5258              1974      69     4        3
## 1290    Zoliborz     3672              1980     118     2        5
## 1291      Ochota     5294              1924      36     2        1
## 1292     Ursynow     3960              2002      49     4        3
## 1293     Mokotow     4032              1967      22    10        1
## 1294     Bielany     2440              1991      76    10        4
## 1295      Ochota     4936              2001      21     7        1
## 1296     Ursynow     2205              1977     100    10        4
## 1297      Ochota     3724              1959      58     9        2
## 1298       Ursus     2598              1993     120     4        4
## 1299     Mokotow     4576              1987      37     3        1
## 1300     Bielany     3240              1977      91     1        3
## 1301        Wola     2934              1946     107     2        4
## 1302    Zoliborz     4248              1947      45     5        2
## 1303     Ursynow     2794              1999     101    10        4
## 1304      Bemowo     3486              1992      41     4        2
## 1305     Ursynow     3664              1986      29     4        1
## 1306    Zoliborz     4206              1979      59     4        2
## 1307    Zoliborz     3892              1971      86     4        3
## 1308       Ursus     3199              1924     130     3        4
## 1309     Ursynow     3049              1997     110     6        5
## 1310       Praga     4116              2001      43     4        1
## 1311       Praga     2747              1987      65     9        2
## 1312        Wola     3465              1976      38     5        1
## 1313 Srodmiescie     6157              1924      74     1        2
## 1314    Zoliborz     3995              1963      56     6        3
## 1315     Ursynow     2819              1947      83     6        3
## 1316 Srodmiescie     4815              1965     113     3        5
## 1317     Mokotow     3227              1936     137     4        6
## 1318        Wola     3623              1933      68     6        2
## 1319    Zoliborz     4313              1941      44     5        1
## 1320      Ochota     4694              1959      36     2        1
## 1321    Zoliborz     4383              1964      47     3        3
## 1322 Srodmiescie     5027              1955      97     3        4
## 1323 Srodmiescie     4172              1971     113    10        4
## 1324 Srodmiescie     4687              1951     121     4        4
## 1325     Bielany     4233              2010      42     3        1
## 1326 Srodmiescie     4531              1978     137     3        6
## 1327 Srodmiescie     4308              1938     144     5        5
## 1328      Ochota     3288              1980     101     8        4
## 1329       Praga     3736              2003      91     2        3
## 1330       Praga     2824              1967      78     6        4
## 1331     Mokotow     3720              1989      68     8        2
## 1332      Bemowo     3031              1988      97     2        4
## 1333       Praga     3946              1925      30     7        1
## 1334      Bemowo     3214              1948      84     2        3
## 1335      Bemowo     3136              1968      36     8        2
## 1336 Srodmiescie     5397              1956      30     7        2
## 1337      Bemowo     2622              2004     143     7        5
## 1338     Bielany     2945              1964     110     1        5
## 1339     Ursynow     3031              1935      97     2        4
## 1340 Srodmiescie     6550              1932      35     1        2
## 1341     Mokotow     4590              1986      46     1        3
## 1342     Bielany     3413              1954      34     6        1
## 1343 Srodmiescie     4949              1989      45    10        2
## 1344 Srodmiescie     5549              1928      70     7        3
## 1345     Bielany     2996              1954     105     1        5
## 1346     Ursynow     4452              1926      25     2        2
## 1347     Bielany     3193              1983      71     4        2
## 1348      Ochota     3477              1969     107     5        5
## 1349     Ursynow     3371              1942      43     5        2
## 1350     Ursynow     2554              1940      80     9        3
## 1351 Srodmiescie     4451              1943     145     3        6
## 1352      Bemowo     3859              1920      49     5        3
## 1353     Bielany     1882              1965     142     8        6
## 1354 Srodmiescie     5240              1988      26     9        2
## 1355    Zoliborz     4054              1924     105     6        4
## 1356       Praga     2179              1937     122     8        4
## 1357     Mokotow     3516              1994     108     5        4
## 1358     Mokotow     4180              1987      32     7        2
## 1359     Ursynow     3114              1955     104     1        3
## 1360     Ursynow     3748              1932      95     1        4
## 1361     Mokotow     4377              1965      72     1        2
## 1362     Bielany     2576              1984      87     8        3
## 1363     Bielany     3129              1962      42     8        1
## 1364    Zoliborz     4367              1947      28     6        1
## 1365    Zoliborz     5350              1929      40     1        1
## 1366    Zoliborz     4293              1992      66     2        3
## 1367       Ursus     2299              1960     110     8        4
## 1368      Ochota     3241              1976     106     8        4
## 1369     Ursynow     3523              1924      93     4        3
## 1370      Bemowo     3917              1922      78     1        4
## 1371     Mokotow     3725              2004     148     4        6
## 1372      Bemowo     2669              1940      58    10        3
## 1373        Wola     2973              1954      78     5        3
## 1374        Wola     3857              1945      34     1        2
## 1375       Ursus     1930              1968     147     7        6
## 1376       Ursus     1719              1962     138    10        6
## 1377     Ursynow     1644              1943     146    10        6
## 1378 Srodmiescie     5867              1925      23     9        2
## 1379       Ursus     3320              1969      58     4        2
## 1380        Wola     2754              1993      70     8        3
## 1381     Ursynow     2524              1947     113     5        5
## 1382    Zoliborz     3469              1986      78     9        3
## 1383       Praga     2909              2001     144     4        5
## 1384        Wola     2409              1928     134    10        5
## 1385      Ochota     3885              1939      56     7        3
## 1386       Ursus     3289              1963      61     4        2
## 1387     Bielany     3334              1996     102     5        3
## 1388        Wola     3451              1930      50     9        3
## 1389    Zoliborz     4144              1990      41     7        1
## 1390      Ochota     4601              1948      45     2        1
## 1391     Mokotow     3588              1963     136     1        5
## 1392     Ursynow     3336              1983      66     3        2
## 1393    Zoliborz     3764              1941     124     1        4
## 1394     Bielany     2859              1959     114     2        4
## 1395       Praga     2335              1963     106     8        4
## 1396      Ochota     3928              1920      87     9        4
## 1397    Zoliborz     3320              1973     113     6        5
## 1398       Ursus     2905              1939      39    10        2
## 1399       Ursus     3403              1923      80     6        4
## 1400    Zoliborz     3694              1967     131     1        4
## 1401 Srodmiescie     4795              1977     136     1        5
## 1402       Praga     4294              2002      51     1        2
## 1403 Srodmiescie     5080              1956      57     7        3
## 1404     Ursynow     4071              2005      48     3        3
## 1405 Srodmiescie     5432              1985      32     7        1
## 1406    Zoliborz     2825              1978     142     8        5
## 1407       Ursus     2802              1990      80     6        4
## 1408       Ursus     2989              1957      71     6        2
## 1409     Ursynow     2782              1959     127     1        5
## 1410 Srodmiescie     3855              1979     145     9        6
## 1411       Praga     3454              1923     125     1        4
## 1412       Ursus     3468              1933      78     6        3
## 1413 Srodmiescie     4229              1989     122     8        5
## 1414       Praga     4121              1929      63     1        3
## 1415     Ursynow     2137              1992     116     9        4
## 1416     Ursynow     3852              1933      80     2        3
## 1417     Mokotow     3348              1942     120     5        5
## 1418       Praga     2745              2005     111     9        5
## 1419 Srodmiescie     5818              2007      53     6        3
## 1420      Bemowo     2874              1947     118     1        5
## 1421     Bielany     3628              2004      67     6        2
## 1422 Srodmiescie     5489              1920      91     5        4
## 1423      Bemowo     2021              1981     143     7        5
## 1424      Ochota     3962              1991      59     6        3
## 1425     Ursynow     3229              1981      87     1        4
## 1426    Zoliborz     3818              1952     118     1        4
## 1427 Srodmiescie     4649              1974     145     1        6
## 1428     Ursynow     2922              1970     113     1        5
## 1429     Mokotow     3931              2007      92     9        3
## 1430       Ursus     2853              2006     115     8        4
## 1431       Ursus     3642              1996      96     2        4
## 1432        Wola     3371              1947      78     1        3
## 1433     Bielany     1866              1981     128    10        5
## 1434 Srodmiescie     4530              1985      97     8        4
## 1435      Ochota     4068              1929      73    10        2
## 1436        Wola     3891              2008      46     5        3
## 1437        Wola     3034              1957      67     6        2
## 1438       Praga     4055              1933      50     3        3
## 1439       Ursus     3439              1999      61     8        3
## 1440       Ursus     2342              1957     131     5        5
## 1441      Ochota     4430              1988      62     1        3
## 1442     Mokotow     4258              1934     119     2        5
## 1443     Bielany     3703              1996      70     5        2
## 1444    Zoliborz     3382              1996     142     8        6
## 1445       Ursus     2759              1970      59     9        3
## 1446      Bemowo     2890              1950     106     2        5
## 1447     Ursynow     3852              2007      25     8        2
## 1448        Wola     2608              1973     119     4        4
## 1449      Bemowo     2501              1962     100     7        4
## 1450      Ochota     2810              1982     124    10        5
## 1451    Zoliborz     3631              1923     117     9        4
## 1452 Srodmiescie     4698              1938      65    10        3
## 1453     Ursynow     3730              1999      77     3        4
## 1454 Srodmiescie     6670              2005      23     1        2
## 1455     Ursynow     2503              1995     150     1        6
## 1456       Ursus     3973              2010      38     6        1
## 1457      Ochota     3756              1928     144     4        6
## 1458     Ursynow     2918              1958     113     1        5
## 1459     Mokotow     3564              1973     109     4        5
## 1460      Bemowo     3560              1940      34     4        2
## 1461     Mokotow     4160              1979      39     7        1
## 1462     Ursynow     3198              1967      70     4        2
## 1463       Ursus     4518              1924      28     1        2
## 1464       Praga     3731              1926      57     6        2
## 1465     Mokotow     3364              1993      89     9        3
## 1466      Ochota     5246              1932      35     2        2
## 1467       Praga     3019              1951      83     4        3
## 1468     Mokotow     4634              1923     102     1        3
## 1469       Praga     3151              1947     100     1        3
## 1470    Zoliborz     3443              1958     141     2        5
## 1471       Praga     4208              2000      54     1        3
## 1472     Mokotow     5270              2006      43     1        2
## 1473       Praga     2925              1982      58     8        2
## 1474     Bielany     3221              1926     138     1        6
## 1475       Praga     2344              1963      96     9        4
## 1476       Praga     3892              1992      36     1        1
## 1477     Bielany     3016              1970      48     8        2
## 1478    Zoliborz     4190              1930     121     3        4
## 1479     Mokotow     3819              1944     103     3        3
## 1480      Bemowo     1762              1974     144     9        6
## 1481 Srodmiescie     4742              1952      91     7        3
## 1482     Mokotow     3430              1981     147     1        6
## 1483      Bemowo     3026              1976      67     6        2
## 1484      Bemowo     3413              1963      49     4        2
## 1485     Ursynow     2875              1962     122     1        4
## 1486      Bemowo     2220              1988     113     8        5
## 1487        Wola     2232              1953     107     9        4
## 1488     Mokotow     4024              1996      73    10        3
## 1489 Srodmiescie     5515              1922      93     5        3
## 1490       Ursus     2910              1927      99     9        4
## 1491 Srodmiescie     5285              1945      92     1        4
## 1492       Praga     3264              1943      49     5        3
## 1493 Srodmiescie     4904              1937     115     2        5
## 1494    Zoliborz     4772              2002      53     5        2
## 1495      Bemowo     3040              1974      91     3        3
## 1496      Ochota     4525              1984      28     4        2
## 1497     Ursynow     3978              1995      72     2        2
## 1498       Praga     2186              1953     146     5        5
## 1499 Srodmiescie     5199              1992      35     9        1
## 1500        Wola     2166              1994     143     5        6
## 1501     Ursynow     2929              1976     102     3        3
## 1502        Wola     2964              1994      84     4        4
## 1503     Bielany     3694              1993      41     2        2
## 1504       Praga     1906              1967     129    10        4
## 1505     Mokotow     3456              1980     139     2        5
## 1506     Ursynow     3122              1963      63     5        3
## 1507     Bielany     3945              1954      30     1        1
## 1508     Bielany     2362              1972      89    10        3
## 1509     Mokotow     4580              1990      22     4        2
## 1510    Zoliborz     5217              1998      38     2        2
## 1511     Ursynow     3004              1961     105     2        3
## 1512      Bemowo     2230              1981     117     8        4
## 1513       Praga     2863              1976      69     7        3
## 1514       Praga     1736              1952     146     9        6
## 1515     Bielany     2342              1964      86    10        4
## 1516       Ursus     3368              1946      23     7        2
## 1517     Mokotow     4122              1965      88     1        4
## 1518     Ursynow     2088              1971     121     9        4
## 1519        Wola     2646              1954      60    10        3
## 1520     Ursynow     2592              1945      86     8        3
## 1521       Praga     3377              1969      42     5        2
## 1522      Ochota     4043              1922     101     7        3
## 1523     Mokotow     4607              1940      24     4        1
## 1524     Bielany     3352              1928     135     1        4
## 1525    Zoliborz     3027              1966     142     6        5
## 1526        Wola     3877              1982      32     1        2
## 1527      Bemowo     2623              1996     138     7        6
## 1528     Mokotow     4193              1972      76     2        3
## 1529    Zoliborz     2953              1989     115    10        4
## 1530       Praga     3067              1984      98     2        3
## 1531       Ursus     2867              1955     103     3        4
## 1532    Zoliborz     3306              1950     109     7        4
## 1533     Ursynow     2842              1980      61     8        3
## 1534     Bielany     3462              1955      74     1        2
## 1535      Bemowo     3663              2000      39     9        1
## 1536        Wola     2859              1957      69     7        3
## 1537       Ursus     3004              1945     110     1        4
## 1538      Ochota     2825              1970     147     7        6
## 1539        Wola     4075              1927      28     6        1
## 1540       Praga     2824              1962     128     1        4
## 1541      Ochota     3878              1944      47     8        3
## 1542     Ursynow     2993              1969      86     4        3
## 1543     Bielany     2394              1996     141     9        6
## 1544 Srodmiescie     5207              1968      99     1        4
## 1545      Ochota     3563              1940     104     5        4
## 1546       Ursus     3035              1995      86     9        4
## 1547     Bielany     3104              1944      65     5        3
## 1548     Mokotow     3938              1974      91     3        3
## 1549      Bemowo     2817              1932     108     9        4
## 1550     Ursynow     3500              2004     100     3        4
## 1551 Srodmiescie     4536              1988      76    10        4
## 1552     Bielany     3305              1924      64     9        3
## 1553        Wola     4011              1935      64     2        3
## 1554        Wola     3470              1932      78     6        3
## 1555       Ursus     3185              1923      76     9        3
## 1556     Ursynow     3351              1942      30     7        1
## 1557    Zoliborz     4694              1989      21     3        2
## 1558     Mokotow     3817              1965      78     5        4
## 1559      Bemowo     3051              1995     135     4        4
## 1560     Ursynow     2473              1980      88     9        3
## 1561       Praga     2897              2004     110     8        4
## 1562    Zoliborz     3566              1978     113     4        4
## 1563     Ursynow     3274              1967      53     5        2
## 1564     Bielany     3293              1964      71     3        2
## 1565       Praga     3615              1969      48     2        2
## 1566     Bielany     2615              1987      83     8        3
## 1567       Praga     3718              1927      63     5        3
## 1568       Praga     2993              1940      86     4        3
## 1569      Bemowo     2706              1943      79     7        4
## 1570      Ochota     4019              1978      58     6        2
## 1571     Ursynow     3221              1975      63     4        3
## 1572       Praga     2819              1942      78     6        4
## 1573     Bielany     2852              1939     120     1        5
## 1574      Ochota     4204              1994      25     8        1
## 1575      Ochota     4749              1932      30     8        1
## 1576        Wola     3364              1928      99     5        3
## 1577    Zoliborz     4304              1928      85     6        3
## 1578       Ursus     2288              1983      91    10        4
## 1579      Ochota     5005              1929      65     1        3
## 1580    Zoliborz     4055              1983      25     9        2
## 1581     Mokotow     3453              1982     115     5        4
## 1582    Zoliborz     3365              2003     148     8        5
## 1583        Wola     2539              1948      91     8        3
## 1584        Wola     3098              1936      65     5        3
## 1585     Bielany     2308              1959     139     4        6
## 1586    Zoliborz     3201              1978     100     9        4
## 1587    Zoliborz     3850              1966      55     8        2
## 1588      Bemowo     2837              1958     126     1        4
## 1589     Bielany     1839              1980     131    10        5
## 1590        Wola     2377              1959     102     8        4
## 1591      Ochota     3287              1995      86    10        3
## 1592      Ochota     3948              1976      95     2        4
## 1593     Bielany     2753              1994      65     9        2
## 1594 Srodmiescie     5068              1972     108     1        5
## 1595       Ursus     2193              1982     126     7        5
## 1596        Wola     3432              1979      27     6        2
## 1597        Wola     2178              1963     137     6        5
## 1598     Ursynow     2318              1978     128     6        4
## 1599       Ursus     3324              1966      43     6        1
## 1600     Bielany     2033              1942     112    10        5
## 1601       Ursus     3184              2000     132     3        4
## 1602     Mokotow     3948              1972      35     9        2
## 1603 Srodmiescie     6334              1934      52     1        3
## 1604 Srodmiescie     3854              1944     150     9        5
## 1605     Mokotow     4158              1939      84     1        4
## 1606    Zoliborz     5114              2007      34     4        1
## 1607 Srodmiescie     4610              1930     149     7        6
## 1608      Ochota     3331              1993      97     8        4
## 1609     Mokotow     4366              1983      23     6        2
## 1610     Bielany     2048              1991     135     7        6
## 1611     Mokotow     4596              1945      20     4        2
## 1612      Ochota     5161              1926      29     4        1
## 1613     Bielany     3156              1986      79     3        3
## 1614        Wola     2478              1957      82     9        4
## 1615      Ochota     5170              2007      38     3        1
## 1616        Wola     3106              1972      34     9        1
## 1617       Ursus     2235              1991     116     8        4
## 1618    Zoliborz     3791              1961     106     2        5
## 1619        Wola     3556              2010      94     3        4
## 1620 Srodmiescie     4340              1959      96    10        4
## 1621 Srodmiescie     4918              1948      93     5        3
## 1622       Ursus     2920              1967      48     9        2
## 1623       Ursus     3592              2008      51     8        2
## 1624       Ursus     3026              2007     147     2        6
## 1625     Mokotow     4030              2008     127     4        4
## 1626 Srodmiescie     5305              1941      79     2        4
## 1627      Ochota     4322              2004      48    10        2
## 1628 Srodmiescie     3961              1963     149     8        5
## 1629      Ochota     4533              2004      27    10        2
## 1630      Ochota     4935              1923      36     5        2
## 1631        Wola     3093              1980     101     1        4
## 1632     Bielany     2871              1956      53     9        2
## 1633       Praga     2969              1949      63     7        2
## 1634 Srodmiescie     5472              2007      98     5        3
## 1635     Ursynow     2222              1948      98    10        4
## 1636      Bemowo     4008              1970      24     1        1
## 1637     Ursynow     3196              1999      80     8        4
## 1638        Wola     3109              1938      79     3        4
## 1639       Ursus     2908              1988      59     8        2
## 1640      Ochota     3250              2004     145     9        6
## 1641     Mokotow     3927              2002     107     7        4
## 1642     Mokotow     3889              1984      96     3        3
## 1643     Mokotow     3305              1990     124     5        5
## 1644       Praga     2744              1964      76     7        4
## 1645        Wola     3562              1943      29     5        1
## 1646    Zoliborz     3753              1957      80     6        3
## 1647 Srodmiescie     5170              1997     118     5        5
## 1648     Bielany     2658              1975      74     9        2
## 1649      Bemowo     2010              1981     144     7        5
## 1650     Bielany     3150              1983      75     4        2
## 1651       Ursus     2700              1960      95     6        3
## 1652      Ochota     4276              1964      22     7        2
## 1653       Praga     2302              1949     130     6        4
## 1654       Praga     2333              1960     112     7        5
## 1655       Ursus     2599              1972     105     5        5
## 1656        Wola     3173              1927      88     8        3
## 1657     Mokotow     2913              1995     139     7        6
## 1658     Bielany     2969              1956     108     1        5
## 1659     Mokotow     4358              1975      49     3        3
## 1660       Ursus     2418              1990     113     6        5
## 1661        Wola     3492              1936      36     5        1
## 1662 Srodmiescie     4369              1962      98    10        3
## 1663     Bielany     3576              2004      92     3        4
## 1664    Zoliborz     3601              1968     135     1        5
## 1665     Ursynow     3746              1950      25     3        2
## 1666      Ochota     3675              1976     118     2        5
## 1667     Ursynow     4183              1922      37     4        1
## 1668      Bemowo     3413              2000     129     1        4
## 1669 Srodmiescie     6189              2006      66     1        3
## 1670     Bielany     4186              2004      31     4        2
## 1671       Ursus     2786              1939      56     9        3
## 1672     Bielany     3110              1986      84     3        3
## 1673     Bielany     2771              1972      48    10        3
## 1674        Wola     3349              1972      35     6        2
## 1675        Wola     1770              1947     148     9        5
## 1676      Bemowo     2929              1970      37    10        2
## 1677       Praga     3046              1995      90     3        3
## 1678       Ursus     2486              1960     111     6        4
## 1679     Ursynow     3064              1987      69     5        3
## 1680      Bemowo     3262              1985      34     7        2
## 1681 Srodmiescie     5135              1986      71     5        3
## 1682     Ursynow     3809              1932      94     1        3
## 1683    Zoliborz     4304              1932      80     6        4
## 1684    Zoliborz     3991              1965     101     1        4
## 1685       Praga     2522              1981      98     7        4
## 1686      Bemowo     2892              1971      86     5        3
## 1687       Praga     1783              1995     142     9        6
## 1688     Ursynow     4262              2000      54     1        2
## 1689      Ochota     4028              1957      77     3        4
## 1690        Wola     2843              1953      61     8        3
## 1691       Praga     3232              1936      47     6        2
## 1692        Wola     3289              1992      46     5        3
## 1693      Ochota     3065              1947     143     5        6
## 1694 Srodmiescie     4494              1961     101     8        4
## 1695 Srodmiescie     4271              1978     138     6        5
## 1696     Ursynow     3082              2009     147     2        5
## 1697     Bielany     3377              1953      77     1        3
## 1698       Ursus     2061              1988     119     9        5
## 1699     Bielany     2492              1950      81     9        4
## 1700 Srodmiescie     4881              1957     102     4        4
## 1701     Ursynow     2406              1935     139     9        6
## 1702        Wola     3939              1984      21     2        1
## 1703      Ochota     5091              1929      56     1        3
## 1704       Ursus     2304              1942     105     9        3
## 1705       Ursus     3433              1981      62     2        3
## 1706    Zoliborz     2675              1951     147     9        5
## 1707     Bielany     3830              1951      42     1        1
## 1708     Mokotow     4010              1943      79     3        4
## 1709     Mokotow     4001              1955     105     1        3
## 1710 Srodmiescie     5158              1955      49     7        3
## 1711 Srodmiescie     4430              1983     122     6        5
## 1712       Praga     2212              1979     134     6        5
## 1713       Praga     3498              2006      45     9        3
## 1714     Bielany     3447              1938      20     7        1
## 1715       Praga     3776              1996      97     1        3
## 1716       Praga     3330              1934      52    10        3
## 1717       Ursus     3000              1943     105     2        3
## 1718      Ochota     3525              1942     123     3        5
## 1719 Srodmiescie     6412              1925      24     4        1
## 1720 Srodmiescie     4619              1958      93     8        3
## 1721     Ursynow     3448              1934     125     1        4
## 1722     Bielany     2430              1958     142     3        5
## 1723       Praga     2960              1991      59     7        3
## 1724       Praga     2533              1934     132     9        5
## 1725     Ursynow     3392              1982      61     3        2
## 1726       Ursus     2030              1961     147     6        6
## 1727      Ochota     3556              1954     134     2        4
## 1728     Ursynow     3760              1921      34     8        2
## 1729     Bielany     2676              1963      62    10        2
## 1730     Bielany     2898              1962      70     7        2
## 1731     Mokotow     3420              1992      98     7        4
## 1732 Srodmiescie     4538              2005     146     8        6
## 1733     Bielany     2073              1965     133     8        4
## 1734     Ursynow     2425              1973     148     2        6
## 1735       Praga     3925              2001      82     1        3
## 1736     Mokotow     3675              1971      88     6        3
## 1737      Ochota     3824              1946      88     4        4
## 1738        Wola     3470              1994      28     6        1
## 1739     Mokotow     3138              1967     146     4        6
## 1740     Bielany     3329              1929     117     3        4
## 1741     Ursynow     3483              1987      62     2        2
## 1742      Bemowo     3152              1998     145     1        6
## 1743       Ursus     2704              1969      70     9        2
## 1744     Mokotow     3841              1971     101     3        3
## 1745       Praga     2479              1921     137     9        5
## 1746    Zoliborz     4529              1933      57     7        2
## 1747     Mokotow     3669              1989     118     2        5
## 1748    Zoliborz     3449              1977     105     6        4
## 1749       Ursus     3320              1954      68     3        2
## 1750      Ochota     4443              1982      21     6        1
## 1751 Srodmiescie     5520              1998      93     5        3
## 1752       Praga     3562              1952      59     1        3
## 1753     Bielany     3091              1928     131     4        4
## 1754 Srodmiescie     4993              1944      66     7        3
## 1755       Praga     2611              1992      74     9        3
## 1756 Srodmiescie     5065              2000     133     5        4
## 1757 Srodmiescie     4866              1979     108     3        5
## 1758     Ursynow     2818              1984      68     8        2
## 1759     Ursynow     2653              1958     115     4        4
## 1760       Ursus     2289              1958     131     6        4
## 1761     Mokotow     3565              1946      78     8        3
## 1762    Zoliborz     3924              1925     123     5        5
## 1763       Ursus     3408              1946      49     4        2
## 1764        Wola     3223              1977      83     2        3
## 1765 Srodmiescie     5151              1998     145     2        6
## 1766        Wola     2906              1950      44    10        1
## 1767     Ursynow     3394              1941      26     7        1
## 1768 Srodmiescie     4880              1928     117     8        5
## 1769        Wola     3879              1965      27     2        1
## 1770     Ursynow     3175              1964      98     1        3
## 1771    Zoliborz     3990              1996     131     4        4
## 1772    Zoliborz     3490              1944     141     1        6
## 1773 Srodmiescie     5417              1948      43     6        1
## 1774 Srodmiescie     5422              2007     128     2        4
## 1775      Ochota     3627              1954      57    10        2
## 1776      Bemowo     3112              1998     139     2        6
## 1777       Ursus     3324              2006      83     7        3
## 1778      Bemowo     3198              1928     105     5        5
## 1779        Wola     3262              1996     119     3        5
## 1780     Mokotow     3403              1993     105     7        3
## 1781 Srodmiescie     5712              1921      34    10        1
## 1782      Ochota     4483              1922      62     7        2
## 1783    Zoliborz     3857              1993      84     4        4
## 1784       Ursus     2547              1969      80     9        3
## 1785      Ochota     4223              1992      33     7        1
## 1786      Bemowo     3046              1933     135     3        6
## 1787       Ursus     3538              1944      46     3        2
## 1788     Bielany     3619              1926      93     3        3
## 1789     Mokotow     4055              1970      59     5        3
## 1790    Zoliborz     3062              1935     114     9        4
## 1791     Ursynow     3235              1987      41     7        1
## 1792      Bemowo     2172              1986     118     8        5
## 1793      Bemowo     2855              1929     134     6        4
## 1794        Wola     3399              1935     125     1        5
## 1795 Srodmiescie     5659              1930      89     4        3
## 1796      Ochota     4163              1963      69     3        3
## 1797     Bielany     2533              1964     137     2        6
## 1798      Bemowo     2205              1970     125     7        5
## 1799       Praga     3054              1940      60     6        3
## 1800     Mokotow     4058              1953      94     1        4
## 1801       Ursus     2727              1995     122     8        5
## 1802 Srodmiescie     3825              1980     143    10        5
## 1803      Bemowo     3023              1923      78    10        4
## 1804       Ursus     2427              1951     107     7        4
## 1805     Mokotow     3340              1943      81    10        3
## 1806 Srodmiescie     5814              1923      34     9        1
## 1807      Ochota     3928              1948      42     9        1
## 1808     Bielany     2626              1984     107     5        4
## 1809      Bemowo     3339              1962      71     2        3
## 1810     Mokotow     4672              1930      98     1        3
## 1811       Ursus     2551              1943     140     2        5
## 1812        Wola     2104              1990     135     7        5
## 1813     Ursynow     3468              1988      73     1        2
## 1814       Ursus     2374              1970      83    10        4
## 1815 Srodmiescie     4884              2008     142     5        6
## 1816     Bielany     3331              1932      82     7        3
## 1817       Praga     2977              1993     112     1        4
## 1818 Srodmiescie     5025              1984      73     6        3
## 1819       Praga     2935              1998     146     3        6
## 1820    Zoliborz     4978              1998      37     5        1
## 1821      Ochota     5342              1998      41     1        1
## 1822      Bemowo     2792              1992      81     6        4
## 1823        Wola     3621              2005     103     2        3
## 1824 Srodmiescie     5721              1992      33     4        1
## 1825      Ochota     2990              1939     131     8        4
## 1826     Bielany     2776              1994      77     7        3
## 1827     Mokotow     3630              1935     122     8        5
## 1828       Ursus     3403              1958      65     2        3
## 1829       Praga     2443              1947     106     7        4
## 1830     Ursynow     3002              1944      80     4        4
## 1831     Ursynow     3788              1952      26     3        1
## 1832      Bemowo     3529              1977      32     5        1
## 1833     Mokotow     3527              1965     112     4        5
## 1834       Praga     3694              2001      46     7        3
## 1835    Zoliborz     3271              1964     113     7        4
## 1836      Bemowo     2654              1975     115     4        4
## 1837     Mokotow     4370              1989      23     6        2
## 1838       Ursus     2878              2001     117     7        5
## 1839      Bemowo     3232              1931     142     1        5
## 1840       Ursus     3180              1974      82     2        4
## 1841      Bemowo     2145              1981     115     9        4
## 1842        Wola     3464              2003     114     2        4
## 1843        Wola     2545              1944     105     6        4
## 1844     Ursynow     4520              2007      28     1        2
## 1845        Wola     2624              1943     143     1        5
## 1846     Bielany     2502              1956     120     5        4
## 1847      Ochota     3535              1984     102     6        3
## 1848     Bielany     3093              1927     126     4        5
## 1849       Ursus     2894              1991      76     6        3
## 1850     Bielany     3160              1990      29     9        1
## 1851 Srodmiescie     4595              1941     101     7        4
## 1852      Bemowo     3087              1973      56     6        3
## 1853        Wola     2106              1946     124     8        5
## 1854      Ochota     4157              1965      89     1        3
## 1855 Srodmiescie     5051              2008     100     9        3
## 1856        Wola     2907              1935      89    10        4
## 1857     Ursynow     2961              1937      39    10        1
## 1858    Zoliborz     3149              1967     130     6        5
## 1859      Bemowo     3803              2002      40     7        2
## 1860 Srodmiescie     5120              1985      73     5        3
## 1861 Srodmiescie     6100              1996      25     7        1
## 1862     Mokotow     3949              1936      60     6        3
## 1863      Bemowo     3365              1937      79     1        3
## 1864      Ochota     3585              1961     137     1        5
## 1865      Ochota     3589              1973      96     6        3
## 1866     Mokotow     3303              1991      80    10        4
## 1867       Ursus     2724              1985      63     9        3
## 1868 Srodmiescie     4649              1940      95     7        4
## 1869     Mokotow     3664              1929     124     8        4
## 1870      Bemowo     3250              1939      70     3        3
## 1871       Praga     2820              1963     103     4        3
## 1872       Praga     3161              1938      79     3        3
## 1873     Ursynow     3213              1922     144     1        5
## 1874       Ursus     3782              1926      67     4        3
## 1875        Wola     3732              1928      77     3        4
## 1876 Srodmiescie     5580              1997      47     9        3
## 1877     Mokotow     4464              1926      89     4        3
## 1878    Zoliborz     4710              1980      24     3        1
## 1879      Bemowo     2640              1981      81     8        3
## 1880       Praga     3992              1992      26     1        1
## 1881      Ochota     4426              1946      52     2        3
## 1882       Praga     3966              1926      58     3        3
## 1883     Bielany     3010              1927     109     7        4
## 1884      Bemowo     3849              1977      25     2        2
## 1885        Wola     2892              1953      51     9        2
## 1886        Wola     2371              1976      98     9        3
## 1887       Ursus     3293              1944      76     2        3
## 1888      Bemowo     3092              1921      96     8        3
## 1889     Ursynow     3798              1969      25     3        1
## 1890     Ursynow     2861              1985     124     1        4
## 1891        Wola     2796              1987      65     8        3
## 1892      Ochota     4473              2008      48     8        3
## 1893        Wola     3185              1960      27     9        1
## 1894        Wola     3048              1989      95     2        4
## 1895       Praga     2704              1944      75     8        3
## 1896    Zoliborz     4649              1994      45     1        2
## 1897 Srodmiescie     4766              1945     118     3        5
## 1898    Zoliborz     4601              1970      50     1        2
## 1899       Ursus     2754              1992     105     4        4
## 1900    Zoliborz     2640              1962     141    10        5
## 1901 Srodmiescie     4538              1944     136     3        6
## 1902 Srodmiescie     5611              1972      34     5        1
## 1903     Bielany     3449              1989      30     6        1
## 1904 Srodmiescie     4877              1980      82     6        4
## 1905 Srodmiescie     4016              1936     133     9        5
## 1906 Srodmiescie     5103              1925      95     9        3
## 1907 Srodmiescie     5876              1985      32     2        2
## 1908     Mokotow     4594              2006     101     1        4
## 1909     Ursynow     2778              2008     102    10        4
## 1910 Srodmiescie     5537              2000     101     4        3
## 1911 Srodmiescie     5619              1925      58     8        2
## 1912       Ursus     2373              1985     143     3        6
## 1913     Bielany     2655              1978      94     6        4
## 1914     Bielany     3527              1999     102     3        3
## 1915 Srodmiescie     5053              1955      55     8        2
## 1916     Mokotow     4694              2001      96     1        3
## 1917       Praga     2469              1979     113     6        4
## 1918        Wola     2162              1970     129     7        5
## 1919       Praga     2708              1982     114     3        5
## 1920 Srodmiescie     5238              1951      36     8        2
## 1921       Ursus     3058              1941      79     4        3
## 1922       Praga     3405              1980      44     5        1
## 1923      Bemowo     2602              1948     100     6        4
## 1924       Ursus     3067              1947      43     8        2
## 1925      Bemowo     3916              1924      33     7        1
## 1926 Srodmiescie     4277              1982     102    10        4
## 1927     Bielany     2554              1959      90     8        3
## 1928      Bemowo     3347              1928      65     9        2
## 1929        Wola     4476              2002      37     1        1
## 1930     Mokotow     3346              1931     145     8        6
## 1931     Bielany     2052              1956     115    10        4
## 1932    Zoliborz     3992              1970      76     4        3
## 1933     Bielany     3154              2009     115     5        4
## 1934      Ochota     3219              1945     103     9        3
## 1935     Ursynow     2931              1949      37    10        2
## 1936    Zoliborz     4267              1924      53    10        2
## 1937      Bemowo     3806              1933      69     4        2
## 1938      Bemowo     4526              2010      22     2        1
## 1939 Srodmiescie     5347              2006      95     6        4
## 1940     Mokotow     4143              1922      76     8        4
## 1941       Ursus     1638              1959     146    10        6
## 1942     Bielany     4603              1921      25     1        1
## 1943     Bielany     3812              2008      94     1        3
## 1944      Bemowo     3452              1939      65     2        2
## 1945 Srodmiescie     4692              1975     146     1        5
## 1946     Bielany     2889              2007      91    10        4
## 1947     Ursynow     3354              1946      80     1        3
## 1948     Mokotow     4797              1925      60     4        2
## 1949      Ochota     3700              1977      80     6        4
## 1950       Ursus     3127              1977      27     9        2
## 1951     Bielany     3074              1954      93     2        4
## 1952      Bemowo     2714              1933     134     7        5
## 1953      Ochota     5040              1928      51     2        3
## 1954     Bielany     2067              1939     128     8        5
## 1955    Zoliborz     3947              1971      55     7        2
## 1956    Zoliborz     4509              1934      69     6        2
## 1957        Wola     3545              1980      55     2        2
## 1958     Mokotow     3397              1967     125     4        5
## 1959    Zoliborz     4447              2005      35    10        2
## 1960      Bemowo     3157              1980      64     5        2
## 1961     Bielany     3347              1995      30     7        1
## 1962     Bielany     3984              1925      27     7        1
## 1963       Praga     3523              1997      58     8        2
## 1964 Srodmiescie     5304              1954      80     2        4
## 1965     Ursynow     1718              1950     143    10        5
## 1966       Praga     3790              1957      41     1        2
## 1967    Zoliborz     4806              2007      54     4        3
## 1968     Mokotow     2892              1944     131     9        4
## 1969    Zoliborz     3984              1978      57     6        3
## 1970       Praga     2025              1980     133     8        5
## 1971     Bielany     3154              1982      30     9        1
## 1972    Zoliborz     3923              1983     108     1        4
## 1973       Praga     2655              1966     109     4        5
## 1974 Srodmiescie     5019              2007     113     7        5
## 1975        Wola     3732              2007      22    10        1
## 1976       Ursus     4364              1932      34     2        2
## 1977     Ursynow     3742              1999      91     2        3
## 1978        Wola     2978              1963      47     8        3
## 1979    Zoliborz     4546              2005      55     7        2
## 1980       Praga     3731              1995      72     4        3
## 1981       Praga     2790              1939     116     2        5
## 1982     Bielany     3664              1922      89     3        3
## 1983       Praga     3366              2006     113     3        4
## 1984       Ursus     3550              1930     100     3        3
## 1985     Mokotow     3085              1961     111     9        4
## 1986      Bemowo     2644              1939     141     1        5
## 1987     Ursynow     2623              1981     113     4        5
## 1988    Zoliborz     4198              1963      75     2        3
## 1989        Wola     3669              1996      68     5        3
## 1990    Zoliborz     4552              1979      40     3        1
## 1991     Bielany     3213              1989      89     1        4
## 1992    Zoliborz     3181              1990     137     5        5
## 1993     Ursynow     2915              1978      44    10        1
## 1994        Wola     3324              1980      63     3        3
## 1995     Mokotow     3979              1953      27    10        1
## 1996 Srodmiescie     5129              1927     112     6        5
## 1997       Ursus     2763              1958      49    10        3
## 1998       Praga     2470              1969      88     9        3
## 1999      Ochota     4731              1923      67     4        2
## 2000        Wola     3548              1992      40     4        1
## 2001      Ochota     2879              1975     122    10        4
## 2002        Wola     3622              1981      43     3        1
## 2003      Ochota     4844              1928      21     8        1
## 2004       Praga     2368              1996     138    10        5
## 2005       Praga     2495              1990     101     7        4
## 2006     Ursynow     2968              1940      63     7        2
## 2007     Mokotow     3875              1968      72     6        2
## 2008 Srodmiescie     4374              1944     138     5        5
## 2009     Ursynow     2274              1939     148     4        5
## 2010 Srodmiescie     4517              1959     118     6        4
## 2011     Ursynow     1833              1967     142     9        5
## 2012     Ursynow     2701              1966      55    10        3
## 2013    Zoliborz     3336              1972     136     3        6
## 2014    Zoliborz     4641              1996      41     8        1
## 2015      Ochota     3845              1955      81     5        3
## 2016       Praga     2944              1949      51     8        3
## 2017       Ursus     3632              1941      47     2        2
## 2018        Wola     1854              1981     150     8        5
## 2019      Bemowo     3620              1986      53     1        3
## 2020    Zoliborz     4847              1925      45     5        2
## 2021       Ursus     3147              1966      25     9        2
## 2022     Mokotow     3913              1981      39     9        2
## 2023     Ursynow     2871              1947      68     7        3
## 2024     Bielany     3551              1926      45     9        2
## 2025      Ochota     3013              1960     114     9        5
## 2026     Bielany     1741              1937     141    10        5
## 2027       Praga     2521              1949      83     9        3
## 2028     Ursynow     4128              1998      62     1        3
## 2029 Srodmiescie     6185              1935      21     6        2
## 2030       Praga     3858              2009      89     1        3
## 2031     Bielany     4513              1929      24     2        1
## 2032 Srodmiescie     5397              1985      35     7        1
## 2033      Bemowo     2306              1982     144     4        5
## 2034    Zoliborz     3343              1967     126     5        4
## 2035     Ursynow     2729              1936      77     7        4
## 2036     Bielany     3123              1942      28     9        2
## 2037       Ursus     2991              1981      81     4        4
## 2038     Mokotow     3361              1954     104     7        4
## 2039     Bielany     2393              1943      86    10        3
## 2040        Wola     3559              1970      49     2        3
## 2041      Bemowo     3945              2010      81     1        3
## 2042     Ursynow     3373              1980      48     4        3
## 2043      Ochota     2859              1990     119    10        5
## 2044       Praga     2986              1977      76     5        3
## 2045       Ursus     2812              1966      64     8        3
## 2046      Ochota     4159              1988      69     3        3
## 2047      Ochota     4446              1930      80     5        3
## 2048        Wola     2515              1953      74    10        3
## 2049        Wola     3181              1995      62     5        2
## 2050     Mokotow     3268              1946     143     3        6
## 2051     Bielany     3079              1997     127     4        5
## 2052        Wola     3161              1958      54     6        2
## 2053     Mokotow     4252              2008     110     3        5
## 2054       Ursus     2752              2001     145     5        6
## 2055      Bemowo     2436              1949     116     6        4
## 2056 Srodmiescie     6127              1924      72     1        3
## 2057     Mokotow     2948              1960     120     9        5
## 2058     Mokotow     5056              1930      49     2        3
## 2059        Wola     2261              1964      94    10        4
## 2060     Bielany     2248              1984     120     7        5
## 2061     Bielany     2455              1986     135     4        4
## 2062 Srodmiescie     5329              1995      77     2        4
## 2063      Bemowo     3581              1940      62     1        2
## 2064        Wola     2484              1948      97     8        3
## 2065      Bemowo     2834              1967     117     2        4
## 2066     Mokotow     4022              1935     148     1        6
## 2067 Srodmiescie     5206              1946      89     2        4
## 2068      Ochota     2889              1968     141     7        6
## 2069 Srodmiescie     4502              2003     145     9        5
## 2070 Srodmiescie     6361              2002      29     4        1
## 2071        Wola     3456              1935     119     1        5
## 2072    Zoliborz     3981              1959      87     3        3
## 2073        Wola     2054              1976     135     8        4
## 2074    Zoliborz     3676              1962      72     8        2
## 2075     Ursynow     2769              1977      53    10        2
## 2076      Bemowo     3917              1967      33     1        1
## 2077     Ursynow     3066              1957      98     2        3
## 2078      Ochota     4119              1979      58     5        2
## 2079 Srodmiescie     5269              1949      23     9        2
## 2080      Ochota     4225              2007      88     6        4
## 2081 Srodmiescie     6196              2010      35     5        1
## 2082     Ursynow     2246              1938     145     4        6
## 2083      Ochota     4693              1924      91     1        4
## 2084     Mokotow     3476              1974      82     8        4
## 2085       Ursus     3148              1974      55     6        2
## 2086     Mokotow     4647              2009      90     2        3
## 2087     Bielany     2581              1990     142     1        6
## 2088      Ochota     2814              1966     139     8        6
## 2089       Ursus     3421              2008      98     4        4
## 2090       Praga     3270              1936      38     7        1
## 2091        Wola     2875              1984      77     6        3
## 2092     Ursynow     3308              1927     119     3        4
## 2093 Srodmiescie     4969              2010     113     8        4
## 2094     Mokotow     3699              1975     120     2        4
## 2095     Mokotow     4045              1977      76     3        4
## 2096      Ochota     3567              1995      73     9        2
## 2097       Ursus     1991              1994     121    10        4
## 2098       Praga     4077              1923      52     3        2
## 2099       Praga     2048              1950     135     7        6
## 2100 Srodmiescie     4406              1954     144     4        5
## 2101     Ursynow     3651              1955      40     3        1
## 2102      Bemowo     2854              1967     120     1        5
## 2103 Srodmiescie     5521              1988      53     3        3
## 2104      Ochota     3986              1937      56     6        3
## 2105      Ochota     4446              2005      35    10        2
## 2106       Praga     3644              1991      21     5        1
## 2107 Srodmiescie     4541              1969     136     3        6
## 2108       Ursus     2134              1967     147     5        6
## 2109     Ursynow     2460              1990      84     9        4
## 2110    Zoliborz     3666              1943     128     1        5
## 2111     Ursynow     3594              1949      31     4        2
## 2112      Bemowo     3263              1962      39     7        1
## 2113     Ursynow     2591              1983      86     8        3
## 2114      Bemowo     3556              2002      79     5        3
## 2115     Ursynow     2967              1965      73     6        2
## 2116       Ursus     2546              1951     110     5        5
## 2117      Ochota     3331              1986      97     8        4
## 2118    Zoliborz     3785              1987     121     1        4
## 2119        Wola     2992              1945      81     4        4
## 2120      Bemowo     2540              1983     106     6        4
## 2121    Zoliborz     3102              1939     105    10        3
## 2122    Zoliborz     4336              1972      41     5        1
## 2123    Zoliborz     4422              1929      58     8        2
## 2124       Praga     1813              1994     134    10        5
## 2125 Srodmiescie     4825              1926     137     6        6
## 2126      Bemowo     4232              1928      37     3        2
## 2127 Srodmiescie     4108              1956     114    10        5
## 2128        Wola     2090              1956     116     9        5
## 2129        Wola     2993              1957      81     4        4
## 2130      Bemowo     3192              1955      96     1        3
## 2131 Srodmiescie     5336              2006     101     6        3
## 2132     Mokotow     4016              1986      28     9        2
## 2133       Ursus     2801              1932     150     4        6
## 2134 Srodmiescie     5321              1973      53     5        3
## 2135    Zoliborz     3645              1960      50    10        3
## 2136       Praga     2184              1958     122     8        4
## 2137        Wola     2756              1946      84     6        4
## 2138      Ochota     4479              1959      47     2        3
## 2139     Mokotow     4687              2004      91     1        4
## 2140       Praga     2513              1927     149     7        6
## 2141      Bemowo     3219              1967      28     8        2
## 2142      Bemowo     1771              1984     148     9        5
## 2143     Mokotow     5069              2002      58     1        3
## 2144      Ochota     5103              1928      30     4        2
## 2145 Srodmiescie     5136              1976      86     3        4
## 2146    Zoliborz     3726              1924     147     4        6
## 2147 Srodmiescie     4284              1984     127     7        5
## 2148      Ochota     4522              1927      78     4        4
## 2149      Ochota     3073              1958     103    10        4
## 2150     Mokotow     4062              1968      29     9        1
## 2151 Srodmiescie     5888              1972      41     1        2
## 2152      Ochota     4772              1974      38     1        1
## 2153     Ursynow     3305              1962      74     2        3
## 2154 Srodmiescie     4405              1935     150     3        6
## 2155        Wola     3720              1956      33     3        1
## 2156    Zoliborz     3590              1993      66     9        3
## 2157        Wola     2090              1991     121     9        4
## 2158     Ursynow     3450              1946      70     1        3
## 2159       Ursus     2078              1951     117     9        5
## 2160     Mokotow     3446              1961     145     1        6
## 2161       Ursus     3467              1961      53     3        2
## 2162      Bemowo     2916              1925     128     6        4
## 2163       Ursus     3087              1977      86     3        3
## 2164        Wola     2384              1951     112     7        4
## 2165     Mokotow     3468              1966     123     4        4
## 2166     Bielany     3445              2001     121     1        5
## 2167     Bielany     4285              2009      26     4        1
## 2168     Ursynow     3050              1943      65     6        2
## 2169     Bielany     3317              1929      88     6        4
## 2170       Ursus     2884              1940      77     6        3
## 2171 Srodmiescie     4534              1960     137     3        6
## 2172      Ochota     4230              1992      57     4        2
## 2173       Praga     3773              1971      43     1        2
## 2174       Praga     3005              1967      84     4        3
## 2175     Bielany     3212              1994      64     4        3
## 2176      Ochota     3894              2003      96     9        3
## 2177     Bielany     3397              1995      35     6        1
## 2178     Mokotow     3247              1976      90    10        3
## 2179       Praga     3580              2001     102     2        4
## 2180        Wola     3454              1940      45     4        2
## 2181    Zoliborz     4447              1957      30     5        1
## 2182    Zoliborz     3710              1945      79     6        4
## 2183     Ursynow     3078              1955      87     3        3
## 2184       Praga     3309              2009     119     3        4
## 2185    Zoliborz     4894              1999      51     4        2
## 2186       Praga     2697              1926     110    10        4
## 2187     Mokotow     3956              1926     114     6        4
## 2188 Srodmiescie     6061              1924      64     3        2
## 2189 Srodmiescie     4786              1963     131     2        4
## 2190      Ochota     3906              1935      69     6        2
## 2191       Praga     2154              1956     130     7        5
## 2192    Zoliborz     2721              1943     138     9        6
## 2193       Praga     3234              2003     107     5        4
## 2194      Bemowo     2473              1969     123     5        4
## 2195       Praga     3358              2003      99     5        3
## 2196      Bemowo     3095              1982      86     3        3
## 2197 Srodmiescie     6478              1999      22     3        2
## 2198     Bielany     2847              1977      70     7        3
## 2199     Bielany     3682              1922      42     8        2
## 2200      Ochota     2906              1946     129     9        4
## 2201       Praga     3376              1995      87     6        3
## 2202       Praga     2488              1975     106     6        5
## 2203     Ursynow     3274              2005     128     2        5
## 2204      Ochota     4290              1947      46     4        3
## 2205      Ochota     3162              1975      99    10        3
## 2206       Praga     2057              1943     124     9        4
## 2207     Ursynow     2647              1982      70     9        3
## 2208        Wola     3093              1999     111     6        4
## 2209 Srodmiescie     5291              1947      96     1        3
## 2210      Ochota     4734              1995      77     2        4
## 2211     Mokotow     4244              1935      26     7        2
## 2212 Srodmiescie     6139              2009      66     2        2
## 2213    Zoliborz     4335              2004      57     9        2
## 2214       Praga     2459              1985      79    10        3
## 2215       Praga     2841              1966     101     4        3
## 2216       Praga     2701              1938     125     2        5
## 2217     Ursynow     3429              2005      52     9        3
## 2218    Zoliborz     4528              1976      57     1        2
## 2219      Bemowo     3848              2002      55     5        2
## 2220    Zoliborz     3894              2004     141     3        6
## 2221       Praga     2230              1938     122     7        5
## 2222       Praga     3818              1996      53     5        3
## 2223 Srodmiescie     4029              1959     132     9        5
## 2224     Mokotow     4143              1949      91     1        3
## 2225      Bemowo     3147              1994      60     5        3
## 2226      Ochota     4002              1966      70     5        2
## 2227       Praga     2772              2010     123     8        4
## 2228        Wola     3473              1944      28     6        1
## 2229     Bielany     3505              1935      70     1        2
## 2230     Bielany     3050              1928     125     5        4
## 2231    Zoliborz     4775              1920      68     3        3
## 2232     Bielany     4435              2002      37     1        2
## 2233 Srodmiescie     4465              1941     138     4        5
## 2234     Mokotow     3744              1949      91     5        3
## 2235       Praga     3061              1965      64     6        2
## 2236       Ursus     2994              1976      71     6        2
## 2237     Bielany     3586              1965      61     1        2
## 2238       Praga     3206              1995     134     2        5
## 2239      Ochota     2960              1978     134     8        4
## 2240     Bielany     3503              2003      60     8        2
## 2241        Wola     3776              1996      32     8        2
## 2242     Bielany     3062              1923     104     7        4
## 2243       Ursus     3684              1949      37     3        1
## 2244        Wola     2666              1999     148     6        5
## 2245      Bemowo     3511              2006      44    10        1
## 2246       Ursus     1998              1991     140     7        6
## 2247      Ochota     3392              1950      96     8        3
## 2248      Bemowo     2960              1926      94     9        4
## 2249        Wola     3456              2001     119     1        5
## 2250 Srodmiescie     5317              2008      73     9        3
## 2251      Ochota     4134              1934     132     2        5
## 2252        Wola     3525              1971      23     6        1
## 2253       Ursus     3103              1934     150     1        6
## 2254     Mokotow     3523              1999     118    10        4
## 2255     Mokotow     3237              1955     111     7        5
## 2256       Ursus     3089              2004     111     6        4
## 2257      Ochota     3751              2005     140     5        5
## 2258     Mokotow     2816              1937     148     7        6
## 2259     Bielany     3195              1978      50     6        2
## 2260       Praga     1934              1945     132     9        5
## 2261       Ursus     3465              1932      58     8        3
## 2262      Ochota     4587              1968      31     3        2
## 2263       Praga     4501              2008      30     1        2
## 2264        Wola     2760              1993      99     5        3
## 2265     Ursynow     2811              2010     139     5        6
## 2266    Zoliborz     4108              1995      49     6        2
## 2267     Mokotow     4577              1934      42     8        2
## 2268 Srodmiescie     5178              1943     102     1        4
## 2269     Mokotow     3319              1974      88     9        4
## 2270     Ursynow     2391              1990     141     3        6
## 2271 Srodmiescie     5960              2009      34     7        2
## 2272 Srodmiescie     5035              1986      81     5        3
## 2273     Bielany     3803              1953      40     1        2
## 2274      Ochota     3815              1927     129     6        4
## 2275     Ursynow     2563              1994     144     1        6
## 2276       Ursus     3543              1981      46     3        2
## 2277     Bielany     2994              1940      31    10        2
## 2278        Wola     2479              1987      82     9        4
## 2279 Srodmiescie     5118              1922      88     9        4
## 2280        Wola     4276              1928      37     3        1
## 2281     Mokotow     3256              1953      89    10        3
## 2282     Mokotow     4678              1959      42     1        2
## 2283       Praga     3426              1953      42     5        1
## 2284     Bielany     3046              1968     100     2        3
## 2285       Ursus     3753              1932      65     5        2
## 2286     Bielany     3323              1928     108     4        4
## 2287        Wola     3552              1930      35    10        2
## 2288       Praga     2385              1962      87    10        3
## 2289       Ursus     3516              1976      33     5        1
## 2290      Ochota     5225              1925      32     3        1
## 2291     Bielany     4217              1996      28     4        2
## 2292       Praga     4056              1929      74     1        2
## 2293      Ochota     4811              1999      84     1        3
## 2294 Srodmiescie     5903              2010      85     2        3
## 2295 Srodmiescie     5001              1955      70     7        2
## 2296      Bemowo     2529              1991      72    10        3
## 2297      Ochota     2883              1984     122    10        4
## 2298      Bemowo     2933              1987      82     5        3
## 2299    Zoliborz     3304              1926     140     9        6
## 2300       Ursus     2893              1941      66     7        3
## 2301       Praga     3886              1993      31     1        2
## 2302       Ursus     2058              1986     114    10        4
## 2303    Zoliborz     3778              1968     107     2        5
## 2304      Ochota     3902              2005     135     4        5
## 2305     Ursynow     2811              1956      64     8        3
## 2306     Ursynow     2170              1961     108     9        5
## 2307 Srodmiescie     5196              1996     145     2        5
## 2308    Zoliborz     4123              2002      93     7        3
## 2309     Ursynow     2692              1997     111    10        4
## 2310        Wola     2580              1969     122     4        4
## 2311       Praga     3861              1920      59     4        3
## 2312 Srodmiescie     4996              1945      75     6        3
## 2313     Ursynow     2323              1931     138    10        6
## 2314     Bielany     2617              1993     108     5        4
## 2315      Ochota     3155              1984     110     8        5
## 2316        Wola     2375              1936      88    10        3
## 2317 Srodmiescie     4618              1959     143     2        5
## 2318        Wola     1904              1992     145     8        5
## 2319       Ursus     3252              1990      90     1        3
## 2320 Srodmiescie     4376              1972     132     6        4
## 2321 Srodmiescie     4848              1972     130     1        5
## 2322      Ochota     3485              1942      81     8        4
## 2323 Srodmiescie     4984              2008     142     4        6
## 2324    Zoliborz     4110              1964      44     7        1
## 2325     Bielany     3365              1954      63     3        2
## 2326     Mokotow     3830              1953      57     8        2
## 2327     Ursynow     3140              1956      61     5        3
## 2328      Ochota     4303              1999      65     8        3
## 2329     Mokotow     4607              1964      29     3        2
## 2330    Zoliborz     4427              1950      32     5        1
## 2331     Ursynow     3706              2002      39     8        2
## 2332     Bielany     2971              1954      48     8        3
## 2333     Ursynow     2912              1978      54     8        3
## 2334       Praga     2812              2004     119     8        4
## 2335        Wola     2383              1949     102     8        4
## 2336     Ursynow     3016              2006     123     5        5
## 2337 Srodmiescie     5637              2004      66     7        2
## 2338     Ursynow     1934              1984     137     8        6
## 2339 Srodmiescie     4079              1947     117    10        5
## 2340        Wola     2031              1949     132     8        5
## 2341     Bielany     3407              1958      29     6        2
## 2342     Ursynow     1947              1977     125    10        4
## 2343        Wola     2493              1960      76    10        3
## 2344       Praga     3329              1981      22     8        1
## 2345      Ochota     3051              1977     130     7        5
## 2346       Ursus     2518              1939      78     9        4
## 2347      Ochota     3844              1996     126     6        4
## 2348    Zoliborz     3975              1992     102     1        4
## 2349       Ursus     1866              1960     128    10        5
## 2350    Zoliborz     2815              1971     123    10        5
## 2351     Mokotow     3386              1943      86     9        3
## 2352      Bemowo     3208              1928      79     8        4
## 2353       Praga     2713              1976     134     1        5
## 2354       Praga     2916              1938     108     2        4
## 2355      Ochota     3210              1960     109     8        4
## 2356       Praga     2090              1954     116     9        5
## 2357        Wola     3877              2008      72     3        2
## 2358       Ursus     2333              1977      87    10        4
## 2359      Ochota     4040              1964      61     5        3
## 2360       Ursus     2553              1995     145     1        6
## 2361    Zoliborz     3527              1970     122     3        5
## 2362      Ochota     4096              2001     100     6        4
## 2363       Ursus     2341              1985     141     4        5
## 2364      Bemowo     2931              1985      52     8        3
## 2365      Ochota     3863              1951      79     5        3
## 2366     Bielany     3550              1921      35    10        2
## 2367     Bielany     2698              1941      90     6        4
## 2368       Praga     2352              1968      85    10        4
## 2369     Mokotow     3747              1983      50     9        3
## 2370     Mokotow     3628              1928     122     8        5
## 2371    Zoliborz     5316              2001      28     2        2
## 2372       Praga     3034              1943      92     3        3
## 2373      Bemowo     3096              1989      65     5        3
## 2374       Ursus     3158              1987      39     8        1
## 2375        Wola     2044              1939     146     6        6
## 2376     Ursynow     3154              1939      95     1        4
## 2377       Praga     3491              1950      31     5        2
## 2378     Mokotow     4955              2002      50     3        3
## 2379     Ursynow     3152              1988      40     8        1
## 2380     Bielany     2597              1990      65    10        3
## 2381      Ochota     4662              1980      39     2        1
## 2382       Praga     2966              1980      33    10        2
## 2383        Wola     1704              1938     150     9        6
## 2384     Mokotow     4023              1968      63     5        3
## 2385     Ursynow     3605              1959      50     2        2
## 2386      Ochota     3754              1936      50     9        3
## 2387       Praga     2403              1990     105     8        3
## 2388 Srodmiescie     4208              1940     144     6        5
## 2389      Bemowo     2108              1949     134     7        5
## 2390     Mokotow     4172              1944      83     1        4
## 2391      Ochota     4142              1942      81     2        3
## 2392       Praga     3319              1936      63     3        3
## 2393    Zoliborz     3570              1964      73     9        2
## 2394     Bielany     3136              1953      26     9        2
## 2395       Praga     3284              1980      47     5        3
## 2396     Mokotow     4165              1991      39     7        1
## 2397    Zoliborz     4965              1920      59     2        3
## 2398    Zoliborz     3673              1940     103     4        4
## 2399    Zoliborz     5189              1934      21     4        2
## 2400     Ursynow     2379              1996     137    10        5
## 2401       Praga     3121              1940      23    10        1
## 2402      Ochota     3406              1991     114     5        5
## 2403       Ursus     3348              1960      20     8        1
## 2404     Mokotow     3796              1926     145     4        5
## 2405 Srodmiescie     4206              1964     114     9        5
## 2406        Wola     2268              1940     143     4        6
## 2407      Bemowo     3477              1931      97     4        3
## 2408     Mokotow     4380              1996      67     7        3
## 2409      Ochota     3906              1940      69     6        2
## 2410      Ochota     4254              1946      65     3        2
## 2411 Srodmiescie     5560              1953      34     5        2
## 2412       Praga     3125              2010     103     7        3
## 2413      Bemowo     1919              1974     148     7        6
## 2414      Bemowo     3261              2008      64    10        2
## 2415     Mokotow     3940              1954     106     1        4
## 2416      Ochota     2840              1939     126    10        4
## 2417       Praga     3610              1929      54     7        3
## 2418       Ursus     4234              1931      37     3        2
## 2419      Ochota     3532              1995     132     8        5
## 2420    Zoliborz     4083              1970      27     9        1
## 2421     Mokotow     4120              1951      63     4        3
## 2422      Ochota     3029              1967     142     6        5
## 2423      Bemowo     2419              1937     148     2        6
## 2424       Ursus     2993              1983      86     4        3
## 2425        Wola     3755              1962      30     3        1
## 2426     Mokotow     4361              1920      79     6        3
## 2427 Srodmiescie     5789              1935      41     8        2
## 2428      Ochota     4299              1959      25     7        1
## 2429       Ursus     3783              1933      27     9        1
## 2430      Ochota     3415              1988     133     3        5
## 2431 Srodmiescie     5151              2006     105     7        4
## 2432    Zoliborz     3854              2005     110     7        5
## 2433    Zoliborz     5408              1933      29     1        2
## 2434 Srodmiescie     5404              2008      55    10        3
## 2435       Ursus     2555              1937     145     1        6
## 2436     Ursynow     2577              1990     112     5        4
## 2437      Bemowo     3658              1922      64     6        2
## 2438       Praga     2736              1983     126     2        4
## 2439      Ochota     4681              1961      32     2        2
## 2440     Bielany     3718              1933      58     6        2
## 2441     Bielany     3135              1978      72     4        3
## 2442        Wola     2405              1988     119     6        4
## 2443       Ursus     2376              1936     132     5        4
## 2444     Bielany     3282              1981      47     5        3
## 2445     Bielany     2514              1970     149     1        6
## 2446 Srodmiescie     5934              2005      47     6        2
## 2447 Srodmiescie     5546              1959      20     7        1
## 2448     Bielany     3292              1922     111     4        4
## 2449 Srodmiescie     5336              1936      41     7        1
## 2450       Ursus     4471              1999      38     1        1
## 2451      Bemowo     3113              1997     104     7        3
## 2452     Bielany     2612              1980      99     6        4
## 2453       Praga     2628              1981      92     7        3
## 2454       Ursus     1964              1973     139     8        5
## 2455     Mokotow     3248              1965     115     7        4
## 2456      Ochota     4134              1982      27     8        2
## 2457       Ursus     3322              1993      33     7        1
## 2458     Bielany     3691              1927      46     7        3
## 2459      Bemowo     2953              1920     115     7        4
## 2460       Ursus     2994              1930      96     9        3
## 2461      Ochota     3140              1959     101    10        3
## 2462 Srodmiescie     4847              1972     125     2        4
## 2463     Mokotow     3826              1937      37    10        2
## 2464       Ursus     3492              1978      61     2        2
## 2465       Praga     2969              1977      98     3        3
## 2466       Praga     3827              1922      72     3        3
## 2467      Bemowo     1933              1964     142     8        5
## 2468       Ursus     2778              1951     112     3        4
## 2469       Praga     3731              1931      77     3        4
## 2470     Bielany     2841              1975      76     6        4
## 2471    Zoliborz     3796              1966      60     8        2
## 2472 Srodmiescie     5042              1946      86     4        4
## 2473       Praga     2612              1958     139     1        6
## 2474 Srodmiescie     5211              1928     104     7        3
## 2475     Mokotow     3086              1935     131     7        4
## 2476     Ursynow     4014              2005      34     6        1
## 2477 Srodmiescie     4814              1937     104     5        3
## 2478       Ursus     2940              1928     111     7        5
## 2479     Ursynow     2224              1973     143     5        5
## 2480        Wola     2530              1986     107     6        4
## 2481 Srodmiescie     4552              1994     115     6        4
## 2482     Mokotow     4683              1990      42     1        2
## 2483    Zoliborz     3987              1960      41     8        2
## 2484    Zoliborz     3309              1926     149     8        6
## 2485     Mokotow     5107              1920      59     1        2
## 2486 Srodmiescie     3911              1984     144     9        5
## 2487    Zoliborz     3899              1969     100     2        4
## 2488       Ursus     2982              1951     102     2        4
## 2489     Mokotow     3430              1993     147     1        6
## 2490       Ursus     2817              1973      53     9        3
## 2491       Praga     2980              1996     132     5        4
## 2492       Ursus     2753              1989      60     9        3
## 2493        Wola     2852              1998     115     8        4
## 2494       Ursus     4233              1920      42     3        1
## 2495    Zoliborz     4042              1934     106     6        4
## 2496       Ursus     2814              1942      74     7        3
## 2497       Ursus     2375              1953     112     7        4
## 2498       Praga     2914              1950      99     3        4
## 2499     Bielany     3465              1936      43     4        2
## 2500       Praga     2844              2009     136     5        6
## 2501      Bemowo     3163              1970      54     6        2
## 2502      Bemowo     1930              1975     122    10        5
## 2503        Wola     3387              2010     106     3        5
## 2504    Zoliborz     3604              2004     110    10        4
## 2505       Praga     2498              1977     100     7        4
## 2506      Bemowo     3436              2002      96     4        4
## 2507       Praga     3022              1952      93     3        3
## 2508     Mokotow     3463              1953      79     9        3
## 2509     Bielany     2908              1928     134     5        5
## 2510       Praga     3138              2005     101     7        3
## 2511    Zoliborz     3144              1974     116     8        4
## 2512       Ursus     2431              1982      82    10        3
## 2513     Ursynow     3872              1961      23     2        2
## 2514        Wola     2534              1983      72    10        3
## 2515    Zoliborz     3758              1988     124     1        4
## 2516 Srodmiescie     5605              1961      30     5        2
## 2517     Bielany     2425              1967     127     5        4
## 2518     Bielany     2476              1969      82     9        4
## 2519      Bemowo     3517              1969      68     1        2
## 2520     Ursynow     3210              1966      64     4        3
## 2521      Ochota     3099              1961     120     8        4
## 2522        Wola     2353              1982     105     8        4
## 2523       Ursus     2877              1970      77     6        3
## 2524      Ochota     5085              1933      57     1        3
## 2525      Ochota     3044              1965     106    10        4
## 2526     Mokotow     3211              1995     129     6        4
## 2527       Praga     3918              1930      23     8        1
## 2528      Bemowo     2680              1941      67     9        3
## 2529 Srodmiescie     6331              1928      22     5        1
## 2530      Bemowo     2236              1964     146     4        6
## 2531     Bielany     2283              1921     142    10        6
## 2532 Srodmiescie     5770              1944      48     1        3
## 2533       Praga     3345              1972      55     4        2
## 2534     Ursynow     2883              1986      72     7        2
## 2535     Ursynow     3803              1921      80     2        4
## 2536    Zoliborz     4307              1969      59     3        2
## 2537     Ursynow     2162              1935     109     9        5
## 2538       Praga     3747              2007      35     8        2
## 2539     Ursynow     3991              1931      46     4        3
## 2540       Ursus     1927              1989     132     9        5
## 2541     Mokotow     4862              1996      79     1        3
## 2542       Ursus     2096              1964     140     6        6
## 2543      Bemowo     2877              2010     112     8        4
## 2544      Bemowo     3069              2005     108     6        5
## 2545      Bemowo     2250              1954     145     4        6
## 2546        Wola     2248              1959     135     5        6
## 2547    Zoliborz     4017              1950      88     2        4
## 2548     Ursynow     2676              1983      72     9        2
## 2549       Ursus     2104              1956     145     6        5
## 2550       Ursus     3544              1963      61     1        3
## 2551       Praga     2265              1974     144     4        6
## 2552    Zoliborz     4924              1921      68     2        2
## 2553     Ursynow     3675              1996      62     6        2
## 2554     Bielany     2228              1958     107     9        4
## 2555     Mokotow     3088              1967     101    10        4
## 2556     Bielany     3357              1929      89     6        3
## 2557 Srodmiescie     5487              1982      61     3        2
## 2558      Bemowo     2979              1953      62     7        2
## 2559       Ursus     2924              1933     123     6        5
## 2560      Ochota     4678              1995      57     5        3
## 2561 Srodmiescie     6388              1925      46     1        3
## 2562    Zoliborz     4681              1975      32     2        2
## 2563       Ursus     2659              1974     119     3        5
## 2564       Ursus     2957              2005     119     6        5
## 2565       Ursus     3026              1928     132     4        5
## 2566 Srodmiescie     5441              1932      56    10        2
## 2567       Ursus     2656              2007     124     9        4
## 2568      Bemowo     2792              1959     101     4        4
## 2569     Ursynow     2775              1955     102     4        4
## 2570      Ochota     3824              1956      93     4        3
## 2571     Bielany     3243              1978      81     2        3
## 2572     Bielany     3988              2002      61     3        2
## 2573        Wola     3533              2000      42    10        1
## 2574       Praga     3006              1937      49     8        2
## 2575 Srodmiescie     5201              1936     100     1        4
## 2576        Wola     3336              1979      61     3        3
## 2577     Mokotow     3771              1922     133     6        4
## 2578 Srodmiescie     4573              1969     128     4        5
## 2579    Zoliborz     3171              1949     108     8        5
## 2580     Ursynow     2483              1992     137     3        5
## 2581 Srodmiescie     5004              1960      75     6        3
## 2582       Praga     3524              1975      53     2        3
## 2583      Ochota     4196              1994      35     7        1
## 2584      Ochota     3816              1935      98     9        4
## 2585     Bielany     2103              1962     150     5        6
## 2586     Bielany     2514              1973     134     3        5
## 2587      Bemowo     4169              1923      58     1        3
## 2588       Ursus     3565              1981      43     3        2
## 2589     Bielany     3407              1959      74     1        3
## 2590        Wola     2243              1954     136     5        6
## 2591     Bielany     2665              1939      59    10        3
## 2592      Bemowo     3029              2001     137     3        6
## 2593    Zoliborz     3629              1987      57    10        2
## 2594     Ursynow     3338              1948      61     3        3
## 2595        Wola     3198              2007      75     9        3
## 2596     Mokotow     4367              1935     108     2        5
## 2597     Mokotow     3287              1965     111     7        4
## 2598       Praga     2741              1977      66     9        2
## 2599       Ursus     2965              1921     119     6        5
## 2600     Bielany     2659              1989     114     4        4
## 2601     Bielany     2958              1996      99     9        3
## 2602     Bielany     2128              1939     142     6        5
## 2603        Wola     2469              1954      98     8        3
## 2604     Bielany     3311              1948      69     3        2
## 2605     Ursynow     2127              1956     137     6        6
## 2606       Praga     2328              1974      87    10        4
## 2607     Mokotow     4830              1997      42     6        1
## 2608      Bemowo     2518              1971     123     4        5
## 2609       Ursus     2778              1955      62     9        2
## 2610        Wola     3036              1960      56     7        2
## 2611      Bemowo     2176              1984     102    10        4
## 2612 Srodmiescie     4787              1993      66     9        3
## 2613       Praga     3721              1970      43     2        1
## 2614      Bemowo     2530              1981     112     5        5
## 2615       Praga     2531              1962      92     8        3
## 2616       Praga     3002              1991      45     9        1
## 2617     Ursynow     3725              1924      22    10        1
## 2618      Ochota     4641              1970      26     3        2
## 2619 Srodmiescie     5093              1982      81     4        4
## 2620     Bielany     2697              1962      55    10        3
## 2621     Ursynow     2634              1997     142     7        5
## 2622        Wola     3837              1999      51     5        3
## 2623 Srodmiescie     5206              1989      79     3        4
## 2624     Ursynow     4322              1934      38     2        2
## 2625     Bielany     3702              1996      40     8        2
## 2626    Zoliborz     3447              1994     100     7        3
## 2627        Wola     2506              1924     139     8        6
## 2628        Wola     3312              1944      34     7        1
## 2629      Ochota     4409              1958      29     5        2
## 2630    Zoliborz     3705              1950     119     2        4
## 2631     Bielany     2419              1927     148     8        6
## 2632    Zoliborz     4489              1984      31     4        2
## 2633      Ochota     4127              1950      42     7        1
## 2634     Mokotow     4463              2003      79     5        3
## 2635        Wola     2714              1972      84     7        3
## 2636     Mokotow     4147              2004      75     8        4
## 2637       Praga     3622              1975      48     2        2
## 2638     Bielany     2650              1966      80     8        3
## 2639       Praga     2952              1979      60     7        3
## 2640      Bemowo     2625              1933     132     8        5
## 2641       Ursus     2167              1993     108     9        5
## 2642      Ochota     4790              1997      56     4        3
## 2643    Zoliborz     3907              1994      59     7        2
## 2644        Wola     3669              1938      43     2        2
## 2645 Srodmiescie     5621              2002     108     2        4
## 2646     Bielany     3365              1949      28     7        1
## 2647 Srodmiescie     5952              1938      30     2        1
## 2648     Ursynow     2789              1955      81     6        4
## 2649    Zoliborz     3768              1942      68     7        3
## 2650      Bemowo     2050              1988     125     9        4
## 2651     Mokotow     4486              1924      51     8        2
## 2652      Bemowo     3830              1952      32     2        1
## 2653    Zoliborz     4141              1988      71     3        3
## 2654     Bielany     2937              2002     131     5        5
## 2655       Praga     2096              1957     130     8        4
## 2656     Ursynow     3751              1977      30     3        1
## 2657     Mokotow     4848              1974      30     1        1
## 2658       Praga     3543              2001      91     4        3
## 2659     Bielany     3377              2008      72     8        2
## 2660 Srodmiescie     4313              1967     139     5        6
## 2661 Srodmiescie     4782              1951      97     6        3
## 2662    Zoliborz     3545              1951      96     6        4
## 2663     Ursynow     3182              1979      52     6        2
## 2664       Praga     2587              1957      81     8        4
## 2665     Mokotow     3424              1940     143     2        5
## 2666     Mokotow     5006              1996      34     5        1
## 2667     Mokotow     3426              1988     102     7        3
## 2668 Srodmiescie     5206              1975      39     8        2
## 2669      Bemowo     2903              1968      65     7        3
## 2670    Zoliborz     4331              1963      37     5        2
## 2671       Ursus     2287              1973     141     4        6
## 2672      Ochota     4209              1943      24     8        1
## 2673        Wola     2106              1989     129     8        4
## 2674      Ochota     3876              1931     142     3        6
## 2675       Praga     2521              1978      88     8        4
## 2676     Mokotow     3759              1923     104     9        4
## 2677     Mokotow     4103              1937      90     1        4
## 2678      Bemowo     2158              1964     104    10        4
## 2679    Zoliborz     3826              1963      52     8        3
## 2680       Praga     3649              2002      55     7        2
## 2681       Ursus     2448              1936     130     4        5
## 2682        Wola     2938              1939     106     2        4
## 2683      Ochota     2715              1951     134    10        5
## 2684     Ursynow     2699              1964      95     6        3
## 2685       Ursus     4524              1924      23     2        1
## 2686        Wola     3335              1955      22     8        1
## 2687     Bielany     3805              2008      94     1        3
## 2688        Wola     2796              1938      75     7        3
## 2689      Bemowo     3837              1999      31     8        1
## 2690     Bielany     2366              1960      88    10        3
## 2691        Wola     3596              1925      55     7        3
## 2692        Wola     3908              1923      24     8        1
## 2693     Mokotow     4757              1930      49     5        3
## 2694        Wola     3883              1924      82     1        4
## 2695 Srodmiescie     5578              1967      62     2        2
## 2696     Ursynow     3154              1990     100     1        3
## 2697 Srodmiescie     4342              1988     111     8        5
## 2698       Ursus     2435              1944      81    10        3
## 2699      Bemowo     2000              1957     120    10        4
## 2700 Srodmiescie     4622              1957      83     9        3
## 2701    Zoliborz     4261              1925      69     8        3
## 2702     Bielany     2929              1946      87     4        4
## 2703 Srodmiescie     5998              1964      35     1        1
## 2704 Srodmiescie     5692              1955      46     2        3
## 2705     Mokotow     4206              1984      29     7        2
## 2706       Ursus     4198              1921      40     3        2
## 2707      Ochota     3189              1951     141     4        6
## 2708        Wola     2140              1990     106    10        4
## 2709        Wola     4243              2002      51     1        3
## 2710    Zoliborz     4282              1957      52     4        2
## 2711     Ursynow     2849              2010     140     5        5
## 2712     Bielany     2756              1983     104     4        4
## 2713     Mokotow     3637              1984      51    10        3
## 2714 Srodmiescie     5267              1944      78     3        3
## 2715 Srodmiescie     6048              1998      25     7        2
## 2716 Srodmiescie     4790              1966      76     8        3
## 2717      Ochota     3993              1924      86     9        3
## 2718        Wola     3320              1998      88     6        4
## 2719        Wola     2670              1936     128     2        5
## 2720      Bemowo     3071              1988      88     3        3
## 2721     Bielany     3349              1927      50    10        3
## 2722      Ochota     3574              1920     123     9        4
## 2723 Srodmiescie     4442              2009     146     9        6
## 2724     Bielany     3209              1924     104     6        3
## 2725       Ursus     2903              1937      80     5        4
## 2726     Bielany     3534              1930     107     2        4
## 2727     Mokotow     3243              1952     126     6        4
## 2728    Zoliborz     4288              1925      81     6        4
## 2729 Srodmiescie     6125              1925      33     6        1
## 2730     Ursynow     2773              1952     108     3        5
## 2731     Mokotow     4386              2008      41    10        2
## 2732 Srodmiescie     5205              1956      30     9        2
## 2733       Praga     3210              1998      69    10        2
## 2734      Ochota     4600              1949      50     1        2
## 2735 Srodmiescie     3769              1968     143    10        6
## 2736 Srodmiescie     5069              1940      68     6        3
## 2737    Zoliborz     4050              1945      35     8        2
## 2738       Praga     2769              1993     123     2        4
## 2739    Zoliborz     3539              1972     131     2        5
## 2740       Praga     3353              1935     120     2        5
## 2741    Zoliborz     3861              1993      49     8        3
## 2742       Praga     2747              1951     130     1        5
## 2743       Ursus     3049              1986      35     9        2
## 2744     Ursynow     1770              1982     143     9        6
## 2745     Mokotow     4303              1927     115     2        5
## 2746     Bielany     3418              1950      53     3        3
## 2747       Praga     3178              2006      67    10        3
## 2748       Praga     2255              1938     135     6        4
## 2749     Mokotow     3861              1973      84     4        4
## 2750     Ursynow     4041              1928      41     5        1
## 2751        Wola     3638              1947      31     4        1
## 2752     Ursynow     3094              1941      71     5        2
## 2753     Mokotow     3033              1968     107    10        4
## 2754      Ochota     3782              1941      77     6        3
## 2755       Praga     3384              1993      72     2        2
## 2756        Wola     2416              1977     103     8        3
## 2757     Ursynow     2851              1944     110     2        5
## 2758      Ochota     4094              2006     126     3        5
## 2759     Ursynow     2664              2009     139     7        5
## 2760      Ochota     2820              1985     143     8        5
## 2761 Srodmiescie     5609              1976      64     1        3
## 2762     Ursynow     3696              1924      95     2        3
## 2763       Ursus     2524              1940      88     8        4
## 2764     Ursynow     2087              1986     116     9        5
## 2765       Praga     3849              1931      60     4        3
## 2766     Mokotow     4502              1997      30    10        2
## 2767       Praga     3368              1936      78     1        3
## 2768     Bielany     3381              1974      72     2        2
## 2769     Ursynow     2700              1960      80     7        4
## 2770     Bielany     2724              1947     128     2        4
## 2771      Ochota     2959              1936     144     6        6
## 2772    Zoliborz     4048              1936      85     2        4
## 2773      Bemowo     2521              1946     138     2        6
## 2774     Ursynow     3057              1998      89     9        3
## 2775    Zoliborz     3833              1937      97     3        4
## 2776     Ursynow     3078              1962      52     7        2
## 2777     Mokotow     4217              1930     113     3        5
## 2778      Ochota     3751              2001     135     6        4
## 2779      Ochota     3792              1949     111     2        4
## 2780     Bielany     3537              1921      66     7        2
## 2781     Mokotow     3631              1994     107     4        4
## 2782     Bielany     2335              1955      87    10        4
## 2783     Bielany     2168              1972     138     6        5
## 2784      Bemowo     2546              1929     140     8        5
## 2785      Ochota     5001              2006      25     6        1
## 2786     Ursynow     3580              1946      32     4        2
## 2787     Ursynow     3354              1992      40     6        1
## 2788      Ochota     4526              1984      42     3        1
## 2789       Praga     2874              1959      73     7        2
## 2790       Praga     3571              1929      98     3        3
## 2791      Bemowo     2976              1971      37    10        1
## 2792      Ochota     3596              1981      70     9        2
## 2793    Zoliborz     4344              1999      61     8        3
## 2794      Ochota     4049              2009      95     7        4
## 2795     Bielany     2789              2005     146     5        5
## 2796     Bielany     4397              1935      40     1        2
## 2797       Ursus     3337              1935     116     3        4
## 2798        Wola     3052              1937      85     3        4
## 2799     Ursynow     3140              1996     106     6        4
## 2800       Praga     3330              1946      37     6        2
## 2801       Praga     2301              1987     150     3        6
## 2802 Srodmiescie     4896              1972     130     1        4
## 2803       Ursus     3804              1933      35     8        1
## 2804      Ochota     4606              1934      49     7        2
## 2805      Ochota     4218              1984      63     3        3
## 2806 Srodmiescie     5303              1959      70     4        2
## 2807       Ursus     3201              2005     105     6        3
## 2808       Ursus     4370              1934      28     3        1
## 2809 Srodmiescie     5080              1984     107     1        5
## 2810     Bielany     3084              1931     122     5        4
## 2811    Zoliborz     4339              1997     116     2        4
## 2812     Ursynow     2627              1998     127     9        4
## 2813       Praga     2406              1993     144     3        5
## 2814       Praga     2621              2006     128     9        4
## 2815     Ursynow     2789              1990     121     2        4
## 2816     Bielany     3306              1986      84     1        3
## 2817 Srodmiescie     6055              1933      75     2        2
## 2818    Zoliborz     3101              1950     125     7        5
## 2819    Zoliborz     4031              1940      67     5        2
## 2820       Ursus     2377              2007     137    10        5
## 2821 Srodmiescie     4969              1938      78     6        3
## 2822 Srodmiescie     5931              1930      77     2        4
## 2823     Ursynow     3997              1970      25     1        1
## 2824     Bielany     3464              1933      59     8        3
## 2825     Mokotow     5115              1933      39     3        2
## 2826       Ursus     3152              2009      80     9        3
## 2827      Ochota     3087              1967     141     5        6
## 2828 Srodmiescie     4747              1943      90     7        3
## 2829    Zoliborz     3543              1968     116     4        4
## 2830      Bemowo     2903              1948      65     7        3
## 2831     Mokotow     3386              2006     146     8        5
## 2832      Ochota     3548              1943      70     9        3
## 2833       Ursus     3171              2004     103     6        4
## 2834     Bielany     3253              1935      75     9        2
## 2835       Ursus     3830              2006      57     5        2
## 2836      Bemowo     3438              1971      56     3        2
## 2837     Bielany     3182              1993      57     5        3
## 2838       Ursus     3215              1925     109     5        4
## 2839      Ochota     3481              1972      97     7        3
## 2840        Wola     3580              1973      37     4        1
## 2841      Ochota     4302              1931      65     8        3
## 2842     Mokotow     3998              1937      60     6        2
## 2843     Ursynow     2264              1940     144     4        6
## 2844 Srodmiescie     4870              1980      48    10        3
## 2845       Praga     3042              1982      41     9        1
## 2846     Mokotow     3894              1937      91     3        4
## 2847       Praga     3433              1921     102     4        3
## 2848     Bielany     2841              1986     106     3        4
## 2849       Ursus     3372              1930     103     4        4
## 2850     Mokotow     4081              1939      57     5        3
## 2851       Praga     2364              1972     139     4        5
## 2852     Bielany     3291              1995      81     7        4
## 2853     Mokotow     3734              1983      82     6        3
## 2854     Bielany     3131              1927     147     1        6
## 2855 Srodmiescie     4967              1953      83     5        4
## 2856       Praga     3129              1940      52     6        3
## 2857     Mokotow     4349              1947      35     5        2
## 2858     Bielany     2561              1976      74    10        2
## 2859        Wola     2714              1981      59    10        2
## 2860        Wola     2990              2008     106     7        5
## 2861      Ochota     3400              1947      85     9        3
## 2862    Zoliborz     4837              1921      61     3        3
## 2863        Wola     2661              1940      64    10        2
## 2864        Wola     2195              1953     120     8        4
## 2865      Ochota     2674              1972     143     9        6
## 2866    Zoliborz     4107              1940      69     4        2
## 2867     Mokotow     4482              2007     112     1        4
## 2868        Wola     2244              1994     146     4        6
## 2869      Ochota     4042              1968     101     1        3
## 2870       Ursus     3534              1935      97     3        4
## 2871     Ursynow     2465              1950      88     9        3
## 2872       Ursus     2992              1923     116     6        5
## 2873 Srodmiescie     5477              1957      37     6        1
## 2874       Praga     2338              1968     141     4        5
## 2875     Mokotow     4264              1976      29     7        1
## 2876 Srodmiescie     5610              1923      49     9        2
## 2877      Bemowo     3228              1921     102     6        3
## 2878      Bemowo     2894              1974     111     2        4
## 2879       Praga     3706              1928      54     6        3
## 2880     Bielany     2072              1984     143     6        6
## 2881       Praga     2933              1932     122     6        5
## 2882     Ursynow     3796              1933      35     8        1
## 2883     Mokotow     4886              1959      26     1        1
## 2884      Bemowo     2382              1967      92     9        4
## 2885      Ochota     5405              2003      29     1        2
## 2886       Ursus     4279              1933      52     1        2
## 2887      Bemowo     2914              1954      69     7        2
## 2888      Bemowo     2971              1988      33    10        2
## 2889     Bielany     2853              1946      70     7        3
## 2890     Ursynow     4244              2005      41     3        1
## 2891    Zoliborz     3792              2004     126     6        5
## 2892    Zoliborz     3775              1941     108     2        5
## 2893      Ochota     4162              1956      24     8        2
## 2894       Ursus     3635              1991      41     3        1
## 2895        Wola     2837              1959     111     2        5
## 2896       Praga     3750              1966      25     3        2
## 2897     Ursynow     3718              1992      48     1        2
## 2898     Ursynow     2501              1957     150     1        6
## 2899       Ursus     2026              1980     127     9        4
## 2900     Bielany     2971              1930      98     9        3
## 2901     Ursynow     2870              1941      43    10        2
## 2902     Bielany     3299              2006     125     2        5
## 2903     Bielany     3017              1955      83     4        3
## 2904     Ursynow     3204              1958      50     6        2
## 2905 Srodmiescie     5545              2007     111     2        5
## 2906     Ursynow     2977              1990     107     1        5
## 2907        Wola     3464              2000      54     9        2
## 2908      Bemowo     2940              2005     126     6        4
## 2909      Bemowo     2280              1954     107     8        5
## 2910     Ursynow     3484              1973      72     1        2
## 2911     Bielany     1751              1982     140    10        5
## 2912      Ochota     4024              1945      63     5        3
## 2913      Bemowo     3637              1927      26    10        2
## 2914     Mokotow     3822              2002     143     4        5
## 2915    Zoliborz     5007              2008      59     2        2
## 2916      Bemowo     3555              1943      40     4        1
## 2917 Srodmiescie     5304              1940      60     5        2
## 2918 Srodmiescie     4608              1976      99     7        4
## 2919    Zoliborz     3900              1961      85     4        3
## 2920      Ochota     3357              2007     149     8        5
## 2921 Srodmiescie     5234              1999      72    10        3
## 2922     Ursynow     3644              1946      31     4        1
## 2923      Ochota     3634              2001     122     8        5
## 2924     Bielany     2259              1989     109     8        5
## 2925     Mokotow     5003              1923      55     2        3
## 2926     Bielany     3969              1923      63     3        2
## 2927       Ursus     2632              2004     132     8        5
## 2928      Ochota     3286              1936      81    10        4
## 2929     Bielany     2804              1991      85     6        3
## 2930     Ursynow     2896              1960      70     7        2
## 2931 Srodmiescie     6342              2005      51     1        3
## 2932       Ursus     3068              1974      78     4        3
## 2933     Ursynow     2421              1962     133     4        5
## 2934      Bemowo     3593              1974      61     1        2
## 2935    Zoliborz     4448              1936      30     5        1
## 2936        Wola     2771              1947     133     1        4
## 2937       Praga     3158              1984      39     8        1
## 2938      Bemowo     3593              1976      41     3        2
## 2939    Zoliborz     2588              1980     141    10        6
## 2940     Mokotow     3986              1924     131     4        4
## 2941      Ochota     3308              1986     144     3        5
## 2942     Mokotow     4986              2004      21     6        2
## 2943       Praga     3360              1998     124     2        4
## 2944       Praga     3127              1941      62     5        3
## 2945    Zoliborz     4797              2010      60     4        2
## 2946      Bemowo     3975              1921      22     7        2
## 2947     Ursynow     2462              2005     129    10        5
## 2948      Bemowo     2591              1986     126     3        5
## 2949     Mokotow     3844              1944      81     5        3
## 2950     Mokotow     3966              1990      63     6        2
## 2951    Zoliborz     3474              1960     143     1        6
## 2952      Bemowo     3567              1928      33    10        2
## 2953      Bemowo     3050              1996      90     9        3
## 2954       Praga     3030              1921      92     9        3
## 2955     Ursynow     2948              1990      60     7        3
## 2956 Srodmiescie     4674              1944     143     1        6
## 2957     Ursynow     3113              2007     119     5        4
## 2958 Srodmiescie     5825              1996      87     2        4
## 2959     Bielany     3424              1963      63     2        3
## 2960     Bielany     3067              1967      38     9        1
## 2961      Bemowo     2558              1963     139     2        5
## 2962       Ursus     3113              1943      34     9        1
## 2963      Ochota     4286              1985      66     2        3
## 2964       Ursus     3437              2000      66     8        2
## 2965 Srodmiescie     4270              1992     123     8        4
## 2966       Ursus     4532              2005      22     2        1
## 2967     Mokotow     3061              1947     139     6        5
## 2968      Bemowo     2870              1928      93    10        4
## 2969     Bielany     2811              1997     119     8        4
## 2970       Praga     3204              1932     115     4        5
## 2971     Ursynow     2985              1957     101     2        4
## 2972     Ursynow     2186              1982     126     7        5
## 2973      Ochota     3778              1983      82     5        4
## 2974 Srodmiescie     4773              1940      63    10        2
## 2975      Bemowo     4002              2007      70     2        2
## 2976     Ursynow     3604              1959      50     2        2
## 2977       Ursus     2947              1985      55     8        2
## 2978      Bemowo     2615              1972      89     7        4
## 2979       Ursus     2214              1946     119     8        4
## 2980        Wola     3191              1939      66     4        3
## 2981        Wola     2410              1955     134     4        5
## 2982     Mokotow     3994              1989      66     5        3
## 2983       Ursus     4207              2007      49     2        2
## 2984       Ursus     3081              1979     102     1        4
## 2985      Bemowo     2465              1942     148     2        5
## 2986       Praga     2317              1970      93    10        3
## 2987      Ochota     3958              1997      94     8        4
## 2988     Ursynow     3644              1999      91     3        3
## 2989        Wola     3847              2006      60     4        3
## 2990     Bielany     2912              1973      54     8        3
## 2991     Ursynow     2301              1959     150     3        6
## 2992       Praga     2805              1996     119     8        4
## 2993        Wola     3807              1941      24     3        1
## 2994        Wola     3605              1941      29     4        2
## 2995     Ursynow     3021              1950      58     7        2
## 2996    Zoliborz     4187              1997      71     9        2
## 2997      Bemowo     2445              1994      76    10        4
## 2998        Wola     3272              1978      33     7        2
## 2999      Bemowo     3468              1930      48     9        3
## 3000     Mokotow     4118              1978      73     3        3
##      construction.year_new surface_new floor_new no.rooms_new
## 1             (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2              (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 3              (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 4             (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 5             (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 6             (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 7             (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 8             (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 9              (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 10            (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 11            (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 12             (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 13            (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 14            (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 15            (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 16            (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 17            (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 18            (1937, 1992]  (101, Inf) (-Inf, 5]    (-Inf, 3]
## 19            (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 20            (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 21            (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 22            (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 23             (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 24             (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 25            (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 26            (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 27            (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 28            (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 29             (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 30             (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 31            (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 32            (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 33            (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 34            (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 35            (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 36            (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 37            (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 38            (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 39            (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 40            (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 41            (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 42            (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 43            (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 44             (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 45            (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 46            (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 47            (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 48            (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 49            (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 50            (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 51            (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 52            (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 53            (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 54            (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 55             (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 56            (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 57            (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 58            (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 59            (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 60            (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 61            (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 62            (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 63             (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 64            (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 65            (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 66            (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 67            (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 68            (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 69            (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 70            (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 71            (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 72             (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 73             (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 74            (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 75            (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 76            (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 77            (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 78            (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 79            (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 80            (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 81            (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 82            (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 83            (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 84            (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 85             (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 86            (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 87            (-Inf, 1937]   (47, 101]  (5, Inf)     (3, Inf)
## 88             (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 89            (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 90            (1937, 1992]  (101, Inf) (-Inf, 5]    (-Inf, 3]
## 91            (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 92            (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 93            (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 94             (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 95            (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 96            (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 97             (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 98            (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 99            (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 100           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 101           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 102           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 103           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 104            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 105           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 106           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 107           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 108           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 109            (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 110           (-Inf, 1937]   (47, 101]  (5, Inf)     (3, Inf)
## 111           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 112           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 113           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 114           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 115           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 116            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 117           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 118           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 119           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 120           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 121           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 122           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 123           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 124           (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 125           (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 126           (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 127           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 128            (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 129            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 130            (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 131           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 132           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 133           (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 134           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 135            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 136           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 137           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 138           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 139           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 140           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 141           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 142           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 143           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 144           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 145           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 146           (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 147           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 148           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 149           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 150           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 151           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 152           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 153           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 154           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 155           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 156            (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 157            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 158           (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 159            (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 160           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 161           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 162            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 163           (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 164            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 165           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 166           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 167           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 168           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 169           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 170           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 171           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 172           (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 173           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 174           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 175           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 176           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 177           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 178           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 179           (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 180           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 181           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 182           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 183           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 184           (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 185            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 186           (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 187           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 188           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 189           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 190           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 191           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 192           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 193            (1992, Inf)   (47, 101]  (5, Inf)     (3, Inf)
## 194           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 195           (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 196           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 197           (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 198            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 199           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 200           (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 201           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 202            (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 203           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 204           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 205           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 206            (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 207            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 208           (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 209           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 210           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 211           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 212           (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 213           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 214           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 215           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 216           (1937, 1992]  (101, Inf)  (5, Inf)    (-Inf, 3]
## 217           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 218           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 219           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 220           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 221           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 222           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 223           (-Inf, 1937]  (101, Inf) (-Inf, 5]    (-Inf, 3]
## 224           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 225           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 226            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 227           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 228            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 229           (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 230           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 231            (1992, Inf)   (47, 101]  (5, Inf)     (3, Inf)
## 232           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 233           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 234            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 235           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 236           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 237           (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 238            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 239            (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 240            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 241           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 242           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 243           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 244           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 245           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 246            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 247           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 248           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 249           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 250           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 251           (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 252            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 253           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 254           (-Inf, 1937]   (47, 101]  (5, Inf)     (3, Inf)
## 255           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 256           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 257           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 258           (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 259            (1992, Inf)   (47, 101]  (5, Inf)     (3, Inf)
## 260            (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 261           (-Inf, 1937]   (47, 101]  (5, Inf)     (3, Inf)
## 262            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 263           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 264           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 265           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 266           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 267           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 268            (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 269           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 270           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 271           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 272           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 273           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 274            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 275           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 276           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 277           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 278           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 279            (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 280            (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 281           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 282           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 283           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 284           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 285           (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 286           (-Inf, 1937]   (47, 101]  (5, Inf)     (3, Inf)
## 287           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 288           (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 289           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 290            (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 291           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 292           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 293           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 294           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 295           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 296           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 297           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 298           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 299           (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 300           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 301           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 302            (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 303           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 304           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 305           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 306           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 307           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 308           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 309           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 310            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 311           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 312           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 313           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 314            (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 315           (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 316           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 317           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 318            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 319           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 320           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 321           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 322           (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 323           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 324           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 325           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 326           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 327           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 328           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 329           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 330           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 331            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 332           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 333           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 334           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 335           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 336           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 337            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 338            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 339           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 340            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 341           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 342           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 343            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 344           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 345           (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 346           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 347           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 348           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 349           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 350           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 351           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 352           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 353            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 354           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 355           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 356           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 357           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 358           (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 359           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 360           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 361           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 362           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 363           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 364           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 365           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 366            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 367           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 368           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 369           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 370           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 371           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 372           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 373            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 374           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 375            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 376           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 377           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 378           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 379           (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 380           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 381            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 382           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 383            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 384           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 385           (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 386           (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 387           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 388           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 389           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 390            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 391           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 392           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 393           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 394           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 395            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 396           (1937, 1992]  (101, Inf) (-Inf, 5]    (-Inf, 3]
## 397           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 398           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 399           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 400           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 401            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 402           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 403           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 404            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 405            (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 406           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 407           (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 408           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 409            (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 410           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 411            (1992, Inf)   (47, 101]  (5, Inf)     (3, Inf)
## 412           (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 413           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 414           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 415           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 416           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 417           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 418           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 419           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 420            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 421           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 422           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 423           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 424           (1937, 1992]  (101, Inf)  (5, Inf)    (-Inf, 3]
## 425           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 426           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 427            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 428           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 429           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 430            (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 431           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 432           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 433           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 434           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 435           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 436           (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 437            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 438            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 439           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 440            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 441            (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 442           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 443           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 444           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 445           (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 446           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 447           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 448           (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 449           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 450           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 451           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 452           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 453           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 454           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 455           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 456            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 457           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 458           (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 459           (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 460           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 461           (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 462           (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 463           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 464           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 465           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 466            (1992, Inf)   (47, 101]  (5, Inf)     (3, Inf)
## 467            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 468           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 469           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 470           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 471           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 472           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 473           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 474           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 475           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 476           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 477           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 478            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 479           (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 480           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 481           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 482           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 483           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 484            (1992, Inf)   (47, 101]  (5, Inf)     (3, Inf)
## 485           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 486           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 487           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 488            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 489           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 490           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 491           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 492           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 493           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 494           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 495           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 496           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 497           (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 498           (1937, 1992]  (101, Inf) (-Inf, 5]    (-Inf, 3]
## 499           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 500            (1992, Inf)   (47, 101]  (5, Inf)     (3, Inf)
## 501           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 502           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 503           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 504            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 505           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 506           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 507           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 508           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 509           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 510           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 511           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 512           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 513           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 514           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 515           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 516            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 517           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 518           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 519            (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 520           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 521            (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 522           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 523           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 524           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 525           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 526            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 527            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 528           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 529            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 530           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 531           (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 532           (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 533           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 534           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 535           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 536           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 537           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 538           (-Inf, 1937]  (101, Inf)  (5, Inf)    (-Inf, 3]
## 539            (1992, Inf)   (47, 101]  (5, Inf)     (3, Inf)
## 540           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 541            (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 542           (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 543           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 544           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 545            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 546           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 547           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 548           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 549           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 550            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 551            (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 552           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 553           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 554           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 555           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 556           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 557            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 558           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 559           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 560           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 561           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 562           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 563           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 564           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 565           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 566           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 567           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 568            (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 569           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 570           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 571           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 572           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 573           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 574            (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 575            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 576           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 577            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 578            (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 579           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 580           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 581           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 582           (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 583           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 584           (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 585           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 586            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 587            (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 588           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 589            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 590           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 591           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 592           (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 593           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 594            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 595           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 596           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 597           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 598           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 599           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 600           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 601           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 602           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 603           (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 604           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 605            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 606           (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 607           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 608           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 609           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 610           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 611            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 612            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 613           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 614           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 615           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 616           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 617           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 618            (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 619            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 620            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 621            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 622            (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 623           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 624           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 625           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 626           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 627           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 628           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 629           (-Inf, 1937]   (47, 101]  (5, Inf)     (3, Inf)
## 630           (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 631           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 632            (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 633           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 634           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 635           (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 636           (-Inf, 1937]   (47, 101]  (5, Inf)     (3, Inf)
## 637           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 638           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 639           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 640           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 641           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 642           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 643           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 644           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 645           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 646           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 647           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 648           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 649           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 650            (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 651           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 652           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 653           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 654            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 655           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 656            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 657           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 658            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 659           (1937, 1992]  (101, Inf) (-Inf, 5]    (-Inf, 3]
## 660           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 661           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 662           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 663           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 664           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 665            (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 666           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 667            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 668           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 669           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 670           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 671           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 672           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 673           (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 674            (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 675           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 676           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 677           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 678           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 679           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 680           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 681           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 682           (1937, 1992]  (101, Inf) (-Inf, 5]    (-Inf, 3]
## 683           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 684           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 685            (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 686           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 687           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 688           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 689           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 690           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 691           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 692           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 693           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 694           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 695            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 696           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 697           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 698           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 699           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 700           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 701            (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 702           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 703           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 704           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 705           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 706           (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 707            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 708           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 709           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 710           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 711            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 712           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 713           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 714           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 715           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 716           (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 717            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 718            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 719           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 720            (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 721            (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 722           (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 723           (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 724           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 725           (-Inf, 1937]   (47, 101]  (5, Inf)     (3, Inf)
## 726            (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 727           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 728           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 729           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 730           (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 731           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 732           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 733           (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 734           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 735           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 736            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 737           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 738           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 739           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 740           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 741           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 742           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 743           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 744            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 745           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 746           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 747           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 748            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 749           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 750           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 751           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 752            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 753           (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 754           (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 755           (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 756           (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 757           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 758           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 759           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 760           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 761           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 762           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 763           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 764           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 765           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 766           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 767            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 768            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 769            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 770           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 771            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 772           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 773            (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 774           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 775           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 776           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 777           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 778           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 779           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 780           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 781            (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 782            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 783           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 784           (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 785            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 786           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 787           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 788           (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 789           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 790           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 791           (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 792            (1992, Inf)   (47, 101]  (5, Inf)     (3, Inf)
## 793           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 794            (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 795           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 796           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 797            (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 798           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 799           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 800           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 801           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 802            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 803           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 804           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 805           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 806           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 807           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 808           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 809           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 810           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 811           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 812           (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 813           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 814           (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 815           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 816           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 817           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 818           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 819           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 820           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 821            (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 822           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 823           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 824           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 825            (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 826           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 827           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 828           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 829           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 830           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 831           (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 832           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 833           (-Inf, 1937]   (47, 101]  (5, Inf)     (3, Inf)
## 834           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 835           (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 836            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 837            (1992, Inf)   (47, 101]  (5, Inf)     (3, Inf)
## 838           (1937, 1992]  (101, Inf) (-Inf, 5]    (-Inf, 3]
## 839           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 840           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 841           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 842           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 843            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 844           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 845           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 846            (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 847           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 848           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 849            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 850           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 851            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 852           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 853           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 854           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 855           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 856           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 857           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 858           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 859           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 860           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 861           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 862           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 863           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 864           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 865           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 866           (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 867            (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 868           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 869           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 870            (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 871           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 872           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 873            (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 874           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 875           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 876            (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 877            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 878           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 879           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 880           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 881           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 882           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 883           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 884           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 885            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 886           (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 887           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 888           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 889            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 890           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 891           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 892           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 893           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 894           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 895           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 896           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 897           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 898           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 899           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 900           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 901            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 902           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 903           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 904           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 905           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 906           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 907           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 908           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 909            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 910           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 911           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 912           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 913           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 914           (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 915           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 916           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 917           (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 918            (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 919           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 920           (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 921           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 922            (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 923           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 924           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 925           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 926           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 927            (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 928           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 929           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 930           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 931           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 932           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 933           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 934           (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 935           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 936            (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 937           (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 938           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 939           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 940           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 941           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 942           (1937, 1992]  (101, Inf)  (5, Inf)    (-Inf, 3]
## 943           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 944           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 945           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 946           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 947           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 948           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 949           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 950           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 951           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 952           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 953           (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 954            (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 955           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 956           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 957           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 958           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 959           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 960            (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 961           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 962           (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 963           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 964            (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 965           (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 966           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 967           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 968            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 969           (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 970            (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 971           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 972           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 973            (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 974           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 975           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 976           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 977           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 978           (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 979           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 980           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 981           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 982           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 983           (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 984           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 985           (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 986           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 987           (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 988           (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 989           (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 990           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 991            (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 992           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 993           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 994           (-Inf, 1937]  (101, Inf) (-Inf, 5]    (-Inf, 3]
## 995           (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 996           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 997           (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 998           (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 999           (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1000          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1001          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1002          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1003          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1004          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1005          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1006          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1007          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1008          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1009          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1010          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1011          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1012          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1013          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1014          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1015          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1016          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1017           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1018           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1019          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1020          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1021          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1022          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1023          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1024          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1025          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1026          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1027          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1028           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1029          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1030          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1031          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1032          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1033           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1034          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1035          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1036          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1037          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1038          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1039           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1040           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1041           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1042          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1043          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1044          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1045           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1046          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1047          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1048          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1049          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1050          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1051          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1052          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1053          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1054           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1055          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1056          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1057          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1058          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1059          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1060          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1061          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1062          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1063          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1064           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 1065          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1066          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1067          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1068           (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 1069           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 1070          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1071           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1072          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1073          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1074          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1075          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1076          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1077          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1078           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1079           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 1080           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1081          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1082          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1083          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1084          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1085           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1086          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1087          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1088          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1089          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1090           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1091          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1092          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1093          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1094          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1095          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1096          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1097          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1098          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1099          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1100          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1101          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1102          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1103          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1104          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1105          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1106          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1107          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1108          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1109          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1110           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1111          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1112          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1113          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1114          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1115          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1116           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1117          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1118           (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 1119          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1120          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1121           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 1122          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1123           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1124          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1125          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1126          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1127          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1128           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1129          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1130          (1937, 1992]  (101, Inf) (-Inf, 5]    (-Inf, 3]
## 1131          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1132          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1133          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1134          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1135          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1136          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1137          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1138           (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 1139          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1140          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1141           (1992, Inf)   (47, 101]  (5, Inf)     (3, Inf)
## 1142          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1143          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1144          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1145          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1146          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1147          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1148          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1149          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1150          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1151          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1152          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1153          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1154          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1155          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1156          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1157           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1158           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1159           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1160          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1161          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1162          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1163          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1164          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1165          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1166          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1167          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1168          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1169          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1170          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1171           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 1172           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1173          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1174          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1175          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1176          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1177           (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 1178           (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 1179          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1180           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 1181           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 1182          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1183          (1937, 1992]  (101, Inf)  (5, Inf)    (-Inf, 3]
## 1184          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1185          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1186          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1187          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1188          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1189          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1190          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1191          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1192          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1193          (-Inf, 1937]   (47, 101]  (5, Inf)     (3, Inf)
## 1194          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1195          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1196          (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 1197          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1198          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1199          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1200          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1201          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1202          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1203          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1204          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1205           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1206          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1207          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1208          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1209          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1210          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1211          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1212          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1213          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1214          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1215          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1216          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1217          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1218           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1219          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1220          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1221           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 1222           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1223          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1224          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1225          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1226           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 1227          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1228          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1229           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1230          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1231           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1232          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1233           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1234          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1235          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1236          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1237          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1238          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1239           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1240           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1241          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1242          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1243          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1244          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1245           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 1246          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1247          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1248          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1249           (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 1250           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 1251           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1252          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1253          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1254          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1255          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1256          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1257          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1258          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1259          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1260          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1261          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1262          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1263           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 1264          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1265           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1266           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 1267          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1268          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1269          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1270          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1271          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1272          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1273          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1274           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1275          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1276          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1277          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1278          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1279          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1280          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1281          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1282          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1283          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1284          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1285          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1286          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1287          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1288          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1289          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1290          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1291          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1292           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1293          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1294          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1295           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1296          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1297          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1298           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1299          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1300          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1301          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1302          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1303           (1992, Inf)   (47, 101]  (5, Inf)     (3, Inf)
## 1304          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1305          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1306          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1307          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1308          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1309           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 1310           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1311          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1312          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1313          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1314          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1315          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1316          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1317          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1318          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1319          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1320          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1321          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1322          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1323          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1324          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1325           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1326          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1327          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1328          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1329           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1330          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1331          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1332          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1333          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1334          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1335          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1336          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1337           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 1338          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1339          (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 1340          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1341          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1342          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1343          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1344          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1345          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1346          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1347          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1348          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1349          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1350          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1351          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1352          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1353          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1354          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1355          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1356          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1357           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1358          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1359          (1937, 1992]  (101, Inf) (-Inf, 5]    (-Inf, 3]
## 1360          (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 1361          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1362          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1363          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1364          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1365          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1366          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1367          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1368          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1369          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1370          (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 1371           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1372          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1373          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1374          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1375          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1376          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1377          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1378          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1379          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1380           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 1381          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1382          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1383           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1384          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1385          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1386          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1387           (1992, Inf)  (101, Inf) (-Inf, 5]    (-Inf, 3]
## 1388          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1389          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1390          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1391          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1392          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1393          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1394          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1395          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1396          (-Inf, 1937]   (47, 101]  (5, Inf)     (3, Inf)
## 1397          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1398          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1399          (-Inf, 1937]   (47, 101]  (5, Inf)     (3, Inf)
## 1400          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1401          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1402           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1403          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1404           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1405          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1406          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1407          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1408          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1409          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1410          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1411          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1412          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1413          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1414          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1415          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1416          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1417          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1418           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 1419           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 1420          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1421           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 1422          (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 1423          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1424          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1425          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1426          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1427          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1428          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1429           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 1430           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 1431           (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 1432          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1433          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1434          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1435          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1436           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1437          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1438          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1439           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 1440          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1441          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1442          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1443           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1444           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 1445          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1446          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1447           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1448          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1449          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1450          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1451          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1452          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1453           (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 1454           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1455           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1456           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1457          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1458          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1459          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1460          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1461          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1462          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1463          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1464          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1465           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 1466          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1467          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1468          (-Inf, 1937]  (101, Inf) (-Inf, 5]    (-Inf, 3]
## 1469          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1470          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1471           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1472           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1473          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1474          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1475          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1476          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1477          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1478          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1479          (1937, 1992]  (101, Inf) (-Inf, 5]    (-Inf, 3]
## 1480          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1481          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1482          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1483          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1484          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1485          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1486          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1487          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1488           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 1489          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1490          (-Inf, 1937]   (47, 101]  (5, Inf)     (3, Inf)
## 1491          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1492          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1493          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1494           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1495          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1496          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1497           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1498          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1499          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1500           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1501          (1937, 1992]  (101, Inf) (-Inf, 5]    (-Inf, 3]
## 1502           (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 1503           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1504          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1505          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1506          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1507          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1508          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1509          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1510           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1511          (1937, 1992]  (101, Inf) (-Inf, 5]    (-Inf, 3]
## 1512          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1513          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1514          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1515          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1516          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1517          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1518          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1519          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1520          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1521          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1522          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1523          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1524          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1525          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1526          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1527           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 1528          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1529          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1530          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1531          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1532          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1533          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1534          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1535           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1536          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1537          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1538          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1539          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1540          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1541          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1542          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1543           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 1544          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1545          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1546           (1992, Inf)   (47, 101]  (5, Inf)     (3, Inf)
## 1547          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1548          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1549          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1550           (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 1551          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1552          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1553          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1554          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1555          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1556          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1557          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1558          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1559           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1560          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1561           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 1562          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1563          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1564          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1565          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1566          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1567          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1568          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1569          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1570          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1571          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1572          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1573          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1574           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1575          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1576          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1577          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1578          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1579          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1580          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1581          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1582           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 1583          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1584          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1585          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1586          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1587          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1588          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1589          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1590          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1591           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 1592          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1593           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 1594          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1595          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1596          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1597          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1598          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1599          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1600          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1601           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1602          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1603          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1604          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1605          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1606           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1607          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1608           (1992, Inf)   (47, 101]  (5, Inf)     (3, Inf)
## 1609          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1610          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1611          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1612          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1613          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1614          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1615           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1616          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1617          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1618          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1619           (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 1620          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1621          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1622          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1623           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 1624           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1625           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1626          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1627           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 1628          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1629           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1630          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1631          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1632          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1633          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1634           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1635          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1636          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1637           (1992, Inf)   (47, 101]  (5, Inf)     (3, Inf)
## 1638          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1639          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1640           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 1641           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 1642          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1643          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1644          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1645          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1646          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1647           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1648          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1649          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1650          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1651          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1652          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1653          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1654          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1655          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1656          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1657           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 1658          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1659          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1660          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1661          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1662          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1663           (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 1664          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1665          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1666          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1667          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1668           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1669           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1670           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1671          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1672          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1673          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1674          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1675          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1676          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1677           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1678          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1679          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1680          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1681          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1682          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1683          (-Inf, 1937]   (47, 101]  (5, Inf)     (3, Inf)
## 1684          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1685          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1686          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1687           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 1688           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1689          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1690          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1691          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1692          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1693          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1694          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1695          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1696           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1697          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1698          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1699          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1700          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1701          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1702          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1703          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1704          (1937, 1992]  (101, Inf)  (5, Inf)    (-Inf, 3]
## 1705          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1706          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1707          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1708          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1709          (1937, 1992]  (101, Inf) (-Inf, 5]    (-Inf, 3]
## 1710          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1711          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1712          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1713           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1714          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1715           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1716          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1717          (1937, 1992]  (101, Inf) (-Inf, 5]    (-Inf, 3]
## 1718          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1719          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1720          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1721          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1722          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1723          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1724          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1725          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1726          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1727          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1728          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1729          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1730          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1731          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1732           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 1733          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1734          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1735           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1736          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1737          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1738           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1739          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1740          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1741          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1742           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1743          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1744          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1745          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1746          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1747          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1748          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1749          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1750          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1751           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1752          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1753          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1754          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1755          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1756           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1757          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1758          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1759          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1760          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1761          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1762          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1763          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1764          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1765           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1766          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1767          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1768          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1769          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1770          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1771           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1772          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1773          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1774           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1775          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1776           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1777           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 1778          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1779           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1780           (1992, Inf)  (101, Inf)  (5, Inf)    (-Inf, 3]
## 1781          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1782          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1783           (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 1784          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1785          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1786          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1787          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1788          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1789          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1790          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1791          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1792          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1793          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1794          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1795          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1796          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1797          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1798          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1799          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1800          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1801           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 1802          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1803          (-Inf, 1937]   (47, 101]  (5, Inf)     (3, Inf)
## 1804          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1805          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1806          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1807          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1808          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1809          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1810          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1811          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1812          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1813          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1814          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1815           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1816          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1817           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1818          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1819           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1820           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1821           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1822          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1823           (1992, Inf)  (101, Inf) (-Inf, 5]    (-Inf, 3]
## 1824          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1825          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1826           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 1827          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1828          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1829          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1830          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1831          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1832          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1833          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1834           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1835          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1836          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1837          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1838           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 1839          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1840          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1841          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1842           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1843          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1844           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1845          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1846          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1847          (1937, 1992]  (101, Inf)  (5, Inf)    (-Inf, 3]
## 1848          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1849          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1850          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1851          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1852          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1853          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1854          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1855           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 1856          (-Inf, 1937]   (47, 101]  (5, Inf)     (3, Inf)
## 1857          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1858          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1859           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1860          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1861           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1862          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1863          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1864          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1865          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1866          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1867          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1868          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1869          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1870          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1871          (1937, 1992]  (101, Inf) (-Inf, 5]    (-Inf, 3]
## 1872          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1873          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1874          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1875          (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 1876           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1877          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1878          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1879          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1880          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1881          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1882          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1883          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1884          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1885          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1886          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1887          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1888          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1889          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1890          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1891          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1892           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 1893          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1894          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1895          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1896           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1897          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1898          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1899          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1900          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1901          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1902          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1903          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1904          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1905          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1906          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1907          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1908           (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 1909           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 1910           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1911          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1912          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1913          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1914           (1992, Inf)  (101, Inf) (-Inf, 5]    (-Inf, 3]
## 1915          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1916           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1917          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1918          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1919          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1920          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1921          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1922          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1923          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1924          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1925          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1926          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1927          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1928          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1929           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1930          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1931          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1932          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1933           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1934          (1937, 1992]  (101, Inf)  (5, Inf)    (-Inf, 3]
## 1935          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1936          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1937          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1938           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1939           (1992, Inf)   (47, 101]  (5, Inf)     (3, Inf)
## 1940          (-Inf, 1937]   (47, 101]  (5, Inf)     (3, Inf)
## 1941          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1942          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1943           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1944          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1945          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1946           (1992, Inf)   (47, 101]  (5, Inf)     (3, Inf)
## 1947          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1948          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1949          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 1950          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1951          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1952          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1953          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1954          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1955          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1956          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1957          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1958          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1959           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1960          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1961           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1962          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1963           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 1964          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1965          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1966          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1967           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1968          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1969          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1970          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1971          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1972          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1973          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1974           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 1975           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1976          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1977           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1978          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1979           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 1980           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1981          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1982          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1983           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 1984          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1985          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 1986          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1987          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1988          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1989           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1990          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 1991          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 1992          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 1993          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1994          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 1995          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 1996          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 1997          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1998          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 1999          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2000          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2001          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2002          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2003          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2004           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2005          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2006          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2007          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2008          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2009          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2010          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2011          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2012          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2013          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2014           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2015          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2016          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2017          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2018          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2019          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2020          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2021          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2022          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2023          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2024          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2025          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2026          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2027          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2028           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2029          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2030           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2031          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2032          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2033          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2034          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2035          (-Inf, 1937]   (47, 101]  (5, Inf)     (3, Inf)
## 2036          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2037          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 2038          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2039          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2040          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2041           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2042          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2043          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2044          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2045          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2046          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2047          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2048          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2049           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2050          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2051           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2052          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2053           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2054           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2055          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2056          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2057          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2058          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2059          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2060          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2061          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2062           (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 2063          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2064          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2065          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2066          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2067          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 2068          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2069           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2070           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2071          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2072          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2073          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2074          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2075          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2076          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2077          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2078          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2079          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2080           (1992, Inf)   (47, 101]  (5, Inf)     (3, Inf)
## 2081           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2082          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2083          (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 2084          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2085          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2086           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2087          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2088          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2089           (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 2090          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2091          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2092          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2093           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2094          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2095          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 2096           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2097           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2098          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2099          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2100          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2101          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2102          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2103          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2104          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2105           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2106          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2107          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2108          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2109          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2110          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2111          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2112          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2113          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2114           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2115          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2116          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2117          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2118          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2119          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 2120          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2121          (1937, 1992]  (101, Inf)  (5, Inf)    (-Inf, 3]
## 2122          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2123          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2124           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2125          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2126          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2127          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2128          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2129          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 2130          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2131           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2132          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2133          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2134          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2135          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2136          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2137          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2138          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2139           (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 2140          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2141          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2142          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2143           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2144          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2145          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 2146          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2147          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2148          (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 2149          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2150          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2151          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2152          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2153          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2154          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2155          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2156           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2157          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2158          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2159          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2160          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2161          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2162          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2163          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2164          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2165          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2166           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2167           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2168          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2169          (-Inf, 1937]   (47, 101]  (5, Inf)     (3, Inf)
## 2170          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2171          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2172          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2173          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2174          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2175           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2176           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2177           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2178          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2179           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2180          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2181          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2182          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2183          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2184           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2185           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2186          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2187          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2188          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2189          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2190          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2191          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2192          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2193           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2194          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2195           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2196          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2197           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2198          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2199          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2200          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2201           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2202          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2203           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2204          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2205          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2206          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2207          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2208           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2209          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2210           (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 2211          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2212           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2213           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2214          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2215          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2216          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2217           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2218          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2219           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2220           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2221          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2222           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2223          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2224          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2225           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2226          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2227           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2228          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2229          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2230          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2231          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2232           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2233          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2234          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2235          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2236          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2237          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2238           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2239          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2240           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2241           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2242          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2243          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2244           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2245           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2246          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2247          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2248          (-Inf, 1937]   (47, 101]  (5, Inf)     (3, Inf)
## 2249           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2250           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2251          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2252          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2253          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2254           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2255          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2256           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2257           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2258          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2259          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2260          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2261          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2262          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2263           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2264           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2265           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2266           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2267          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2268          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2269          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2270          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2271           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2272          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2273          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2274          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2275           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2276          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2277          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2278          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2279          (-Inf, 1937]   (47, 101]  (5, Inf)     (3, Inf)
## 2280          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2281          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2282          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2283          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2284          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2285          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2286          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2287          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2288          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2289          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2290          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2291           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2292          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2293           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2294           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2295          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2296          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2297          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2298          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2299          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2300          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2301           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2302          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2303          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2304           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2305          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2306          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2307           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2308           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2309           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2310          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2311          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2312          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2313          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2314           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2315          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2316          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2317          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2318          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2319          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2320          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2321          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2322          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2323           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2324          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2325          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2326          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2327          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2328           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2329          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2330          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2331           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2332          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2333          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2334           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2335          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2336           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2337           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2338          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2339          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2340          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2341          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2342          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2343          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2344          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2345          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2346          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2347           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2348          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2349          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2350          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2351          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2352          (-Inf, 1937]   (47, 101]  (5, Inf)     (3, Inf)
## 2353          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2354          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2355          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2356          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2357           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2358          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2359          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2360           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2361          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2362           (1992, Inf)   (47, 101]  (5, Inf)     (3, Inf)
## 2363          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2364          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2365          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2366          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2367          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2368          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2369          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2370          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2371           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2372          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2373          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2374          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2375          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2376          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 2377          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2378           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2379          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2380          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2381          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2382          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2383          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2384          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2385          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2386          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2387          (1937, 1992]  (101, Inf)  (5, Inf)    (-Inf, 3]
## 2388          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2389          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2390          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 2391          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2392          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2393          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2394          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2395          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2396          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2397          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2398          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2399          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2400           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2401          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2402          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2403          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2404          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2405          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2406          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2407          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2408           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2409          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2410          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2411          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2412           (1992, Inf)  (101, Inf)  (5, Inf)    (-Inf, 3]
## 2413          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2414           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2415          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2416          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2417          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2418          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2419           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2420          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2421          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2422          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2423          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2424          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2425          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2426          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2427          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2428          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2429          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2430          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2431           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2432           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2433          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2434           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2435          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2436          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2437          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2438          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2439          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2440          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2441          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2442          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2443          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2444          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2445          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2446           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2447          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2448          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2449          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2450           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2451           (1992, Inf)  (101, Inf)  (5, Inf)    (-Inf, 3]
## 2452          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2453          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2454          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2455          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2456          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2457           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2458          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2459          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2460          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2461          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2462          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2463          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2464          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2465          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2466          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2467          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2468          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2469          (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 2470          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2471          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2472          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 2473          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2474          (-Inf, 1937]  (101, Inf)  (5, Inf)    (-Inf, 3]
## 2475          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2476           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2477          (-Inf, 1937]  (101, Inf) (-Inf, 5]    (-Inf, 3]
## 2478          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2479          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2480          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2481           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2482          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2483          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2484          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2485          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2486          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2487          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 2488          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2489           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2490          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2491           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2492          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2493           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2494          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2495          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2496          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2497          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2498          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 2499          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2500           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2501          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2502          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2503           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2504           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2505          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2506           (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 2507          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2508          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2509          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2510           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2511          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2512          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2513          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2514          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2515          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2516          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2517          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2518          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2519          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2520          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2521          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2522          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2523          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2524          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2525          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2526           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2527          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2528          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2529          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2530          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2531          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2532          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2533          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2534          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2535          (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 2536          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2537          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2538           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2539          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2540          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2541           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2542          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2543           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2544           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2545          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2546          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2547          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 2548          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2549          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2550          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2551          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2552          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2553           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2554          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2555          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2556          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2557          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2558          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2559          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2560           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2561          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2562          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2563          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2564           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2565          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2566          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2567           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2568          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 2569          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2570          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2571          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2572           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2573           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2574          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2575          (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 2576          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2577          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2578          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2579          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2580          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2581          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2582          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2583           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2584          (-Inf, 1937]   (47, 101]  (5, Inf)     (3, Inf)
## 2585          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2586          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2587          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2588          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2589          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2590          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2591          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2592           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2593          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2594          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2595           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2596          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2597          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2598          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2599          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2600          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2601           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2602          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2603          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2604          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2605          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2606          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2607           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2608          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2609          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2610          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2611          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2612           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2613          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2614          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2615          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2616          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2617          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2618          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2619          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 2620          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2621           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2622           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2623          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 2624          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2625           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2626           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2627          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2628          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2629          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2630          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2631          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2632          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2633          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2634           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2635          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2636           (1992, Inf)   (47, 101]  (5, Inf)     (3, Inf)
## 2637          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2638          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2639          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2640          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2641           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2642           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2643           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2644          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2645           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2646          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2647          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2648          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2649          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2650          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2651          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2652          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2653          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2654           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2655          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2656          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2657          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2658           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2659           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2660          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2661          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2662          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2663          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2664          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2665          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2666           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2667          (1937, 1992]  (101, Inf)  (5, Inf)    (-Inf, 3]
## 2668          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2669          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2670          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2671          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2672          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2673          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2674          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2675          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2676          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2677          (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 2678          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2679          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2680           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2681          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2682          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2683          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2684          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2685          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2686          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2687           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2688          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2689           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2690          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2691          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2692          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2693          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2694          (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 2695          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2696          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2697          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2698          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2699          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2700          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2701          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2702          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 2703          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2704          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2705          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2706          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2707          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2708          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2709           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2710          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2711           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2712          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2713          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2714          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2715           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2716          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2717          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2718           (1992, Inf)   (47, 101]  (5, Inf)     (3, Inf)
## 2719          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2720          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2721          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2722          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2723           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2724          (-Inf, 1937]  (101, Inf)  (5, Inf)    (-Inf, 3]
## 2725          (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 2726          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2727          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2728          (-Inf, 1937]   (47, 101]  (5, Inf)     (3, Inf)
## 2729          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2730          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2731           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2732          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2733           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2734          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2735          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2736          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2737          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2738           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2739          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2740          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2741           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2742          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2743          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2744          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2745          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2746          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2747           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2748          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2749          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 2750          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2751          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2752          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2753          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2754          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2755           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2756          (1937, 1992]  (101, Inf)  (5, Inf)    (-Inf, 3]
## 2757          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2758           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2759           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2760          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2761          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2762          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2763          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2764          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2765          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2766           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2767          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2768          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2769          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2770          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2771          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2772          (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 2773          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2774           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2775          (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 2776          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2777          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2778           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2779          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2780          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2781           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2782          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2783          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2784          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2785           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2786          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2787          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2788          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2789          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2790          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2791          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2792          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2793           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2794           (1992, Inf)   (47, 101]  (5, Inf)     (3, Inf)
## 2795           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2796          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2797          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2798          (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 2799           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2800          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2801          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2802          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2803          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2804          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2805          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2806          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2807           (1992, Inf)  (101, Inf)  (5, Inf)    (-Inf, 3]
## 2808          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2809          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2810          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2811           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2812           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2813           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2814           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2815          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2816          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2817          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2818          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2819          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2820           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2821          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2822          (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 2823          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2824          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2825          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2826           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2827          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2828          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2829          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2830          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2831           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2832          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2833           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2834          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2835           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2836          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2837           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2838          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2839          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2840          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2841          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2842          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2843          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2844          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2845          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2846          (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 2847          (-Inf, 1937]  (101, Inf) (-Inf, 5]    (-Inf, 3]
## 2848          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2849          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2850          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2851          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2852           (1992, Inf)   (47, 101]  (5, Inf)     (3, Inf)
## 2853          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2854          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2855          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 2856          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2857          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2858          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2859          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2860           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2861          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2862          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2863          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2864          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2865          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2866          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2867           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2868           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2869          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2870          (-Inf, 1937]   (47, 101] (-Inf, 5]     (3, Inf)
## 2871          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2872          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2873          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2874          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2875          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2876          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2877          (-Inf, 1937]  (101, Inf)  (5, Inf)    (-Inf, 3]
## 2878          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2879          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2880          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2881          (-Inf, 1937]  (101, Inf)  (5, Inf)     (3, Inf)
## 2882          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2883          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2884          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2885           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2886          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2887          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2888          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2889          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2890           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2891           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2892          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2893          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2894          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2895          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2896          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2897          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2898          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2899          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2900          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2901          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2902           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2903          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2904          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2905           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2906          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2907           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2908           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2909          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2910          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2911          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2912          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2913          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2914           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2915           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2916          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2917          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2918          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2919          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2920           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2921           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2922          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2923           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2924          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2925          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2926          (-Inf, 1937]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2927           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2928          (-Inf, 1937]   (47, 101]  (5, Inf)     (3, Inf)
## 2929          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2930          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2931           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2932          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2933          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2934          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2935          (-Inf, 1937]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2936          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2937          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2938          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2939          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2940          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2941          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2942           (1992, Inf)  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2943           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2944          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2945           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2946          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2947           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2948          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2949          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2950          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2951          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2952          (-Inf, 1937]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2953           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2954          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2955          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2956          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2957           (1992, Inf)  (101, Inf) (-Inf, 5]     (3, Inf)
## 2958           (1992, Inf)   (47, 101] (-Inf, 5]     (3, Inf)
## 2959          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2960          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2961          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2962          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2963          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2964           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2965          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2966           (1992, Inf)  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2967          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2968          (-Inf, 1937]   (47, 101]  (5, Inf)     (3, Inf)
## 2969           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2970          (-Inf, 1937]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2971          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 2972          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2973          (1937, 1992]   (47, 101] (-Inf, 5]     (3, Inf)
## 2974          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2975           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2976          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2977          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2978          (1937, 1992]   (47, 101]  (5, Inf)     (3, Inf)
## 2979          (1937, 1992]  (101, Inf)  (5, Inf)     (3, Inf)
## 2980          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2981          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2982          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2983           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2984          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2985          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2986          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2987           (1992, Inf)   (47, 101]  (5, Inf)     (3, Inf)
## 2988           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2989           (1992, Inf)   (47, 101] (-Inf, 5]    (-Inf, 3]
## 2990          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2991          (1937, 1992]  (101, Inf) (-Inf, 5]     (3, Inf)
## 2992           (1992, Inf)  (101, Inf)  (5, Inf)     (3, Inf)
## 2993          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2994          (1937, 1992]  (-Inf, 47] (-Inf, 5]    (-Inf, 3]
## 2995          (1937, 1992]   (47, 101]  (5, Inf)    (-Inf, 3]
## 2996           (1992, Inf)   (47, 101]  (5, Inf)    (-Inf, 3]
## 2997           (1992, Inf)   (47, 101]  (5, Inf)     (3, Inf)
## 2998          (1937, 1992]  (-Inf, 47]  (5, Inf)    (-Inf, 3]
## 2999          (-Inf, 1937]   (47, 101]  (5, Inf)    (-Inf, 3]
## 3000          (1937, 1992]   (47, 101] (-Inf, 5]    (-Inf, 3]
##                                 district_new
## 1    Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2                                Srodmiescie
## 3    Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 4    Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 5    Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 6                    Mokotow_Ochota_Zoliborz
## 7    Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 8                    Mokotow_Ochota_Zoliborz
## 9    Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 10   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 11                   Mokotow_Ochota_Zoliborz
## 12                   Mokotow_Ochota_Zoliborz
## 13                   Mokotow_Ochota_Zoliborz
## 14   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 15   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 16   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 17   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 18   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 19                   Mokotow_Ochota_Zoliborz
## 20                   Mokotow_Ochota_Zoliborz
## 21   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 22   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 23   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 24                   Mokotow_Ochota_Zoliborz
## 25                   Mokotow_Ochota_Zoliborz
## 26   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 27                               Srodmiescie
## 28                               Srodmiescie
## 29                   Mokotow_Ochota_Zoliborz
## 30                               Srodmiescie
## 31                               Srodmiescie
## 32                               Srodmiescie
## 33                   Mokotow_Ochota_Zoliborz
## 34                   Mokotow_Ochota_Zoliborz
## 35   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 36   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 37   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 38   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 39   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 40                   Mokotow_Ochota_Zoliborz
## 41   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 42                               Srodmiescie
## 43   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 44   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 45   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 46   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 47   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 48                               Srodmiescie
## 49   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 50   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 51                   Mokotow_Ochota_Zoliborz
## 52   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 53   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 54                   Mokotow_Ochota_Zoliborz
## 55   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 56   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 57   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 58                   Mokotow_Ochota_Zoliborz
## 59                   Mokotow_Ochota_Zoliborz
## 60   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 61   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 62   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 63                   Mokotow_Ochota_Zoliborz
## 64                   Mokotow_Ochota_Zoliborz
## 65   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 66   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 67   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 68                               Srodmiescie
## 69   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 70   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 71   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 72                   Mokotow_Ochota_Zoliborz
## 73                   Mokotow_Ochota_Zoliborz
## 74   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 75   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 76   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 77   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 78   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 79   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 80   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 81   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 82   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 83   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 84   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 85                               Srodmiescie
## 86   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 87   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 88   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 89                               Srodmiescie
## 90                   Mokotow_Ochota_Zoliborz
## 91   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 92   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 93   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 94                   Mokotow_Ochota_Zoliborz
## 95   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 96   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 97   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 98   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 99   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 100                              Srodmiescie
## 101  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 102  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 103                  Mokotow_Ochota_Zoliborz
## 104  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 105  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 106  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 107  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 108  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 109  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 110  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 111                              Srodmiescie
## 112  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 113  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 114  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 115  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 116                              Srodmiescie
## 117  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 118                  Mokotow_Ochota_Zoliborz
## 119  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 120                  Mokotow_Ochota_Zoliborz
## 121  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 122  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 123  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 124  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 125  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 126  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 127                              Srodmiescie
## 128  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 129                  Mokotow_Ochota_Zoliborz
## 130  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 131                  Mokotow_Ochota_Zoliborz
## 132  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 133  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 134  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 135                  Mokotow_Ochota_Zoliborz
## 136  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 137                  Mokotow_Ochota_Zoliborz
## 138                  Mokotow_Ochota_Zoliborz
## 139  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 140                  Mokotow_Ochota_Zoliborz
## 141  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 142                              Srodmiescie
## 143  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 144  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 145  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 146  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 147  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 148  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 149                  Mokotow_Ochota_Zoliborz
## 150  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 151  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 152  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 153  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 154  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 155  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 156                  Mokotow_Ochota_Zoliborz
## 157  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 158  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 159  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 160  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 161                  Mokotow_Ochota_Zoliborz
## 162                              Srodmiescie
## 163  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 164  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 165  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 166                              Srodmiescie
## 167                  Mokotow_Ochota_Zoliborz
## 168  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 169  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 170  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 171  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 172  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 173                  Mokotow_Ochota_Zoliborz
## 174  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 175  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 176  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 177  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 178  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 179  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 180  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 181  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 182  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 183  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 184  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 185  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 186  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 187                              Srodmiescie
## 188                  Mokotow_Ochota_Zoliborz
## 189  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 190  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 191                  Mokotow_Ochota_Zoliborz
## 192  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 193                  Mokotow_Ochota_Zoliborz
## 194                  Mokotow_Ochota_Zoliborz
## 195                  Mokotow_Ochota_Zoliborz
## 196                  Mokotow_Ochota_Zoliborz
## 197  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 198  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 199                  Mokotow_Ochota_Zoliborz
## 200  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 201  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 202                  Mokotow_Ochota_Zoliborz
## 203  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 204  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 205  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 206  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 207                              Srodmiescie
## 208                              Srodmiescie
## 209  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 210                  Mokotow_Ochota_Zoliborz
## 211  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 212  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 213  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 214  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 215  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 216                  Mokotow_Ochota_Zoliborz
## 217                  Mokotow_Ochota_Zoliborz
## 218                  Mokotow_Ochota_Zoliborz
## 219  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 220  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 221                  Mokotow_Ochota_Zoliborz
## 222  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 223  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 224                              Srodmiescie
## 225  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 226  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 227                              Srodmiescie
## 228  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 229                  Mokotow_Ochota_Zoliborz
## 230  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 231                              Srodmiescie
## 232  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 233  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 234                  Mokotow_Ochota_Zoliborz
## 235  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 236  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 237  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 238  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 239  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 240                  Mokotow_Ochota_Zoliborz
## 241                  Mokotow_Ochota_Zoliborz
## 242                  Mokotow_Ochota_Zoliborz
## 243  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 244                  Mokotow_Ochota_Zoliborz
## 245                  Mokotow_Ochota_Zoliborz
## 246  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 247  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 248  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 249  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 250  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 251                  Mokotow_Ochota_Zoliborz
## 252                  Mokotow_Ochota_Zoliborz
## 253  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 254  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 255                              Srodmiescie
## 256                  Mokotow_Ochota_Zoliborz
## 257  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 258                  Mokotow_Ochota_Zoliborz
## 259                  Mokotow_Ochota_Zoliborz
## 260  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 261  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 262  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 263  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 264                  Mokotow_Ochota_Zoliborz
## 265  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 266  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 267  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 268  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 269  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 270  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 271  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 272  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 273                  Mokotow_Ochota_Zoliborz
## 274  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 275  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 276                              Srodmiescie
## 277                  Mokotow_Ochota_Zoliborz
## 278  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 279                  Mokotow_Ochota_Zoliborz
## 280                              Srodmiescie
## 281                              Srodmiescie
## 282                  Mokotow_Ochota_Zoliborz
## 283                              Srodmiescie
## 284  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 285  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 286                  Mokotow_Ochota_Zoliborz
## 287                  Mokotow_Ochota_Zoliborz
## 288  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 289  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 290  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 291  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 292  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 293                  Mokotow_Ochota_Zoliborz
## 294  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 295                  Mokotow_Ochota_Zoliborz
## 296                  Mokotow_Ochota_Zoliborz
## 297                  Mokotow_Ochota_Zoliborz
## 298  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 299  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 300  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 301  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 302                  Mokotow_Ochota_Zoliborz
## 303                  Mokotow_Ochota_Zoliborz
## 304  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 305                  Mokotow_Ochota_Zoliborz
## 306  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 307                  Mokotow_Ochota_Zoliborz
## 308                  Mokotow_Ochota_Zoliborz
## 309                              Srodmiescie
## 310                              Srodmiescie
## 311  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 312  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 313  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 314  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 315                  Mokotow_Ochota_Zoliborz
## 316  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 317  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 318  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 319                  Mokotow_Ochota_Zoliborz
## 320                  Mokotow_Ochota_Zoliborz
## 321  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 322  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 323  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 324  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 325  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 326  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 327  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 328  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 329                              Srodmiescie
## 330                              Srodmiescie
## 331                  Mokotow_Ochota_Zoliborz
## 332  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 333                              Srodmiescie
## 334                  Mokotow_Ochota_Zoliborz
## 335                  Mokotow_Ochota_Zoliborz
## 336  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 337  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 338  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 339  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 340                  Mokotow_Ochota_Zoliborz
## 341  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 342  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 343  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 344  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 345  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 346  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 347                  Mokotow_Ochota_Zoliborz
## 348  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 349  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 350                  Mokotow_Ochota_Zoliborz
## 351  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 352                              Srodmiescie
## 353  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 354                  Mokotow_Ochota_Zoliborz
## 355  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 356                  Mokotow_Ochota_Zoliborz
## 357  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 358  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 359  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 360  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 361  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 362  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 363  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 364  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 365  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 366  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 367  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 368                              Srodmiescie
## 369                  Mokotow_Ochota_Zoliborz
## 370  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 371                  Mokotow_Ochota_Zoliborz
## 372  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 373  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 374  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 375  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 376  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 377  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 378  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 379  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 380                  Mokotow_Ochota_Zoliborz
## 381                              Srodmiescie
## 382  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 383                  Mokotow_Ochota_Zoliborz
## 384  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 385                  Mokotow_Ochota_Zoliborz
## 386  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 387                  Mokotow_Ochota_Zoliborz
## 388                  Mokotow_Ochota_Zoliborz
## 389                  Mokotow_Ochota_Zoliborz
## 390                  Mokotow_Ochota_Zoliborz
## 391                  Mokotow_Ochota_Zoliborz
## 392  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 393                  Mokotow_Ochota_Zoliborz
## 394                  Mokotow_Ochota_Zoliborz
## 395                  Mokotow_Ochota_Zoliborz
## 396                              Srodmiescie
## 397  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 398  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 399                  Mokotow_Ochota_Zoliborz
## 400                  Mokotow_Ochota_Zoliborz
## 401                  Mokotow_Ochota_Zoliborz
## 402  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 403  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 404  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 405  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 406  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 407                              Srodmiescie
## 408  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 409                  Mokotow_Ochota_Zoliborz
## 410  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 411                  Mokotow_Ochota_Zoliborz
## 412                  Mokotow_Ochota_Zoliborz
## 413  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 414                  Mokotow_Ochota_Zoliborz
## 415                  Mokotow_Ochota_Zoliborz
## 416                              Srodmiescie
## 417  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 418  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 419                  Mokotow_Ochota_Zoliborz
## 420  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 421                  Mokotow_Ochota_Zoliborz
## 422  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 423                  Mokotow_Ochota_Zoliborz
## 424  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 425  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 426  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 427  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 428                              Srodmiescie
## 429                  Mokotow_Ochota_Zoliborz
## 430  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 431                              Srodmiescie
## 432                  Mokotow_Ochota_Zoliborz
## 433  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 434  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 435                  Mokotow_Ochota_Zoliborz
## 436  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 437  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 438  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 439                  Mokotow_Ochota_Zoliborz
## 440                  Mokotow_Ochota_Zoliborz
## 441  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 442  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 443  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 444                  Mokotow_Ochota_Zoliborz
## 445  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 446  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 447  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 448                  Mokotow_Ochota_Zoliborz
## 449  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 450  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 451                              Srodmiescie
## 452  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 453                  Mokotow_Ochota_Zoliborz
## 454  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 455  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 456  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 457  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 458                  Mokotow_Ochota_Zoliborz
## 459  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 460  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 461  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 462                              Srodmiescie
## 463                  Mokotow_Ochota_Zoliborz
## 464  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 465  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 466  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 467                  Mokotow_Ochota_Zoliborz
## 468  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 469  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 470  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 471  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 472                  Mokotow_Ochota_Zoliborz
## 473  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 474                  Mokotow_Ochota_Zoliborz
## 475  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 476  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 477                  Mokotow_Ochota_Zoliborz
## 478  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 479                  Mokotow_Ochota_Zoliborz
## 480                  Mokotow_Ochota_Zoliborz
## 481  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 482                  Mokotow_Ochota_Zoliborz
## 483  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 484  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 485  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 486                  Mokotow_Ochota_Zoliborz
## 487                  Mokotow_Ochota_Zoliborz
## 488  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 489  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 490  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 491  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 492                  Mokotow_Ochota_Zoliborz
## 493                  Mokotow_Ochota_Zoliborz
## 494  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 495                  Mokotow_Ochota_Zoliborz
## 496  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 497  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 498                  Mokotow_Ochota_Zoliborz
## 499  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 500  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 501                  Mokotow_Ochota_Zoliborz
## 502                  Mokotow_Ochota_Zoliborz
## 503  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 504                  Mokotow_Ochota_Zoliborz
## 505  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 506                              Srodmiescie
## 507                  Mokotow_Ochota_Zoliborz
## 508                  Mokotow_Ochota_Zoliborz
## 509                              Srodmiescie
## 510  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 511  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 512  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 513                  Mokotow_Ochota_Zoliborz
## 514                  Mokotow_Ochota_Zoliborz
## 515  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 516                  Mokotow_Ochota_Zoliborz
## 517  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 518  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 519  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 520                  Mokotow_Ochota_Zoliborz
## 521                  Mokotow_Ochota_Zoliborz
## 522  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 523  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 524                  Mokotow_Ochota_Zoliborz
## 525                  Mokotow_Ochota_Zoliborz
## 526                  Mokotow_Ochota_Zoliborz
## 527  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 528  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 529                              Srodmiescie
## 530                  Mokotow_Ochota_Zoliborz
## 531                              Srodmiescie
## 532  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 533  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 534  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 535  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 536  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 537                              Srodmiescie
## 538                              Srodmiescie
## 539  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 540  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 541                              Srodmiescie
## 542  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 543                              Srodmiescie
## 544                              Srodmiescie
## 545                  Mokotow_Ochota_Zoliborz
## 546  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 547  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 548                  Mokotow_Ochota_Zoliborz
## 549  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 550                              Srodmiescie
## 551  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 552  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 553  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 554  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 555  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 556  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 557  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 558  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 559                  Mokotow_Ochota_Zoliborz
## 560                              Srodmiescie
## 561  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 562                              Srodmiescie
## 563                  Mokotow_Ochota_Zoliborz
## 564  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 565  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 566                  Mokotow_Ochota_Zoliborz
## 567  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 568  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 569  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 570  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 571                  Mokotow_Ochota_Zoliborz
## 572  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 573                  Mokotow_Ochota_Zoliborz
## 574                  Mokotow_Ochota_Zoliborz
## 575  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 576                  Mokotow_Ochota_Zoliborz
## 577                  Mokotow_Ochota_Zoliborz
## 578  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 579  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 580  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 581                              Srodmiescie
## 582                              Srodmiescie
## 583  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 584  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 585                              Srodmiescie
## 586                  Mokotow_Ochota_Zoliborz
## 587                  Mokotow_Ochota_Zoliborz
## 588  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 589                  Mokotow_Ochota_Zoliborz
## 590  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 591  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 592  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 593  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 594  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 595  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 596                  Mokotow_Ochota_Zoliborz
## 597                  Mokotow_Ochota_Zoliborz
## 598  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 599  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 600  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 601                  Mokotow_Ochota_Zoliborz
## 602                  Mokotow_Ochota_Zoliborz
## 603  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 604  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 605                  Mokotow_Ochota_Zoliborz
## 606                  Mokotow_Ochota_Zoliborz
## 607                              Srodmiescie
## 608  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 609                  Mokotow_Ochota_Zoliborz
## 610                  Mokotow_Ochota_Zoliborz
## 611                  Mokotow_Ochota_Zoliborz
## 612  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 613  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 614                              Srodmiescie
## 615  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 616  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 617  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 618  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 619                  Mokotow_Ochota_Zoliborz
## 620  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 621                  Mokotow_Ochota_Zoliborz
## 622  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 623                  Mokotow_Ochota_Zoliborz
## 624  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 625                              Srodmiescie
## 626                  Mokotow_Ochota_Zoliborz
## 627  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 628                  Mokotow_Ochota_Zoliborz
## 629  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 630  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 631                              Srodmiescie
## 632                  Mokotow_Ochota_Zoliborz
## 633                  Mokotow_Ochota_Zoliborz
## 634                              Srodmiescie
## 635  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 636  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 637                  Mokotow_Ochota_Zoliborz
## 638  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 639                  Mokotow_Ochota_Zoliborz
## 640                  Mokotow_Ochota_Zoliborz
## 641  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 642  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 643                  Mokotow_Ochota_Zoliborz
## 644  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 645  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 646  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 647  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 648  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 649                  Mokotow_Ochota_Zoliborz
## 650  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 651                  Mokotow_Ochota_Zoliborz
## 652                  Mokotow_Ochota_Zoliborz
## 653                  Mokotow_Ochota_Zoliborz
## 654                  Mokotow_Ochota_Zoliborz
## 655                  Mokotow_Ochota_Zoliborz
## 656  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 657                  Mokotow_Ochota_Zoliborz
## 658  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 659                  Mokotow_Ochota_Zoliborz
## 660                  Mokotow_Ochota_Zoliborz
## 661  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 662  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 663                  Mokotow_Ochota_Zoliborz
## 664  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 665                  Mokotow_Ochota_Zoliborz
## 666                  Mokotow_Ochota_Zoliborz
## 667  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 668  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 669  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 670                  Mokotow_Ochota_Zoliborz
## 671  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 672                  Mokotow_Ochota_Zoliborz
## 673  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 674  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 675                              Srodmiescie
## 676                  Mokotow_Ochota_Zoliborz
## 677  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 678                  Mokotow_Ochota_Zoliborz
## 679                  Mokotow_Ochota_Zoliborz
## 680                              Srodmiescie
## 681  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 682                              Srodmiescie
## 683  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 684  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 685                  Mokotow_Ochota_Zoliborz
## 686  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 687                  Mokotow_Ochota_Zoliborz
## 688                  Mokotow_Ochota_Zoliborz
## 689  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 690  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 691  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 692  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 693  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 694                  Mokotow_Ochota_Zoliborz
## 695  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 696                  Mokotow_Ochota_Zoliborz
## 697  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 698  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 699  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 700  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 701                  Mokotow_Ochota_Zoliborz
## 702  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 703                  Mokotow_Ochota_Zoliborz
## 704                              Srodmiescie
## 705  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 706  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 707  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 708  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 709  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 710                  Mokotow_Ochota_Zoliborz
## 711  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 712  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 713  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 714  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 715  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 716  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 717                  Mokotow_Ochota_Zoliborz
## 718                  Mokotow_Ochota_Zoliborz
## 719                  Mokotow_Ochota_Zoliborz
## 720  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 721                              Srodmiescie
## 722  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 723  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 724  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 725  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 726  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 727                  Mokotow_Ochota_Zoliborz
## 728  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 729                  Mokotow_Ochota_Zoliborz
## 730  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 731  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 732  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 733                  Mokotow_Ochota_Zoliborz
## 734  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 735                  Mokotow_Ochota_Zoliborz
## 736  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 737  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 738                              Srodmiescie
## 739  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 740                  Mokotow_Ochota_Zoliborz
## 741  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 742  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 743                  Mokotow_Ochota_Zoliborz
## 744  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 745                  Mokotow_Ochota_Zoliborz
## 746                  Mokotow_Ochota_Zoliborz
## 747                  Mokotow_Ochota_Zoliborz
## 748  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 749  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 750  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 751  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 752                  Mokotow_Ochota_Zoliborz
## 753                  Mokotow_Ochota_Zoliborz
## 754  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 755  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 756  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 757  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 758                  Mokotow_Ochota_Zoliborz
## 759  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 760                  Mokotow_Ochota_Zoliborz
## 761  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 762  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 763  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 764                  Mokotow_Ochota_Zoliborz
## 765  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 766                              Srodmiescie
## 767                  Mokotow_Ochota_Zoliborz
## 768                              Srodmiescie
## 769  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 770  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 771                  Mokotow_Ochota_Zoliborz
## 772  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 773                              Srodmiescie
## 774  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 775  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 776                  Mokotow_Ochota_Zoliborz
## 777  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 778  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 779  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 780                  Mokotow_Ochota_Zoliborz
## 781  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 782  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 783  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 784                  Mokotow_Ochota_Zoliborz
## 785  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 786  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 787                              Srodmiescie
## 788  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 789                  Mokotow_Ochota_Zoliborz
## 790  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 791                  Mokotow_Ochota_Zoliborz
## 792  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 793  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 794  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 795  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 796  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 797                  Mokotow_Ochota_Zoliborz
## 798  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 799  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 800                  Mokotow_Ochota_Zoliborz
## 801  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 802  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 803                              Srodmiescie
## 804                  Mokotow_Ochota_Zoliborz
## 805                              Srodmiescie
## 806  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 807                              Srodmiescie
## 808  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 809                  Mokotow_Ochota_Zoliborz
## 810  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 811  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 812                  Mokotow_Ochota_Zoliborz
## 813  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 814  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 815  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 816                              Srodmiescie
## 817  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 818  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 819  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 820                  Mokotow_Ochota_Zoliborz
## 821  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 822                  Mokotow_Ochota_Zoliborz
## 823                  Mokotow_Ochota_Zoliborz
## 824  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 825                  Mokotow_Ochota_Zoliborz
## 826  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 827  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 828  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 829                  Mokotow_Ochota_Zoliborz
## 830  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 831                              Srodmiescie
## 832                  Mokotow_Ochota_Zoliborz
## 833                  Mokotow_Ochota_Zoliborz
## 834                  Mokotow_Ochota_Zoliborz
## 835  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 836  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 837  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 838  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 839  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 840  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 841  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 842  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 843  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 844  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 845  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 846  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 847  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 848                  Mokotow_Ochota_Zoliborz
## 849                              Srodmiescie
## 850                              Srodmiescie
## 851  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 852  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 853  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 854  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 855                              Srodmiescie
## 856  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 857                  Mokotow_Ochota_Zoliborz
## 858  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 859                  Mokotow_Ochota_Zoliborz
## 860                  Mokotow_Ochota_Zoliborz
## 861                  Mokotow_Ochota_Zoliborz
## 862                              Srodmiescie
## 863                  Mokotow_Ochota_Zoliborz
## 864  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 865  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 866  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 867  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 868                  Mokotow_Ochota_Zoliborz
## 869  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 870                  Mokotow_Ochota_Zoliborz
## 871                  Mokotow_Ochota_Zoliborz
## 872  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 873                  Mokotow_Ochota_Zoliborz
## 874  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 875                  Mokotow_Ochota_Zoliborz
## 876                              Srodmiescie
## 877  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 878  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 879  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 880  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 881  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 882  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 883  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 884                  Mokotow_Ochota_Zoliborz
## 885  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 886  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 887  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 888                  Mokotow_Ochota_Zoliborz
## 889                              Srodmiescie
## 890  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 891  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 892                              Srodmiescie
## 893  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 894  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 895  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 896                              Srodmiescie
## 897                              Srodmiescie
## 898                  Mokotow_Ochota_Zoliborz
## 899  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 900                  Mokotow_Ochota_Zoliborz
## 901  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 902                              Srodmiescie
## 903  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 904  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 905  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 906  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 907  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 908                              Srodmiescie
## 909  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 910  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 911                  Mokotow_Ochota_Zoliborz
## 912                  Mokotow_Ochota_Zoliborz
## 913  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 914  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 915  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 916                              Srodmiescie
## 917  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 918  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 919  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 920  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 921                  Mokotow_Ochota_Zoliborz
## 922                  Mokotow_Ochota_Zoliborz
## 923                  Mokotow_Ochota_Zoliborz
## 924                  Mokotow_Ochota_Zoliborz
## 925  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 926  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 927                  Mokotow_Ochota_Zoliborz
## 928  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 929  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 930  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 931  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 932  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 933                  Mokotow_Ochota_Zoliborz
## 934  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 935                              Srodmiescie
## 936                  Mokotow_Ochota_Zoliborz
## 937  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 938                  Mokotow_Ochota_Zoliborz
## 939                  Mokotow_Ochota_Zoliborz
## 940  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 941                  Mokotow_Ochota_Zoliborz
## 942  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 943  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 944                  Mokotow_Ochota_Zoliborz
## 945                              Srodmiescie
## 946  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 947  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 948                  Mokotow_Ochota_Zoliborz
## 949  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 950  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 951                  Mokotow_Ochota_Zoliborz
## 952  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 953  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 954  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 955  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 956  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 957  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 958  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 959                              Srodmiescie
## 960  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 961  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 962  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 963  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 964  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 965                  Mokotow_Ochota_Zoliborz
## 966  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 967                  Mokotow_Ochota_Zoliborz
## 968  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 969  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 970  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 971  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 972  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 973  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 974  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 975                  Mokotow_Ochota_Zoliborz
## 976                  Mokotow_Ochota_Zoliborz
## 977                              Srodmiescie
## 978  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 979                              Srodmiescie
## 980  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 981                  Mokotow_Ochota_Zoliborz
## 982                  Mokotow_Ochota_Zoliborz
## 983  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 984  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 985                              Srodmiescie
## 986  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 987                              Srodmiescie
## 988  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 989  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 990                  Mokotow_Ochota_Zoliborz
## 991  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 992  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 993                  Mokotow_Ochota_Zoliborz
## 994                  Mokotow_Ochota_Zoliborz
## 995  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 996  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 997  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 998  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 999  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1000 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1001 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1002 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1003                             Srodmiescie
## 1004 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1005                 Mokotow_Ochota_Zoliborz
## 1006 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1007                             Srodmiescie
## 1008 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1009 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1010                 Mokotow_Ochota_Zoliborz
## 1011                 Mokotow_Ochota_Zoliborz
## 1012 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1013 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1014 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1015                 Mokotow_Ochota_Zoliborz
## 1016 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1017 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1018 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1019                 Mokotow_Ochota_Zoliborz
## 1020                 Mokotow_Ochota_Zoliborz
## 1021 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1022 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1023                 Mokotow_Ochota_Zoliborz
## 1024 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1025 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1026 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1027 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1028 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1029 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1030 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1031                 Mokotow_Ochota_Zoliborz
## 1032                 Mokotow_Ochota_Zoliborz
## 1033                             Srodmiescie
## 1034                             Srodmiescie
## 1035 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1036 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1037 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1038 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1039 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1040                             Srodmiescie
## 1041 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1042                 Mokotow_Ochota_Zoliborz
## 1043 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1044 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1045                 Mokotow_Ochota_Zoliborz
## 1046 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1047                             Srodmiescie
## 1048 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1049 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1050 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1051                 Mokotow_Ochota_Zoliborz
## 1052 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1053                 Mokotow_Ochota_Zoliborz
## 1054 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1055                 Mokotow_Ochota_Zoliborz
## 1056                 Mokotow_Ochota_Zoliborz
## 1057 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1058 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1059                 Mokotow_Ochota_Zoliborz
## 1060 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1061 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1062                 Mokotow_Ochota_Zoliborz
## 1063 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1064 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1065 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1066 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1067                 Mokotow_Ochota_Zoliborz
## 1068 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1069                 Mokotow_Ochota_Zoliborz
## 1070                 Mokotow_Ochota_Zoliborz
## 1071                 Mokotow_Ochota_Zoliborz
## 1072 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1073                 Mokotow_Ochota_Zoliborz
## 1074 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1075 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1076                 Mokotow_Ochota_Zoliborz
## 1077                             Srodmiescie
## 1078 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1079 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1080 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1081 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1082                             Srodmiescie
## 1083                 Mokotow_Ochota_Zoliborz
## 1084 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1085 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1086                 Mokotow_Ochota_Zoliborz
## 1087 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1088                             Srodmiescie
## 1089 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1090                 Mokotow_Ochota_Zoliborz
## 1091 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1092                 Mokotow_Ochota_Zoliborz
## 1093                 Mokotow_Ochota_Zoliborz
## 1094                 Mokotow_Ochota_Zoliborz
## 1095                 Mokotow_Ochota_Zoliborz
## 1096                 Mokotow_Ochota_Zoliborz
## 1097 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1098 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1099                 Mokotow_Ochota_Zoliborz
## 1100 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1101 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1102                 Mokotow_Ochota_Zoliborz
## 1103                 Mokotow_Ochota_Zoliborz
## 1104                 Mokotow_Ochota_Zoliborz
## 1105 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1106 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1107 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1108                 Mokotow_Ochota_Zoliborz
## 1109 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1110                             Srodmiescie
## 1111 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1112 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1113                 Mokotow_Ochota_Zoliborz
## 1114 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1115 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1116                             Srodmiescie
## 1117                 Mokotow_Ochota_Zoliborz
## 1118                 Mokotow_Ochota_Zoliborz
## 1119 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1120 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1121 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1122                             Srodmiescie
## 1123                 Mokotow_Ochota_Zoliborz
## 1124 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1125                 Mokotow_Ochota_Zoliborz
## 1126                 Mokotow_Ochota_Zoliborz
## 1127 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1128 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1129                 Mokotow_Ochota_Zoliborz
## 1130 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1131                 Mokotow_Ochota_Zoliborz
## 1132 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1133                 Mokotow_Ochota_Zoliborz
## 1134                 Mokotow_Ochota_Zoliborz
## 1135                 Mokotow_Ochota_Zoliborz
## 1136 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1137 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1138                 Mokotow_Ochota_Zoliborz
## 1139 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1140 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1141 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1142 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1143 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1144 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1145 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1146                 Mokotow_Ochota_Zoliborz
## 1147 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1148 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1149 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1150 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1151 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1152 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1153 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1154 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1155 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1156 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1157                 Mokotow_Ochota_Zoliborz
## 1158 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1159 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1160 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1161                 Mokotow_Ochota_Zoliborz
## 1162                 Mokotow_Ochota_Zoliborz
## 1163                 Mokotow_Ochota_Zoliborz
## 1164                 Mokotow_Ochota_Zoliborz
## 1165                 Mokotow_Ochota_Zoliborz
## 1166                             Srodmiescie
## 1167                 Mokotow_Ochota_Zoliborz
## 1168 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1169 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1170                             Srodmiescie
## 1171                 Mokotow_Ochota_Zoliborz
## 1172 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1173 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1174                             Srodmiescie
## 1175 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1176                 Mokotow_Ochota_Zoliborz
## 1177 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1178 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1179 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1180 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1181 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1182                 Mokotow_Ochota_Zoliborz
## 1183                 Mokotow_Ochota_Zoliborz
## 1184 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1185 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1186 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1187 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1188                             Srodmiescie
## 1189                 Mokotow_Ochota_Zoliborz
## 1190 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1191 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1192                 Mokotow_Ochota_Zoliborz
## 1193 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1194 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1195 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1196 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1197                 Mokotow_Ochota_Zoliborz
## 1198 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1199 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1200                 Mokotow_Ochota_Zoliborz
## 1201                 Mokotow_Ochota_Zoliborz
## 1202 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1203 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1204 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1205 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1206 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1207                 Mokotow_Ochota_Zoliborz
## 1208 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1209 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1210                 Mokotow_Ochota_Zoliborz
## 1211 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1212 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1213                 Mokotow_Ochota_Zoliborz
## 1214                 Mokotow_Ochota_Zoliborz
## 1215                 Mokotow_Ochota_Zoliborz
## 1216 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1217                 Mokotow_Ochota_Zoliborz
## 1218 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1219 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1220                 Mokotow_Ochota_Zoliborz
## 1221                             Srodmiescie
## 1222 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1223                 Mokotow_Ochota_Zoliborz
## 1224 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1225                 Mokotow_Ochota_Zoliborz
## 1226                 Mokotow_Ochota_Zoliborz
## 1227 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1228 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1229 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1230 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1231 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1232 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1233                 Mokotow_Ochota_Zoliborz
## 1234                             Srodmiescie
## 1235 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1236 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1237                 Mokotow_Ochota_Zoliborz
## 1238 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1239 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1240                 Mokotow_Ochota_Zoliborz
## 1241 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1242 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1243 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1244 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1245 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1246                 Mokotow_Ochota_Zoliborz
## 1247                 Mokotow_Ochota_Zoliborz
## 1248                 Mokotow_Ochota_Zoliborz
## 1249                 Mokotow_Ochota_Zoliborz
## 1250 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1251                 Mokotow_Ochota_Zoliborz
## 1252                 Mokotow_Ochota_Zoliborz
## 1253                 Mokotow_Ochota_Zoliborz
## 1254 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1255 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1256                             Srodmiescie
## 1257 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1258 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1259                             Srodmiescie
## 1260                 Mokotow_Ochota_Zoliborz
## 1261 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1262                             Srodmiescie
## 1263                             Srodmiescie
## 1264 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1265 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1266                 Mokotow_Ochota_Zoliborz
## 1267                 Mokotow_Ochota_Zoliborz
## 1268 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1269 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1270 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1271 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1272 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1273 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1274 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1275                             Srodmiescie
## 1276 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1277 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1278 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1279                 Mokotow_Ochota_Zoliborz
## 1280 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1281 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1282 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1283 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1284                 Mokotow_Ochota_Zoliborz
## 1285                             Srodmiescie
## 1286                 Mokotow_Ochota_Zoliborz
## 1287 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1288 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1289                             Srodmiescie
## 1290                 Mokotow_Ochota_Zoliborz
## 1291                 Mokotow_Ochota_Zoliborz
## 1292 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1293                 Mokotow_Ochota_Zoliborz
## 1294 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1295                 Mokotow_Ochota_Zoliborz
## 1296 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1297                 Mokotow_Ochota_Zoliborz
## 1298 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1299                 Mokotow_Ochota_Zoliborz
## 1300 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1301 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1302                 Mokotow_Ochota_Zoliborz
## 1303 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1304 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1305 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1306                 Mokotow_Ochota_Zoliborz
## 1307                 Mokotow_Ochota_Zoliborz
## 1308 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1309 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1310 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1311 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1312 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1313                             Srodmiescie
## 1314                 Mokotow_Ochota_Zoliborz
## 1315 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1316                             Srodmiescie
## 1317                 Mokotow_Ochota_Zoliborz
## 1318 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1319                 Mokotow_Ochota_Zoliborz
## 1320                 Mokotow_Ochota_Zoliborz
## 1321                 Mokotow_Ochota_Zoliborz
## 1322                             Srodmiescie
## 1323                             Srodmiescie
## 1324                             Srodmiescie
## 1325 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1326                             Srodmiescie
## 1327                             Srodmiescie
## 1328                 Mokotow_Ochota_Zoliborz
## 1329 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1330 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1331                 Mokotow_Ochota_Zoliborz
## 1332 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1333 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1334 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1335 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1336                             Srodmiescie
## 1337 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1338 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1339 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1340                             Srodmiescie
## 1341                 Mokotow_Ochota_Zoliborz
## 1342 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1343                             Srodmiescie
## 1344                             Srodmiescie
## 1345 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1346 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1347 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1348                 Mokotow_Ochota_Zoliborz
## 1349 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1350 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1351                             Srodmiescie
## 1352 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1353 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1354                             Srodmiescie
## 1355                 Mokotow_Ochota_Zoliborz
## 1356 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1357                 Mokotow_Ochota_Zoliborz
## 1358                 Mokotow_Ochota_Zoliborz
## 1359 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1360 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1361                 Mokotow_Ochota_Zoliborz
## 1362 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1363 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1364                 Mokotow_Ochota_Zoliborz
## 1365                 Mokotow_Ochota_Zoliborz
## 1366                 Mokotow_Ochota_Zoliborz
## 1367 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1368                 Mokotow_Ochota_Zoliborz
## 1369 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1370 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1371                 Mokotow_Ochota_Zoliborz
## 1372 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1373 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1374 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1375 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1376 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1377 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1378                             Srodmiescie
## 1379 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1380 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1381 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1382                 Mokotow_Ochota_Zoliborz
## 1383 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1384 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1385                 Mokotow_Ochota_Zoliborz
## 1386 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1387 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1388 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1389                 Mokotow_Ochota_Zoliborz
## 1390                 Mokotow_Ochota_Zoliborz
## 1391                 Mokotow_Ochota_Zoliborz
## 1392 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1393                 Mokotow_Ochota_Zoliborz
## 1394 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1395 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1396                 Mokotow_Ochota_Zoliborz
## 1397                 Mokotow_Ochota_Zoliborz
## 1398 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1399 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1400                 Mokotow_Ochota_Zoliborz
## 1401                             Srodmiescie
## 1402 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1403                             Srodmiescie
## 1404 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1405                             Srodmiescie
## 1406                 Mokotow_Ochota_Zoliborz
## 1407 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1408 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1409 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1410                             Srodmiescie
## 1411 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1412 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1413                             Srodmiescie
## 1414 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1415 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1416 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1417                 Mokotow_Ochota_Zoliborz
## 1418 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1419                             Srodmiescie
## 1420 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1421 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1422                             Srodmiescie
## 1423 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1424                 Mokotow_Ochota_Zoliborz
## 1425 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1426                 Mokotow_Ochota_Zoliborz
## 1427                             Srodmiescie
## 1428 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1429                 Mokotow_Ochota_Zoliborz
## 1430 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1431 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1432 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1433 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1434                             Srodmiescie
## 1435                 Mokotow_Ochota_Zoliborz
## 1436 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1437 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1438 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1439 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1440 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1441                 Mokotow_Ochota_Zoliborz
## 1442                 Mokotow_Ochota_Zoliborz
## 1443 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1444                 Mokotow_Ochota_Zoliborz
## 1445 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1446 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1447 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1448 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1449 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1450                 Mokotow_Ochota_Zoliborz
## 1451                 Mokotow_Ochota_Zoliborz
## 1452                             Srodmiescie
## 1453 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1454                             Srodmiescie
## 1455 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1456 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1457                 Mokotow_Ochota_Zoliborz
## 1458 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1459                 Mokotow_Ochota_Zoliborz
## 1460 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1461                 Mokotow_Ochota_Zoliborz
## 1462 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1463 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1464 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1465                 Mokotow_Ochota_Zoliborz
## 1466                 Mokotow_Ochota_Zoliborz
## 1467 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1468                 Mokotow_Ochota_Zoliborz
## 1469 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1470                 Mokotow_Ochota_Zoliborz
## 1471 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1472                 Mokotow_Ochota_Zoliborz
## 1473 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1474 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1475 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1476 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1477 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1478                 Mokotow_Ochota_Zoliborz
## 1479                 Mokotow_Ochota_Zoliborz
## 1480 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1481                             Srodmiescie
## 1482                 Mokotow_Ochota_Zoliborz
## 1483 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1484 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1485 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1486 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1487 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1488                 Mokotow_Ochota_Zoliborz
## 1489                             Srodmiescie
## 1490 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1491                             Srodmiescie
## 1492 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1493                             Srodmiescie
## 1494                 Mokotow_Ochota_Zoliborz
## 1495 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1496                 Mokotow_Ochota_Zoliborz
## 1497 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1498 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1499                             Srodmiescie
## 1500 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1501 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1502 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1503 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1504 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1505                 Mokotow_Ochota_Zoliborz
## 1506 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1507 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1508 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1509                 Mokotow_Ochota_Zoliborz
## 1510                 Mokotow_Ochota_Zoliborz
## 1511 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1512 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1513 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1514 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1515 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1516 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1517                 Mokotow_Ochota_Zoliborz
## 1518 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1519 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1520 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1521 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1522                 Mokotow_Ochota_Zoliborz
## 1523                 Mokotow_Ochota_Zoliborz
## 1524 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1525                 Mokotow_Ochota_Zoliborz
## 1526 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1527 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1528                 Mokotow_Ochota_Zoliborz
## 1529                 Mokotow_Ochota_Zoliborz
## 1530 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1531 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1532                 Mokotow_Ochota_Zoliborz
## 1533 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1534 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1535 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1536 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1537 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1538                 Mokotow_Ochota_Zoliborz
## 1539 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1540 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1541                 Mokotow_Ochota_Zoliborz
## 1542 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1543 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1544                             Srodmiescie
## 1545                 Mokotow_Ochota_Zoliborz
## 1546 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1547 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1548                 Mokotow_Ochota_Zoliborz
## 1549 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1550 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1551                             Srodmiescie
## 1552 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1553 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1554 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1555 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1556 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1557                 Mokotow_Ochota_Zoliborz
## 1558                 Mokotow_Ochota_Zoliborz
## 1559 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1560 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1561 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1562                 Mokotow_Ochota_Zoliborz
## 1563 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1564 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1565 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1566 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1567 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1568 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1569 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1570                 Mokotow_Ochota_Zoliborz
## 1571 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1572 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1573 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1574                 Mokotow_Ochota_Zoliborz
## 1575                 Mokotow_Ochota_Zoliborz
## 1576 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1577                 Mokotow_Ochota_Zoliborz
## 1578 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1579                 Mokotow_Ochota_Zoliborz
## 1580                 Mokotow_Ochota_Zoliborz
## 1581                 Mokotow_Ochota_Zoliborz
## 1582                 Mokotow_Ochota_Zoliborz
## 1583 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1584 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1585 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1586                 Mokotow_Ochota_Zoliborz
## 1587                 Mokotow_Ochota_Zoliborz
## 1588 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1589 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1590 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1591                 Mokotow_Ochota_Zoliborz
## 1592                 Mokotow_Ochota_Zoliborz
## 1593 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1594                             Srodmiescie
## 1595 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1596 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1597 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1598 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1599 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1600 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1601 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1602                 Mokotow_Ochota_Zoliborz
## 1603                             Srodmiescie
## 1604                             Srodmiescie
## 1605                 Mokotow_Ochota_Zoliborz
## 1606                 Mokotow_Ochota_Zoliborz
## 1607                             Srodmiescie
## 1608                 Mokotow_Ochota_Zoliborz
## 1609                 Mokotow_Ochota_Zoliborz
## 1610 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1611                 Mokotow_Ochota_Zoliborz
## 1612                 Mokotow_Ochota_Zoliborz
## 1613 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1614 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1615                 Mokotow_Ochota_Zoliborz
## 1616 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1617 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1618                 Mokotow_Ochota_Zoliborz
## 1619 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1620                             Srodmiescie
## 1621                             Srodmiescie
## 1622 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1623 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1624 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1625                 Mokotow_Ochota_Zoliborz
## 1626                             Srodmiescie
## 1627                 Mokotow_Ochota_Zoliborz
## 1628                             Srodmiescie
## 1629                 Mokotow_Ochota_Zoliborz
## 1630                 Mokotow_Ochota_Zoliborz
## 1631 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1632 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1633 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1634                             Srodmiescie
## 1635 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1636 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1637 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1638 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1639 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1640                 Mokotow_Ochota_Zoliborz
## 1641                 Mokotow_Ochota_Zoliborz
## 1642                 Mokotow_Ochota_Zoliborz
## 1643                 Mokotow_Ochota_Zoliborz
## 1644 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1645 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1646                 Mokotow_Ochota_Zoliborz
## 1647                             Srodmiescie
## 1648 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1649 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1650 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1651 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1652                 Mokotow_Ochota_Zoliborz
## 1653 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1654 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1655 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1656 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1657                 Mokotow_Ochota_Zoliborz
## 1658 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1659                 Mokotow_Ochota_Zoliborz
## 1660 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1661 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1662                             Srodmiescie
## 1663 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1664                 Mokotow_Ochota_Zoliborz
## 1665 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1666                 Mokotow_Ochota_Zoliborz
## 1667 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1668 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1669                             Srodmiescie
## 1670 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1671 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1672 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1673 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1674 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1675 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1676 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1677 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1678 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1679 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1680 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1681                             Srodmiescie
## 1682 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1683                 Mokotow_Ochota_Zoliborz
## 1684                 Mokotow_Ochota_Zoliborz
## 1685 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1686 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1687 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1688 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1689                 Mokotow_Ochota_Zoliborz
## 1690 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1691 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1692 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1693                 Mokotow_Ochota_Zoliborz
## 1694                             Srodmiescie
## 1695                             Srodmiescie
## 1696 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1697 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1698 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1699 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1700                             Srodmiescie
## 1701 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1702 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1703                 Mokotow_Ochota_Zoliborz
## 1704 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1705 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1706                 Mokotow_Ochota_Zoliborz
## 1707 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1708                 Mokotow_Ochota_Zoliborz
## 1709                 Mokotow_Ochota_Zoliborz
## 1710                             Srodmiescie
## 1711                             Srodmiescie
## 1712 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1713 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1714 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1715 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1716 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1717 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1718                 Mokotow_Ochota_Zoliborz
## 1719                             Srodmiescie
## 1720                             Srodmiescie
## 1721 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1722 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1723 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1724 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1725 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1726 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1727                 Mokotow_Ochota_Zoliborz
## 1728 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1729 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1730 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1731                 Mokotow_Ochota_Zoliborz
## 1732                             Srodmiescie
## 1733 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1734 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1735 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1736                 Mokotow_Ochota_Zoliborz
## 1737                 Mokotow_Ochota_Zoliborz
## 1738 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1739                 Mokotow_Ochota_Zoliborz
## 1740 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1741 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1742 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1743 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1744                 Mokotow_Ochota_Zoliborz
## 1745 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1746                 Mokotow_Ochota_Zoliborz
## 1747                 Mokotow_Ochota_Zoliborz
## 1748                 Mokotow_Ochota_Zoliborz
## 1749 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1750                 Mokotow_Ochota_Zoliborz
## 1751                             Srodmiescie
## 1752 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1753 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1754                             Srodmiescie
## 1755 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1756                             Srodmiescie
## 1757                             Srodmiescie
## 1758 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1759 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1760 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1761                 Mokotow_Ochota_Zoliborz
## 1762                 Mokotow_Ochota_Zoliborz
## 1763 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1764 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1765                             Srodmiescie
## 1766 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1767 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1768                             Srodmiescie
## 1769 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1770 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1771                 Mokotow_Ochota_Zoliborz
## 1772                 Mokotow_Ochota_Zoliborz
## 1773                             Srodmiescie
## 1774                             Srodmiescie
## 1775                 Mokotow_Ochota_Zoliborz
## 1776 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1777 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1778 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1779 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1780                 Mokotow_Ochota_Zoliborz
## 1781                             Srodmiescie
## 1782                 Mokotow_Ochota_Zoliborz
## 1783                 Mokotow_Ochota_Zoliborz
## 1784 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1785                 Mokotow_Ochota_Zoliborz
## 1786 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1787 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1788 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1789                 Mokotow_Ochota_Zoliborz
## 1790                 Mokotow_Ochota_Zoliborz
## 1791 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1792 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1793 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1794 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1795                             Srodmiescie
## 1796                 Mokotow_Ochota_Zoliborz
## 1797 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1798 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1799 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1800                 Mokotow_Ochota_Zoliborz
## 1801 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1802                             Srodmiescie
## 1803 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1804 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1805                 Mokotow_Ochota_Zoliborz
## 1806                             Srodmiescie
## 1807                 Mokotow_Ochota_Zoliborz
## 1808 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1809 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1810                 Mokotow_Ochota_Zoliborz
## 1811 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1812 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1813 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1814 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1815                             Srodmiescie
## 1816 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1817 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1818                             Srodmiescie
## 1819 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1820                 Mokotow_Ochota_Zoliborz
## 1821                 Mokotow_Ochota_Zoliborz
## 1822 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1823 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1824                             Srodmiescie
## 1825                 Mokotow_Ochota_Zoliborz
## 1826 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1827                 Mokotow_Ochota_Zoliborz
## 1828 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1829 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1830 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1831 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1832 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1833                 Mokotow_Ochota_Zoliborz
## 1834 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1835                 Mokotow_Ochota_Zoliborz
## 1836 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1837                 Mokotow_Ochota_Zoliborz
## 1838 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1839 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1840 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1841 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1842 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1843 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1844 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1845 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1846 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1847                 Mokotow_Ochota_Zoliborz
## 1848 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1849 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1850 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1851                             Srodmiescie
## 1852 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1853 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1854                 Mokotow_Ochota_Zoliborz
## 1855                             Srodmiescie
## 1856 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1857 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1858                 Mokotow_Ochota_Zoliborz
## 1859 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1860                             Srodmiescie
## 1861                             Srodmiescie
## 1862                 Mokotow_Ochota_Zoliborz
## 1863 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1864                 Mokotow_Ochota_Zoliborz
## 1865                 Mokotow_Ochota_Zoliborz
## 1866                 Mokotow_Ochota_Zoliborz
## 1867 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1868                             Srodmiescie
## 1869                 Mokotow_Ochota_Zoliborz
## 1870 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1871 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1872 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1873 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1874 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1875 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1876                             Srodmiescie
## 1877                 Mokotow_Ochota_Zoliborz
## 1878                 Mokotow_Ochota_Zoliborz
## 1879 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1880 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1881                 Mokotow_Ochota_Zoliborz
## 1882 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1883 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1884 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1885 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1886 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1887 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1888 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1889 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1890 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1891 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1892                 Mokotow_Ochota_Zoliborz
## 1893 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1894 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1895 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1896                 Mokotow_Ochota_Zoliborz
## 1897                             Srodmiescie
## 1898                 Mokotow_Ochota_Zoliborz
## 1899 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1900                 Mokotow_Ochota_Zoliborz
## 1901                             Srodmiescie
## 1902                             Srodmiescie
## 1903 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1904                             Srodmiescie
## 1905                             Srodmiescie
## 1906                             Srodmiescie
## 1907                             Srodmiescie
## 1908                 Mokotow_Ochota_Zoliborz
## 1909 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1910                             Srodmiescie
## 1911                             Srodmiescie
## 1912 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1913 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1914 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1915                             Srodmiescie
## 1916                 Mokotow_Ochota_Zoliborz
## 1917 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1918 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1919 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1920                             Srodmiescie
## 1921 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1922 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1923 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1924 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1925 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1926                             Srodmiescie
## 1927 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1928 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1929 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1930                 Mokotow_Ochota_Zoliborz
## 1931 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1932                 Mokotow_Ochota_Zoliborz
## 1933 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1934                 Mokotow_Ochota_Zoliborz
## 1935 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1936                 Mokotow_Ochota_Zoliborz
## 1937 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1938 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1939                             Srodmiescie
## 1940                 Mokotow_Ochota_Zoliborz
## 1941 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1942 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1943 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1944 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1945                             Srodmiescie
## 1946 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1947 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1948                 Mokotow_Ochota_Zoliborz
## 1949                 Mokotow_Ochota_Zoliborz
## 1950 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1951 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1952 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1953                 Mokotow_Ochota_Zoliborz
## 1954 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1955                 Mokotow_Ochota_Zoliborz
## 1956                 Mokotow_Ochota_Zoliborz
## 1957 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1958                 Mokotow_Ochota_Zoliborz
## 1959                 Mokotow_Ochota_Zoliborz
## 1960 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1961 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1962 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1963 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1964                             Srodmiescie
## 1965 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1966 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1967                 Mokotow_Ochota_Zoliborz
## 1968                 Mokotow_Ochota_Zoliborz
## 1969                 Mokotow_Ochota_Zoliborz
## 1970 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1971 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1972                 Mokotow_Ochota_Zoliborz
## 1973 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1974                             Srodmiescie
## 1975 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1976 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1977 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1978 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1979                 Mokotow_Ochota_Zoliborz
## 1980 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1981 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1982 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1983 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1984 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1985                 Mokotow_Ochota_Zoliborz
## 1986 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1987 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1988                 Mokotow_Ochota_Zoliborz
## 1989 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1990                 Mokotow_Ochota_Zoliborz
## 1991 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1992                 Mokotow_Ochota_Zoliborz
## 1993 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1994 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1995                 Mokotow_Ochota_Zoliborz
## 1996                             Srodmiescie
## 1997 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1998 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 1999                 Mokotow_Ochota_Zoliborz
## 2000 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2001                 Mokotow_Ochota_Zoliborz
## 2002 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2003                 Mokotow_Ochota_Zoliborz
## 2004 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2005 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2006 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2007                 Mokotow_Ochota_Zoliborz
## 2008                             Srodmiescie
## 2009 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2010                             Srodmiescie
## 2011 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2012 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2013                 Mokotow_Ochota_Zoliborz
## 2014                 Mokotow_Ochota_Zoliborz
## 2015                 Mokotow_Ochota_Zoliborz
## 2016 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2017 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2018 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2019 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2020                 Mokotow_Ochota_Zoliborz
## 2021 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2022                 Mokotow_Ochota_Zoliborz
## 2023 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2024 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2025                 Mokotow_Ochota_Zoliborz
## 2026 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2027 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2028 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2029                             Srodmiescie
## 2030 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2031 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2032                             Srodmiescie
## 2033 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2034                 Mokotow_Ochota_Zoliborz
## 2035 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2036 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2037 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2038                 Mokotow_Ochota_Zoliborz
## 2039 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2040 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2041 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2042 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2043                 Mokotow_Ochota_Zoliborz
## 2044 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2045 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2046                 Mokotow_Ochota_Zoliborz
## 2047                 Mokotow_Ochota_Zoliborz
## 2048 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2049 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2050                 Mokotow_Ochota_Zoliborz
## 2051 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2052 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2053                 Mokotow_Ochota_Zoliborz
## 2054 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2055 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2056                             Srodmiescie
## 2057                 Mokotow_Ochota_Zoliborz
## 2058                 Mokotow_Ochota_Zoliborz
## 2059 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2060 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2061 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2062                             Srodmiescie
## 2063 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2064 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2065 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2066                 Mokotow_Ochota_Zoliborz
## 2067                             Srodmiescie
## 2068                 Mokotow_Ochota_Zoliborz
## 2069                             Srodmiescie
## 2070                             Srodmiescie
## 2071 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2072                 Mokotow_Ochota_Zoliborz
## 2073 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2074                 Mokotow_Ochota_Zoliborz
## 2075 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2076 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2077 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2078                 Mokotow_Ochota_Zoliborz
## 2079                             Srodmiescie
## 2080                 Mokotow_Ochota_Zoliborz
## 2081                             Srodmiescie
## 2082 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2083                 Mokotow_Ochota_Zoliborz
## 2084                 Mokotow_Ochota_Zoliborz
## 2085 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2086                 Mokotow_Ochota_Zoliborz
## 2087 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2088                 Mokotow_Ochota_Zoliborz
## 2089 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2090 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2091 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2092 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2093                             Srodmiescie
## 2094                 Mokotow_Ochota_Zoliborz
## 2095                 Mokotow_Ochota_Zoliborz
## 2096                 Mokotow_Ochota_Zoliborz
## 2097 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2098 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2099 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2100                             Srodmiescie
## 2101 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2102 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2103                             Srodmiescie
## 2104                 Mokotow_Ochota_Zoliborz
## 2105                 Mokotow_Ochota_Zoliborz
## 2106 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2107                             Srodmiescie
## 2108 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2109 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2110                 Mokotow_Ochota_Zoliborz
## 2111 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2112 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2113 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2114 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2115 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2116 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2117                 Mokotow_Ochota_Zoliborz
## 2118                 Mokotow_Ochota_Zoliborz
## 2119 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2120 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2121                 Mokotow_Ochota_Zoliborz
## 2122                 Mokotow_Ochota_Zoliborz
## 2123                 Mokotow_Ochota_Zoliborz
## 2124 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2125                             Srodmiescie
## 2126 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2127                             Srodmiescie
## 2128 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2129 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2130 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2131                             Srodmiescie
## 2132                 Mokotow_Ochota_Zoliborz
## 2133 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2134                             Srodmiescie
## 2135                 Mokotow_Ochota_Zoliborz
## 2136 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2137 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2138                 Mokotow_Ochota_Zoliborz
## 2139                 Mokotow_Ochota_Zoliborz
## 2140 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2141 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2142 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2143                 Mokotow_Ochota_Zoliborz
## 2144                 Mokotow_Ochota_Zoliborz
## 2145                             Srodmiescie
## 2146                 Mokotow_Ochota_Zoliborz
## 2147                             Srodmiescie
## 2148                 Mokotow_Ochota_Zoliborz
## 2149                 Mokotow_Ochota_Zoliborz
## 2150                 Mokotow_Ochota_Zoliborz
## 2151                             Srodmiescie
## 2152                 Mokotow_Ochota_Zoliborz
## 2153 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2154                             Srodmiescie
## 2155 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2156                 Mokotow_Ochota_Zoliborz
## 2157 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2158 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2159 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2160                 Mokotow_Ochota_Zoliborz
## 2161 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2162 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2163 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2164 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2165                 Mokotow_Ochota_Zoliborz
## 2166 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2167 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2168 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2169 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2170 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2171                             Srodmiescie
## 2172                 Mokotow_Ochota_Zoliborz
## 2173 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2174 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2175 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2176                 Mokotow_Ochota_Zoliborz
## 2177 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2178                 Mokotow_Ochota_Zoliborz
## 2179 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2180 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2181                 Mokotow_Ochota_Zoliborz
## 2182                 Mokotow_Ochota_Zoliborz
## 2183 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2184 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2185                 Mokotow_Ochota_Zoliborz
## 2186 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2187                 Mokotow_Ochota_Zoliborz
## 2188                             Srodmiescie
## 2189                             Srodmiescie
## 2190                 Mokotow_Ochota_Zoliborz
## 2191 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2192                 Mokotow_Ochota_Zoliborz
## 2193 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2194 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2195 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2196 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2197                             Srodmiescie
## 2198 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2199 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2200                 Mokotow_Ochota_Zoliborz
## 2201 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2202 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2203 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2204                 Mokotow_Ochota_Zoliborz
## 2205                 Mokotow_Ochota_Zoliborz
## 2206 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2207 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2208 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2209                             Srodmiescie
## 2210                 Mokotow_Ochota_Zoliborz
## 2211                 Mokotow_Ochota_Zoliborz
## 2212                             Srodmiescie
## 2213                 Mokotow_Ochota_Zoliborz
## 2214 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2215 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2216 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2217 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2218                 Mokotow_Ochota_Zoliborz
## 2219 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2220                 Mokotow_Ochota_Zoliborz
## 2221 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2222 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2223                             Srodmiescie
## 2224                 Mokotow_Ochota_Zoliborz
## 2225 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2226                 Mokotow_Ochota_Zoliborz
## 2227 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2228 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2229 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2230 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2231                 Mokotow_Ochota_Zoliborz
## 2232 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2233                             Srodmiescie
## 2234                 Mokotow_Ochota_Zoliborz
## 2235 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2236 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2237 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2238 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2239                 Mokotow_Ochota_Zoliborz
## 2240 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2241 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2242 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2243 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2244 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2245 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2246 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2247                 Mokotow_Ochota_Zoliborz
## 2248 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2249 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2250                             Srodmiescie
## 2251                 Mokotow_Ochota_Zoliborz
## 2252 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2253 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2254                 Mokotow_Ochota_Zoliborz
## 2255                 Mokotow_Ochota_Zoliborz
## 2256 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2257                 Mokotow_Ochota_Zoliborz
## 2258                 Mokotow_Ochota_Zoliborz
## 2259 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2260 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2261 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2262                 Mokotow_Ochota_Zoliborz
## 2263 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2264 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2265 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2266                 Mokotow_Ochota_Zoliborz
## 2267                 Mokotow_Ochota_Zoliborz
## 2268                             Srodmiescie
## 2269                 Mokotow_Ochota_Zoliborz
## 2270 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2271                             Srodmiescie
## 2272                             Srodmiescie
## 2273 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2274                 Mokotow_Ochota_Zoliborz
## 2275 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2276 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2277 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2278 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2279                             Srodmiescie
## 2280 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2281                 Mokotow_Ochota_Zoliborz
## 2282                 Mokotow_Ochota_Zoliborz
## 2283 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2284 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2285 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2286 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2287 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2288 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2289 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2290                 Mokotow_Ochota_Zoliborz
## 2291 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2292 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2293                 Mokotow_Ochota_Zoliborz
## 2294                             Srodmiescie
## 2295                             Srodmiescie
## 2296 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2297                 Mokotow_Ochota_Zoliborz
## 2298 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2299                 Mokotow_Ochota_Zoliborz
## 2300 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2301 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2302 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2303                 Mokotow_Ochota_Zoliborz
## 2304                 Mokotow_Ochota_Zoliborz
## 2305 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2306 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2307                             Srodmiescie
## 2308                 Mokotow_Ochota_Zoliborz
## 2309 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2310 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2311 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2312                             Srodmiescie
## 2313 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2314 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2315                 Mokotow_Ochota_Zoliborz
## 2316 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2317                             Srodmiescie
## 2318 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2319 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2320                             Srodmiescie
## 2321                             Srodmiescie
## 2322                 Mokotow_Ochota_Zoliborz
## 2323                             Srodmiescie
## 2324                 Mokotow_Ochota_Zoliborz
## 2325 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2326                 Mokotow_Ochota_Zoliborz
## 2327 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2328                 Mokotow_Ochota_Zoliborz
## 2329                 Mokotow_Ochota_Zoliborz
## 2330                 Mokotow_Ochota_Zoliborz
## 2331 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2332 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2333 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2334 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2335 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2336 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2337                             Srodmiescie
## 2338 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2339                             Srodmiescie
## 2340 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2341 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2342 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2343 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2344 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2345                 Mokotow_Ochota_Zoliborz
## 2346 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2347                 Mokotow_Ochota_Zoliborz
## 2348                 Mokotow_Ochota_Zoliborz
## 2349 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2350                 Mokotow_Ochota_Zoliborz
## 2351                 Mokotow_Ochota_Zoliborz
## 2352 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2353 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2354 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2355                 Mokotow_Ochota_Zoliborz
## 2356 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2357 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2358 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2359                 Mokotow_Ochota_Zoliborz
## 2360 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2361                 Mokotow_Ochota_Zoliborz
## 2362                 Mokotow_Ochota_Zoliborz
## 2363 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2364 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2365                 Mokotow_Ochota_Zoliborz
## 2366 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2367 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2368 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2369                 Mokotow_Ochota_Zoliborz
## 2370                 Mokotow_Ochota_Zoliborz
## 2371                 Mokotow_Ochota_Zoliborz
## 2372 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2373 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2374 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2375 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2376 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2377 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2378                 Mokotow_Ochota_Zoliborz
## 2379 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2380 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2381                 Mokotow_Ochota_Zoliborz
## 2382 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2383 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2384                 Mokotow_Ochota_Zoliborz
## 2385 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2386                 Mokotow_Ochota_Zoliborz
## 2387 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2388                             Srodmiescie
## 2389 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2390                 Mokotow_Ochota_Zoliborz
## 2391                 Mokotow_Ochota_Zoliborz
## 2392 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2393                 Mokotow_Ochota_Zoliborz
## 2394 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2395 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2396                 Mokotow_Ochota_Zoliborz
## 2397                 Mokotow_Ochota_Zoliborz
## 2398                 Mokotow_Ochota_Zoliborz
## 2399                 Mokotow_Ochota_Zoliborz
## 2400 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2401 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2402                 Mokotow_Ochota_Zoliborz
## 2403 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2404                 Mokotow_Ochota_Zoliborz
## 2405                             Srodmiescie
## 2406 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2407 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2408                 Mokotow_Ochota_Zoliborz
## 2409                 Mokotow_Ochota_Zoliborz
## 2410                 Mokotow_Ochota_Zoliborz
## 2411                             Srodmiescie
## 2412 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2413 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2414 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2415                 Mokotow_Ochota_Zoliborz
## 2416                 Mokotow_Ochota_Zoliborz
## 2417 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2418 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2419                 Mokotow_Ochota_Zoliborz
## 2420                 Mokotow_Ochota_Zoliborz
## 2421                 Mokotow_Ochota_Zoliborz
## 2422                 Mokotow_Ochota_Zoliborz
## 2423 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2424 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2425 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2426                 Mokotow_Ochota_Zoliborz
## 2427                             Srodmiescie
## 2428                 Mokotow_Ochota_Zoliborz
## 2429 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2430                 Mokotow_Ochota_Zoliborz
## 2431                             Srodmiescie
## 2432                 Mokotow_Ochota_Zoliborz
## 2433                 Mokotow_Ochota_Zoliborz
## 2434                             Srodmiescie
## 2435 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2436 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2437 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2438 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2439                 Mokotow_Ochota_Zoliborz
## 2440 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2441 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2442 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2443 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2444 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2445 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2446                             Srodmiescie
## 2447                             Srodmiescie
## 2448 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2449                             Srodmiescie
## 2450 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2451 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2452 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2453 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2454 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2455                 Mokotow_Ochota_Zoliborz
## 2456                 Mokotow_Ochota_Zoliborz
## 2457 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2458 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2459 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2460 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2461                 Mokotow_Ochota_Zoliborz
## 2462                             Srodmiescie
## 2463                 Mokotow_Ochota_Zoliborz
## 2464 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2465 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2466 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2467 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2468 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2469 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2470 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2471                 Mokotow_Ochota_Zoliborz
## 2472                             Srodmiescie
## 2473 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2474                             Srodmiescie
## 2475                 Mokotow_Ochota_Zoliborz
## 2476 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2477                             Srodmiescie
## 2478 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2479 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2480 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2481                             Srodmiescie
## 2482                 Mokotow_Ochota_Zoliborz
## 2483                 Mokotow_Ochota_Zoliborz
## 2484                 Mokotow_Ochota_Zoliborz
## 2485                 Mokotow_Ochota_Zoliborz
## 2486                             Srodmiescie
## 2487                 Mokotow_Ochota_Zoliborz
## 2488 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2489                 Mokotow_Ochota_Zoliborz
## 2490 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2491 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2492 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2493 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2494 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2495                 Mokotow_Ochota_Zoliborz
## 2496 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2497 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2498 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2499 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2500 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2501 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2502 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2503 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2504                 Mokotow_Ochota_Zoliborz
## 2505 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2506 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2507 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2508                 Mokotow_Ochota_Zoliborz
## 2509 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2510 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2511                 Mokotow_Ochota_Zoliborz
## 2512 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2513 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2514 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2515                 Mokotow_Ochota_Zoliborz
## 2516                             Srodmiescie
## 2517 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2518 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2519 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2520 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2521                 Mokotow_Ochota_Zoliborz
## 2522 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2523 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2524                 Mokotow_Ochota_Zoliborz
## 2525                 Mokotow_Ochota_Zoliborz
## 2526                 Mokotow_Ochota_Zoliborz
## 2527 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2528 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2529                             Srodmiescie
## 2530 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2531 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2532                             Srodmiescie
## 2533 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2534 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2535 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2536                 Mokotow_Ochota_Zoliborz
## 2537 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2538 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2539 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2540 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2541                 Mokotow_Ochota_Zoliborz
## 2542 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2543 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2544 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2545 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2546 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2547                 Mokotow_Ochota_Zoliborz
## 2548 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2549 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2550 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2551 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2552                 Mokotow_Ochota_Zoliborz
## 2553 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2554 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2555                 Mokotow_Ochota_Zoliborz
## 2556 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2557                             Srodmiescie
## 2558 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2559 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2560                 Mokotow_Ochota_Zoliborz
## 2561                             Srodmiescie
## 2562                 Mokotow_Ochota_Zoliborz
## 2563 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2564 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2565 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2566                             Srodmiescie
## 2567 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2568 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2569 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2570                 Mokotow_Ochota_Zoliborz
## 2571 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2572 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2573 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2574 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2575                             Srodmiescie
## 2576 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2577                 Mokotow_Ochota_Zoliborz
## 2578                             Srodmiescie
## 2579                 Mokotow_Ochota_Zoliborz
## 2580 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2581                             Srodmiescie
## 2582 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2583                 Mokotow_Ochota_Zoliborz
## 2584                 Mokotow_Ochota_Zoliborz
## 2585 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2586 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2587 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2588 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2589 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2590 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2591 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2592 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2593                 Mokotow_Ochota_Zoliborz
## 2594 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2595 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2596                 Mokotow_Ochota_Zoliborz
## 2597                 Mokotow_Ochota_Zoliborz
## 2598 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2599 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2600 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2601 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2602 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2603 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2604 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2605 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2606 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2607                 Mokotow_Ochota_Zoliborz
## 2608 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2609 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2610 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2611 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2612                             Srodmiescie
## 2613 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2614 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2615 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2616 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2617 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2618                 Mokotow_Ochota_Zoliborz
## 2619                             Srodmiescie
## 2620 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2621 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2622 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2623                             Srodmiescie
## 2624 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2625 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2626                 Mokotow_Ochota_Zoliborz
## 2627 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2628 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2629                 Mokotow_Ochota_Zoliborz
## 2630                 Mokotow_Ochota_Zoliborz
## 2631 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2632                 Mokotow_Ochota_Zoliborz
## 2633                 Mokotow_Ochota_Zoliborz
## 2634                 Mokotow_Ochota_Zoliborz
## 2635 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2636                 Mokotow_Ochota_Zoliborz
## 2637 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2638 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2639 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2640 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2641 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2642                 Mokotow_Ochota_Zoliborz
## 2643                 Mokotow_Ochota_Zoliborz
## 2644 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2645                             Srodmiescie
## 2646 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2647                             Srodmiescie
## 2648 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2649                 Mokotow_Ochota_Zoliborz
## 2650 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2651                 Mokotow_Ochota_Zoliborz
## 2652 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2653                 Mokotow_Ochota_Zoliborz
## 2654 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2655 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2656 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2657                 Mokotow_Ochota_Zoliborz
## 2658 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2659 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2660                             Srodmiescie
## 2661                             Srodmiescie
## 2662                 Mokotow_Ochota_Zoliborz
## 2663 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2664 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2665                 Mokotow_Ochota_Zoliborz
## 2666                 Mokotow_Ochota_Zoliborz
## 2667                 Mokotow_Ochota_Zoliborz
## 2668                             Srodmiescie
## 2669 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2670                 Mokotow_Ochota_Zoliborz
## 2671 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2672                 Mokotow_Ochota_Zoliborz
## 2673 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2674                 Mokotow_Ochota_Zoliborz
## 2675 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2676                 Mokotow_Ochota_Zoliborz
## 2677                 Mokotow_Ochota_Zoliborz
## 2678 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2679                 Mokotow_Ochota_Zoliborz
## 2680 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2681 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2682 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2683                 Mokotow_Ochota_Zoliborz
## 2684 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2685 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2686 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2687 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2688 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2689 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2690 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2691 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2692 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2693                 Mokotow_Ochota_Zoliborz
## 2694 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2695                             Srodmiescie
## 2696 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2697                             Srodmiescie
## 2698 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2699 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2700                             Srodmiescie
## 2701                 Mokotow_Ochota_Zoliborz
## 2702 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2703                             Srodmiescie
## 2704                             Srodmiescie
## 2705                 Mokotow_Ochota_Zoliborz
## 2706 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2707                 Mokotow_Ochota_Zoliborz
## 2708 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2709 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2710                 Mokotow_Ochota_Zoliborz
## 2711 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2712 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2713                 Mokotow_Ochota_Zoliborz
## 2714                             Srodmiescie
## 2715                             Srodmiescie
## 2716                             Srodmiescie
## 2717                 Mokotow_Ochota_Zoliborz
## 2718 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2719 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2720 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2721 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2722                 Mokotow_Ochota_Zoliborz
## 2723                             Srodmiescie
## 2724 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2725 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2726 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2727                 Mokotow_Ochota_Zoliborz
## 2728                 Mokotow_Ochota_Zoliborz
## 2729                             Srodmiescie
## 2730 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2731                 Mokotow_Ochota_Zoliborz
## 2732                             Srodmiescie
## 2733 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2734                 Mokotow_Ochota_Zoliborz
## 2735                             Srodmiescie
## 2736                             Srodmiescie
## 2737                 Mokotow_Ochota_Zoliborz
## 2738 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2739                 Mokotow_Ochota_Zoliborz
## 2740 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2741                 Mokotow_Ochota_Zoliborz
## 2742 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2743 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2744 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2745                 Mokotow_Ochota_Zoliborz
## 2746 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2747 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2748 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2749                 Mokotow_Ochota_Zoliborz
## 2750 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2751 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2752 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2753                 Mokotow_Ochota_Zoliborz
## 2754                 Mokotow_Ochota_Zoliborz
## 2755 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2756 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2757 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2758                 Mokotow_Ochota_Zoliborz
## 2759 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2760                 Mokotow_Ochota_Zoliborz
## 2761                             Srodmiescie
## 2762 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2763 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2764 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2765 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2766                 Mokotow_Ochota_Zoliborz
## 2767 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2768 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2769 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2770 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2771                 Mokotow_Ochota_Zoliborz
## 2772                 Mokotow_Ochota_Zoliborz
## 2773 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2774 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2775                 Mokotow_Ochota_Zoliborz
## 2776 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2777                 Mokotow_Ochota_Zoliborz
## 2778                 Mokotow_Ochota_Zoliborz
## 2779                 Mokotow_Ochota_Zoliborz
## 2780 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2781                 Mokotow_Ochota_Zoliborz
## 2782 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2783 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2784 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2785                 Mokotow_Ochota_Zoliborz
## 2786 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2787 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2788                 Mokotow_Ochota_Zoliborz
## 2789 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2790 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2791 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2792                 Mokotow_Ochota_Zoliborz
## 2793                 Mokotow_Ochota_Zoliborz
## 2794                 Mokotow_Ochota_Zoliborz
## 2795 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2796 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2797 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2798 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2799 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2800 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2801 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2802                             Srodmiescie
## 2803 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2804                 Mokotow_Ochota_Zoliborz
## 2805                 Mokotow_Ochota_Zoliborz
## 2806                             Srodmiescie
## 2807 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2808 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2809                             Srodmiescie
## 2810 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2811                 Mokotow_Ochota_Zoliborz
## 2812 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2813 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2814 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2815 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2816 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2817                             Srodmiescie
## 2818                 Mokotow_Ochota_Zoliborz
## 2819                 Mokotow_Ochota_Zoliborz
## 2820 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2821                             Srodmiescie
## 2822                             Srodmiescie
## 2823 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2824 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2825                 Mokotow_Ochota_Zoliborz
## 2826 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2827                 Mokotow_Ochota_Zoliborz
## 2828                             Srodmiescie
## 2829                 Mokotow_Ochota_Zoliborz
## 2830 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2831                 Mokotow_Ochota_Zoliborz
## 2832                 Mokotow_Ochota_Zoliborz
## 2833 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2834 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2835 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2836 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2837 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2838 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2839                 Mokotow_Ochota_Zoliborz
## 2840 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2841                 Mokotow_Ochota_Zoliborz
## 2842                 Mokotow_Ochota_Zoliborz
## 2843 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2844                             Srodmiescie
## 2845 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2846                 Mokotow_Ochota_Zoliborz
## 2847 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2848 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2849 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2850                 Mokotow_Ochota_Zoliborz
## 2851 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2852 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2853                 Mokotow_Ochota_Zoliborz
## 2854 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2855                             Srodmiescie
## 2856 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2857                 Mokotow_Ochota_Zoliborz
## 2858 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2859 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2860 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2861                 Mokotow_Ochota_Zoliborz
## 2862                 Mokotow_Ochota_Zoliborz
## 2863 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2864 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2865                 Mokotow_Ochota_Zoliborz
## 2866                 Mokotow_Ochota_Zoliborz
## 2867                 Mokotow_Ochota_Zoliborz
## 2868 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2869                 Mokotow_Ochota_Zoliborz
## 2870 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2871 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2872 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2873                             Srodmiescie
## 2874 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2875                 Mokotow_Ochota_Zoliborz
## 2876                             Srodmiescie
## 2877 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2878 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2879 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2880 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2881 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2882 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2883                 Mokotow_Ochota_Zoliborz
## 2884 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2885                 Mokotow_Ochota_Zoliborz
## 2886 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2887 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2888 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2889 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2890 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2891                 Mokotow_Ochota_Zoliborz
## 2892                 Mokotow_Ochota_Zoliborz
## 2893                 Mokotow_Ochota_Zoliborz
## 2894 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2895 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2896 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2897 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2898 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2899 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2900 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2901 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2902 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2903 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2904 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2905                             Srodmiescie
## 2906 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2907 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2908 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2909 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2910 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2911 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2912                 Mokotow_Ochota_Zoliborz
## 2913 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2914                 Mokotow_Ochota_Zoliborz
## 2915                 Mokotow_Ochota_Zoliborz
## 2916 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2917                             Srodmiescie
## 2918                             Srodmiescie
## 2919                 Mokotow_Ochota_Zoliborz
## 2920                 Mokotow_Ochota_Zoliborz
## 2921                             Srodmiescie
## 2922 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2923                 Mokotow_Ochota_Zoliborz
## 2924 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2925                 Mokotow_Ochota_Zoliborz
## 2926 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2927 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2928                 Mokotow_Ochota_Zoliborz
## 2929 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2930 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2931                             Srodmiescie
## 2932 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2933 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2934 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2935                 Mokotow_Ochota_Zoliborz
## 2936 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2937 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2938 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2939                 Mokotow_Ochota_Zoliborz
## 2940                 Mokotow_Ochota_Zoliborz
## 2941                 Mokotow_Ochota_Zoliborz
## 2942                 Mokotow_Ochota_Zoliborz
## 2943 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2944 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2945                 Mokotow_Ochota_Zoliborz
## 2946 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2947 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2948 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2949                 Mokotow_Ochota_Zoliborz
## 2950                 Mokotow_Ochota_Zoliborz
## 2951                 Mokotow_Ochota_Zoliborz
## 2952 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2953 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2954 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2955 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2956                             Srodmiescie
## 2957 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2958                             Srodmiescie
## 2959 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2960 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2961 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2962 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2963                 Mokotow_Ochota_Zoliborz
## 2964 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2965                             Srodmiescie
## 2966 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2967                 Mokotow_Ochota_Zoliborz
## 2968 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2969 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2970 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2971 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2972 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2973                 Mokotow_Ochota_Zoliborz
## 2974                             Srodmiescie
## 2975 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2976 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2977 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2978 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2979 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2980 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2981 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2982                 Mokotow_Ochota_Zoliborz
## 2983 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2984 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2985 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2986 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2987                 Mokotow_Ochota_Zoliborz
## 2988 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2989 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2990 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2991 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2992 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2993 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2994 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2995 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2996                 Mokotow_Ochota_Zoliborz
## 2997 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2998 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 2999 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
## 3000                 Mokotow_Ochota_Zoliborz

如果愿意,我们还可以执行特征选择。对于每个原始特征,它只保留它们的一种形式——原始形式或转换形式。

vars <- safely_select_variables(safe_extractor, data1, which_y = "m2.price", verbose = FALSE)
data1 <- data1[,c("m2.price", vars)]
print(vars)
## [1] "surface"               "floor"                 "no.rooms"             
## [4] "construction.year_new" "district_new"
data2 <- safely_transform_data(safe_extractor, apartmentsTest[6001:9000,], verbose = FALSE)[,c("m2.price", vars)]

可以观察到,对于某些特征,原始形式是首选,而对于其他特征,转换后的形式是首选。

在原始数据集和转换后的数据集上创建白盒模型

model_lm2 <- lm(m2.price ~ ., data = data1)
explainer_lm2 <- DALEX::explain(model_lm2, data = data2, y = apartmentsTest[6001:9000,1], label = "lm2", verbose = FALSE)
set.seed(111)
model_rf2 <- randomForest(m2.price ~ ., data = data1)
explainer_rf2 <- DALEX::explain(model_rf2, data2, apartmentsTest[6001:9000,1], label = "rf2", verbose = FALSE)

model_lm1 <- lm(m2.price ~ ., data = apartments)
explainer_lm1 <- DALEX::explain(model_lm1, data = apartmentsTest[1:3000,2:6], y = apartmentsTest[1:3000,1], label = "lm1", verbose = FALSE)

比较模型性能

mp_lm1 <- model_performance(explainer_lm1)
mp_rf1 <- model_performance(explainer_rf1)
mp_lm2 <- model_performance(explainer_lm2)
mp_rf2 <- model_performance(explainer_rf2)

plot(mp_lm1, mp_rf1, mp_lm2, mp_rf2, geom = "boxplot")