Importar la base de datos

base_de_datos <- read.csv("/Users/rebegancedo/Desktop/TEC/Semestre 3/Semestre 3 - Período 1/Semana Tec/Datos Arca Continental Original 2.csv")

Entender la base de datos

summary(base_de_datos)
##        ID              Año        Territorio        Sub.Territorio    
##  Min.   :     1   Min.   :2016   Length:466509      Length:466509     
##  1st Qu.:116628   1st Qu.:2017   Class :character   Class :character  
##  Median :233255   Median :2018   Mode  :character   Mode  :character  
##  Mean   :233255   Mean   :2018                                        
##  3rd Qu.:349882   3rd Qu.:2019                                        
##  Max.   :466509   Max.   :2019                                        
##      CEDI             Cliente             Nombre          Tamaño.Cte.Industria
##  Length:466509      Length:466509      Length:466509      Length:466509       
##  Class :character   Class :character   Class :character   Class :character    
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character    
##                                                                               
##                                                                               
##                                                                               
##  Segmento.Det          Marca           Presentacion          Tamaño         
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##  Retornable_NR         Enero             Febrero             Marzo          
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##     Abril               Mayo              Junio              Julio          
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##     Agosto           Septiembre          Octubre           Noviembre        
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##   Diciembre        
##  Length:466509     
##  Class :character  
##  Mode  :character  
##                    
##                    
## 
str(base_de_datos)
## 'data.frame':    466509 obs. of  25 variables:
##  $ ID                  : int  1 2 3 4 5 6 7 8 9 10 ...
##  $ Año                 : int  2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 ...
##  $ Territorio          : chr  "Guadalajara" "Guadalajara" "Guadalajara" "Guadalajara" ...
##  $ Sub.Territorio      : chr  "Belenes" "Belenes" "Belenes" "Belenes" ...
##  $ CEDI                : chr  "Suc. Belenes" "Suc. Belenes" "Suc. Belenes" "Suc. Belenes" ...
##  $ Cliente             : chr  "77737" "77737" "77737" "77737" ...
##  $ Nombre              : chr  "ABARR" "ABARR" "ABARR" "ABARR" ...
##  $ Tamaño.Cte.Industria: chr  "Extra Grande" "Extra Grande" "Extra Grande" "Extra Grande" ...
##  $ Segmento.Det        : chr  "Agua Mineral" "Agua Purificada" "Agua Purificada" "Agua Saborizada" ...
##  $ Marca               : chr  "Topo Chico A.M." "Ciel Agua Purificada" "Ciel Agua Purificada" "Ciel Exprim" ...
##  $ Presentacion        : chr  "600 ml NR" "1 Ltro. N.R." "1.5 Lts. NR" "600 ml NR" ...
##  $ Tamaño              : chr  "Individual" "Individual" "Individual" "Individual" ...
##  $ Retornable_NR       : chr  "No Retornable" "No Retornable" "No Retornable" "No Retornable" ...
##  $ Enero               : chr  "" "" "" "" ...
##  $ Febrero             : chr  "" "2" "" "" ...
##  $ Marzo               : chr  "" "8" "3" "" ...
##  $ Abril               : chr  "" "4" "6" "" ...
##  $ Mayo                : chr  "" "4" "3" "" ...
##  $ Junio               : chr  "" "2" "3" "" ...
##  $ Julio               : chr  "" "2" "3" "" ...
##  $ Agosto              : chr  "" "2" "3" "" ...
##  $ Septiembre          : chr  "" "2" "3" "" ...
##  $ Octubre             : chr  "" "2" "3" "" ...
##  $ Noviembre           : chr  "" "4" "3" "" ...
##  $ Diciembre           : chr  "1" "2" "3" "1" ...
library(dplyr)
## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union
count(base_de_datos, Territorio, sort = TRUE)
##    Territorio      n
## 1 Guadalajara 466508
## 2  Territorio      1
count(base_de_datos, Sub.Territorio, sort = TRUE)
##   Sub.Territorio      n
## 1        Belenes 208982
## 2      Huentitán 144196
## 3     Toluquilla 113330
## 4 Sub Territorio      1
count(base_de_datos, CEDI, sort= TRUE)
##              CEDI      n
## 1    Suc. Belenes 208982
## 2  Suc. Huentitán 144196
## 3 Suc. Toluquilla 113330
## 4            CEDI      1
count(base_de_datos, Cliente, sort= TRUE)
##      Cliente   n
## 1       0286 647
## 2       2912 586
## 3       2661 537
## 4       7821 531
## 5       1859 525
## 6       5583 516
## 7       9998 508
## 8       3601 506
## 9       5879 499
## 10      0335 496
## 11      1288 486
## 12      9098 478
## 13      0030 471
## 14      1053 468
## 15      9759 455
## 16      2627 447
## 17      2706 447
## 18      2700 445
## 19      1759 444
## 20      2795 444
## 21      3069 440
## 22      8694 439
## 23      9872 439
## 24      7033 436
## 25      0750 431
## 26      9964 427
## 27      4609 426
## 28      9455 426
## 29      0689 422
## 30      5835 422
## 31      8373 422
## 32      1174 415
## 33      7884 412
## 34      0475 411
## 35      5531 409
## 36      1582 408
## 37      0027 407
## 38      1431 407
## 39      2780 407
## 40      5365 407
## 41      3857 406
## 42      1397 405
## 43      2764 403
## 44      1257 402
## 45      8475 400
## 46      8537 399
## 47      2736 398
## 48      2980 398
## 49      1378 397
## 50      2651 396
## 51      2663 396
## 52      4855 395
## 53      9371 395
## 54      0372 394
## 55      7446 394
## 56      8266 394
## 57      7383 392
## 58      1836 391
## 59      0623 389
## 60      6251 389
## 61      8672 386
## 62      2797 384
## 63      8409 384
## 64      0386 382
## 65      7665 382
## 66      5719 381
## 67      6223 380
## 68      0438 378
## 69      7875 378
## 70      8152 378
## 71      2702 375
## 72      3881 375
## 73      1032 374
## 74      2993 373
## 75      9015 373
## 76      1523 372
## 77      9788 370
## 78      0411 369
## 79      9010 368
## 80      9267 368
## 81      0054 366
## 82      1862 366
## 83      3961 366
## 84      4167 366
## 85      6673 366
## 86      1451 364
## 87      9041 364
## 88      3072 363
## 89      4169 363
## 90      6812 363
## 91      6986 363
## 92      9245 363
## 93      1716 362
## 94      3247 361
## 95      8018 361
## 96      9734 361
## 97      4924 360
## 98      6307 360
## 99      8791 359
## 100     8259 358
## 101     2647 357
## 102     6190 357
## 103     4431 356
## 104     9646 356
## 105     4373 355
## 106     9139 355
## 107     1916 354
## 108     5965 354
## 109     6102 354
## 110     6593 354
## 111     9173 354
## 112     2878 353
## 113     3331 353
## 114     5261 353
## 115     2929 352
## 116     3063 352
## 117     5263 352
## 118     0652 350
## 119     1812 350
## 120     2097 350
## 121     0371 349
## 122     5493 349
## 123     5511 348
## 124     6805 348
## 125     7843 348
## 126     0457 347
## 127     3971 347
## 128     9615 347
## 129     0242 346
## 130     5230 346
## 131     1130 345
## 132     3107 345
## 133     4002 345
## 134     4122 345
## 135     5706 345
## 136     6785 345
## 137     0073 344
## 138     1393 344
## 139     1956 344
## 140     6004 344
## 141     8029 344
## 142     9864 344
## 143     0605 343
## 144     5108 343
## 145     6330 343
## 146     6547 343
## 147     1182 342
## 148     1937 342
## 149     2000 342
## 150     2682 342
## 151     6555 342
## 152     9506 342
## 153     6556 340
## 154     6811 340
## 155     9045 340
## 156     0100 339
## 157     2146 339
## 158     5840 339
## 159     6091 339
## 160     7538 339
## 161     3234 338
## 162     8283 338
## 163     0921 337
## 164     2713 337
## 165     4116 337
## 166     8493 337
## 167     9574 337
## 168     0294 336
## 169     0664 336
## 170     6319 336
## 171     6802 336
## 172     7299 336
## 173     8484 336
## 174     8612 336
## 175     9462 336
## 176     0396 335
## 177     1395 335
## 178     2539 335
## 179     3798 335
## 180     5257 335
## 181     1090 334
## 182     5007 334
## 183     6874 334
## 184     3867 333
## 185     7704 333
## 186     9781 333
## 187     4440 332
## 188     1791 331
## 189     3535 331
## 190     7309 331
## 191     8140 331
## 192     9957 330
## 193     2908 329
## 194     7632 329
## 195     8483 329
## 196     0578 328
## 197     4026 328
## 198     4112 328
## 199     6473 328
## 200     4693 327
## 201     5765 327
## 202     7208 327
## 203     1635 326
## 204     7917 326
## 205     0183 325
## 206     1196 325
## 207     7800 325
## 208     5526 324
## 209     9398 324
## 210     2760 323
## 211     6228 323
## 212     3249 322
## 213     4712 322
## 214     6181 322
## 215     8946 322
## 216     5259 321
## 217     6414 321
## 218     1664 320
## 219     5857 320
## 220     6253 320
## 221     1724 319
## 222     2019 319
## 223     4548 319
## 224     5525 319
## 225     7478 319
## 226     7831 319
## 227     9210 319
## 228     2486 318
## 229     4241 318
## 230     4734 318
## 231     8010 318
## 232     9017 318
## 233     9816 318
## 234     2399 317
## 235     5507 317
## 236     6263 317
## 237     5093 316
## 238     7742 316
## 239     7769 316
## 240     3748 315
## 241     0247 314
## 242     1180 314
## 243     3308 314
## 244     8065 314
## 245     2634 313
## 246     3853 313
## 247     5712 313
## 248     7196 313
## 249     7988 313
## 250     1074 312
## 251     2075 312
## 252     8201 312
## 253     0932 311
## 254     5488 311
## 255     5901 311
## 256     6422 311
## 257     3963 310
## 258     6999 310
## 259     8795 310
## 260     9248 310
## 261     9275 310
## 262     1417 309
## 263     1546 309
## 264     1785 309
## 265     1880 309
## 266     3023 309
## 267     6457 308
## 268     6775 308
## 269     7316 308
## 270     1203 307
## 271     1543 307
## 272     5781 307
## 273     5959 307
## 274     8407 307
## 275     8802 307
## 276     9756 307
## 277     5231 306
## 278     9165 306
## 279     0113 305
## 280     1039 305
## 281     0866 304
## 282     1388 304
## 283     5020 304
## 284     5532 304
## 285     8329 304
## 286     8408 304
## 287     9913 304
## 288     1927 303
## 289     6863 303
## 290     7740 303
## 291     9797 303
## 292     0485 302
## 293     0885 302
## 294     2967 302
## 295     3875 302
## 296     8125 302
## 297     8186 302
## 298     4478 301
## 299     4814 301
## 300     6451 301
## 301     0391 300
## 302     2069 300
## 303     2983 300
## 304     3060 300
## 305     8154 300
## 306     1160 299
## 307     2658 299
## 308     3157 299
## 309     6675 299
## 310     7488 299
## 311     7501 299
## 312     6847 298
## 313     9671 298
## 314     3085 297
## 315     4174 297
## 316     5023 297
## 317     7367 297
## 318     9677 297
## 319     4580 296
## 320     4657 296
## 321     8543 296
## 322     0487 295
## 323     2687 295
## 324     2751 295
## 325     4528 295
## 326     6729 295
## 327     9915 295
## 328     1332 294
## 329     4581 294
## 330     4861 294
## 331     5718 294
## 332     8421 294
## 333     4769 293
## 334     4979 293
## 335     5177 293
## 336     9603 293
## 337     9884 293
## 338     0184 292
## 339     3455 292
## 340     7844 292
## 341     0535 291
## 342     0905 291
## 343     1731 291
## 344     1870 290
## 345     4375 290
## 346     0445 288
## 347     4612 288
## 348     4382 287
## 349     5520 287
## 350     7450 287
## 351     7464 287
## 352     0365 286
## 353     4199 286
## 354     4792 286
## 355     5535 286
## 356     6043 286
## 357     7230 286
## 358     8689 286
## 359     0439 285
## 360     1685 285
## 361     1795 285
## 362     1920 285
## 363     3965 285
## 364     6014 285
## 365     3570 284
## 366     6182 284
## 367     7452 284
## 368     4238 283
## 369     4695 283
## 370     0407 282
## 371     1317 282
## 372     4968 282
## 373     0154 281
## 374     4115 281
## 375     5119 281
## 376     6557 281
## 377     8842 281
## 378     0575 280
## 379     3017 280
## 380     4034 280
## 381     0683 279
## 382     1098 278
## 383     3179 278
## 384     4738 278
## 385     1030 277
## 386     5796 277
## 387     9767 277
## 388     0651 276
## 389     4310 276
## 390     0800 275
## 391     7857 275
## 392     3142 274
## 393     4644 274
## 394     4652 274
## 395     4964 274
## 396     5775 274
## 397     8899 274
## 398     6601 273
## 399     1939 272
## 400     3357 272
## 401     6381 272
## 402     9811 272
## 403     1713 271
## 404     4215 271
## 405     6535 271
## 406     6626 271
## 407     1286 270
## 408     6005 270
## 409     2531 269
## 410     6112 269
## 411     6160 269
## 412     6792 269
## 413     7545 269
## 414     8250 269
## 415     1818 268
## 416     4900 268
## 417     6114 268
## 418     6449 268
## 419     7333 268
## 420     3254 267
## 421     6025 267
## 422     8927 267
## 423     9140 267
## 424     9861 267
## 425     0004 266
## 426     2242 266
## 427     6125 266
## 428     7204 266
## 429     7842 266
## 430     8306 266
## 431     1126 265
## 432     2859 265
## 433     3401 265
## 434     9707 265
## 435     4698 264
## 436     7410 264
## 437     9743 264
## 438     8112 263
## 439     8228 263
## 440     8284 263
## 441     8572 263
## 442     0062 262
## 443     2830 262
## 444     5046 262
## 445     6452 262
## 446     6462 262
## 447     2835 261
## 448     2861 261
## 449     3176 261
## 450     9742 261
## 451     4763 260
## 452     5690 260
## 453     6301 260
## 454     0786 259
## 455     1420 259
## 456     2611 259
## 457     8402 259
## 458     0280 258
## 459     0426 258
## 460     3173 258
## 461     7796 258
## 462     9230 258
## 463     2111 257
## 464     2594 257
## 465     2759 257
## 466     4050 257
## 467     4567 257
## 468     7198 257
## 469     7288 257
## 470     4293 256
## 471     5758 256
## 472     2294 255
## 473     7794 255
## 474     1238 254
## 475     2476 254
## 476     3230 254
## 477     4250 254
## 478     6007 254
## 479     0597 253
## 480     3931 253
## 481     4994 253
## 482     9632 253
## 483     2777 252
## 484     5448 252
## 485     4582 251
## 486     5743 251
## 487     6464 251
## 488     9186 251
## 489     2926 250
## 490     9407 250
## 491     9961 250
## 492     1511 248
## 493     1588 248
## 494     0337 247
## 495     3981 247
## 496     5015 247
## 497     8561 247
## 498     8920 247
## 499     2918 246
## 500     3325 246
## 501     4579 246
## 502     2529 245
## 503     3189 245
## 504     6365 245
## 505     7474 243
## 506     5521 242
## 507     6055 242
## 508     6930 242
## 509     7612 241
## 510     2516 240
## 511     4596 240
## 512     7339 240
## 513     1116 239
## 514     1888 239
## 515     2413 239
## 516     4370 239
## 517     8696 239
## 518     2605 237
## 519     3527 237
## 520     4367 237
## 521     8814 237
## 522     6869 236
## 523     5651 235
## 524     6252 235
## 525     9492 235
## 526     2756 234
## 527     2372 231
## 528     9448 230
## 529     7178 229
## 530     3779 228
## 531     5014 228
## 532     9873 228
## 533     0948 225
## 534     3083 225
## 535     8526 224
## 536     9158 224
## 537     1064 223
## 538     2800 223
## 539     3087 223
## 540     8691 223
## 541     1794 222
## 542     3745 222
## 543     5203 222
## 544     1897 221
## 545     3229 221
## 546     7737 221
## 547     2737 220
## 548     9003 220
## 549     9164 219
## 550     9591 219
## 551     5420 218
## 552     2988 217
## 553     5568 217
## 554     3082 216
## 555     7286 216
## 556     0518 214
## 557     0579 214
## 558     3058 214
## 559     9169 214
## 560     7771 213
## 561     1343 211
## 562     2752 210
## 563     3105 209
## 564     3235 209
## 565     0952 206
## 566     3496 206
## 567     9693 206
## 568     5043 205
## 569     7572 205
## 570     2456 204
## 571     3472 204
## 572     8190 204
## 573     0510 203
## 574     6352 203
## 575     6605 203
## 576     8678 202
## 577     0730 201
## 578     2504 200
## 579     4524 200
## 580     5139 200
## 581     5338 199
## 582     6967 199
## 583     1721 198
## 584     2566 198
## 585     9745 198
## 586     0464 197
## 587     0945 197
## 588     5577 197
## 589     8682 197
## 590     9415 197
## 591     0285 195
## 592     7778 195
## 593     0659 194
## 594     2958 194
## 595     4070 194
## 596     4650 194
## 597     6516 194
## 598     7483 193
## 599     9653 193
## 600     2678 192
## 601     8071 191
## 602     0712 190
## 603     4513 190
## 604     0586 189
## 605     2550 188
## 606     2867 188
## 607     2685 187
## 608     0766 186
## 609     2911 186
## 610     7378 186
## 611     0182 185
## 612     0610 185
## 613     2843 185
## 614     7543 185
## 615     0711 184
## 616     3170 184
## 617     2007 183
## 618     9281 183
## 619     0123 182
## 620     2969 182
## 621     6635 181
## 622     9553 181
## 623     1267 180
## 624     2530 180
## 625     2565 179
## 626     6646 179
## 627     7438 178
## 628     2047 177
## 629     3177 177
## 630     0181 175
## 631     2635 175
## 632     2656 175
## 633     6477 175
## 634     7802 175
## 635     2790 174
## 636     3996 174
## 637     4233 174
## 638     9311 174
## 639     0793 173
## 640     0996 173
## 641     2913 173
## 642     2430 172
## 643     9486 172
## 644     0017 171
## 645     2996 171
## 646     3114 171
## 647     1166 170
## 648     1156 169
## 649     2252 169
## 650     2404 169
## 651     2931 169
## 652     2786 168
## 653     3049 168
## 654     0357 167
## 655     2497 167
## 656     2527 167
## 657     5803 166
## 658     7039 166
## 659     2561 165
## 660     6865 165
## 661     7871 165
## 662     9505 165
## 663     9820 165
## 664     1755 164
## 665     7681 164
## 666     0600 163
## 667     2523 163
## 668     0839 162
## 669     3033 162
## 670     3109 162
## 671     7720 162
## 672     8224 162
## 673     8635 162
## 674     1746 161
## 675     1808 161
## 676     2933 161
## 677     2080 160
## 678     5271 160
## 679    53916 160
## 680     1337 159
## 681     2927 159
## 682     2945 159
## 683     9181 159
## 684     2586 158
## 685     2639 158
## 686     8285 158
## 687     0732 157
## 688     2233 157
## 689     3298 157
## 690     7882 157
## 691     8874 157
## 692     9408 157
## 693     1025 156
## 694     2637 156
## 695     0356 154
## 696     2046 154
## 697     2828 154
## 698     3003 154
## 699     3027 154
## 700     9510 154
## 701     2385 153
## 702     2395 153
## 703     3117 153
## 704     7358 153
## 705     7306 152
## 706     2078 151
## 707     2622 151
## 708     9736 151
## 709    98475 151
## 710     0923 150
## 711     2496 150
## 712     2970 150
## 713     6660 150
## 714    97821 150
## 715     2445 149
## 716     8943 149
## 717    00750 148
## 718     1456 148
## 719     2826 148
## 720     6576 148
## 721     9027 148
## 722     1014 147
## 723     1026 147
## 724     2686 147
## 725     4202 147
## 726    75365 147
## 727    01053 146
## 728     3211 146
## 729    97665 146
## 730     0789 145
## 731     1056 145
## 732     8786 145
## 733     1359 144
## 734     1958 144
## 735     2944 144
## 736     1273 143
## 737     1351 143
## 738     1438 143
## 739     3165 143
## 740     6688 143
## 741     8514 143
## 742     1447 142
## 743     2359 142
## 744     2805 142
## 745     0124 141
## 746    01378 141
## 747     0151 141
## 748     0209 141
## 749     2058 141
## 750     2576 141
## 751     2820 141
## 752     2920 141
## 753     2992 141
## 754     3175 141
## 755    95879 141
## 756     2654 140
## 757     5585 140
## 758     8187 140
## 759     0998 139
## 760     2483 139
## 761     7731 139
## 762     2489 138
## 763     2814 138
## 764     9149 138
## 765     0051 137
## 766    01174 137
## 767     8501 137
## 768     9110 137
## 769    98373 137
## 770     0412 136
## 771     1348 136
## 772     2498 136
## 773    73331 136
## 774     7733 136
## 775    94609 136
## 776     9485 136
## 777     9752 136
## 778    98694 136
## 779     7777 135
## 780     9730 135
## 781    01397 134
## 782     0763 134
## 783     1428 134
## 784     2947 134
## 785     3051 134
## 786     4552 134
## 787    79872 134
## 788    80438 134
## 789    97446 134
## 790     3141 133
## 791    72764 133
## 792     7766 133
## 793    79455 133
## 794    96812 133
## 795    98672 133
## 796    01451 132
## 797     0553 132
## 798     0628 132
## 799     2501 132
## 800     2749 132
## 801     3256 132
## 802    82647 132
## 803     8985 132
## 804    96223 132
## 805    99267 132
## 806     0646 131
## 807     2567 131
## 808     2734 131
## 809     7732 131
## 810    83072 131
## 811    97538 131
## 812    98791 131
## 813     0222 130
## 814     2817 130
## 815     3182 130
## 816     6880 130
## 817    72797 130
## 818    95583 130
## 819     0011 129
## 820     1429 129
## 821     2001 129
## 822     2174 129
## 823     2544 129
## 824     2788 129
## 825    79139 129
## 826     9008 129
## 827    96251 129
## 828     0804 128
## 829     1008 128
## 830     1175 128
## 831     1903 128
## 832     2551 128
## 833     4673 128
## 834    56247 128
## 835    75765 128
## 836     0103 127
## 837    01523 127
## 838     2808 127
## 839    81395 127
## 840    82706 127
## 841     9420 127
## 842    96228 127
## 843    96547 127
## 844    97033 127
## 845    98409 127
## 846    98484 127
## 847     0384 126
## 848     1472 126
## 849     2322 126
## 850     2836 126
## 851     3050 126
## 852     3095 126
## 853     3167 126
## 854    35053 126
## 855     5143 126
## 856    72663 126
## 857    74855 126
## 858    75093 126
## 859    76253 126
## 860     9500 126
## 861     9761 126
## 862     0148 125
## 863     2225 125
## 864     2625 125
## 865     2827 125
## 866    79010 125
## 867    81716 125
## 868     9625 125
## 869    96307 125
## 870    73234 124
## 871    74002 124
## 872    94431 124
## 873    96805 124
## 874     0067 123
## 875    00689 123
## 876     0179 123
## 877     1118 123
## 878     2010 123
## 879     3185 123
## 880     6193 123
## 881     6815 123
## 882    77875 123
## 883     9397 123
## 884     9774 123
## 885    98065 123
## 886    99734 123
## 887     1503 122
## 888     1542 122
## 889     3158 122
## 890     3164 122
## 891    42627 122
## 892    74116 122
## 893    76422 122
## 894     7760 122
## 895    80335 122
## 896    81759 122
## 897     8784 122
## 898    98029 122
## 899    01032 121
## 900     1077 121
## 901     2769 121
## 902    75840 121
## 903     7787 121
## 904     7987 121
## 905    82075 121
## 906    95493 121
## 907    96451 121
## 908    98329 121
## 909    99245 121
## 910    00411 120
## 911    00475 120
## 912    01582 120
## 913     0193 120
## 914     1249 120
## 915     2043 120
## 916    76802 120
## 917    77545 120
## 918     7812 120
## 919    79615 120
## 920    96811 120
## 921    98266 120
## 922    99371 120
## 923    99759 120
## 924    99998 120
## 925     0427 119
## 926     3018 119
## 927     3071 119
## 928     3106 119
## 929     3315 119
## 930    53595 119
## 931    72878 119
## 932    81731 119
## 933    81956 119
## 934    82000 119
## 935    95525 119
## 936    95959 119
## 937    98152 119
## 938     9893 119
## 939    99398 119
## 940    00054 118
## 941     0014 118
## 942     1312 118
## 943     1375 118
## 944     2960 118
## 945    34178 118
## 946    76874 118
## 947     7788 118
## 948    79646 118
## 949    96091 118
## 950    96190 118
## 951    96555 118
## 952    96673 118
## 953    99173 118
## 954    99816 118
## 955     0497 117
## 956     0533 117
## 957     1501 117
## 958     2494 117
## 959    72682 117
## 960    73798 117
## 961    74034 117
## 962    75488 117
## 963    75965 117
## 964    76102 117
## 965    76986 117
## 966    78946 117
## 967     8639 117
## 968     9096 117
## 969     9202 117
## 970    95359 117
## 971    99248 117
## 972    00372 116
## 973    01130 116
## 974     1063 116
## 975     2954 116
## 976     5907 116
## 977     7120 116
## 978    73875 116
## 979    75257 116
## 980    77196 116
## 981    77309 116
## 982    79574 116
## 983     9236 116
## 984    95108 116
## 985    96181 116
## 986    96593 116
## 987    99864 116
## 988     0715 115
## 989     0795 115
## 990     1231 115
## 991     1298 115
## 992     1748 115
## 993     2704 115
## 994     2968 115
## 995     3168 115
## 996     3632 115
## 997    63881 115
## 998    73249 115
## 999    73867 115
## 1000   75230 115
## 1001   79462 115
## 1002    8921 115
## 1003   94026 115
## 1004   94122 115
## 1005   00386 114
## 1006   00605 114
## 1007   01257 114
## 1008    0275 114
## 1009    0514 114
## 1010    2487 114
## 1011    2837 114
## 1012    2905 114
## 1013    3255 114
## 1014    3377 114
## 1015    7135 114
## 1016   73535 114
## 1017   73748 114
## 1018   76556 114
## 1019   80242 114
## 1020   81393 114
## 1021   81812 114
## 1022    9227 114
## 1023    9256 114
## 1024    9346 114
## 1025   94734 114
## 1026   95259 114
## 1027   96319 114
## 1028   97464 114
## 1029   98018 114
## 1030   98407 114
## 1031   98421 114
## 1032   99957 114
## 1033   01724 113
## 1034   02097 113
## 1035    1725 113
## 1036    2765 113
## 1037    3243 113
## 1038    5396 113
## 1039   77884 113
## 1040   80183 113
## 1041    9172 113
## 1042   94169 113
## 1043    9533 113
## 1044   96004 113
## 1045   98537 113
## 1046   99210 113
## 1047    0076 112
## 1048   01288 112
## 1049   01937 112
## 1050    0694 112
## 1051    1316 112
## 1052    1433 112
## 1053    1462 112
## 1054    2470 112
## 1055    2599 112
## 1056    2630 112
## 1057   42835 112
## 1058   73455 112
## 1059    7411 112
## 1060   75511 112
## 1061   79275 112
## 1062    9457 112
## 1063   96729 112
## 1064    9773 112
## 1065   98259 112
## 1066   99165 112
## 1067   00113 111
## 1068   00294 111
## 1069    0997 111
## 1070    1719 111
## 1071    1820 111
## 1072    2441 111
## 1073    2540 111
## 1074    2877 111
## 1075    3598 111
## 1076   42908 111
## 1077    6241 111
## 1078   75706 111
## 1079   77501 111
## 1080   81713 111
## 1081    8388 111
## 1082    9082 111
## 1083   95781 111
## 1084    9692 111
## 1085   98612 111
## 1086   01431 110
## 1087   01862 110
## 1088    1270 110
## 1089    2343 110
## 1090   74580 110
## 1091   75712 110
## 1092   76999 110
## 1093   83085 110
## 1094   94924 110
## 1095    9997 110
## 1096    0083 109
## 1097   01074 109
## 1098    0345 109
## 1099    0542 109
## 1100    0591 109
## 1101    1858 109
## 1102    2009 109
## 1103    2845 109
## 1104    2871 109
## 1105    3035 109
## 1106    3264 109
## 1107   42651 109
## 1108    6133 109
## 1109   73069 109
## 1110   74112 109
## 1111   77917 109
## 1112    8395 109
## 1113    8681 109
## 1114    8991 109
## 1115    9295 109
## 1116   93961 109
## 1117   94769 109
## 1118   95835 109
## 1119   98802 109
## 1120    0085 108
## 1121    1529 108
## 1122    2842 108
## 1123    3094 108
## 1124    3567 108
## 1125    6614 108
## 1126   78284 108
## 1127   80578 108
## 1128   81543 108
## 1129   94241 108
## 1130   94310 108
## 1131   94693 108
## 1132    9577 108
## 1133   96414 108
## 1134   97450 108
## 1135   97831 108
## 1136   98483 108
## 1137   99964 108
## 1138   00365 107
## 1139    1165 107
## 1140    1760 107
## 1141    1834 107
## 1142    2053 107
## 1143    2336 107
## 1144    2628 107
## 1145    2849 107
## 1146    3275 107
## 1147    3287 107
## 1148    3986 107
## 1149   42780 107
## 1150    5225 107
## 1151    5359 107
## 1152   72859 107
## 1153   73401 107
## 1154   78186 107
## 1155   80100 107
## 1156   81182 107
## 1157   81916 107
## 1158   82912 107
## 1159    9387 107
## 1160   94167 107
## 1161   95023 107
## 1162    9562 107
## 1163   96557 107
## 1164   96785 107
## 1165   97704 107
## 1166    9851 107
## 1167   00371 106
## 1168   01880 106
## 1169   01939 106
## 1170    0521 106
## 1171    0558 106
## 1172    1715 106
## 1173    2181 106
## 1174    2274 106
## 1175    2363 106
## 1176    2505 106
## 1177    2506 106
## 1178    2578 106
## 1179   73107 106
## 1180   73601 106
## 1181   73853 106
## 1182   74250 106
## 1183   74979 106
## 1184   77800 106
## 1185    7828 106
## 1186   78795 106
## 1187   80921 106
## 1188    8135 106
## 1189    8318 106
## 1190    8798 106
## 1191    9005 106
## 1192    9067 106
## 1193   97452 106
## 1194   98283 106
## 1195   99797 106
## 1196   00487 105
## 1197   10885 105
## 1198    1184 105
## 1199    2224 105
## 1200    2394 105
## 1201    2712 105
## 1202    2938 105
## 1203   34531 105
## 1204    4286 105
## 1205   72967 105
## 1206   73971 105
## 1207   74174 105
## 1208   74293 105
## 1209   76863 105
## 1210   79506 105
## 1211    8516 105
## 1212    9102 105
## 1213   94440 105
## 1214   96626 105
## 1215   99756 105
## 1216    0020 104
## 1217    0672 104
## 1218   10439 104
## 1219    1594 104
## 1220   16252 104
## 1221    1766 104
## 1222    1835 104
## 1223    2003 104
## 1224    2607 104
## 1225    2710 104
## 1226    2974 104
## 1227    3084 104
## 1228    3183 104
## 1229    4109 104
## 1230    6654 104
## 1231   72658 104
## 1232   72820 104
## 1233   74695 104
## 1234   81030 104
## 1235   81635 104
## 1236    9220 104
## 1237   95531 104
## 1238   96775 104
## 1239   97742 104
## 1240    9809 104
## 1241   98140 104
## 1242    0317 103
## 1243    0394 103
## 1244    0429 103
## 1245    1622 103
## 1246    1843 103
## 1247    1868 103
## 1248    1914 103
## 1249    3153 103
## 1250    3269 103
## 1251    6072 103
## 1252   73965 103
## 1253   78010 103
## 1254   79743 103
## 1255   81664 103
## 1256   82146 103
## 1257    8291 103
## 1258    8300 103
## 1259    8896 103
## 1260    9192 103
## 1261    9284 103
## 1262    9504 103
## 1263   96263 103
## 1264   97230 103
## 1265   98408 103
## 1266    9867 103
## 1267    9898 103
## 1268    1368 102
## 1269    1610 102
## 1270    1838 102
## 1271    2261 102
## 1272    2644 102
## 1273    3293 102
## 1274    5075 102
## 1275    5460 102
## 1276   62661 102
## 1277   72929 102
## 1278   73157 102
## 1279   77288 102
## 1280    7782 102
## 1281   79041 102
## 1282   80396 102
## 1283   81090 102
## 1284   82399 102
## 1285    8685 102
## 1286    9011 102
## 1287    9046 102
## 1288    9838 102
## 1289   99781 102
## 1290    9996 102
## 1291   00575 101
## 1292   01196 101
## 1293    0376 101
## 1294    1384 101
## 1295    1723 101
## 1296    2006 101
## 1297    2314 101
## 1298    2482 101
## 1299    2784 101
## 1300    2791 101
## 1301    3126 101
## 1302   31409 101
## 1303    5471 101
## 1304   73357 101
## 1305   74215 101
## 1306   79017 101
## 1307   80652 101
## 1308   82795 101
## 1309    8331 101
## 1310    9411 101
## 1311   94528 101
## 1312   94712 101
## 1313   95743 101
## 1314   95796 101
## 1315   96025 101
## 1316   97488 101
## 1317   98543 101
## 1318   98572 101
## 1319   99788 101
## 1320    9987 101
## 1321   00457 100
## 1322   01203 100
## 1323   01836 100
## 1324    0211 100
## 1325    0406 100
## 1326    0437 100
## 1327    1088 100
## 1328    1506 100
## 1329    1790 100
## 1330    2313 100
## 1331    2866 100
## 1332    4450 100
## 1333   76182 100
## 1334   78201 100
## 1335    9114 100
## 1336    9453 100
## 1337   94548 100
## 1338   94644 100
## 1339   95718 100
## 1340   96014 100
## 1341    9887 100
## 1342   00683  99
## 1343   00866  99
## 1344   01039  99
## 1345   02224  99
## 1346    0476  99
## 1347    0496  99
## 1348    0523  99
## 1349    1736  99
## 1350    2278  99
## 1351    2386  99
## 1352    2620  99
## 1353    2667  99
## 1354    3236  99
## 1355    3290  99
## 1356   42539  99
## 1357    4411  99
## 1358    5262  99
## 1359   56793  99
## 1360    6966  99
## 1361   75119  99
## 1362   75177  99
## 1363   76601  99
## 1364   79603  99
## 1365    8019  99
## 1366   80597  99
## 1367    8093  99
## 1368   80932  99
## 1369   81180  99
## 1370    9143  99
## 1371    9175  99
## 1372    9481  99
## 1373   96330  99
## 1374   97478  99
## 1375   97988  99
## 1376    9886  99
## 1377   99098  99
## 1378   99811  99
## 1379   00027  98
## 1380    0066  98
## 1381    0303  98
## 1382    0915  98
## 1383    0959  98
## 1384    1778  98
## 1385    1860  98
## 1386    2584  98
## 1387    2592  98
## 1388    2600  98
## 1389    2729  98
## 1390    3119  98
## 1391    3209  98
## 1392    4039  98
## 1393   42486  98
## 1394    6647  98
## 1395   72736  98
## 1396   73286  98
## 1397   75231  98
## 1398   76449  98
## 1399   76869  98
## 1400   79884  98
## 1401   81795  98
## 1402    8740  98
## 1403    9032  98
## 1404   96005  98
## 1405   97632  98
## 1406    9769  98
## 1407    9791  98
## 1408    0042  97
## 1409    0331  97
## 1410    0344  97
## 1411    0594  97
## 1412    0724  97
## 1413    0989  97
## 1414    1565  97
## 1415    1974  97
## 1416    2290  97
## 1417    2500  97
## 1418    2536  97
## 1419    2882  97
## 1420    3039  97
## 1421    5513  97
## 1422    7051  97
## 1423    7375  97
## 1424   74814  97
## 1425   75535  97
## 1426   76473  97
## 1427   78842  97
## 1428   80535  97
## 1429   80786  97
## 1430    8902  97
## 1431    9058  97
## 1432    9162  97
## 1433   94478  97
## 1434   95261  97
## 1435    9610  97
## 1436    9882  97
## 1437    9966  97
## 1438   00030  96
## 1439    0142  96
## 1440   01794  96
## 1441    0458  96
## 1442    0576  96
## 1443    1355  96
## 1444    2138  96
## 1445    2932  96
## 1446    2973  96
## 1447    3231  96
## 1448   42700  96
## 1449    5592  96
## 1450    7014  96
## 1451   73779  96
## 1452   75448  96
## 1453   75901  96
## 1454   80664  96
## 1455    8094  96
## 1456   81160  96
## 1457   94367  96
## 1458   96535  96
## 1459   98250  96
## 1460    0039  95
## 1461   01126  95
## 1462    0823  95
## 1463    1993  95
## 1464    3041  95
## 1465    3279  95
## 1466   33934  95
## 1467   43325  95
## 1468   72687  95
## 1469   74370  95
## 1470   75540  95
## 1471   75775  95
## 1472    7611  95
## 1473   76125  95
## 1474   76457  95
## 1475   76847  95
## 1476   79742  95
## 1477   79767  95
## 1478   79915  95
## 1479   80247  95
## 1480   80485  95
## 1481    8074  95
## 1482   81420  95
## 1483   81818  95
## 1484    8868  95
## 1485    9040  95
## 1486    9201  95
## 1487    9390  95
## 1488    9443  95
## 1489    9523  95
## 1490   97769  95
## 1491   01546  94
## 1492    0268  94
## 1493    1208  94
## 1494    1799  94
## 1495    1952  94
## 1496    2112  94
## 1497    2240  94
## 1498    2328  94
## 1499    2507  94
## 1500    2896  94
## 1501    2966  94
## 1502    3021  94
## 1503    3233  94
## 1504   42622  94
## 1505    4835  94
## 1506    6575  94
## 1507   73570  94
## 1508   74080  94
## 1509   74657  94
## 1510   77215  94
## 1511   79677  94
## 1512   80154  94
## 1513   80407  94
## 1514   81388  94
## 1515   94050  94
## 1516   94199  94
## 1517    9681  94
## 1518    9705  94
## 1519   97842  94
## 1520   97843  94
## 1521   00286  93
## 1522    0326  93
## 1523    0390  93
## 1524    0442  93
## 1525    0815  93
## 1526    0829  93
## 1527    1079  93
## 1528    2033  93
## 1529    2319  93
## 1530    2403  93
## 1531    2665  93
## 1532    4201  93
## 1533   42800  93
## 1534   43290  93
## 1535   58874  93
## 1536    6938  93
## 1537   72997  93
## 1538   73254  93
## 1539   74698  93
## 1540   75007  93
## 1541   76675  93
## 1542   80651  93
## 1543   81785  93
## 1544    8998  93
## 1545   93981  93
## 1546    9427  93
## 1547    9432  93
## 1548    9456  93
## 1549   94964  93
## 1550    9560  93
## 1551   96381  93
## 1552   97740  93
## 1553   97844  93
## 1554    9922  93
## 1555   99861  93
## 1556   00073  92
## 1557    0065  92
## 1558   02111  92
## 1559    0271  92
## 1560    0369  92
## 1561    0729  92
## 1562    0847  92
## 1563    1057  92
## 1564    1163  92
## 1565    2522  92
## 1566    2538  92
## 1567    2724  92
## 1568    3097  92
## 1569    3135  92
## 1570    3289  92
## 1571   34453  92
## 1572    4400  92
## 1573    4432  92
## 1574    7179  92
## 1575   76016  92
## 1576    7719  92
## 1577   78689  92
## 1578    9117  92
## 1579    9150  92
## 1580    9170  92
## 1581   94861  92
## 1582    9516  92
## 1583   96007  92
## 1584   98402  92
## 1585   99707  92
## 1586    0144  91
## 1587   02019  91
## 1588    0519  91
## 1589    0768  91
## 1590    0803  91
## 1591    0943  91
## 1592    0953  91
## 1593    1123  91
## 1594   11588  91
## 1595   12372  91
## 1596    1307  91
## 1597    1826  91
## 1598    2065  91
## 1599    2120  91
## 1600    2887  91
## 1601    2972  91
## 1602    3251  91
## 1603   34517  91
## 1604   73322  91
## 1605   74508  91
## 1606   77796  91
## 1607   78678  91
## 1608   80286  91
## 1609    8145  91
## 1610   83023  91
## 1611   83142  91
## 1612    8907  91
## 1613   95526  91
## 1614   97857  91
## 1615    9817  91
## 1616    0084  90
## 1617    0452  90
## 1618    0571  90
## 1619    0667  90
## 1620    1232  90
## 1621    1261  90
## 1622    1411  90
## 1623    1854  90
## 1624    1918  90
## 1625    2770  90
## 1626   30625  90
## 1627    3075  90
## 1628    3207  90
## 1629   34670  90
## 1630    3917  90
## 1631   42611  90
## 1632   74115  90
## 1633   74375  90
## 1634   77198  90
## 1635   77333  90
## 1636   82242  90
## 1637   82531  90
## 1638    8882  90
## 1639    9184  90
## 1640    9331  90
## 1641   95532  90
## 1642   96462  90
## 1643    9754  90
## 1644    9785  90
## 1645   98228  90
## 1646    9830  90
## 1647   98493  90
## 1648   01098  89
## 1649    0200  89
## 1650    0204  89
## 1651    0238  89
## 1652    0583  89
## 1653    0794  89
## 1654    1272  89
## 1655    2466  89
## 1656    3040  89
## 1657    3068  89
## 1658    3283  89
## 1659   42718  89
## 1660    4516  89
## 1661   72980  89
## 1662   73063  89
## 1663   75046  89
## 1664   77410  89
## 1665   95203  89
## 1666   98814  89
## 1667    0049  88
## 1668   00800  88
## 1669    0544  88
## 1670    0668  88
## 1671    0739  88
## 1672    0970  88
## 1673   11332  88
## 1674    1536  88
## 1675    1864  88
## 1676    2052  88
## 1677    2122  88
## 1678    2475  88
## 1679    2515  88
## 1680    3375  88
## 1681   43287  88
## 1682    6083  88
## 1683    6220  88
## 1684    6317  88
## 1685    6809  88
## 1686    7150  88
## 1687   72751  88
## 1688   74763  88
## 1689   74792  88
## 1690    7708  88
## 1691   77208  88
## 1692   77587  88
## 1693   81317  88
## 1694   97316  88
## 1695   98125  88
## 1696   00391  87
## 1697    0471  87
## 1698    0607  87
## 1699    1150  87
## 1700    1228  87
## 1701    1391  87
## 1702    1847  87
## 1703    1982  87
## 1704    2049  87
## 1705    2203  87
## 1706    2241  87
## 1707    2621  87
## 1708    2779  87
## 1709    3057  87
## 1710   42331  87
## 1711   43082  87
## 1712    4842  87
## 1713    7213  87
## 1714   75857  87
## 1715   76452  87
## 1716    7677  87
## 1717   77286  87
## 1718   80280  87
## 1719    8057  87
## 1720    8144  87
## 1721    8539  87
## 1722    8987  87
## 1723    9482  87
## 1724    9556  87
## 1725   96112  87
## 1726   96792  87
## 1727    9721  87
## 1728    9750  87
## 1729   98071  87
## 1730    9889  87
## 1731   01685  86
## 1732    0210  86
## 1733    0237  86
## 1734    0240  86
## 1735    0707  86
## 1736    1366  86
## 1737    2142  86
## 1738    2690  86
## 1739    3024  86
## 1740    4356  86
## 1741    4959  86
## 1742    5152  86
## 1743    5543  86
## 1744    5729  86
## 1745    6079  86
## 1746    6672  86
## 1747    6791  86
## 1748   73963  86
## 1749   74900  86
## 1750   75651  86
## 1751    7657  86
## 1752    7809  86
## 1753   78696  86
## 1754   80004  86
## 1755    8871  86
## 1756    9488  86
## 1757    9529  86
## 1758    9664  86
## 1759    0346  85
## 1760    0470  85
## 1761    0505  85
## 1762    1814  85
## 1763    1831  85
## 1764    2060  85
## 1765    2231  85
## 1766    2273  85
## 1767    2401  85
## 1768    2463  85
## 1769    2512  85
## 1770    2545  85
## 1771    2792  85
## 1772    2822  85
## 1773    2864  85
## 1774    3345  85
## 1775   35017  85
## 1776    3877  85
## 1777   42912  85
## 1778   43182  85
## 1779    4996  85
## 1780   54271  85
## 1781    5576  85
## 1782   72782  85
## 1783   74748  85
## 1784    7662  85
## 1785   77470  85
## 1786    7770  85
## 1787    7836  85
## 1788    7867  85
## 1789   79873  85
## 1790   81116  85
## 1791    8131  85
## 1792   81859  85
## 1793   83179  85
## 1794    9070  85
## 1795   94581  85
## 1796    9748  85
## 1797   98306  85
## 1798    9909  85
## 1799    0581  84
## 1800    0630  84
## 1801    2588  84
## 1802    2718  84
## 1803    2818  84
## 1804    2921  84
## 1805    3076  84
## 1806   31225  84
## 1807   33557  84
## 1808   43087  84
## 1809    4614  84
## 1810    4958  84
## 1811    5166  84
## 1812    5214  84
## 1813   56108  84
## 1814    6438  84
## 1815   73005  84
## 1816   73496  84
## 1817    7432  84
## 1818   74994  84
## 1819   75163  84
## 1820   76301  84
## 1821   80337  84
## 1822   80426  84
## 1823   82759  84
## 1824   82926  84
## 1825    9377  84
## 1826   95758  84
## 1827    9623  84
## 1828    9648  84
## 1829   96865  84
## 1830   97612  84
## 1831    9834  84
## 1832    9844  84
## 1833   98561  84
## 1834    9859  84
## 1835    9908  84
## 1836    9940  84
## 1837   00062  83
## 1838    0508  83
## 1839    0834  83
## 1840    0841  83
## 1841    1164  83
## 1842    1190  83
## 1843    1349  83
## 1844    1479  83
## 1845    1671  83
## 1846    2591  83
## 1847    2633  83
## 1848    2671  83
## 1849    2863  83
## 1850    2897  83
## 1851    2909  83
## 1852    3162  83
## 1853    3257  83
## 1854   34713  83
## 1855    3596  83
## 1856    3747  83
## 1857   42516  83
## 1858   42830  83
## 1859   43323  83
## 1860   43520  83
## 1861    4647  83
## 1862    7058  83
## 1863    7281  83
## 1864    7577  83
## 1865   76043  83
## 1866   77299  83
## 1867    7791  83
## 1868   79140  83
## 1869   79186  83
## 1870    8045  83
## 1871   81286  83
## 1872   82413  83
## 1873    8949  83
## 1874    9123  83
## 1875    9187  83
## 1876    9352  83
## 1877   94596  83
## 1878    9549  83
## 1879   99158  83
## 1880   01238  82
## 1881    1183  82
## 1882    1603  82
## 1883    1756  82
## 1884    1971  82
## 1885    2179  82
## 1886    2302  82
## 1887    3012  82
## 1888    3099  82
## 1889    3372  82
## 1890   33819  82
## 1891   34753  82
## 1892   43652  82
## 1893    4501  82
## 1894    4640  82
## 1895    5666  82
## 1896    6909  82
## 1897    7144  82
## 1898   72713  82
## 1899   73089  82
## 1900   73901  82
## 1901   76114  82
## 1902   76235  82
## 1903    7726  82
## 1904    7741  82
## 1905   82294  82
## 1906   83060  82
## 1907    9120  82
## 1908    9362  82
## 1909   94579  82
## 1910    9645  82
## 1911    9862  82
## 1912    9923  82
## 1913    9938  82
## 1914    1004  81
## 1915    1219  81
## 1916    1379  81
## 1917    1734  81
## 1918    1872  81
## 1919    2321  81
## 1920    2902  81
## 1921    2923  81
## 1922    3954  81
## 1923   42594  81
## 1924   42634  81
## 1925    4564  81
## 1926   51657  81
## 1927    6008  81
## 1928    6212  81
## 1929   74155  81
## 1930   74738  81
## 1931   74968  81
## 1932   76284  81
## 1933   76525  81
## 1934   77474  81
## 1935   77737  81
## 1936   79492  81
## 1937    8118  81
## 1938    8898  81
## 1939    9376  81
## 1940    9435  81
## 1941    0009  80
## 1942    0092  80
## 1943    0188  80
## 1944    0649  80
## 1945    0653  80
## 1946    1460  80
## 1947   14650  80
## 1948    1917  80
## 1949    2364  80
## 1950    2546  80
## 1951    2577  80
## 1952    2740  80
## 1953    2768  80
## 1954    2776  80
## 1955    2880  80
## 1956    3111  80
## 1957    3188  80
## 1958   35034  80
## 1959    3529  80
## 1960    5131  80
## 1961   53062  80
## 1962    5549  80
## 1963   73527  80
## 1964   74336  80
## 1965   75941  80
## 1966   75988  80
## 1967    7878  80
## 1968    8104  80
## 1969    8532  80
## 1970    8933  80
## 1971    9083  80
## 1972    9108  80
## 1973    9379  80
## 1974   95338  80
## 1975    9854  80
## 1976    9881  80
## 1977   99045  80
## 1978   01870  79
## 1979    0274  79
## 1980    0554  79
## 1981    1634  79
## 1982    1796  79
## 1983    1857  79
## 1984    2353  79
## 1985    2467  79
## 1986    2570  79
## 1987    2615  79
## 1988    2989  79
## 1989    3090  79
## 1990    3104  79
## 1991   33755  79
## 1992   34975  79
## 1993    3518  79
## 1994    3911  79
## 1995    3921  79
## 1996    3923  79
## 1997    4970  79
## 1998    6224  79
## 1999    6674  79
## 2000   73418  79
## 2001   74582  79
## 2002   76055  79
## 2003    7775  79
## 2004    9338  79
## 2005    9343  79
## 2006    9459  79
## 2007    9835  79
## 2008    0166  78
## 2009    0933  78
## 2010    0954  78
## 2011    1306  78
## 2012    2547  78
## 2013    2603  78
## 2014    2727  78
## 2015    2815  78
## 2016    2997  78
## 2017    3056  78
## 2018   34311  78
## 2019    3930  78
## 2020    3933  78
## 2021   52808  78
## 2022   54792  78
## 2023    6036  78
## 2024    7074  78
## 2025   73247  78
## 2026   75209  78
## 2027   76209  78
## 2028   82861  78
## 2029    9085  78
## 2030   95520  78
## 2031   97794  78
## 2032    9808  78
## 2033   98154  78
## 2034    9918  78
## 2035   01511  77
## 2036    0462  77
## 2037    0467  77
## 2038    0511  77
## 2039    0845  77
## 2040    1005  77
## 2041    1563  77
## 2042    1811  77
## 2043    1931  77
## 2044    2260  77
## 2045    2548  77
## 2046    2583  77
## 2047    2601  77
## 2048    2733  77
## 2049    2870  77
## 2050    3029  77
## 2051   32024  77
## 2052    3626  77
## 2053    4701  77
## 2054    5045  77
## 2055    5832  77
## 2056    5968  77
## 2057    6323  77
## 2058    6472  77
## 2059    6851  77
## 2060    6976  77
## 2061    7064  77
## 2062   72988  77
## 2063   73083  77
## 2064   74612  77
## 2065   79671  77
## 2066    8219  77
## 2067    8249  77
## 2068    9243  77
## 2069    9642  77
## 2070   98899  77
## 2071    9927  77
## 2072    0090  76
## 2073    1060  76
## 2074    1067  76
## 2075    1444  76
## 2076    1758  76
## 2077    1813  76
## 2078   18861  76
## 2079    2044  76
## 2080    2064  76
## 2081    2129  76
## 2082    2151  76
## 2083    2255  76
## 2084    2344  76
## 2085    2474  76
## 2086    2693  76
## 2087    2716  76
## 2088    2738  76
## 2089    2741  76
## 2090    3080  76
## 2091   33617  76
## 2092   34673  76
## 2093   34715  76
## 2094    3818  76
## 2095    4217  76
## 2096    4648  76
## 2097    5068  76
## 2098    5958  76
## 2099    7054  76
## 2100   72979  76
## 2101   73075  76
## 2102    7364  76
## 2103   73931  76
## 2104   74896  76
## 2105   76797  76
## 2106    8208  76
## 2107   83189  76
## 2108    8534  76
## 2109    8866  76
## 2110    8917  76
## 2111    9444  76
## 2112    9445  76
## 2113   94513  76
## 2114    0248  75
## 2115    0466  75
## 2116    0825  75
## 2117    0876  75
## 2118    1054  75
## 2119    1178  75
## 2120    1344  75
## 2121    1459  75
## 2122    1561  75
## 2123    1644  75
## 2124    2301  75
## 2125    2709  75
## 2126    2787  75
## 2127    3214  75
## 2128    4335  75
## 2129    4531  75
## 2130    4672  75
## 2131   48547  75
## 2132    5077  75
## 2133    5458  75
## 2134    5949  75
## 2135    6121  75
## 2136    6624  75
## 2137    6997  75
## 2138    7355  75
## 2139   75145  75
## 2140   75534  75
## 2141   77204  75
## 2142   79591  75
## 2143    8009  75
## 2144    8788  75
## 2145    9392  75
## 2146   94567  75
## 2147   96160  75
## 2148   96967  75
## 2149    9795  75
## 2150    9992  75
## 2151    0447  74
## 2152    0488  74
## 2153    0840  74
## 2154    0891  74
## 2155    0903  74
## 2156    0941  74
## 2157    1470  74
## 2158    1728  74
## 2159    1752  74
## 2160    1800  74
## 2161   23745  74
## 2162    2492  74
## 2163    2950  74
## 2164    3116  74
## 2165    3148  74
## 2166    3186  74
## 2167    3277  74
## 2168    3280  74
## 2169    3362  74
## 2170    3403  74
## 2171   34155  74
## 2172    3473  74
## 2173    3833  74
## 2174    3876  74
## 2175    4064  74
## 2176    4083  74
## 2177    4500  74
## 2178   47519  74
## 2179    4918  74
## 2180   50489  74
## 2181    5462  74
## 2182    5736  74
## 2183    7111  74
## 2184   72817  74
## 2185   74646  74
## 2186   75784  74
## 2187   76230  74
## 2188   76930  74
## 2189    7804  74
## 2190   79913  74
## 2191   81746  74
## 2192   81897  74
## 2193   82529  74
## 2194    8254  74
## 2195    8363  74
## 2196    8403  74
## 2197    8837  74
## 2198    9403  74
## 2199   95014  74
## 2200   95020  74
## 2201    9546  74
## 2202    9613  74
## 2203    9644  74
## 2204   99015  74
## 2205   99230  74
## 2206    9994  74
## 2207    0156  73
## 2208    0218  73
## 2209    0665  73
## 2210    0865  73
## 2211    1446  73
## 2212    1842  73
## 2213    1997  73
## 2214    2299  73
## 2215    2587  73
## 2216    2747  73
## 2217   30183  73
## 2218    3032  73
## 2219   31100  73
## 2220    3145  73
## 2221    3392  73
## 2222    3400  73
## 2223   35051  73
## 2224    4012  73
## 2225    4021  73
## 2226    4154  73
## 2227   42476  73
## 2228    4760  73
## 2229   55049  73
## 2230   56323  73
## 2231    5823  73
## 2232    6089  73
## 2233   73812  73
## 2234   74179  73
## 2235    7439  73
## 2236   76067  73
## 2237    7808  73
## 2238   82702  73
## 2239    8597  73
## 2240    9089  73
## 2241    9372  73
## 2242   95568  73
## 2243    9744  73
## 2244    9780  73
## 2245    0189  72
## 2246    0498  72
## 2247   08112  72
## 2248    0821  72
## 2249    1162  72
## 2250    1254  72
## 2251    1477  72
## 2252    1528  72
## 2253    1722  72
## 2254    2115  72
## 2255    2248  72
## 2256    2743  72
## 2257    2910  72
## 2258    2986  72
## 2259    3059  72
## 2260    3125  72
## 2261   34657  72
## 2262   35073  72
## 2263    3659  72
## 2264    4160  72
## 2265    4555  72
## 2266    5530  72
## 2267    6350  72
## 2268    6842  72
## 2269    6960  72
## 2270   72855  72
## 2271   74284  72
## 2272    7601  72
## 2273   76193  72
## 2274    7718  72
## 2275   80184  72
## 2276    8278  72
## 2277    9235  72
## 2278    9300  72
## 2279    9803  72
## 2280    9804  72
## 2281    9975  72
## 2282    0071  71
## 2283    0107  71
## 2284    0552  71
## 2285    0718  71
## 2286    0910  71
## 2287    0951  71
## 2288    1508  71
## 2289    1526  71
## 2290    1609  71
## 2291    1630  71
## 2292    1769  71
## 2293    2121  71
## 2294    2229  71
## 2295    2350  71
## 2296    2543  71
## 2297    2728  71
## 2298   31604  71
## 2299    3169  71
## 2300    3265  71
## 2301    3387  71
## 2302   34533  71
## 2303    3936  71
## 2304    4032  71
## 2305    4078  71
## 2306    4080  71
## 2307    5067  71
## 2308   53000  71
## 2309    5418  71
## 2310   54832  71
## 2311    5586  71
## 2312    5735  71
## 2313    5920  71
## 2314   64238  71
## 2315   75413  71
## 2316   75719  71
## 2317   76759  71
## 2318    7703  71
## 2319   77411  71
## 2320    7854  71
## 2321    7859  71
## 2322    8076  71
## 2323    8164  71
## 2324    8221  71
## 2325   82456  71
## 2326    8390  71
## 2327   86898  71
## 2328    9104  71
## 2329   95521  71
## 2330   95690  71
## 2331    9578  71
## 2332   97383  71
## 2333   98682  71
## 2334   01343  70
## 2335    0153  70
## 2336   02069  70
## 2337    0353  70
## 2338    0564  70
## 2339    0702  70
## 2340    0802  70
## 2341    1861  70
## 2342    2195  70
## 2343    2438  70
## 2344    2883  70
## 2345    3150  70
## 2346    3487  70
## 2347    3493  70
## 2348   34954  70
## 2349    3788  70
## 2350    4668  70
## 2351    6683  70
## 2352   72739  70
## 2353   75782  70
## 2354   76228  70
## 2355   76365  70
## 2356   76454  70
## 2357    7694  70
## 2358    7738  70
## 2359   80905  70
## 2360    8106  70
## 2361   81927  70
## 2362   83292  70
## 2363    8893  70
## 2364    8942  70
## 2365    9250  70
## 2366    9624  70
## 2367    9670  70
## 2368   97039  70
## 2369    0064  69
## 2370    0161  69
## 2371    0194  69
## 2372    0195  69
## 2373    0364  69
## 2374    0551  69
## 2375    0633  69
## 2376    0975  69
## 2377    1062  69
## 2378    1099  69
## 2379    1553  69
## 2380    2106  69
## 2381    2377  69
## 2382    2471  69
## 2383    2572  69
## 2384    2589  69
## 2385    2623  69
## 2386    2825  69
## 2387    2934  69
## 2388    3066  69
## 2389    3067  69
## 2390    3203  69
## 2391   33996  69
## 2392   34755  69
## 2393    3864  69
## 2394    3878  69
## 2395   42632  69
## 2396    4498  69
## 2397    5156  69
## 2398    5258  69
## 2399    5708  69
## 2400    6087  69
## 2401    7133  69
## 2402   72849  69
## 2403   73332  69
## 2404    7403  69
## 2405   74150  69
## 2406   75050  69
## 2407   77592  69
## 2408    7899  69
## 2409    8457  69
## 2410    8937  69
## 2411    9065  69
## 2412    9335  69
## 2413    9421  69
## 2414    9518  69
## 2415    9757  69
## 2416    9764  69
## 2417    9856  69
## 2418    0086  68
## 2419   01920  68
## 2420    0205  68
## 2421    0207  68
## 2422    1002  68
## 2423    1136  68
## 2424    1297  68
## 2425    1385  68
## 2426    1802  68
## 2427    1943  68
## 2428    2341  68
## 2429    2503  68
## 2430    2528  68
## 2431    2855  68
## 2432    3025  68
## 2433   34977  68
## 2434    4015  68
## 2435    4054  68
## 2436    4798  68
## 2437    5035  68
## 2438    5630  68
## 2439    6017  68
## 2440    6127  68
## 2441    6491  68
## 2442    6879  68
## 2443    7530  68
## 2444   75722  68
## 2445   76376  68
## 2446   76464  68
## 2447   76624  68
## 2448    7799  68
## 2449   79169  68
## 2450    8452  68
## 2451    8763  68
## 2452    9263  68
## 2453    9423  68
## 2454   95263  68
## 2455    9607  68
## 2456    9833  68
## 2457    0031  67
## 2458    0077  67
## 2459    0094  67
## 2460    0114  67
## 2461    0213  67
## 2462    0660  67
## 2463    0927  67
## 2464    1717  67
## 2465    1893  67
## 2466    1999  67
## 2467    2023  67
## 2468    2073  67
## 2469    2564  67
## 2470    2593  67
## 2471    2711  67
## 2472    2771  67
## 2473    2833  67
## 2474    2874  67
## 2475    2991  67
## 2476    3394  67
## 2477   34731  67
## 2478    3692  67
## 2479    4224  67
## 2480   42593  67
## 2481   43277  67
## 2482   43600  67
## 2483    5144  67
## 2484    5962  67
## 2485    6511  67
## 2486    6667  67
## 2487    7233  67
## 2488   74063  67
## 2489    7477  67
## 2490    7605  67
## 2491   77311  67
## 2492    7814  67
## 2493    8115  67
## 2494    9282  67
## 2495    0038  66
## 2496    0068  66
## 2497    0260  66
## 2498    0631  66
## 2499    0690  66
## 2500    0913  66
## 2501    0993  66
## 2502    1042  66
## 2503    1304  66
## 2504    1401  66
## 2505    1407  66
## 2506    1747  66
## 2507    1942  66
## 2508    2136  66
## 2509   24997  66
## 2510    2876  66
## 2511    2895  66
## 2512    2928  66
## 2513    3010  66
## 2514   34772  66
## 2515    3772  66
## 2516    3824  66
## 2517    4143  66
## 2518   42552  66
## 2519    4820  66
## 2520    4896  66
## 2521    5126  66
## 2522    5228  66
## 2523    6053  66
## 2524   60591  66
## 2525    6162  66
## 2526    6454  66
## 2527    6891  66
## 2528    7045  66
## 2529    7372  66
## 2530    7373  66
## 2531   73972  66
## 2532   74626  66
## 2533   75878  66
## 2534   76707  66
## 2535   77339  66
## 2536   78691  66
## 2537    8086  66
## 2538   80998  66
## 2539    8166  66
## 2540    9056  66
## 2541    9146  66
## 2542    9503  66
## 2543    9525  66
## 2544    9579  66
## 2545    9696  66
## 2546    9900  66
## 2547    0129  65
## 2548    0136  65
## 2549    0341  65
## 2550    0692  65
## 2551    0733  65
## 2552    1350  65
## 2553    1356  65
## 2554    1436  65
## 2555    1491  65
## 2556    1531  65
## 2557   17080  65
## 2558    2152  65
## 2559    2335  65
## 2560    2803  65
## 2561   34477  65
## 2562   34794  65
## 2563    3929  65
## 2564    3979  65
## 2565    4001  65
## 2566   42559  65
## 2567    4258  65
## 2568   43061  65
## 2569    4561  65
## 2570    5114  65
## 2571    5384  65
## 2572    5582  65
## 2573    5993  65
## 2574    6476  65
## 2575    6633  65
## 2576    6907  65
## 2577    7166  65
## 2578   73058  65
## 2579    7428  65
## 2580   75420  65
## 2581   75446  65
## 2582   76314  65
## 2583   77085  65
## 2584   77367  65
## 2585   77554  65
## 2586    7893  65
## 2587    8096  65
## 2588    9557  65
## 2589   96815  65
## 2590    0036  64
## 2591    0277  64
## 2592    1167  64
## 2593    1177  64
## 2594    2126  64
## 2595    2246  64
## 2596    2351  64
## 2597    2490  64
## 2598    2562  64
## 2599    2725  64
## 2600    2766  64
## 2601    2811  64
## 2602    2903  64
## 2603    3038  64
## 2604   33818  64
## 2605   34416  64
## 2606    4244  64
## 2607    4825  64
## 2608    5050  64
## 2609    5079  64
## 2610   53376  64
## 2611    5453  64
## 2612   57450  64
## 2613    5790  64
## 2614    5818  64
## 2615    6067  64
## 2616    6552  64
## 2617    7002  64
## 2618    7043  64
## 2619   72943  64
## 2620   75423  64
## 2621   76816  64
## 2622    7723  64
## 2623   79632  64
## 2624    8146  64
## 2625    8528  64
## 2626    9430  64
## 2627   94525  64
## 2628    0105  63
## 2629    0397  63
## 2630    0410  63
## 2631    0837  63
## 2632    0846  63
## 2633    0940  63
## 2634    0982  63
## 2635    1142  63
## 2636    1486  63
## 2637    1738  63
## 2638    2477  63
## 2639    2493  63
## 2640    2525  63
## 2641    2533  63
## 2642    2812  63
## 2643    3052  63
## 2644   31248  63
## 2645    3213  63
## 2646    3220  63
## 2647    3398  63
## 2648   34733  63
## 2649    3899  63
## 2650    3901  63
## 2651    4170  63
## 2652   52077  63
## 2653    5354  63
## 2654   56052  63
## 2655    6151  63
## 2656    6329  63
## 2657    7077  63
## 2658   74103  63
## 2659   74440  63
## 2660   76796  63
## 2661   76876  63
## 2662   77059  63
## 2663    7736  63
## 2664    7890  63
## 2665    8199  63
## 2666    8282  63
## 2667   82993  63
## 2668    8884  63
## 2669    8923  63
## 2670    9078  63
## 2671    9191  63
## 2672    9365  63
## 2673   94652  63
## 2674    9586  63
## 2675    9858  63
## 2676    9944  63
## 2677    0040  62
## 2678    0176  62
## 2679    0956  62
## 2680    0957  62
## 2681    1320  62
## 2682    1537  62
## 2683    1707  62
## 2684    1776  62
## 2685    1803  62
## 2686    1983  62
## 2687    2128  62
## 2688    2232  62
## 2689    2679  62
## 2690   27373  62
## 2691    3014  62
## 2692    3232  62
## 2693    4014  62
## 2694    4525  62
## 2695    4779  62
## 2696    5091  62
## 2697    5215  62
## 2698    5292  62
## 2699    6128  62
## 2700    6209  62
## 2701    6379  62
## 2702    6440  62
## 2703    6773  62
## 2704    7088  62
## 2705   73827  62
## 2706   74095  62
## 2707   74256  62
## 2708   74694  62
## 2709    7526  62
## 2710   75645  62
## 2711   76166  62
## 2712   76605  62
## 2713    7793  62
## 2714    7797  62
## 2715   81428  62
## 2716    8727  62
## 2717    9031  62
## 2718    9478  62
## 2719    9507  62
## 2720    9698  62
## 2721    9876  62
## 2722    9982  62
## 2723    0527  61
## 2724    0604  61
## 2725    0869  61
## 2726    0928  61
## 2727    0983  61
## 2728    1006  61
## 2729    1159  61
## 2730    1499  61
## 2731    1944  61
## 2732    2204  61
## 2733    2366  61
## 2734    2455  61
## 2735    2509  61
## 2736    2755  61
## 2737    2810  61
## 2738   29181  61
## 2739    2977  61
## 2740    3132  61
## 2741    3140  61
## 2742   34394  61
## 2743    3744  61
## 2744    3989  61
## 2745   43185  61
## 2746    5017  61
## 2747    5055  61
## 2748   50722  61
## 2749    5468  61
## 2750    5489  61
## 2751    5589  61
## 2752    5602  61
## 2753    5738  61
## 2754    6230  61
## 2755    6721  61
## 2756    6746  61
## 2757   72748  61
## 2758   73229  61
## 2759    7345  61
## 2760   74009  61
## 2761   74609  61
## 2762    7531  61
## 2763    8142  61
## 2764   82047  61
## 2765    8392  61
## 2766    9768  61
## 2767    9850  61
## 2768    0531  60
## 2769    0995  60
## 2770    1482  60
## 2771    1940  60
## 2772    2272  60
## 2773    2642  60
## 2774    2689  60
## 2775    2824  60
## 2776    2943  60
## 2777    2982  60
## 2778    3262  60
## 2779   34094  60
## 2780   34131  60
## 2781    4232  60
## 2782    4284  60
## 2783    4294  60
## 2784   43644  60
## 2785    5072  60
## 2786    5206  60
## 2787    5491  60
## 2788   55603  60
## 2789    5813  60
## 2790    5833  60
## 2791    5918  60
## 2792    6013  60
## 2793    6101  60
## 2794    6334  60
## 2795    6336  60
## 2796    6345  60
## 2797    6953  60
## 2798    7239  60
## 2799   72909  60
## 2800   75213  60
## 2801   77063  60
## 2802    8260  60
## 2803    9109  60
## 2804    9257  60
## 2805    9304  60
## 2806    9582  60
## 2807    9639  60
## 2808    0162  59
## 2809    0587  59
## 2810    0647  59
## 2811    0736  59
## 2812    0942  59
## 2813    0958  59
## 2814   10049  59
## 2815   10241  59
## 2816    1036  59
## 2817    1214  59
## 2818    1753  59
## 2819    1761  59
## 2820    2014  59
## 2821    2893  59
## 2822   31364  59
## 2823    3180  59
## 2824    3276  59
## 2825   33912  59
## 2826   34573  59
## 2827   34972  59
## 2828    3675  59
## 2829    3797  59
## 2830   43151  59
## 2831    4354  59
## 2832   44951  59
## 2833    4681  59
## 2834    4753  59
## 2835    4757  59
## 2836    5145  59
## 2837    5490  59
## 2838    5562  59
## 2839   58265  59
## 2840   59867  59
## 2841    6483  59
## 2842    6696  59
## 2843   73275  59
## 2844   74625  59
## 2845    7508  59
## 2846    7541  59
## 2847   76061  59
## 2848   76895  59
## 2849    9302  59
## 2850    9450  59
## 2851   94524  59
## 2852   95015  59
## 2853    0024  58
## 2854    0158  58
## 2855    0616  58
## 2856    1093  58
## 2857    1310  58
## 2858    1326  58
## 2859    1347  58
## 2860    1560  58
## 2861    1743  58
## 2862    1749  58
## 2863    2054  58
## 2864    2068  58
## 2865    2175  58
## 2866    2393  58
## 2867    2821  58
## 2868    2978  58
## 2869    3218  58
## 2870    3356  58
## 2871    3495  58
## 2872    3619  58
## 2873    4004  58
## 2874    4031  58
## 2875    4086  58
## 2876    4106  58
## 2877   42794  58
## 2878   47359  58
## 2879    5202  58
## 2880    5227  58
## 2881    5975  58
## 2882    6103  58
## 2883    6273  58
## 2884    6314  58
## 2885    6348  58
## 2886    6621  58
## 2887    6917  58
## 2888    6955  58
## 2889   73034  58
## 2890   73989  58
## 2891   74030  58
## 2892   74058  58
## 2893    7431  58
## 2894   74645  58
## 2895   74998  58
## 2896   75307  58
## 2897   76461  58
## 2898   76518  58
## 2899   76794  58
## 2900    7743  58
## 2901    8139  58
## 2902    8289  58
## 2903    9029  58
## 2904   94233  58
## 2905    9544  58
## 2906    9635  58
## 2907    9960  58
## 2908    0104  57
## 2909    0106  57
## 2910    0122  57
## 2911    0784  57
## 2912    0898  57
## 2913    1518  57
## 2914    1793  57
## 2915    1876  57
## 2916    2245  57
## 2917    2563  57
## 2918    2981  57
## 2919    3274  57
## 2920    3340  57
## 2921    3351  57
## 2922    3353  57
## 2923   33973  57
## 2924   34032  57
## 2925   34716  57
## 2926    3587  57
## 2927    3825  57
## 2928   42712  57
## 2929    4735  57
## 2930   47473  57
## 2931    4857  57
## 2932    4989  57
## 2933    5239  57
## 2934    5988  57
## 2935    6856  57
## 2936    7557  57
## 2937   76581  57
## 2938   77153  57
## 2939   77393  57
## 2940    7853  57
## 2941    8477  57
## 2942    8633  57
## 2943    8906  57
## 2944    9410  57
## 2945    9558  57
## 2946   96660  57
## 2947   00948  56
## 2948    0178  56
## 2949    0888  56
## 2950    2435  56
## 2951    2495  56
## 2952    2680  56
## 2953    2919  56
## 2954    3022  56
## 2955   31243  56
## 2956   31709  56
## 2957    3174  56
## 2958    3245  56
## 2959    3282  56
## 2960   33757  56
## 2961   34712  56
## 2962    3775  56
## 2963   42695  56
## 2964   43121  56
## 2965    4344  56
## 2966    4737  56
## 2967    5016  56
## 2968    5111  56
## 2969    5299  56
## 2970   54999  56
## 2971   57694  56
## 2972    6211  56
## 2973    6442  56
## 2974    6482  56
## 2975    6932  56
## 2976   75043  56
## 2977   75128  56
## 2978   75314  56
## 2979   75539  56
## 2980   75678  56
## 2981   76477  56
## 2982    8690  56
## 2983    8833  56
## 2984    9394  56
## 2985   96646  56
## 2986    9885  56
## 2987    0263  55
## 2988    0506  55
## 2989    1591  55
## 2990    2794  55
## 2991   30484  55
## 2992    3133  55
## 2993   35015  55
## 2994    3620  55
## 2995    3710  55
## 2996    3814  55
## 2997   42792  55
## 2998    4884  55
## 2999    5112  55
## 3000    5159  55
## 3001    6156  55
## 3002    6337  55
## 3003    6524  55
## 3004    6676  55
## 3005    6769  55
## 3006    7090  55
## 3007   73018  55
## 3008    7400  55
## 3009   74142  55
## 3010   76163  55
## 3011   77438  55
## 3012    9112  55
## 3013    9280  55
## 3014    9554  55
## 3015    9852  55
## 3016    9891  55
## 3017    9919  55
## 3018    9971  55
## 3019    0455  54
## 3020    0828  54
## 3021    1301  54
## 3022    1492  54
## 3023    1516  54
## 3024    1562  54
## 3025    1626  54
## 3026   16635  54
## 3027    2608  54
## 3028    2719  54
## 3029    2823  54
## 3030    2990  54
## 3031   31262  54
## 3032    3181  54
## 3033    3201  54
## 3034    3286  54
## 3035   34957  54
## 3036    3829  54
## 3037    3978  54
## 3038    3990  54
## 3039   43298  54
## 3040   43786  54
## 3041    4409  54
## 3042    4841  54
## 3043    4859  54
## 3044    5704  54
## 3045    6503  54
## 3046    6525  54
## 3047    6921  54
## 3048    7210  54
## 3049    7234  54
## 3050   72769  54
## 3051    7368  54
## 3052   74107  54
## 3053    7722  54
## 3054   77581  54
## 3055    7790  54
## 3056    7848  54
## 3057    8207  54
## 3058    8832  54
## 3059    9145  54
## 3060    9609  54
## 3061    9663  54
## 3062    9686  54
## 3063    9747  54
## 3064    9970  54
## 3065    0019  53
## 3066    0259  53
## 3067    0713  53
## 3068   10175  53
## 3069    1051  53
## 3070    1230  53
## 3071    1483  53
## 3072    1788  53
## 3073    2320  53
## 3074    2574  53
## 3075    2668  53
## 3076    2692  53
## 3077    2775  53
## 3078    2907  53
## 3079   31024  53
## 3080   31125  53
## 3081   32487  53
## 3082    3344  53
## 3083   33634  53
## 3084   34136  53
## 3085    4228  53
## 3086   43295  53
## 3087    4364  53
## 3088   43803  53
## 3089    5105  53
## 3090    5946  53
## 3091    6205  53
## 3092    6340  53
## 3093    6341  53
## 3094    7019  53
## 3095    7092  53
## 3096   72762  53
## 3097    7301  53
## 3098    7420  53
## 3099   74650  53
## 3100   75098  53
## 3101   76197  53
## 3102   76198  53
## 3103    8276  53
## 3104    9386  53
## 3105    9925  53
## 3106    9935  53
## 3107    0018  52
## 3108    0028  52
## 3109    0109  52
## 3110    0139  52
## 3111    0175  52
## 3112    0773  52
## 3113    0796  52
## 3114    1291  52
## 3115   16580  52
## 3116    1711  52
## 3117    1972  52
## 3118    2520  52
## 3119    2568  52
## 3120    2612  52
## 3121   30164  52
## 3122    3028  52
## 3123    3077  52
## 3124   33719  52
## 3125   34118  52
## 3126    3457  52
## 3127    3656  52
## 3128    3759  52
## 3129    3852  52
## 3130    3908  52
## 3131    4009  52
## 3132    4626  52
## 3133   47190  52
## 3134    4736  52
## 3135    4788  52
## 3136    5018  52
## 3137    5179  52
## 3138    5246  52
## 3139    5439  52
## 3140    5752  52
## 3141   57695  52
## 3142    6109  52
## 3143    6311  52
## 3144    6492  52
## 3145    6896  52
## 3146    6957  52
## 3147    7129  52
## 3148   74992  52
## 3149   75474  52
## 3150   75741  52
## 3151    7587  52
## 3152   76037  52
## 3153   76524  52
## 3154   77026  52
## 3155    7758  52
## 3156    8017  52
## 3157    9539  52
## 3158    9581  52
## 3159    0099  51
## 3160    0408  51
## 3161    0540  51
## 3162    2396  51
## 3163    2705  51
## 3164    2979  51
## 3165   31605  51
## 3166    3250  51
## 3167    3390  51
## 3168   34151  51
## 3169   34914  51
## 3170   35032  51
## 3171    3644  51
## 3172    3884  51
## 3173   43337  51
## 3174   43788  51
## 3175   43823  51
## 3176   43839  51
## 3177    4726  51
## 3178    4950  51
## 3179   54576  51
## 3180    6163  51
## 3181    6246  51
## 3182    6313  51
## 3183    6446  51
## 3184    6733  51
## 3185    6895  51
## 3186    7076  51
## 3187   74489  51
## 3188   74732  51
## 3189   76358  51
## 3190   76673  51
## 3191    7716  51
## 3192   77562  51
## 3193    8123  51
## 3194    8524  51
## 3195    8747  51
## 3196    8962  51
## 3197    9540  51
## 3198    9567  51
## 3199    9650  51
## 3200    9899  51
## 3201    0091  50
## 3202    0283  50
## 3203    0929  50
## 3204    1059  50
## 3205    1276  50
## 3206    1569  50
## 3207    1637  50
## 3208    1815  50
## 3209    1851  50
## 3210   18766  50
## 3211    2018  50
## 3212    2021  50
## 3213    2402  50
## 3214   26736  50
## 3215    2819  50
## 3216   32525  50
## 3217    3337  50
## 3218    4351  50
## 3219    4571  50
## 3220    4578  50
## 3221    4703  50
## 3222    4721  50
## 3223    4867  50
## 3224    5229  50
## 3225    5233  50
## 3226    5276  50
## 3227    5284  50
## 3228   54083  50
## 3229    5756  50
## 3230   61026  50
## 3231    6218  50
## 3232    6471  50
## 3233    6650  50
## 3234    7053  50
## 3235   72983  50
## 3236    7377  50
## 3237    7604  50
## 3238   76983  50
## 3239   77072  50
## 3240   77306  50
## 3241   77572  50
## 3242   77598  50
## 3243    7805  50
## 3244    7883  50
## 3245    8387  50
## 3246    8518  50
## 3247    8621  50
## 3248    8636  50
## 3249    9555  50
## 3250    9712  50
## 3251    9954  50
## 3252    9978  50
## 3253    9980  50
## 3254    0216  49
## 3255    0441  49
## 3256    0507  49
## 3257    1376  49
## 3258    1457  49
## 3259    1552  49
## 3260    1559  49
## 3261    1595  49
## 3262    1597  49
## 3263    1705  49
## 3264    2135  49
## 3265    2325  49
## 3266    2352  49
## 3267    2675  49
## 3268    2694  49
## 3269    2914  49
## 3270   30346  49
## 3271    3103  49
## 3272    3127  49
## 3273    3292  49
## 3274    3614  49
## 3275    3780  49
## 3276    3919  49
## 3277    4092  49
## 3278    4252  49
## 3279   42615  49
## 3280    4292  49
## 3281   43015  49
## 3282    4331  49
## 3283   43807  49
## 3284    4486  49
## 3285    4558  49
## 3286    4942  49
## 3287    5147  49
## 3288   54021  49
## 3289   54052  49
## 3290   57515  49
## 3291   60611  49
## 3292   62484  49
## 3293    6328  49
## 3294    6360  49
## 3295   73117  49
## 3296   74639  49
## 3297   74753  49
## 3298   74858  49
## 3299    7510  49
## 3300   75785  49
## 3301   77015  49
## 3302    7772  49
## 3303    7798  49
## 3304    7810  49
## 3305    8028  49
## 3306    8124  49
## 3307    8273  49
## 3308    9301  49
## 3309    9431  49
## 3310    9649  49
## 3311    9782  49
## 3312    0133  48
## 3313    0146  48
## 3314    1213  48
## 3315    1222  48
## 3316    1386  48
## 3317    1625  48
## 3318    1640  48
## 3319    1911  48
## 3320    2197  48
## 3321    2198  48
## 3322    2270  48
## 3323    2356  48
## 3324    2524  48
## 3325    2579  48
## 3326   31102  48
## 3327   31166  48
## 3328    3192  48
## 3329    3196  48
## 3330    3259  48
## 3331   33410  48
## 3332   33673  48
## 3333   33717  48
## 3334    3418  48
## 3335    4150  48
## 3336    4179  48
## 3337    5329  48
## 3338   56623  48
## 3339   57126  48
## 3340    5932  48
## 3341   61139  48
## 3342    6198  48
## 3343    6694  48
## 3344    6796  48
## 3345    6797  48
## 3346    6839  48
## 3347    6899  48
## 3348   72799  48
## 3349   74013  48
## 3350   74189  48
## 3351    7437  48
## 3352   74848  48
## 3353   77190  48
## 3354    8310  48
## 3355    8330  48
## 3356    8583  48
## 3357   95719  48
## 3358    9627  48
## 3359    9685  48
## 3360    9716  48
## 3361    9726  48
## 3362    0082  47
## 3363    0348  47
## 3364    0446  47
## 3365    0671  47
## 3366    0798  47
## 3367    0987  47
## 3368    1021  47
## 3369    1112  47
## 3370    1726  47
## 3371    2758  47
## 3372   30247  47
## 3373   31163  47
## 3374    3152  47
## 3375    3200  47
## 3376    3456  47
## 3377    3490  47
## 3378    3828  47
## 3379   43169  47
## 3380   43593  47
## 3381   43643  47
## 3382   43735  47
## 3383    4408  47
## 3384   60521  47
## 3385    6275  47
## 3386    6836  47
## 3387   72740  47
## 3388   73658  47
## 3389    7470  47
## 3390    7506  47
## 3391    7563  47
## 3392   76251  47
## 3393   76297  47
## 3394   77024  47
## 3395   77358  47
## 3396   77459  47
## 3397    8270  47
## 3398    8375  47
## 3399    8976  47
## 3400    9115  47
## 3401    9440  47
## 3402    9476  47
## 3403    9531  47
## 3404    9679  47
## 3405    9733  47
## 3406   97483  47
## 3407   98920  47
## 3408    0115  46
## 3409    0453  46
## 3410    0474  46
## 3411    0560  46
## 3412    0946  46
## 3413    1197  46
## 3414    1708  46
## 3415    1957  46
## 3416    1992  46
## 3417    2127  46
## 3418    2265  46
## 3419    2962  46
## 3420    2975  46
## 3421   31188  46
## 3422    3310  46
## 3423    3339  46
## 3424   33452  46
## 3425    3602  46
## 3426    3786  46
## 3427    4189  46
## 3428   42264  46
## 3429   42644  46
## 3430   43675  46
## 3431    4865  46
## 3432   55372  46
## 3433    5915  46
## 3434    6682  46
## 3435    6850  46
## 3436    7015  46
## 3437    7031  46
## 3438    7063  46
## 3439    7285  46
## 3440   73378  46
## 3441    7369  46
## 3442   73803  46
## 3443    7476  46
## 3444    7571  46
## 3445   77441  46
## 3446   77468  46
## 3447    8116  46
## 3448    8247  46
## 3449    8912  46
## 3450    8994  46
## 3451    9389  46
## 3452    9826  46
## 3453    9939  46
## 3454    0037  45
## 3455    0108  45
## 3456    0143  45
## 3457    0265  45
## 3458    0484  45
## 3459    1277  45
## 3460    1289  45
## 3461    1777  45
## 3462    1995  45
## 3463    2168  45
## 3464    2250  45
## 3465    2617  45
## 3466    2782  45
## 3467    2881  45
## 3468    2971  45
## 3469    3009  45
## 3470   30325  45
## 3471    3273  45
## 3472    3318  45
## 3473   33674  45
## 3474    3384  45
## 3475    3661  45
## 3476    3823  45
## 3477    4058  45
## 3478   42617  45
## 3479   42990  45
## 3480   43671  45
## 3481    4816  45
## 3482    4871  45
## 3483    5459  45
## 3484    5584  45
## 3485   56053  45
## 3486    5663  45
## 3487    5737  45
## 3488    5838  45
## 3489    5979  45
## 3490   61364  45
## 3491    6236  45
## 3492    6523  45
## 3493    6651  45
## 3494    6713  45
## 3495   73115  45
## 3496   73560  45
## 3497   73634  45
## 3498   73835  45
## 3499    7393  45
## 3500   73966  45
## 3501   73987  45
## 3502   74534  45
## 3503    7685  45
## 3504    7756  45
## 3505    8130  45
## 3506    9374  45
## 3507    9732  45
## 3508    9802  45
## 3509    9871  45
## 3510    0026  44
## 3511    0034  44
## 3512    0102  44
## 3513    0138  44
## 3514    1034  44
## 3515    1421  44
## 3516    2076  44
## 3517    2143  44
## 3518    2148  44
## 3519    2645  44
## 3520    2732  44
## 3521    2816  44
## 3522    2831  44
## 3523    2854  44
## 3524   30501  44
## 3525   31304  44
## 3526    3260  44
## 3527    3432  44
## 3528   34910  44
## 3529    3588  44
## 3530    3643  44
## 3531    3812  44
## 3532    3890  44
## 3533    3972  44
## 3534    4138  44
## 3535   42496  44
## 3536   42777  44
## 3537   43167  44
## 3538    4694  44
## 3539    4801  44
## 3540   49301  44
## 3541    4977  44
## 3542    4993  44
## 3543    4998  44
## 3544   55789  44
## 3545    5787  44
## 3546   58042  44
## 3547   60015  44
## 3548    6027  44
## 3549    6750  44
## 3550    6833  44
## 3551    6920  44
## 3552    7057  44
## 3553    7189  44
## 3554   72737  44
## 3555    7312  44
## 3556   73679  44
## 3557   75211  44
## 3558   75984  44
## 3559    7780  44
## 3560    7937  44
## 3561    8686  44
## 3562    8948  44
## 3563    8969  44
## 3564    9547  44
## 3565    9792  44
## 3566    0125  43
## 3567    0217  43
## 3568    0422  43
## 3569    0561  43
## 3570    0813  43
## 3571    0844  43
## 3572    0871  43
## 3573    1371  43
## 3574    1467  43
## 3575    1973  43
## 3576    2172  43
## 3577    2517  43
## 3578    2789  43
## 3579    2904  43
## 3580    3008  43
## 3581   30445  43
## 3582   31546  43
## 3583    3270  43
## 3584    3335  43
## 3585    3497  43
## 3586    3547  43
## 3587   43889  43
## 3588    4620  43
## 3589    4797  43
## 3590    4930  43
## 3591    5098  43
## 3592    5423  43
## 3593   56493  43
## 3594    5964  43
## 3595   60314  43
## 3596    6082  43
## 3597    6177  43
## 3598    6239  43
## 3599   73012  43
## 3600   73082  43
## 3601   73210  43
## 3602    7413  43
## 3603   74248  43
## 3604    7642  43
## 3605   77359  43
## 3606    8492  43
## 3607    9060  43
## 3608    9116  43
## 3609    9353  43
## 3610   95803  43
## 3611    9753  43
## 3612    9762  43
## 3613    9790  43
## 3614   99745  43
## 3615    0096  42
## 3616    0219  42
## 3617    0480  42
## 3618    0492  42
## 3619    0569  42
## 3620    0580  42
## 3621    0582  42
## 3622   09737  42
## 3623    1073  42
## 3624    1211  42
## 3625    1244  42
## 3626    1653  42
## 3627    1964  42
## 3628    2256  42
## 3629    2333  42
## 3630    2688  42
## 3631   30580  42
## 3632   31859  42
## 3633    3424  42
## 3634    3562  42
## 3635    3803  42
## 3636    3958  42
## 3637   42524  42
## 3638   43181  42
## 3639   43275  42
## 3640   43763  42
## 3641    4393  42
## 3642   53150  42
## 3643    5587  42
## 3644   58266  42
## 3645   58448  42
## 3646   58837  42
## 3647    5997  42
## 3648    6105  42
## 3649   61068  42
## 3650   63345  42
## 3651    6549  42
## 3652    6581  42
## 3653    6630  42
## 3654    7161  42
## 3655    7203  42
## 3656    7238  42
## 3657   73030  42
## 3658   73318  42
## 3659   74706  42
## 3660   76072  42
## 3661   76751  42
## 3662    9002  42
## 3663    9424  42
## 3664   94842  42
## 3665    9725  42
## 3666    0674  41
## 3667    0756  41
## 3668    1668  41
## 3669    1871  41
## 3670    2132  41
## 3671    2597  41
## 3672    2916  41
## 3673   31823  41
## 3674   33932  41
## 3675    3869  41
## 3676   42535  41
## 3677   43179  41
## 3678    4361  41
## 3679    4709  41
## 3680    4778  41
## 3681    5194  41
## 3682    5723  41
## 3683   58293  41
## 3684    6119  41
## 3685    6434  41
## 3686    6606  41
## 3687    6751  41
## 3688    6771  41
## 3689    7118  41
## 3690   73414  41
## 3691   73660  41
## 3692   73678  41
## 3693    7445  41
## 3694   76190  41
## 3695   77135  41
## 3696    7849  41
## 3697    7861  41
## 3698    8035  41
## 3699    8900  41
## 3700    9221  41
## 3701    9285  41
## 3702    9296  41
## 3703    0417  40
## 3704    0774  40
## 3705    1046  40
## 3706    1358  40
## 3707    1373  40
## 3708    1377  40
## 3709    1915  40
## 3710    2585  40
## 3711    2717  40
## 3712   30686  40
## 3713    3341  40
## 3714    4103  40
## 3715   42889  40
## 3716   43075  40
## 3717   43090  40
## 3718    4885  40
## 3719   50643  40
## 3720    5141  40
## 3721   52891  40
## 3722    5383  40
## 3723   54107  40
## 3724    5745  40
## 3725   57776  40
## 3726    6024  40
## 3727    6599  40
## 3728    6685  40
## 3729    6759  40
## 3730    6794  40
## 3731   72707  40
## 3732   73727  40
## 3733   73952  40
## 3734   74275  40
## 3735    7556  40
## 3736   76275  40
## 3737    8891  40
## 3738    9303  40
## 3739    9308  40
## 3740    9673  40
## 3741    9719  40
## 3742    9848  40
## 3743    0308  39
## 3744    1168  39
## 3745    1655  39
## 3746    1704  39
## 3747    2418  39
## 3748    2917  39
## 3749    3454  39
## 3750   34993  39
## 3751    3501  39
## 3752    3512  39
## 3753    3724  39
## 3754    3757  39
## 3755    3941  39
## 3756   42683  39
## 3757   42710  39
## 3758   42760  39
## 3759    4330  39
## 3760    4594  39
## 3761    4646  39
## 3762   53424  39
## 3763    5475  39
## 3764   54816  39
## 3765    5770  39
## 3766    6426  39
## 3767   73785  39
## 3768   74042  39
## 3769   74959  39
## 3770   75015  39
## 3771   75166  39
## 3772   75672  39
## 3773    7918  39
## 3774    8742  39
## 3775    9247  39
## 3776    9378  39
## 3777    9396  39
## 3778    9417  39
## 3779    9879  39
## 3780    0450  38
## 3781    0545  38
## 3782    0559  38
## 3783    1369  38
## 3784    1967  38
## 3785    2186  38
## 3786    2367  38
## 3787    2683  38
## 3788    3108  38
## 3789   31084  38
## 3790   32346  38
## 3791   33473  38
## 3792   33773  38
## 3793   43063  38
## 3794   43729  38
## 3795    4713  38
## 3796    4784  38
## 3797    5273  38
## 3798    5291  38
## 3799    5377  38
## 3800   60817  38
## 3801    6116  38
## 3802    6598  38
## 3803    6697  38
## 3804    6876  38
## 3805   74929  38
## 3806    7575  38
## 3807   76665  38
## 3808    7673  38
## 3809    7827  38
## 3810    8292  38
## 3811    8989  38
## 3812    9101  38
## 3813    9197  38
## 3814    9279  38
## 3815   94202  38
## 3816    9604  38
## 3817    0770  37
## 3818    0816  37
## 3819    1534  37
## 3820    1737  37
## 3821    2542  37
## 3822    2580  37
## 3823    2888  37
## 3824    3030  37
## 3825   30363  37
## 3826   31345  37
## 3827   31349  37
## 3828    3465  37
## 3829    3494  37
## 3830    4037  37
## 3831    4057  37
## 3832   42989  37
## 3833   43245  37
## 3834   43591  37
## 3835    4417  37
## 3836    5167  37
## 3837    5211  37
## 3838   54486  37
## 3839    5473  37
## 3840    6786  37
## 3841    7289  37
## 3842   75172  37
## 3843   75210  37
## 3844   75301  37
## 3845    7961  37
## 3846    8496  37
## 3847    9037  37
## 3848    9203  37
## 3849    9254  37
## 3850    9272  37
## 3851    9369  37
## 3852    9897  37
## 3853    0021  36
## 3854    0165  36
## 3855    0810  36
## 3856    0911  36
## 3857    1104  36
## 3858    1200  36
## 3859    1327  36
## 3860    1950  36
## 3861    2022  36
## 3862    2305  36
## 3863    2839  36
## 3864    3043  36
## 3865   31388  36
## 3866    3154  36
## 3867    3194  36
## 3868    3244  36
## 3869    3785  36
## 3870    3832  36
## 3871    4063  36
## 3872   43162  36
## 3873    5003  36
## 3874   55681  36
## 3875   57216  36
## 3876    5851  36
## 3877    6130  36
## 3878    6756  36
## 3879    6890  36
## 3880   72788  36
## 3881   73015  36
## 3882   73432  36
## 3883   73701  36
## 3884   73924  36
## 3885   74291  36
## 3886   74477  36
## 3887    7459  36
## 3888    7562  36
## 3889   77273  36
## 3890    8223  36
## 3891    9124  36
## 3892   98285  36
## 3893    0279  35
## 3894    0872  35
## 3895   10052  35
## 3896    1149  35
## 3897    1768  35
## 3898    1928  35
## 3899    2105  35
## 3900   24356  35
## 3901    2619  35
## 3902    2672  35
## 3903    2829  35
## 3904   30119  35
## 3905   34119  35
## 3906    3696  35
## 3907    3796  35
## 3908   42473  35
## 3909    4254  35
## 3910   42708  35
## 3911    4489  35
## 3912    4830  35
## 3913    5031  35
## 3914   56347  35
## 3915    5854  35
## 3916   59946  35
## 3917    6019  35
## 3918    6100  35
## 3919    6497  35
## 3920    6631  35
## 3921    6659  35
## 3922    6858  35
## 3923    7155  35
## 3924    7319  35
## 3925   73333  35
## 3926   75583  35
## 3927   76100  35
## 3928   76432  35
## 3929   76980  35
## 3930    7926  35
## 3931    8305  35
## 3932    8385  35
## 3933    9312  35
## 3934    9380  35
## 3935    9641  35
## 3936    9924  35
## 3937    0212  34
## 3938    0448  34
## 3939    0532  34
## 3940    0883  34
## 3941    1139  34
## 3942    1217  34
## 3943   13739  34
## 3944    1979  34
## 3945    2238  34
## 3946    2473  34
## 3947    2802  34
## 3948    2841  34
## 3949    2936  34
## 3950    3036  34
## 3951   31009  34
## 3952    3139  34
## 3953    3268  34
## 3954    3865  34
## 3955    3938  34
## 3956    4246  34
## 3957   43068  34
## 3958    4485  34
## 3959    4556  34
## 3960    5296  34
## 3961    5454  34
## 3962   57051  34
## 3963   57426  34
## 3964    5891  34
## 3965    5952  34
## 3966    6061  34
## 3967    6222  34
## 3968   73097  34
## 3969    7347  34
## 3970   73773  34
## 3971   74476  34
## 3972   74819  34
## 3973    7592  34
## 3974   77180  34
## 3975   77457  34
## 3976   77543  34
## 3977    8374  34
## 3978    8441  34
## 3979    8533  34
## 3980    8910  34
## 3981    0389  33
## 3982    0621  33
## 3983    0703  33
## 3984    1100  33
## 3985    1229  33
## 3986    1285  33
## 3987    1418  33
## 3988    1629  33
## 3989    1643  33
## 3990    2339  33
## 3991    2534  33
## 3992    2720  33
## 3993    2757  33
## 3994    2860  33
## 3995    3054  33
## 3996   30665  33
## 3997    3128  33
## 3998    3151  33
## 3999    3258  33
## 4000    3560  33
## 4001    3900  33
## 4002   42450  33
## 4003    4248  33
## 4004   42500  33
## 4005   42854  33
## 4006   43228  33
## 4007   43632  33
## 4008    4473  33
## 4009    4730  33
## 4010    4984  33
## 4011   51542  33
## 4012    5550  33
## 4013    5784  33
## 4014    6039  33
## 4015    6153  33
## 4016    6305  33
## 4017    6754  33
## 4018    6770  33
## 4019    7112  33
## 4020    7127  33
## 4021   73565  33
## 4022   73661  33
## 4023   74398  33
## 4024   74414  33
## 4025   74801  33
## 4026   75071  33
## 4027    7613  33
## 4028   76227  33
## 4029    7669  33
## 4030   76941  33
## 4031   77054  33
## 4032   77591  33
## 4033    7801  33
## 4034    9298  33
## 4035    9354  33
## 4036    9738  33
## 4037    0044  32
## 4038    0434  32
## 4039    0643  32
## 4040    0737  32
## 4041    0864  32
## 4042    1037  32
## 4043    2280  32
## 4044    3112  32
## 4045    3155  32
## 4046   32345  32
## 4047    3739  32
## 4048   42523  32
## 4049   43564  32
## 4050    4645  32
## 4051    4676  32
## 4052    5066  32
## 4053    5255  32
## 4054    5882  32
## 4055    6197  32
## 4056    6388  32
## 4057    6657  32
## 4058    6931  32
## 4059    6943  32
## 4060    7052  32
## 4061    7394  32
## 4062    7404  32
## 4063   75702  32
## 4064   77534  32
## 4065    9086  32
## 4066    0022  31
## 4067    0362  31
## 4068    1115  31
## 4069    2469  31
## 4070    2549  31
## 4071   30289  31
## 4072   30985  31
## 4073   31402  31
## 4074    3191  31
## 4075    3227  31
## 4076   33558  31
## 4077   33619  31
## 4078    3791  31
## 4079    3925  31
## 4080   43128  31
## 4081   43784  31
## 4082   44960  31
## 4083    4589  31
## 4084    5056  31
## 4085    5116  31
## 4086    5575  31
## 4087   56446  31
## 4088    6030  31
## 4089    6320  31
## 4090    6364  31
## 4091    6981  31
## 4092    7026  31
## 4093   73935  31
## 4094   73962  31
## 4095    7419  31
## 4096    7430  31
## 4097   75016  31
## 4098   76587  31
## 4099   77270  31
## 4100    7950  31
## 4101    8069  31
## 4102    8448  31
## 4103    8876  31
## 4104    0003  30
## 4105    0101  30
## 4106    0360  30
## 4107    0409  30
## 4108    1292  30
## 4109    1774  30
## 4110    1926  30
## 4111    2237  30
## 4112    2329  30
## 4113    2331  30
## 4114    2332  30
## 4115    2436  30
## 4116    2590  30
## 4117    2606  30
## 4118    2691  30
## 4119    2868  30
## 4120    2901  30
## 4121    2959  30
## 4122    3015  30
## 4123    3047  30
## 4124    3096  30
## 4125    3355  30
## 4126    3486  30
## 4127    3657  30
## 4128    3720  30
## 4129   42682  30
## 4130    4758  30
## 4131    5172  30
## 4132    5249  30
## 4133    5320  30
## 4134   53217  30
## 4135    7183  30
## 4136    7468  30
## 4137   76410  30
## 4138    7660  30
## 4139   76790  30
## 4140   76914  30
## 4141   76933  30
## 4142   77074  30
## 4143    7972  30
## 4144    8079  30
## 4145    8897  30
## 4146    8971  30
## 4147    9033  30
## 4148    9974  30
## 4149    0208  29
## 4150    0608  29
## 4151    0976  29
## 4152    1058  29
## 4153    1341  29
## 4154    1832  29
## 4155    1882  29
## 4156    1895  29
## 4157   20628  29
## 4158    2295  29
## 4159    2748  29
## 4160    2857  29
## 4161   30182  29
## 4162   32407  29
## 4163    3504  29
## 4164    3845  29
## 4165    4159  29
## 4166   43750  29
## 4167   49299  29
## 4168    4943  29
## 4169   55656  29
## 4170   58680  29
## 4171   60283  29
## 4172    6187  29
## 4173    6351  29
## 4174    6394  29
## 4175    7244  29
## 4176   73942  29
## 4177   74529  29
## 4178   74910  29
## 4179    7547  29
## 4180   75550  29
## 4181   75985  29
## 4182   76663  29
## 4183   77334  29
## 4184   77583  29
## 4185    8107  29
## 4186    8122  29
## 4187    8196  29
## 4188    8213  29
## 4189    8587  29
## 4190    9122  29
## 4191    9349  29
## 4192    9373  29
## 4193    9405  29
## 4194    0381  28
## 4195    0454  28
## 4196    2016  28
## 4197    2454  28
## 4198    2462  28
## 4199    2695  28
## 4200    2873  28
## 4201    2889  28
## 4202    2994  28
## 4203    3000  28
## 4204   31245  28
## 4205    3161  28
## 4206    3314  28
## 4207    3648  28
## 4208    3758  28
## 4209    4123  28
## 4210   42456  28
## 4211    4616  28
## 4212    4732  28
## 4213    5209  28
## 4214    5210  28
## 4215   54053  28
## 4216    5551  28
## 4217    5610  28
## 4218    5780  28
## 4219   59102  28
## 4220    6362  28
## 4221    6749  28
## 4222    7024  28
## 4223    7270  28
## 4224   72770  28
## 4225   73863  28
## 4226   76242  28
## 4227   77078  28
## 4228   77604  28
## 4229    7813  28
## 4230    8693  28
## 4231   96672  28
## 4232    9941  28
## 4233    0206  27
## 4234    0509  27
## 4235    0842  27
## 4236    1580  27
## 4237    2311  27
## 4238    2361  27
## 4239    2391  27
## 4240    2440  27
## 4241    2488  27
## 4242    2696  27
## 4243    2844  27
## 4244    2865  27
## 4245   30198  27
## 4246    3034  27
## 4247    3037  27
## 4248   31289  27
## 4249    3571  27
## 4250    3658  27
## 4251    3685  27
## 4252    3763  27
## 4253    3858  27
## 4254   43903  27
## 4255    4502  27
## 4256    4872  27
## 4257    4973  27
## 4258    5071  27
## 4259    5326  27
## 4260   54460  27
## 4261   56176  27
## 4262    6052  27
## 4263   62377  27
## 4264    6435  27
## 4265    6455  27
## 4266   73486  27
## 4267   73888  27
## 4268   74197  27
## 4269   74415  27
## 4270   74676  27
## 4271   75000  27
## 4272   75320  27
## 4273   76435  27
## 4274   77325  27
## 4275    8551  27
## 4276    9819  27
## 4277    9937  27
## 4278    0025  26
## 4279    0048  26
## 4280    0262  26
## 4281    0472  26
## 4282    0874  26
## 4283    0999  26
## 4284   10013  26
## 4285   10338  26
## 4286    1264  26
## 4287    1981  26
## 4288    2664  26
## 4289   31126  26
## 4290    3130  26
## 4291   33890  26
## 4292    3506  26
## 4293    3565  26
## 4294    3968  26
## 4295    4251  26
## 4296   42550  26
## 4297   42828  26
## 4298   43808  26
## 4299    4407  26
## 4300    4462  26
## 4301   44641  26
## 4302    4551  26
## 4303    4686  26
## 4304    5063  26
## 4305   53578  26
## 4306    5555  26
## 4307    5642  26
## 4308   60056  26
## 4309    6374  26
## 4310    6494  26
## 4311    6558  26
## 4312    6764  26
## 4313    7223  26
## 4314    7236  26
## 4315    7440  26
## 4316    7539  26
## 4317   75451  26
## 4318   75555  26
## 4319   76203  26
## 4320   76292  26
## 4321   76309  26
## 4322   77178  26
## 4323   77525  26
## 4324    7832  26
## 4325    8265  26
## 4326    8321  26
## 4327    8505  26
## 4328    8594  26
## 4329    8613  26
## 4330    8986  26
## 4331    9315  26
## 4332    9583  26
## 4333    9667  26
## 4334    0818  25
## 4335    1131  25
## 4336    1550  25
## 4337    1572  25
## 4338    2202  25
## 4339    2676  25
## 4340    3005  25
## 4341    3045  25
## 4342    3333  25
## 4343    3420  25
## 4344    3642  25
## 4345    3701  25
## 4346    3773  25
## 4347    3934  25
## 4348    3987  25
## 4349    4163  25
## 4350    4182  25
## 4351   42630  25
## 4352   42934  25
## 4353    4315  25
## 4354    4316  25
## 4355   43265  25
## 4356    5090  25
## 4357    5128  25
## 4358    5133  25
## 4359   62239  25
## 4360   62589  25
## 4361    6789  25
## 4362   72728  25
## 4363   72784  25
## 4364   72908  25
## 4365   74022  25
## 4366   76340  25
## 4367   77481  25
## 4368    8108  25
## 4369    8692  25
## 4370    8888  25
## 4371    9063  25
## 4372    9501  25
## 4373    9969  25
## 4374    0121  24
## 4375    0370  24
## 4376    0658  24
## 4377    0886  24
## 4378    0914  24
## 4379    0918  24
## 4380    1040  24
## 4381    1192  24
## 4382    1336  24
## 4383    1632  24
## 4384    2145  24
## 4385    2228  24
## 4386    2243  24
## 4387    2281  24
## 4388    2726  24
## 4389    2739  24
## 4390   30151  24
## 4391    3081  24
## 4392   31443  24
## 4393   32083  24
## 4394   34973  24
## 4395    3723  24
## 4396    3962  24
## 4397    4127  24
## 4398    4226  24
## 4399   42803  24
## 4400    4391  24
## 4401    4476  24
## 4402    4534  24
## 4403    4600  24
## 4404    4919  24
## 4405   51141  24
## 4406    5285  24
## 4407    5672  24
## 4408    5792  24
## 4409    5870  24
## 4410   59204  24
## 4411   61184  24
## 4412    6486  24
## 4413    6644  24
## 4414    6945  24
## 4415    7075  24
## 4416   72672  24
## 4417    7362  24
## 4418    7386  24
## 4419   74243  24
## 4420   75564  24
## 4421   75648  24
## 4422    7598  24
## 4423   77557  24
## 4424    8225  24
## 4425    8637  24
## 4426    8904  24
## 4427    9313  24
## 4428    9460  24
## 4429    0116  23
## 4430    0617  23
## 4431    0964  23
## 4432    1290  23
## 4433    1729  23
## 4434    1852  23
## 4435    2104  23
## 4436    2141  23
## 4437    2450  23
## 4438    2640  23
## 4439    2875  23
## 4440    2906  23
## 4441   30503  23
## 4442   31681  23
## 4443    3727  23
## 4444    3760  23
## 4445   42457  23
## 4446   42922  23
## 4447   43345  23
## 4448   43723  23
## 4449   43873  23
## 4450   58601  23
## 4451    5985  23
## 4452    6029  23
## 4453   61009  23
## 4454    6632  23
## 4455    6656  23
## 4456    6846  23
## 4457   73630  23
## 4458   74836  23
## 4459   74898  23
## 4460   76360  23
## 4461   77046  23
## 4462   77223  23
## 4463    8167  23
## 4464    9132  23
## 4465    9433  23
## 4466   96516  23
## 4467    9837  23
## 4468   09172  22
## 4469    1035  22
## 4470    1087  22
## 4471    1432  22
## 4472    1789  22
## 4473    2535  22
## 4474    2638  22
## 4475    2659  22
## 4476    2778  22
## 4477   30644  22
## 4478   30784  22
## 4479   31985  22
## 4480   32041  22
## 4481    3414  22
## 4482    3519  22
## 4483    3638  22
## 4484    3966  22
## 4485   42547  22
## 4486   42844  22
## 4487   42849  22
## 4488   42864  22
## 4489   42880  22
## 4490   43116  22
## 4491   43273  22
## 4492   43894  22
## 4493    4415  22
## 4494    4848  22
## 4495    5000  22
## 4496    5024  22
## 4497    5786  22
## 4498   58642  22
## 4499    6152  22
## 4500    6227  22
## 4501    6596  22
## 4502    6643  22
## 4503    6816  22
## 4504    7012  22
## 4505    7190  22
## 4506    7525  22
## 4507   75723  22
## 4508   75870  22
## 4509   76619  22
## 4510   77320  22
## 4511   77351  22
## 4512    8255  22
## 4513    9489  22
## 4514    9513  22
## 4515    0013  21
## 4516    1076  21
## 4517    1157  21
## 4518    2411  21
## 4519    2925  21
## 4520    3006  21
## 4521   30173  21
## 4522   31187  21
## 4523   31843  21
## 4524    3198  21
## 4525    3208  21
## 4526    3299  21
## 4527   34231  21
## 4528    3554  21
## 4529    3935  21
## 4530   42890  21
## 4531   43239  21
## 4532   43592  21
## 4533   43610  21
## 4534    4380  21
## 4535   43857  21
## 4536    4678  21
## 4537    4765  21
## 4538    4819  21
## 4539    5070  21
## 4540    5563  21
## 4541    5685  21
## 4542   57843  21
## 4543   58357  21
## 4544    6049  21
## 4545    6700  21
## 4546   74551  21
## 4547   76019  21
## 4548   76786  21
## 4549   76858  21
## 4550   77245  21
## 4551   77477  21
## 4552    9224  21
## 4553    9723  21
## 4554    9807  21
## 4555    9810  21
## 4556    0354  20
## 4557    0451  20
## 4558    0971  20
## 4559    2957  20
## 4560    3004  20
## 4561   30347  20
## 4562    3100  20
## 4563    3147  20
## 4564    3216  20
## 4565    3761  20
## 4566    3808  20
## 4567    3888  20
## 4568    4782  20
## 4569   47826  20
## 4570    4791  20
## 4571    4910  20
## 4572   52223  20
## 4573    5308  20
## 4574   57724  20
## 4575    6271  20
## 4576    6300  20
## 4577   72720  20
## 4578   72850  20
## 4579   73052  20
## 4580   73911  20
## 4581    7534  20
## 4582    7583  20
## 4583   75854  20
## 4584   76612  20
## 4585   77268  20
## 4586   77269  20
## 4587   77524  20
## 4588    9105  20
## 4589    9190  20
## 4590    9310  20
## 4591    9382  20
## 4592    9573  20
## 4593    9999  20
## 4594    0636  19
## 4595    1101  19
## 4596    1250  19
## 4597    2288  19
## 4598    2632  19
## 4599    2745  19
## 4600    2801  19
## 4601    2930  19
## 4602   30587  19
## 4603    3228  19
## 4604   34937  19
## 4605    3593  19
## 4606    3653  19
## 4607    3849  19
## 4608   43170  19
## 4609   43709  19
## 4610    4965  19
## 4611    5064  19
## 4612    5076  19
## 4613    5430  19
## 4614   55317  19
## 4615    5546  19
## 4616    5793  19
## 4617   58332  19
## 4618   58576  19
## 4619    6132  19
## 4620    6171  19
## 4621    6173  19
## 4622    6242  19
## 4623    6431  19
## 4624    6570  19
## 4625    6648  19
## 4626    6933  19
## 4627    7078  19
## 4628    7124  19
## 4629    7334  19
## 4630    7359  19
## 4631   73713  19
## 4632   74485  19
## 4633   75234  19
## 4634    8546  19
## 4635    9266  19
## 4636    9363  19
## 4637    9832  19
## 4638    0854  18
## 4639    2059  18
## 4640    2072  18
## 4641    2118  18
## 4642    2449  18
## 4643    2485  18
## 4644    2499  18
## 4645    2532  18
## 4646    2714  18
## 4647    3046  18
## 4648   31847  18
## 4649    3210  18
## 4650    3278  18
## 4651   34690  18
## 4652   34974  18
## 4653    4142  18
## 4654    4287  18
## 4655   43869  18
## 4656   45330  18
## 4657    4947  18
## 4658    5121  18
## 4659   52772  18
## 4660   53711  18
## 4661   56293  18
## 4662    5702  18
## 4663    5707  18
## 4664    6639  18
## 4665   73900  18
## 4666    7482  18
## 4667    7507  18
## 4668   75883  18
## 4669    8110  18
## 4670    8536  18
## 4671    8968  18
## 4672    1600  17
## 4673   16586  17
## 4674    1662  17
## 4675   16895  17
## 4676   26694  17
## 4677   30707  17
## 4678   31123  17
## 4679    3373  17
## 4680    3729  17
## 4681    3749  17
## 4682   41626  17
## 4683   42819  17
## 4684    4461  17
## 4685    5385  17
## 4686   54712  17
## 4687    5644  17
## 4688    5884  17
## 4689   61466  17
## 4690    6200  17
## 4691    6578  17
## 4692    6727  17
## 4693    7360  17
## 4694    7481  17
## 4695   74933  17
## 4696   77480  17
## 4697    8618  17
## 4698    8903  17
## 4699    9619  17
## 4700    9894  17
## 4701    0254  16
## 4702    0801  16
## 4703    2117  16
## 4704    2357  16
## 4705    2468  16
## 4706    2722  16
## 4707    3065  16
## 4708    3226  16
## 4709    3479  16
## 4710    3872  16
## 4711    3924  16
## 4712   42905  16
## 4713   43030  16
## 4714   43069  16
## 4715    4414  16
## 4716    4494  16
## 4717   54741  16
## 4718    5564  16
## 4719    5878  16
## 4720    5971  16
## 4721    6063  16
## 4722    6653  16
## 4723    6663  16
## 4724    6768  16
## 4725    6985  16
## 4726    7398  16
## 4727    7414  16
## 4728    7456  16
## 4729    7615  16
## 4730   77485  16
## 4731    7789  16
## 4732    9467  16
## 4733    9959  16
## 4734    0081  15
## 4735    1295  15
## 4736    1452  15
## 4737    1855  15
## 4738    2184  15
## 4739    2409  15
## 4740    2684  15
## 4741    2850  15
## 4742    3073  15
## 4743    3115  15
## 4744    3267  15
## 4745    3348  15
## 4746    3376  15
## 4747    3741  15
## 4748    4022  15
## 4749   42711  15
## 4750   43842  15
## 4751    4477  15
## 4752    4529  15
## 4753   49232  15
## 4754    5250  15
## 4755    5275  15
## 4756    5452  15
## 4757   55103  15
## 4758    5716  15
## 4759   58093  15
## 4760   58412  15
## 4761    5853  15
## 4762    6032  15
## 4763   61913  15
## 4764    6292  15
## 4765    6410  15
## 4766    6699  15
## 4767    6829  15
## 4768    7245  15
## 4769    7320  15
## 4770   75024  15
## 4771   76843  15
## 4772   77414  15
## 4773   77550  15
## 4774    8262  15
## 4775    8929  15
## 4776    8945  15
## 4777    9986  15
## 4778    0740  14
## 4779    1505  14
## 4780    2457  14
## 4781    2508  14
## 4782    3001  14
## 4783   30303  14
## 4784    3124  14
## 4785   31543  14
## 4786    3691  14
## 4787   43761  14
## 4788    4929  14
## 4789    4992  14
## 4790   55187  14
## 4791    5620  14
## 4792    6045  14
## 4793    6658  14
## 4794    6944  14
## 4795    7116  14
## 4796   74434  14
## 4797   74797  14
## 4798   75716  14
## 4799   76773  14
## 4800    7855  14
## 4801    7920  14
## 4802    8382  14
## 4803    9207  14
## 4804    9787  14
## 4805    0119  13
## 4806    0140  13
## 4807    0425  13
## 4808    1733  13
## 4809    2479  13
## 4810    2662  13
## 4811    2721  13
## 4812    2838  13
## 4813   31068  13
## 4814    3184  13
## 4815   32002  13
## 4816    3240  13
## 4817    3528  13
## 4818    4052  13
## 4819   42998  13
## 4820   43815  13
## 4821    5512  13
## 4822    5872  13
## 4823    5900  13
## 4824    5972  13
## 4825   60709  13
## 4826   60923  13
## 4827    6333  13
## 4828    6571  13
## 4829    7374  13
## 4830    7485  13
## 4831    7705  13
## 4832    8523  13
## 4833    9321  13
## 4834    9703  13
## 4835    9983  13
## 4836    0070  12
## 4837    1445  12
## 4838    1627  12
## 4839    2448  12
## 4840    2598  12
## 4841   30116  12
## 4842   30244  12
## 4843   30248  12
## 4844    3630  12
## 4845    3873  12
## 4846    3928  12
## 4847    4029  12
## 4848   41994  12
## 4849   42866  12
## 4850   43340  12
## 4851   43511  12
## 4852   43599  12
## 4853   43762  12
## 4854   43877  12
## 4855    4474  12
## 4856    5445  12
## 4857   54685  12
## 4858    5581  12
## 4859    6022  12
## 4860    6335  12
## 4861    6432  12
## 4862    6461  12
## 4863    6662  12
## 4864    6732  12
## 4865    7172  12
## 4866   73738  12
## 4867    7524  12
## 4868    7552  12
## 4869    7880  12
## 4870    9092  12
## 4871    9717  12
## 4872    0010  11
## 4873    0241  11
## 4874    0473  11
## 4875    0547  11
## 4876    0632  11
## 4877    0735  11
## 4878    0782  11
## 4879    1287  11
## 4880   17329  11
## 4881    2388  11
## 4882    2526  11
## 4883   31028  11
## 4884    3239  11
## 4885    3246  11
## 4886    3660  11
## 4887    3738  11
## 4888    3762  11
## 4889    3893  11
## 4890    3952  11
## 4891    4107  11
## 4892   42875  11
## 4893   43283  11
## 4894   43311  11
## 4895    4336  11
## 4896   43621  11
## 4897   43913  11
## 4898    4836  11
## 4899    4933  11
## 4900    5297  11
## 4901   55026  11
## 4902   55710  11
## 4903    5653  11
## 4904    5778  11
## 4905    6169  11
## 4906    6478  11
## 4907    7085  11
## 4908    7226  11
## 4909    7325  11
## 4910   75285  11
## 4911   75543  11
## 4912   75726  11
## 4913   76063  11
## 4914    7956  11
## 4915    8217  11
## 4916    8622  11
## 4917    9687  11
## 4918    0063  10
## 4919    0661  10
## 4920    1328  10
## 4921    1623  10
## 4922   31421  10
## 4923   33556  10
## 4924    3599  10
## 4925    3679  10
## 4926    3863  10
## 4927   43303  10
## 4928   43716  10
## 4929    5073  10
## 4930   53988  10
## 4931    5829  10
## 4932    5957  10
## 4933    6016  10
## 4934    6448  10
## 4935    6716  10
## 4936    7191  10
## 4937   73933  10
## 4938    7516  10
## 4939    7686  10
## 4940   76894  10
## 4941    8296  10
## 4942   84734  10
## 4943    9428  10
## 4944    9479  10
## 4945    0035   9
## 4946    0548   9
## 4947    0761   9
## 4948    1570   9
## 4949    2405   9
## 4950   30586   9
## 4951    3088   9
## 4952   30908   9
## 4953    3350   9
## 4954    3683   9
## 4955    3703   9
## 4956    3743   9
## 4957    3842   9
## 4958    4324   9
## 4959   53558   9
## 4960   56028   9
## 4961   57514   9
## 4962   57909   9
## 4963    5899   9
## 4964   60282   9
## 4965   60762   9
## 4966    6949   9
## 4967    7037   9
## 4968    7048   9
## 4969   75049   9
## 4970    8114   9
## 4971    9211   9
## 4972    0327   8
## 4973    0574   8
## 4974    0614   8
## 4975    0867   8
## 4976    0924   8
## 4977    1329   8
## 4978    1765   8
## 4979   18847   8
## 4980    2266   8
## 4981   30290   8
## 4982   30524   8
## 4983   31246   8
## 4984   31849   8
## 4985    3603   8
## 4986    4010   8
## 4987    4042   8
## 4988   46192   8
## 4989   48506   8
## 4990    5648   8
## 4991   56716   8
## 4992    5741   8
## 4993   57933   8
## 4994   58066   8
## 4995   58930   8
## 4996    5955   8
## 4997    5986   8
## 4998    6395   8
## 4999    6512   8
## 5000    6573   8
## 5001    6619   8
## 5002    6665   8
## 5003    6941   8
## 5004    7259   8
## 5005    7269   8
## 5006    7498   8
## 5007    7550   8
## 5008    7574   8
## 5009    7785   8
## 5010    8063   8
## 5011    8256   8
## 5012    9142   8
## 5013    0355   7
## 5014    1263   7
## 5015    1581   7
## 5016    2382   7
## 5017    2437   7
## 5018    2446   7
## 5019    2613   7
## 5020    2677   7
## 5021   31105   7
## 5022    3309   7
## 5023   34834   7
## 5024    3511   7
## 5025    3750   7
## 5026   43093   7
## 5027   47602   7
## 5028    5049   7
## 5029    5053   7
## 5030    5280   7
## 5031    5330   7
## 5032    5970   7
## 5033    6370   7
## 5034    6612   7
## 5035    7086   7
## 5036    7103   7
## 5037    7361   7
## 5038    8143   7
## 5039    9022   7
## 5040    9491   7
## 5041    0493   6
## 5042    0819   6
## 5043    0963   6
## 5044   17486   6
## 5045    1841   6
## 5046    2556   6
## 5047    2626   6
## 5048    2890   6
## 5049   30410   6
## 5050    3149   6
## 5051   32028   6
## 5052    3212   6
## 5053    3272   6
## 5054   42618   6
## 5055    4527   6
## 5056    4780   6
## 5057    4828   6
## 5058   54924   6
## 5059   55290   6
## 5060    5855   6
## 5061    5950   6
## 5062   61309   6
## 5063    6854   6
## 5064    6918   6
## 5065    6992   6
## 5066    7266   6
## 5067   72668   6
## 5068    7582   6
## 5069    9477   6
## 5070    9495   6
## 5071    9865   6
## 5072    1742   5
## 5073    2071   5
## 5074    2604   5
## 5075    2735   5
## 5076   30906   5
## 5077   31560   5
## 5078   38329   5
## 5079    3918   5
## 5080   42744   5
## 5081   43835   5
## 5082   44182   5
## 5083   44669   5
## 5084    4790   5
## 5085   53712   5
## 5086    5732   5
## 5087    5777   5
## 5088    5990   5
## 5089    5998   5
## 5090    6070   5
## 5091    6533   5
## 5092    6628   5
## 5093    6719   5
## 5094    6837   5
## 5095    7295   5
## 5096    7636   5
## 5097    0640   4
## 5098   30464   4
## 5099    3061   4
## 5100    3621   4
## 5101   43096   4
## 5102    4398   4
## 5103    4706   4
## 5104    4746   4
## 5105   51226   4
## 5106   51689   4
## 5107    5412   4
## 5108    5518   4
## 5109    5632   4
## 5110   59886   4
## 5111   60016   4
## 5112    6033   4
## 5113    6373   4
## 5114    7329   4
## 5115    7427   4
## 5116   77504   4
## 5117    8136   4
## 5118    9137   4
## 5119    0387   3
## 5120    2296   3
## 5121    2362   3
## 5122    2848   3
## 5123   30117   3
## 5124   31547   3
## 5125    3395   3
## 5126   34555   3
## 5127    3604   3
## 5128    3708   3
## 5129    4069   3
## 5130   43119   3
## 5131    4399   3
## 5132    4917   3
## 5133    4995   3
## 5134    5516   3
## 5135   55451   3
## 5136    5601   3
## 5137   56095   3
## 5138   57869   3
## 5139    5996   3
## 5140    6312   3
## 5141   63385   3
## 5142    7035   3
## 5143    7311   3
## 5144    7380   3
## 5145   76764   3
## 5146    8545   3
## 5147    0912   2
## 5148   10058   2
## 5149    1383   2
## 5150    1806   2
## 5151    1998   2
## 5152    2262   2
## 5153   29996   2
## 5154    3070   2
## 5155   31570   2
## 5156    3302   2
## 5157    3399   2
## 5158   34797   2
## 5159   35985   2
## 5160    4027   2
## 5161    4155   2
## 5162   43872   2
## 5163    4739   2
## 5164    5040   2
## 5165    5411   2
## 5166    5434   2
## 5167   57610   2
## 5168   58720   2
## 5169    5943   2
## 5170    6073   2
## 5171    6137   2
## 5172   66201   2
## 5173    6820   2
## 5174    6919   2
## 5175    7046   2
## 5176    7162   2
## 5177    7654   2
## 5178    7666   2
## 5179    7845   2
## 5180    8037   2
## 5181    8181   2
## 5182    9514   2
## 5183    0805   1
## 5184    1092   1
## 5185   17695   1
## 5186    1921   1
## 5187    2519   1
## 5188   28120   1
## 5189   28188   1
## 5190   28490   1
## 5191   30288   1
## 5192   30402   1
## 5193    3101   1
## 5194   31186   1
## 5195   32001   1
## 5196    3204   1
## 5197   32286   1
## 5198   33639   1
## 5199   34851   1
## 5200   35804   1
## 5201   35982   1
## 5202    3736   1
## 5203    3764   1
## 5204   38197   1
## 5205   38274   1
## 5206    3984   1
## 5207    4095   1
## 5208    4144   1
## 5209    4275   1
## 5210   43912   1
## 5211   44035   1
## 5212    5132   1
## 5213   51713   1
## 5214    5301   1
## 5215    5397   1
## 5216    5497   1
## 5217    5509   1
## 5218   55232   1
## 5219   55344   1
## 5220   55559   1
## 5221    5566   1
## 5222    5742   1
## 5223    6003   1
## 5224   60119   1
## 5225    6034   1
## 5226    6040   1
## 5227    6278   1
## 5228    6433   1
## 5229    6508   1
## 5230    6618   1
## 5231    6670   1
## 5232    6772   1
## 5233    6980   1
## 5234    7018   1
## 5235    7475   1
## 5236    7840   1
## 5237    7852   1
## 5238    8039   1
## 5239    8195   1
## 5240    8588   1
## 5241    8607   1
## 5242    8993   1
## 5243    9278   1
## 5244    9454   1
## 5245    9537   1
## 5246    9661   1
## 5247    9824   1
## 5248    9914   1
## 5249 Cliente   1
count(base_de_datos, Nombre, sort= TRUE)
##      Nombre     n
## 1     ABARR 71186
## 2     MARIA 39816
## 3     JOSE  17389
## 4     JUAN   7528
## 5     MARTH  5759
## 6     MISCE  5700
## 7     LUIS   5269
## 8     SUPER  4565
## 9     CARLO  3991
## 10    MIGUE  3856
## 11    FRANC  3773
## 12    VINOS  3772
## 13    ROSA   3719
## 14    ANTON  3595
## 15    PEDRO  3468
## 16    VICTO  3259
## 17    CREME  3135
## 18    MARTI  3066
## 19    PATRI  3063
## 20    JAIME  3057
## 21    Maria  3047
## 22    MINI   2829
## 23    JORGE  2672
## 24    JESUS  2636
## 25    BEATR  2586
## 26    MANUE  2405
## 27    TERES  2276
## 28    ROBER  2192
## 29    LAURA  2157
## 30    FARMA  2146
## 31    MINIS  2131
## 32    ALEJA  2084
## 33    MARGA  2062
## 34    SILVI  2041
## 35    CLAUD  2039
## 36    GUADA  1992
## 37    ENRIQ  1914
## 38    ALICI  1895
## 39    RAUL   1851
## 40    JUANA  1834
## 41    BERTH  1806
## 42    HECTO  1706
## 43    NORMA  1684
## 44    RAMON  1677
## 45    ROCIO  1659
## 46    IRMA   1617
## 47    SERGI  1613
## 48    SALVA  1591
## 49    MARIS  1574
## 50    JAVIE  1538
## 51    GERAR  1537
## 52    ALMA   1505
## 53    ANGEL  1499
## 54    RAFAE  1447
## 55    BLANC  1432
## 56    J JES  1414
## 57    HOGAR  1381
## 58    ANA L  1377
## 59    GABRI  1317
## 60    ARACE  1309
## 61    SAUL   1301
## 62    MARIO  1285
## 63    OSCAR  1280
## 64    RICAR  1268
## 65    ADRIA  1267
## 66    FERNA  1266
## 67    ANDRE  1264
## 68    MAYRA  1240
## 69    FELIP  1233
## 70    CELIA  1229
## 71    GLORI  1192
## 72    GUILL  1181
## 73    DULCE  1163
## 74    ANA M  1159
## 75    EDGAR  1132
## 76    ALBER  1114
## 77    RUBEN  1070
## 78    IVAN   1060
## 79    JOSEF  1039
## 80    OLGA   1030
## 81    CESAR  1014
## 82    ISMAE  1012
## 83    ELOIS  1001
## 84    LETIC   998
## 85    MONIC   964
## 86    DANIE   954
## 87    CARNI   946
## 88    VERON   943
## 89    ALFRE   936
## 90    MARCO   911
## 91    Jose    908
## 92    EMMAN   892
## 93    JULIA   891
## 94    DAVID   870
## 95    DIEGO   870
## 96    EMANU   870
## 97    DEPOS   857
## 98    SOCOR   857
## 99    BREND   839
## 100   MA DE   835
## 101   ARTUR   827
## 102    TERE   817
## 103   RODOL   798
## 104   ESTEB   796
## 105   MAGDA   796
## 106    RUIZ   791
## 107   RAMIR   785
## 108   ERNES   784
## 109   SAN J   753
## 110   EVA A   752
## 111   CRIST   749
## 112   EVELI   744
## 113   JOEL    743
## 114   RAQUE   739
## 115   MELIS   736
## 116   EL GR   715
## 117   RODRI   710
## 118   SAMUE   709
## 119   MICEL   705
## 120   MODEL   705
## 121   CARME   701
## 122   ELVIR   695
## 123   GONZA   673
## 124   NOEMI   656
## 125   DELIA   649
## 126   ERIKA   648
## 127   SANTI   644
## 128   IRENE   632
## 129   ESPER   618
## 130   EDUAR   611
## 131   CANDE   601
## 132   ELIAS   596
## 133   ESMER   594
## 134   CENTR   591
## 135   QUIRI   590
## 136   FRUTA   585
## 137   GRACI   582
## 138   TIEND   580
## 139   VALEN   580
## 140   CERVE   577
## 141   SUSAN   577
## 142   LUCIA   574
## 143   SIX T   563
## 144   OFELI   562
## 145   ABEL    559
## 146   VIRGI   559
## 147   Franc   550
## 148   TRINI   544
## 149   Rosa    543
## 150   BRAUL   542
## 151   LEONA   542
## 152   LUPIT   541
## 153   MOISE   541
## 154   HOMOB   539
## 155   OLIVI   539
## 156   OCTAV   534
## 157   CINTH   528
## 158   OMAR    526
## 159   JUVEN   522
## 160   RUTH    521
## 161   SARA    521
## 162   ADAN    517
## 163   HUGO    515
## 164   ROSAU   515
## 165   GUSTA   505
## 166   JULIO   502
## 167   Juan    501
## 168   NORBE   499
## 169   BENJA   494
## 170   IRIS    493
## 171   ELVA    492
## 172   OSVAL   490
## 173   JUNIO   489
## 174   DEMET   488
## 175   SAL Y   482
## 176   FABIO   479
## 177   PETRA   479
## 178   SIMON   479
## 179   CLARA   478
## 180   SANDR   477
## 181   MA DO   470
## 182   PELON   470
## 183   J GIL   467
## 184   ELISA   463
## 185   EL GU   462
## 186    PATO   461
## 187   CARBA   460
## 188   ORTIZ   460
## 189   CELED   457
## 190   ZAPAT   455
## 191   ROSAL   454
## 192   OSIEL   452
## 193   MA TE   450
## 194   VICEN   448
## 195   YOLAN   445
## 196   AMELI   444
## 197   VARGA   443
## 198   LILIA   442
## 199   ALBIN   439
## 200   LOS G   437
## 201   ERIK    436
## 202   FREDI   435
## 203   WILFR   435
## 204   IMELD   432
## 205   LOS I   432
## 206   ELVIA   431
## 207   LOREN   431
## 208   SAN I   431
## 209   LA HI   430
## 210   CORNE   429
## 211   VETIN   429
## 212   EDELM   426
## 213   GASOL   426
## 214   EDER    425
## 215   FELIC   424
## 216   CYNTH   423
## 217   ELENA   423
## 218   GENAR   422
## 219   J CON   422
## 220   OTILI   421
## 221   ANDAN   420
## 222   EVA S   416
## 223   RITA    414
## 224   DON B   413
## 225   FABIA   409
## 226   EVANG   405
## 227    CRUZ   403
## 228   AUGUS   402
## 229   GILBE   401
## 230   MUCIO   401
## 231   VIVIA   400
## 232   AVELI   399
## 233   BLAS    399
## 234   BODEG   398
## 235   LUZ E   397
## 236   TRINO   397
## 237   EL PI   396
## 238   LA LO   394
## 239   ABRAH   392
## 240   ISABE   390
## 241   CEREA   388
## 242   LEOVI   388
## 243   MARCE   387
## 244   ORFIL   385
## 245   QUINC   384
## 246   MARIB   382
## 247   AMPAR   380
## 248   ALVAR   378
## 249   J AUR   378
## 250    RAFA   378
## 251   RAYMU   378
## 252   MIX D   376
## 253   MIRIA   374
## 254   CAROL   373
## 255   LA CH   372
## 256   RIGOB   371
## 257   HUMBE   366
## 258   ZENAI   365
## 259    DIAZ   363
## 260   ADELA   361
## 261   ANA R   361
## 262   EL AN   359
## 263   TORIB   357
## 264   DONAT   351
## 265   LA DU   349
## 266   CABAL   348
## 267   SIX M   347
## 268   MERCE   345
## 269   Claud   337
## 270   EMPOR   334
## 271   EUGEN   333
## 272   LA TI   332
## 273   Marth   332
## 274   ELMER   331
## 275   PABLO   328
## 276   ROSAR   327
## 277   M DE    326
## 278   EL VE   324
## 279    REBE   324
## 280   ELIZA   317
## 281   ESTHE   317
## 282    LUIS   316
## 283   HILDA   314
## 284   IVONN   314
## 285   Teres   314
## 286   CHABE   313
## 287   KAREN   305
## 288   PUERQ   302
## 289   VALDE   302
## 290   ADALB   301
## 291   LUZ M   300
## 292   LA PE   291
## 293   JONAT   290
## 294   EMILI   289
## 295   SIX G   289
## 296   KARLA   285
## 297   DIVIN   283
## 298   ANA B   279
## 299   SIX P   279
## 300   IGNAC   277
## 301   LICON   270
## 302   Luis    269
## 303   MARIC   268
## 304   MERCA   268
## 305   Monic   267
## 306   EXPEN   266
## 307   PRIMI   264
## 308   ORALI   259
## 309   COLUM   257
## 310   Anton   256
## 311   MAXIM   254
## 312   Ma De   248
## 313   NESTO   248
## 314   ADELI   247
## 315   ADOLF   247
## 316   JOAQU   239
## 317   LA ME   238
## 318   SEMIL   237
## 319   INBOX   235
## 320   JANET   235
## 321   ANA G   230
## 322   FEDER   229
## 323   REBEC   226
## 324   SIX L   226
## 325   EL CH   225
## 326   CECIL   222
## 327   ELPID   217
## 328   Julio   216
## 329   NO US   216
## 330   JESSI   213
## 331   HERMI   209
## 332   Carlo   206
## 333   Enriq   204
## 334   Mayra   202
## 335   Sandr   202
## 336   ANA C   201
## 337   TENDE   201
## 338   Ferna   199
## 339   Aleja   196
## 340   PACHE   196
## 341   Hecto   191
## 342   KARIN   190
## 343   FIDEL   189
## 344   ARNUL   188
## 345   ABEND   187
## 346   GABIN   186
## 347   Blanc   183
## 348   Guada   183
## 349   Angel   182
## 350   AGUST   181
## 351   LA SU   181
## 352   VENTA   181
## 353   AMALI   180
## 354   Rafae   178
## 355   Susan   178
## 356   ESTEL   175
## 357   Jorge   175
## 358   FAUST   174
## 359   RENE    174
## 360   INDAL   173
## 361   MICAE   172
## 362   DISTR   171
## 363    ROSA   171
## 364   Salva   171
## 365   CONSU   170
## 366   Glori   170
## 367   TEODU   169
## 368   SIX V   166
## 369   Victo   166
## 370   ELIGI   165
## 371   LA PR   165
## 372   J REF   164
## 373   ALFON   163
## 374   FRUTE   163
## 375   EFRAI   161
## 376   NICOL   160
## 377   ANA A   159
## 378   ARCEL   159
## 379   ARMAN   159
## 380   SAID    159
## 381   TOMAS   159
## 382   CARLA   158
## 383   DE TE   158
## 384   CATAR   156
## 385   DOLOR   156
## 386   Erika   154
## 387   AVAL    151
## 388   EL MA   149
## 389   ELIA    149
## 390   J PAT   148
## 391   SANTO   147
## 392   SONIA   147
## 393   EL RE   146
## 394   EFREN   145
## 395   EL DK   145
## 396   EVERA   145
## 397   FORTI   144
## 398   SIX B   144
## 399   NEMEC   142
## 400   NOHEM   142
## 401   CRUZ    141
## 402   POLLE   141
## 403   HERME   140
## 404   IMPUL   139
## 405   MAURI   137
## 406   BENIL   136
## 407   Laura   136
## 408   OSWAL   136
## 409   BELEN   135
## 410   OBDUL   135
## 411   Pedro   135
## 412   GREGO   134
## 413   ELBA    133
## 414   Hugo    133
## 415   JUDIT   133
## 416   Patri   133
## 417   SOFIA   133
## 418   Esthe   132
## 419   LA ES   132
## 420   Rogel   132
## 421   AZUCE   131
## 422   FLOR    130
## 423   J ROS   130
## 424   ZOILA   130
## 425   MICHA   129
## 426   Oscar   129
## 427   PAZ L   129
## 428   SIX O   128
## 429   Feder   126
## 430   JUSTO   126
## 431   CONST   125
## 432   LUZ D   125
## 433   Beatr   124
## 434   EL PO   123
## 435   TANIA   123
## 436   ISAAC   122
## 437   ISAUR   122
## 438   LICOR   121
## 439   PETRO   121
## 440   Lilia   120
## 441   YESEN   120
## 442   CAMER   119
## 443   LIBRA   119
## 444   Ma Gu   119
## 445   SMART   119
## 446   AUROR   118
## 447   CELIN   118
## 448   MAURO   118
## 449   YENI    118
## 450   Jesus   117
## 451   REFUG   117
## 452   REYNA   117
## 453   XOCHI   117
## 454   TABY    116
## 455   Veron   116
## 456   SANTA   115
## 457   GENER   114
## 458   Adria   113
## 459   FROYL   113
## 460   Pablo   113
## 461   TECAT   113
## 462   VIOLE   113
## 463   EVARI   112
## 464   Alfre   111
## 465   ANA J   111
## 466   HERIB   111
## 467   LA NU   111
## 468   LA CA   110
## 469   Arman   109
## 470   Gabri   109
## 471   Humbe   109
## 472   HILAR   108
## 473   Loren   108
## 474   ABUND   107
## 475   Eduar   106
## 476   EL AB   106
## 477   NORA    106
## 478   Lidia   105
## 479   NAYEL   105
## 480   CASIM   104
## 481   MA AG   104
## 482   BALDO   103
## 483   BELY    103
## 484   DE GE   103
## 485   LUCIO   103
## 486   MAYEL   103
## 487   EL AL   102
## 488   LAS L   102
## 489   DARIO   101
## 490   Juana   101
## 491   Javie   100
## 492   AUDIE    99
## 493   AUREL    99
## 494   David    99
## 495   Irene    99
## 496   DOS H    98
## 497   ISRAE    98
## 498   JOSUE    98
## 499   Olga     98
## 500   LA VA    97
## 501   SULEM    97
## 502   Berth    96
## 503   GUMEC    96
## 504   YAZMI    96
## 505   Eliza    95
## 506   SEBAS    95
## 507   SIX E    95
## 508   USTEC    95
## 509   CIPRI    94
## 510   Luz M    94
## 511   OLEGA    94
## 512   Sergi    94
## 513   CLEME    93
## 514   MI BE    93
## 515   FELIZ    92
## 516   Epifa    91
## 517   LOS P    91
## 518   MAEST    91
## 519    JOSE    90
## 520   Ramon    90
## 521   SIX S    90
## 522   BRIAN    89
## 523   HIPOL    89
## 524   Alma     88
## 525   Aurel    88
## 526   CAMIL    88
## 527   FER T    88
## 528   LA MI    88
## 529   Migue    88
## 530   Rita     88
## 531   EVA F    87
## 532   Crist    86
## 533   Fabio    86
## 534   ROMAN    86
## 535   Y VIN    86
## 536   Ana I    85
## 537   Elvia    85
## 538   JAQUE    85
## 539   Pascu    85
## 540   Raul     85
## 541   ESTET    84
## 542   Felip    84
## 543   KRISH    84
## 544   ARON     83
## 545   BUGAM    83
## 546   CARRE    83
## 547   DONOV    83
## 548   EZEQU    83
## 549   MI RA    83
## 550   MYRIA    83
## 551   LOURD    82
## 552   RAYIT    82
## 553   Rober    82
## 554   Wilfr    82
## 555   EL TE    81
## 556   MATIL    81
## 557   DON P    80
## 558   EDUWI    80
## 559   Ernes    80
## 560   JACIE    80
## 561   KEBEL    80
## 562   KEVIN    80
## 563   LUCY     80
## 564   J Jes    79
## 565   LA BO    79
## 566   ANA I    78
## 567   Azuce    78
## 568   LA UN    78
## 569   Lucia    78
## 570   CHELI    77
## 571   VICKI    77
## 572   DESEC    76
## 573   CRISP    75
## 574   FELIX    75
## 575   GRANJ    75
## 576   J GUA    75
## 577   LA MA    75
## 578   MA GU    75
## 579   AMPEL    74
## 580   Carol    74
## 581   Casil    74
## 582   CYBER    74
## 583   Damar    74
## 584   JACOB    74
## 585    LULU    74
## 586   MAYGU    74
## 587   PICHO    74
## 588   VALER    74
## 589   ELIDI    73
## 590   Karla    73
## 591   Manue    73
## 592   NOE H    73
## 593   ALELI    72
## 594   BAUDE    72
## 595   Eva G    72
## 596    GERA    72
## 597   JERON    72
## 598   LA VI    72
## 599   LAGRO    72
## 600   MARZO    72
## 601   ELSA     71
## 602   ISELA    71
## 603   Leono    71
## 604   LOS 3    71
## 605   Luz E    71
## 606   Faust    70
## 607   NATAL    70
## 608   ADRI     69
## 609   EMA C    69
## 610   LEONO    69
## 611   MUNDO    69
## 612   YADIR    69
## 613   YOBAL    69
## 614   APOLI    68
## 615   BIANC    68
## 616   EPIFA    68
## 617   GRUPO    68
## 618   HOGR     68
## 619   JUANI    68
## 620   Ma Is    68
## 621   OBSEB    68
## 622   TORIV    68
## 623   FANY     67
## 624   GINO     67
## 625   HERLI    67
## 626   LA GL    67
## 627   REINA    67
## 628   Ana G    66
## 629   FREDY    66
## 630   Leopo    66
## 631   ROGEL    66
## 632   UBALD    66
## 633   ILEAN    65
## 634   LIZET    65
## 635   Ma El    65
## 636   NUCLE    65
## 637   ALTAG    64
## 638   AXAYA    64
## 639   Brend    64
## 640   EL CO    64
## 641   EMERI    64
## 642   EMMA     64
## 643   Mary     64
## 644   SIX C    64
## 645   Agust    63
## 646   BENIT    63
## 647   DON F    63
## 648   HELIO    63
## 649   Imeld    63
## 650   LEONI    63
## 651   LUCEC    63
## 652   MARBE    63
## 653   Apolo    62
## 654   BALTA    62
## 655   ERICK    62
## 656   ESTRE    62
## 657   JEOVA    62
## 658   Marga    62
## 659   MI SU    62
## 660   SEVER    62
## 661   BALDE    61
## 662   CATAL    61
## 663   J ISA    61
## 664   Joel     61
## 665   Ofeli    61
## 666   SIX R    61
## 667   Andre    60
## 668   Danie    60
## 669   Juven    60
## 670   Ma Es    60
## 671   PAULA    60
## 672   ANSEL    59
## 673   Avid     59
## 674   Cynth    59
## 675   LA HU    59
## 676   YARET    59
## 677   ABIGA    58
## 678   EDSON    58
## 679   EVA B    58
## 680    GABY    58
## 681   INOCE    58
## 682   Josef    58
## 683   SAN R    58
## 684   BEBID    57
## 685   DOÑA     57
## 686   EL AC    57
## 687   FLORE    57
## 688   HIBET    57
## 689   JADIE    57
## 690   MA EL    57
## 691   MARA     57
## 692   EMA D    56
## 693   LA CO    56
## 694   Tania    56
## 695   Joann    55
## 696   Osval    55
## 697   PALOM    55
## 698   Rosar    55
## 699   GEORG    54
## 700   LAS M    54
## 701   NOE G    54
## 702   RUFIN    54
## 703   Carme    53
## 704   Cruz     53
## 705   EL VA    53
## 706   Enedi    53
## 707   Nohem    53
## 708   PRISC    53
## 709   TADEO    53
## 710   Yesen    53
## 711   CARIN    52
## 712    JUAN    52
## 713   Miria    52
## 714   REYES    52
## 715   Rocio    52
## 716   Silvi    52
## 717   Ampar    51
## 718   ANA S    51
## 719   CACHO    51
## 720   EL CR    51
## 721   ENEID    51
## 722   FIGUE    51
## 723   DENIS    50
## 724   EL NA    50
## 725   ELIOD    50
## 726   Marco    50
## 727   PURIF    50
## 728    YOLI    50
## 729   BEREN    49
## 730   CIBER    49
## 731   CORON    49
## 732   EL BO    49
## 733   Genar    49
## 734   HORTE    49
## 735   JOVIT    49
## 736   MELAN    49
## 737   Rode     49
## 738   BADIL    48
## 739   EL BU    48
## 740   EL PA    48
## 741   Grego    48
## 742   Guill    48
## 743   HORAC    48
## 744   JISEL    48
## 745   LA TR    48
## 746   LOS C    48
## 747   Ruben    48
## 748   Gerar    47
## 749   LIBNI    47
## 750   LIDIA    47
## 751   MORAY    47
## 752   Orlan    47
## 753   Oswal    47
## 754   SACRA    47
## 755   Arace    46
## 756   CUBET    46
## 757   ELIAZ    46
## 758   IRINE    46
## 759   Rebec    46
## 760   ANACL    45
## 761   DIANA    45
## 762   HELAD    45
## 763   LA PA    45
## 764   MA JE    45
## 765   Ma So    45
## 766   MARIN    45
## 767   Oliva    45
## 768   Rodol    45
## 769   DESAY    44
## 770   DON M    44
## 771   EL AH    44
## 772   EL CA    44
## 773   Ma Pa    44
## 774   Ulloq    44
## 775   Areli    43
## 776   EMIDI    43
## 777   LAGUN    43
## 778   NUBIA    43
## 779   PALET    43
## 780   SILVE    43
## 781   Delia    42
## 782   LEYSI    42
## 783   LINDA    42
## 784   Mario    42
## 785   ODON     42
## 786   Omar     42
## 787   Trini    42
## 788   ANA Y    41
## 789   BETHE    41
## 790   Geova    41
## 791   IRAIS    41
## 792   M HER    41
## 793   PAULI    41
## 794   Secun    41
## 795   TAPIA    41
## 796   TEOFI    41
## 797   CIRIL    40
## 798   Nora     40
## 799   SOLED    40
## 800   VIRID    40
## 801   DORA     39
## 802   PASTE    39
## 803   Raque    39
## 804   ELIDA    38
## 805   Iran     38
## 806   JENNI    38
## 807   LA 56    38
## 808   Letic    38
## 809   NOE V    38
## 810   Samue    38
## 811   SANAT    38
## 812   TIBUR    38
## 813   VELIA    38
## 814   AMEZA    37
## 815   Ana A    37
## 816   Glady    37
## 817   LLUVI    37
## 818   ALSA     36
## 819   Avela    36
## 820   ELISE    36
## 821   LUISA    36
## 822   Marce    36
## 823   MICHE    36
## 824   Ruth     36
## 825   Sara     36
## 826    ADRY    35
## 827   CURSO    35
## 828   ELENO    35
## 829   GERMA    35
## 830   Lauro    35
## 831   MA GR    35
## 832   MACRI    35
## 833   PAMEL    35
## 834   PANAD    35
## 835   Reyna    35
## 836   ULISE    35
## 837   Yolan    35
## 838   ABELI    34
## 839   LA BA    34
## 840   LUDIV    34
## 841   LULU     34
## 842   MAIRA    34
## 843   Norma    34
## 844   VENTU    34
## 845   AIDEE    33
## 846   Marti    33
## 847   ROXAN    33
## 848   CHAGU    32
## 849   Ma Te    32
## 850   Rufin    32
## 851   Ana R    31
## 852   Dalil    31
## 853   EL MO    31
## 854   Elvir    31
## 855   Esper    31
## 856   LECHE    31
## 857   Suzan    31
## 858   Tibur    31
## 859   ABISA    30
## 860   ANITA    30
## 861   DEL C    30
## 862   ETELV    30
## 863   LAURO    30
## 864   MIREY    30
## 865   Senor    30
## 866   Ana L    29
## 867   ANIBA    29
## 868   Jocel    29
## 869   MARY     29
## 870   MURIL    29
## 871   Noe O    29
## 872   Refug    29
## 873   Yanet    29
## 874   DOS B    28
## 875   MARIT    28
## 876   PERLA    28
## 877   PLACI    28
## 878   ROMEL    28
## 879   TOÑO     28
## 880   Yadir    28
## 881   Gilbe    27
## 882   Panfi    27
## 883   Perfe    27
## 884   VERUL    27
## 885   Ameli    26
## 886   Benig    26
## 887   GLAFI    26
## 888   LEOPO    26
## 889   Nancy    26
## 890   RIGO     26
## 891   CRECE    25
## 892   Eunic    25
## 893   Maric    25
## 894   OTONI    25
## 895   Paula    25
## 896   Abiga    24
## 897   CRESC    24
## 898   CUATR    24
## 899   EREND    24
## 900   FERMA    24
## 901   GLADY    24
## 902   Judit    24
## 903   Keren    24
## 904   Ma Co    24
## 905   MA JU    24
## 906   Ricar    24
## 907   FUENT    23
## 908   LUZ R    23
## 909   Ma Ro    23
## 910   Moise    23
## 911   Renzo    23
## 912   RUBI     23
## 913   TACOS    23
## 914   ARSEN    22
## 915   ASUNC    22
## 916   Eva C    22
## 917   J TRI    22
## 918   Ma Lu    22
## 919   Cecil    21
## 920   Esteb    21
## 921   Irma     21
## 922   Israe    21
## 923   Karen    21
## 924   Ma Ra    21
## 925   NATIV    21
## 926   Nicol    21
## 927   VALVE    21
## 928   BIONI    20
## 929   EL SU    20
## 930   Hermi    20
## 931   Josue    20
## 932   NOEL     20
## 933   Virgi    20
## 934   ELEUT    19
## 935   Emanu    19
## 936   Eva J    19
## 937   GLORE    19
## 938   Hulbe    19
## 939   MA CO    19
## 940   REPAR    19
## 941   Saman    19
## 942   Santi    19
## 943   VANES    19
## 944   Abel     18
## 945   AMBRO    18
## 946   Balvi    18
## 947   ELMA     18
## 948   Emeli    18
## 949   Hilda    18
## 950   Joaqu    18
## 951    TOÑO    18
## 952   Ciril    17
## 953   Edgar    17
## 954   GUDAL    17
## 955   HERMA    17
## 956   Hidel    17
## 957   JUGOS    17
## 958   Lizet    17
## 959   MA RE    17
## 960   Narci    17
## 961   Salom    17
## 962   Vivia    17
## 963   Abrah    16
## 964   Clara    16
## 965   Const    16
## 966   Jessi    16
## 967   JUSTA    16
## 968   KENIA    16
## 969   Mateo    16
## 970   ZURI     16
## 971   Ana C    15
## 972   ANAST    15
## 973   Elias    15
## 974   Eloy     15
## 975   J. Je    15
## 976   LAS P    15
## 977   MARI     15
## 978   Pauli    15
## 979   REYMU    15
## 980   Vanes    15
## 981   Z ABR    15
## 982   Adolf    14
## 983   Elier    14
## 984   FILIB    14
## 985   Gonza    14
## 986   Ma Eu    14
## 987   Maris    14
## 988   J Gua    13
## 989   M DEL    13
## 990   MATIA    13
## 991   ALAN     12
## 992   EL RA    12
## 993   Flavi    12
## 994   GENOV    12
## 995   GRISE    12
## 996   ISIDO    12
## 997   Paola    12
## 998   POLLO    12
## 999   Alba     11
## 1000  ANCEL    11
## 1001  CALEB    11
## 1002  Diego    11
## 1003  GEMMA    11
## 1004  Horte    11
## 1005  Petra    11
## 1006  PORTO    11
## 1007  ZULEM    11
## 1008  CHRIS    10
## 1009  Cipri    10
## 1010  Mikja    10
## 1011  SIX A    10
## 1012  Yrene    10
## 1013  Belen     9
## 1014  Catal     9
## 1015  Clien     9
## 1016  Gerso     9
## 1017  IVETT     9
## 1018  J SAC     9
## 1019  ANA V     8
## 1020  Arian     8
## 1021  ASOCI     8
## 1022  Cinth     8
## 1023  Doria     8
## 1024  ESDRA     8
## 1025  Eva R     8
## 1026  Genov     8
## 1027  Graci     8
## 1028  Ivon      8
## 1029  LUZ H     8
## 1030  Ma Re     8
## 1031  Ma Ve     8
## 1032  Prosp     8
## 1033  Rigob     8
## 1034  ANAIS     7
## 1035  Ma As     7
## 1036  Merce     7
## 1037  NOA E     7
## 1038  Ramir     7
## 1039  Elia      6
## 1040  Jonat     6
## 1041  Julia     6
## 1042  NATHA     6
## 1043  Obdul     6
## 1044  Robus     6
## 1045  TORTI     6
## 1046  Adan      5
## 1047  Chris     5
## 1048  Claro     5
## 1049  Emma      5
## 1050  Froyl     5
## 1051  Karin     5
## 1052  LESLI     5
## 1053  Dulce     4
## 1054  Erik      4
## 1055  Libni     4
## 1056  Soled     4
## 1057  Sonia     4
## 1058  TRANQ     4
## 1059  Bibia     3
## 1060  Elva      3
## 1061  Evang     3
## 1062  Fiado     3
## 1063  Lourd     3
## 1064  SEATT     3
## 1065  Bryan     2
## 1066  Decot     2
## 1067  Domin     2
## 1068  Edilb     2
## 1069  Giova     2
## 1070  Hayde     2
## 1071  Jaime     2
## 1072  Lucy      2
## 1073  Modes     2
## 1074  Myrna     2
## 1075  Rosay     2
## 1076  Sever     2
## 1077  * * *     1
## 1078  AGUAL     1
## 1079  Alici     1
## 1080  Cesar     1
## 1081  Dolor     1
## 1082  Eric      1
## 1083  Erica     1
## 1084  Esmer     1
## 1085  Fatim     1
## 1086  Felix     1
## 1087  Livie     1
## 1088  Melid     1
## 1089 Nombre     1
## 1090  NUEVO     1
## 1091  Palmi     1
## 1092  Produ     1
## 1093  Rodri     1
## 1094  SIN N     1
## 1095  VETER     1
## 1096  VIKIN     1
## 1097  Zalat     1
count(base_de_datos,Tamaño.Cte.Industria, sort= TRUE )
##   Tamaño.Cte.Industria      n
## 1         Extra Grande 230190
## 2                Micro 117110
## 3              Pequeño  77875
## 4               Grande  41333
## 5 Tamaño Cte Industria      1
count(base_de_datos, Segmento.Det, sort= TRUE )
##            Segmento.Det      n
## 1       Sabores Regular 156242
## 2         Colas Regular  95720
## 3           Colas Light  43807
## 4      Jugos y Néctares  33362
## 5      Bebidas de Fruta  30641
## 6       Agua Purificada  20766
## 7          Agua Mineral  12590
## 8    Isotónicos Regular  11905
## 9            Té Regular  10062
## 10      Agua Saborizada  10056
## 11  Bebidas Energeticas   9847
## 12        Sabores Light   7330
## 13 Leche UHT Saborizada   6395
## 14    Leche UHT Regular   5618
## 15      Bebidas de Soya   5277
## 16 Leche UHT Especializ   4655
## 17     Isotónicos Light   1009
## 18 Cafe Listo Para Bebe    979
## 19             Té Light    241
## 20               Polvos      6
## 21         Segmento Det      1
Marca<- count(base_de_datos, Marca, sort= TRUE )
Marca
##                   Marca     n
## 1             Coca-Cola 95720
## 2                Sprite 37925
## 3                 Fanta 35728
## 4                Fresca 26435
## 5          Manzana Lift 25598
## 6       Coca-Cola Light 21926
## 7             Del Valle 21325
## 8  Ciel Agua Purificada 20766
## 9         Sidral Mundet 17150
## 10           Valle Frut 15808
## 11 Coca-Cola Sin Azúcar 15523
## 12     Del Valle y Nada 12475
## 13             Powerade 11905
## 14             Fuze Tea 10062
## 15      Topo Chico A.M.  8191
## 16          Ciel Exprim  7183
## 17    Del Valle Reserva  6803
## 18 Santa Clara Saboriza  6395
## 19       Delaware Punch  6059
## 20               Frutsi  5566
## 21 Santa Clara Deslacto  4655
## 22       Coca-Cola Zero  4556
## 23    Ciel Mineralizada  4399
## 24   Santa Clara Entera  4055
## 25       Monster Energy  3808
## 26                 Burn  3591
## 27          AdeS Frutal  3430
## 28               Senzao  3125
## 29          Sprite Zero  3010
## 30                Pulpy  2885
## 31              Glacéau  2448
## 32                 Joya  1962
## 33 Del Valle NutriForte  1943
## 34          AdeS Lácteo  1847
## 35       Coca-Cola Life  1775
## 36            Ciel Mini  1742
## 37    Santa Clara Light  1563
## 38 Del Valle Nutridefen  1377
## 39     Del Valle Blends  1165
## 40      Ciel Saborizada  1131
## 41        Powerade Zero  1009
## 42         Barista Bros   973
## 43 Del Valle NutriVeget   749
## 44               Bebere   320
## 45       Fuze Tea Light   241
## 46               Mixtos    52
## 47           Fanta Zero    40
## 48    Manzana Lift Zero    29
## 49  Coca-Cola Light Sin    27
## 50          Fresca Zero    20
## 51   Topo Chico Sangría    14
## 52            Café Blak    12
## 53  Sidral Mundet Light     8
## 54       Del Valle Bits     3
## 55                Marca     1
## 56 Topo Chico Sangría L     1
Presentacion<- count(base_de_datos, Presentacion, sort= TRUE )
Presentacion
##        Presentacion     n
## 1         600 ml NR 74008
## 2      1 Ltro. N.R. 36930
## 3         2 Lts. NR 36415
## 4        500 ml Ret 35165
## 5       1.5 Lts. NR 30637
## 6       Lata 235 ml 24551
## 7         400 ml NR 22877
## 8    250 ml. NR PET 21735
## 9  500 ml NR Vidrio 18758
## 10      2.5 Lts. NR 13235
## 11             Lata 11810
## 12     200 ml Tetra 11190
## 13    500 ml NR PET 11022
## 14    1 Ltro. Tetra 10580
## 15    235 ml NR Vid 10476
## 16    12 Oz. NR Pet  9906
## 17     1.5 Lts. Ret  8398
## 18    413 ml NR VId  8292
## 19      Lata 16 Oz.  7792
## 20       12 Oz. Ret  7373
## 21 2.5 Lts. Ret Pet  7161
## 22     250 ml Tetra  6121
## 23     1.250 Lts NR  4741
## 24   300 ML. NR PET  4356
## 25         8 Oz. NR  3876
## 26     1.750 Lts NR  3687
## 27    237 ml NR Pet  3611
## 28   250 ML. NR VID  3184
## 29  946 ml NR Tetra  3183
## 30       2 Lts. Ret  2501
## 31        5 Lts. NR  2253
## 32      1 Ltro Ret.  2111
## 33      Lata 450 ml  1505
## 34      Lata 453 ml  1269
## 35  125 ml NR Tetra  1093
## 36    355 Ml NR Pet   670
## 37      Lata 335 ml   586
## 38      6.5 Oz. Ret   573
## 39      Lata 340 ml   563
## 40      Lata 222 ml   499
## 41        473 ml NR   320
## 42  100 ml NR Tetra   285
## 43    237 ml NR Vid   238
## 44       Lata 8 OZ.   230
## 45 12 Oz. NR Vidrio   195
## 46        710 ml NR   172
## 47      LATA 680 ML   151
## 48        3 Lts. NR   145
## 49  750 ml NR Tetra    32
## 50    350 ML NR PET    16
## 51      Lata 237 ml    13
## 52       Bag In Box     6
## 53   Sobres 907 grs     6
## 54    251ml NR Alum     3
## 55        200 ml NR     2
## 56      Lata 310 ml     1
## 57     Presentacion     1
tamaño<-count(base_de_datos, Tamaño, sort= TRUE )
tamaño
##       Tamaño      n
## 1 Individual 328513
## 2   Familiar 137995
## 3     Tamaño      1
count(base_de_datos, Retornable_NR, sort= TRUE )
##   Retornable_NR      n
## 1 No Retornable 403226
## 2    Retornable  63282
## 3 Retornable_NR      1
tibble(base_de_datos)
## # A tibble: 466,509 × 25
##       ID   Año Territorio  Sub.Terr…¹ CEDI  Cliente Nombre Tamañ…² Segme…³ Marca
##    <int> <int> <chr>       <chr>      <chr> <chr>   <chr>  <chr>   <chr>   <chr>
##  1     1  2016 Guadalajara Belenes    Suc.… 77737   ABARR  Extra … Agua M… Topo…
##  2     2  2016 Guadalajara Belenes    Suc.… 77737   ABARR  Extra … Agua P… Ciel…
##  3     3  2016 Guadalajara Belenes    Suc.… 77737   ABARR  Extra … Agua P… Ciel…
##  4     4  2016 Guadalajara Belenes    Suc.… 77737   ABARR  Extra … Agua S… Ciel…
##  5     5  2016 Guadalajara Belenes    Suc.… 77737   ABARR  Extra … Agua S… Ciel…
##  6     6  2016 Guadalajara Belenes    Suc.… 77737   ABARR  Extra … Agua S… Ciel…
##  7     7  2016 Guadalajara Belenes    Suc.… 77737   ABARR  Extra … Bebida… Dela…
##  8     8  2016 Guadalajara Belenes    Suc.… 77737   ABARR  Extra … Bebida… Dela…
##  9     9  2016 Guadalajara Belenes    Suc.… 77737   ABARR  Extra … Bebida… Frut…
## 10    10  2016 Guadalajara Belenes    Suc.… 77737   ABARR  Extra … Bebida… Pulpy
## # … with 466,499 more rows, 15 more variables: Presentacion <chr>,
## #   Tamaño <chr>, Retornable_NR <chr>, Enero <chr>, Febrero <chr>, Marzo <chr>,
## #   Abril <chr>, Mayo <chr>, Junio <chr>, Julio <chr>, Agosto <chr>,
## #   Septiembre <chr>, Octubre <chr>, Noviembre <chr>, Diciembre <chr>, and
## #   abbreviated variable names ¹​Sub.Territorio, ²​Tamaño.Cte.Industria,
## #   ³​Segmento.Det
str(base_de_datos)
## 'data.frame':    466509 obs. of  25 variables:
##  $ ID                  : int  1 2 3 4 5 6 7 8 9 10 ...
##  $ Año                 : int  2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 ...
##  $ Territorio          : chr  "Guadalajara" "Guadalajara" "Guadalajara" "Guadalajara" ...
##  $ Sub.Territorio      : chr  "Belenes" "Belenes" "Belenes" "Belenes" ...
##  $ CEDI                : chr  "Suc. Belenes" "Suc. Belenes" "Suc. Belenes" "Suc. Belenes" ...
##  $ Cliente             : chr  "77737" "77737" "77737" "77737" ...
##  $ Nombre              : chr  "ABARR" "ABARR" "ABARR" "ABARR" ...
##  $ Tamaño.Cte.Industria: chr  "Extra Grande" "Extra Grande" "Extra Grande" "Extra Grande" ...
##  $ Segmento.Det        : chr  "Agua Mineral" "Agua Purificada" "Agua Purificada" "Agua Saborizada" ...
##  $ Marca               : chr  "Topo Chico A.M." "Ciel Agua Purificada" "Ciel Agua Purificada" "Ciel Exprim" ...
##  $ Presentacion        : chr  "600 ml NR" "1 Ltro. N.R." "1.5 Lts. NR" "600 ml NR" ...
##  $ Tamaño              : chr  "Individual" "Individual" "Individual" "Individual" ...
##  $ Retornable_NR       : chr  "No Retornable" "No Retornable" "No Retornable" "No Retornable" ...
##  $ Enero               : chr  "" "" "" "" ...
##  $ Febrero             : chr  "" "2" "" "" ...
##  $ Marzo               : chr  "" "8" "3" "" ...
##  $ Abril               : chr  "" "4" "6" "" ...
##  $ Mayo                : chr  "" "4" "3" "" ...
##  $ Junio               : chr  "" "2" "3" "" ...
##  $ Julio               : chr  "" "2" "3" "" ...
##  $ Agosto              : chr  "" "2" "3" "" ...
##  $ Septiembre          : chr  "" "2" "3" "" ...
##  $ Octubre             : chr  "" "2" "3" "" ...
##  $ Noviembre           : chr  "" "4" "3" "" ...
##  $ Diciembre           : chr  "1" "2" "3" "1" ...
head(base_de_datos)
##   ID  Año  Territorio Sub.Territorio         CEDI Cliente Nombre
## 1  1 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 2  2 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 3  3 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 4  4 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 5  5 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 6  6 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
##   Tamaño.Cte.Industria    Segmento.Det                Marca   Presentacion
## 1         Extra Grande    Agua Mineral      Topo Chico A.M.      600 ml NR
## 2         Extra Grande Agua Purificada Ciel Agua Purificada   1 Ltro. N.R.
## 3         Extra Grande Agua Purificada Ciel Agua Purificada    1.5 Lts. NR
## 4         Extra Grande Agua Saborizada          Ciel Exprim      600 ml NR
## 5         Extra Grande Agua Saborizada            Ciel Mini 300 ML. NR PET
## 6         Extra Grande Agua Saborizada      Ciel Saborizada   1 Ltro. N.R.
##       Tamaño Retornable_NR Enero Febrero Marzo Abril Mayo Junio Julio Agosto
## 1 Individual No Retornable                                                  
## 2 Individual No Retornable             2     8     4    4     2     2      2
## 3 Individual No Retornable                   3     6    3     3     3      3
## 4 Individual No Retornable                                                  
## 5 Individual No Retornable                                                  
## 6 Individual No Retornable                   1                              
##   Septiembre Octubre Noviembre Diciembre
## 1                                      1
## 2          2       2         4         2
## 3          3       3         3         3
## 4                                      1
## 5                            0          
## 6
tail(base_de_datos)
##            ID  Año  Territorio Sub.Territorio           CEDI Cliente Nombre
## 466504 466504 2019 Guadalajara      Huentitán Suc. Huentitán    4531  HECTO
## 466505 466505 2019 Guadalajara      Huentitán Suc. Huentitán    4531  HECTO
## 466506 466506 2019 Guadalajara      Huentitán Suc. Huentitán    4531  HECTO
## 466507 466507 2019 Guadalajara      Huentitán Suc. Huentitán    4531  HECTO
## 466508 466508 2019 Guadalajara      Huentitán Suc. Huentitán    4531  HECTO
## 466509 466509 2019 Guadalajara      Huentitán Suc. Huentitán    4531  HECTO
##        Tamaño.Cte.Industria    Segmento.Det    Marca   Presentacion     Tamaño
## 466504              Pequeño Sabores Regular   Sprite 250 ml. NR PET Individual
## 466505              Pequeño Sabores Regular   Sprite      400 ml NR Individual
## 466506              Pequeño Sabores Regular   Sprite     500 ml Ret Individual
## 466507              Pequeño Sabores Regular   Sprite      600 ml NR Individual
## 466508              Pequeño Sabores Regular   Sprite    Lata 235 ml Individual
## 466509              Pequeño      Té Regular Fuze Tea      600 ml NR Individual
##        Retornable_NR Enero Febrero Marzo Abril Mayo Junio Julio Agosto
## 466504 No Retornable             1           1    1     1             
## 466505 No Retornable             0     1     2          2            1
## 466506    Retornable             6          10    4     8    11      8
## 466507 No Retornable     1       3     4     6    2     4     9      1
## 466508 No Retornable     0       0           0                1       
## 466509 No Retornable             1     2     1    4     1    16       
##        Septiembre Octubre Noviembre Diciembre
## 466504                                       
## 466505                                       
## 466506                                       
## 466507                                       
## 466508                                       
## 466509

Observaciones

1. De enero a diciembre las cantidades de venta y los clientes vienen como caracteres, hay que cambiarlo a enteros

Convertir tipos de variables

library(janitor)
## 
## Attaching package: 'janitor'
## The following objects are masked from 'package:stats':
## 
##     chisq.test, fisher.test
library(tidyverse)
## ── Attaching packages
## ───────────────────────────────────────
## tidyverse 1.3.2 ──
## ✔ ggplot2 3.3.6     ✔ purrr   0.3.4
## ✔ tibble  3.1.8     ✔ stringr 1.4.1
## ✔ tidyr   1.2.1     ✔ forcats 0.5.2
## ✔ readr   2.1.2     
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag()    masks stats::lag()
base_de_datos$Cliente <- as.integer(base_de_datos$Cliente)
## Warning: NAs introduced by coercion
str(base_de_datos)
## 'data.frame':    466509 obs. of  25 variables:
##  $ ID                  : int  1 2 3 4 5 6 7 8 9 10 ...
##  $ Año                 : int  2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 ...
##  $ Territorio          : chr  "Guadalajara" "Guadalajara" "Guadalajara" "Guadalajara" ...
##  $ Sub.Territorio      : chr  "Belenes" "Belenes" "Belenes" "Belenes" ...
##  $ CEDI                : chr  "Suc. Belenes" "Suc. Belenes" "Suc. Belenes" "Suc. Belenes" ...
##  $ Cliente             : int  77737 77737 77737 77737 77737 77737 77737 77737 77737 77737 ...
##  $ Nombre              : chr  "ABARR" "ABARR" "ABARR" "ABARR" ...
##  $ Tamaño.Cte.Industria: chr  "Extra Grande" "Extra Grande" "Extra Grande" "Extra Grande" ...
##  $ Segmento.Det        : chr  "Agua Mineral" "Agua Purificada" "Agua Purificada" "Agua Saborizada" ...
##  $ Marca               : chr  "Topo Chico A.M." "Ciel Agua Purificada" "Ciel Agua Purificada" "Ciel Exprim" ...
##  $ Presentacion        : chr  "600 ml NR" "1 Ltro. N.R." "1.5 Lts. NR" "600 ml NR" ...
##  $ Tamaño              : chr  "Individual" "Individual" "Individual" "Individual" ...
##  $ Retornable_NR       : chr  "No Retornable" "No Retornable" "No Retornable" "No Retornable" ...
##  $ Enero               : chr  "" "" "" "" ...
##  $ Febrero             : chr  "" "2" "" "" ...
##  $ Marzo               : chr  "" "8" "3" "" ...
##  $ Abril               : chr  "" "4" "6" "" ...
##  $ Mayo                : chr  "" "4" "3" "" ...
##  $ Junio               : chr  "" "2" "3" "" ...
##  $ Julio               : chr  "" "2" "3" "" ...
##  $ Agosto              : chr  "" "2" "3" "" ...
##  $ Septiembre          : chr  "" "2" "3" "" ...
##  $ Octubre             : chr  "" "2" "3" "" ...
##  $ Noviembre           : chr  "" "4" "3" "" ...
##  $ Diciembre           : chr  "1" "2" "3" "1" ...
summary(base_de_datos)
##        ID              Año        Territorio        Sub.Territorio    
##  Min.   :     1   Min.   :2016   Length:466509      Length:466509     
##  1st Qu.:116628   1st Qu.:2017   Class :character   Class :character  
##  Median :233255   Median :2018   Mode  :character   Mode  :character  
##  Mean   :233255   Mean   :2018                                        
##  3rd Qu.:349882   3rd Qu.:2019                                        
##  Max.   :466509   Max.   :2019                                        
##                                                                       
##      CEDI              Cliente         Nombre          Tamaño.Cte.Industria
##  Length:466509      Min.   :    3   Length:466509      Length:466509       
##  Class :character   1st Qu.: 2509   Class :character   Class :character    
##  Mode  :character   Median : 5488   Mode  :character   Mode  :character    
##                     Mean   :16768                                          
##                     3rd Qu.: 9267                                          
##                     Max.   :99998                                          
##                     NA's   :1                                              
##  Segmento.Det          Marca           Presentacion          Tamaño         
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##                                                                             
##  Retornable_NR         Enero             Febrero             Marzo          
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##                                                                             
##     Abril               Mayo              Junio              Julio          
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##                                                                             
##     Agosto           Septiembre          Octubre           Noviembre        
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##                                                                             
##   Diciembre        
##  Length:466509     
##  Class :character  
##  Mode  :character  
##                    
##                    
##                    
## 
base_de_datos$Enero <- as.integer(base_de_datos$Enero)
## Warning: NAs introduced by coercion
base_de_datos$Febrero <- as.integer(base_de_datos$Febrero)
## Warning: NAs introduced by coercion
base_de_datos$Marzo <- as.integer(base_de_datos$Marzo)
## Warning: NAs introduced by coercion
base_de_datos$Abril <- as.integer(base_de_datos$Abril)
## Warning: NAs introduced by coercion
base_de_datos$Mayo <- as.integer(base_de_datos$Mayo)
## Warning: NAs introduced by coercion
base_de_datos$Junio <- as.integer(base_de_datos$Junio)
## Warning: NAs introduced by coercion
base_de_datos$Julio <- as.integer(base_de_datos$Julio)
## Warning: NAs introduced by coercion
base_de_datos$Agosto <- as.integer(base_de_datos$Agosto)
## Warning: NAs introduced by coercion
base_de_datos$Septiembre <- as.integer(base_de_datos$Septiembre)
## Warning: NAs introduced by coercion
base_de_datos$Octubre <- as.integer(base_de_datos$Octubre)
## Warning: NAs introduced by coercion
base_de_datos$Noviembre <- as.integer(base_de_datos$Noviembre)
## Warning: NAs introduced by coercion
base_de_datos$Diciembre <- as.integer(base_de_datos$Diciembre)
## Warning: NAs introduced by coercion
summary(base_de_datos)
##        ID              Año        Territorio        Sub.Territorio    
##  Min.   :     1   Min.   :2016   Length:466509      Length:466509     
##  1st Qu.:116628   1st Qu.:2017   Class :character   Class :character  
##  Median :233255   Median :2018   Mode  :character   Mode  :character  
##  Mean   :233255   Mean   :2018                                        
##  3rd Qu.:349882   3rd Qu.:2019                                        
##  Max.   :466509   Max.   :2019                                        
##                                                                       
##      CEDI              Cliente         Nombre          Tamaño.Cte.Industria
##  Length:466509      Min.   :    3   Length:466509      Length:466509       
##  Class :character   1st Qu.: 2509   Class :character   Class :character    
##  Mode  :character   Median : 5488   Mode  :character   Mode  :character    
##                     Mean   :16768                                          
##                     3rd Qu.: 9267                                          
##                     Max.   :99998                                          
##                     NA's   :1                                              
##  Segmento.Det          Marca           Presentacion          Tamaño         
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##                                                                             
##  Retornable_NR          Enero           Febrero           Marzo       
##  Length:466509      Min.   :-19.00   Min.   :-11.00   Min.   :-32.00  
##  Class :character   1st Qu.:  1.00   1st Qu.:  1.00   1st Qu.:  1.00  
##  Mode  :character   Median :  2.00   Median :  2.00   Median :  3.00  
##                     Mean   :  9.39   Mean   :  9.09   Mean   : 10.54  
##                     3rd Qu.:  6.00   3rd Qu.:  6.00   3rd Qu.:  6.00  
##                     Max.   :999.00   Max.   :986.00   Max.   :986.00  
##                     NA's   :233552   NA's   :231286   NA's   :227507  
##      Abril             Mayo             Junio             Julio       
##  Min.   :-70.00   Min.   :-106.00   Min.   :-211.00   Min.   :-60.00  
##  1st Qu.:  1.00   1st Qu.:   1.00   1st Qu.:   1.00   1st Qu.:  1.00  
##  Median :  3.00   Median :   3.00   Median :   3.00   Median :  2.00  
##  Mean   : 10.62   Mean   :  11.44   Mean   :  10.98   Mean   : 10.72  
##  3rd Qu.:  6.00   3rd Qu.:   7.00   3rd Qu.:   6.00   3rd Qu.:  6.00  
##  Max.   :993.00   Max.   : 991.00   Max.   : 998.00   Max.   :993.00  
##  NA's   :224186   NA's   :217073    NA's   :215908    NA's   :223538  
##      Agosto          Septiembre        Octubre         Noviembre     
##  Min.   :-211.00   Min.   :-527     Min.   :-38.0    Min.   :-25.0   
##  1st Qu.:   1.00   1st Qu.:   1     1st Qu.:  1.0    1st Qu.:  1.0   
##  Median :   3.00   Median :   3     Median :  3.0    Median :  3.0   
##  Mean   :  10.95   Mean   :  12     Mean   : 12.1    Mean   : 11.8   
##  3rd Qu.:   6.00   3rd Qu.:   7     3rd Qu.:  7.0    3rd Qu.:  6.0   
##  Max.   : 999.00   Max.   : 993     Max.   :998.0    Max.   :991.0   
##  NA's   :220367    NA's   :337402   NA's   :338483   NA's   :338546  
##    Diciembre     
##  Min.   :-28     
##  1st Qu.:  1     
##  Median :  3     
##  Mean   : 13     
##  3rd Qu.:  7     
##  Max.   :997     
##  NA's   :341955

¿Cuántos NA tengo en la base de datos?

sum(is.na(base_de_datos))
## [1] 3149804

¿Cuántos Na tengo por variable?

sapply(base_de_datos, function(x) sum(is.na(x)))
##                   ID                  Año           Territorio 
##                    0                    0                    0 
##       Sub.Territorio                 CEDI              Cliente 
##                    0                    0                    1 
##               Nombre Tamaño.Cte.Industria         Segmento.Det 
##                    0                    0                    0 
##                Marca         Presentacion               Tamaño 
##                    0                    0                    0 
##        Retornable_NR                Enero              Febrero 
##                    0               233552               231286 
##                Marzo                Abril                 Mayo 
##               227507               224186               217073 
##                Junio                Julio               Agosto 
##               215908               223538               220367 
##           Septiembre              Octubre            Noviembre 
##               337402               338483               338546 
##            Diciembre 
##               341955

Detectar valores atípicos

boxplot(base_de_datos$Enero, horizontal=TRUE)

boxplot(base_de_datos$Diciembre, horizontal=TRUE)

Valores atípicos

library(ggplot2)
ggplot(data=base_de_datos, aes(Febrero, CEDI)) + geom_point()
## Warning: Removed 231286 rows containing missing values (geom_point).

Valores de tendencia central

Las medidas de tendencia denctral son: Media (promedio), Mediana y Moda.

summary(base_de_datos)
##        ID              Año        Territorio        Sub.Territorio    
##  Min.   :     1   Min.   :2016   Length:466509      Length:466509     
##  1st Qu.:116628   1st Qu.:2017   Class :character   Class :character  
##  Median :233255   Median :2018   Mode  :character   Mode  :character  
##  Mean   :233255   Mean   :2018                                        
##  3rd Qu.:349882   3rd Qu.:2019                                        
##  Max.   :466509   Max.   :2019                                        
##                                                                       
##      CEDI              Cliente         Nombre          Tamaño.Cte.Industria
##  Length:466509      Min.   :    3   Length:466509      Length:466509       
##  Class :character   1st Qu.: 2509   Class :character   Class :character    
##  Mode  :character   Median : 5488   Mode  :character   Mode  :character    
##                     Mean   :16768                                          
##                     3rd Qu.: 9267                                          
##                     Max.   :99998                                          
##                     NA's   :1                                              
##  Segmento.Det          Marca           Presentacion          Tamaño         
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##                                                                             
##  Retornable_NR          Enero           Febrero           Marzo       
##  Length:466509      Min.   :-19.00   Min.   :-11.00   Min.   :-32.00  
##  Class :character   1st Qu.:  1.00   1st Qu.:  1.00   1st Qu.:  1.00  
##  Mode  :character   Median :  2.00   Median :  2.00   Median :  3.00  
##                     Mean   :  9.39   Mean   :  9.09   Mean   : 10.54  
##                     3rd Qu.:  6.00   3rd Qu.:  6.00   3rd Qu.:  6.00  
##                     Max.   :999.00   Max.   :986.00   Max.   :986.00  
##                     NA's   :233552   NA's   :231286   NA's   :227507  
##      Abril             Mayo             Junio             Julio       
##  Min.   :-70.00   Min.   :-106.00   Min.   :-211.00   Min.   :-60.00  
##  1st Qu.:  1.00   1st Qu.:   1.00   1st Qu.:   1.00   1st Qu.:  1.00  
##  Median :  3.00   Median :   3.00   Median :   3.00   Median :  2.00  
##  Mean   : 10.62   Mean   :  11.44   Mean   :  10.98   Mean   : 10.72  
##  3rd Qu.:  6.00   3rd Qu.:   7.00   3rd Qu.:   6.00   3rd Qu.:  6.00  
##  Max.   :993.00   Max.   : 991.00   Max.   : 998.00   Max.   :993.00  
##  NA's   :224186   NA's   :217073    NA's   :215908    NA's   :223538  
##      Agosto          Septiembre        Octubre         Noviembre     
##  Min.   :-211.00   Min.   :-527     Min.   :-38.0    Min.   :-25.0   
##  1st Qu.:   1.00   1st Qu.:   1     1st Qu.:  1.0    1st Qu.:  1.0   
##  Median :   3.00   Median :   3     Median :  3.0    Median :  3.0   
##  Mean   :  10.95   Mean   :  12     Mean   : 12.1    Mean   : 11.8   
##  3rd Qu.:   6.00   3rd Qu.:   7     3rd Qu.:  7.0    3rd Qu.:  6.0   
##  Max.   : 999.00   Max.   : 993     Max.   :998.0    Max.   :991.0   
##  NA's   :220367    NA's   :337402   NA's   :338483   NA's   :338546  
##    Diciembre     
##  Min.   :-28     
##  1st Qu.:  1     
##  Median :  3     
##  Mean   : 13     
##  3rd Qu.:  7     
##  Max.   :997     
##  NA's   :341955
mode <- function(x){
  ux <- unique(x)
  ux[which.max(tabulate(match(x,ux)))]
}

Nota: Si ningún dato se repite, la función coloca el primer valor en lugar de marcar error.

mode(base_de_datos$Cliente)
## [1] 286
mode(base_de_datos$Enero)
## [1] NA

Cambiar de nombre a una variable

?rename
rename(base_de_datos, Sub_Territorio=Sub.Territorio)
##        ID  Año  Territorio Sub_Territorio         CEDI Cliente Nombre
## 1       1 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 2       2 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 3       3 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 4       4 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 5       5 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 6       6 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 7       7 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 8       8 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 9       9 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 10     10 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 11     11 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 12     12 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 13     13 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 14     14 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 15     15 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 16     16 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 17     17 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 18     18 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 19     19 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 20     20 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 21     21 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 22     22 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 23     23 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 24     24 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 25     25 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 26     26 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 27     27 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 28     28 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 29     29 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 30     30 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 31     31 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 32     32 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 33     33 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 34     34 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 35     35 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 36     36 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 37     37 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 38     38 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 39     39 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 40     40 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 41     41 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 42     42 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 43     43 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 44     44 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 45     45 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 46     46 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 47     47 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 48     48 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 49     49 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 50     50 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 51     51 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 52     52 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 53     53 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 54     54 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 55     55 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 56     56 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 57     57 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 58     58 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 59     59 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 60     60 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 61     61 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 62     62 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 63     63 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 64     64 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 65     65 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 66     66 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 67     67 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 68     68 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 69     69 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 70     70 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 71     71 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 72     72 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 73     73 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 74     74 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 75     75 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 76     76 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 77     77 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 78     78 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 79     79 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 80     80 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 81     81 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 82     82 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 83     83 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 84     84 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 85     85 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 86     86 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 87     87 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 88     88 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 89     89 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 90     90 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 91     91 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 92     92 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 93     93 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 94     94 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 95     95 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 96     96 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 97     97 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 98     98 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 99     99 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 100   100 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 101   101 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 102   102 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 103   103 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 104   104 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 105   105 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 106   106 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 107   107 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 108   108 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 109   109 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 110   110 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 111   111 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 112   112 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 113   113 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 114   114 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 115   115 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 116   116 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 117   117 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 118   118 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 119   119 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 120   120 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 121   121 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 122   122 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 123   123 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 124   124 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 125   125 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 126   126 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 127   127 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 128   128 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 129   129 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 130   130 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 131   131 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 132   132 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 133   133 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 134   134 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 135   135 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 136   136 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 137   137 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 138   138 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 139   139 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 140   140 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 141   141 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 142   142 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 143   143 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 144   144 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 145   145 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 146   146 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 147   147 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 148   148 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 149   149 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 150   150 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 151   151 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 152   152 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 153   153 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 154   154 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 155   155 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 156   156 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 157   157 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 158   158 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 159   159 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 160   160 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 161   161 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 162   162 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 163   163 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 164   164 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 165   165 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 166   166 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 167   167 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 168   168 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 169   169 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 170   170 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 171   171 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 172   172 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 173   173 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 174   174 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 175   175 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 176   176 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 177   177 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 178   178 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 179   179 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 180   180 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 181   181 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 182   182 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 183   183 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 184   184 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 185   185 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 186   186 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 187   187 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 188   188 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 189   189 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 190   190 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 191   191 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 192   192 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 193   193 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 194   194 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 195   195 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 196   196 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 197   197 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 198   198 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 199   199 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 200   200 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 201   201 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 202   202 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 203   203 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 204   204 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 205   205 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 206   206 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 207   207 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 208   208 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 209   209 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 210   210 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 211   211 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 212   212 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 213   213 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 214   214 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 215   215 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 216   216 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 217   217 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 218   218 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 219   219 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 220   220 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 221   221 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 222   222 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 223   223 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 224   224 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 225   225 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 226   226 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 227   227 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 228   228 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 229   229 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 230   230 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 231   231 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 232   232 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 233   233 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 234   234 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 235   235 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 236   236 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 237   237 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 238   238 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 239   239 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 240   240 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 241   241 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 242   242 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 243   243 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 244   244 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 245   245 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 246   246 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 247   247 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 248   248 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 249   249 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 250   250 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 251   251 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 252   252 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 253   253 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 254   254 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 255   255 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 256   256 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 257   257 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 258   258 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 259   259 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 260   260 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 261   261 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 262   262 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 263   263 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 264   264 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 265   265 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 266   266 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 267   267 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 268   268 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 269   269 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 270   270 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 271   271 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 272   272 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 273   273 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 274   274 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 275   275 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 276   276 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 277   277 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 278   278 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 279   279 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 280   280 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 281   281 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 282   282 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 283   283 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 284   284 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 285   285 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 286   286 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 287   287 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 288   288 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 289   289 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 290   290 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 291   291 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 292   292 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 293   293 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 294   294 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 295   295 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 296   296 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 297   297 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 298   298 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 299   299 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 300   300 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 301   301 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 302   302 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 303   303 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 304   304 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 305   305 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 306   306 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 307   307 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 308   308 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 309   309 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 310   310 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 311   311 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 312   312 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 313   313 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 314   314 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 315   315 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 316   316 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 317   317 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 318   318 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 319   319 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 320   320 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 321   321 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 322   322 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 323   323 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 324   324 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 325   325 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 326   326 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 327   327 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 328   328 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 329   329 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 330   330 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 331   331 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 332   332 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 333   333 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 334   334 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 335   335 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 336   336 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 337   337 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 338   338 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 339   339 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 340   340 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 341   341 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 342   342 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 343   343 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 344   344 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 345   345 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 346   346 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 347   347 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 348   348 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 349   349 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 350   350 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 351   351 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 352   352 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 353   353 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 354   354 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 355   355 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 356   356 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 357   357 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 358   358 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 359   359 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 360   360 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 361   361 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 362   362 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 363   363 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 364   364 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 365   365 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 366   366 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 367   367 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 368   368 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 369   369 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 370   370 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 371   371 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 372   372 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 373   373 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 374   374 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 375   375 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 376   376 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 377   377 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 378   378 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 379   379 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 380   380 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 381   381 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 382   382 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 383   383 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 384   384 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 385   385 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 386   386 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 387   387 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 388   388 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 389   389 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 390   390 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 391   391 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 392   392 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 393   393 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 394   394 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 395   395 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 396   396 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 397   397 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 398   398 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 399   399 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 400   400 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 401   401 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 402   402 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 403   403 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 404   404 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 405   405 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 406   406 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 407   407 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 408   408 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 409   409 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 410   410 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 411   411 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 412   412 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 413   413 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 414   414 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 415   415 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 416   416 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 417   417 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 418   418 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 419   419 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 420   420 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 421   421 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 422   422 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 423   423 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 424   424 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 425   425 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 426   426 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 427   427 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 428   428 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 429   429 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 430   430 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 431   431 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 432   432 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 433   433 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 434   434 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 435   435 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 436   436 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 437   437 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 438   438 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 439   439 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 440   440 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 441   441 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 442   442 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 443   443 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 444   444 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 445   445 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 446   446 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 447   447 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 448   448 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 449   449 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 450   450 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 451   451 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 452   452 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 453   453 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 454   454 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 455   455 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 456   456 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 457   457 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 458   458 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 459   459 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 460   460 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 461   461 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 462   462 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 463   463 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 464   464 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 465   465 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 466   466 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 467   467 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 468   468 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 469   469 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 470   470 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 471   471 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 472   472 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 473   473 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 474   474 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 475   475 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 476   476 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 477   477 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 478   478 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 479   479 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 480   480 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 481   481 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 482   482 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 483   483 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 484   484 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 485   485 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 486   486 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 487   487 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 488   488 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 489   489 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 490   490 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 491   491 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 492   492 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 493   493 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 494   494 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 495   495 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 496   496 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 497   497 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 498   498 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 499   499 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 500   500 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 501   501 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 502   502 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 503   503 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 504   504 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 505   505 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 506   506 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 507   507 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 508   508 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 509   509 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 510   510 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 511   511 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 512   512 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 513   513 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 514   514 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 515   515 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 516   516 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 517   517 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 518   518 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 519   519 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 520   520 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 521   521 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 522   522 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 523   523 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 524   524 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 525   525 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 526   526 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 527   527 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 528   528 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 529   529 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 530   530 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 531   531 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 532   532 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 533   533 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 534   534 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 535   535 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 536   536 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 537   537 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 538   538 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 539   539 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 540   540 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 541   541 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 542   542 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 543   543 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 544   544 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 545   545 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 546   546 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 547   547 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 548   548 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 549   549 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 550   550 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 551   551 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 552   552 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 553   553 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 554   554 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 555   555 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 556   556 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 557   557 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 558   558 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 559   559 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 560   560 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 561   561 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 562   562 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 563   563 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 564   564 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 565   565 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 566   566 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 567   567 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 568   568 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 569   569 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 570   570 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 571   571 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 572   572 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 573   573 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 574   574 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 575   575 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 576   576 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 577   577 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 578   578 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 579   579 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 580   580 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 581   581 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 582   582 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 583   583 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 584   584 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 585   585 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 586   586 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 587   587 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 588   588 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 589   589 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 590   590 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 591   591 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 592   592 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 593   593 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 594   594 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 595   595 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 596   596 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 597   597 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 598   598 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 599   599 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 600   600 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 601   601 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 602   602 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 603   603 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 604   604 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 605   605 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 606   606 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 607   607 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 608   608 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 609   609 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 610   610 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 611   611 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 612   612 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 613   613 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 614   614 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 615   615 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 616   616 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 617   617 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 618   618 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 619   619 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 620   620 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 621   621 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 622   622 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 623   623 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 624   624 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 625   625 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 626   626 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 627   627 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 628   628 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 629   629 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 630   630 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 631   631 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 632   632 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 633   633 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 634   634 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 635   635 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 636   636 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 637   637 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 638   638 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 639   639 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 640   640 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 641   641 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 642   642 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 643   643 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 644   644 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 645   645 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 646   646 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 647   647 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 648   648 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 649   649 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 650   650 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 651   651 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 652   652 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 653   653 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 654   654 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 655   655 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 656   656 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 657   657 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 658   658 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 659   659 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 660   660 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 661   661 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 662   662 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 663   663 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 664   664 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 665   665 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 666   666 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 667   667 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 668   668 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 669   669 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 670   670 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 671   671 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 672   672 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 673   673 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 674   674 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 675   675 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 676   676 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 677   677 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 678   678 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 679   679 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 680   680 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 681   681 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 682   682 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 683   683 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 684   684 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 685   685 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 686   686 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 687   687 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 688   688 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 689   689 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 690   690 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 691   691 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 692   692 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 693   693 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 694   694 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 695   695 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 696   696 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 697   697 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 698   698 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 699   699 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 700   700 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 701   701 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 702   702 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 703   703 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 704   704 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 705   705 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 706   706 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 707   707 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 708   708 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 709   709 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 710   710 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 711   711 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 712   712 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 713   713 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 714   714 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 715   715 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 716   716 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 717   717 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 718   718 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 719   719 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 720   720 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 721   721 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 722   722 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 723   723 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 724   724 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 725   725 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 726   726 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 727   727 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 728   728 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 729   729 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 730   730 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 731   731 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 732   732 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 733   733 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 734   734 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 735   735 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 736   736 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 737   737 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 738   738 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 739   739 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 740   740 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 741   741 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 742   742 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 743   743 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 744   744 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 745   745 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 746   746 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 747   747 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 748   748 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 749   749 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 750   750 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 751   751 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 752   752 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 753   753 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 754   754 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 755   755 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 756   756 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 757   757 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 758   758 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 759   759 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 760   760 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 761   761 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 762   762 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 763   763 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 764   764 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 765   765 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 766   766 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 767   767 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 768   768 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 769   769 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 770   770 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 771   771 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 772   772 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 773   773 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 774   774 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 775   775 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 776   776 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 777   777 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 778   778 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 779   779 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 780   780 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 781   781 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 782   782 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 783   783 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 784   784 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 785   785 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 786   786 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 787   787 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 788   788 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 789   789 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 790   790 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 791   791 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 792   792 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 793   793 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 794   794 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 795   795 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 796   796 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 797   797 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 798   798 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 799   799 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 800   800 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 801   801 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 802   802 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 803   803 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 804   804 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 805   805 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 806   806 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 807   807 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 808   808 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 809   809 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 810   810 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 811   811 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 812   812 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 813   813 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 814   814 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 815   815 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 816   816 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 817   817 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 818   818 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 819   819 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 820   820 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 821   821 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 822   822 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 823   823 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 824   824 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 825   825 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 826   826 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 827   827 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 828   828 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 829   829 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 830   830 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 831   831 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 832   832 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 833   833 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 834   834 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 835   835 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 836   836 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 837   837 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 838   838 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 839   839 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 840   840 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 841   841 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 842   842 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 843   843 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 844   844 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 845   845 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 846   846 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 847   847 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 848   848 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 849   849 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 850   850 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 851   851 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 852   852 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 853   853 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 854   854 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 855   855 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 856   856 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 857   857 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 858   858 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 859   859 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 860   860 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 861   861 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 862   862 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 863   863 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 864   864 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 865   865 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 866   866 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 867   867 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 868   868 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 869   869 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 870   870 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 871   871 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 872   872 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 873   873 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 874   874 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 875   875 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 876   876 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 877   877 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 878   878 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 879   879 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 880   880 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 881   881 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 882   882 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 883   883 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 884   884 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 885   885 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 886   886 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 887   887 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 888   888 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 889   889 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 890   890 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 891   891 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 892   892 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 893   893 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 894   894 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 895   895 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 896   896 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 897   897 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 898   898 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 899   899 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 900   900 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 901   901 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 902   902 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 903   903 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 904   904 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 905   905 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 906   906 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 907   907 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 908   908 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 909   909 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 910   910 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 911   911 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 912   912 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 913   913 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 914   914 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 915   915 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 916   916 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 917   917 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 918   918 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 919   919 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 920   920 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 921   921 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 922   922 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 923   923 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 924   924 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 925   925 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 926   926 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 927   927 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 928   928 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 929   929 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 930   930 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 931   931 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 932   932 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 933   933 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 934   934 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 935   935 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 936   936 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 937   937 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 938   938 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 939   939 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 940   940 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 941   941 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 942   942 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 943   943 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 944   944 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 945   945 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 946   946 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 947   947 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 948   948 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 949   949 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 950   950 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 951   951 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 952   952 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 953   953 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 954   954 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 955   955 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 956   956 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 957   957 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 958   958 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 959   959 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 960   960 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 961   961 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 962   962 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 963   963 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 964   964 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 965   965 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 966   966 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 967   967 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 968   968 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 969   969 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 970   970 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 971   971 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 972   972 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 973   973 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 974   974 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 975   975 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 976   976 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 977   977 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 978   978 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 979   979 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 980   980 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 981   981 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 982   982 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 983   983 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 984   984 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 985   985 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 986   986 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 987   987 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 988   988 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 989   989 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 990   990 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 991   991 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 992   992 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 993   993 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 994   994 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 995   995 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 996   996 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 997   997 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 998   998 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 999   999 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1000 1000 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1001 1001 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1002 1002 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1003 1003 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1004 1004 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1005 1005 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1006 1006 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1007 1007 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1008 1008 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1009 1009 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1010 1010 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1011 1011 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1012 1012 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1013 1013 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1014 1014 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1015 1015 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1016 1016 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1017 1017 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1018 1018 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1019 1019 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1020 1020 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1021 1021 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1022 1022 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1023 1023 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1024 1024 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1025 1025 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1026 1026 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1027 1027 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1028 1028 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1029 1029 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1030 1030 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1031 1031 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1032 1032 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1033 1033 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1034 1034 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1035 1035 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1036 1036 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1037 1037 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1038 1038 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1039 1039 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1040 1040 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1041 1041 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1042 1042 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1043 1043 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1044 1044 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1045 1045 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1046 1046 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1047 1047 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1048 1048 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1049 1049 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1050 1050 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1051 1051 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1052 1052 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1053 1053 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1054 1054 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1055 1055 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1056 1056 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1057 1057 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1058 1058 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1059 1059 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1060 1060 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1061 1061 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1062 1062 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1063 1063 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1064 1064 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1065 1065 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1066 1066 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1067 1067 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1068 1068 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1069 1069 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1070 1070 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1071 1071 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1072 1072 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1073 1073 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1074 1074 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1075 1075 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1076 1076 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1077 1077 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1078 1078 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1079 1079 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1080 1080 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1081 1081 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1082 1082 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1083 1083 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1084 1084 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1085 1085 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1086 1086 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1087 1087 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1088 1088 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1089 1089 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1090 1090 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1091 1091 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1092 1092 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1093 1093 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1094 1094 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1095 1095 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1096 1096 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1097 1097 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1098 1098 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1099 1099 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1100 1100 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1101 1101 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1102 1102 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1103 1103 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1104 1104 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1105 1105 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1106 1106 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1107 1107 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1108 1108 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1109 1109 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1110 1110 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1111 1111 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1112 1112 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1113 1113 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1114 1114 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1115 1115 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1116 1116 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1117 1117 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1118 1118 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1119 1119 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1120 1120 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1121 1121 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1122 1122 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1123 1123 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1124 1124 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1125 1125 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1126 1126 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1127 1127 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1128 1128 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1129 1129 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1130 1130 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1131 1131 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1132 1132 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1133 1133 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1134 1134 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1135 1135 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1136 1136 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1137 1137 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1138 1138 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1139 1139 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1140 1140 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1141 1141 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1142 1142 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1143 1143 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1144 1144 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1145 1145 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1146 1146 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1147 1147 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1148 1148 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1149 1149 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1150 1150 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1151 1151 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1152 1152 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1153 1153 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1154 1154 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1155 1155 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1156 1156 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1157 1157 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1158 1158 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1159 1159 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1160 1160 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1161 1161 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1162 1162 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1163 1163 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1164 1164 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1165 1165 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1166 1166 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1167 1167 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1168 1168 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1169 1169 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1170 1170 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1171 1171 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1172 1172 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1173 1173 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1174 1174 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1175 1175 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1176 1176 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1177 1177 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1178 1178 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1179 1179 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1180 1180 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1181 1181 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1182 1182 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1183 1183 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1184 1184 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1185 1185 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1186 1186 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1187 1187 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1188 1188 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1189 1189 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1190 1190 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1191 1191 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1192 1192 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1193 1193 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1194 1194 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1195 1195 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1196 1196 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1197 1197 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1198 1198 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1199 1199 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1200 1200 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1201 1201 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1202 1202 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1203 1203 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1204 1204 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1205 1205 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1206 1206 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1207 1207 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1208 1208 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1209 1209 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1210 1210 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1211 1211 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1212 1212 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1213 1213 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1214 1214 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1215 1215 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1216 1216 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1217 1217 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1218 1218 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1219 1219 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1220 1220 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1221 1221 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1222 1222 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1223 1223 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1224 1224 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1225 1225 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1226 1226 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1227 1227 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1228 1228 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1229 1229 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1230 1230 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1231 1231 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1232 1232 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1233 1233 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1234 1234 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1235 1235 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1236 1236 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1237 1237 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1238 1238 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1239 1239 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1240 1240 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1241 1241 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1242 1242 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1243 1243 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1244 1244 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1245 1245 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1246 1246 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1247 1247 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1248 1248 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1249 1249 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1250 1250 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1251 1251 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1252 1252 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1253 1253 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1254 1254 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1255 1255 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1256 1256 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1257 1257 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1258 1258 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1259 1259 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1260 1260 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1261 1261 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1262 1262 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1263 1263 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1264 1264 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1265 1265 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1266 1266 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1267 1267 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1268 1268 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1269 1269 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1270 1270 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1271 1271 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1272 1272 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1273 1273 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1274 1274 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1275 1275 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1276 1276 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1277 1277 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1278 1278 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1279 1279 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1280 1280 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1281 1281 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1282 1282 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1283 1283 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1284 1284 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1285 1285 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1286 1286 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1287 1287 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1288 1288 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1289 1289 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1290 1290 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1291 1291 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1292 1292 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1293 1293 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1294 1294 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1295 1295 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1296 1296 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1297 1297 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1298 1298 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1299 1299 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1300 1300 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1301 1301 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1302 1302 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1303 1303 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1304 1304 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1305 1305 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1306 1306 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1307 1307 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1308 1308 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1309 1309 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1310 1310 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1311 1311 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1312 1312 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1313 1313 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1314 1314 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1315 1315 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1316 1316 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1317 1317 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1318 1318 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1319 1319 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1320 1320 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1321 1321 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1322 1322 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1323 1323 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1324 1324 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1325 1325 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1326 1326 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1327 1327 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1328 1328 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1329 1329 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1330 1330 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1331 1331 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1332 1332 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1333 1333 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1334 1334 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1335 1335 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1336 1336 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1337 1337 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1338 1338 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1339 1339 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1340 1340 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1341 1341 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1342 1342 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1343 1343 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1344 1344 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1345 1345 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1346 1346 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1347 1347 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1348 1348 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1349 1349 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1350 1350 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1351 1351 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1352 1352 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1353 1353 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1354 1354 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1355 1355 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1356 1356 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1357 1357 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1358 1358 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1359 1359 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1360 1360 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1361 1361 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1362 1362 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1363 1363 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1364 1364 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1365 1365 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1366 1366 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1367 1367 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1368 1368 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1369 1369 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1370 1370 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1371 1371 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1372 1372 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1373 1373 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1374 1374 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1375 1375 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1376 1376 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1377 1377 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1378 1378 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1379 1379 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1380 1380 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1381 1381 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1382 1382 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1383 1383 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1384 1384 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1385 1385 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1386 1386 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1387 1387 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1388 1388 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1389 1389 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1390 1390 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1391 1391 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1392 1392 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1393 1393 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1394 1394 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1395 1395 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1396 1396 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1397 1397 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1398 1398 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1399 1399 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1400 1400 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1401 1401 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1402 1402 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1403 1403 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1404 1404 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1405 1405 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1406 1406 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1407 1407 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1408 1408 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1409 1409 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1410 1410 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1411 1411 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1412 1412 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1413 1413 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1414 1414 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1415 1415 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1416 1416 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1417 1417 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1418 1418 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1419 1419 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1420 1420 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1421 1421 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1422 1422 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1423 1423 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1424 1424 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1425 1425 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1426 1426 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1427 1427 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1428 1428 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1429 1429 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1430 1430 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1431 1431 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1432 1432 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1433 1433 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1434 1434 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1435 1435 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1436 1436 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1437 1437 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1438 1438 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1439 1439 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1440 1440 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1441 1441 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1442 1442 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1443 1443 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1444 1444 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1445 1445 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1446 1446 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1447 1447 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1448 1448 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1449 1449 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1450 1450 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1451 1451 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1452 1452 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1453 1453 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1454 1454 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1455 1455 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1456 1456 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1457 1457 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1458 1458 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1459 1459 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1460 1460 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1461 1461 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1462 1462 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1463 1463 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1464 1464 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1465 1465 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1466 1466 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1467 1467 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1468 1468 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1469 1469 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1470 1470 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1471 1471 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1472 1472 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1473 1473 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1474 1474 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1475 1475 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1476 1476 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1477 1477 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1478 1478 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1479 1479 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1480 1480 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1481 1481 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1482 1482 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1483 1483 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1484 1484 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1485 1485 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1486 1486 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1487 1487 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1488 1488 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1489 1489 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1490 1490 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1491 1491 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1492 1492 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1493 1493 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1494 1494 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1495 1495 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1496 1496 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1497 1497 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1498 1498 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1499 1499 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1500 1500 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1501 1501 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1502 1502 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1503 1503 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1504 1504 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1505 1505 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1506 1506 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1507 1507 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1508 1508 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1509 1509 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1510 1510 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1511 1511 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1512 1512 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1513 1513 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1514 1514 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1515 1515 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1516 1516 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1517 1517 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1518 1518 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1519 1519 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1520 1520 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1521 1521 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1522 1522 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1523 1523 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1524 1524 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1525 1525 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1526 1526 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1527 1527 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1528 1528 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1529 1529 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1530 1530 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1531 1531 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1532 1532 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1533 1533 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1534 1534 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1535 1535 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1536 1536 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1537 1537 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1538 1538 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1539 1539 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1540 1540 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1541 1541 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1542 1542 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1543 1543 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1544 1544 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1545 1545 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1546 1546 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1547 1547 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1548 1548 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1549 1549 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1550 1550 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1551 1551 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1552 1552 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1553 1553 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1554 1554 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1555 1555 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1556 1556 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1557 1557 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1558 1558 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1559 1559 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1560 1560 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1561 1561 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1562 1562 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1563 1563 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1564 1564 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1565 1565 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1566 1566 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1567 1567 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1568 1568 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1569 1569 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1570 1570 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1571 1571 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1572 1572 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1573 1573 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1574 1574 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1575 1575 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1576 1576 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1577 1577 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1578 1578 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1579 1579 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1580 1580 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1581 1581 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1582 1582 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1583 1583 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1584 1584 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1585 1585 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1586 1586 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1587 1587 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1588 1588 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1589 1589 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1590 1590 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1591 1591 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1592 1592 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1593 1593 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1594 1594 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1595 1595 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1596 1596 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1597 1597 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1598 1598 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1599 1599 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1600 1600 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1601 1601 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1602 1602 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1603 1603 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1604 1604 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1605 1605 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1606 1606 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1607 1607 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1608 1608 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1609 1609 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1610 1610 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1611 1611 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1612 1612 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1613 1613 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1614 1614 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1615 1615 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1616 1616 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1617 1617 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1618 1618 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1619 1619 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1620 1620 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1621 1621 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1622 1622 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1623 1623 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1624 1624 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1625 1625 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1626 1626 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1627 1627 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1628 1628 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1629 1629 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1630 1630 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1631 1631 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1632 1632 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1633 1633 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1634 1634 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1635 1635 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1636 1636 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1637 1637 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1638 1638 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1639 1639 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1640 1640 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1641 1641 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1642 1642 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1643 1643 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1644 1644 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1645 1645 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1646 1646 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1647 1647 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1648 1648 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1649 1649 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1650 1650 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1651 1651 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1652 1652 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1653 1653 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1654 1654 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1655 1655 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1656 1656 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1657 1657 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1658 1658 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1659 1659 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1660 1660 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1661 1661 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1662 1662 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1663 1663 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1664 1664 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1665 1665 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1666 1666 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1667 1667 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1668 1668 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1669 1669 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1670 1670 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1671 1671 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1672 1672 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1673 1673 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1674 1674 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1675 1675 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1676 1676 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1677 1677 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1678 1678 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1679 1679 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1680 1680 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1681 1681 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1682 1682 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1683 1683 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1684 1684 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1685 1685 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1686 1686 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1687 1687 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1688 1688 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1689 1689 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1690 1690 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1691 1691 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1692 1692 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1693 1693 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1694 1694 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1695 1695 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1696 1696 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1697 1697 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1698 1698 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1699 1699 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1700 1700 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1701 1701 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1702 1702 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1703 1703 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1704 1704 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1705 1705 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1706 1706 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1707 1707 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1708 1708 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1709 1709 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1710 1710 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1711 1711 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1712 1712 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1713 1713 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1714 1714 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1715 1715 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1716 1716 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1717 1717 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1718 1718 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1719 1719 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1720 1720 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1721 1721 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1722 1722 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1723 1723 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1724 1724 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1725 1725 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1726 1726 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1727 1727 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1728 1728 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1729 1729 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1730 1730 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1731 1731 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1732 1732 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1733 1733 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1734 1734 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1735 1735 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1736 1736 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1737 1737 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1738 1738 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1739 1739 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1740 1740 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1741 1741 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1742 1742 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1743 1743 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1744 1744 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1745 1745 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1746 1746 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1747 1747 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1748 1748 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1749 1749 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1750 1750 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1751 1751 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1752 1752 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1753 1753 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1754 1754 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1755 1755 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1756 1756 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1757 1757 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1758 1758 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1759 1759 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1760 1760 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1761 1761 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1762 1762 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1763 1763 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1764 1764 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1765 1765 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1766 1766 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1767 1767 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1768 1768 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1769 1769 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1770 1770 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1771 1771 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1772 1772 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1773 1773 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1774 1774 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1775 1775 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1776 1776 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1777 1777 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1778 1778 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1779 1779 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1780 1780 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1781 1781 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1782 1782 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1783 1783 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1784 1784 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1785 1785 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1786 1786 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1787 1787 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1788 1788 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1789 1789 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1790 1790 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1791 1791 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1792 1792 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1793 1793 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1794 1794 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1795 1795 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1796 1796 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1797 1797 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1798 1798 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1799 1799 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1800 1800 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1801 1801 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1802 1802 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1803 1803 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1804 1804 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1805 1805 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1806 1806 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1807 1807 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1808 1808 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1809 1809 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1810 1810 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1811 1811 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1812 1812 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1813 1813 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1814 1814 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1815 1815 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1816 1816 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1817 1817 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1818 1818 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1819 1819 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1820 1820 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1821 1821 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1822 1822 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1823 1823 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1824 1824 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1825 1825 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1826 1826 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1827 1827 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1828 1828 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1829 1829 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1830 1830 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1831 1831 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1832 1832 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1833 1833 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1834 1834 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1835 1835 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1836 1836 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1837 1837 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1838 1838 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1839 1839 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1840 1840 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1841 1841 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1842 1842 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1843 1843 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1844 1844 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1845 1845 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1846 1846 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1847 1847 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1848 1848 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1849 1849 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1850 1850 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1851 1851 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1852 1852 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1853 1853 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1854 1854 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1855 1855 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1856 1856 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1857 1857 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1858 1858 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1859 1859 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1860 1860 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1861 1861 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1862 1862 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1863 1863 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1864 1864 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1865 1865 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1866 1866 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1867 1867 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1868 1868 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1869 1869 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1870 1870 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1871 1871 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1872 1872 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1873 1873 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1874 1874 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1875 1875 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1876 1876 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1877 1877 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1878 1878 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1879 1879 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1880 1880 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1881 1881 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1882 1882 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1883 1883 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1884 1884 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1885 1885 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1886 1886 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1887 1887 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1888 1888 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1889 1889 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1890 1890 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1891 1891 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1892 1892 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1893 1893 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1894 1894 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1895 1895 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1896 1896 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1897 1897 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1898 1898 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1899 1899 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1900 1900 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1901 1901 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1902 1902 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1903 1903 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1904 1904 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1905 1905 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1906 1906 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1907 1907 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1908 1908 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1909 1909 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1910 1910 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1911 1911 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1912 1912 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1913 1913 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1914 1914 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1915 1915 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1916 1916 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1917 1917 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1918 1918 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1919 1919 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1920 1920 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1921 1921 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1922 1922 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1923 1923 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1924 1924 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1925 1925 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1926 1926 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1927 1927 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1928 1928 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1929 1929 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1930 1930 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1931 1931 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1932 1932 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1933 1933 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1934 1934 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1935 1935 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1936 1936 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1937 1937 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1938 1938 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1939 1939 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1940 1940 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1941 1941 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1942 1942 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1943 1943 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1944 1944 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1945 1945 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1946 1946 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1947 1947 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1948 1948 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1949 1949 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1950 1950 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1951 1951 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1952 1952 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1953 1953 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1954 1954 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1955 1955 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1956 1956 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1957 1957 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1958 1958 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1959 1959 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1960 1960 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1961 1961 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1962 1962 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1963 1963 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1964 1964 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1965 1965 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1966 1966 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1967 1967 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1968 1968 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1969 1969 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1970 1970 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1971 1971 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1972 1972 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1973 1973 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1974 1974 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1975 1975 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1976 1976 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1977 1977 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1978 1978 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1979 1979 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1980 1980 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1981 1981 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1982 1982 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1983 1983 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1984 1984 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1985 1985 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1986 1986 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1987 1987 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1988 1988 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1989 1989 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1990 1990 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1991 1991 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1992 1992 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1993 1993 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1994 1994 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1995 1995 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1996 1996 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1997 1997 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1998 1998 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1999 1999 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2000 2000 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2001 2001 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2002 2002 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2003 2003 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2004 2004 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2005 2005 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2006 2006 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2007 2007 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2008 2008 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2009 2009 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2010 2010 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2011 2011 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2012 2012 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2013 2013 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2014 2014 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2015 2015 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2016 2016 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2017 2017 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2018 2018 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2019 2019 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2020 2020 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2021 2021 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2022 2022 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2023 2023 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2024 2024 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2025 2025 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2026 2026 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2027 2027 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2028 2028 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2029 2029 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2030 2030 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2031 2031 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2032 2032 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2033 2033 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2034 2034 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2035 2035 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2036 2036 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2037 2037 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2038 2038 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2039 2039 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2040 2040 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2041 2041 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2042 2042 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2043 2043 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2044 2044 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2045 2045 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2046 2046 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2047 2047 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2048 2048 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2049 2049 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2050 2050 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2051 2051 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2052 2052 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2053 2053 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2054 2054 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2055 2055 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2056 2056 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2057 2057 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2058 2058 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2059 2059 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2060 2060 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2061 2061 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2062 2062 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2063 2063 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2064 2064 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2065 2065 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2066 2066 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2067 2067 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2068 2068 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2069 2069 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2070 2070 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2071 2071 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2072 2072 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2073 2073 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2074 2074 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2075 2075 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2076 2076 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2077 2077 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2078 2078 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2079 2079 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2080 2080 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2081 2081 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2082 2082 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2083 2083 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2084 2084 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2085 2085 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2086 2086 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2087 2087 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2088 2088 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2089 2089 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2090 2090 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2091 2091 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2092 2092 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2093 2093 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2094 2094 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2095 2095 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2096 2096 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2097 2097 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2098 2098 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2099 2099 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2100 2100 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2101 2101 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2102 2102 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2103 2103 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2104 2104 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2105 2105 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2106 2106 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2107 2107 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2108 2108 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2109 2109 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2110 2110 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2111 2111 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2112 2112 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2113 2113 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2114 2114 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2115 2115 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2116 2116 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2117 2117 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2118 2118 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2119 2119 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2120 2120 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2121 2121 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2122 2122 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2123 2123 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2124 2124 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2125 2125 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2126 2126 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2127 2127 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2128 2128 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2129 2129 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2130 2130 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2131 2131 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2132 2132 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2133 2133 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2134 2134 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2135 2135 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2136 2136 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2137 2137 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2138 2138 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2139 2139 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2140 2140 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2141 2141 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2142 2142 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2143 2143 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2144 2144 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2145 2145 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2146 2146 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2147 2147 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2148 2148 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2149 2149 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2150 2150 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2151 2151 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2152 2152 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2153 2153 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2154 2154 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2155 2155 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2156 2156 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2157 2157 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2158 2158 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2159 2159 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2160 2160 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2161 2161 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2162 2162 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2163 2163 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2164 2164 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2165 2165 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2166 2166 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2167 2167 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2168 2168 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2169 2169 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2170 2170 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2171 2171 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2172 2172 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2173 2173 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2174 2174 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2175 2175 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2176 2176 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2177 2177 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2178 2178 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2179 2179 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2180 2180 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2181 2181 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2182 2182 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2183 2183 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2184 2184 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2185 2185 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2186 2186 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2187 2187 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2188 2188 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2189 2189 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2190 2190 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2191 2191 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2192 2192 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2193 2193 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2194 2194 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2195 2195 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2196 2196 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2197 2197 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2198 2198 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2199 2199 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2200 2200 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2201 2201 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2202 2202 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2203 2203 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2204 2204 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2205 2205 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2206 2206 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2207 2207 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2208 2208 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2209 2209 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2210 2210 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2211 2211 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2212 2212 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2213 2213 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2214 2214 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2215 2215 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2216 2216 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2217 2217 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2218 2218 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2219 2219 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2220 2220 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2221 2221 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2222 2222 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2223 2223 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2224 2224 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2225 2225 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2226 2226 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2227 2227 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2228 2228 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2229 2229 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2230 2230 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2231 2231 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2232 2232 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2233 2233 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2234 2234 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2235 2235 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2236 2236 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2237 2237 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2238 2238 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2239 2239 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2240 2240 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2241 2241 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2242 2242 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2243 2243 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2244 2244 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2245 2245 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2246 2246 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2247 2247 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2248 2248 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2249 2249 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2250 2250 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2251 2251 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2252 2252 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2253 2253 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2254 2254 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2255 2255 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2256 2256 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2257 2257 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2258 2258 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2259 2259 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2260 2260 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2261 2261 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2262 2262 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2263 2263 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2264 2264 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2265 2265 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2266 2266 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2267 2267 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2268 2268 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2269 2269 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2270 2270 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2271 2271 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2272 2272 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2273 2273 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2274 2274 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2275 2275 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2276 2276 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2277 2277 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2278 2278 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2279 2279 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2280 2280 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2281 2281 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2282 2282 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2283 2283 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2284 2284 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2285 2285 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2286 2286 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2287 2287 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2288 2288 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2289 2289 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2290 2290 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2291 2291 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2292 2292 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2293 2293 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2294 2294 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2295 2295 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2296 2296 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2297 2297 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2298 2298 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2299 2299 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2300 2300 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2301 2301 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2302 2302 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2303 2303 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2304 2304 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2305 2305 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2306 2306 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2307 2307 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2308 2308 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2309 2309 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2310 2310 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2311 2311 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2312 2312 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2313 2313 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2314 2314 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2315 2315 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2316 2316 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2317 2317 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2318 2318 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2319 2319 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2320 2320 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2321 2321 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2322 2322 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2323 2323 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2324 2324 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2325 2325 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2326 2326 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2327 2327 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2328 2328 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2329 2329 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2330 2330 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2331 2331 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2332 2332 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2333 2333 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2334 2334 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2335 2335 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2336 2336 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2337 2337 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2338 2338 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2339 2339 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2340 2340 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2341 2341 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2342 2342 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2343 2343 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2344 2344 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2345 2345 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2346 2346 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2347 2347 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2348 2348 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2349 2349 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2350 2350 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2351 2351 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2352 2352 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2353 2353 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2354 2354 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2355 2355 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2356 2356 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2357 2357 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2358 2358 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2359 2359 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2360 2360 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2361 2361 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2362 2362 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2363 2363 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2364 2364 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2365 2365 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2366 2366 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2367 2367 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2368 2368 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2369 2369 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2370 2370 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2371 2371 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2372 2372 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2373 2373 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2374 2374 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2375 2375 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2376 2376 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2377 2377 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2378 2378 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2379 2379 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2380 2380 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2381 2381 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2382 2382 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2383 2383 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2384 2384 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2385 2385 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2386 2386 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2387 2387 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2388 2388 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2389 2389 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2390 2390 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2391 2391 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2392 2392 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2393 2393 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2394 2394 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2395 2395 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2396 2396 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2397 2397 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2398 2398 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2399 2399 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2400 2400 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2401 2401 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2402 2402 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2403 2403 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2404 2404 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2405 2405 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2406 2406 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2407 2407 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2408 2408 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2409 2409 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2410 2410 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2411 2411 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2412 2412 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2413 2413 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2414 2414 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2415 2415 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2416 2416 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2417 2417 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2418 2418 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2419 2419 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2420 2420 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2421 2421 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2422 2422 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2423 2423 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2424 2424 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2425 2425 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2426 2426 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2427 2427 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2428 2428 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2429 2429 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2430 2430 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2431 2431 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2432 2432 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2433 2433 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2434 2434 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2435 2435 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2436 2436 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2437 2437 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2438 2438 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2439 2439 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2440 2440 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2441 2441 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2442 2442 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2443 2443 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2444 2444 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2445 2445 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2446 2446 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2447 2447 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2448 2448 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2449 2449 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2450 2450 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2451 2451 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2452 2452 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2453 2453 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2454 2454 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2455 2455 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2456 2456 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2457 2457 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2458 2458 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2459 2459 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2460 2460 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2461 2461 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2462 2462 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2463 2463 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2464 2464 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2465 2465 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2466 2466 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2467 2467 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2468 2468 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2469 2469 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2470 2470 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2471 2471 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2472 2472 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2473 2473 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2474 2474 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2475 2475 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2476 2476 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2477 2477 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2478 2478 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2479 2479 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2480 2480 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2481 2481 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2482 2482 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2483 2483 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2484 2484 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2485 2485 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2486 2486 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2487 2487 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2488 2488 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2489 2489 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2490 2490 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2491 2491 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2492 2492 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2493 2493 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2494 2494 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2495 2495 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2496 2496 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2497 2497 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2498 2498 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2499 2499 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2500 2500 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2501 2501 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2502 2502 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2503 2503 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2504 2504 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2505 2505 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2506 2506 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2507 2507 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2508 2508 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2509 2509 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2510 2510 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2511 2511 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2512 2512 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2513 2513 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2514 2514 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2515 2515 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2516 2516 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2517 2517 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2518 2518 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2519 2519 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2520 2520 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2521 2521 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2522 2522 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2523 2523 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2524 2524 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2525 2525 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2526 2526 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2527 2527 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2528 2528 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2529 2529 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2530 2530 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2531 2531 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2532 2532 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2533 2533 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2534 2534 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2535 2535 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2536 2536 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2537 2537 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2538 2538 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2539 2539 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2540 2540 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2541 2541 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2542 2542 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2543 2543 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2544 2544 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2545 2545 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2546 2546 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2547 2547 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2548 2548 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2549 2549 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2550 2550 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2551 2551 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2552 2552 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2553 2553 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2554 2554 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2555 2555 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2556 2556 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2557 2557 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2558 2558 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2559 2559 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2560 2560 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2561 2561 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2562 2562 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2563 2563 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2564 2564 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2565 2565 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2566 2566 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2567 2567 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2568 2568 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2569 2569 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2570 2570 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2571 2571 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2572 2572 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2573 2573 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2574 2574 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2575 2575 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2576 2576 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2577 2577 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2578 2578 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2579 2579 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2580 2580 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2581 2581 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2582 2582 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2583 2583 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2584 2584 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2585 2585 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2586 2586 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2587 2587 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2588 2588 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2589 2589 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2590 2590 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2591 2591 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2592 2592 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2593 2593 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2594 2594 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2595 2595 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2596 2596 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2597 2597 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2598 2598 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2599 2599 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2600 2600 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2601 2601 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2602 2602 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2603 2603 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2604 2604 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2605 2605 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2606 2606 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2607 2607 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2608 2608 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2609 2609 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2610 2610 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2611 2611 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2612 2612 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2613 2613 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2614 2614 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2615 2615 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2616 2616 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2617 2617 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2618 2618 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2619 2619 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2620 2620 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2621 2621 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2622 2622 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2623 2623 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2624 2624 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2625 2625 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2626 2626 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2627 2627 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2628 2628 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2629 2629 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2630 2630 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2631 2631 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2632 2632 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2633 2633 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2634 2634 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2635 2635 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2636 2636 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2637 2637 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2638 2638 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2639 2639 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2640 2640 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2641 2641 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2642 2642 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2643 2643 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2644 2644 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2645 2645 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2646 2646 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2647 2647 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2648 2648 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2649 2649 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2650 2650 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2651 2651 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2652 2652 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2653 2653 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2654 2654 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2655 2655 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2656 2656 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2657 2657 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2658 2658 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2659 2659 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2660 2660 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2661 2661 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2662 2662 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2663 2663 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2664 2664 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2665 2665 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2666 2666 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2667 2667 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2668 2668 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2669 2669 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2670 2670 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2671 2671 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2672 2672 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2673 2673 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2674 2674 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2675 2675 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2676 2676 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2677 2677 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2678 2678 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2679 2679 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2680 2680 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2681 2681 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2682 2682 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2683 2683 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2684 2684 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2685 2685 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2686 2686 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2687 2687 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2688 2688 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2689 2689 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2690 2690 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2691 2691 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2692 2692 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2693 2693 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2694 2694 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2695 2695 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2696 2696 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2697 2697 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2698 2698 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2699 2699 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2700 2700 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2701 2701 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2702 2702 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2703 2703 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2704 2704 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2705 2705 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2706 2706 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2707 2707 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2708 2708 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2709 2709 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2710 2710 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2711 2711 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2712 2712 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2713 2713 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2714 2714 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2715 2715 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2716 2716 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2717 2717 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2718 2718 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2719 2719 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2720 2720 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2721 2721 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2722 2722 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2723 2723 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2724 2724 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2725 2725 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2726 2726 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2727 2727 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2728 2728 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2729 2729 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2730 2730 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2731 2731 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2732 2732 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2733 2733 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2734 2734 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2735 2735 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2736 2736 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2737 2737 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2738 2738 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2739 2739 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2740 2740 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2741 2741 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2742 2742 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2743 2743 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2744 2744 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2745 2745 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2746 2746 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2747 2747 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2748 2748 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2749 2749 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2750 2750 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2751 2751 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2752 2752 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2753 2753 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2754 2754 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2755 2755 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2756 2756 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2757 2757 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2758 2758 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2759 2759 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2760 2760 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2761 2761 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2762 2762 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2763 2763 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2764 2764 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2765 2765 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2766 2766 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2767 2767 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2768 2768 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2769 2769 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2770 2770 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2771 2771 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2772 2772 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2773 2773 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2774 2774 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2775 2775 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2776 2776 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2777 2777 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2778 2778 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2779 2779 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2780 2780 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2781 2781 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2782 2782 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2783 2783 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2784 2784 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2785 2785 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2786 2786 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2787 2787 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2788 2788 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2789 2789 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2790 2790 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2791 2791 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2792 2792 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2793 2793 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2794 2794 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2795 2795 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2796 2796 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2797 2797 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2798 2798 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2799 2799 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2800 2800 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2801 2801 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2802 2802 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2803 2803 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2804 2804 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2805 2805 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2806 2806 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2807 2807 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2808 2808 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2809 2809 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2810 2810 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2811 2811 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2812 2812 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2813 2813 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2814 2814 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2815 2815 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2816 2816 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2817 2817 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2818 2818 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2819 2819 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2820 2820 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2821 2821 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2822 2822 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2823 2823 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2824 2824 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2825 2825 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2826 2826 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2827 2827 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2828 2828 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2829 2829 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2830 2830 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2831 2831 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2832 2832 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2833 2833 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2834 2834 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2835 2835 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2836 2836 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2837 2837 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2838 2838 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2839 2839 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2840 2840 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2841 2841 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2842 2842 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2843 2843 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2844 2844 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2845 2845 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2846 2846 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2847 2847 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2848 2848 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2849 2849 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2850 2850 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2851 2851 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2852 2852 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2853 2853 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2854 2854 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2855 2855 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2856 2856 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2857 2857 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2858 2858 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2859 2859 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2860 2860 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2861 2861 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2862 2862 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2863 2863 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2864 2864 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2865 2865 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2866 2866 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2867 2867 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2868 2868 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2869 2869 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2870 2870 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2871 2871 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2872 2872 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2873 2873 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2874 2874 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2875 2875 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2876 2876 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2877 2877 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2878 2878 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2879 2879 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2880 2880 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2881 2881 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2882 2882 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2883 2883 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2884 2884 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2885 2885 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2886 2886 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2887 2887 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2888 2888 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2889 2889 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2890 2890 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2891 2891 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2892 2892 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2893 2893 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2894 2894 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2895 2895 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2896 2896 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2897 2897 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2898 2898 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2899 2899 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2900 2900 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2901 2901 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2902 2902 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2903 2903 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2904 2904 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2905 2905 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2906 2906 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2907 2907 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2908 2908 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2909 2909 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2910 2910 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2911 2911 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2912 2912 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2913 2913 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2914 2914 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2915 2915 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2916 2916 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2917 2917 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2918 2918 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2919 2919 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2920 2920 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2921 2921 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2922 2922 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2923 2923 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2924 2924 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2925 2925 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2926 2926 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2927 2927 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2928 2928 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2929 2929 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2930 2930 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2931 2931 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2932 2932 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2933 2933 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2934 2934 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2935 2935 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2936 2936 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2937 2937 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2938 2938 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2939 2939 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2940 2940 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2941 2941 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2942 2942 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2943 2943 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2944 2944 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2945 2945 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2946 2946 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2947 2947 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2948 2948 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2949 2949 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2950 2950 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2951 2951 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2952 2952 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2953 2953 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2954 2954 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2955 2955 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2956 2956 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2957 2957 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2958 2958 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2959 2959 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2960 2960 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2961 2961 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2962 2962 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2963 2963 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2964 2964 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2965 2965 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2966 2966 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2967 2967 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2968 2968 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2969 2969 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2970 2970 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2971 2971 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2972 2972 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2973 2973 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2974 2974 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2975 2975 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2976 2976 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2977 2977 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2978 2978 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2979 2979 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2980 2980 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2981 2981 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2982 2982 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2983 2983 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2984 2984 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2985 2985 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2986 2986 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2987 2987 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2988 2988 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2989 2989 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2990 2990 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2991 2991 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2992 2992 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2993 2993 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2994 2994 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2995 2995 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2996 2996 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2997 2997 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2998 2998 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2999 2999 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3000 3000 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3001 3001 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3002 3002 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3003 3003 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3004 3004 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3005 3005 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3006 3006 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3007 3007 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3008 3008 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3009 3009 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3010 3010 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3011 3011 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3012 3012 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3013 3013 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3014 3014 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3015 3015 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3016 3016 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3017 3017 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3018 3018 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3019 3019 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3020 3020 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3021 3021 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3022 3022 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3023 3023 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3024 3024 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3025 3025 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3026 3026 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3027 3027 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3028 3028 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3029 3029 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3030 3030 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3031 3031 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3032 3032 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3033 3033 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3034 3034 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3035 3035 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3036 3036 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3037 3037 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3038 3038 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3039 3039 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3040 3040 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3041 3041 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3042 3042 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3043 3043 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3044 3044 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3045 3045 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3046 3046 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3047 3047 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3048 3048 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3049 3049 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3050 3050 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3051 3051 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3052 3052 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3053 3053 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3054 3054 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3055 3055 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3056 3056 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3057 3057 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3058 3058 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3059 3059 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3060 3060 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3061 3061 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3062 3062 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3063 3063 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3064 3064 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3065 3065 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3066 3066 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3067 3067 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3068 3068 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3069 3069 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3070 3070 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3071 3071 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3072 3072 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3073 3073 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3074 3074 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3075 3075 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3076 3076 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3077 3077 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3078 3078 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3079 3079 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3080 3080 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3081 3081 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3082 3082 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3083 3083 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3084 3084 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3085 3085 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3086 3086 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3087 3087 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3088 3088 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3089 3089 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3090 3090 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3091 3091 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3092 3092 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3093 3093 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3094 3094 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3095 3095 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3096 3096 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3097 3097 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3098 3098 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3099 3099 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3100 3100 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3101 3101 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3102 3102 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3103 3103 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3104 3104 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3105 3105 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3106 3106 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3107 3107 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3108 3108 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3109 3109 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3110 3110 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3111 3111 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3112 3112 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3113 3113 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3114 3114 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3115 3115 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3116 3116 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3117 3117 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3118 3118 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3119 3119 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3120 3120 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3121 3121 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3122 3122 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3123 3123 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3124 3124 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3125 3125 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3126 3126 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3127 3127 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3128 3128 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3129 3129 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3130 3130 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3131 3131 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3132 3132 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3133 3133 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3134 3134 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3135 3135 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3136 3136 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3137 3137 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3138 3138 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3139 3139 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3140 3140 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3141 3141 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3142 3142 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3143 3143 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3144 3144 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3145 3145 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3146 3146 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3147 3147 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3148 3148 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3149 3149 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3150 3150 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3151 3151 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3152 3152 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3153 3153 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3154 3154 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3155 3155 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3156 3156 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3157 3157 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3158 3158 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3159 3159 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3160 3160 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3161 3161 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3162 3162 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3163 3163 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3164 3164 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3165 3165 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3166 3166 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3167 3167 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3168 3168 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3169 3169 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3170 3170 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3171 3171 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3172 3172 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3173 3173 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3174 3174 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3175 3175 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3176 3176 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3177 3177 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3178 3178 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3179 3179 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3180 3180 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3181 3181 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3182 3182 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3183 3183 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3184 3184 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3185 3185 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3186 3186 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3187 3187 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3188 3188 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3189 3189 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3190 3190 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3191 3191 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3192 3192 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3193 3193 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3194 3194 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3195 3195 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3196 3196 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3197 3197 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3198 3198 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3199 3199 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3200 3200 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3201 3201 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3202 3202 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3203 3203 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3204 3204 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3205 3205 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3206 3206 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3207 3207 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3208 3208 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3209 3209 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3210 3210 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3211 3211 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3212 3212 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3213 3213 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3214 3214 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3215 3215 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3216 3216 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3217 3217 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3218 3218 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3219 3219 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3220 3220 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3221 3221 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3222 3222 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3223 3223 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3224 3224 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3225 3225 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3226 3226 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3227 3227 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3228 3228 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3229 3229 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3230 3230 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3231 3231 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3232 3232 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3233 3233 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3234 3234 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3235 3235 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3236 3236 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3237 3237 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3238 3238 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3239 3239 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3240 3240 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3241 3241 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3242 3242 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3243 3243 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3244 3244 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3245 3245 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3246 3246 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3247 3247 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3248 3248 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3249 3249 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3250 3250 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3251 3251 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3252 3252 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3253 3253 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3254 3254 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3255 3255 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3256 3256 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3257 3257 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3258 3258 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3259 3259 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3260 3260 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3261 3261 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3262 3262 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3263 3263 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3264 3264 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3265 3265 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3266 3266 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3267 3267 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3268 3268 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3269 3269 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3270 3270 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3271 3271 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3272 3272 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3273 3273 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3274 3274 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3275 3275 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3276 3276 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3277 3277 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3278 3278 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3279 3279 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3280 3280 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3281 3281 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3282 3282 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3283 3283 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3284 3284 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3285 3285 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3286 3286 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3287 3287 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3288 3288 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3289 3289 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3290 3290 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3291 3291 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3292 3292 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3293 3293 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3294 3294 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3295 3295 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3296 3296 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3297 3297 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3298 3298 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3299 3299 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3300 3300 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3301 3301 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3302 3302 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3303 3303 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3304 3304 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3305 3305 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3306 3306 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3307 3307 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3308 3308 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3309 3309 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3310 3310 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3311 3311 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3312 3312 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3313 3313 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3314 3314 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3315 3315 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3316 3316 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3317 3317 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3318 3318 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3319 3319 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3320 3320 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3321 3321 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3322 3322 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3323 3323 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3324 3324 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3325 3325 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3326 3326 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3327 3327 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3328 3328 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3329 3329 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3330 3330 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3331 3331 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3332 3332 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3333 3333 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3334 3334 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3335 3335 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3336 3336 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3337 3337 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3338 3338 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3339 3339 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3340 3340 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3341 3341 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3342 3342 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3343 3343 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3344 3344 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3345 3345 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3346 3346 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3347 3347 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3348 3348 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3349 3349 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3350 3350 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3351 3351 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3352 3352 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3353 3353 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3354 3354 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3355 3355 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3356 3356 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3357 3357 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3358 3358 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3359 3359 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3360 3360 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3361 3361 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3362 3362 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3363 3363 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3364 3364 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3365 3365 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3366 3366 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3367 3367 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3368 3368 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3369 3369 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3370 3370 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3371 3371 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3372 3372 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3373 3373 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3374 3374 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3375 3375 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3376 3376 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3377 3377 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3378 3378 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3379 3379 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3380 3380 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3381 3381 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3382 3382 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3383 3383 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3384 3384 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3385 3385 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3386 3386 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3387 3387 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3388 3388 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3389 3389 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3390 3390 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3391 3391 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3392 3392 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3393 3393 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3394 3394 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3395 3395 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3396 3396 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3397 3397 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3398 3398 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3399 3399 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3400 3400 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3401 3401 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3402 3402 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3403 3403 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3404 3404 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3405 3405 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3406 3406 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3407 3407 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3408 3408 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3409 3409 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3410 3410 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3411 3411 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3412 3412 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3413 3413 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3414 3414 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3415 3415 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3416 3416 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3417 3417 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3418 3418 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3419 3419 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3420 3420 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3421 3421 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3422 3422 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3423 3423 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3424 3424 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3425 3425 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3426 3426 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3427 3427 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3428 3428 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3429 3429 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3430 3430 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3431 3431 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3432 3432 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3433 3433 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3434 3434 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3435 3435 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3436 3436 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3437 3437 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3438 3438 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3439 3439 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3440 3440 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3441 3441 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3442 3442 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3443 3443 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3444 3444 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3445 3445 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3446 3446 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3447 3447 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3448 3448 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3449 3449 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3450 3450 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3451 3451 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3452 3452 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3453 3453 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3454 3454 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3455 3455 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3456 3456 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3457 3457 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3458 3458 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3459 3459 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3460 3460 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3461 3461 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3462 3462 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3463 3463 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3464 3464 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3465 3465 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3466 3466 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3467 3467 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3468 3468 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3469 3469 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3470 3470 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3471 3471 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3472 3472 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3473 3473 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3474 3474 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3475 3475 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3476 3476 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3477 3477 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3478 3478 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3479 3479 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3480 3480 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3481 3481 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3482 3482 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3483 3483 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3484 3484 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3485 3485 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3486 3486 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3487 3487 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3488 3488 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3489 3489 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3490 3490 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3491 3491 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3492 3492 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3493 3493 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3494 3494 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3495 3495 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3496 3496 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3497 3497 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3498 3498 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3499 3499 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3500 3500 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3501 3501 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3502 3502 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3503 3503 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3504 3504 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3505 3505 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3506 3506 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3507 3507 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3508 3508 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3509 3509 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3510 3510 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3511 3511 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3512 3512 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3513 3513 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3514 3514 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3515 3515 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3516 3516 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3517 3517 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3518 3518 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3519 3519 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3520 3520 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3521 3521 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3522 3522 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3523 3523 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3524 3524 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3525 3525 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3526 3526 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3527 3527 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3528 3528 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3529 3529 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3530 3530 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3531 3531 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3532 3532 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3533 3533 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3534 3534 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3535 3535 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3536 3536 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3537 3537 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3538 3538 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3539 3539 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3540 3540 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3541 3541 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3542 3542 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3543 3543 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3544 3544 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3545 3545 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3546 3546 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3547 3547 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3548 3548 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3549 3549 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3550 3550 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3551 3551 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3552 3552 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3553 3553 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3554 3554 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3555 3555 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3556 3556 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3557 3557 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3558 3558 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3559 3559 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3560 3560 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3561 3561 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3562 3562 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3563 3563 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3564 3564 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3565 3565 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3566 3566 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3567 3567 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3568 3568 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3569 3569 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3570 3570 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3571 3571 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3572 3572 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3573 3573 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3574 3574 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3575 3575 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3576 3576 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3577 3577 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3578 3578 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3579 3579 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3580 3580 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3581 3581 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3582 3582 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3583 3583 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3584 3584 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3585 3585 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3586 3586 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3587 3587 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3588 3588 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3589 3589 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3590 3590 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3591 3591 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3592 3592 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3593 3593 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3594 3594 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3595 3595 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3596 3596 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3597 3597 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3598 3598 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3599 3599 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3600 3600 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3601 3601 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3602 3602 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3603 3603 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3604 3604 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3605 3605 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3606 3606 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3607 3607 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3608 3608 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3609 3609 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3610 3610 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3611 3611 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3612 3612 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3613 3613 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3614 3614 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3615 3615 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3616 3616 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3617 3617 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3618 3618 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3619 3619 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3620 3620 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3621 3621 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3622 3622 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3623 3623 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3624 3624 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3625 3625 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3626 3626 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3627 3627 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3628 3628 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3629 3629 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3630 3630 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3631 3631 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3632 3632 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3633 3633 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3634 3634 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3635 3635 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3636 3636 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3637 3637 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3638 3638 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3639 3639 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3640 3640 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3641 3641 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3642 3642 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3643 3643 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3644 3644 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3645 3645 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3646 3646 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3647 3647 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3648 3648 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3649 3649 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3650 3650 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3651 3651 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3652 3652 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3653 3653 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3654 3654 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3655 3655 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3656 3656 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3657 3657 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3658 3658 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3659 3659 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3660 3660 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3661 3661 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3662 3662 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3663 3663 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3664 3664 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3665 3665 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3666 3666 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3667 3667 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3668 3668 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3669 3669 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3670 3670 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3671 3671 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3672 3672 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3673 3673 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3674 3674 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3675 3675 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3676 3676 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3677 3677 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3678 3678 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3679 3679 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3680 3680 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3681 3681 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3682 3682 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3683 3683 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3684 3684 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3685 3685 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3686 3686 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3687 3687 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3688 3688 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3689 3689 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3690 3690 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3691 3691 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3692 3692 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3693 3693 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3694 3694 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3695 3695 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3696 3696 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3697 3697 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3698 3698 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3699 3699 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3700 3700 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3701 3701 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3702 3702 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3703 3703 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3704 3704 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3705 3705 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3706 3706 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3707 3707 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3708 3708 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3709 3709 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3710 3710 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3711 3711 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3712 3712 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3713 3713 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3714 3714 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3715 3715 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3716 3716 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3717 3717 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3718 3718 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3719 3719 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3720 3720 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3721 3721 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3722 3722 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3723 3723 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3724 3724 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3725 3725 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3726 3726 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3727 3727 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3728 3728 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3729 3729 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3730 3730 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3731 3731 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3732 3732 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3733 3733 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3734 3734 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3735 3735 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3736 3736 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3737 3737 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3738 3738 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3739 3739 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3740 3740 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3741 3741 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3742 3742 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3743 3743 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3744 3744 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3745 3745 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3746 3746 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3747 3747 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3748 3748 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3749 3749 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3750 3750 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3751 3751 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3752 3752 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3753 3753 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3754 3754 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3755 3755 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3756 3756 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3757 3757 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3758 3758 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3759 3759 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3760 3760 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3761 3761 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3762 3762 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3763 3763 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3764 3764 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3765 3765 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3766 3766 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3767 3767 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3768 3768 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3769 3769 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3770 3770 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3771 3771 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3772 3772 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3773 3773 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3774 3774 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3775 3775 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3776 3776 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3777 3777 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3778 3778 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3779 3779 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3780 3780 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3781 3781 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3782 3782 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3783 3783 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3784 3784 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3785 3785 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3786 3786 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3787 3787 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3788 3788 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3789 3789 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3790 3790 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3791 3791 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3792 3792 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3793 3793 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3794 3794 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3795 3795 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3796 3796 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3797 3797 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3798 3798 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3799 3799 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3800 3800 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3801 3801 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3802 3802 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3803 3803 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3804 3804 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3805 3805 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3806 3806 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3807 3807 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3808 3808 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3809 3809 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3810 3810 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3811 3811 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3812 3812 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3813 3813 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3814 3814 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3815 3815 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3816 3816 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3817 3817 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3818 3818 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3819 3819 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3820 3820 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3821 3821 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3822 3822 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3823 3823 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3824 3824 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3825 3825 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3826 3826 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3827 3827 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3828 3828 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3829 3829 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3830 3830 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3831 3831 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3832 3832 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3833 3833 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3834 3834 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3835 3835 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3836 3836 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3837 3837 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3838 3838 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3839 3839 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3840 3840 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3841 3841 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3842 3842 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3843 3843 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3844 3844 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3845 3845 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3846 3846 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3847 3847 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3848 3848 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3849 3849 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3850 3850 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3851 3851 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3852 3852 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3853 3853 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3854 3854 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3855 3855 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3856 3856 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3857 3857 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3858 3858 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3859 3859 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3860 3860 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3861 3861 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3862 3862 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3863 3863 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3864 3864 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3865 3865 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3866 3866 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3867 3867 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3868 3868 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3869 3869 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3870 3870 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3871 3871 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3872 3872 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3873 3873 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3874 3874 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3875 3875 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3876 3876 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3877 3877 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3878 3878 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3879 3879 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3880 3880 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3881 3881 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3882 3882 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3883 3883 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3884 3884 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3885 3885 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3886 3886 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3887 3887 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3888 3888 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3889 3889 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3890 3890 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3891 3891 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3892 3892 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3893 3893 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3894 3894 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3895 3895 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3896 3896 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3897 3897 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3898 3898 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3899 3899 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3900 3900 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3901 3901 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3902 3902 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3903 3903 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3904 3904 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3905 3905 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3906 3906 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3907 3907 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3908 3908 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3909 3909 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3910 3910 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3911 3911 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3912 3912 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3913 3913 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3914 3914 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3915 3915 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3916 3916 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3917 3917 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3918 3918 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3919 3919 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3920 3920 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3921 3921 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3922 3922 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3923 3923 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3924 3924 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3925 3925 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3926 3926 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3927 3927 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3928 3928 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3929 3929 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3930 3930 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3931 3931 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3932 3932 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3933 3933 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3934 3934 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3935 3935 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3936 3936 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3937 3937 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3938 3938 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3939 3939 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3940 3940 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3941 3941 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3942 3942 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3943 3943 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3944 3944 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3945 3945 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3946 3946 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3947 3947 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3948 3948 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3949 3949 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3950 3950 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3951 3951 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3952 3952 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3953 3953 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3954 3954 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3955 3955 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3956 3956 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3957 3957 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3958 3958 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3959 3959 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3960 3960 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3961 3961 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3962 3962 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3963 3963 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3964 3964 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3965 3965 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3966 3966 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3967 3967 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3968 3968 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3969 3969 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3970 3970 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3971 3971 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3972 3972 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3973 3973 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3974 3974 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3975 3975 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3976 3976 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3977 3977 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3978 3978 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3979 3979 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3980 3980 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3981 3981 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3982 3982 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3983 3983 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3984 3984 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3985 3985 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3986 3986 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3987 3987 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3988 3988 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3989 3989 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3990 3990 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3991 3991 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3992 3992 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3993 3993 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3994 3994 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3995 3995 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3996 3996 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3997 3997 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3998 3998 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3999 3999 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
##      Tamaño.Cte.Industria         Segmento.Det                Marca
## 1            Extra Grande         Agua Mineral      Topo Chico A.M.
## 2            Extra Grande      Agua Purificada Ciel Agua Purificada
## 3            Extra Grande      Agua Purificada Ciel Agua Purificada
## 4            Extra Grande      Agua Saborizada          Ciel Exprim
## 5            Extra Grande      Agua Saborizada            Ciel Mini
## 6            Extra Grande      Agua Saborizada      Ciel Saborizada
## 7            Extra Grande     Bebidas de Fruta       Delaware Punch
## 8            Extra Grande     Bebidas de Fruta       Delaware Punch
## 9            Extra Grande     Bebidas de Fruta               Frutsi
## 10           Extra Grande     Bebidas de Fruta                Pulpy
## 11           Extra Grande     Bebidas de Fruta           Valle Frut
## 12           Extra Grande     Bebidas de Fruta           Valle Frut
## 13           Extra Grande     Bebidas de Fruta           Valle Frut
## 14           Extra Grande     Bebidas de Fruta           Valle Frut
## 15           Extra Grande  Bebidas Energeticas                 Burn
## 16           Extra Grande          Colas Light      Coca-Cola Light
## 17           Extra Grande          Colas Light      Coca-Cola Light
## 18           Extra Grande          Colas Light      Coca-Cola Light
## 19           Extra Grande        Colas Regular            Coca-Cola
## 20           Extra Grande        Colas Regular            Coca-Cola
## 21           Extra Grande        Colas Regular            Coca-Cola
## 22           Extra Grande        Colas Regular            Coca-Cola
## 23           Extra Grande        Colas Regular            Coca-Cola
## 24           Extra Grande        Colas Regular            Coca-Cola
## 25           Extra Grande        Colas Regular            Coca-Cola
## 26           Extra Grande        Colas Regular            Coca-Cola
## 27           Extra Grande        Colas Regular            Coca-Cola
## 28           Extra Grande        Colas Regular            Coca-Cola
## 29           Extra Grande        Colas Regular            Coca-Cola
## 30           Extra Grande        Colas Regular            Coca-Cola
## 31           Extra Grande        Colas Regular            Coca-Cola
## 32           Extra Grande        Colas Regular            Coca-Cola
## 33           Extra Grande        Colas Regular            Coca-Cola
## 34           Extra Grande        Colas Regular            Coca-Cola
## 35           Extra Grande     Isotónicos Light        Powerade Zero
## 36           Extra Grande   Isotónicos Regular             Powerade
## 37           Extra Grande   Isotónicos Regular             Powerade
## 38           Extra Grande   Isotónicos Regular             Powerade
## 39           Extra Grande     Jugos y Néctares            Del Valle
## 40           Extra Grande     Jugos y Néctares            Del Valle
## 41           Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 42           Extra Grande     Jugos y Néctares    Del Valle Reserva
## 43           Extra Grande    Leche UHT Regular   Santa Clara Entera
## 44           Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 45           Extra Grande        Sabores Light          Sprite Zero
## 46           Extra Grande      Sabores Regular     Del Valle y Nada
## 47           Extra Grande      Sabores Regular                Fanta
## 48           Extra Grande      Sabores Regular                Fanta
## 49           Extra Grande      Sabores Regular                Fanta
## 50           Extra Grande      Sabores Regular                Fanta
## 51           Extra Grande      Sabores Regular                Fanta
## 52           Extra Grande      Sabores Regular                Fanta
## 53           Extra Grande      Sabores Regular                Fanta
## 54           Extra Grande      Sabores Regular                Fanta
## 55           Extra Grande      Sabores Regular               Fresca
## 56           Extra Grande      Sabores Regular               Fresca
## 57           Extra Grande      Sabores Regular               Fresca
## 58           Extra Grande      Sabores Regular               Fresca
## 59           Extra Grande      Sabores Regular               Fresca
## 60           Extra Grande      Sabores Regular               Fresca
## 61           Extra Grande      Sabores Regular               Fresca
## 62           Extra Grande      Sabores Regular         Manzana Lift
## 63           Extra Grande      Sabores Regular         Manzana Lift
## 64           Extra Grande      Sabores Regular         Manzana Lift
## 65           Extra Grande      Sabores Regular         Manzana Lift
## 66           Extra Grande      Sabores Regular         Manzana Lift
## 67           Extra Grande      Sabores Regular        Sidral Mundet
## 68           Extra Grande      Sabores Regular        Sidral Mundet
## 69           Extra Grande      Sabores Regular        Sidral Mundet
## 70           Extra Grande      Sabores Regular        Sidral Mundet
## 71           Extra Grande      Sabores Regular        Sidral Mundet
## 72           Extra Grande      Sabores Regular               Sprite
## 73           Extra Grande      Sabores Regular               Sprite
## 74           Extra Grande      Sabores Regular               Sprite
## 75           Extra Grande      Sabores Regular               Sprite
## 76           Extra Grande      Sabores Regular               Sprite
## 77           Extra Grande      Sabores Regular               Sprite
## 78           Extra Grande      Sabores Regular               Sprite
## 79           Extra Grande      Sabores Regular               Sprite
## 80           Extra Grande           Té Regular             Fuze Tea
## 81           Extra Grande           Té Regular             Fuze Tea
## 82           Extra Grande         Agua Mineral    Ciel Mineralizada
## 83           Extra Grande         Agua Mineral      Topo Chico A.M.
## 84           Extra Grande         Agua Mineral      Topo Chico A.M.
## 85           Extra Grande      Agua Purificada Ciel Agua Purificada
## 86           Extra Grande      Agua Purificada Ciel Agua Purificada
## 87           Extra Grande      Agua Purificada Ciel Agua Purificada
## 88           Extra Grande      Agua Purificada Ciel Agua Purificada
## 89           Extra Grande      Agua Saborizada          Ciel Exprim
## 90           Extra Grande      Agua Saborizada            Ciel Mini
## 91           Extra Grande     Bebidas de Fruta       Delaware Punch
## 92           Extra Grande     Bebidas de Fruta               Frutsi
## 93           Extra Grande     Bebidas de Fruta                Pulpy
## 94           Extra Grande     Bebidas de Fruta           Valle Frut
## 95           Extra Grande     Bebidas de Fruta           Valle Frut
## 96           Extra Grande     Bebidas de Fruta           Valle Frut
## 97           Extra Grande  Bebidas Energeticas                 Burn
## 98           Extra Grande  Bebidas Energeticas                 Burn
## 99           Extra Grande  Bebidas Energeticas              Glacéau
## 100          Extra Grande          Colas Light       Coca-Cola Life
## 101          Extra Grande          Colas Light       Coca-Cola Life
## 102          Extra Grande          Colas Light      Coca-Cola Light
## 103          Extra Grande          Colas Light      Coca-Cola Light
## 104          Extra Grande          Colas Light      Coca-Cola Light
## 105          Extra Grande          Colas Light      Coca-Cola Light
## 106          Extra Grande          Colas Light      Coca-Cola Light
## 107          Extra Grande          Colas Light      Coca-Cola Light
## 108          Extra Grande          Colas Light      Coca-Cola Light
## 109          Extra Grande          Colas Light       Coca-Cola Zero
## 110          Extra Grande          Colas Light       Coca-Cola Zero
## 111          Extra Grande        Colas Regular            Coca-Cola
## 112          Extra Grande        Colas Regular            Coca-Cola
## 113          Extra Grande        Colas Regular            Coca-Cola
## 114          Extra Grande        Colas Regular            Coca-Cola
## 115          Extra Grande        Colas Regular            Coca-Cola
## 116          Extra Grande        Colas Regular            Coca-Cola
## 117          Extra Grande        Colas Regular            Coca-Cola
## 118          Extra Grande        Colas Regular            Coca-Cola
## 119          Extra Grande        Colas Regular            Coca-Cola
## 120          Extra Grande        Colas Regular            Coca-Cola
## 121          Extra Grande        Colas Regular            Coca-Cola
## 122          Extra Grande        Colas Regular            Coca-Cola
## 123          Extra Grande        Colas Regular            Coca-Cola
## 124          Extra Grande        Colas Regular            Coca-Cola
## 125          Extra Grande        Colas Regular            Coca-Cola
## 126          Extra Grande   Isotónicos Regular             Powerade
## 127          Extra Grande   Isotónicos Regular             Powerade
## 128          Extra Grande   Isotónicos Regular             Powerade
## 129          Extra Grande     Jugos y Néctares            Del Valle
## 130          Extra Grande     Jugos y Néctares            Del Valle
## 131          Extra Grande     Jugos y Néctares            Del Valle
## 132          Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 133          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 134          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 135          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 136          Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 137          Extra Grande        Sabores Light          Sprite Zero
## 138          Extra Grande      Sabores Regular     Del Valle y Nada
## 139          Extra Grande      Sabores Regular                Fanta
## 140          Extra Grande      Sabores Regular                Fanta
## 141          Extra Grande      Sabores Regular                Fanta
## 142          Extra Grande      Sabores Regular                Fanta
## 143          Extra Grande      Sabores Regular                Fanta
## 144          Extra Grande      Sabores Regular                Fanta
## 145          Extra Grande      Sabores Regular                Fanta
## 146          Extra Grande      Sabores Regular               Fresca
## 147          Extra Grande      Sabores Regular               Fresca
## 148          Extra Grande      Sabores Regular               Fresca
## 149          Extra Grande      Sabores Regular               Fresca
## 150          Extra Grande      Sabores Regular               Fresca
## 151          Extra Grande      Sabores Regular               Fresca
## 152          Extra Grande      Sabores Regular         Manzana Lift
## 153          Extra Grande      Sabores Regular         Manzana Lift
## 154          Extra Grande      Sabores Regular         Manzana Lift
## 155          Extra Grande      Sabores Regular         Manzana Lift
## 156          Extra Grande      Sabores Regular         Manzana Lift
## 157          Extra Grande      Sabores Regular               Senzao
## 158          Extra Grande      Sabores Regular        Sidral Mundet
## 159          Extra Grande      Sabores Regular        Sidral Mundet
## 160          Extra Grande      Sabores Regular        Sidral Mundet
## 161          Extra Grande      Sabores Regular        Sidral Mundet
## 162          Extra Grande      Sabores Regular        Sidral Mundet
## 163          Extra Grande      Sabores Regular        Sidral Mundet
## 164          Extra Grande      Sabores Regular               Sprite
## 165          Extra Grande      Sabores Regular               Sprite
## 166          Extra Grande      Sabores Regular               Sprite
## 167          Extra Grande      Sabores Regular               Sprite
## 168          Extra Grande      Sabores Regular               Sprite
## 169          Extra Grande      Sabores Regular               Sprite
## 170          Extra Grande      Sabores Regular               Sprite
## 171          Extra Grande           Té Regular             Fuze Tea
## 172          Extra Grande           Té Regular             Fuze Tea
## 173          Extra Grande         Agua Mineral    Ciel Mineralizada
## 174          Extra Grande         Agua Mineral      Topo Chico A.M.
## 175          Extra Grande      Agua Purificada Ciel Agua Purificada
## 176          Extra Grande      Agua Purificada Ciel Agua Purificada
## 177          Extra Grande      Agua Purificada Ciel Agua Purificada
## 178          Extra Grande      Agua Purificada Ciel Agua Purificada
## 179          Extra Grande      Agua Purificada Ciel Agua Purificada
## 180          Extra Grande      Agua Saborizada          Ciel Exprim
## 181          Extra Grande      Agua Saborizada            Ciel Mini
## 182          Extra Grande      Agua Saborizada      Ciel Saborizada
## 183          Extra Grande      Agua Saborizada      Ciel Saborizada
## 184          Extra Grande     Bebidas de Fruta       Delaware Punch
## 185          Extra Grande     Bebidas de Fruta               Frutsi
## 186          Extra Grande     Bebidas de Fruta                Pulpy
## 187          Extra Grande     Bebidas de Fruta           Valle Frut
## 188          Extra Grande     Bebidas de Fruta           Valle Frut
## 189          Extra Grande     Bebidas de Fruta           Valle Frut
## 190          Extra Grande  Bebidas Energeticas                 Burn
## 191          Extra Grande  Bebidas Energeticas                 Burn
## 192          Extra Grande  Bebidas Energeticas              Glacéau
## 193          Extra Grande          Colas Light       Coca-Cola Life
## 194          Extra Grande          Colas Light       Coca-Cola Life
## 195          Extra Grande          Colas Light       Coca-Cola Life
## 196          Extra Grande          Colas Light       Coca-Cola Life
## 197          Extra Grande          Colas Light      Coca-Cola Light
## 198          Extra Grande          Colas Light      Coca-Cola Light
## 199          Extra Grande          Colas Light      Coca-Cola Light
## 200          Extra Grande          Colas Light      Coca-Cola Light
## 201          Extra Grande          Colas Light      Coca-Cola Light
## 202          Extra Grande          Colas Light      Coca-Cola Light
## 203          Extra Grande          Colas Light      Coca-Cola Light
## 204          Extra Grande          Colas Light      Coca-Cola Light
## 205          Extra Grande          Colas Light      Coca-Cola Light
## 206          Extra Grande          Colas Light      Coca-Cola Light
## 207          Extra Grande          Colas Light       Coca-Cola Zero
## 208          Extra Grande          Colas Light       Coca-Cola Zero
## 209          Extra Grande          Colas Light       Coca-Cola Zero
## 210          Extra Grande          Colas Light       Coca-Cola Zero
## 211          Extra Grande        Colas Regular            Coca-Cola
## 212          Extra Grande        Colas Regular            Coca-Cola
## 213          Extra Grande        Colas Regular            Coca-Cola
## 214          Extra Grande        Colas Regular            Coca-Cola
## 215          Extra Grande        Colas Regular            Coca-Cola
## 216          Extra Grande        Colas Regular            Coca-Cola
## 217          Extra Grande        Colas Regular            Coca-Cola
## 218          Extra Grande        Colas Regular            Coca-Cola
## 219          Extra Grande        Colas Regular            Coca-Cola
## 220          Extra Grande        Colas Regular            Coca-Cola
## 221          Extra Grande        Colas Regular            Coca-Cola
## 222          Extra Grande        Colas Regular            Coca-Cola
## 223          Extra Grande        Colas Regular            Coca-Cola
## 224          Extra Grande        Colas Regular            Coca-Cola
## 225          Extra Grande        Colas Regular            Coca-Cola
## 226          Extra Grande        Colas Regular            Coca-Cola
## 227          Extra Grande        Colas Regular            Coca-Cola
## 228          Extra Grande        Colas Regular            Coca-Cola
## 229          Extra Grande   Isotónicos Regular             Powerade
## 230          Extra Grande   Isotónicos Regular             Powerade
## 231          Extra Grande   Isotónicos Regular             Powerade
## 232          Extra Grande     Jugos y Néctares            Del Valle
## 233          Extra Grande     Jugos y Néctares            Del Valle
## 234          Extra Grande     Jugos y Néctares            Del Valle
## 235          Extra Grande     Jugos y Néctares            Del Valle
## 236          Extra Grande     Jugos y Néctares            Del Valle
## 237          Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 238          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 239          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 240          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 241          Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 242          Extra Grande        Sabores Light          Sprite Zero
## 243          Extra Grande      Sabores Regular     Del Valle y Nada
## 244          Extra Grande      Sabores Regular     Del Valle y Nada
## 245          Extra Grande      Sabores Regular                Fanta
## 246          Extra Grande      Sabores Regular                Fanta
## 247          Extra Grande      Sabores Regular                Fanta
## 248          Extra Grande      Sabores Regular                Fanta
## 249          Extra Grande      Sabores Regular                Fanta
## 250          Extra Grande      Sabores Regular                Fanta
## 251          Extra Grande      Sabores Regular                Fanta
## 252          Extra Grande      Sabores Regular               Fresca
## 253          Extra Grande      Sabores Regular               Fresca
## 254          Extra Grande      Sabores Regular               Fresca
## 255          Extra Grande      Sabores Regular               Fresca
## 256          Extra Grande      Sabores Regular               Fresca
## 257          Extra Grande      Sabores Regular               Fresca
## 258          Extra Grande      Sabores Regular         Manzana Lift
## 259          Extra Grande      Sabores Regular         Manzana Lift
## 260          Extra Grande      Sabores Regular         Manzana Lift
## 261          Extra Grande      Sabores Regular         Manzana Lift
## 262          Extra Grande      Sabores Regular         Manzana Lift
## 263          Extra Grande      Sabores Regular               Senzao
## 264          Extra Grande      Sabores Regular        Sidral Mundet
## 265          Extra Grande      Sabores Regular        Sidral Mundet
## 266          Extra Grande      Sabores Regular        Sidral Mundet
## 267          Extra Grande      Sabores Regular        Sidral Mundet
## 268          Extra Grande      Sabores Regular        Sidral Mundet
## 269          Extra Grande      Sabores Regular               Sprite
## 270          Extra Grande      Sabores Regular               Sprite
## 271          Extra Grande      Sabores Regular               Sprite
## 272          Extra Grande      Sabores Regular               Sprite
## 273          Extra Grande      Sabores Regular               Sprite
## 274          Extra Grande      Sabores Regular               Sprite
## 275          Extra Grande      Sabores Regular               Sprite
## 276          Extra Grande           Té Regular             Fuze Tea
## 277          Extra Grande           Té Regular             Fuze Tea
## 278          Extra Grande           Té Regular             Fuze Tea
## 279          Extra Grande         Agua Mineral    Ciel Mineralizada
## 280          Extra Grande         Agua Mineral    Ciel Mineralizada
## 281          Extra Grande         Agua Mineral      Topo Chico A.M.
## 282          Extra Grande         Agua Mineral      Topo Chico A.M.
## 283          Extra Grande      Agua Purificada Ciel Agua Purificada
## 284          Extra Grande      Agua Purificada Ciel Agua Purificada
## 285          Extra Grande      Agua Purificada Ciel Agua Purificada
## 286          Extra Grande      Agua Purificada Ciel Agua Purificada
## 287          Extra Grande      Agua Purificada Ciel Agua Purificada
## 288          Extra Grande      Agua Saborizada          Ciel Exprim
## 289          Extra Grande      Agua Saborizada          Ciel Exprim
## 290          Extra Grande      Agua Saborizada          Ciel Exprim
## 291          Extra Grande      Agua Saborizada            Ciel Mini
## 292          Extra Grande      Agua Saborizada      Ciel Saborizada
## 293          Extra Grande      Agua Saborizada      Ciel Saborizada
## 294          Extra Grande      Agua Saborizada      Ciel Saborizada
## 295          Extra Grande     Bebidas de Fruta       Delaware Punch
## 296          Extra Grande     Bebidas de Fruta       Delaware Punch
## 297          Extra Grande     Bebidas de Fruta               Frutsi
## 298          Extra Grande     Bebidas de Fruta                Pulpy
## 299          Extra Grande     Bebidas de Fruta           Valle Frut
## 300          Extra Grande     Bebidas de Fruta           Valle Frut
## 301          Extra Grande     Bebidas de Fruta           Valle Frut
## 302          Extra Grande     Bebidas de Fruta           Valle Frut
## 303          Extra Grande     Bebidas de Fruta           Valle Frut
## 304          Extra Grande  Bebidas Energeticas                 Burn
## 305          Extra Grande  Bebidas Energeticas                 Burn
## 306          Extra Grande  Bebidas Energeticas              Glacéau
## 307          Extra Grande          Colas Light       Coca-Cola Life
## 308          Extra Grande          Colas Light       Coca-Cola Life
## 309          Extra Grande          Colas Light       Coca-Cola Life
## 310          Extra Grande          Colas Light      Coca-Cola Light
## 311          Extra Grande          Colas Light      Coca-Cola Light
## 312          Extra Grande          Colas Light      Coca-Cola Light
## 313          Extra Grande          Colas Light      Coca-Cola Light
## 314          Extra Grande          Colas Light      Coca-Cola Light
## 315          Extra Grande          Colas Light      Coca-Cola Light
## 316          Extra Grande          Colas Light       Coca-Cola Zero
## 317          Extra Grande          Colas Light       Coca-Cola Zero
## 318          Extra Grande        Colas Regular            Coca-Cola
## 319          Extra Grande        Colas Regular            Coca-Cola
## 320          Extra Grande        Colas Regular            Coca-Cola
## 321          Extra Grande        Colas Regular            Coca-Cola
## 322          Extra Grande        Colas Regular            Coca-Cola
## 323          Extra Grande        Colas Regular            Coca-Cola
## 324          Extra Grande        Colas Regular            Coca-Cola
## 325          Extra Grande        Colas Regular            Coca-Cola
## 326          Extra Grande        Colas Regular            Coca-Cola
## 327          Extra Grande        Colas Regular            Coca-Cola
## 328          Extra Grande        Colas Regular            Coca-Cola
## 329          Extra Grande        Colas Regular            Coca-Cola
## 330          Extra Grande        Colas Regular            Coca-Cola
## 331          Extra Grande        Colas Regular            Coca-Cola
## 332          Extra Grande        Colas Regular            Coca-Cola
## 333          Extra Grande        Colas Regular            Coca-Cola
## 334          Extra Grande        Colas Regular            Coca-Cola
## 335          Extra Grande     Isotónicos Light        Powerade Zero
## 336          Extra Grande   Isotónicos Regular             Powerade
## 337          Extra Grande   Isotónicos Regular             Powerade
## 338          Extra Grande   Isotónicos Regular             Powerade
## 339          Extra Grande     Jugos y Néctares            Del Valle
## 340          Extra Grande     Jugos y Néctares            Del Valle
## 341          Extra Grande     Jugos y Néctares            Del Valle
## 342          Extra Grande     Jugos y Néctares            Del Valle
## 343          Extra Grande     Jugos y Néctares            Del Valle
## 344          Extra Grande     Jugos y Néctares            Del Valle
## 345          Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 346          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 347          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 348          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 349          Extra Grande    Leche UHT Regular   Santa Clara Entera
## 350          Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 351          Extra Grande        Sabores Light          Sprite Zero
## 352          Extra Grande      Sabores Regular     Del Valle y Nada
## 353          Extra Grande      Sabores Regular     Del Valle y Nada
## 354          Extra Grande      Sabores Regular     Del Valle y Nada
## 355          Extra Grande      Sabores Regular                Fanta
## 356          Extra Grande      Sabores Regular                Fanta
## 357          Extra Grande      Sabores Regular                Fanta
## 358          Extra Grande      Sabores Regular                Fanta
## 359          Extra Grande      Sabores Regular                Fanta
## 360          Extra Grande      Sabores Regular                Fanta
## 361          Extra Grande      Sabores Regular                Fanta
## 362          Extra Grande      Sabores Regular                Fanta
## 363          Extra Grande      Sabores Regular                Fanta
## 364          Extra Grande      Sabores Regular               Fresca
## 365          Extra Grande      Sabores Regular               Fresca
## 366          Extra Grande      Sabores Regular               Fresca
## 367          Extra Grande      Sabores Regular               Fresca
## 368          Extra Grande      Sabores Regular               Fresca
## 369          Extra Grande      Sabores Regular               Fresca
## 370          Extra Grande      Sabores Regular               Fresca
## 371          Extra Grande      Sabores Regular         Manzana Lift
## 372          Extra Grande      Sabores Regular         Manzana Lift
## 373          Extra Grande      Sabores Regular         Manzana Lift
## 374          Extra Grande      Sabores Regular         Manzana Lift
## 375          Extra Grande      Sabores Regular         Manzana Lift
## 376          Extra Grande      Sabores Regular         Manzana Lift
## 377          Extra Grande      Sabores Regular         Manzana Lift
## 378          Extra Grande      Sabores Regular         Manzana Lift
## 379          Extra Grande      Sabores Regular               Senzao
## 380          Extra Grande      Sabores Regular        Sidral Mundet
## 381          Extra Grande      Sabores Regular        Sidral Mundet
## 382          Extra Grande      Sabores Regular        Sidral Mundet
## 383          Extra Grande      Sabores Regular        Sidral Mundet
## 384          Extra Grande      Sabores Regular        Sidral Mundet
## 385          Extra Grande      Sabores Regular        Sidral Mundet
## 386          Extra Grande      Sabores Regular               Sprite
## 387          Extra Grande      Sabores Regular               Sprite
## 388          Extra Grande      Sabores Regular               Sprite
## 389          Extra Grande      Sabores Regular               Sprite
## 390          Extra Grande      Sabores Regular               Sprite
## 391          Extra Grande      Sabores Regular               Sprite
## 392          Extra Grande      Sabores Regular               Sprite
## 393          Extra Grande      Sabores Regular               Sprite
## 394          Extra Grande      Sabores Regular               Sprite
## 395          Extra Grande      Sabores Regular               Sprite
## 396          Extra Grande      Sabores Regular               Sprite
## 397          Extra Grande      Sabores Regular               Sprite
## 398          Extra Grande           Té Regular             Fuze Tea
## 399          Extra Grande           Té Regular             Fuze Tea
## 400          Extra Grande           Té Regular             Fuze Tea
## 401          Extra Grande           Té Regular             Fuze Tea
## 402          Extra Grande         Agua Mineral    Ciel Mineralizada
## 403          Extra Grande         Agua Mineral      Topo Chico A.M.
## 404          Extra Grande         Agua Mineral      Topo Chico A.M.
## 405          Extra Grande      Agua Purificada Ciel Agua Purificada
## 406          Extra Grande      Agua Purificada Ciel Agua Purificada
## 407          Extra Grande      Agua Purificada Ciel Agua Purificada
## 408          Extra Grande      Agua Saborizada          Ciel Exprim
## 409          Extra Grande      Agua Saborizada            Ciel Mini
## 410          Extra Grande      Agua Saborizada      Ciel Saborizada
## 411          Extra Grande     Bebidas de Fruta       Delaware Punch
## 412          Extra Grande     Bebidas de Fruta       Delaware Punch
## 413          Extra Grande     Bebidas de Fruta       Delaware Punch
## 414          Extra Grande     Bebidas de Fruta               Frutsi
## 415          Extra Grande     Bebidas de Fruta                Pulpy
## 416          Extra Grande     Bebidas de Fruta           Valle Frut
## 417          Extra Grande     Bebidas de Fruta           Valle Frut
## 418          Extra Grande     Bebidas de Fruta           Valle Frut
## 419          Extra Grande     Bebidas de Fruta           Valle Frut
## 420          Extra Grande     Bebidas de Fruta           Valle Frut
## 421          Extra Grande  Bebidas Energeticas                 Burn
## 422          Extra Grande  Bebidas Energeticas                 Burn
## 423          Extra Grande  Bebidas Energeticas                 Burn
## 424          Extra Grande  Bebidas Energeticas              Glacéau
## 425          Extra Grande          Colas Light       Coca-Cola Life
## 426          Extra Grande          Colas Light      Coca-Cola Light
## 427          Extra Grande          Colas Light      Coca-Cola Light
## 428          Extra Grande          Colas Light      Coca-Cola Light
## 429          Extra Grande          Colas Light      Coca-Cola Light
## 430          Extra Grande          Colas Light      Coca-Cola Light
## 431          Extra Grande          Colas Light      Coca-Cola Light
## 432          Extra Grande          Colas Light       Coca-Cola Zero
## 433          Extra Grande          Colas Light       Coca-Cola Zero
## 434          Extra Grande          Colas Light       Coca-Cola Zero
## 435          Extra Grande          Colas Light       Coca-Cola Zero
## 436          Extra Grande        Colas Regular            Coca-Cola
## 437          Extra Grande        Colas Regular            Coca-Cola
## 438          Extra Grande        Colas Regular            Coca-Cola
## 439          Extra Grande        Colas Regular            Coca-Cola
## 440          Extra Grande        Colas Regular            Coca-Cola
## 441          Extra Grande        Colas Regular            Coca-Cola
## 442          Extra Grande        Colas Regular            Coca-Cola
## 443          Extra Grande        Colas Regular            Coca-Cola
## 444          Extra Grande        Colas Regular            Coca-Cola
## 445          Extra Grande        Colas Regular            Coca-Cola
## 446          Extra Grande        Colas Regular            Coca-Cola
## 447          Extra Grande        Colas Regular            Coca-Cola
## 448          Extra Grande        Colas Regular            Coca-Cola
## 449          Extra Grande        Colas Regular            Coca-Cola
## 450          Extra Grande        Colas Regular            Coca-Cola
## 451          Extra Grande        Colas Regular            Coca-Cola
## 452          Extra Grande        Colas Regular            Coca-Cola
## 453          Extra Grande     Isotónicos Light        Powerade Zero
## 454          Extra Grande   Isotónicos Regular             Powerade
## 455          Extra Grande   Isotónicos Regular             Powerade
## 456          Extra Grande   Isotónicos Regular             Powerade
## 457          Extra Grande     Jugos y Néctares            Del Valle
## 458          Extra Grande     Jugos y Néctares            Del Valle
## 459          Extra Grande     Jugos y Néctares            Del Valle
## 460          Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 461          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 462          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 463          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 464          Extra Grande    Leche UHT Regular    Santa Clara Light
## 465          Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 466          Extra Grande        Sabores Light          Sprite Zero
## 467          Extra Grande      Sabores Regular     Del Valle y Nada
## 468          Extra Grande      Sabores Regular     Del Valle y Nada
## 469          Extra Grande      Sabores Regular                Fanta
## 470          Extra Grande      Sabores Regular                Fanta
## 471          Extra Grande      Sabores Regular                Fanta
## 472          Extra Grande      Sabores Regular                Fanta
## 473          Extra Grande      Sabores Regular                Fanta
## 474          Extra Grande      Sabores Regular                Fanta
## 475          Extra Grande      Sabores Regular                Fanta
## 476          Extra Grande      Sabores Regular                Fanta
## 477          Extra Grande      Sabores Regular                Fanta
## 478          Extra Grande      Sabores Regular               Fresca
## 479          Extra Grande      Sabores Regular               Fresca
## 480          Extra Grande      Sabores Regular               Fresca
## 481          Extra Grande      Sabores Regular               Fresca
## 482          Extra Grande      Sabores Regular               Fresca
## 483          Extra Grande      Sabores Regular               Fresca
## 484          Extra Grande      Sabores Regular               Fresca
## 485          Extra Grande      Sabores Regular               Fresca
## 486          Extra Grande      Sabores Regular               Fresca
## 487          Extra Grande      Sabores Regular         Manzana Lift
## 488          Extra Grande      Sabores Regular         Manzana Lift
## 489          Extra Grande      Sabores Regular         Manzana Lift
## 490          Extra Grande      Sabores Regular         Manzana Lift
## 491          Extra Grande      Sabores Regular         Manzana Lift
## 492          Extra Grande      Sabores Regular         Manzana Lift
## 493          Extra Grande      Sabores Regular         Manzana Lift
## 494          Extra Grande      Sabores Regular               Senzao
## 495          Extra Grande      Sabores Regular               Senzao
## 496          Extra Grande      Sabores Regular        Sidral Mundet
## 497          Extra Grande      Sabores Regular        Sidral Mundet
## 498          Extra Grande      Sabores Regular        Sidral Mundet
## 499          Extra Grande      Sabores Regular        Sidral Mundet
## 500          Extra Grande      Sabores Regular        Sidral Mundet
## 501          Extra Grande      Sabores Regular        Sidral Mundet
## 502          Extra Grande      Sabores Regular        Sidral Mundet
## 503          Extra Grande      Sabores Regular               Sprite
## 504          Extra Grande      Sabores Regular               Sprite
## 505          Extra Grande      Sabores Regular               Sprite
## 506          Extra Grande      Sabores Regular               Sprite
## 507          Extra Grande      Sabores Regular               Sprite
## 508          Extra Grande      Sabores Regular               Sprite
## 509          Extra Grande      Sabores Regular               Sprite
## 510          Extra Grande      Sabores Regular               Sprite
## 511          Extra Grande      Sabores Regular               Sprite
## 512          Extra Grande      Sabores Regular               Sprite
## 513          Extra Grande             Té Light       Fuze Tea Light
## 514          Extra Grande           Té Regular             Fuze Tea
## 515          Extra Grande         Agua Mineral    Ciel Mineralizada
## 516          Extra Grande         Agua Mineral    Ciel Mineralizada
## 517          Extra Grande         Agua Mineral      Topo Chico A.M.
## 518          Extra Grande      Agua Purificada Ciel Agua Purificada
## 519          Extra Grande      Agua Purificada Ciel Agua Purificada
## 520          Extra Grande      Agua Purificada Ciel Agua Purificada
## 521          Extra Grande      Agua Purificada Ciel Agua Purificada
## 522          Extra Grande      Agua Purificada Ciel Agua Purificada
## 523          Extra Grande      Agua Saborizada          Ciel Exprim
## 524          Extra Grande      Agua Saborizada            Ciel Mini
## 525          Extra Grande      Agua Saborizada      Ciel Saborizada
## 526          Extra Grande     Bebidas de Fruta       Delaware Punch
## 527          Extra Grande     Bebidas de Fruta       Delaware Punch
## 528          Extra Grande     Bebidas de Fruta               Frutsi
## 529          Extra Grande     Bebidas de Fruta                Pulpy
## 530          Extra Grande     Bebidas de Fruta           Valle Frut
## 531          Extra Grande     Bebidas de Fruta           Valle Frut
## 532          Extra Grande     Bebidas de Fruta           Valle Frut
## 533          Extra Grande     Bebidas de Fruta           Valle Frut
## 534          Extra Grande     Bebidas de Fruta           Valle Frut
## 535          Extra Grande  Bebidas Energeticas                 Burn
## 536          Extra Grande  Bebidas Energeticas                 Burn
## 537          Extra Grande  Bebidas Energeticas              Glacéau
## 538          Extra Grande          Colas Light       Coca-Cola Life
## 539          Extra Grande          Colas Light       Coca-Cola Life
## 540          Extra Grande          Colas Light       Coca-Cola Life
## 541          Extra Grande          Colas Light      Coca-Cola Light
## 542          Extra Grande          Colas Light      Coca-Cola Light
## 543          Extra Grande          Colas Light      Coca-Cola Light
## 544          Extra Grande          Colas Light      Coca-Cola Light
## 545          Extra Grande          Colas Light      Coca-Cola Light
## 546          Extra Grande          Colas Light      Coca-Cola Light
## 547          Extra Grande          Colas Light      Coca-Cola Light
## 548          Extra Grande          Colas Light      Coca-Cola Light
## 549          Extra Grande          Colas Light       Coca-Cola Zero
## 550          Extra Grande          Colas Light       Coca-Cola Zero
## 551          Extra Grande          Colas Light       Coca-Cola Zero
## 552          Extra Grande          Colas Light       Coca-Cola Zero
## 553          Extra Grande        Colas Regular            Coca-Cola
## 554          Extra Grande        Colas Regular            Coca-Cola
## 555          Extra Grande        Colas Regular            Coca-Cola
## 556          Extra Grande        Colas Regular            Coca-Cola
## 557          Extra Grande        Colas Regular            Coca-Cola
## 558          Extra Grande        Colas Regular            Coca-Cola
## 559          Extra Grande        Colas Regular            Coca-Cola
## 560          Extra Grande        Colas Regular            Coca-Cola
## 561          Extra Grande        Colas Regular            Coca-Cola
## 562          Extra Grande        Colas Regular            Coca-Cola
## 563          Extra Grande        Colas Regular            Coca-Cola
## 564          Extra Grande        Colas Regular            Coca-Cola
## 565          Extra Grande        Colas Regular            Coca-Cola
## 566          Extra Grande        Colas Regular            Coca-Cola
## 567          Extra Grande        Colas Regular            Coca-Cola
## 568          Extra Grande        Colas Regular            Coca-Cola
## 569          Extra Grande        Colas Regular            Coca-Cola
## 570          Extra Grande   Isotónicos Regular             Powerade
## 571          Extra Grande   Isotónicos Regular             Powerade
## 572          Extra Grande   Isotónicos Regular             Powerade
## 573          Extra Grande     Jugos y Néctares            Del Valle
## 574          Extra Grande     Jugos y Néctares            Del Valle
## 575          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 576          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 577          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 578          Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 579          Extra Grande        Sabores Light          Sprite Zero
## 580          Extra Grande      Sabores Regular     Del Valle y Nada
## 581          Extra Grande      Sabores Regular     Del Valle y Nada
## 582          Extra Grande      Sabores Regular                Fanta
## 583          Extra Grande      Sabores Regular                Fanta
## 584          Extra Grande      Sabores Regular                Fanta
## 585          Extra Grande      Sabores Regular                Fanta
## 586          Extra Grande      Sabores Regular                Fanta
## 587          Extra Grande      Sabores Regular                Fanta
## 588          Extra Grande      Sabores Regular                Fanta
## 589          Extra Grande      Sabores Regular                Fanta
## 590          Extra Grande      Sabores Regular                Fanta
## 591          Extra Grande      Sabores Regular               Fresca
## 592          Extra Grande      Sabores Regular               Fresca
## 593          Extra Grande      Sabores Regular               Fresca
## 594          Extra Grande      Sabores Regular               Fresca
## 595          Extra Grande      Sabores Regular               Fresca
## 596          Extra Grande      Sabores Regular               Fresca
## 597          Extra Grande      Sabores Regular               Fresca
## 598          Extra Grande      Sabores Regular         Manzana Lift
## 599          Extra Grande      Sabores Regular         Manzana Lift
## 600          Extra Grande      Sabores Regular         Manzana Lift
## 601          Extra Grande      Sabores Regular         Manzana Lift
## 602          Extra Grande      Sabores Regular         Manzana Lift
## 603          Extra Grande      Sabores Regular         Manzana Lift
## 604          Extra Grande      Sabores Regular               Senzao
## 605          Extra Grande      Sabores Regular        Sidral Mundet
## 606          Extra Grande      Sabores Regular        Sidral Mundet
## 607          Extra Grande      Sabores Regular        Sidral Mundet
## 608          Extra Grande      Sabores Regular        Sidral Mundet
## 609          Extra Grande      Sabores Regular        Sidral Mundet
## 610          Extra Grande      Sabores Regular        Sidral Mundet
## 611          Extra Grande      Sabores Regular               Sprite
## 612          Extra Grande      Sabores Regular               Sprite
## 613          Extra Grande      Sabores Regular               Sprite
## 614          Extra Grande      Sabores Regular               Sprite
## 615          Extra Grande      Sabores Regular               Sprite
## 616          Extra Grande      Sabores Regular               Sprite
## 617          Extra Grande      Sabores Regular               Sprite
## 618          Extra Grande      Sabores Regular               Sprite
## 619          Extra Grande      Sabores Regular               Sprite
## 620          Extra Grande           Té Regular             Fuze Tea
## 621          Extra Grande           Té Regular             Fuze Tea
## 622          Extra Grande           Té Regular             Fuze Tea
## 623          Extra Grande           Té Regular             Fuze Tea
## 624          Extra Grande         Agua Mineral    Ciel Mineralizada
## 625          Extra Grande         Agua Mineral      Topo Chico A.M.
## 626          Extra Grande      Agua Purificada Ciel Agua Purificada
## 627          Extra Grande      Agua Purificada Ciel Agua Purificada
## 628          Extra Grande      Agua Purificada Ciel Agua Purificada
## 629          Extra Grande      Agua Purificada Ciel Agua Purificada
## 630          Extra Grande      Agua Saborizada          Ciel Exprim
## 631          Extra Grande      Agua Saborizada            Ciel Mini
## 632          Extra Grande     Bebidas de Fruta       Delaware Punch
## 633          Extra Grande     Bebidas de Fruta               Frutsi
## 634          Extra Grande     Bebidas de Fruta                Pulpy
## 635          Extra Grande     Bebidas de Fruta           Valle Frut
## 636          Extra Grande     Bebidas de Fruta           Valle Frut
## 637          Extra Grande     Bebidas de Fruta           Valle Frut
## 638          Extra Grande     Bebidas de Fruta           Valle Frut
## 639          Extra Grande     Bebidas de Fruta           Valle Frut
## 640          Extra Grande  Bebidas Energeticas                 Burn
## 641          Extra Grande  Bebidas Energeticas                 Burn
## 642          Extra Grande  Bebidas Energeticas              Glacéau
## 643          Extra Grande          Colas Light       Coca-Cola Life
## 644          Extra Grande          Colas Light       Coca-Cola Life
## 645          Extra Grande          Colas Light       Coca-Cola Life
## 646          Extra Grande          Colas Light      Coca-Cola Light
## 647          Extra Grande          Colas Light      Coca-Cola Light
## 648          Extra Grande          Colas Light      Coca-Cola Light
## 649          Extra Grande          Colas Light      Coca-Cola Light
## 650          Extra Grande          Colas Light      Coca-Cola Light
## 651          Extra Grande          Colas Light      Coca-Cola Light
## 652          Extra Grande          Colas Light      Coca-Cola Light
## 653          Extra Grande          Colas Light      Coca-Cola Light
## 654          Extra Grande          Colas Light  Coca-Cola Light Sin
## 655          Extra Grande          Colas Light       Coca-Cola Zero
## 656          Extra Grande          Colas Light       Coca-Cola Zero
## 657          Extra Grande          Colas Light       Coca-Cola Zero
## 658          Extra Grande          Colas Light       Coca-Cola Zero
## 659          Extra Grande        Colas Regular            Coca-Cola
## 660          Extra Grande        Colas Regular            Coca-Cola
## 661          Extra Grande        Colas Regular            Coca-Cola
## 662          Extra Grande        Colas Regular            Coca-Cola
## 663          Extra Grande        Colas Regular            Coca-Cola
## 664          Extra Grande        Colas Regular            Coca-Cola
## 665          Extra Grande        Colas Regular            Coca-Cola
## 666          Extra Grande        Colas Regular            Coca-Cola
## 667          Extra Grande        Colas Regular            Coca-Cola
## 668          Extra Grande        Colas Regular            Coca-Cola
## 669          Extra Grande        Colas Regular            Coca-Cola
## 670          Extra Grande        Colas Regular            Coca-Cola
## 671          Extra Grande        Colas Regular            Coca-Cola
## 672          Extra Grande        Colas Regular            Coca-Cola
## 673          Extra Grande        Colas Regular            Coca-Cola
## 674          Extra Grande        Colas Regular            Coca-Cola
## 675          Extra Grande        Colas Regular            Coca-Cola
## 676          Extra Grande     Isotónicos Light        Powerade Zero
## 677          Extra Grande   Isotónicos Regular             Powerade
## 678          Extra Grande   Isotónicos Regular             Powerade
## 679          Extra Grande     Jugos y Néctares            Del Valle
## 680          Extra Grande     Jugos y Néctares            Del Valle
## 681          Extra Grande     Jugos y Néctares            Del Valle
## 682          Extra Grande     Jugos y Néctares            Del Valle
## 683          Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 684          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 685          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 686          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 687          Extra Grande    Leche UHT Regular   Santa Clara Entera
## 688          Extra Grande    Leche UHT Regular    Santa Clara Light
## 689          Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 690          Extra Grande        Sabores Light           Fanta Zero
## 691          Extra Grande        Sabores Light          Fresca Zero
## 692          Extra Grande        Sabores Light    Manzana Lift Zero
## 693          Extra Grande        Sabores Light          Sprite Zero
## 694          Extra Grande      Sabores Regular     Del Valle y Nada
## 695          Extra Grande      Sabores Regular                Fanta
## 696          Extra Grande      Sabores Regular                Fanta
## 697          Extra Grande      Sabores Regular                Fanta
## 698          Extra Grande      Sabores Regular                Fanta
## 699          Extra Grande      Sabores Regular                Fanta
## 700          Extra Grande      Sabores Regular                Fanta
## 701          Extra Grande      Sabores Regular                Fanta
## 702          Extra Grande      Sabores Regular               Fresca
## 703          Extra Grande      Sabores Regular               Fresca
## 704          Extra Grande      Sabores Regular               Fresca
## 705          Extra Grande      Sabores Regular               Fresca
## 706          Extra Grande      Sabores Regular               Fresca
## 707          Extra Grande      Sabores Regular         Manzana Lift
## 708          Extra Grande      Sabores Regular         Manzana Lift
## 709          Extra Grande      Sabores Regular         Manzana Lift
## 710          Extra Grande      Sabores Regular         Manzana Lift
## 711          Extra Grande      Sabores Regular               Senzao
## 712          Extra Grande      Sabores Regular        Sidral Mundet
## 713          Extra Grande      Sabores Regular        Sidral Mundet
## 714          Extra Grande      Sabores Regular        Sidral Mundet
## 715          Extra Grande      Sabores Regular        Sidral Mundet
## 716          Extra Grande      Sabores Regular        Sidral Mundet
## 717          Extra Grande      Sabores Regular               Sprite
## 718          Extra Grande      Sabores Regular               Sprite
## 719          Extra Grande      Sabores Regular               Sprite
## 720          Extra Grande      Sabores Regular               Sprite
## 721          Extra Grande      Sabores Regular               Sprite
## 722          Extra Grande      Sabores Regular               Sprite
## 723          Extra Grande      Sabores Regular               Sprite
## 724          Extra Grande             Té Light       Fuze Tea Light
## 725          Extra Grande           Té Regular             Fuze Tea
## 726          Extra Grande           Té Regular             Fuze Tea
## 727          Extra Grande         Agua Mineral    Ciel Mineralizada
## 728          Extra Grande         Agua Mineral      Topo Chico A.M.
## 729          Extra Grande      Agua Purificada Ciel Agua Purificada
## 730          Extra Grande      Agua Purificada Ciel Agua Purificada
## 731          Extra Grande      Agua Purificada Ciel Agua Purificada
## 732          Extra Grande      Agua Purificada Ciel Agua Purificada
## 733          Extra Grande      Agua Purificada Ciel Agua Purificada
## 734          Extra Grande      Agua Saborizada          Ciel Exprim
## 735          Extra Grande     Bebidas de Fruta               Bebere
## 736          Extra Grande     Bebidas de Fruta       Delaware Punch
## 737          Extra Grande     Bebidas de Fruta       Delaware Punch
## 738          Extra Grande     Bebidas de Fruta               Frutsi
## 739          Extra Grande     Bebidas de Fruta                Pulpy
## 740          Extra Grande     Bebidas de Fruta           Valle Frut
## 741          Extra Grande     Bebidas de Fruta           Valle Frut
## 742          Extra Grande     Bebidas de Fruta           Valle Frut
## 743          Extra Grande     Bebidas de Fruta           Valle Frut
## 744          Extra Grande     Bebidas de Fruta           Valle Frut
## 745          Extra Grande  Bebidas Energeticas                 Burn
## 746          Extra Grande  Bebidas Energeticas                 Burn
## 747          Extra Grande  Bebidas Energeticas              Glacéau
## 748          Extra Grande          Colas Light       Coca-Cola Life
## 749          Extra Grande          Colas Light       Coca-Cola Life
## 750          Extra Grande          Colas Light       Coca-Cola Life
## 751          Extra Grande          Colas Light       Coca-Cola Life
## 752          Extra Grande          Colas Light       Coca-Cola Life
## 753          Extra Grande          Colas Light      Coca-Cola Light
## 754          Extra Grande          Colas Light      Coca-Cola Light
## 755          Extra Grande          Colas Light      Coca-Cola Light
## 756          Extra Grande          Colas Light      Coca-Cola Light
## 757          Extra Grande          Colas Light      Coca-Cola Light
## 758          Extra Grande          Colas Light      Coca-Cola Light
## 759          Extra Grande          Colas Light  Coca-Cola Light Sin
## 760          Extra Grande          Colas Light  Coca-Cola Light Sin
## 761          Extra Grande          Colas Light       Coca-Cola Zero
## 762          Extra Grande          Colas Light       Coca-Cola Zero
## 763          Extra Grande          Colas Light       Coca-Cola Zero
## 764          Extra Grande          Colas Light       Coca-Cola Zero
## 765          Extra Grande          Colas Light       Coca-Cola Zero
## 766          Extra Grande          Colas Light       Coca-Cola Zero
## 767          Extra Grande        Colas Regular            Coca-Cola
## 768          Extra Grande        Colas Regular            Coca-Cola
## 769          Extra Grande        Colas Regular            Coca-Cola
## 770          Extra Grande        Colas Regular            Coca-Cola
## 771          Extra Grande        Colas Regular            Coca-Cola
## 772          Extra Grande        Colas Regular            Coca-Cola
## 773          Extra Grande        Colas Regular            Coca-Cola
## 774          Extra Grande        Colas Regular            Coca-Cola
## 775          Extra Grande        Colas Regular            Coca-Cola
## 776          Extra Grande        Colas Regular            Coca-Cola
## 777          Extra Grande        Colas Regular            Coca-Cola
## 778          Extra Grande        Colas Regular            Coca-Cola
## 779          Extra Grande        Colas Regular            Coca-Cola
## 780          Extra Grande        Colas Regular            Coca-Cola
## 781          Extra Grande        Colas Regular            Coca-Cola
## 782          Extra Grande        Colas Regular            Coca-Cola
## 783          Extra Grande        Colas Regular            Coca-Cola
## 784          Extra Grande     Isotónicos Light        Powerade Zero
## 785          Extra Grande   Isotónicos Regular             Powerade
## 786          Extra Grande   Isotónicos Regular             Powerade
## 787          Extra Grande   Isotónicos Regular             Powerade
## 788          Extra Grande     Jugos y Néctares            Del Valle
## 789          Extra Grande     Jugos y Néctares            Del Valle
## 790          Extra Grande     Jugos y Néctares            Del Valle
## 791          Extra Grande     Jugos y Néctares            Del Valle
## 792          Extra Grande     Jugos y Néctares            Del Valle
## 793          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 794          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 795          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 796          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 797          Extra Grande    Leche UHT Regular   Santa Clara Entera
## 798          Extra Grande    Leche UHT Regular    Santa Clara Light
## 799          Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 800          Extra Grande        Sabores Light           Fanta Zero
## 801          Extra Grande        Sabores Light    Manzana Lift Zero
## 802          Extra Grande        Sabores Light  Sidral Mundet Light
## 803          Extra Grande        Sabores Light          Sprite Zero
## 804          Extra Grande      Sabores Regular     Del Valle y Nada
## 805          Extra Grande      Sabores Regular                Fanta
## 806          Extra Grande      Sabores Regular                Fanta
## 807          Extra Grande      Sabores Regular                Fanta
## 808          Extra Grande      Sabores Regular                Fanta
## 809          Extra Grande      Sabores Regular               Fresca
## 810          Extra Grande      Sabores Regular               Fresca
## 811          Extra Grande      Sabores Regular               Fresca
## 812          Extra Grande      Sabores Regular               Fresca
## 813          Extra Grande      Sabores Regular         Manzana Lift
## 814          Extra Grande      Sabores Regular         Manzana Lift
## 815          Extra Grande      Sabores Regular         Manzana Lift
## 816          Extra Grande      Sabores Regular         Manzana Lift
## 817          Extra Grande      Sabores Regular               Senzao
## 818          Extra Grande      Sabores Regular        Sidral Mundet
## 819          Extra Grande      Sabores Regular        Sidral Mundet
## 820          Extra Grande      Sabores Regular        Sidral Mundet
## 821          Extra Grande      Sabores Regular        Sidral Mundet
## 822          Extra Grande      Sabores Regular        Sidral Mundet
## 823          Extra Grande      Sabores Regular               Sprite
## 824          Extra Grande      Sabores Regular               Sprite
## 825          Extra Grande      Sabores Regular               Sprite
## 826          Extra Grande      Sabores Regular               Sprite
## 827          Extra Grande      Sabores Regular               Sprite
## 828          Extra Grande      Sabores Regular               Sprite
## 829          Extra Grande      Sabores Regular               Sprite
## 830          Extra Grande             Té Light       Fuze Tea Light
## 831          Extra Grande           Té Regular             Fuze Tea
## 832          Extra Grande           Té Regular             Fuze Tea
## 833          Extra Grande           Té Regular             Fuze Tea
## 834          Extra Grande         Agua Mineral    Ciel Mineralizada
## 835          Extra Grande         Agua Mineral      Topo Chico A.M.
## 836          Extra Grande      Agua Purificada Ciel Agua Purificada
## 837          Extra Grande      Agua Purificada Ciel Agua Purificada
## 838          Extra Grande      Agua Purificada Ciel Agua Purificada
## 839          Extra Grande      Agua Saborizada          Ciel Exprim
## 840          Extra Grande      Agua Saborizada            Ciel Mini
## 841          Extra Grande     Bebidas de Fruta       Delaware Punch
## 842          Extra Grande     Bebidas de Fruta       Delaware Punch
## 843          Extra Grande     Bebidas de Fruta               Frutsi
## 844          Extra Grande     Bebidas de Fruta           Valle Frut
## 845          Extra Grande     Bebidas de Fruta           Valle Frut
## 846          Extra Grande     Bebidas de Fruta           Valle Frut
## 847          Extra Grande     Bebidas de Fruta           Valle Frut
## 848          Extra Grande     Bebidas de Fruta           Valle Frut
## 849          Extra Grande  Bebidas Energeticas                 Burn
## 850          Extra Grande  Bebidas Energeticas                 Burn
## 851          Extra Grande          Colas Light       Coca-Cola Life
## 852          Extra Grande          Colas Light       Coca-Cola Life
## 853          Extra Grande          Colas Light       Coca-Cola Life
## 854          Extra Grande          Colas Light       Coca-Cola Life
## 855          Extra Grande          Colas Light      Coca-Cola Light
## 856          Extra Grande          Colas Light      Coca-Cola Light
## 857          Extra Grande          Colas Light      Coca-Cola Light
## 858          Extra Grande          Colas Light      Coca-Cola Light
## 859          Extra Grande          Colas Light      Coca-Cola Light
## 860          Extra Grande          Colas Light      Coca-Cola Light
## 861          Extra Grande          Colas Light      Coca-Cola Light
## 862          Extra Grande          Colas Light      Coca-Cola Light
## 863          Extra Grande          Colas Light       Coca-Cola Zero
## 864          Extra Grande          Colas Light       Coca-Cola Zero
## 865          Extra Grande          Colas Light       Coca-Cola Zero
## 866          Extra Grande          Colas Light       Coca-Cola Zero
## 867          Extra Grande          Colas Light       Coca-Cola Zero
## 868          Extra Grande        Colas Regular            Coca-Cola
## 869          Extra Grande        Colas Regular            Coca-Cola
## 870          Extra Grande        Colas Regular            Coca-Cola
## 871          Extra Grande        Colas Regular            Coca-Cola
## 872          Extra Grande        Colas Regular            Coca-Cola
## 873          Extra Grande        Colas Regular            Coca-Cola
## 874          Extra Grande        Colas Regular            Coca-Cola
## 875          Extra Grande        Colas Regular            Coca-Cola
## 876          Extra Grande        Colas Regular            Coca-Cola
## 877          Extra Grande        Colas Regular            Coca-Cola
## 878          Extra Grande        Colas Regular            Coca-Cola
## 879          Extra Grande        Colas Regular            Coca-Cola
## 880          Extra Grande        Colas Regular            Coca-Cola
## 881          Extra Grande        Colas Regular            Coca-Cola
## 882          Extra Grande        Colas Regular            Coca-Cola
## 883          Extra Grande        Colas Regular            Coca-Cola
## 884          Extra Grande        Colas Regular            Coca-Cola
## 885          Extra Grande     Isotónicos Light        Powerade Zero
## 886          Extra Grande   Isotónicos Regular             Powerade
## 887          Extra Grande   Isotónicos Regular             Powerade
## 888          Extra Grande   Isotónicos Regular             Powerade
## 889          Extra Grande     Jugos y Néctares            Del Valle
## 890          Extra Grande     Jugos y Néctares            Del Valle
## 891          Extra Grande     Jugos y Néctares            Del Valle
## 892          Extra Grande     Jugos y Néctares            Del Valle
## 893          Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 894          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 895          Extra Grande    Leche UHT Regular   Santa Clara Entera
## 896          Extra Grande    Leche UHT Regular    Santa Clara Light
## 897          Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 898          Extra Grande        Sabores Light          Sprite Zero
## 899          Extra Grande      Sabores Regular     Del Valle y Nada
## 900          Extra Grande      Sabores Regular     Del Valle y Nada
## 901          Extra Grande      Sabores Regular                Fanta
## 902          Extra Grande      Sabores Regular                Fanta
## 903          Extra Grande      Sabores Regular                Fanta
## 904          Extra Grande      Sabores Regular                Fanta
## 905          Extra Grande      Sabores Regular                Fanta
## 906          Extra Grande      Sabores Regular                Fanta
## 907          Extra Grande      Sabores Regular                Fanta
## 908          Extra Grande      Sabores Regular               Fresca
## 909          Extra Grande      Sabores Regular               Fresca
## 910          Extra Grande      Sabores Regular               Fresca
## 911          Extra Grande      Sabores Regular               Fresca
## 912          Extra Grande      Sabores Regular               Fresca
## 913          Extra Grande      Sabores Regular               Fresca
## 914          Extra Grande      Sabores Regular         Manzana Lift
## 915          Extra Grande      Sabores Regular         Manzana Lift
## 916          Extra Grande      Sabores Regular         Manzana Lift
## 917          Extra Grande      Sabores Regular         Manzana Lift
## 918          Extra Grande      Sabores Regular         Manzana Lift
## 919          Extra Grande      Sabores Regular               Senzao
## 920          Extra Grande      Sabores Regular        Sidral Mundet
## 921          Extra Grande      Sabores Regular        Sidral Mundet
## 922          Extra Grande      Sabores Regular        Sidral Mundet
## 923          Extra Grande      Sabores Regular        Sidral Mundet
## 924          Extra Grande      Sabores Regular               Sprite
## 925          Extra Grande      Sabores Regular               Sprite
## 926          Extra Grande      Sabores Regular               Sprite
## 927          Extra Grande      Sabores Regular               Sprite
## 928          Extra Grande      Sabores Regular               Sprite
## 929          Extra Grande      Sabores Regular               Sprite
## 930          Extra Grande      Sabores Regular               Sprite
## 931          Extra Grande           Té Regular             Fuze Tea
## 932          Extra Grande           Té Regular             Fuze Tea
## 933          Extra Grande           Té Regular             Fuze Tea
## 934          Extra Grande         Agua Mineral    Ciel Mineralizada
## 935          Extra Grande         Agua Mineral      Topo Chico A.M.
## 936          Extra Grande         Agua Mineral      Topo Chico A.M.
## 937          Extra Grande      Agua Purificada Ciel Agua Purificada
## 938          Extra Grande      Agua Purificada Ciel Agua Purificada
## 939          Extra Grande      Agua Purificada Ciel Agua Purificada
## 940          Extra Grande      Agua Saborizada          Ciel Exprim
## 941          Extra Grande      Agua Saborizada            Ciel Mini
## 942          Extra Grande     Bebidas de Fruta       Delaware Punch
## 943          Extra Grande     Bebidas de Fruta       Delaware Punch
## 944          Extra Grande     Bebidas de Fruta               Frutsi
## 945          Extra Grande     Bebidas de Fruta                Pulpy
## 946          Extra Grande     Bebidas de Fruta           Valle Frut
## 947          Extra Grande     Bebidas de Fruta           Valle Frut
## 948          Extra Grande     Bebidas de Fruta           Valle Frut
## 949          Extra Grande     Bebidas de Fruta           Valle Frut
## 950          Extra Grande          Colas Light       Coca-Cola Life
## 951          Extra Grande          Colas Light       Coca-Cola Life
## 952          Extra Grande          Colas Light      Coca-Cola Light
## 953          Extra Grande          Colas Light      Coca-Cola Light
## 954          Extra Grande          Colas Light      Coca-Cola Light
## 955          Extra Grande          Colas Light      Coca-Cola Light
## 956          Extra Grande          Colas Light      Coca-Cola Light
## 957          Extra Grande          Colas Light      Coca-Cola Light
## 958          Extra Grande          Colas Light      Coca-Cola Light
## 959          Extra Grande          Colas Light      Coca-Cola Light
## 960          Extra Grande          Colas Light      Coca-Cola Light
## 961          Extra Grande          Colas Light       Coca-Cola Zero
## 962          Extra Grande          Colas Light       Coca-Cola Zero
## 963          Extra Grande          Colas Light       Coca-Cola Zero
## 964          Extra Grande          Colas Light       Coca-Cola Zero
## 965          Extra Grande          Colas Light       Coca-Cola Zero
## 966          Extra Grande        Colas Regular            Coca-Cola
## 967          Extra Grande        Colas Regular            Coca-Cola
## 968          Extra Grande        Colas Regular            Coca-Cola
## 969          Extra Grande        Colas Regular            Coca-Cola
## 970          Extra Grande        Colas Regular            Coca-Cola
## 971          Extra Grande        Colas Regular            Coca-Cola
## 972          Extra Grande        Colas Regular            Coca-Cola
## 973          Extra Grande        Colas Regular            Coca-Cola
## 974          Extra Grande        Colas Regular            Coca-Cola
## 975          Extra Grande        Colas Regular            Coca-Cola
## 976          Extra Grande        Colas Regular            Coca-Cola
## 977          Extra Grande        Colas Regular            Coca-Cola
## 978          Extra Grande        Colas Regular            Coca-Cola
## 979          Extra Grande        Colas Regular            Coca-Cola
## 980          Extra Grande        Colas Regular            Coca-Cola
## 981          Extra Grande        Colas Regular            Coca-Cola
## 982          Extra Grande        Colas Regular            Coca-Cola
## 983          Extra Grande        Colas Regular            Coca-Cola
## 984          Extra Grande        Colas Regular            Coca-Cola
## 985          Extra Grande        Colas Regular            Coca-Cola
## 986          Extra Grande     Isotónicos Light        Powerade Zero
## 987          Extra Grande   Isotónicos Regular             Powerade
## 988          Extra Grande   Isotónicos Regular             Powerade
## 989          Extra Grande   Isotónicos Regular             Powerade
## 990          Extra Grande     Jugos y Néctares            Del Valle
## 991          Extra Grande     Jugos y Néctares            Del Valle
## 992          Extra Grande     Jugos y Néctares            Del Valle
## 993          Extra Grande     Jugos y Néctares            Del Valle
## 994          Extra Grande     Jugos y Néctares            Del Valle
## 995          Extra Grande     Jugos y Néctares            Del Valle
## 996          Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 997          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 998          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 999          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1000         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 1001         Extra Grande    Leche UHT Regular    Santa Clara Light
## 1002         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1003         Extra Grande        Sabores Light          Sprite Zero
## 1004         Extra Grande      Sabores Regular     Del Valle y Nada
## 1005         Extra Grande      Sabores Regular     Del Valle y Nada
## 1006         Extra Grande      Sabores Regular     Del Valle y Nada
## 1007         Extra Grande      Sabores Regular                Fanta
## 1008         Extra Grande      Sabores Regular                Fanta
## 1009         Extra Grande      Sabores Regular                Fanta
## 1010         Extra Grande      Sabores Regular                Fanta
## 1011         Extra Grande      Sabores Regular                Fanta
## 1012         Extra Grande      Sabores Regular                Fanta
## 1013         Extra Grande      Sabores Regular                Fanta
## 1014         Extra Grande      Sabores Regular               Fresca
## 1015         Extra Grande      Sabores Regular               Fresca
## 1016         Extra Grande      Sabores Regular               Fresca
## 1017         Extra Grande      Sabores Regular               Fresca
## 1018         Extra Grande      Sabores Regular               Fresca
## 1019         Extra Grande      Sabores Regular               Fresca
## 1020         Extra Grande      Sabores Regular               Fresca
## 1021         Extra Grande      Sabores Regular               Fresca
## 1022         Extra Grande      Sabores Regular         Manzana Lift
## 1023         Extra Grande      Sabores Regular         Manzana Lift
## 1024         Extra Grande      Sabores Regular         Manzana Lift
## 1025         Extra Grande      Sabores Regular         Manzana Lift
## 1026         Extra Grande      Sabores Regular         Manzana Lift
## 1027         Extra Grande      Sabores Regular               Senzao
## 1028         Extra Grande      Sabores Regular        Sidral Mundet
## 1029         Extra Grande      Sabores Regular        Sidral Mundet
## 1030         Extra Grande      Sabores Regular        Sidral Mundet
## 1031         Extra Grande      Sabores Regular        Sidral Mundet
## 1032         Extra Grande      Sabores Regular        Sidral Mundet
## 1033         Extra Grande      Sabores Regular               Sprite
## 1034         Extra Grande      Sabores Regular               Sprite
## 1035         Extra Grande      Sabores Regular               Sprite
## 1036         Extra Grande      Sabores Regular               Sprite
## 1037         Extra Grande      Sabores Regular               Sprite
## 1038         Extra Grande      Sabores Regular               Sprite
## 1039         Extra Grande      Sabores Regular               Sprite
## 1040         Extra Grande           Té Regular             Fuze Tea
## 1041         Extra Grande           Té Regular             Fuze Tea
## 1042         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1043         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1044         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1045         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1046         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1047         Extra Grande      Agua Saborizada          Ciel Exprim
## 1048         Extra Grande      Agua Saborizada            Ciel Mini
## 1049         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1050         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1051         Extra Grande     Bebidas de Fruta               Frutsi
## 1052         Extra Grande     Bebidas de Fruta                Pulpy
## 1053         Extra Grande     Bebidas de Fruta           Valle Frut
## 1054         Extra Grande     Bebidas de Fruta           Valle Frut
## 1055         Extra Grande     Bebidas de Fruta           Valle Frut
## 1056         Extra Grande     Bebidas de Fruta           Valle Frut
## 1057         Extra Grande     Bebidas de Fruta           Valle Frut
## 1058         Extra Grande  Bebidas Energeticas                 Burn
## 1059         Extra Grande  Bebidas Energeticas              Glacéau
## 1060         Extra Grande          Colas Light       Coca-Cola Life
## 1061         Extra Grande          Colas Light       Coca-Cola Life
## 1062         Extra Grande          Colas Light      Coca-Cola Light
## 1063         Extra Grande          Colas Light      Coca-Cola Light
## 1064         Extra Grande          Colas Light      Coca-Cola Light
## 1065         Extra Grande          Colas Light      Coca-Cola Light
## 1066         Extra Grande          Colas Light      Coca-Cola Light
## 1067         Extra Grande          Colas Light      Coca-Cola Light
## 1068         Extra Grande          Colas Light       Coca-Cola Zero
## 1069         Extra Grande        Colas Regular            Coca-Cola
## 1070         Extra Grande        Colas Regular            Coca-Cola
## 1071         Extra Grande        Colas Regular            Coca-Cola
## 1072         Extra Grande        Colas Regular            Coca-Cola
## 1073         Extra Grande        Colas Regular            Coca-Cola
## 1074         Extra Grande        Colas Regular            Coca-Cola
## 1075         Extra Grande        Colas Regular            Coca-Cola
## 1076         Extra Grande        Colas Regular            Coca-Cola
## 1077         Extra Grande        Colas Regular            Coca-Cola
## 1078         Extra Grande        Colas Regular            Coca-Cola
## 1079         Extra Grande        Colas Regular            Coca-Cola
## 1080         Extra Grande        Colas Regular            Coca-Cola
## 1081         Extra Grande        Colas Regular            Coca-Cola
## 1082         Extra Grande        Colas Regular            Coca-Cola
## 1083         Extra Grande        Colas Regular            Coca-Cola
## 1084         Extra Grande   Isotónicos Regular             Powerade
## 1085         Extra Grande   Isotónicos Regular             Powerade
## 1086         Extra Grande   Isotónicos Regular             Powerade
## 1087         Extra Grande     Jugos y Néctares            Del Valle
## 1088         Extra Grande     Jugos y Néctares            Del Valle
## 1089         Extra Grande     Jugos y Néctares            Del Valle
## 1090         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 1091         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1092         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1093         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 1094         Extra Grande    Leche UHT Regular    Santa Clara Light
## 1095         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1096         Extra Grande        Sabores Light          Sprite Zero
## 1097         Extra Grande      Sabores Regular     Del Valle y Nada
## 1098         Extra Grande      Sabores Regular                Fanta
## 1099         Extra Grande      Sabores Regular                Fanta
## 1100         Extra Grande      Sabores Regular                Fanta
## 1101         Extra Grande      Sabores Regular                Fanta
## 1102         Extra Grande      Sabores Regular                Fanta
## 1103         Extra Grande      Sabores Regular                Fanta
## 1104         Extra Grande      Sabores Regular               Fresca
## 1105         Extra Grande      Sabores Regular               Fresca
## 1106         Extra Grande      Sabores Regular               Fresca
## 1107         Extra Grande      Sabores Regular               Fresca
## 1108         Extra Grande      Sabores Regular               Fresca
## 1109         Extra Grande      Sabores Regular               Fresca
## 1110         Extra Grande      Sabores Regular               Fresca
## 1111         Extra Grande      Sabores Regular         Manzana Lift
## 1112         Extra Grande      Sabores Regular         Manzana Lift
## 1113         Extra Grande      Sabores Regular         Manzana Lift
## 1114         Extra Grande      Sabores Regular         Manzana Lift
## 1115         Extra Grande      Sabores Regular         Manzana Lift
## 1116         Extra Grande      Sabores Regular               Senzao
## 1117         Extra Grande      Sabores Regular        Sidral Mundet
## 1118         Extra Grande      Sabores Regular        Sidral Mundet
## 1119         Extra Grande      Sabores Regular        Sidral Mundet
## 1120         Extra Grande      Sabores Regular        Sidral Mundet
## 1121         Extra Grande      Sabores Regular        Sidral Mundet
## 1122         Extra Grande      Sabores Regular               Sprite
## 1123         Extra Grande      Sabores Regular               Sprite
## 1124         Extra Grande      Sabores Regular               Sprite
## 1125         Extra Grande      Sabores Regular               Sprite
## 1126         Extra Grande      Sabores Regular               Sprite
## 1127         Extra Grande      Sabores Regular               Sprite
## 1128         Extra Grande             Té Light       Fuze Tea Light
## 1129         Extra Grande           Té Regular             Fuze Tea
## 1130         Extra Grande           Té Regular             Fuze Tea
## 1131         Extra Grande           Té Regular             Fuze Tea
## 1132         Extra Grande           Té Regular             Fuze Tea
## 1133         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1134         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1135         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1136         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1137         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1138         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1139         Extra Grande      Agua Saborizada          Ciel Exprim
## 1140         Extra Grande      Agua Saborizada            Ciel Mini
## 1141         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1142         Extra Grande     Bebidas de Fruta               Frutsi
## 1143         Extra Grande     Bebidas de Fruta                Pulpy
## 1144         Extra Grande     Bebidas de Fruta           Valle Frut
## 1145         Extra Grande     Bebidas de Fruta           Valle Frut
## 1146         Extra Grande     Bebidas de Fruta           Valle Frut
## 1147         Extra Grande     Bebidas de Fruta           Valle Frut
## 1148         Extra Grande  Bebidas Energeticas                 Burn
## 1149         Extra Grande  Bebidas Energeticas                 Burn
## 1150         Extra Grande  Bebidas Energeticas              Glacéau
## 1151         Extra Grande          Colas Light       Coca-Cola Life
## 1152         Extra Grande          Colas Light      Coca-Cola Light
## 1153         Extra Grande          Colas Light      Coca-Cola Light
## 1154         Extra Grande          Colas Light      Coca-Cola Light
## 1155         Extra Grande          Colas Light      Coca-Cola Light
## 1156         Extra Grande          Colas Light      Coca-Cola Light
## 1157         Extra Grande          Colas Light      Coca-Cola Light
## 1158         Extra Grande        Colas Regular            Coca-Cola
## 1159         Extra Grande        Colas Regular            Coca-Cola
## 1160         Extra Grande        Colas Regular            Coca-Cola
## 1161         Extra Grande        Colas Regular            Coca-Cola
## 1162         Extra Grande        Colas Regular            Coca-Cola
## 1163         Extra Grande        Colas Regular            Coca-Cola
## 1164         Extra Grande        Colas Regular            Coca-Cola
## 1165         Extra Grande        Colas Regular            Coca-Cola
## 1166         Extra Grande        Colas Regular            Coca-Cola
## 1167         Extra Grande        Colas Regular            Coca-Cola
## 1168         Extra Grande        Colas Regular            Coca-Cola
## 1169         Extra Grande        Colas Regular            Coca-Cola
## 1170         Extra Grande        Colas Regular            Coca-Cola
## 1171         Extra Grande        Colas Regular            Coca-Cola
## 1172         Extra Grande        Colas Regular            Coca-Cola
## 1173         Extra Grande   Isotónicos Regular             Powerade
## 1174         Extra Grande   Isotónicos Regular             Powerade
## 1175         Extra Grande   Isotónicos Regular             Powerade
## 1176         Extra Grande     Jugos y Néctares            Del Valle
## 1177         Extra Grande     Jugos y Néctares            Del Valle
## 1178         Extra Grande     Jugos y Néctares            Del Valle
## 1179         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 1180         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1181         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1182         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1183         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 1184         Extra Grande    Leche UHT Regular    Santa Clara Light
## 1185         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1186         Extra Grande        Sabores Light           Fanta Zero
## 1187         Extra Grande        Sabores Light          Fresca Zero
## 1188         Extra Grande        Sabores Light    Manzana Lift Zero
## 1189         Extra Grande        Sabores Light          Sprite Zero
## 1190         Extra Grande      Sabores Regular     Del Valle y Nada
## 1191         Extra Grande      Sabores Regular                Fanta
## 1192         Extra Grande      Sabores Regular                Fanta
## 1193         Extra Grande      Sabores Regular                Fanta
## 1194         Extra Grande      Sabores Regular                Fanta
## 1195         Extra Grande      Sabores Regular                Fanta
## 1196         Extra Grande      Sabores Regular                Fanta
## 1197         Extra Grande      Sabores Regular                Fanta
## 1198         Extra Grande      Sabores Regular               Fresca
## 1199         Extra Grande      Sabores Regular               Fresca
## 1200         Extra Grande      Sabores Regular               Fresca
## 1201         Extra Grande      Sabores Regular               Fresca
## 1202         Extra Grande      Sabores Regular               Fresca
## 1203         Extra Grande      Sabores Regular               Fresca
## 1204         Extra Grande      Sabores Regular               Fresca
## 1205         Extra Grande      Sabores Regular         Manzana Lift
## 1206         Extra Grande      Sabores Regular         Manzana Lift
## 1207         Extra Grande      Sabores Regular         Manzana Lift
## 1208         Extra Grande      Sabores Regular         Manzana Lift
## 1209         Extra Grande      Sabores Regular         Manzana Lift
## 1210         Extra Grande      Sabores Regular         Manzana Lift
## 1211         Extra Grande      Sabores Regular               Senzao
## 1212         Extra Grande      Sabores Regular        Sidral Mundet
## 1213         Extra Grande      Sabores Regular        Sidral Mundet
## 1214         Extra Grande      Sabores Regular               Sprite
## 1215         Extra Grande      Sabores Regular               Sprite
## 1216         Extra Grande      Sabores Regular               Sprite
## 1217         Extra Grande      Sabores Regular               Sprite
## 1218         Extra Grande      Sabores Regular               Sprite
## 1219         Extra Grande      Sabores Regular               Sprite
## 1220         Extra Grande      Sabores Regular               Sprite
## 1221         Extra Grande      Sabores Regular               Sprite
## 1222         Extra Grande             Té Light       Fuze Tea Light
## 1223         Extra Grande           Té Regular             Fuze Tea
## 1224         Extra Grande           Té Regular             Fuze Tea
## 1225         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1226         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1227         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1228         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1229         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1230         Extra Grande      Agua Saborizada          Ciel Exprim
## 1231         Extra Grande      Agua Saborizada            Ciel Mini
## 1232         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1233         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1234         Extra Grande     Bebidas de Fruta               Frutsi
## 1235         Extra Grande     Bebidas de Fruta                Pulpy
## 1236         Extra Grande     Bebidas de Fruta           Valle Frut
## 1237         Extra Grande     Bebidas de Fruta           Valle Frut
## 1238         Extra Grande          Colas Light      Coca-Cola Light
## 1239         Extra Grande          Colas Light      Coca-Cola Light
## 1240         Extra Grande          Colas Light      Coca-Cola Light
## 1241         Extra Grande          Colas Light      Coca-Cola Light
## 1242         Extra Grande          Colas Light      Coca-Cola Light
## 1243         Extra Grande        Colas Regular            Coca-Cola
## 1244         Extra Grande        Colas Regular            Coca-Cola
## 1245         Extra Grande        Colas Regular            Coca-Cola
## 1246         Extra Grande        Colas Regular            Coca-Cola
## 1247         Extra Grande        Colas Regular            Coca-Cola
## 1248         Extra Grande        Colas Regular            Coca-Cola
## 1249         Extra Grande        Colas Regular            Coca-Cola
## 1250         Extra Grande        Colas Regular            Coca-Cola
## 1251         Extra Grande        Colas Regular            Coca-Cola
## 1252         Extra Grande        Colas Regular            Coca-Cola
## 1253         Extra Grande        Colas Regular            Coca-Cola
## 1254         Extra Grande        Colas Regular            Coca-Cola
## 1255         Extra Grande   Isotónicos Regular             Powerade
## 1256         Extra Grande     Jugos y Néctares            Del Valle
## 1257         Extra Grande     Jugos y Néctares            Del Valle
## 1258         Extra Grande     Jugos y Néctares            Del Valle
## 1259         Extra Grande     Jugos y Néctares            Del Valle
## 1260         Extra Grande     Jugos y Néctares            Del Valle
## 1261         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1262         Extra Grande      Sabores Regular     Del Valle y Nada
## 1263         Extra Grande      Sabores Regular     Del Valle y Nada
## 1264         Extra Grande      Sabores Regular                Fanta
## 1265         Extra Grande      Sabores Regular                Fanta
## 1266         Extra Grande      Sabores Regular                Fanta
## 1267         Extra Grande      Sabores Regular                Fanta
## 1268         Extra Grande      Sabores Regular                Fanta
## 1269         Extra Grande      Sabores Regular                Fanta
## 1270         Extra Grande      Sabores Regular                Fanta
## 1271         Extra Grande      Sabores Regular               Fresca
## 1272         Extra Grande      Sabores Regular               Fresca
## 1273         Extra Grande      Sabores Regular               Fresca
## 1274         Extra Grande      Sabores Regular               Fresca
## 1275         Extra Grande      Sabores Regular               Fresca
## 1276         Extra Grande      Sabores Regular         Manzana Lift
## 1277         Extra Grande      Sabores Regular         Manzana Lift
## 1278         Extra Grande      Sabores Regular         Manzana Lift
## 1279         Extra Grande      Sabores Regular         Manzana Lift
## 1280         Extra Grande      Sabores Regular        Sidral Mundet
## 1281         Extra Grande      Sabores Regular        Sidral Mundet
## 1282         Extra Grande      Sabores Regular        Sidral Mundet
## 1283         Extra Grande      Sabores Regular               Sprite
## 1284         Extra Grande      Sabores Regular               Sprite
## 1285         Extra Grande      Sabores Regular               Sprite
## 1286         Extra Grande      Sabores Regular               Sprite
## 1287         Extra Grande      Sabores Regular               Sprite
## 1288         Extra Grande      Sabores Regular               Sprite
## 1289         Extra Grande      Sabores Regular               Sprite
## 1290         Extra Grande           Té Regular             Fuze Tea
## 1291         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1292         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1293         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1294         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1295         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1296         Extra Grande      Agua Saborizada          Ciel Exprim
## 1297         Extra Grande      Agua Saborizada            Ciel Mini
## 1298         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1299         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1300         Extra Grande     Bebidas de Fruta               Frutsi
## 1301         Extra Grande     Bebidas de Fruta                Pulpy
## 1302         Extra Grande     Bebidas de Fruta           Valle Frut
## 1303         Extra Grande     Bebidas de Fruta           Valle Frut
## 1304         Extra Grande  Bebidas Energeticas              Glacéau
## 1305         Extra Grande          Colas Light       Coca-Cola Life
## 1306         Extra Grande          Colas Light       Coca-Cola Life
## 1307         Extra Grande          Colas Light      Coca-Cola Light
## 1308         Extra Grande          Colas Light      Coca-Cola Light
## 1309         Extra Grande          Colas Light      Coca-Cola Light
## 1310         Extra Grande          Colas Light      Coca-Cola Light
## 1311         Extra Grande          Colas Light      Coca-Cola Light
## 1312         Extra Grande          Colas Light      Coca-Cola Light
## 1313         Extra Grande          Colas Light      Coca-Cola Light
## 1314         Extra Grande          Colas Light      Coca-Cola Light
## 1315         Extra Grande          Colas Light      Coca-Cola Light
## 1316         Extra Grande          Colas Light      Coca-Cola Light
## 1317         Extra Grande          Colas Light       Coca-Cola Zero
## 1318         Extra Grande          Colas Light       Coca-Cola Zero
## 1319         Extra Grande          Colas Light       Coca-Cola Zero
## 1320         Extra Grande        Colas Regular            Coca-Cola
## 1321         Extra Grande        Colas Regular            Coca-Cola
## 1322         Extra Grande        Colas Regular            Coca-Cola
## 1323         Extra Grande        Colas Regular            Coca-Cola
## 1324         Extra Grande        Colas Regular            Coca-Cola
## 1325         Extra Grande        Colas Regular            Coca-Cola
## 1326         Extra Grande        Colas Regular            Coca-Cola
## 1327         Extra Grande        Colas Regular            Coca-Cola
## 1328         Extra Grande        Colas Regular            Coca-Cola
## 1329         Extra Grande        Colas Regular            Coca-Cola
## 1330         Extra Grande        Colas Regular            Coca-Cola
## 1331         Extra Grande        Colas Regular            Coca-Cola
## 1332         Extra Grande        Colas Regular            Coca-Cola
## 1333         Extra Grande        Colas Regular            Coca-Cola
## 1334         Extra Grande   Isotónicos Regular             Powerade
## 1335         Extra Grande   Isotónicos Regular             Powerade
## 1336         Extra Grande   Isotónicos Regular             Powerade
## 1337         Extra Grande     Jugos y Néctares            Del Valle
## 1338         Extra Grande     Jugos y Néctares            Del Valle
## 1339         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1340         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1341         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1342         Extra Grande        Sabores Light          Sprite Zero
## 1343         Extra Grande      Sabores Regular     Del Valle y Nada
## 1344         Extra Grande      Sabores Regular                Fanta
## 1345         Extra Grande      Sabores Regular                Fanta
## 1346         Extra Grande      Sabores Regular                Fanta
## 1347         Extra Grande      Sabores Regular                Fanta
## 1348         Extra Grande      Sabores Regular                Fanta
## 1349         Extra Grande      Sabores Regular                Fanta
## 1350         Extra Grande      Sabores Regular                Fanta
## 1351         Extra Grande      Sabores Regular               Fresca
## 1352         Extra Grande      Sabores Regular               Fresca
## 1353         Extra Grande      Sabores Regular               Fresca
## 1354         Extra Grande      Sabores Regular               Fresca
## 1355         Extra Grande      Sabores Regular               Fresca
## 1356         Extra Grande      Sabores Regular               Fresca
## 1357         Extra Grande      Sabores Regular               Fresca
## 1358         Extra Grande      Sabores Regular         Manzana Lift
## 1359         Extra Grande      Sabores Regular         Manzana Lift
## 1360         Extra Grande      Sabores Regular         Manzana Lift
## 1361         Extra Grande      Sabores Regular         Manzana Lift
## 1362         Extra Grande      Sabores Regular               Senzao
## 1363         Extra Grande      Sabores Regular        Sidral Mundet
## 1364         Extra Grande      Sabores Regular        Sidral Mundet
## 1365         Extra Grande      Sabores Regular        Sidral Mundet
## 1366         Extra Grande      Sabores Regular        Sidral Mundet
## 1367         Extra Grande      Sabores Regular        Sidral Mundet
## 1368         Extra Grande      Sabores Regular               Sprite
## 1369         Extra Grande      Sabores Regular               Sprite
## 1370         Extra Grande      Sabores Regular               Sprite
## 1371         Extra Grande      Sabores Regular               Sprite
## 1372         Extra Grande      Sabores Regular               Sprite
## 1373         Extra Grande      Sabores Regular               Sprite
## 1374         Extra Grande      Sabores Regular               Sprite
## 1375         Extra Grande           Té Regular             Fuze Tea
## 1376         Extra Grande           Té Regular             Fuze Tea
## 1377         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1378         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1379         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1380         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1381         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1382         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1383         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1384         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1385         Extra Grande      Agua Saborizada          Ciel Exprim
## 1386         Extra Grande      Agua Saborizada            Ciel Mini
## 1387         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1388         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1389         Extra Grande     Bebidas de Fruta               Frutsi
## 1390         Extra Grande     Bebidas de Fruta                Pulpy
## 1391         Extra Grande     Bebidas de Fruta           Valle Frut
## 1392         Extra Grande     Bebidas de Fruta           Valle Frut
## 1393         Extra Grande     Bebidas de Fruta           Valle Frut
## 1394         Extra Grande     Bebidas de Fruta           Valle Frut
## 1395         Extra Grande  Bebidas Energeticas                 Burn
## 1396         Extra Grande  Bebidas Energeticas              Glacéau
## 1397         Extra Grande          Colas Light       Coca-Cola Life
## 1398         Extra Grande          Colas Light      Coca-Cola Light
## 1399         Extra Grande          Colas Light      Coca-Cola Light
## 1400         Extra Grande          Colas Light      Coca-Cola Light
## 1401         Extra Grande          Colas Light      Coca-Cola Light
## 1402         Extra Grande          Colas Light      Coca-Cola Light
## 1403         Extra Grande          Colas Light      Coca-Cola Light
## 1404         Extra Grande          Colas Light      Coca-Cola Light
## 1405         Extra Grande          Colas Light      Coca-Cola Light
## 1406         Extra Grande          Colas Light       Coca-Cola Zero
## 1407         Extra Grande          Colas Light       Coca-Cola Zero
## 1408         Extra Grande          Colas Light       Coca-Cola Zero
## 1409         Extra Grande          Colas Light       Coca-Cola Zero
## 1410         Extra Grande          Colas Light       Coca-Cola Zero
## 1411         Extra Grande        Colas Regular            Coca-Cola
## 1412         Extra Grande        Colas Regular            Coca-Cola
## 1413         Extra Grande        Colas Regular            Coca-Cola
## 1414         Extra Grande        Colas Regular            Coca-Cola
## 1415         Extra Grande        Colas Regular            Coca-Cola
## 1416         Extra Grande        Colas Regular            Coca-Cola
## 1417         Extra Grande        Colas Regular            Coca-Cola
## 1418         Extra Grande        Colas Regular            Coca-Cola
## 1419         Extra Grande        Colas Regular            Coca-Cola
## 1420         Extra Grande        Colas Regular            Coca-Cola
## 1421         Extra Grande        Colas Regular            Coca-Cola
## 1422         Extra Grande        Colas Regular            Coca-Cola
## 1423         Extra Grande        Colas Regular            Coca-Cola
## 1424         Extra Grande        Colas Regular            Coca-Cola
## 1425         Extra Grande        Colas Regular            Coca-Cola
## 1426         Extra Grande        Colas Regular            Coca-Cola
## 1427         Extra Grande        Colas Regular            Coca-Cola
## 1428         Extra Grande   Isotónicos Regular             Powerade
## 1429         Extra Grande   Isotónicos Regular             Powerade
## 1430         Extra Grande   Isotónicos Regular             Powerade
## 1431         Extra Grande     Jugos y Néctares            Del Valle
## 1432         Extra Grande     Jugos y Néctares            Del Valle
## 1433         Extra Grande     Jugos y Néctares            Del Valle
## 1434         Extra Grande     Jugos y Néctares            Del Valle
## 1435         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 1436         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1437         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1438         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 1439         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1440         Extra Grande        Sabores Light          Sprite Zero
## 1441         Extra Grande      Sabores Regular     Del Valle y Nada
## 1442         Extra Grande      Sabores Regular                Fanta
## 1443         Extra Grande      Sabores Regular                Fanta
## 1444         Extra Grande      Sabores Regular                Fanta
## 1445         Extra Grande      Sabores Regular                Fanta
## 1446         Extra Grande      Sabores Regular                Fanta
## 1447         Extra Grande      Sabores Regular                Fanta
## 1448         Extra Grande      Sabores Regular                Fanta
## 1449         Extra Grande      Sabores Regular               Fresca
## 1450         Extra Grande      Sabores Regular               Fresca
## 1451         Extra Grande      Sabores Regular               Fresca
## 1452         Extra Grande      Sabores Regular               Fresca
## 1453         Extra Grande      Sabores Regular               Fresca
## 1454         Extra Grande      Sabores Regular               Fresca
## 1455         Extra Grande      Sabores Regular               Fresca
## 1456         Extra Grande      Sabores Regular         Manzana Lift
## 1457         Extra Grande      Sabores Regular         Manzana Lift
## 1458         Extra Grande      Sabores Regular         Manzana Lift
## 1459         Extra Grande      Sabores Regular         Manzana Lift
## 1460         Extra Grande      Sabores Regular         Manzana Lift
## 1461         Extra Grande      Sabores Regular         Manzana Lift
## 1462         Extra Grande      Sabores Regular               Senzao
## 1463         Extra Grande      Sabores Regular        Sidral Mundet
## 1464         Extra Grande      Sabores Regular        Sidral Mundet
## 1465         Extra Grande      Sabores Regular        Sidral Mundet
## 1466         Extra Grande      Sabores Regular        Sidral Mundet
## 1467         Extra Grande      Sabores Regular        Sidral Mundet
## 1468         Extra Grande      Sabores Regular        Sidral Mundet
## 1469         Extra Grande      Sabores Regular        Sidral Mundet
## 1470         Extra Grande      Sabores Regular               Sprite
## 1471         Extra Grande      Sabores Regular               Sprite
## 1472         Extra Grande      Sabores Regular               Sprite
## 1473         Extra Grande      Sabores Regular               Sprite
## 1474         Extra Grande      Sabores Regular               Sprite
## 1475         Extra Grande      Sabores Regular               Sprite
## 1476         Extra Grande      Sabores Regular               Sprite
## 1477         Extra Grande      Sabores Regular               Sprite
## 1478         Extra Grande             Té Light       Fuze Tea Light
## 1479         Extra Grande           Té Regular             Fuze Tea
## 1480         Extra Grande           Té Regular             Fuze Tea
## 1481         Extra Grande           Té Regular             Fuze Tea
## 1482         Extra Grande           Té Regular             Fuze Tea
## 1483         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1484         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1485         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1486         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1487         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1488         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1489         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1490         Extra Grande      Agua Saborizada          Ciel Exprim
## 1491         Extra Grande      Agua Saborizada      Ciel Saborizada
## 1492         Extra Grande     Bebidas de Fruta               Bebere
## 1493         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1494         Extra Grande     Bebidas de Fruta               Frutsi
## 1495         Extra Grande     Bebidas de Fruta                Pulpy
## 1496         Extra Grande     Bebidas de Fruta           Valle Frut
## 1497         Extra Grande     Bebidas de Fruta           Valle Frut
## 1498         Extra Grande     Bebidas de Fruta           Valle Frut
## 1499         Extra Grande     Bebidas de Fruta           Valle Frut
## 1500         Extra Grande  Bebidas Energeticas                 Burn
## 1501         Extra Grande  Bebidas Energeticas                 Burn
## 1502         Extra Grande  Bebidas Energeticas              Glacéau
## 1503         Extra Grande          Colas Light      Coca-Cola Light
## 1504         Extra Grande          Colas Light      Coca-Cola Light
## 1505         Extra Grande          Colas Light      Coca-Cola Light
## 1506         Extra Grande          Colas Light      Coca-Cola Light
## 1507         Extra Grande          Colas Light      Coca-Cola Light
## 1508         Extra Grande          Colas Light      Coca-Cola Light
## 1509         Extra Grande          Colas Light      Coca-Cola Light
## 1510         Extra Grande          Colas Light       Coca-Cola Zero
## 1511         Extra Grande          Colas Light       Coca-Cola Zero
## 1512         Extra Grande          Colas Light       Coca-Cola Zero
## 1513         Extra Grande        Colas Regular            Coca-Cola
## 1514         Extra Grande        Colas Regular            Coca-Cola
## 1515         Extra Grande        Colas Regular            Coca-Cola
## 1516         Extra Grande        Colas Regular            Coca-Cola
## 1517         Extra Grande        Colas Regular            Coca-Cola
## 1518         Extra Grande        Colas Regular            Coca-Cola
## 1519         Extra Grande        Colas Regular            Coca-Cola
## 1520         Extra Grande        Colas Regular            Coca-Cola
## 1521         Extra Grande        Colas Regular            Coca-Cola
## 1522         Extra Grande        Colas Regular            Coca-Cola
## 1523         Extra Grande        Colas Regular            Coca-Cola
## 1524         Extra Grande        Colas Regular            Coca-Cola
## 1525         Extra Grande        Colas Regular            Coca-Cola
## 1526         Extra Grande        Colas Regular            Coca-Cola
## 1527         Extra Grande        Colas Regular            Coca-Cola
## 1528         Extra Grande     Isotónicos Light        Powerade Zero
## 1529         Extra Grande   Isotónicos Regular             Powerade
## 1530         Extra Grande   Isotónicos Regular             Powerade
## 1531         Extra Grande   Isotónicos Regular             Powerade
## 1532         Extra Grande     Jugos y Néctares            Del Valle
## 1533         Extra Grande     Jugos y Néctares            Del Valle
## 1534         Extra Grande     Jugos y Néctares            Del Valle
## 1535         Extra Grande     Jugos y Néctares            Del Valle
## 1536         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 1537         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1538         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1539         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1540         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1541         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 1542         Extra Grande    Leche UHT Regular    Santa Clara Light
## 1543         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1544         Extra Grande        Sabores Light          Sprite Zero
## 1545         Extra Grande      Sabores Regular     Del Valle y Nada
## 1546         Extra Grande      Sabores Regular                Fanta
## 1547         Extra Grande      Sabores Regular                Fanta
## 1548         Extra Grande      Sabores Regular                Fanta
## 1549         Extra Grande      Sabores Regular                Fanta
## 1550         Extra Grande      Sabores Regular                Fanta
## 1551         Extra Grande      Sabores Regular                Fanta
## 1552         Extra Grande      Sabores Regular               Fresca
## 1553         Extra Grande      Sabores Regular               Fresca
## 1554         Extra Grande      Sabores Regular               Fresca
## 1555         Extra Grande      Sabores Regular               Fresca
## 1556         Extra Grande      Sabores Regular               Fresca
## 1557         Extra Grande      Sabores Regular               Fresca
## 1558         Extra Grande      Sabores Regular         Manzana Lift
## 1559         Extra Grande      Sabores Regular         Manzana Lift
## 1560         Extra Grande      Sabores Regular         Manzana Lift
## 1561         Extra Grande      Sabores Regular         Manzana Lift
## 1562         Extra Grande      Sabores Regular         Manzana Lift
## 1563         Extra Grande      Sabores Regular               Senzao
## 1564         Extra Grande      Sabores Regular        Sidral Mundet
## 1565         Extra Grande      Sabores Regular        Sidral Mundet
## 1566         Extra Grande      Sabores Regular        Sidral Mundet
## 1567         Extra Grande      Sabores Regular        Sidral Mundet
## 1568         Extra Grande      Sabores Regular        Sidral Mundet
## 1569         Extra Grande      Sabores Regular        Sidral Mundet
## 1570         Extra Grande      Sabores Regular               Sprite
## 1571         Extra Grande      Sabores Regular               Sprite
## 1572         Extra Grande      Sabores Regular               Sprite
## 1573         Extra Grande      Sabores Regular               Sprite
## 1574         Extra Grande      Sabores Regular               Sprite
## 1575         Extra Grande      Sabores Regular               Sprite
## 1576         Extra Grande           Té Regular             Fuze Tea
## 1577         Extra Grande           Té Regular             Fuze Tea
## 1578         Extra Grande           Té Regular             Fuze Tea
## 1579         Extra Grande           Té Regular             Fuze Tea
## 1580         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1581         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1582         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1583         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1584         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1585         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1586         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1587         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1588         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1589         Extra Grande      Agua Saborizada          Ciel Exprim
## 1590         Extra Grande      Agua Saborizada            Ciel Mini
## 1591         Extra Grande      Agua Saborizada      Ciel Saborizada
## 1592         Extra Grande     Bebidas de Fruta               Bebere
## 1593         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1594         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1595         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1596         Extra Grande     Bebidas de Fruta               Frutsi
## 1597         Extra Grande     Bebidas de Fruta                Pulpy
## 1598         Extra Grande     Bebidas de Fruta           Valle Frut
## 1599         Extra Grande     Bebidas de Fruta           Valle Frut
## 1600         Extra Grande     Bebidas de Fruta           Valle Frut
## 1601         Extra Grande     Bebidas de Fruta           Valle Frut
## 1602         Extra Grande     Bebidas de Fruta           Valle Frut
## 1603         Extra Grande  Bebidas Energeticas                 Burn
## 1604         Extra Grande  Bebidas Energeticas                 Burn
## 1605         Extra Grande  Bebidas Energeticas              Glacéau
## 1606         Extra Grande          Colas Light       Coca-Cola Life
## 1607         Extra Grande          Colas Light      Coca-Cola Light
## 1608         Extra Grande          Colas Light      Coca-Cola Light
## 1609         Extra Grande          Colas Light       Coca-Cola Zero
## 1610         Extra Grande        Colas Regular            Coca-Cola
## 1611         Extra Grande        Colas Regular            Coca-Cola
## 1612         Extra Grande        Colas Regular            Coca-Cola
## 1613         Extra Grande        Colas Regular            Coca-Cola
## 1614         Extra Grande        Colas Regular            Coca-Cola
## 1615         Extra Grande        Colas Regular            Coca-Cola
## 1616         Extra Grande        Colas Regular            Coca-Cola
## 1617         Extra Grande        Colas Regular            Coca-Cola
## 1618         Extra Grande        Colas Regular            Coca-Cola
## 1619         Extra Grande        Colas Regular            Coca-Cola
## 1620         Extra Grande        Colas Regular            Coca-Cola
## 1621         Extra Grande        Colas Regular            Coca-Cola
## 1622         Extra Grande        Colas Regular            Coca-Cola
## 1623         Extra Grande        Colas Regular            Coca-Cola
## 1624         Extra Grande        Colas Regular            Coca-Cola
## 1625         Extra Grande        Colas Regular            Coca-Cola
## 1626         Extra Grande        Colas Regular            Coca-Cola
## 1627         Extra Grande        Colas Regular            Coca-Cola
## 1628         Extra Grande     Isotónicos Light        Powerade Zero
## 1629         Extra Grande   Isotónicos Regular             Powerade
## 1630         Extra Grande   Isotónicos Regular             Powerade
## 1631         Extra Grande   Isotónicos Regular             Powerade
## 1632         Extra Grande     Jugos y Néctares            Del Valle
## 1633         Extra Grande     Jugos y Néctares            Del Valle
## 1634         Extra Grande     Jugos y Néctares            Del Valle
## 1635         Extra Grande     Jugos y Néctares            Del Valle
## 1636         Extra Grande     Jugos y Néctares            Del Valle
## 1637         Extra Grande     Jugos y Néctares            Del Valle
## 1638         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 1639         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1640         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1641         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1642         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 1643         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1644         Extra Grande      Sabores Regular     Del Valle y Nada
## 1645         Extra Grande      Sabores Regular     Del Valle y Nada
## 1646         Extra Grande      Sabores Regular                Fanta
## 1647         Extra Grande      Sabores Regular                Fanta
## 1648         Extra Grande      Sabores Regular                Fanta
## 1649         Extra Grande      Sabores Regular                Fanta
## 1650         Extra Grande      Sabores Regular                Fanta
## 1651         Extra Grande      Sabores Regular                Fanta
## 1652         Extra Grande      Sabores Regular                Fanta
## 1653         Extra Grande      Sabores Regular                Fanta
## 1654         Extra Grande      Sabores Regular                Fanta
## 1655         Extra Grande      Sabores Regular                Fanta
## 1656         Extra Grande      Sabores Regular               Fresca
## 1657         Extra Grande      Sabores Regular               Fresca
## 1658         Extra Grande      Sabores Regular               Fresca
## 1659         Extra Grande      Sabores Regular               Fresca
## 1660         Extra Grande      Sabores Regular               Fresca
## 1661         Extra Grande      Sabores Regular               Fresca
## 1662         Extra Grande      Sabores Regular               Fresca
## 1663         Extra Grande      Sabores Regular               Fresca
## 1664         Extra Grande      Sabores Regular               Fresca
## 1665         Extra Grande      Sabores Regular               Fresca
## 1666         Extra Grande      Sabores Regular               Fresca
## 1667         Extra Grande      Sabores Regular         Manzana Lift
## 1668         Extra Grande      Sabores Regular         Manzana Lift
## 1669         Extra Grande      Sabores Regular         Manzana Lift
## 1670         Extra Grande      Sabores Regular         Manzana Lift
## 1671         Extra Grande      Sabores Regular         Manzana Lift
## 1672         Extra Grande      Sabores Regular         Manzana Lift
## 1673         Extra Grande      Sabores Regular         Manzana Lift
## 1674         Extra Grande      Sabores Regular         Manzana Lift
## 1675         Extra Grande      Sabores Regular               Senzao
## 1676         Extra Grande      Sabores Regular        Sidral Mundet
## 1677         Extra Grande      Sabores Regular        Sidral Mundet
## 1678         Extra Grande      Sabores Regular        Sidral Mundet
## 1679         Extra Grande      Sabores Regular        Sidral Mundet
## 1680         Extra Grande      Sabores Regular        Sidral Mundet
## 1681         Extra Grande      Sabores Regular        Sidral Mundet
## 1682         Extra Grande      Sabores Regular        Sidral Mundet
## 1683         Extra Grande      Sabores Regular               Sprite
## 1684         Extra Grande      Sabores Regular               Sprite
## 1685         Extra Grande      Sabores Regular               Sprite
## 1686         Extra Grande      Sabores Regular               Sprite
## 1687         Extra Grande      Sabores Regular               Sprite
## 1688         Extra Grande      Sabores Regular               Sprite
## 1689         Extra Grande      Sabores Regular               Sprite
## 1690         Extra Grande      Sabores Regular               Sprite
## 1691         Extra Grande      Sabores Regular               Sprite
## 1692         Extra Grande      Sabores Regular               Sprite
## 1693         Extra Grande      Sabores Regular               Sprite
## 1694         Extra Grande           Té Regular             Fuze Tea
## 1695         Extra Grande           Té Regular             Fuze Tea
## 1696         Extra Grande           Té Regular             Fuze Tea
## 1697         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1698         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1699         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1700         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1701         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1702         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1703         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1704         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1705         Extra Grande      Agua Saborizada          Ciel Exprim
## 1706         Extra Grande      Agua Saborizada            Ciel Mini
## 1707         Extra Grande      Agua Saborizada      Ciel Saborizada
## 1708         Extra Grande     Bebidas de Fruta               Bebere
## 1709         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1710         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1711         Extra Grande     Bebidas de Fruta               Frutsi
## 1712         Extra Grande     Bebidas de Fruta                Pulpy
## 1713         Extra Grande     Bebidas de Fruta           Valle Frut
## 1714         Extra Grande     Bebidas de Fruta           Valle Frut
## 1715         Extra Grande     Bebidas de Fruta           Valle Frut
## 1716         Extra Grande     Bebidas de Fruta           Valle Frut
## 1717         Extra Grande     Bebidas de Fruta           Valle Frut
## 1718         Extra Grande     Bebidas de Fruta           Valle Frut
## 1719         Extra Grande  Bebidas Energeticas                 Burn
## 1720         Extra Grande  Bebidas Energeticas                 Burn
## 1721         Extra Grande  Bebidas Energeticas              Glacéau
## 1722         Extra Grande          Colas Light       Coca-Cola Life
## 1723         Extra Grande          Colas Light       Coca-Cola Life
## 1724         Extra Grande          Colas Light       Coca-Cola Life
## 1725         Extra Grande          Colas Light       Coca-Cola Life
## 1726         Extra Grande          Colas Light      Coca-Cola Light
## 1727         Extra Grande          Colas Light      Coca-Cola Light
## 1728         Extra Grande          Colas Light      Coca-Cola Light
## 1729         Extra Grande          Colas Light      Coca-Cola Light
## 1730         Extra Grande          Colas Light      Coca-Cola Light
## 1731         Extra Grande          Colas Light      Coca-Cola Light
## 1732         Extra Grande          Colas Light      Coca-Cola Light
## 1733         Extra Grande          Colas Light      Coca-Cola Light
## 1734         Extra Grande          Colas Light      Coca-Cola Light
## 1735         Extra Grande          Colas Light       Coca-Cola Zero
## 1736         Extra Grande          Colas Light       Coca-Cola Zero
## 1737         Extra Grande          Colas Light       Coca-Cola Zero
## 1738         Extra Grande          Colas Light       Coca-Cola Zero
## 1739         Extra Grande          Colas Light       Coca-Cola Zero
## 1740         Extra Grande        Colas Regular            Coca-Cola
## 1741         Extra Grande        Colas Regular            Coca-Cola
## 1742         Extra Grande        Colas Regular            Coca-Cola
## 1743         Extra Grande        Colas Regular            Coca-Cola
## 1744         Extra Grande        Colas Regular            Coca-Cola
## 1745         Extra Grande        Colas Regular            Coca-Cola
## 1746         Extra Grande        Colas Regular            Coca-Cola
## 1747         Extra Grande        Colas Regular            Coca-Cola
## 1748         Extra Grande        Colas Regular            Coca-Cola
## 1749         Extra Grande        Colas Regular            Coca-Cola
## 1750         Extra Grande        Colas Regular            Coca-Cola
## 1751         Extra Grande        Colas Regular            Coca-Cola
## 1752         Extra Grande        Colas Regular            Coca-Cola
## 1753         Extra Grande        Colas Regular            Coca-Cola
## 1754         Extra Grande        Colas Regular            Coca-Cola
## 1755         Extra Grande        Colas Regular            Coca-Cola
## 1756         Extra Grande        Colas Regular            Coca-Cola
## 1757         Extra Grande        Colas Regular            Coca-Cola
## 1758         Extra Grande        Colas Regular            Coca-Cola
## 1759         Extra Grande        Colas Regular            Coca-Cola
## 1760         Extra Grande     Isotónicos Light        Powerade Zero
## 1761         Extra Grande   Isotónicos Regular             Powerade
## 1762         Extra Grande   Isotónicos Regular             Powerade
## 1763         Extra Grande   Isotónicos Regular             Powerade
## 1764         Extra Grande     Jugos y Néctares            Del Valle
## 1765         Extra Grande     Jugos y Néctares            Del Valle
## 1766         Extra Grande     Jugos y Néctares            Del Valle
## 1767         Extra Grande     Jugos y Néctares            Del Valle
## 1768         Extra Grande     Jugos y Néctares            Del Valle
## 1769         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 1770         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1771         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1772         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1773         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1774         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 1775         Extra Grande    Leche UHT Regular    Santa Clara Light
## 1776         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1777         Extra Grande        Sabores Light          Sprite Zero
## 1778         Extra Grande      Sabores Regular     Del Valle y Nada
## 1779         Extra Grande      Sabores Regular     Del Valle y Nada
## 1780         Extra Grande      Sabores Regular                Fanta
## 1781         Extra Grande      Sabores Regular                Fanta
## 1782         Extra Grande      Sabores Regular                Fanta
## 1783         Extra Grande      Sabores Regular                Fanta
## 1784         Extra Grande      Sabores Regular                Fanta
## 1785         Extra Grande      Sabores Regular                Fanta
## 1786         Extra Grande      Sabores Regular                Fanta
## 1787         Extra Grande      Sabores Regular                Fanta
## 1788         Extra Grande      Sabores Regular               Fresca
## 1789         Extra Grande      Sabores Regular               Fresca
## 1790         Extra Grande      Sabores Regular               Fresca
## 1791         Extra Grande      Sabores Regular               Fresca
## 1792         Extra Grande      Sabores Regular               Fresca
## 1793         Extra Grande      Sabores Regular               Fresca
## 1794         Extra Grande      Sabores Regular         Manzana Lift
## 1795         Extra Grande      Sabores Regular         Manzana Lift
## 1796         Extra Grande      Sabores Regular         Manzana Lift
## 1797         Extra Grande      Sabores Regular         Manzana Lift
## 1798         Extra Grande      Sabores Regular         Manzana Lift
## 1799         Extra Grande      Sabores Regular         Manzana Lift
## 1800         Extra Grande      Sabores Regular         Manzana Lift
## 1801         Extra Grande      Sabores Regular               Senzao
## 1802         Extra Grande      Sabores Regular        Sidral Mundet
## 1803         Extra Grande      Sabores Regular        Sidral Mundet
## 1804         Extra Grande      Sabores Regular        Sidral Mundet
## 1805         Extra Grande      Sabores Regular        Sidral Mundet
## 1806         Extra Grande      Sabores Regular        Sidral Mundet
## 1807         Extra Grande      Sabores Regular        Sidral Mundet
## 1808         Extra Grande      Sabores Regular               Sprite
## 1809         Extra Grande      Sabores Regular               Sprite
## 1810         Extra Grande      Sabores Regular               Sprite
## 1811         Extra Grande      Sabores Regular               Sprite
## 1812         Extra Grande      Sabores Regular               Sprite
## 1813         Extra Grande      Sabores Regular               Sprite
## 1814         Extra Grande      Sabores Regular               Sprite
## 1815         Extra Grande      Sabores Regular               Sprite
## 1816         Extra Grande      Sabores Regular               Sprite
## 1817         Extra Grande      Sabores Regular               Sprite
## 1818         Extra Grande      Sabores Regular               Sprite
## 1819         Extra Grande             Té Light       Fuze Tea Light
## 1820         Extra Grande           Té Regular             Fuze Tea
## 1821         Extra Grande           Té Regular             Fuze Tea
## 1822         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1823         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1824         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1825         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1826         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1827         Extra Grande      Agua Saborizada            Ciel Mini
## 1828         Extra Grande      Agua Saborizada      Ciel Saborizada
## 1829         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1830         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1831         Extra Grande     Bebidas de Fruta               Frutsi
## 1832         Extra Grande     Bebidas de Fruta                Pulpy
## 1833         Extra Grande     Bebidas de Fruta           Valle Frut
## 1834         Extra Grande     Bebidas de Fruta           Valle Frut
## 1835         Extra Grande     Bebidas de Fruta           Valle Frut
## 1836         Extra Grande     Bebidas de Fruta           Valle Frut
## 1837         Extra Grande          Colas Light       Coca-Cola Life
## 1838         Extra Grande          Colas Light       Coca-Cola Life
## 1839         Extra Grande          Colas Light      Coca-Cola Light
## 1840         Extra Grande          Colas Light      Coca-Cola Light
## 1841         Extra Grande          Colas Light      Coca-Cola Light
## 1842         Extra Grande          Colas Light      Coca-Cola Light
## 1843         Extra Grande          Colas Light      Coca-Cola Light
## 1844         Extra Grande          Colas Light      Coca-Cola Light
## 1845         Extra Grande          Colas Light      Coca-Cola Light
## 1846         Extra Grande          Colas Light      Coca-Cola Light
## 1847         Extra Grande          Colas Light      Coca-Cola Light
## 1848         Extra Grande          Colas Light      Coca-Cola Light
## 1849         Extra Grande          Colas Light       Coca-Cola Zero
## 1850         Extra Grande          Colas Light       Coca-Cola Zero
## 1851         Extra Grande          Colas Light       Coca-Cola Zero
## 1852         Extra Grande          Colas Light       Coca-Cola Zero
## 1853         Extra Grande        Colas Regular            Coca-Cola
## 1854         Extra Grande        Colas Regular            Coca-Cola
## 1855         Extra Grande        Colas Regular            Coca-Cola
## 1856         Extra Grande        Colas Regular            Coca-Cola
## 1857         Extra Grande        Colas Regular            Coca-Cola
## 1858         Extra Grande        Colas Regular            Coca-Cola
## 1859         Extra Grande        Colas Regular            Coca-Cola
## 1860         Extra Grande        Colas Regular            Coca-Cola
## 1861         Extra Grande        Colas Regular            Coca-Cola
## 1862         Extra Grande        Colas Regular            Coca-Cola
## 1863         Extra Grande        Colas Regular            Coca-Cola
## 1864         Extra Grande        Colas Regular            Coca-Cola
## 1865         Extra Grande        Colas Regular            Coca-Cola
## 1866         Extra Grande        Colas Regular            Coca-Cola
## 1867         Extra Grande        Colas Regular            Coca-Cola
## 1868         Extra Grande        Colas Regular            Coca-Cola
## 1869         Extra Grande   Isotónicos Regular             Powerade
## 1870         Extra Grande   Isotónicos Regular             Powerade
## 1871         Extra Grande   Isotónicos Regular             Powerade
## 1872         Extra Grande     Jugos y Néctares            Del Valle
## 1873         Extra Grande     Jugos y Néctares            Del Valle
## 1874         Extra Grande     Jugos y Néctares            Del Valle
## 1875         Extra Grande     Jugos y Néctares            Del Valle
## 1876         Extra Grande     Jugos y Néctares            Del Valle
## 1877         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1878         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1879         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1880         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1881         Extra Grande        Sabores Light          Sprite Zero
## 1882         Extra Grande      Sabores Regular     Del Valle y Nada
## 1883         Extra Grande      Sabores Regular     Del Valle y Nada
## 1884         Extra Grande      Sabores Regular                Fanta
## 1885         Extra Grande      Sabores Regular                Fanta
## 1886         Extra Grande      Sabores Regular                Fanta
## 1887         Extra Grande      Sabores Regular                Fanta
## 1888         Extra Grande      Sabores Regular                Fanta
## 1889         Extra Grande      Sabores Regular                Fanta
## 1890         Extra Grande      Sabores Regular                Fanta
## 1891         Extra Grande      Sabores Regular                Fanta
## 1892         Extra Grande      Sabores Regular               Fresca
## 1893         Extra Grande      Sabores Regular               Fresca
## 1894         Extra Grande      Sabores Regular               Fresca
## 1895         Extra Grande      Sabores Regular               Fresca
## 1896         Extra Grande      Sabores Regular               Fresca
## 1897         Extra Grande      Sabores Regular               Fresca
## 1898         Extra Grande      Sabores Regular               Fresca
## 1899         Extra Grande      Sabores Regular         Manzana Lift
## 1900         Extra Grande      Sabores Regular         Manzana Lift
## 1901         Extra Grande      Sabores Regular         Manzana Lift
## 1902         Extra Grande      Sabores Regular         Manzana Lift
## 1903         Extra Grande      Sabores Regular         Manzana Lift
## 1904         Extra Grande      Sabores Regular               Senzao
## 1905         Extra Grande      Sabores Regular        Sidral Mundet
## 1906         Extra Grande      Sabores Regular        Sidral Mundet
## 1907         Extra Grande      Sabores Regular        Sidral Mundet
## 1908         Extra Grande      Sabores Regular        Sidral Mundet
## 1909         Extra Grande      Sabores Regular        Sidral Mundet
## 1910         Extra Grande      Sabores Regular        Sidral Mundet
## 1911         Extra Grande      Sabores Regular        Sidral Mundet
## 1912         Extra Grande      Sabores Regular               Sprite
## 1913         Extra Grande      Sabores Regular               Sprite
## 1914         Extra Grande      Sabores Regular               Sprite
## 1915         Extra Grande      Sabores Regular               Sprite
## 1916         Extra Grande      Sabores Regular               Sprite
## 1917         Extra Grande      Sabores Regular               Sprite
## 1918         Extra Grande      Sabores Regular               Sprite
## 1919         Extra Grande      Sabores Regular               Sprite
## 1920         Extra Grande      Sabores Regular               Sprite
## 1921         Extra Grande           Té Regular             Fuze Tea
## 1922         Extra Grande           Té Regular             Fuze Tea
## 1923         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1924         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1925         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1926         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1927         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1928         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1929         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1930         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1931         Extra Grande      Agua Saborizada            Ciel Mini
## 1932         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1933         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1934         Extra Grande     Bebidas de Fruta               Frutsi
## 1935         Extra Grande     Bebidas de Fruta                Pulpy
## 1936         Extra Grande     Bebidas de Fruta           Valle Frut
## 1937         Extra Grande     Bebidas de Fruta           Valle Frut
## 1938         Extra Grande     Bebidas de Fruta           Valle Frut
## 1939         Extra Grande     Bebidas de Fruta           Valle Frut
## 1940         Extra Grande     Bebidas de Fruta           Valle Frut
## 1941         Extra Grande  Bebidas Energeticas                 Burn
## 1942         Extra Grande  Bebidas Energeticas                 Burn
## 1943         Extra Grande  Bebidas Energeticas              Glacéau
## 1944         Extra Grande          Colas Light      Coca-Cola Light
## 1945         Extra Grande          Colas Light      Coca-Cola Light
## 1946         Extra Grande          Colas Light      Coca-Cola Light
## 1947         Extra Grande        Colas Regular            Coca-Cola
## 1948         Extra Grande        Colas Regular            Coca-Cola
## 1949         Extra Grande        Colas Regular            Coca-Cola
## 1950         Extra Grande        Colas Regular            Coca-Cola
## 1951         Extra Grande        Colas Regular            Coca-Cola
## 1952         Extra Grande        Colas Regular            Coca-Cola
## 1953         Extra Grande        Colas Regular            Coca-Cola
## 1954         Extra Grande        Colas Regular            Coca-Cola
## 1955         Extra Grande        Colas Regular            Coca-Cola
## 1956         Extra Grande        Colas Regular            Coca-Cola
## 1957         Extra Grande        Colas Regular            Coca-Cola
## 1958         Extra Grande        Colas Regular            Coca-Cola
## 1959         Extra Grande        Colas Regular            Coca-Cola
## 1960         Extra Grande        Colas Regular            Coca-Cola
## 1961         Extra Grande        Colas Regular            Coca-Cola
## 1962         Extra Grande     Isotónicos Light        Powerade Zero
## 1963         Extra Grande   Isotónicos Regular             Powerade
## 1964         Extra Grande   Isotónicos Regular             Powerade
## 1965         Extra Grande   Isotónicos Regular             Powerade
## 1966         Extra Grande     Jugos y Néctares            Del Valle
## 1967         Extra Grande     Jugos y Néctares            Del Valle
## 1968         Extra Grande     Jugos y Néctares            Del Valle
## 1969         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 1970         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1971         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1972         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1973         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 1974         Extra Grande    Leche UHT Regular    Santa Clara Light
## 1975         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1976         Extra Grande        Sabores Light    Manzana Lift Zero
## 1977         Extra Grande      Sabores Regular     Del Valle y Nada
## 1978         Extra Grande      Sabores Regular                Fanta
## 1979         Extra Grande      Sabores Regular                Fanta
## 1980         Extra Grande      Sabores Regular                Fanta
## 1981         Extra Grande      Sabores Regular                Fanta
## 1982         Extra Grande      Sabores Regular                Fanta
## 1983         Extra Grande      Sabores Regular                Fanta
## 1984         Extra Grande      Sabores Regular                Fanta
## 1985         Extra Grande      Sabores Regular                Fanta
## 1986         Extra Grande      Sabores Regular                Fanta
## 1987         Extra Grande      Sabores Regular                Fanta
## 1988         Extra Grande      Sabores Regular               Fresca
## 1989         Extra Grande      Sabores Regular               Fresca
## 1990         Extra Grande      Sabores Regular               Fresca
## 1991         Extra Grande      Sabores Regular               Fresca
## 1992         Extra Grande      Sabores Regular               Fresca
## 1993         Extra Grande      Sabores Regular               Fresca
## 1994         Extra Grande      Sabores Regular               Fresca
## 1995         Extra Grande      Sabores Regular               Fresca
## 1996         Extra Grande      Sabores Regular               Fresca
## 1997         Extra Grande      Sabores Regular               Fresca
## 1998         Extra Grande      Sabores Regular         Manzana Lift
## 1999         Extra Grande      Sabores Regular         Manzana Lift
## 2000         Extra Grande      Sabores Regular         Manzana Lift
## 2001         Extra Grande      Sabores Regular         Manzana Lift
## 2002         Extra Grande      Sabores Regular         Manzana Lift
## 2003         Extra Grande      Sabores Regular         Manzana Lift
## 2004         Extra Grande      Sabores Regular         Manzana Lift
## 2005         Extra Grande      Sabores Regular         Manzana Lift
## 2006         Extra Grande      Sabores Regular               Senzao
## 2007         Extra Grande      Sabores Regular        Sidral Mundet
## 2008         Extra Grande      Sabores Regular        Sidral Mundet
## 2009         Extra Grande      Sabores Regular        Sidral Mundet
## 2010         Extra Grande      Sabores Regular        Sidral Mundet
## 2011         Extra Grande      Sabores Regular               Sprite
## 2012         Extra Grande      Sabores Regular               Sprite
## 2013         Extra Grande      Sabores Regular               Sprite
## 2014         Extra Grande      Sabores Regular               Sprite
## 2015         Extra Grande      Sabores Regular               Sprite
## 2016         Extra Grande      Sabores Regular               Sprite
## 2017         Extra Grande      Sabores Regular               Sprite
## 2018         Extra Grande      Sabores Regular               Sprite
## 2019         Extra Grande      Sabores Regular               Sprite
## 2020         Extra Grande      Sabores Regular               Sprite
## 2021         Extra Grande           Té Regular             Fuze Tea
## 2022         Extra Grande           Té Regular             Fuze Tea
## 2023         Extra Grande           Té Regular             Fuze Tea
## 2024         Extra Grande           Té Regular             Fuze Tea
## 2025         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2026         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2027         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2028         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2029         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2030         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2031         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2032         Extra Grande      Agua Saborizada          Ciel Exprim
## 2033         Extra Grande      Agua Saborizada            Ciel Mini
## 2034         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2035         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2036         Extra Grande     Bebidas de Fruta               Bebere
## 2037         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2038         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2039         Extra Grande     Bebidas de Fruta               Frutsi
## 2040         Extra Grande     Bebidas de Fruta                Pulpy
## 2041         Extra Grande     Bebidas de Fruta           Valle Frut
## 2042         Extra Grande     Bebidas de Fruta           Valle Frut
## 2043         Extra Grande     Bebidas de Fruta           Valle Frut
## 2044         Extra Grande     Bebidas de Fruta           Valle Frut
## 2045         Extra Grande     Bebidas de Fruta           Valle Frut
## 2046         Extra Grande  Bebidas Energeticas                 Burn
## 2047         Extra Grande  Bebidas Energeticas                 Burn
## 2048         Extra Grande  Bebidas Energeticas              Glacéau
## 2049         Extra Grande          Colas Light       Coca-Cola Life
## 2050         Extra Grande          Colas Light       Coca-Cola Life
## 2051         Extra Grande          Colas Light       Coca-Cola Life
## 2052         Extra Grande          Colas Light      Coca-Cola Light
## 2053         Extra Grande          Colas Light      Coca-Cola Light
## 2054         Extra Grande          Colas Light      Coca-Cola Light
## 2055         Extra Grande          Colas Light      Coca-Cola Light
## 2056         Extra Grande          Colas Light      Coca-Cola Light
## 2057         Extra Grande          Colas Light      Coca-Cola Light
## 2058         Extra Grande          Colas Light      Coca-Cola Light
## 2059         Extra Grande          Colas Light      Coca-Cola Light
## 2060         Extra Grande          Colas Light       Coca-Cola Zero
## 2061         Extra Grande          Colas Light       Coca-Cola Zero
## 2062         Extra Grande          Colas Light       Coca-Cola Zero
## 2063         Extra Grande          Colas Light       Coca-Cola Zero
## 2064         Extra Grande        Colas Regular            Coca-Cola
## 2065         Extra Grande        Colas Regular            Coca-Cola
## 2066         Extra Grande        Colas Regular            Coca-Cola
## 2067         Extra Grande        Colas Regular            Coca-Cola
## 2068         Extra Grande        Colas Regular            Coca-Cola
## 2069         Extra Grande        Colas Regular            Coca-Cola
## 2070         Extra Grande        Colas Regular            Coca-Cola
## 2071         Extra Grande        Colas Regular            Coca-Cola
## 2072         Extra Grande        Colas Regular            Coca-Cola
## 2073         Extra Grande        Colas Regular            Coca-Cola
## 2074         Extra Grande        Colas Regular            Coca-Cola
## 2075         Extra Grande        Colas Regular            Coca-Cola
## 2076         Extra Grande        Colas Regular            Coca-Cola
## 2077         Extra Grande        Colas Regular            Coca-Cola
## 2078         Extra Grande        Colas Regular            Coca-Cola
## 2079         Extra Grande        Colas Regular            Coca-Cola
## 2080         Extra Grande        Colas Regular            Coca-Cola
## 2081         Extra Grande     Isotónicos Light        Powerade Zero
## 2082         Extra Grande   Isotónicos Regular             Powerade
## 2083         Extra Grande   Isotónicos Regular             Powerade
## 2084         Extra Grande   Isotónicos Regular             Powerade
## 2085         Extra Grande     Jugos y Néctares            Del Valle
## 2086         Extra Grande     Jugos y Néctares            Del Valle
## 2087         Extra Grande     Jugos y Néctares            Del Valle
## 2088         Extra Grande     Jugos y Néctares            Del Valle
## 2089         Extra Grande     Jugos y Néctares            Del Valle
## 2090         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 2091         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2092         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2093         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 2094         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 2095         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 2096         Extra Grande    Leche UHT Regular    Santa Clara Light
## 2097         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2098         Extra Grande        Sabores Light          Sprite Zero
## 2099         Extra Grande      Sabores Regular     Del Valle y Nada
## 2100         Extra Grande      Sabores Regular     Del Valle y Nada
## 2101         Extra Grande      Sabores Regular     Del Valle y Nada
## 2102         Extra Grande      Sabores Regular                Fanta
## 2103         Extra Grande      Sabores Regular                Fanta
## 2104         Extra Grande      Sabores Regular                Fanta
## 2105         Extra Grande      Sabores Regular                Fanta
## 2106         Extra Grande      Sabores Regular                Fanta
## 2107         Extra Grande      Sabores Regular                Fanta
## 2108         Extra Grande      Sabores Regular                Fanta
## 2109         Extra Grande      Sabores Regular                Fanta
## 2110         Extra Grande      Sabores Regular                Fanta
## 2111         Extra Grande      Sabores Regular                Fanta
## 2112         Extra Grande      Sabores Regular               Fresca
## 2113         Extra Grande      Sabores Regular               Fresca
## 2114         Extra Grande      Sabores Regular               Fresca
## 2115         Extra Grande      Sabores Regular               Fresca
## 2116         Extra Grande      Sabores Regular               Fresca
## 2117         Extra Grande      Sabores Regular               Fresca
## 2118         Extra Grande      Sabores Regular               Fresca
## 2119         Extra Grande      Sabores Regular               Fresca
## 2120         Extra Grande      Sabores Regular               Fresca
## 2121         Extra Grande      Sabores Regular               Fresca
## 2122         Extra Grande      Sabores Regular         Manzana Lift
## 2123         Extra Grande      Sabores Regular         Manzana Lift
## 2124         Extra Grande      Sabores Regular         Manzana Lift
## 2125         Extra Grande      Sabores Regular         Manzana Lift
## 2126         Extra Grande      Sabores Regular         Manzana Lift
## 2127         Extra Grande      Sabores Regular         Manzana Lift
## 2128         Extra Grande      Sabores Regular         Manzana Lift
## 2129         Extra Grande      Sabores Regular         Manzana Lift
## 2130         Extra Grande      Sabores Regular               Senzao
## 2131         Extra Grande      Sabores Regular        Sidral Mundet
## 2132         Extra Grande      Sabores Regular        Sidral Mundet
## 2133         Extra Grande      Sabores Regular        Sidral Mundet
## 2134         Extra Grande      Sabores Regular        Sidral Mundet
## 2135         Extra Grande      Sabores Regular        Sidral Mundet
## 2136         Extra Grande      Sabores Regular        Sidral Mundet
## 2137         Extra Grande      Sabores Regular        Sidral Mundet
## 2138         Extra Grande      Sabores Regular               Sprite
## 2139         Extra Grande      Sabores Regular               Sprite
## 2140         Extra Grande      Sabores Regular               Sprite
## 2141         Extra Grande      Sabores Regular               Sprite
## 2142         Extra Grande      Sabores Regular               Sprite
## 2143         Extra Grande      Sabores Regular               Sprite
## 2144         Extra Grande      Sabores Regular               Sprite
## 2145         Extra Grande      Sabores Regular               Sprite
## 2146         Extra Grande      Sabores Regular               Sprite
## 2147         Extra Grande      Sabores Regular               Sprite
## 2148         Extra Grande      Sabores Regular               Sprite
## 2149         Extra Grande           Té Regular             Fuze Tea
## 2150         Extra Grande           Té Regular             Fuze Tea
## 2151         Extra Grande           Té Regular             Fuze Tea
## 2152         Extra Grande           Té Regular             Fuze Tea
## 2153         Extra Grande           Té Regular             Fuze Tea
## 2154         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2155         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2156         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2157         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2158         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2159         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2160         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2161         Extra Grande      Agua Saborizada            Ciel Mini
## 2162         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2163         Extra Grande     Bebidas de Fruta               Frutsi
## 2164         Extra Grande     Bebidas de Fruta           Valle Frut
## 2165         Extra Grande     Bebidas de Fruta           Valle Frut
## 2166         Extra Grande     Bebidas de Fruta           Valle Frut
## 2167         Extra Grande  Bebidas Energeticas                 Burn
## 2168         Extra Grande          Colas Light      Coca-Cola Light
## 2169         Extra Grande          Colas Light      Coca-Cola Light
## 2170         Extra Grande          Colas Light      Coca-Cola Light
## 2171         Extra Grande          Colas Light      Coca-Cola Light
## 2172         Extra Grande        Colas Regular            Coca-Cola
## 2173         Extra Grande        Colas Regular            Coca-Cola
## 2174         Extra Grande        Colas Regular            Coca-Cola
## 2175         Extra Grande        Colas Regular            Coca-Cola
## 2176         Extra Grande        Colas Regular            Coca-Cola
## 2177         Extra Grande        Colas Regular            Coca-Cola
## 2178         Extra Grande        Colas Regular            Coca-Cola
## 2179         Extra Grande        Colas Regular            Coca-Cola
## 2180         Extra Grande        Colas Regular            Coca-Cola
## 2181         Extra Grande        Colas Regular            Coca-Cola
## 2182         Extra Grande        Colas Regular            Coca-Cola
## 2183         Extra Grande        Colas Regular            Coca-Cola
## 2184         Extra Grande        Colas Regular            Coca-Cola
## 2185         Extra Grande        Colas Regular            Coca-Cola
## 2186         Extra Grande        Colas Regular            Coca-Cola
## 2187         Extra Grande        Colas Regular            Coca-Cola
## 2188         Extra Grande        Colas Regular            Coca-Cola
## 2189         Extra Grande        Colas Regular            Coca-Cola
## 2190         Extra Grande   Isotónicos Regular             Powerade
## 2191         Extra Grande   Isotónicos Regular             Powerade
## 2192         Extra Grande   Isotónicos Regular             Powerade
## 2193         Extra Grande     Jugos y Néctares            Del Valle
## 2194         Extra Grande     Jugos y Néctares            Del Valle
## 2195         Extra Grande     Jugos y Néctares            Del Valle
## 2196         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 2197         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2198         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2199         Extra Grande      Sabores Regular     Del Valle y Nada
## 2200         Extra Grande      Sabores Regular     Del Valle y Nada
## 2201         Extra Grande      Sabores Regular                Fanta
## 2202         Extra Grande      Sabores Regular                Fanta
## 2203         Extra Grande      Sabores Regular                Fanta
## 2204         Extra Grande      Sabores Regular                Fanta
## 2205         Extra Grande      Sabores Regular                Fanta
## 2206         Extra Grande      Sabores Regular                Fanta
## 2207         Extra Grande      Sabores Regular                Fanta
## 2208         Extra Grande      Sabores Regular                Fanta
## 2209         Extra Grande      Sabores Regular                Fanta
## 2210         Extra Grande      Sabores Regular               Fresca
## 2211         Extra Grande      Sabores Regular               Fresca
## 2212         Extra Grande      Sabores Regular               Fresca
## 2213         Extra Grande      Sabores Regular               Fresca
## 2214         Extra Grande      Sabores Regular               Fresca
## 2215         Extra Grande      Sabores Regular               Fresca
## 2216         Extra Grande      Sabores Regular               Fresca
## 2217         Extra Grande      Sabores Regular         Manzana Lift
## 2218         Extra Grande      Sabores Regular         Manzana Lift
## 2219         Extra Grande      Sabores Regular         Manzana Lift
## 2220         Extra Grande      Sabores Regular         Manzana Lift
## 2221         Extra Grande      Sabores Regular         Manzana Lift
## 2222         Extra Grande      Sabores Regular         Manzana Lift
## 2223         Extra Grande      Sabores Regular        Sidral Mundet
## 2224         Extra Grande      Sabores Regular        Sidral Mundet
## 2225         Extra Grande      Sabores Regular        Sidral Mundet
## 2226         Extra Grande      Sabores Regular               Sprite
## 2227         Extra Grande      Sabores Regular               Sprite
## 2228         Extra Grande      Sabores Regular               Sprite
## 2229         Extra Grande      Sabores Regular               Sprite
## 2230         Extra Grande      Sabores Regular               Sprite
## 2231         Extra Grande      Sabores Regular               Sprite
## 2232         Extra Grande      Sabores Regular               Sprite
## 2233         Extra Grande      Sabores Regular               Sprite
## 2234         Extra Grande           Té Regular             Fuze Tea
## 2235         Extra Grande           Té Regular             Fuze Tea
## 2236         Extra Grande           Té Regular             Fuze Tea
## 2237         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2238         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2239         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2240         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2241         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2242         Extra Grande      Agua Saborizada            Ciel Mini
## 2243         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2244         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2245         Extra Grande     Bebidas de Fruta               Frutsi
## 2246         Extra Grande     Bebidas de Fruta                Pulpy
## 2247         Extra Grande     Bebidas de Fruta           Valle Frut
## 2248         Extra Grande     Bebidas de Fruta           Valle Frut
## 2249         Extra Grande     Bebidas de Fruta           Valle Frut
## 2250         Extra Grande          Colas Light      Coca-Cola Light
## 2251         Extra Grande          Colas Light      Coca-Cola Light
## 2252         Extra Grande          Colas Light      Coca-Cola Light
## 2253         Extra Grande        Colas Regular            Coca-Cola
## 2254         Extra Grande        Colas Regular            Coca-Cola
## 2255         Extra Grande        Colas Regular            Coca-Cola
## 2256         Extra Grande        Colas Regular            Coca-Cola
## 2257         Extra Grande        Colas Regular            Coca-Cola
## 2258         Extra Grande        Colas Regular            Coca-Cola
## 2259         Extra Grande        Colas Regular            Coca-Cola
## 2260         Extra Grande        Colas Regular            Coca-Cola
## 2261         Extra Grande        Colas Regular            Coca-Cola
## 2262         Extra Grande        Colas Regular            Coca-Cola
## 2263         Extra Grande        Colas Regular            Coca-Cola
## 2264         Extra Grande        Colas Regular            Coca-Cola
## 2265         Extra Grande        Colas Regular            Coca-Cola
## 2266         Extra Grande        Colas Regular            Coca-Cola
## 2267         Extra Grande   Isotónicos Regular             Powerade
## 2268         Extra Grande   Isotónicos Regular             Powerade
## 2269         Extra Grande   Isotónicos Regular             Powerade
## 2270         Extra Grande     Jugos y Néctares            Del Valle
## 2271         Extra Grande     Jugos y Néctares            Del Valle
## 2272         Extra Grande     Jugos y Néctares            Del Valle
## 2273         Extra Grande     Jugos y Néctares            Del Valle
## 2274         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2275         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 2276         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2277         Extra Grande      Sabores Regular     Del Valle y Nada
## 2278         Extra Grande      Sabores Regular                Fanta
## 2279         Extra Grande      Sabores Regular                Fanta
## 2280         Extra Grande      Sabores Regular                Fanta
## 2281         Extra Grande      Sabores Regular                Fanta
## 2282         Extra Grande      Sabores Regular                Fanta
## 2283         Extra Grande      Sabores Regular               Fresca
## 2284         Extra Grande      Sabores Regular               Fresca
## 2285         Extra Grande      Sabores Regular               Fresca
## 2286         Extra Grande      Sabores Regular               Fresca
## 2287         Extra Grande      Sabores Regular         Manzana Lift
## 2288         Extra Grande      Sabores Regular         Manzana Lift
## 2289         Extra Grande      Sabores Regular         Manzana Lift
## 2290         Extra Grande      Sabores Regular               Senzao
## 2291         Extra Grande      Sabores Regular        Sidral Mundet
## 2292         Extra Grande      Sabores Regular        Sidral Mundet
## 2293         Extra Grande      Sabores Regular        Sidral Mundet
## 2294         Extra Grande      Sabores Regular        Sidral Mundet
## 2295         Extra Grande      Sabores Regular        Sidral Mundet
## 2296         Extra Grande      Sabores Regular               Sprite
## 2297         Extra Grande      Sabores Regular               Sprite
## 2298         Extra Grande      Sabores Regular               Sprite
## 2299         Extra Grande      Sabores Regular               Sprite
## 2300         Extra Grande      Sabores Regular               Sprite
## 2301         Extra Grande      Sabores Regular               Sprite
## 2302         Extra Grande           Té Regular             Fuze Tea
## 2303         Extra Grande           Té Regular             Fuze Tea
## 2304         Extra Grande           Té Regular             Fuze Tea
## 2305         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2306         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2307         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2308         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2309         Extra Grande      Agua Saborizada          Ciel Exprim
## 2310         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2311         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2312         Extra Grande     Bebidas de Fruta               Bebere
## 2313         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2314         Extra Grande     Bebidas de Fruta               Frutsi
## 2315         Extra Grande     Bebidas de Fruta                Pulpy
## 2316         Extra Grande     Bebidas de Fruta           Valle Frut
## 2317         Extra Grande     Bebidas de Fruta           Valle Frut
## 2318         Extra Grande     Bebidas de Fruta           Valle Frut
## 2319         Extra Grande     Bebidas de Fruta           Valle Frut
## 2320         Extra Grande  Bebidas Energeticas              Glacéau
## 2321         Extra Grande          Colas Light       Coca-Cola Life
## 2322         Extra Grande          Colas Light      Coca-Cola Light
## 2323         Extra Grande          Colas Light      Coca-Cola Light
## 2324         Extra Grande          Colas Light      Coca-Cola Light
## 2325         Extra Grande          Colas Light      Coca-Cola Light
## 2326         Extra Grande          Colas Light      Coca-Cola Light
## 2327         Extra Grande          Colas Light      Coca-Cola Light
## 2328         Extra Grande          Colas Light       Coca-Cola Zero
## 2329         Extra Grande          Colas Light       Coca-Cola Zero
## 2330         Extra Grande          Colas Light       Coca-Cola Zero
## 2331         Extra Grande          Colas Light       Coca-Cola Zero
## 2332         Extra Grande        Colas Regular            Coca-Cola
## 2333         Extra Grande        Colas Regular            Coca-Cola
## 2334         Extra Grande        Colas Regular            Coca-Cola
## 2335         Extra Grande        Colas Regular            Coca-Cola
## 2336         Extra Grande        Colas Regular            Coca-Cola
## 2337         Extra Grande        Colas Regular            Coca-Cola
## 2338         Extra Grande        Colas Regular            Coca-Cola
## 2339         Extra Grande        Colas Regular            Coca-Cola
## 2340         Extra Grande        Colas Regular            Coca-Cola
## 2341         Extra Grande        Colas Regular            Coca-Cola
## 2342         Extra Grande        Colas Regular            Coca-Cola
## 2343         Extra Grande        Colas Regular            Coca-Cola
## 2344         Extra Grande        Colas Regular            Coca-Cola
## 2345         Extra Grande        Colas Regular            Coca-Cola
## 2346         Extra Grande   Isotónicos Regular             Powerade
## 2347         Extra Grande   Isotónicos Regular             Powerade
## 2348         Extra Grande     Jugos y Néctares            Del Valle
## 2349         Extra Grande     Jugos y Néctares            Del Valle
## 2350         Extra Grande     Jugos y Néctares            Del Valle
## 2351         Extra Grande     Jugos y Néctares            Del Valle
## 2352         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 2353         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2354         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2355         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2356         Extra Grande        Sabores Light          Sprite Zero
## 2357         Extra Grande      Sabores Regular     Del Valle y Nada
## 2358         Extra Grande      Sabores Regular     Del Valle y Nada
## 2359         Extra Grande      Sabores Regular                Fanta
## 2360         Extra Grande      Sabores Regular                Fanta
## 2361         Extra Grande      Sabores Regular                Fanta
## 2362         Extra Grande      Sabores Regular                Fanta
## 2363         Extra Grande      Sabores Regular                Fanta
## 2364         Extra Grande      Sabores Regular                Fanta
## 2365         Extra Grande      Sabores Regular               Fresca
## 2366         Extra Grande      Sabores Regular               Fresca
## 2367         Extra Grande      Sabores Regular               Fresca
## 2368         Extra Grande      Sabores Regular               Fresca
## 2369         Extra Grande      Sabores Regular               Fresca
## 2370         Extra Grande      Sabores Regular         Manzana Lift
## 2371         Extra Grande      Sabores Regular         Manzana Lift
## 2372         Extra Grande      Sabores Regular         Manzana Lift
## 2373         Extra Grande      Sabores Regular         Manzana Lift
## 2374         Extra Grande      Sabores Regular        Sidral Mundet
## 2375         Extra Grande      Sabores Regular        Sidral Mundet
## 2376         Extra Grande      Sabores Regular        Sidral Mundet
## 2377         Extra Grande      Sabores Regular               Sprite
## 2378         Extra Grande      Sabores Regular               Sprite
## 2379         Extra Grande      Sabores Regular               Sprite
## 2380         Extra Grande      Sabores Regular               Sprite
## 2381         Extra Grande      Sabores Regular               Sprite
## 2382         Extra Grande      Sabores Regular               Sprite
## 2383         Extra Grande      Sabores Regular               Sprite
## 2384         Extra Grande      Sabores Regular               Sprite
## 2385         Extra Grande           Té Regular             Fuze Tea
## 2386         Extra Grande           Té Regular             Fuze Tea
## 2387         Extra Grande           Té Regular             Fuze Tea
## 2388         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2389         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2390         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2391         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2392         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2393         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2394         Extra Grande      Agua Saborizada          Ciel Exprim
## 2395         Extra Grande      Agua Saborizada            Ciel Mini
## 2396         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2397         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2398         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2399         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2400         Extra Grande     Bebidas de Fruta               Frutsi
## 2401         Extra Grande     Bebidas de Fruta                Pulpy
## 2402         Extra Grande     Bebidas de Fruta           Valle Frut
## 2403         Extra Grande     Bebidas de Fruta           Valle Frut
## 2404         Extra Grande     Bebidas de Fruta           Valle Frut
## 2405         Extra Grande     Bebidas de Fruta           Valle Frut
## 2406         Extra Grande     Bebidas de Fruta           Valle Frut
## 2407         Extra Grande  Bebidas Energeticas                 Burn
## 2408         Extra Grande  Bebidas Energeticas                 Burn
## 2409         Extra Grande  Bebidas Energeticas              Glacéau
## 2410         Extra Grande          Colas Light       Coca-Cola Life
## 2411         Extra Grande          Colas Light       Coca-Cola Life
## 2412         Extra Grande          Colas Light       Coca-Cola Life
## 2413         Extra Grande          Colas Light      Coca-Cola Light
## 2414         Extra Grande          Colas Light      Coca-Cola Light
## 2415         Extra Grande          Colas Light      Coca-Cola Light
## 2416         Extra Grande          Colas Light      Coca-Cola Light
## 2417         Extra Grande          Colas Light      Coca-Cola Light
## 2418         Extra Grande          Colas Light      Coca-Cola Light
## 2419         Extra Grande          Colas Light       Coca-Cola Zero
## 2420         Extra Grande          Colas Light       Coca-Cola Zero
## 2421         Extra Grande          Colas Light       Coca-Cola Zero
## 2422         Extra Grande          Colas Light       Coca-Cola Zero
## 2423         Extra Grande        Colas Regular            Coca-Cola
## 2424         Extra Grande        Colas Regular            Coca-Cola
## 2425         Extra Grande        Colas Regular            Coca-Cola
## 2426         Extra Grande        Colas Regular            Coca-Cola
## 2427         Extra Grande        Colas Regular            Coca-Cola
## 2428         Extra Grande        Colas Regular            Coca-Cola
## 2429         Extra Grande        Colas Regular            Coca-Cola
## 2430         Extra Grande        Colas Regular            Coca-Cola
## 2431         Extra Grande        Colas Regular            Coca-Cola
## 2432         Extra Grande        Colas Regular            Coca-Cola
## 2433         Extra Grande        Colas Regular            Coca-Cola
## 2434         Extra Grande        Colas Regular            Coca-Cola
## 2435         Extra Grande        Colas Regular            Coca-Cola
## 2436         Extra Grande        Colas Regular            Coca-Cola
## 2437         Extra Grande        Colas Regular            Coca-Cola
## 2438         Extra Grande     Isotónicos Light        Powerade Zero
## 2439         Extra Grande   Isotónicos Regular             Powerade
## 2440         Extra Grande   Isotónicos Regular             Powerade
## 2441         Extra Grande   Isotónicos Regular             Powerade
## 2442         Extra Grande     Jugos y Néctares            Del Valle
## 2443         Extra Grande     Jugos y Néctares            Del Valle
## 2444         Extra Grande     Jugos y Néctares            Del Valle
## 2445         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 2446         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2447         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2448         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 2449         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 2450         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 2451         Extra Grande    Leche UHT Regular    Santa Clara Light
## 2452         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2453         Extra Grande        Sabores Light          Sprite Zero
## 2454         Extra Grande      Sabores Regular     Del Valle y Nada
## 2455         Extra Grande      Sabores Regular     Del Valle y Nada
## 2456         Extra Grande      Sabores Regular                Fanta
## 2457         Extra Grande      Sabores Regular                Fanta
## 2458         Extra Grande      Sabores Regular                Fanta
## 2459         Extra Grande      Sabores Regular                Fanta
## 2460         Extra Grande      Sabores Regular                Fanta
## 2461         Extra Grande      Sabores Regular                Fanta
## 2462         Extra Grande      Sabores Regular                Fanta
## 2463         Extra Grande      Sabores Regular                Fanta
## 2464         Extra Grande      Sabores Regular                Fanta
## 2465         Extra Grande      Sabores Regular               Fresca
## 2466         Extra Grande      Sabores Regular               Fresca
## 2467         Extra Grande      Sabores Regular               Fresca
## 2468         Extra Grande      Sabores Regular               Fresca
## 2469         Extra Grande      Sabores Regular               Fresca
## 2470         Extra Grande      Sabores Regular               Fresca
## 2471         Extra Grande      Sabores Regular               Fresca
## 2472         Extra Grande      Sabores Regular               Fresca
## 2473         Extra Grande      Sabores Regular               Fresca
## 2474         Extra Grande      Sabores Regular         Manzana Lift
## 2475         Extra Grande      Sabores Regular         Manzana Lift
## 2476         Extra Grande      Sabores Regular         Manzana Lift
## 2477         Extra Grande      Sabores Regular         Manzana Lift
## 2478         Extra Grande      Sabores Regular         Manzana Lift
## 2479         Extra Grande      Sabores Regular         Manzana Lift
## 2480         Extra Grande      Sabores Regular               Senzao
## 2481         Extra Grande      Sabores Regular        Sidral Mundet
## 2482         Extra Grande      Sabores Regular        Sidral Mundet
## 2483         Extra Grande      Sabores Regular        Sidral Mundet
## 2484         Extra Grande      Sabores Regular        Sidral Mundet
## 2485         Extra Grande      Sabores Regular        Sidral Mundet
## 2486         Extra Grande      Sabores Regular        Sidral Mundet
## 2487         Extra Grande      Sabores Regular               Sprite
## 2488         Extra Grande      Sabores Regular               Sprite
## 2489         Extra Grande      Sabores Regular               Sprite
## 2490         Extra Grande      Sabores Regular               Sprite
## 2491         Extra Grande      Sabores Regular               Sprite
## 2492         Extra Grande      Sabores Regular               Sprite
## 2493         Extra Grande      Sabores Regular               Sprite
## 2494         Extra Grande      Sabores Regular               Sprite
## 2495         Extra Grande      Sabores Regular               Sprite
## 2496         Extra Grande      Sabores Regular               Sprite
## 2497         Extra Grande           Té Regular             Fuze Tea
## 2498         Extra Grande           Té Regular             Fuze Tea
## 2499         Extra Grande           Té Regular             Fuze Tea
## 2500         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2501         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2502         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2503         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2504         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2505         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2506         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2507         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2508         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2509         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2510         Extra Grande      Agua Saborizada          Ciel Exprim
## 2511         Extra Grande      Agua Saborizada          Ciel Exprim
## 2512         Extra Grande      Agua Saborizada            Ciel Mini
## 2513         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2514         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2515         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2516         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2517         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2518         Extra Grande     Bebidas de Fruta               Frutsi
## 2519         Extra Grande     Bebidas de Fruta                Pulpy
## 2520         Extra Grande     Bebidas de Fruta           Valle Frut
## 2521         Extra Grande     Bebidas de Fruta           Valle Frut
## 2522         Extra Grande     Bebidas de Fruta           Valle Frut
## 2523         Extra Grande     Bebidas de Fruta           Valle Frut
## 2524         Extra Grande     Bebidas de Fruta           Valle Frut
## 2525         Extra Grande  Bebidas Energeticas                 Burn
## 2526         Extra Grande  Bebidas Energeticas                 Burn
## 2527         Extra Grande  Bebidas Energeticas              Glacéau
## 2528         Extra Grande          Colas Light       Coca-Cola Life
## 2529         Extra Grande          Colas Light       Coca-Cola Life
## 2530         Extra Grande          Colas Light      Coca-Cola Light
## 2531         Extra Grande          Colas Light      Coca-Cola Light
## 2532         Extra Grande          Colas Light      Coca-Cola Light
## 2533         Extra Grande          Colas Light      Coca-Cola Light
## 2534         Extra Grande          Colas Light      Coca-Cola Light
## 2535         Extra Grande          Colas Light      Coca-Cola Light
## 2536         Extra Grande          Colas Light       Coca-Cola Zero
## 2537         Extra Grande          Colas Light       Coca-Cola Zero
## 2538         Extra Grande          Colas Light       Coca-Cola Zero
## 2539         Extra Grande          Colas Light       Coca-Cola Zero
## 2540         Extra Grande          Colas Light       Coca-Cola Zero
## 2541         Extra Grande        Colas Regular            Coca-Cola
## 2542         Extra Grande        Colas Regular            Coca-Cola
## 2543         Extra Grande        Colas Regular            Coca-Cola
## 2544         Extra Grande        Colas Regular            Coca-Cola
## 2545         Extra Grande        Colas Regular            Coca-Cola
## 2546         Extra Grande        Colas Regular            Coca-Cola
## 2547         Extra Grande        Colas Regular            Coca-Cola
## 2548         Extra Grande        Colas Regular            Coca-Cola
## 2549         Extra Grande        Colas Regular            Coca-Cola
## 2550         Extra Grande        Colas Regular            Coca-Cola
## 2551         Extra Grande        Colas Regular            Coca-Cola
## 2552         Extra Grande        Colas Regular            Coca-Cola
## 2553         Extra Grande        Colas Regular            Coca-Cola
## 2554         Extra Grande        Colas Regular            Coca-Cola
## 2555         Extra Grande        Colas Regular            Coca-Cola
## 2556         Extra Grande        Colas Regular            Coca-Cola
## 2557         Extra Grande        Colas Regular            Coca-Cola
## 2558         Extra Grande        Colas Regular            Coca-Cola
## 2559         Extra Grande        Colas Regular            Coca-Cola
## 2560         Extra Grande     Isotónicos Light        Powerade Zero
## 2561         Extra Grande   Isotónicos Regular             Powerade
## 2562         Extra Grande   Isotónicos Regular             Powerade
## 2563         Extra Grande   Isotónicos Regular             Powerade
## 2564         Extra Grande     Jugos y Néctares            Del Valle
## 2565         Extra Grande     Jugos y Néctares            Del Valle
## 2566         Extra Grande     Jugos y Néctares            Del Valle
## 2567         Extra Grande     Jugos y Néctares            Del Valle
## 2568         Extra Grande     Jugos y Néctares            Del Valle
## 2569         Extra Grande     Jugos y Néctares            Del Valle
## 2570         Extra Grande     Jugos y Néctares            Del Valle
## 2571         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 2572         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2573         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2574         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 2575         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2576         Extra Grande        Sabores Light    Manzana Lift Zero
## 2577         Extra Grande        Sabores Light          Sprite Zero
## 2578         Extra Grande      Sabores Regular     Del Valle y Nada
## 2579         Extra Grande      Sabores Regular     Del Valle y Nada
## 2580         Extra Grande      Sabores Regular     Del Valle y Nada
## 2581         Extra Grande      Sabores Regular                Fanta
## 2582         Extra Grande      Sabores Regular                Fanta
## 2583         Extra Grande      Sabores Regular                Fanta
## 2584         Extra Grande      Sabores Regular                Fanta
## 2585         Extra Grande      Sabores Regular                Fanta
## 2586         Extra Grande      Sabores Regular                Fanta
## 2587         Extra Grande      Sabores Regular                Fanta
## 2588         Extra Grande      Sabores Regular                Fanta
## 2589         Extra Grande      Sabores Regular                Fanta
## 2590         Extra Grande      Sabores Regular                Fanta
## 2591         Extra Grande      Sabores Regular                Fanta
## 2592         Extra Grande      Sabores Regular               Fresca
## 2593         Extra Grande      Sabores Regular               Fresca
## 2594         Extra Grande      Sabores Regular               Fresca
## 2595         Extra Grande      Sabores Regular               Fresca
## 2596         Extra Grande      Sabores Regular               Fresca
## 2597         Extra Grande      Sabores Regular               Fresca
## 2598         Extra Grande      Sabores Regular               Fresca
## 2599         Extra Grande      Sabores Regular               Fresca
## 2600         Extra Grande      Sabores Regular               Fresca
## 2601         Extra Grande      Sabores Regular               Fresca
## 2602         Extra Grande      Sabores Regular               Fresca
## 2603         Extra Grande      Sabores Regular         Manzana Lift
## 2604         Extra Grande      Sabores Regular         Manzana Lift
## 2605         Extra Grande      Sabores Regular         Manzana Lift
## 2606         Extra Grande      Sabores Regular         Manzana Lift
## 2607         Extra Grande      Sabores Regular         Manzana Lift
## 2608         Extra Grande      Sabores Regular         Manzana Lift
## 2609         Extra Grande      Sabores Regular         Manzana Lift
## 2610         Extra Grande      Sabores Regular         Manzana Lift
## 2611         Extra Grande      Sabores Regular         Manzana Lift
## 2612         Extra Grande      Sabores Regular               Senzao
## 2613         Extra Grande      Sabores Regular        Sidral Mundet
## 2614         Extra Grande      Sabores Regular        Sidral Mundet
## 2615         Extra Grande      Sabores Regular        Sidral Mundet
## 2616         Extra Grande      Sabores Regular        Sidral Mundet
## 2617         Extra Grande      Sabores Regular        Sidral Mundet
## 2618         Extra Grande      Sabores Regular        Sidral Mundet
## 2619         Extra Grande      Sabores Regular        Sidral Mundet
## 2620         Extra Grande      Sabores Regular               Sprite
## 2621         Extra Grande      Sabores Regular               Sprite
## 2622         Extra Grande      Sabores Regular               Sprite
## 2623         Extra Grande      Sabores Regular               Sprite
## 2624         Extra Grande      Sabores Regular               Sprite
## 2625         Extra Grande      Sabores Regular               Sprite
## 2626         Extra Grande      Sabores Regular               Sprite
## 2627         Extra Grande      Sabores Regular               Sprite
## 2628         Extra Grande      Sabores Regular               Sprite
## 2629         Extra Grande      Sabores Regular               Sprite
## 2630         Extra Grande      Sabores Regular               Sprite
## 2631         Extra Grande           Té Regular             Fuze Tea
## 2632         Extra Grande           Té Regular             Fuze Tea
## 2633         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2634         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2635         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2636         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2637         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2638         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2639         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2640         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2641         Extra Grande      Agua Saborizada          Ciel Exprim
## 2642         Extra Grande      Agua Saborizada          Ciel Exprim
## 2643         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2644         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2645         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2646         Extra Grande     Bebidas de Fruta               Frutsi
## 2647         Extra Grande     Bebidas de Fruta                Pulpy
## 2648         Extra Grande     Bebidas de Fruta           Valle Frut
## 2649         Extra Grande     Bebidas de Fruta           Valle Frut
## 2650         Extra Grande     Bebidas de Fruta           Valle Frut
## 2651         Extra Grande     Bebidas de Fruta           Valle Frut
## 2652         Extra Grande     Bebidas de Fruta           Valle Frut
## 2653         Extra Grande  Bebidas Energeticas                 Burn
## 2654         Extra Grande          Colas Light       Coca-Cola Life
## 2655         Extra Grande          Colas Light       Coca-Cola Life
## 2656         Extra Grande          Colas Light       Coca-Cola Life
## 2657         Extra Grande          Colas Light       Coca-Cola Life
## 2658         Extra Grande          Colas Light       Coca-Cola Life
## 2659         Extra Grande          Colas Light      Coca-Cola Light
## 2660         Extra Grande          Colas Light      Coca-Cola Light
## 2661         Extra Grande          Colas Light      Coca-Cola Light
## 2662         Extra Grande          Colas Light      Coca-Cola Light
## 2663         Extra Grande          Colas Light      Coca-Cola Light
## 2664         Extra Grande          Colas Light      Coca-Cola Light
## 2665         Extra Grande          Colas Light       Coca-Cola Zero
## 2666         Extra Grande          Colas Light       Coca-Cola Zero
## 2667         Extra Grande          Colas Light       Coca-Cola Zero
## 2668         Extra Grande          Colas Light       Coca-Cola Zero
## 2669         Extra Grande        Colas Regular            Coca-Cola
## 2670         Extra Grande        Colas Regular            Coca-Cola
## 2671         Extra Grande        Colas Regular            Coca-Cola
## 2672         Extra Grande        Colas Regular            Coca-Cola
## 2673         Extra Grande        Colas Regular            Coca-Cola
## 2674         Extra Grande        Colas Regular            Coca-Cola
## 2675         Extra Grande        Colas Regular            Coca-Cola
## 2676         Extra Grande        Colas Regular            Coca-Cola
## 2677         Extra Grande        Colas Regular            Coca-Cola
## 2678         Extra Grande        Colas Regular            Coca-Cola
## 2679         Extra Grande        Colas Regular            Coca-Cola
## 2680         Extra Grande        Colas Regular            Coca-Cola
## 2681         Extra Grande        Colas Regular            Coca-Cola
## 2682         Extra Grande        Colas Regular            Coca-Cola
## 2683         Extra Grande        Colas Regular            Coca-Cola
## 2684         Extra Grande        Colas Regular            Coca-Cola
## 2685         Extra Grande        Colas Regular            Coca-Cola
## 2686         Extra Grande     Isotónicos Light        Powerade Zero
## 2687         Extra Grande   Isotónicos Regular             Powerade
## 2688         Extra Grande   Isotónicos Regular             Powerade
## 2689         Extra Grande   Isotónicos Regular             Powerade
## 2690         Extra Grande     Jugos y Néctares            Del Valle
## 2691         Extra Grande     Jugos y Néctares            Del Valle
## 2692         Extra Grande     Jugos y Néctares            Del Valle
## 2693         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 2694         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2695         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2696         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 2697         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2698         Extra Grande        Sabores Light          Sprite Zero
## 2699         Extra Grande      Sabores Regular     Del Valle y Nada
## 2700         Extra Grande      Sabores Regular     Del Valle y Nada
## 2701         Extra Grande      Sabores Regular     Del Valle y Nada
## 2702         Extra Grande      Sabores Regular                Fanta
## 2703         Extra Grande      Sabores Regular                Fanta
## 2704         Extra Grande      Sabores Regular                Fanta
## 2705         Extra Grande      Sabores Regular                Fanta
## 2706         Extra Grande      Sabores Regular                Fanta
## 2707         Extra Grande      Sabores Regular                Fanta
## 2708         Extra Grande      Sabores Regular                Fanta
## 2709         Extra Grande      Sabores Regular                Fanta
## 2710         Extra Grande      Sabores Regular                Fanta
## 2711         Extra Grande      Sabores Regular                Fanta
## 2712         Extra Grande      Sabores Regular               Fresca
## 2713         Extra Grande      Sabores Regular               Fresca
## 2714         Extra Grande      Sabores Regular               Fresca
## 2715         Extra Grande      Sabores Regular               Fresca
## 2716         Extra Grande      Sabores Regular               Fresca
## 2717         Extra Grande      Sabores Regular               Fresca
## 2718         Extra Grande      Sabores Regular               Fresca
## 2719         Extra Grande      Sabores Regular               Fresca
## 2720         Extra Grande      Sabores Regular         Manzana Lift
## 2721         Extra Grande      Sabores Regular         Manzana Lift
## 2722         Extra Grande      Sabores Regular         Manzana Lift
## 2723         Extra Grande      Sabores Regular         Manzana Lift
## 2724         Extra Grande      Sabores Regular         Manzana Lift
## 2725         Extra Grande      Sabores Regular         Manzana Lift
## 2726         Extra Grande      Sabores Regular         Manzana Lift
## 2727         Extra Grande      Sabores Regular         Manzana Lift
## 2728         Extra Grande      Sabores Regular         Manzana Lift
## 2729         Extra Grande      Sabores Regular               Senzao
## 2730         Extra Grande      Sabores Regular        Sidral Mundet
## 2731         Extra Grande      Sabores Regular        Sidral Mundet
## 2732         Extra Grande      Sabores Regular        Sidral Mundet
## 2733         Extra Grande      Sabores Regular        Sidral Mundet
## 2734         Extra Grande      Sabores Regular        Sidral Mundet
## 2735         Extra Grande      Sabores Regular        Sidral Mundet
## 2736         Extra Grande      Sabores Regular               Sprite
## 2737         Extra Grande      Sabores Regular               Sprite
## 2738         Extra Grande      Sabores Regular               Sprite
## 2739         Extra Grande      Sabores Regular               Sprite
## 2740         Extra Grande      Sabores Regular               Sprite
## 2741         Extra Grande      Sabores Regular               Sprite
## 2742         Extra Grande      Sabores Regular               Sprite
## 2743         Extra Grande      Sabores Regular               Sprite
## 2744         Extra Grande      Sabores Regular               Sprite
## 2745         Extra Grande      Sabores Regular               Sprite
## 2746         Extra Grande           Té Regular             Fuze Tea
## 2747         Extra Grande           Té Regular             Fuze Tea
## 2748         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2749         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2750         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2751         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2752         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2753         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2754         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2755         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2756         Extra Grande      Agua Saborizada          Ciel Exprim
## 2757         Extra Grande      Agua Saborizada            Ciel Mini
## 2758         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2759         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2760         Extra Grande     Bebidas de Fruta               Frutsi
## 2761         Extra Grande     Bebidas de Fruta                Pulpy
## 2762         Extra Grande     Bebidas de Fruta           Valle Frut
## 2763         Extra Grande     Bebidas de Fruta           Valle Frut
## 2764         Extra Grande     Bebidas de Fruta           Valle Frut
## 2765         Extra Grande  Bebidas Energeticas                 Burn
## 2766         Extra Grande  Bebidas Energeticas                 Burn
## 2767         Extra Grande  Bebidas Energeticas              Glacéau
## 2768         Extra Grande          Colas Light      Coca-Cola Light
## 2769         Extra Grande          Colas Light      Coca-Cola Light
## 2770         Extra Grande        Colas Regular            Coca-Cola
## 2771         Extra Grande        Colas Regular            Coca-Cola
## 2772         Extra Grande        Colas Regular            Coca-Cola
## 2773         Extra Grande        Colas Regular            Coca-Cola
## 2774         Extra Grande        Colas Regular            Coca-Cola
## 2775         Extra Grande        Colas Regular            Coca-Cola
## 2776         Extra Grande        Colas Regular            Coca-Cola
## 2777         Extra Grande        Colas Regular            Coca-Cola
## 2778         Extra Grande        Colas Regular            Coca-Cola
## 2779         Extra Grande        Colas Regular            Coca-Cola
## 2780         Extra Grande        Colas Regular            Coca-Cola
## 2781         Extra Grande        Colas Regular            Coca-Cola
## 2782         Extra Grande        Colas Regular            Coca-Cola
## 2783         Extra Grande   Isotónicos Regular             Powerade
## 2784         Extra Grande   Isotónicos Regular             Powerade
## 2785         Extra Grande   Isotónicos Regular             Powerade
## 2786         Extra Grande     Jugos y Néctares            Del Valle
## 2787         Extra Grande     Jugos y Néctares            Del Valle
## 2788         Extra Grande     Jugos y Néctares            Del Valle
## 2789         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 2790         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2791         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2792         Extra Grande        Sabores Light          Sprite Zero
## 2793         Extra Grande      Sabores Regular     Del Valle y Nada
## 2794         Extra Grande      Sabores Regular     Del Valle y Nada
## 2795         Extra Grande      Sabores Regular                Fanta
## 2796         Extra Grande      Sabores Regular                Fanta
## 2797         Extra Grande      Sabores Regular                Fanta
## 2798         Extra Grande      Sabores Regular                Fanta
## 2799         Extra Grande      Sabores Regular                Fanta
## 2800         Extra Grande      Sabores Regular                Fanta
## 2801         Extra Grande      Sabores Regular                Fanta
## 2802         Extra Grande      Sabores Regular               Fresca
## 2803         Extra Grande      Sabores Regular               Fresca
## 2804         Extra Grande      Sabores Regular               Fresca
## 2805         Extra Grande      Sabores Regular               Fresca
## 2806         Extra Grande      Sabores Regular               Fresca
## 2807         Extra Grande      Sabores Regular               Fresca
## 2808         Extra Grande      Sabores Regular               Fresca
## 2809         Extra Grande      Sabores Regular         Manzana Lift
## 2810         Extra Grande      Sabores Regular         Manzana Lift
## 2811         Extra Grande      Sabores Regular         Manzana Lift
## 2812         Extra Grande      Sabores Regular         Manzana Lift
## 2813         Extra Grande      Sabores Regular         Manzana Lift
## 2814         Extra Grande      Sabores Regular               Senzao
## 2815         Extra Grande      Sabores Regular        Sidral Mundet
## 2816         Extra Grande      Sabores Regular        Sidral Mundet
## 2817         Extra Grande      Sabores Regular        Sidral Mundet
## 2818         Extra Grande      Sabores Regular        Sidral Mundet
## 2819         Extra Grande      Sabores Regular               Sprite
## 2820         Extra Grande      Sabores Regular               Sprite
## 2821         Extra Grande      Sabores Regular               Sprite
## 2822         Extra Grande      Sabores Regular               Sprite
## 2823         Extra Grande      Sabores Regular               Sprite
## 2824         Extra Grande      Sabores Regular               Sprite
## 2825         Extra Grande      Sabores Regular               Sprite
## 2826         Extra Grande           Té Regular             Fuze Tea
## 2827         Extra Grande           Té Regular             Fuze Tea
## 2828         Extra Grande           Té Regular             Fuze Tea
## 2829         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2830         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2831         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2832         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2833         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2834         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2835         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2836         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2837         Extra Grande      Agua Saborizada            Ciel Mini
## 2838         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2839         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2840         Extra Grande     Bebidas de Fruta               Frutsi
## 2841         Extra Grande     Bebidas de Fruta                Pulpy
## 2842         Extra Grande     Bebidas de Fruta           Valle Frut
## 2843         Extra Grande     Bebidas de Fruta           Valle Frut
## 2844         Extra Grande     Bebidas de Fruta           Valle Frut
## 2845         Extra Grande     Bebidas de Fruta           Valle Frut
## 2846         Extra Grande  Bebidas Energeticas                 Burn
## 2847         Extra Grande  Bebidas Energeticas                 Burn
## 2848         Extra Grande  Bebidas Energeticas              Glacéau
## 2849         Extra Grande          Colas Light       Coca-Cola Life
## 2850         Extra Grande          Colas Light      Coca-Cola Light
## 2851         Extra Grande          Colas Light      Coca-Cola Light
## 2852         Extra Grande          Colas Light      Coca-Cola Light
## 2853         Extra Grande          Colas Light      Coca-Cola Light
## 2854         Extra Grande          Colas Light      Coca-Cola Light
## 2855         Extra Grande          Colas Light      Coca-Cola Light
## 2856         Extra Grande          Colas Light       Coca-Cola Zero
## 2857         Extra Grande          Colas Light       Coca-Cola Zero
## 2858         Extra Grande          Colas Light       Coca-Cola Zero
## 2859         Extra Grande          Colas Light       Coca-Cola Zero
## 2860         Extra Grande          Colas Light       Coca-Cola Zero
## 2861         Extra Grande        Colas Regular            Coca-Cola
## 2862         Extra Grande        Colas Regular            Coca-Cola
## 2863         Extra Grande        Colas Regular            Coca-Cola
## 2864         Extra Grande        Colas Regular            Coca-Cola
## 2865         Extra Grande        Colas Regular            Coca-Cola
## 2866         Extra Grande        Colas Regular            Coca-Cola
## 2867         Extra Grande        Colas Regular            Coca-Cola
## 2868         Extra Grande        Colas Regular            Coca-Cola
## 2869         Extra Grande        Colas Regular            Coca-Cola
## 2870         Extra Grande        Colas Regular            Coca-Cola
## 2871         Extra Grande        Colas Regular            Coca-Cola
## 2872         Extra Grande        Colas Regular            Coca-Cola
## 2873         Extra Grande        Colas Regular            Coca-Cola
## 2874         Extra Grande        Colas Regular            Coca-Cola
## 2875         Extra Grande        Colas Regular            Coca-Cola
## 2876         Extra Grande        Colas Regular            Coca-Cola
## 2877         Extra Grande     Isotónicos Light        Powerade Zero
## 2878         Extra Grande   Isotónicos Regular             Powerade
## 2879         Extra Grande   Isotónicos Regular             Powerade
## 2880         Extra Grande   Isotónicos Regular             Powerade
## 2881         Extra Grande     Jugos y Néctares            Del Valle
## 2882         Extra Grande     Jugos y Néctares            Del Valle
## 2883         Extra Grande     Jugos y Néctares            Del Valle
## 2884         Extra Grande     Jugos y Néctares            Del Valle
## 2885         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2886         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2887         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 2888         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2889         Extra Grande        Sabores Light  Sidral Mundet Light
## 2890         Extra Grande      Sabores Regular     Del Valle y Nada
## 2891         Extra Grande      Sabores Regular     Del Valle y Nada
## 2892         Extra Grande      Sabores Regular                Fanta
## 2893         Extra Grande      Sabores Regular                Fanta
## 2894         Extra Grande      Sabores Regular                Fanta
## 2895         Extra Grande      Sabores Regular                Fanta
## 2896         Extra Grande      Sabores Regular                Fanta
## 2897         Extra Grande      Sabores Regular                Fanta
## 2898         Extra Grande      Sabores Regular                Fanta
## 2899         Extra Grande      Sabores Regular                Fanta
## 2900         Extra Grande      Sabores Regular                Fanta
## 2901         Extra Grande      Sabores Regular               Fresca
## 2902         Extra Grande      Sabores Regular               Fresca
## 2903         Extra Grande      Sabores Regular               Fresca
## 2904         Extra Grande      Sabores Regular               Fresca
## 2905         Extra Grande      Sabores Regular               Fresca
## 2906         Extra Grande      Sabores Regular               Fresca
## 2907         Extra Grande      Sabores Regular               Fresca
## 2908         Extra Grande      Sabores Regular               Fresca
## 2909         Extra Grande      Sabores Regular               Fresca
## 2910         Extra Grande      Sabores Regular         Manzana Lift
## 2911         Extra Grande      Sabores Regular         Manzana Lift
## 2912         Extra Grande      Sabores Regular         Manzana Lift
## 2913         Extra Grande      Sabores Regular         Manzana Lift
## 2914         Extra Grande      Sabores Regular         Manzana Lift
## 2915         Extra Grande      Sabores Regular         Manzana Lift
## 2916         Extra Grande      Sabores Regular               Senzao
## 2917         Extra Grande      Sabores Regular        Sidral Mundet
## 2918         Extra Grande      Sabores Regular        Sidral Mundet
## 2919         Extra Grande      Sabores Regular        Sidral Mundet
## 2920         Extra Grande      Sabores Regular        Sidral Mundet
## 2921         Extra Grande      Sabores Regular        Sidral Mundet
## 2922         Extra Grande      Sabores Regular               Sprite
## 2923         Extra Grande      Sabores Regular               Sprite
## 2924         Extra Grande      Sabores Regular               Sprite
## 2925         Extra Grande      Sabores Regular               Sprite
## 2926         Extra Grande      Sabores Regular               Sprite
## 2927         Extra Grande      Sabores Regular               Sprite
## 2928         Extra Grande      Sabores Regular               Sprite
## 2929         Extra Grande      Sabores Regular               Sprite
## 2930         Extra Grande      Sabores Regular               Sprite
## 2931         Extra Grande           Té Regular             Fuze Tea
## 2932         Extra Grande           Té Regular             Fuze Tea
## 2933         Extra Grande           Té Regular             Fuze Tea
## 2934         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2935         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2936         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2937         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2938         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2939         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2940         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2941         Extra Grande      Agua Saborizada          Ciel Exprim
## 2942         Extra Grande      Agua Saborizada          Ciel Exprim
## 2943         Extra Grande      Agua Saborizada          Ciel Exprim
## 2944         Extra Grande      Agua Saborizada            Ciel Mini
## 2945         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2946         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2947         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2948         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2949         Extra Grande     Bebidas de Fruta               Frutsi
## 2950         Extra Grande     Bebidas de Fruta                Pulpy
## 2951         Extra Grande     Bebidas de Fruta           Valle Frut
## 2952         Extra Grande     Bebidas de Fruta           Valle Frut
## 2953         Extra Grande     Bebidas de Fruta           Valle Frut
## 2954         Extra Grande     Bebidas de Fruta           Valle Frut
## 2955         Extra Grande     Bebidas de Fruta           Valle Frut
## 2956         Extra Grande  Bebidas Energeticas                 Burn
## 2957         Extra Grande  Bebidas Energeticas                 Burn
## 2958         Extra Grande  Bebidas Energeticas              Glacéau
## 2959         Extra Grande          Colas Light       Coca-Cola Life
## 2960         Extra Grande          Colas Light      Coca-Cola Light
## 2961         Extra Grande          Colas Light      Coca-Cola Light
## 2962         Extra Grande          Colas Light      Coca-Cola Light
## 2963         Extra Grande          Colas Light      Coca-Cola Light
## 2964         Extra Grande          Colas Light      Coca-Cola Light
## 2965         Extra Grande          Colas Light      Coca-Cola Light
## 2966         Extra Grande          Colas Light      Coca-Cola Light
## 2967         Extra Grande          Colas Light      Coca-Cola Light
## 2968         Extra Grande          Colas Light      Coca-Cola Light
## 2969         Extra Grande          Colas Light       Coca-Cola Zero
## 2970         Extra Grande          Colas Light       Coca-Cola Zero
## 2971         Extra Grande          Colas Light       Coca-Cola Zero
## 2972         Extra Grande          Colas Light       Coca-Cola Zero
## 2973         Extra Grande        Colas Regular            Coca-Cola
## 2974         Extra Grande        Colas Regular            Coca-Cola
## 2975         Extra Grande        Colas Regular            Coca-Cola
## 2976         Extra Grande        Colas Regular            Coca-Cola
## 2977         Extra Grande        Colas Regular            Coca-Cola
## 2978         Extra Grande        Colas Regular            Coca-Cola
## 2979         Extra Grande        Colas Regular            Coca-Cola
## 2980         Extra Grande        Colas Regular            Coca-Cola
## 2981         Extra Grande        Colas Regular            Coca-Cola
## 2982         Extra Grande        Colas Regular            Coca-Cola
## 2983         Extra Grande        Colas Regular            Coca-Cola
## 2984         Extra Grande        Colas Regular            Coca-Cola
## 2985         Extra Grande        Colas Regular            Coca-Cola
## 2986         Extra Grande        Colas Regular            Coca-Cola
## 2987         Extra Grande        Colas Regular            Coca-Cola
## 2988         Extra Grande        Colas Regular            Coca-Cola
## 2989         Extra Grande        Colas Regular            Coca-Cola
## 2990         Extra Grande     Isotónicos Light        Powerade Zero
## 2991         Extra Grande   Isotónicos Regular             Powerade
## 2992         Extra Grande   Isotónicos Regular             Powerade
## 2993         Extra Grande   Isotónicos Regular             Powerade
## 2994         Extra Grande     Jugos y Néctares            Del Valle
## 2995         Extra Grande     Jugos y Néctares            Del Valle
## 2996         Extra Grande     Jugos y Néctares            Del Valle
## 2997         Extra Grande     Jugos y Néctares            Del Valle
## 2998         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 2999         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3000         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3001         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 3002         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 3003         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3004         Extra Grande        Sabores Light          Sprite Zero
## 3005         Extra Grande      Sabores Regular     Del Valle y Nada
## 3006         Extra Grande      Sabores Regular                Fanta
## 3007         Extra Grande      Sabores Regular                Fanta
## 3008         Extra Grande      Sabores Regular                Fanta
## 3009         Extra Grande      Sabores Regular                Fanta
## 3010         Extra Grande      Sabores Regular                Fanta
## 3011         Extra Grande      Sabores Regular                Fanta
## 3012         Extra Grande      Sabores Regular                Fanta
## 3013         Extra Grande      Sabores Regular                Fanta
## 3014         Extra Grande      Sabores Regular               Fresca
## 3015         Extra Grande      Sabores Regular               Fresca
## 3016         Extra Grande      Sabores Regular               Fresca
## 3017         Extra Grande      Sabores Regular               Fresca
## 3018         Extra Grande      Sabores Regular               Fresca
## 3019         Extra Grande      Sabores Regular               Fresca
## 3020         Extra Grande      Sabores Regular               Fresca
## 3021         Extra Grande      Sabores Regular               Fresca
## 3022         Extra Grande      Sabores Regular               Fresca
## 3023         Extra Grande      Sabores Regular         Manzana Lift
## 3024         Extra Grande      Sabores Regular         Manzana Lift
## 3025         Extra Grande      Sabores Regular         Manzana Lift
## 3026         Extra Grande      Sabores Regular         Manzana Lift
## 3027         Extra Grande      Sabores Regular         Manzana Lift
## 3028         Extra Grande      Sabores Regular               Senzao
## 3029         Extra Grande      Sabores Regular        Sidral Mundet
## 3030         Extra Grande      Sabores Regular        Sidral Mundet
## 3031         Extra Grande      Sabores Regular        Sidral Mundet
## 3032         Extra Grande      Sabores Regular        Sidral Mundet
## 3033         Extra Grande      Sabores Regular        Sidral Mundet
## 3034         Extra Grande      Sabores Regular        Sidral Mundet
## 3035         Extra Grande      Sabores Regular        Sidral Mundet
## 3036         Extra Grande      Sabores Regular        Sidral Mundet
## 3037         Extra Grande      Sabores Regular               Sprite
## 3038         Extra Grande      Sabores Regular               Sprite
## 3039         Extra Grande      Sabores Regular               Sprite
## 3040         Extra Grande      Sabores Regular               Sprite
## 3041         Extra Grande      Sabores Regular               Sprite
## 3042         Extra Grande      Sabores Regular               Sprite
## 3043         Extra Grande      Sabores Regular               Sprite
## 3044         Extra Grande      Sabores Regular               Sprite
## 3045         Extra Grande             Té Light       Fuze Tea Light
## 3046         Extra Grande           Té Regular             Fuze Tea
## 3047         Extra Grande           Té Regular             Fuze Tea
## 3048         Extra Grande           Té Regular             Fuze Tea
## 3049         Extra Grande           Té Regular             Fuze Tea
## 3050         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3051         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3052         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3053         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3054         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3055         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3056         Extra Grande     Bebidas de Fruta               Frutsi
## 3057         Extra Grande     Bebidas de Fruta                Pulpy
## 3058         Extra Grande     Bebidas de Fruta           Valle Frut
## 3059         Extra Grande     Bebidas de Fruta           Valle Frut
## 3060         Extra Grande  Bebidas Energeticas                 Burn
## 3061         Extra Grande          Colas Light       Coca-Cola Life
## 3062         Extra Grande          Colas Light       Coca-Cola Life
## 3063         Extra Grande          Colas Light      Coca-Cola Light
## 3064         Extra Grande          Colas Light      Coca-Cola Light
## 3065         Extra Grande          Colas Light      Coca-Cola Light
## 3066         Extra Grande          Colas Light      Coca-Cola Light
## 3067         Extra Grande          Colas Light      Coca-Cola Light
## 3068         Extra Grande          Colas Light       Coca-Cola Zero
## 3069         Extra Grande        Colas Regular            Coca-Cola
## 3070         Extra Grande        Colas Regular            Coca-Cola
## 3071         Extra Grande        Colas Regular            Coca-Cola
## 3072         Extra Grande        Colas Regular            Coca-Cola
## 3073         Extra Grande        Colas Regular            Coca-Cola
## 3074         Extra Grande        Colas Regular            Coca-Cola
## 3075         Extra Grande        Colas Regular            Coca-Cola
## 3076         Extra Grande        Colas Regular            Coca-Cola
## 3077         Extra Grande        Colas Regular            Coca-Cola
## 3078         Extra Grande        Colas Regular            Coca-Cola
## 3079         Extra Grande        Colas Regular            Coca-Cola
## 3080         Extra Grande        Colas Regular            Coca-Cola
## 3081         Extra Grande        Colas Regular            Coca-Cola
## 3082         Extra Grande        Colas Regular            Coca-Cola
## 3083         Extra Grande        Colas Regular            Coca-Cola
## 3084         Extra Grande        Colas Regular            Coca-Cola
## 3085         Extra Grande   Isotónicos Regular             Powerade
## 3086         Extra Grande   Isotónicos Regular             Powerade
## 3087         Extra Grande     Jugos y Néctares            Del Valle
## 3088         Extra Grande     Jugos y Néctares            Del Valle
## 3089         Extra Grande     Jugos y Néctares            Del Valle
## 3090         Extra Grande     Jugos y Néctares            Del Valle
## 3091         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3092         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 3093         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3094         Extra Grande        Sabores Light          Sprite Zero
## 3095         Extra Grande      Sabores Regular     Del Valle y Nada
## 3096         Extra Grande      Sabores Regular                Fanta
## 3097         Extra Grande      Sabores Regular                Fanta
## 3098         Extra Grande      Sabores Regular                Fanta
## 3099         Extra Grande      Sabores Regular                Fanta
## 3100         Extra Grande      Sabores Regular                Fanta
## 3101         Extra Grande      Sabores Regular                Fanta
## 3102         Extra Grande      Sabores Regular                Fanta
## 3103         Extra Grande      Sabores Regular               Fresca
## 3104         Extra Grande      Sabores Regular               Fresca
## 3105         Extra Grande      Sabores Regular               Fresca
## 3106         Extra Grande      Sabores Regular               Fresca
## 3107         Extra Grande      Sabores Regular         Manzana Lift
## 3108         Extra Grande      Sabores Regular         Manzana Lift
## 3109         Extra Grande      Sabores Regular         Manzana Lift
## 3110         Extra Grande      Sabores Regular         Manzana Lift
## 3111         Extra Grande      Sabores Regular        Sidral Mundet
## 3112         Extra Grande      Sabores Regular        Sidral Mundet
## 3113         Extra Grande      Sabores Regular        Sidral Mundet
## 3114         Extra Grande      Sabores Regular        Sidral Mundet
## 3115         Extra Grande      Sabores Regular        Sidral Mundet
## 3116         Extra Grande      Sabores Regular               Sprite
## 3117         Extra Grande      Sabores Regular               Sprite
## 3118         Extra Grande      Sabores Regular               Sprite
## 3119         Extra Grande      Sabores Regular               Sprite
## 3120         Extra Grande      Sabores Regular               Sprite
## 3121         Extra Grande      Sabores Regular               Sprite
## 3122         Extra Grande      Sabores Regular               Sprite
## 3123         Extra Grande           Té Regular             Fuze Tea
## 3124         Extra Grande           Té Regular             Fuze Tea
## 3125         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3126         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3127         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3128         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3129         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3130         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3131         Extra Grande      Agua Saborizada          Ciel Exprim
## 3132         Extra Grande      Agua Saborizada            Ciel Mini
## 3133         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3134         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3135         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3136         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3137         Extra Grande     Bebidas de Fruta               Frutsi
## 3138         Extra Grande     Bebidas de Fruta                Pulpy
## 3139         Extra Grande     Bebidas de Fruta           Valle Frut
## 3140         Extra Grande     Bebidas de Fruta           Valle Frut
## 3141         Extra Grande     Bebidas de Fruta           Valle Frut
## 3142         Extra Grande     Bebidas de Fruta           Valle Frut
## 3143         Extra Grande     Bebidas de Fruta           Valle Frut
## 3144         Extra Grande          Colas Light       Coca-Cola Life
## 3145         Extra Grande          Colas Light       Coca-Cola Life
## 3146         Extra Grande          Colas Light      Coca-Cola Light
## 3147         Extra Grande          Colas Light      Coca-Cola Light
## 3148         Extra Grande          Colas Light      Coca-Cola Light
## 3149         Extra Grande          Colas Light      Coca-Cola Light
## 3150         Extra Grande          Colas Light      Coca-Cola Light
## 3151         Extra Grande          Colas Light      Coca-Cola Light
## 3152         Extra Grande          Colas Light       Coca-Cola Zero
## 3153         Extra Grande          Colas Light       Coca-Cola Zero
## 3154         Extra Grande          Colas Light       Coca-Cola Zero
## 3155         Extra Grande          Colas Light       Coca-Cola Zero
## 3156         Extra Grande        Colas Regular            Coca-Cola
## 3157         Extra Grande        Colas Regular            Coca-Cola
## 3158         Extra Grande        Colas Regular            Coca-Cola
## 3159         Extra Grande        Colas Regular            Coca-Cola
## 3160         Extra Grande        Colas Regular            Coca-Cola
## 3161         Extra Grande        Colas Regular            Coca-Cola
## 3162         Extra Grande        Colas Regular            Coca-Cola
## 3163         Extra Grande        Colas Regular            Coca-Cola
## 3164         Extra Grande        Colas Regular            Coca-Cola
## 3165         Extra Grande        Colas Regular            Coca-Cola
## 3166         Extra Grande        Colas Regular            Coca-Cola
## 3167         Extra Grande        Colas Regular            Coca-Cola
## 3168         Extra Grande        Colas Regular            Coca-Cola
## 3169         Extra Grande        Colas Regular            Coca-Cola
## 3170         Extra Grande        Colas Regular            Coca-Cola
## 3171         Extra Grande        Colas Regular            Coca-Cola
## 3172         Extra Grande        Colas Regular            Coca-Cola
## 3173         Extra Grande     Isotónicos Light        Powerade Zero
## 3174         Extra Grande   Isotónicos Regular             Powerade
## 3175         Extra Grande   Isotónicos Regular             Powerade
## 3176         Extra Grande   Isotónicos Regular             Powerade
## 3177         Extra Grande     Jugos y Néctares            Del Valle
## 3178         Extra Grande     Jugos y Néctares            Del Valle
## 3179         Extra Grande     Jugos y Néctares            Del Valle
## 3180         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3181         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3182         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3183         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3184         Extra Grande        Sabores Light          Sprite Zero
## 3185         Extra Grande      Sabores Regular     Del Valle y Nada
## 3186         Extra Grande      Sabores Regular                Fanta
## 3187         Extra Grande      Sabores Regular                Fanta
## 3188         Extra Grande      Sabores Regular                Fanta
## 3189         Extra Grande      Sabores Regular                Fanta
## 3190         Extra Grande      Sabores Regular                Fanta
## 3191         Extra Grande      Sabores Regular                Fanta
## 3192         Extra Grande      Sabores Regular                Fanta
## 3193         Extra Grande      Sabores Regular                Fanta
## 3194         Extra Grande      Sabores Regular                Fanta
## 3195         Extra Grande      Sabores Regular               Fresca
## 3196         Extra Grande      Sabores Regular               Fresca
## 3197         Extra Grande      Sabores Regular               Fresca
## 3198         Extra Grande      Sabores Regular               Fresca
## 3199         Extra Grande      Sabores Regular               Fresca
## 3200         Extra Grande      Sabores Regular               Fresca
## 3201         Extra Grande      Sabores Regular               Fresca
## 3202         Extra Grande      Sabores Regular         Manzana Lift
## 3203         Extra Grande      Sabores Regular         Manzana Lift
## 3204         Extra Grande      Sabores Regular         Manzana Lift
## 3205         Extra Grande      Sabores Regular         Manzana Lift
## 3206         Extra Grande      Sabores Regular         Manzana Lift
## 3207         Extra Grande      Sabores Regular         Manzana Lift
## 3208         Extra Grande      Sabores Regular               Senzao
## 3209         Extra Grande      Sabores Regular        Sidral Mundet
## 3210         Extra Grande      Sabores Regular        Sidral Mundet
## 3211         Extra Grande      Sabores Regular        Sidral Mundet
## 3212         Extra Grande      Sabores Regular        Sidral Mundet
## 3213         Extra Grande      Sabores Regular               Sprite
## 3214         Extra Grande      Sabores Regular               Sprite
## 3215         Extra Grande      Sabores Regular               Sprite
## 3216         Extra Grande      Sabores Regular               Sprite
## 3217         Extra Grande      Sabores Regular               Sprite
## 3218         Extra Grande      Sabores Regular               Sprite
## 3219         Extra Grande      Sabores Regular               Sprite
## 3220         Extra Grande      Sabores Regular               Sprite
## 3221         Extra Grande      Sabores Regular               Sprite
## 3222         Extra Grande           Té Regular             Fuze Tea
## 3223         Extra Grande           Té Regular             Fuze Tea
## 3224         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3225         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3226         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3227         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3228         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3229         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3230         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3231         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3232         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3233         Extra Grande      Agua Saborizada          Ciel Exprim
## 3234         Extra Grande      Agua Saborizada          Ciel Exprim
## 3235         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3236         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3237         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3238         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3239         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3240         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3241         Extra Grande     Bebidas de Fruta               Frutsi
## 3242         Extra Grande     Bebidas de Fruta                Pulpy
## 3243         Extra Grande     Bebidas de Fruta           Valle Frut
## 3244         Extra Grande     Bebidas de Fruta           Valle Frut
## 3245         Extra Grande     Bebidas de Fruta           Valle Frut
## 3246         Extra Grande     Bebidas de Fruta           Valle Frut
## 3247         Extra Grande  Bebidas Energeticas                 Burn
## 3248         Extra Grande  Bebidas Energeticas                 Burn
## 3249         Extra Grande  Bebidas Energeticas              Glacéau
## 3250         Extra Grande          Colas Light       Coca-Cola Life
## 3251         Extra Grande          Colas Light       Coca-Cola Life
## 3252         Extra Grande          Colas Light      Coca-Cola Light
## 3253         Extra Grande          Colas Light      Coca-Cola Light
## 3254         Extra Grande          Colas Light      Coca-Cola Light
## 3255         Extra Grande          Colas Light      Coca-Cola Light
## 3256         Extra Grande          Colas Light      Coca-Cola Light
## 3257         Extra Grande          Colas Light      Coca-Cola Light
## 3258         Extra Grande          Colas Light      Coca-Cola Light
## 3259         Extra Grande          Colas Light      Coca-Cola Light
## 3260         Extra Grande          Colas Light       Coca-Cola Zero
## 3261         Extra Grande          Colas Light       Coca-Cola Zero
## 3262         Extra Grande          Colas Light       Coca-Cola Zero
## 3263         Extra Grande        Colas Regular            Coca-Cola
## 3264         Extra Grande        Colas Regular            Coca-Cola
## 3265         Extra Grande        Colas Regular            Coca-Cola
## 3266         Extra Grande        Colas Regular            Coca-Cola
## 3267         Extra Grande        Colas Regular            Coca-Cola
## 3268         Extra Grande        Colas Regular            Coca-Cola
## 3269         Extra Grande        Colas Regular            Coca-Cola
## 3270         Extra Grande        Colas Regular            Coca-Cola
## 3271         Extra Grande        Colas Regular            Coca-Cola
## 3272         Extra Grande        Colas Regular            Coca-Cola
## 3273         Extra Grande        Colas Regular            Coca-Cola
## 3274         Extra Grande        Colas Regular            Coca-Cola
## 3275         Extra Grande        Colas Regular            Coca-Cola
## 3276         Extra Grande        Colas Regular            Coca-Cola
## 3277         Extra Grande        Colas Regular            Coca-Cola
## 3278         Extra Grande        Colas Regular            Coca-Cola
## 3279         Extra Grande        Colas Regular            Coca-Cola
## 3280         Extra Grande        Colas Regular            Coca-Cola
## 3281         Extra Grande   Isotónicos Regular             Powerade
## 3282         Extra Grande   Isotónicos Regular             Powerade
## 3283         Extra Grande   Isotónicos Regular             Powerade
## 3284         Extra Grande     Jugos y Néctares            Del Valle
## 3285         Extra Grande     Jugos y Néctares            Del Valle
## 3286         Extra Grande     Jugos y Néctares            Del Valle
## 3287         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3288         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3289         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3290         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 3291         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 3292         Extra Grande    Leche UHT Regular    Santa Clara Light
## 3293         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3294         Extra Grande        Sabores Light          Sprite Zero
## 3295         Extra Grande      Sabores Regular     Del Valle y Nada
## 3296         Extra Grande      Sabores Regular                Fanta
## 3297         Extra Grande      Sabores Regular                Fanta
## 3298         Extra Grande      Sabores Regular                Fanta
## 3299         Extra Grande      Sabores Regular                Fanta
## 3300         Extra Grande      Sabores Regular                Fanta
## 3301         Extra Grande      Sabores Regular                Fanta
## 3302         Extra Grande      Sabores Regular                Fanta
## 3303         Extra Grande      Sabores Regular                Fanta
## 3304         Extra Grande      Sabores Regular                Fanta
## 3305         Extra Grande      Sabores Regular                Fanta
## 3306         Extra Grande      Sabores Regular                Fanta
## 3307         Extra Grande      Sabores Regular                Fanta
## 3308         Extra Grande      Sabores Regular               Fresca
## 3309         Extra Grande      Sabores Regular               Fresca
## 3310         Extra Grande      Sabores Regular               Fresca
## 3311         Extra Grande      Sabores Regular               Fresca
## 3312         Extra Grande      Sabores Regular               Fresca
## 3313         Extra Grande      Sabores Regular               Fresca
## 3314         Extra Grande      Sabores Regular               Fresca
## 3315         Extra Grande      Sabores Regular               Fresca
## 3316         Extra Grande      Sabores Regular               Fresca
## 3317         Extra Grande      Sabores Regular         Manzana Lift
## 3318         Extra Grande      Sabores Regular         Manzana Lift
## 3319         Extra Grande      Sabores Regular         Manzana Lift
## 3320         Extra Grande      Sabores Regular         Manzana Lift
## 3321         Extra Grande      Sabores Regular         Manzana Lift
## 3322         Extra Grande      Sabores Regular         Manzana Lift
## 3323         Extra Grande      Sabores Regular         Manzana Lift
## 3324         Extra Grande      Sabores Regular               Senzao
## 3325         Extra Grande      Sabores Regular        Sidral Mundet
## 3326         Extra Grande      Sabores Regular        Sidral Mundet
## 3327         Extra Grande      Sabores Regular        Sidral Mundet
## 3328         Extra Grande      Sabores Regular        Sidral Mundet
## 3329         Extra Grande      Sabores Regular        Sidral Mundet
## 3330         Extra Grande      Sabores Regular        Sidral Mundet
## 3331         Extra Grande      Sabores Regular               Sprite
## 3332         Extra Grande      Sabores Regular               Sprite
## 3333         Extra Grande      Sabores Regular               Sprite
## 3334         Extra Grande      Sabores Regular               Sprite
## 3335         Extra Grande      Sabores Regular               Sprite
## 3336         Extra Grande      Sabores Regular               Sprite
## 3337         Extra Grande      Sabores Regular               Sprite
## 3338         Extra Grande      Sabores Regular               Sprite
## 3339         Extra Grande      Sabores Regular               Sprite
## 3340         Extra Grande      Sabores Regular               Sprite
## 3341         Extra Grande           Té Regular             Fuze Tea
## 3342         Extra Grande           Té Regular             Fuze Tea
## 3343         Extra Grande           Té Regular             Fuze Tea
## 3344         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3345         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3346         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3347         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3348         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3349         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3350         Extra Grande     Bebidas de Fruta               Frutsi
## 3351         Extra Grande     Bebidas de Fruta                Pulpy
## 3352         Extra Grande     Bebidas de Fruta           Valle Frut
## 3353         Extra Grande     Bebidas de Fruta           Valle Frut
## 3354         Extra Grande     Bebidas de Fruta           Valle Frut
## 3355         Extra Grande     Bebidas de Fruta           Valle Frut
## 3356         Extra Grande  Bebidas Energeticas                 Burn
## 3357         Extra Grande  Bebidas Energeticas                 Burn
## 3358         Extra Grande          Colas Light       Coca-Cola Life
## 3359         Extra Grande          Colas Light      Coca-Cola Light
## 3360         Extra Grande          Colas Light      Coca-Cola Light
## 3361         Extra Grande        Colas Regular            Coca-Cola
## 3362         Extra Grande        Colas Regular            Coca-Cola
## 3363         Extra Grande        Colas Regular            Coca-Cola
## 3364         Extra Grande        Colas Regular            Coca-Cola
## 3365         Extra Grande        Colas Regular            Coca-Cola
## 3366         Extra Grande        Colas Regular            Coca-Cola
## 3367         Extra Grande        Colas Regular            Coca-Cola
## 3368         Extra Grande        Colas Regular            Coca-Cola
## 3369         Extra Grande        Colas Regular            Coca-Cola
## 3370         Extra Grande        Colas Regular            Coca-Cola
## 3371         Extra Grande     Isotónicos Light        Powerade Zero
## 3372         Extra Grande   Isotónicos Regular             Powerade
## 3373         Extra Grande   Isotónicos Regular             Powerade
## 3374         Extra Grande   Isotónicos Regular             Powerade
## 3375         Extra Grande     Jugos y Néctares            Del Valle
## 3376         Extra Grande     Jugos y Néctares            Del Valle
## 3377         Extra Grande     Jugos y Néctares            Del Valle
## 3378         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3379         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3380         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3381         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3382         Extra Grande      Sabores Regular                Fanta
## 3383         Extra Grande      Sabores Regular                Fanta
## 3384         Extra Grande      Sabores Regular                Fanta
## 3385         Extra Grande      Sabores Regular                Fanta
## 3386         Extra Grande      Sabores Regular                Fanta
## 3387         Extra Grande      Sabores Regular                Fanta
## 3388         Extra Grande      Sabores Regular               Fresca
## 3389         Extra Grande      Sabores Regular               Fresca
## 3390         Extra Grande      Sabores Regular               Fresca
## 3391         Extra Grande      Sabores Regular               Fresca
## 3392         Extra Grande      Sabores Regular               Fresca
## 3393         Extra Grande      Sabores Regular         Manzana Lift
## 3394         Extra Grande      Sabores Regular         Manzana Lift
## 3395         Extra Grande      Sabores Regular         Manzana Lift
## 3396         Extra Grande      Sabores Regular         Manzana Lift
## 3397         Extra Grande      Sabores Regular        Sidral Mundet
## 3398         Extra Grande      Sabores Regular        Sidral Mundet
## 3399         Extra Grande      Sabores Regular        Sidral Mundet
## 3400         Extra Grande      Sabores Regular               Sprite
## 3401         Extra Grande      Sabores Regular               Sprite
## 3402         Extra Grande      Sabores Regular               Sprite
## 3403         Extra Grande      Sabores Regular               Sprite
## 3404         Extra Grande      Sabores Regular               Sprite
## 3405         Extra Grande      Sabores Regular               Sprite
## 3406         Extra Grande           Té Regular             Fuze Tea
## 3407         Extra Grande           Té Regular             Fuze Tea
## 3408         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3409         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3410         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3411         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3412         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3413         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3414         Extra Grande      Agua Saborizada          Ciel Exprim
## 3415         Extra Grande      Agua Saborizada          Ciel Exprim
## 3416         Extra Grande      Agua Saborizada            Ciel Mini
## 3417         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3418         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3419         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3420         Extra Grande     Bebidas de Fruta               Frutsi
## 3421         Extra Grande     Bebidas de Fruta                Pulpy
## 3422         Extra Grande     Bebidas de Fruta           Valle Frut
## 3423         Extra Grande     Bebidas de Fruta           Valle Frut
## 3424         Extra Grande     Bebidas de Fruta           Valle Frut
## 3425         Extra Grande     Bebidas de Fruta           Valle Frut
## 3426         Extra Grande     Bebidas de Fruta           Valle Frut
## 3427         Extra Grande     Bebidas de Fruta           Valle Frut
## 3428         Extra Grande  Bebidas Energeticas                 Burn
## 3429         Extra Grande  Bebidas Energeticas                 Burn
## 3430         Extra Grande  Bebidas Energeticas              Glacéau
## 3431         Extra Grande          Colas Light       Coca-Cola Life
## 3432         Extra Grande          Colas Light       Coca-Cola Life
## 3433         Extra Grande          Colas Light       Coca-Cola Life
## 3434         Extra Grande          Colas Light       Coca-Cola Life
## 3435         Extra Grande          Colas Light      Coca-Cola Light
## 3436         Extra Grande          Colas Light      Coca-Cola Light
## 3437         Extra Grande          Colas Light      Coca-Cola Light
## 3438         Extra Grande          Colas Light      Coca-Cola Light
## 3439         Extra Grande          Colas Light      Coca-Cola Light
## 3440         Extra Grande          Colas Light       Coca-Cola Zero
## 3441         Extra Grande          Colas Light       Coca-Cola Zero
## 3442         Extra Grande          Colas Light       Coca-Cola Zero
## 3443         Extra Grande          Colas Light       Coca-Cola Zero
## 3444         Extra Grande        Colas Regular            Coca-Cola
## 3445         Extra Grande        Colas Regular            Coca-Cola
## 3446         Extra Grande        Colas Regular            Coca-Cola
## 3447         Extra Grande        Colas Regular            Coca-Cola
## 3448         Extra Grande        Colas Regular            Coca-Cola
## 3449         Extra Grande        Colas Regular            Coca-Cola
## 3450         Extra Grande        Colas Regular            Coca-Cola
## 3451         Extra Grande        Colas Regular            Coca-Cola
## 3452         Extra Grande        Colas Regular            Coca-Cola
## 3453         Extra Grande        Colas Regular            Coca-Cola
## 3454         Extra Grande        Colas Regular            Coca-Cola
## 3455         Extra Grande        Colas Regular            Coca-Cola
## 3456         Extra Grande        Colas Regular            Coca-Cola
## 3457         Extra Grande        Colas Regular            Coca-Cola
## 3458         Extra Grande        Colas Regular            Coca-Cola
## 3459         Extra Grande        Colas Regular            Coca-Cola
## 3460         Extra Grande        Colas Regular            Coca-Cola
## 3461         Extra Grande        Colas Regular            Coca-Cola
## 3462         Extra Grande     Isotónicos Light        Powerade Zero
## 3463         Extra Grande   Isotónicos Regular             Powerade
## 3464         Extra Grande   Isotónicos Regular             Powerade
## 3465         Extra Grande   Isotónicos Regular             Powerade
## 3466         Extra Grande     Jugos y Néctares            Del Valle
## 3467         Extra Grande     Jugos y Néctares            Del Valle
## 3468         Extra Grande     Jugos y Néctares            Del Valle
## 3469         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3470         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3471         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3472         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 3473         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 3474         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 3475         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3476         Extra Grande        Sabores Light          Sprite Zero
## 3477         Extra Grande      Sabores Regular     Del Valle y Nada
## 3478         Extra Grande      Sabores Regular     Del Valle y Nada
## 3479         Extra Grande      Sabores Regular     Del Valle y Nada
## 3480         Extra Grande      Sabores Regular                Fanta
## 3481         Extra Grande      Sabores Regular                Fanta
## 3482         Extra Grande      Sabores Regular                Fanta
## 3483         Extra Grande      Sabores Regular                Fanta
## 3484         Extra Grande      Sabores Regular                Fanta
## 3485         Extra Grande      Sabores Regular                Fanta
## 3486         Extra Grande      Sabores Regular                Fanta
## 3487         Extra Grande      Sabores Regular                Fanta
## 3488         Extra Grande      Sabores Regular                Fanta
## 3489         Extra Grande      Sabores Regular               Fresca
## 3490         Extra Grande      Sabores Regular               Fresca
## 3491         Extra Grande      Sabores Regular               Fresca
## 3492         Extra Grande      Sabores Regular               Fresca
## 3493         Extra Grande      Sabores Regular               Fresca
## 3494         Extra Grande      Sabores Regular               Fresca
## 3495         Extra Grande      Sabores Regular               Fresca
## 3496         Extra Grande      Sabores Regular               Fresca
## 3497         Extra Grande      Sabores Regular               Fresca
## 3498         Extra Grande      Sabores Regular         Manzana Lift
## 3499         Extra Grande      Sabores Regular         Manzana Lift
## 3500         Extra Grande      Sabores Regular         Manzana Lift
## 3501         Extra Grande      Sabores Regular         Manzana Lift
## 3502         Extra Grande      Sabores Regular         Manzana Lift
## 3503         Extra Grande      Sabores Regular         Manzana Lift
## 3504         Extra Grande      Sabores Regular         Manzana Lift
## 3505         Extra Grande      Sabores Regular               Senzao
## 3506         Extra Grande      Sabores Regular        Sidral Mundet
## 3507         Extra Grande      Sabores Regular        Sidral Mundet
## 3508         Extra Grande      Sabores Regular        Sidral Mundet
## 3509         Extra Grande      Sabores Regular        Sidral Mundet
## 3510         Extra Grande      Sabores Regular        Sidral Mundet
## 3511         Extra Grande      Sabores Regular               Sprite
## 3512         Extra Grande      Sabores Regular               Sprite
## 3513         Extra Grande      Sabores Regular               Sprite
## 3514         Extra Grande      Sabores Regular               Sprite
## 3515         Extra Grande      Sabores Regular               Sprite
## 3516         Extra Grande      Sabores Regular               Sprite
## 3517         Extra Grande      Sabores Regular               Sprite
## 3518         Extra Grande      Sabores Regular               Sprite
## 3519         Extra Grande      Sabores Regular               Sprite
## 3520         Extra Grande             Té Light       Fuze Tea Light
## 3521         Extra Grande           Té Regular             Fuze Tea
## 3522         Extra Grande           Té Regular             Fuze Tea
## 3523         Extra Grande           Té Regular             Fuze Tea
## 3524         Extra Grande           Té Regular             Fuze Tea
## 3525         Extra Grande           Té Regular             Fuze Tea
## 3526         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3527         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3528         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3529         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3530         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3531         Extra Grande      Agua Saborizada            Ciel Mini
## 3532         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3533         Extra Grande     Bebidas de Fruta               Frutsi
## 3534         Extra Grande     Bebidas de Fruta           Valle Frut
## 3535         Extra Grande     Bebidas de Fruta           Valle Frut
## 3536         Extra Grande     Bebidas de Fruta           Valle Frut
## 3537         Extra Grande          Colas Light       Coca-Cola Life
## 3538         Extra Grande          Colas Light      Coca-Cola Light
## 3539         Extra Grande          Colas Light      Coca-Cola Light
## 3540         Extra Grande          Colas Light      Coca-Cola Light
## 3541         Extra Grande          Colas Light      Coca-Cola Light
## 3542         Extra Grande          Colas Light      Coca-Cola Light
## 3543         Extra Grande          Colas Light      Coca-Cola Light
## 3544         Extra Grande          Colas Light      Coca-Cola Light
## 3545         Extra Grande          Colas Light       Coca-Cola Zero
## 3546         Extra Grande        Colas Regular            Coca-Cola
## 3547         Extra Grande        Colas Regular            Coca-Cola
## 3548         Extra Grande        Colas Regular            Coca-Cola
## 3549         Extra Grande        Colas Regular            Coca-Cola
## 3550         Extra Grande        Colas Regular            Coca-Cola
## 3551         Extra Grande        Colas Regular            Coca-Cola
## 3552         Extra Grande        Colas Regular            Coca-Cola
## 3553         Extra Grande        Colas Regular            Coca-Cola
## 3554         Extra Grande        Colas Regular            Coca-Cola
## 3555         Extra Grande        Colas Regular            Coca-Cola
## 3556         Extra Grande        Colas Regular            Coca-Cola
## 3557         Extra Grande        Colas Regular            Coca-Cola
## 3558         Extra Grande        Colas Regular            Coca-Cola
## 3559         Extra Grande        Colas Regular            Coca-Cola
## 3560         Extra Grande        Colas Regular            Coca-Cola
## 3561         Extra Grande     Isotónicos Light        Powerade Zero
## 3562         Extra Grande   Isotónicos Regular             Powerade
## 3563         Extra Grande   Isotónicos Regular             Powerade
## 3564         Extra Grande   Isotónicos Regular             Powerade
## 3565         Extra Grande     Jugos y Néctares            Del Valle
## 3566         Extra Grande     Jugos y Néctares            Del Valle
## 3567         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3568         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3569         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3570         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3571         Extra Grande      Sabores Regular     Del Valle y Nada
## 3572         Extra Grande      Sabores Regular     Del Valle y Nada
## 3573         Extra Grande      Sabores Regular                Fanta
## 3574         Extra Grande      Sabores Regular                Fanta
## 3575         Extra Grande      Sabores Regular                Fanta
## 3576         Extra Grande      Sabores Regular                Fanta
## 3577         Extra Grande      Sabores Regular                Fanta
## 3578         Extra Grande      Sabores Regular                Fanta
## 3579         Extra Grande      Sabores Regular               Fresca
## 3580         Extra Grande      Sabores Regular               Fresca
## 3581         Extra Grande      Sabores Regular               Fresca
## 3582         Extra Grande      Sabores Regular               Fresca
## 3583         Extra Grande      Sabores Regular               Fresca
## 3584         Extra Grande      Sabores Regular               Fresca
## 3585         Extra Grande      Sabores Regular               Fresca
## 3586         Extra Grande      Sabores Regular         Manzana Lift
## 3587         Extra Grande      Sabores Regular         Manzana Lift
## 3588         Extra Grande      Sabores Regular         Manzana Lift
## 3589         Extra Grande      Sabores Regular         Manzana Lift
## 3590         Extra Grande      Sabores Regular        Sidral Mundet
## 3591         Extra Grande      Sabores Regular        Sidral Mundet
## 3592         Extra Grande      Sabores Regular        Sidral Mundet
## 3593         Extra Grande      Sabores Regular        Sidral Mundet
## 3594         Extra Grande      Sabores Regular        Sidral Mundet
## 3595         Extra Grande      Sabores Regular               Sprite
## 3596         Extra Grande      Sabores Regular               Sprite
## 3597         Extra Grande      Sabores Regular               Sprite
## 3598         Extra Grande      Sabores Regular               Sprite
## 3599         Extra Grande      Sabores Regular               Sprite
## 3600         Extra Grande      Sabores Regular               Sprite
## 3601         Extra Grande           Té Regular             Fuze Tea
## 3602         Extra Grande           Té Regular             Fuze Tea
## 3603         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3604         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3605         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3606         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3607         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3608         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3609         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3610         Extra Grande      Agua Saborizada          Ciel Exprim
## 3611         Extra Grande      Agua Saborizada            Ciel Mini
## 3612         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3613         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3614         Extra Grande     Bebidas de Fruta               Frutsi
## 3615         Extra Grande     Bebidas de Fruta                Pulpy
## 3616         Extra Grande     Bebidas de Fruta           Valle Frut
## 3617         Extra Grande     Bebidas de Fruta           Valle Frut
## 3618         Extra Grande     Bebidas de Fruta           Valle Frut
## 3619         Extra Grande     Bebidas de Fruta           Valle Frut
## 3620         Extra Grande  Bebidas Energeticas                 Burn
## 3621         Extra Grande  Bebidas Energeticas                 Burn
## 3622         Extra Grande  Bebidas Energeticas              Glacéau
## 3623         Extra Grande          Colas Light       Coca-Cola Life
## 3624         Extra Grande          Colas Light       Coca-Cola Life
## 3625         Extra Grande          Colas Light      Coca-Cola Light
## 3626         Extra Grande          Colas Light      Coca-Cola Light
## 3627         Extra Grande          Colas Light      Coca-Cola Light
## 3628         Extra Grande          Colas Light      Coca-Cola Light
## 3629         Extra Grande          Colas Light      Coca-Cola Light
## 3630         Extra Grande          Colas Light       Coca-Cola Zero
## 3631         Extra Grande          Colas Light       Coca-Cola Zero
## 3632         Extra Grande          Colas Light       Coca-Cola Zero
## 3633         Extra Grande        Colas Regular            Coca-Cola
## 3634         Extra Grande        Colas Regular            Coca-Cola
## 3635         Extra Grande        Colas Regular            Coca-Cola
## 3636         Extra Grande        Colas Regular            Coca-Cola
## 3637         Extra Grande        Colas Regular            Coca-Cola
## 3638         Extra Grande        Colas Regular            Coca-Cola
## 3639         Extra Grande        Colas Regular            Coca-Cola
## 3640         Extra Grande        Colas Regular            Coca-Cola
## 3641         Extra Grande        Colas Regular            Coca-Cola
## 3642         Extra Grande        Colas Regular            Coca-Cola
## 3643         Extra Grande        Colas Regular            Coca-Cola
## 3644         Extra Grande        Colas Regular            Coca-Cola
## 3645         Extra Grande        Colas Regular            Coca-Cola
## 3646         Extra Grande        Colas Regular            Coca-Cola
## 3647         Extra Grande        Colas Regular            Coca-Cola
## 3648         Extra Grande        Colas Regular            Coca-Cola
## 3649         Extra Grande     Isotónicos Light        Powerade Zero
## 3650         Extra Grande   Isotónicos Regular             Powerade
## 3651         Extra Grande   Isotónicos Regular             Powerade
## 3652         Extra Grande   Isotónicos Regular             Powerade
## 3653         Extra Grande     Jugos y Néctares            Del Valle
## 3654         Extra Grande     Jugos y Néctares            Del Valle
## 3655         Extra Grande     Jugos y Néctares            Del Valle
## 3656         Extra Grande     Jugos y Néctares            Del Valle
## 3657         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3658         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3659         Extra Grande        Sabores Light          Sprite Zero
## 3660         Extra Grande      Sabores Regular     Del Valle y Nada
## 3661         Extra Grande      Sabores Regular     Del Valle y Nada
## 3662         Extra Grande      Sabores Regular                Fanta
## 3663         Extra Grande      Sabores Regular                Fanta
## 3664         Extra Grande      Sabores Regular                Fanta
## 3665         Extra Grande      Sabores Regular                Fanta
## 3666         Extra Grande      Sabores Regular                Fanta
## 3667         Extra Grande      Sabores Regular                Fanta
## 3668         Extra Grande      Sabores Regular                Fanta
## 3669         Extra Grande      Sabores Regular               Fresca
## 3670         Extra Grande      Sabores Regular               Fresca
## 3671         Extra Grande      Sabores Regular               Fresca
## 3672         Extra Grande      Sabores Regular               Fresca
## 3673         Extra Grande      Sabores Regular               Fresca
## 3674         Extra Grande      Sabores Regular               Fresca
## 3675         Extra Grande      Sabores Regular               Fresca
## 3676         Extra Grande      Sabores Regular         Manzana Lift
## 3677         Extra Grande      Sabores Regular         Manzana Lift
## 3678         Extra Grande      Sabores Regular         Manzana Lift
## 3679         Extra Grande      Sabores Regular         Manzana Lift
## 3680         Extra Grande      Sabores Regular         Manzana Lift
## 3681         Extra Grande      Sabores Regular               Senzao
## 3682         Extra Grande      Sabores Regular        Sidral Mundet
## 3683         Extra Grande      Sabores Regular        Sidral Mundet
## 3684         Extra Grande      Sabores Regular        Sidral Mundet
## 3685         Extra Grande      Sabores Regular        Sidral Mundet
## 3686         Extra Grande      Sabores Regular        Sidral Mundet
## 3687         Extra Grande      Sabores Regular               Sprite
## 3688         Extra Grande      Sabores Regular               Sprite
## 3689         Extra Grande      Sabores Regular               Sprite
## 3690         Extra Grande      Sabores Regular               Sprite
## 3691         Extra Grande      Sabores Regular               Sprite
## 3692         Extra Grande      Sabores Regular               Sprite
## 3693         Extra Grande      Sabores Regular               Sprite
## 3694         Extra Grande           Té Regular             Fuze Tea
## 3695         Extra Grande           Té Regular             Fuze Tea
## 3696         Extra Grande           Té Regular             Fuze Tea
## 3697         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3698         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3699         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3700         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3701         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3702         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3703         Extra Grande      Agua Saborizada          Ciel Exprim
## 3704         Extra Grande      Agua Saborizada            Ciel Mini
## 3705         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3706         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3707         Extra Grande     Bebidas de Fruta               Frutsi
## 3708         Extra Grande     Bebidas de Fruta                Pulpy
## 3709         Extra Grande     Bebidas de Fruta           Valle Frut
## 3710         Extra Grande     Bebidas de Fruta           Valle Frut
## 3711         Extra Grande     Bebidas de Fruta           Valle Frut
## 3712         Extra Grande     Bebidas de Fruta           Valle Frut
## 3713         Extra Grande     Bebidas de Fruta           Valle Frut
## 3714         Extra Grande  Bebidas Energeticas                 Burn
## 3715         Extra Grande  Bebidas Energeticas                 Burn
## 3716         Extra Grande  Bebidas Energeticas              Glacéau
## 3717         Extra Grande          Colas Light       Coca-Cola Life
## 3718         Extra Grande          Colas Light       Coca-Cola Life
## 3719         Extra Grande          Colas Light       Coca-Cola Life
## 3720         Extra Grande          Colas Light      Coca-Cola Light
## 3721         Extra Grande          Colas Light      Coca-Cola Light
## 3722         Extra Grande          Colas Light      Coca-Cola Light
## 3723         Extra Grande          Colas Light      Coca-Cola Light
## 3724         Extra Grande          Colas Light       Coca-Cola Zero
## 3725         Extra Grande          Colas Light       Coca-Cola Zero
## 3726         Extra Grande        Colas Regular            Coca-Cola
## 3727         Extra Grande        Colas Regular            Coca-Cola
## 3728         Extra Grande        Colas Regular            Coca-Cola
## 3729         Extra Grande        Colas Regular            Coca-Cola
## 3730         Extra Grande        Colas Regular            Coca-Cola
## 3731         Extra Grande        Colas Regular            Coca-Cola
## 3732         Extra Grande        Colas Regular            Coca-Cola
## 3733         Extra Grande        Colas Regular            Coca-Cola
## 3734         Extra Grande        Colas Regular            Coca-Cola
## 3735         Extra Grande        Colas Regular            Coca-Cola
## 3736         Extra Grande        Colas Regular            Coca-Cola
## 3737         Extra Grande        Colas Regular            Coca-Cola
## 3738         Extra Grande        Colas Regular            Coca-Cola
## 3739         Extra Grande        Colas Regular            Coca-Cola
## 3740         Extra Grande        Colas Regular            Coca-Cola
## 3741         Extra Grande        Colas Regular            Coca-Cola
## 3742         Extra Grande   Isotónicos Regular             Powerade
## 3743         Extra Grande   Isotónicos Regular             Powerade
## 3744         Extra Grande     Jugos y Néctares            Del Valle
## 3745         Extra Grande     Jugos y Néctares            Del Valle
## 3746         Extra Grande     Jugos y Néctares            Del Valle
## 3747         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3748         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3749         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3750         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3751         Extra Grande        Sabores Light  Sidral Mundet Light
## 3752         Extra Grande      Sabores Regular     Del Valle y Nada
## 3753         Extra Grande      Sabores Regular                Fanta
## 3754         Extra Grande      Sabores Regular                Fanta
## 3755         Extra Grande      Sabores Regular                Fanta
## 3756         Extra Grande      Sabores Regular                Fanta
## 3757         Extra Grande      Sabores Regular                Fanta
## 3758         Extra Grande      Sabores Regular                Fanta
## 3759         Extra Grande      Sabores Regular                Fanta
## 3760         Extra Grande      Sabores Regular                Fanta
## 3761         Extra Grande      Sabores Regular               Fresca
## 3762         Extra Grande      Sabores Regular               Fresca
## 3763         Extra Grande      Sabores Regular               Fresca
## 3764         Extra Grande      Sabores Regular               Fresca
## 3765         Extra Grande      Sabores Regular               Fresca
## 3766         Extra Grande      Sabores Regular               Fresca
## 3767         Extra Grande      Sabores Regular               Fresca
## 3768         Extra Grande      Sabores Regular               Fresca
## 3769         Extra Grande      Sabores Regular         Manzana Lift
## 3770         Extra Grande      Sabores Regular         Manzana Lift
## 3771         Extra Grande      Sabores Regular         Manzana Lift
## 3772         Extra Grande      Sabores Regular         Manzana Lift
## 3773         Extra Grande      Sabores Regular         Manzana Lift
## 3774         Extra Grande      Sabores Regular         Manzana Lift
## 3775         Extra Grande      Sabores Regular        Sidral Mundet
## 3776         Extra Grande      Sabores Regular        Sidral Mundet
## 3777         Extra Grande      Sabores Regular        Sidral Mundet
## 3778         Extra Grande      Sabores Regular        Sidral Mundet
## 3779         Extra Grande      Sabores Regular        Sidral Mundet
## 3780         Extra Grande      Sabores Regular        Sidral Mundet
## 3781         Extra Grande      Sabores Regular               Sprite
## 3782         Extra Grande      Sabores Regular               Sprite
## 3783         Extra Grande      Sabores Regular               Sprite
## 3784         Extra Grande      Sabores Regular               Sprite
## 3785         Extra Grande      Sabores Regular               Sprite
## 3786         Extra Grande      Sabores Regular               Sprite
## 3787         Extra Grande      Sabores Regular               Sprite
## 3788         Extra Grande      Sabores Regular               Sprite
## 3789         Extra Grande           Té Regular             Fuze Tea
## 3790         Extra Grande           Té Regular             Fuze Tea
## 3791         Extra Grande           Té Regular             Fuze Tea
## 3792         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3793         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3794         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3795         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3796         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3797         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3798         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3799         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3800         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3801         Extra Grande      Agua Saborizada          Ciel Exprim
## 3802         Extra Grande      Agua Saborizada            Ciel Mini
## 3803         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3804         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3805         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3806         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3807         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3808         Extra Grande     Bebidas de Fruta               Frutsi
## 3809         Extra Grande     Bebidas de Fruta                Pulpy
## 3810         Extra Grande     Bebidas de Fruta           Valle Frut
## 3811         Extra Grande     Bebidas de Fruta           Valle Frut
## 3812         Extra Grande     Bebidas de Fruta           Valle Frut
## 3813         Extra Grande     Bebidas de Fruta           Valle Frut
## 3814         Extra Grande     Bebidas de Fruta           Valle Frut
## 3815         Extra Grande  Bebidas Energeticas                 Burn
## 3816         Extra Grande  Bebidas Energeticas                 Burn
## 3817         Extra Grande  Bebidas Energeticas              Glacéau
## 3818         Extra Grande          Colas Light       Coca-Cola Life
## 3819         Extra Grande          Colas Light      Coca-Cola Light
## 3820         Extra Grande          Colas Light      Coca-Cola Light
## 3821         Extra Grande          Colas Light      Coca-Cola Light
## 3822         Extra Grande        Colas Regular            Coca-Cola
## 3823         Extra Grande        Colas Regular            Coca-Cola
## 3824         Extra Grande        Colas Regular            Coca-Cola
## 3825         Extra Grande        Colas Regular            Coca-Cola
## 3826         Extra Grande        Colas Regular            Coca-Cola
## 3827         Extra Grande        Colas Regular            Coca-Cola
## 3828         Extra Grande        Colas Regular            Coca-Cola
## 3829         Extra Grande        Colas Regular            Coca-Cola
## 3830         Extra Grande        Colas Regular            Coca-Cola
## 3831         Extra Grande        Colas Regular            Coca-Cola
## 3832         Extra Grande        Colas Regular            Coca-Cola
## 3833         Extra Grande        Colas Regular            Coca-Cola
## 3834         Extra Grande        Colas Regular            Coca-Cola
## 3835         Extra Grande        Colas Regular            Coca-Cola
## 3836         Extra Grande     Isotónicos Light        Powerade Zero
## 3837         Extra Grande   Isotónicos Regular             Powerade
## 3838         Extra Grande   Isotónicos Regular             Powerade
## 3839         Extra Grande   Isotónicos Regular             Powerade
## 3840         Extra Grande     Jugos y Néctares            Del Valle
## 3841         Extra Grande     Jugos y Néctares            Del Valle
## 3842         Extra Grande     Jugos y Néctares            Del Valle
## 3843         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3844         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3845         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3846         Extra Grande    Leche UHT Regular    Santa Clara Light
## 3847         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3848         Extra Grande        Sabores Light  Sidral Mundet Light
## 3849         Extra Grande      Sabores Regular     Del Valle y Nada
## 3850         Extra Grande      Sabores Regular                Fanta
## 3851         Extra Grande      Sabores Regular                Fanta
## 3852         Extra Grande      Sabores Regular                Fanta
## 3853         Extra Grande      Sabores Regular                Fanta
## 3854         Extra Grande      Sabores Regular                Fanta
## 3855         Extra Grande      Sabores Regular                Fanta
## 3856         Extra Grande      Sabores Regular                Fanta
## 3857         Extra Grande      Sabores Regular                Fanta
## 3858         Extra Grande      Sabores Regular                Fanta
## 3859         Extra Grande      Sabores Regular                Fanta
## 3860         Extra Grande      Sabores Regular               Fresca
## 3861         Extra Grande      Sabores Regular               Fresca
## 3862         Extra Grande      Sabores Regular               Fresca
## 3863         Extra Grande      Sabores Regular               Fresca
## 3864         Extra Grande      Sabores Regular               Fresca
## 3865         Extra Grande      Sabores Regular               Fresca
## 3866         Extra Grande      Sabores Regular               Fresca
## 3867         Extra Grande      Sabores Regular               Fresca
## 3868         Extra Grande      Sabores Regular               Fresca
## 3869         Extra Grande      Sabores Regular               Fresca
## 3870         Extra Grande      Sabores Regular         Manzana Lift
## 3871         Extra Grande      Sabores Regular         Manzana Lift
## 3872         Extra Grande      Sabores Regular         Manzana Lift
## 3873         Extra Grande      Sabores Regular         Manzana Lift
## 3874         Extra Grande      Sabores Regular         Manzana Lift
## 3875         Extra Grande      Sabores Regular         Manzana Lift
## 3876         Extra Grande      Sabores Regular         Manzana Lift
## 3877         Extra Grande      Sabores Regular        Sidral Mundet
## 3878         Extra Grande      Sabores Regular        Sidral Mundet
## 3879         Extra Grande      Sabores Regular        Sidral Mundet
## 3880         Extra Grande      Sabores Regular        Sidral Mundet
## 3881         Extra Grande      Sabores Regular        Sidral Mundet
## 3882         Extra Grande      Sabores Regular        Sidral Mundet
## 3883         Extra Grande      Sabores Regular               Sprite
## 3884         Extra Grande      Sabores Regular               Sprite
## 3885         Extra Grande      Sabores Regular               Sprite
## 3886         Extra Grande      Sabores Regular               Sprite
## 3887         Extra Grande      Sabores Regular               Sprite
## 3888         Extra Grande      Sabores Regular               Sprite
## 3889         Extra Grande      Sabores Regular               Sprite
## 3890         Extra Grande      Sabores Regular               Sprite
## 3891         Extra Grande      Sabores Regular               Sprite
## 3892         Extra Grande      Sabores Regular               Sprite
## 3893         Extra Grande           Té Regular             Fuze Tea
## 3894         Extra Grande           Té Regular             Fuze Tea
## 3895         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3896         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3897         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3898         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3899         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3900         Extra Grande      Agua Saborizada            Ciel Mini
## 3901         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3902         Extra Grande     Bebidas de Fruta               Bebere
## 3903         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3904         Extra Grande     Bebidas de Fruta               Frutsi
## 3905         Extra Grande     Bebidas de Fruta                Pulpy
## 3906         Extra Grande     Bebidas de Fruta           Valle Frut
## 3907         Extra Grande     Bebidas de Fruta           Valle Frut
## 3908         Extra Grande     Bebidas de Fruta           Valle Frut
## 3909         Extra Grande     Bebidas de Fruta           Valle Frut
## 3910         Extra Grande     Bebidas de Fruta           Valle Frut
## 3911         Extra Grande     Bebidas de Fruta           Valle Frut
## 3912         Extra Grande  Bebidas Energeticas                 Burn
## 3913         Extra Grande  Bebidas Energeticas                 Burn
## 3914         Extra Grande  Bebidas Energeticas              Glacéau
## 3915         Extra Grande          Colas Light       Coca-Cola Life
## 3916         Extra Grande          Colas Light       Coca-Cola Life
## 3917         Extra Grande          Colas Light      Coca-Cola Light
## 3918         Extra Grande          Colas Light      Coca-Cola Light
## 3919         Extra Grande          Colas Light      Coca-Cola Light
## 3920         Extra Grande          Colas Light      Coca-Cola Light
## 3921         Extra Grande          Colas Light      Coca-Cola Light
## 3922         Extra Grande          Colas Light       Coca-Cola Zero
## 3923         Extra Grande        Colas Regular            Coca-Cola
## 3924         Extra Grande        Colas Regular            Coca-Cola
## 3925         Extra Grande        Colas Regular            Coca-Cola
## 3926         Extra Grande        Colas Regular            Coca-Cola
## 3927         Extra Grande        Colas Regular            Coca-Cola
## 3928         Extra Grande        Colas Regular            Coca-Cola
## 3929         Extra Grande        Colas Regular            Coca-Cola
## 3930         Extra Grande        Colas Regular            Coca-Cola
## 3931         Extra Grande        Colas Regular            Coca-Cola
## 3932         Extra Grande        Colas Regular            Coca-Cola
## 3933         Extra Grande        Colas Regular            Coca-Cola
## 3934         Extra Grande        Colas Regular            Coca-Cola
## 3935         Extra Grande        Colas Regular            Coca-Cola
## 3936         Extra Grande        Colas Regular            Coca-Cola
## 3937         Extra Grande   Isotónicos Regular             Powerade
## 3938         Extra Grande   Isotónicos Regular             Powerade
## 3939         Extra Grande   Isotónicos Regular             Powerade
## 3940         Extra Grande     Jugos y Néctares            Del Valle
## 3941         Extra Grande     Jugos y Néctares            Del Valle
## 3942         Extra Grande     Jugos y Néctares            Del Valle
## 3943         Extra Grande     Jugos y Néctares            Del Valle
## 3944         Extra Grande     Jugos y Néctares            Del Valle
## 3945         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3946         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3947         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3948         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3949         Extra Grande      Sabores Regular     Del Valle y Nada
## 3950         Extra Grande      Sabores Regular                Fanta
## 3951         Extra Grande      Sabores Regular                Fanta
## 3952         Extra Grande      Sabores Regular                Fanta
## 3953         Extra Grande      Sabores Regular                Fanta
## 3954         Extra Grande      Sabores Regular                Fanta
## 3955         Extra Grande      Sabores Regular                Fanta
## 3956         Extra Grande      Sabores Regular                Fanta
## 3957         Extra Grande      Sabores Regular                Fanta
## 3958         Extra Grande      Sabores Regular               Fresca
## 3959         Extra Grande      Sabores Regular               Fresca
## 3960         Extra Grande      Sabores Regular               Fresca
## 3961         Extra Grande      Sabores Regular               Fresca
## 3962         Extra Grande      Sabores Regular               Fresca
## 3963         Extra Grande      Sabores Regular               Fresca
## 3964         Extra Grande      Sabores Regular               Fresca
## 3965         Extra Grande      Sabores Regular               Fresca
## 3966         Extra Grande      Sabores Regular         Manzana Lift
## 3967         Extra Grande      Sabores Regular         Manzana Lift
## 3968         Extra Grande      Sabores Regular         Manzana Lift
## 3969         Extra Grande      Sabores Regular         Manzana Lift
## 3970         Extra Grande      Sabores Regular         Manzana Lift
## 3971         Extra Grande      Sabores Regular         Manzana Lift
## 3972         Extra Grande      Sabores Regular        Sidral Mundet
## 3973         Extra Grande      Sabores Regular        Sidral Mundet
## 3974         Extra Grande      Sabores Regular        Sidral Mundet
## 3975         Extra Grande      Sabores Regular        Sidral Mundet
## 3976         Extra Grande      Sabores Regular        Sidral Mundet
## 3977         Extra Grande      Sabores Regular        Sidral Mundet
## 3978         Extra Grande      Sabores Regular               Sprite
## 3979         Extra Grande      Sabores Regular               Sprite
## 3980         Extra Grande      Sabores Regular               Sprite
## 3981         Extra Grande      Sabores Regular               Sprite
## 3982         Extra Grande      Sabores Regular               Sprite
## 3983         Extra Grande      Sabores Regular               Sprite
## 3984         Extra Grande      Sabores Regular               Sprite
## 3985         Extra Grande      Sabores Regular               Sprite
## 3986         Extra Grande           Té Regular             Fuze Tea
## 3987         Extra Grande           Té Regular             Fuze Tea
## 3988         Extra Grande           Té Regular             Fuze Tea
## 3989         Extra Grande           Té Regular             Fuze Tea
## 3990         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3991         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3992         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3993         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3994         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3995         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3996         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3997         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3998         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3999         Extra Grande      Agua Purificada Ciel Agua Purificada
##          Presentacion     Tamaño Retornable_NR Enero Febrero Marzo Abril Mayo
## 1           600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2        1 Ltro. N.R. Individual No Retornable    NA       2     8     4    4
## 3         1.5 Lts. NR Individual No Retornable    NA      NA     3     6    3
## 4           600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 5      300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 6        1 Ltro. N.R. Individual No Retornable    NA      NA     1    NA   NA
## 7      250 ml. NR PET Individual No Retornable     1      NA    NA    NA    0
## 8           600 ml NR Individual No Retornable    NA       1    NA     1   NA
## 9      250 ml. NR PET Individual No Retornable     3       3     4     4    4
## 10          400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 11       1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 12    100 ml NR Tetra Individual No Retornable     0      NA    NA    NA   NA
## 13      12 Oz. NR Pet Individual No Retornable    NA       2     1     2    1
## 14          2 Lts. NR   Familiar No Retornable     3       3     3     3    3
## 15        Lata 450 ml Individual No Retornable    NA      NA    NA    NA   NA
## 16       1 Ltro. N.R.   Familiar No Retornable     4      NA    NA     2   NA
## 17         2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 18   500 ml NR Vidrio Individual No Retornable     6      NA    NA     4   NA
## 19       1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 20       1.250 Lts NR   Familiar No Retornable    13      13     8    21   29
## 21        1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 22       1.5 Lts. Ret   Familiar    Retornable    41      38    44    76   57
## 23      12 Oz. NR Pet Individual No Retornable    15      11     9    18   17
## 24         12 Oz. Ret Individual    Retornable     5       2     2     3    3
## 25          2 Lts. NR   Familiar No Retornable    NA      NA    NA     6   NA
## 26         2 Lts. Ret   Familiar    Retornable    14       6     8    14    3
## 27        2.5 Lts. NR   Familiar No Retornable    14      21    28    32   14
## 28   2.5 Lts. Ret Pet   Familiar    Retornable    99      81    81   109   81
## 29   500 ml NR Vidrio Individual No Retornable    25       6    11    27   27
## 30         500 ml Ret Individual    Retornable    95      74    80   129  106
## 31           8 Oz. NR Individual No Retornable     3       2     1     3    4
## 32               Lata Individual No Retornable     2       3     2     3    5
## 33        Lata 16 Oz. Individual No Retornable     6      NA     4     2    4
## 34        Lata 235 ml Individual No Retornable     3       1    NA     1    1
## 35          600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 36       1 Ltro. N.R. Individual No Retornable    NA      NA     1     1    1
## 37      500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 38          600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 39       250 ml Tetra Individual No Retornable     2       0     0     0    0
## 40      413 ml NR VId Individual No Retornable     1       1     1     0    1
## 41     250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 42     300 ML. NR PET Individual No Retornable     0      NA    NA     0   NA
## 43      1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 44       200 ml Tetra Individual No Retornable    NA      NA     0     0    0
## 45          600 ml NR Individual No Retornable     1       1    NA     1    1
## 46        Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 47       1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 48          2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 49     250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 50          400 ml NR Individual No Retornable    NA      NA     0    NA    1
## 51         500 ml Ret Individual    Retornable     1      NA     1     2    2
## 52          600 ml NR Individual No Retornable     2      NA     1     2    1
## 53               Lata Individual No Retornable     0      NA    NA     0   NA
## 54        Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 55       1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 56     250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 57          400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 58         500 ml Ret Individual    Retornable     1      NA     1     2    2
## 59          600 ml NR Individual No Retornable    NA       1    NA    NA    2
## 60               Lata Individual No Retornable     0      NA    NA     0   NA
## 61        Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 62     250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 63          400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 64         500 ml Ret Individual    Retornable     1      NA     1     2    2
## 65          600 ml NR Individual No Retornable    NA       1    NA     1    1
## 66               Lata Individual No Retornable     0      NA    NA     0   NA
## 67       1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 68          2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 69         500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 70          600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 71        Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 72       1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 73          2 Lts. NR   Familiar No Retornable    NA      NA     3    NA    3
## 74     250 ml. NR PET Individual No Retornable     0      NA    NA     1    0
## 75          400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 76         500 ml Ret Individual    Retornable     1      NA     1     2    4
## 77          600 ml NR Individual No Retornable     1       2     3     2    4
## 78               Lata Individual No Retornable     0      NA    NA     0   NA
## 79        Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 80      500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 81          600 ml NR Individual No Retornable     1       1     1     1    1
## 82          600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 83        1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 84          600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 85       1 Ltro. N.R. Individual No Retornable     2       8     4     8    4
## 86        1.5 Lts. NR Individual No Retornable     3      NA     3     6    6
## 87          5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 88          600 ml NR Individual No Retornable     5       3     3    NA    3
## 89          600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 90     300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 91      500 ml NR PET Individual No Retornable    NA      NA     1    NA   NA
## 92     250 ml. NR PET Individual No Retornable     2       3     3     3    4
## 93          400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 94       1 Ltro. N.R.   Familiar No Retornable     1      NA    NA     1    1
## 95      12 Oz. NR Pet Individual No Retornable     2      NA    NA     1    2
## 96          2 Lts. NR   Familiar No Retornable     3       3     6     3    3
## 97        Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 98        Lata 450 ml Individual No Retornable    NA      NA    NA    NA   NA
## 99      500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 100  500 ml NR Vidrio Individual No Retornable     2       4    NA     2    2
## 101       Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 102      1 Ltro. N.R.   Familiar No Retornable     2       2     2     2   NA
## 103         2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 104        2 Lts. Ret   Familiar    Retornable    NA      NA     3    NA   NA
## 105         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 106  500 ml NR Vidrio Individual No Retornable     2       2     2     2    4
## 107          8 Oz. NR Individual No Retornable     1      NA    NA    NA   NA
## 108       Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 109  500 ml NR Vidrio Individual No Retornable    NA      NA    NA     2   NA
## 110       Lata 235 ml Individual No Retornable     1      NA    NA    NA   NA
## 111      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 112      1.250 Lts NR   Familiar No Retornable     3      NA     3     8   NA
## 113       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 114      1.5 Lts. Ret   Familiar    Retornable     6       3     6     6    3
## 115     12 Oz. NR Pet Individual No Retornable     3       3     5     3    8
## 116         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 117        2 Lts. Ret   Familiar    Retornable     3       3     3     6    3
## 118       2.5 Lts. NR   Familiar No Retornable     7      NA     4    NA   NA
## 119  2.5 Lts. Ret Pet   Familiar    Retornable    46      39    35    32   53
## 120     500 ml NR PET Individual No Retornable     2       4     4     6    4
## 121  500 ml NR Vidrio Individual No Retornable     8      13    11     6   13
## 122        500 ml Ret Individual    Retornable    49      46    46    38   46
## 123          8 Oz. NR Individual No Retornable     5       3     3     5    3
## 124              Lata Individual No Retornable     2       2     2     2    2
## 125       Lata 235 ml Individual No Retornable     3       3     4     2    2
## 126      1 Ltro. N.R. Individual No Retornable     1       1    NA     1    3
## 127     500 ml NR PET Individual No Retornable    NA       1    NA     1   NA
## 128         600 ml NR Individual No Retornable     1       1    NA     2    4
## 129      250 ml Tetra Individual No Retornable     0       0     1     0    0
## 130     413 ml NR VId Individual No Retornable     3      NA     1     1    1
## 131     500 ml NR PET Individual No Retornable    NA       2    NA    NA   NA
## 132    250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 133      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 134    300 ML. NR PET Individual No Retornable     1       0    NA     0   NA
## 135     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 136      200 ml Tetra Individual No Retornable    NA       1    NA     0    0
## 137         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 138         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 139       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 140      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 141         2 Lts. NR   Familiar No Retornable     1      NA     1     1   NA
## 142         400 ml NR Individual No Retornable     0      NA    NA    NA    1
## 143        500 ml Ret Individual    Retornable     1      NA    NA     1    1
## 144         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 145       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 146      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 147         2 Lts. NR   Familiar No Retornable     1      NA     1     1   NA
## 148         400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 149        500 ml Ret Individual    Retornable     1      NA    NA     1    1
## 150         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 151       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 152       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 153         2 Lts. NR   Familiar No Retornable     1      NA     1     1   NA
## 154         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 155        500 ml Ret Individual    Retornable     1      NA    NA     1    1
## 156         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 157         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 158      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 159         2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 160         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 161        500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 162         600 ml NR Individual No Retornable    NA      NA     3    NA   NA
## 163       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 164       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 165      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 166         2 Lts. NR   Familiar No Retornable     1      NA     1     1    3
## 167         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 168        500 ml Ret Individual    Retornable     1      NA    NA     1    1
## 169         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 170       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 171     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 172         600 ml NR Individual No Retornable     1      NA     1    NA    3
## 173         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 174         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 175      1 Ltro. N.R. Individual No Retornable     2      27     6    15   17
## 176       1.5 Lts. NR Individual No Retornable     6      41    10    16   38
## 177    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 178     350 ML NR PET Individual No Retornable    NA      NA    NA    NA    1
## 179         600 ml NR Individual No Retornable    NA       5     8     5   15
## 180       1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 181    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 182       1.5 Lts. NR Individual No Retornable    NA      NA    NA     6   NA
## 183         600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 184         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 185    250 ml. NR PET Individual No Retornable     4       1     1     3    5
## 186         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 187      1 Ltro. N.R.   Familiar No Retornable     1       1    NA     3    4
## 188     12 Oz. NR Pet Individual No Retornable     2       2    NA     1    2
## 189         2 Lts. NR   Familiar No Retornable     6       6     6    17    6
## 190       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 191       Lata 450 ml Individual No Retornable    NA      NA    NA     1   NA
## 192     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 193      1 Ltro. N.R.   Familiar No Retornable    NA       6    NA    NA   NA
## 194        12 Oz. Ret Individual    Retornable    NA       2    NA    NA   NA
## 195  500 ml NR Vidrio Individual No Retornable     2       2    NA    NA   NA
## 196       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 197      1 Ltro. N.R.   Familiar No Retornable     6       6     8    11    8
## 198        12 Oz. Ret Individual    Retornable     2       3    NA    NA   NA
## 199         2 Lts. NR   Familiar No Retornable     3      11     3     6    6
## 200        2 Lts. Ret   Familiar    Retornable     8       8     6    11   11
## 201       2.5 Lts. NR   Familiar No Retornable     4       7     7     7   11
## 202         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 203  500 ml NR Vidrio Individual No Retornable    11      11    11    13   11
## 204          8 Oz. NR Individual No Retornable     2       3    NA     1    1
## 205              Lata Individual No Retornable    NA      NA    NA     2    3
## 206       Lata 235 ml Individual No Retornable    NA       1    NA     1   NA
## 207      1 Ltro. N.R.   Familiar No Retornable    NA       2     2    NA    2
## 208     12 Oz. NR Pet Individual No Retornable    NA      NA     0    NA   NA
## 209         2 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 210  500 ml NR Vidrio Individual No Retornable    NA       4     2     2    2
## 211      1 Ltro. N.R.   Familiar No Retornable    17      11    15    11   13
## 212      1.250 Lts NR   Familiar No Retornable     8      11    29     8   13
## 213       1.5 Lts. NR   Familiar No Retornable    NA       3     3    13    6
## 214      1.5 Lts. Ret   Familiar    Retornable    16      16    19    10   22
## 215     12 Oz. NR Pet Individual No Retornable     9       8     8     6    9
## 216        12 Oz. Ret Individual    Retornable     2       3     3     3    3
## 217         2 Lts. NR   Familiar No Retornable     6       6     6    14   17
## 218        2 Lts. Ret   Familiar    Retornable     6       8     6     8    8
## 219       2.5 Lts. NR   Familiar No Retornable    18      28    25    39   28
## 220  2.5 Lts. Ret Pet   Familiar    Retornable    56      53    32    56   56
## 221         400 ml NR Individual No Retornable    NA      NA    NA     5    2
## 222     500 ml NR PET Individual No Retornable     4       2     4     6    4
## 223  500 ml NR Vidrio Individual No Retornable    21      21    15    27   25
## 224        500 ml Ret Individual    Retornable    57      53    49    87   57
## 225          8 Oz. NR Individual No Retornable     3       7     6     9    8
## 226              Lata Individual No Retornable     5      11    NA     3    6
## 227       Lata 16 Oz. Individual No Retornable     2      10    NA    NA   NA
## 228       Lata 235 ml Individual No Retornable     1       5     4     4    3
## 229      1 Ltro. N.R. Individual No Retornable     1       1     2     2    2
## 230     500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 231         600 ml NR Individual No Retornable     3      NA     2     4    4
## 232     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 233   125 ml NR Tetra Individual No Retornable    NA       1    NA    NA   NA
## 234      250 ml Tetra Individual No Retornable     2       0    NA     0    0
## 235    250 ML. NR VID Individual No Retornable     1      NA    NA    NA    0
## 236     413 ml NR VId Individual No Retornable     6       5     3     3    4
## 237    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 238      1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 239     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 240     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 241      200 ml Tetra Individual No Retornable     0       0    NA     0    0
## 242         600 ml NR Individual No Retornable     1      NA    NA     1    1
## 243       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 244         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 245      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    2
## 246         2 Lts. NR   Familiar No Retornable     3       4     3     3    6
## 247       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2    4
## 248         400 ml NR Individual No Retornable    NA       1     1    NA    2
## 249        500 ml Ret Individual    Retornable     2       1     2     2    1
## 250         600 ml NR Individual No Retornable    NA       1     3     1    2
## 251       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 252         2 Lts. NR   Familiar No Retornable    NA       1    NA     6    3
## 253       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2    4
## 254         400 ml NR Individual No Retornable    NA       1    NA     1    1
## 255        500 ml Ret Individual    Retornable    NA       1    NA    NA    1
## 256         600 ml NR Individual No Retornable    NA       1     1     3    1
## 257       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 258         2 Lts. NR   Familiar No Retornable    NA       1    NA     3    3
## 259       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2    4
## 260         400 ml NR Individual No Retornable    NA       1     1    NA    4
## 261        500 ml Ret Individual    Retornable    NA       1     2    NA    1
## 262         600 ml NR Individual No Retornable    NA       1     2     2    1
## 263         600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 264         2 Lts. NR   Familiar No Retornable     3      11    NA     6    3
## 265       2.5 Lts. NR   Familiar No Retornable    NA       4    NA     4   NA
## 266        500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 267         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 268       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 269      1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 270         2 Lts. NR   Familiar No Retornable     6      10     8     8   11
## 271       2.5 Lts. NR   Familiar No Retornable    NA       4    NA     2    7
## 272         400 ml NR Individual No Retornable     0       1     2     0    8
## 273        500 ml Ret Individual    Retornable     2       3    NA     2    3
## 274         600 ml NR Individual No Retornable     2       2     4     3    2
## 275       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 276     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 277         600 ml NR Individual No Retornable     4       6     1     2    4
## 278       Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 279         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 280         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 281       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 282         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 283      1 Ltro. N.R. Individual No Retornable     4      11    66     2    2
## 284       1.5 Lts. NR Individual No Retornable     6       3    67     3    3
## 285    300 ML. NR PET Individual No Retornable    NA      NA    NA     0    0
## 286         5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 287         600 ml NR Individual No Retornable    NA      NA    51    NA   NA
## 288      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 289       1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 290         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 291    300 ML. NR PET Individual No Retornable    NA       0     2    NA    3
## 292      1 Ltro. N.R. Individual No Retornable    NA      NA     2     2    3
## 293       1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 294         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 295    250 ml. NR PET Individual No Retornable     1      NA    NA     1   NA
## 296         600 ml NR Individual No Retornable     3      NA     1     1   NA
## 297    250 ml. NR PET Individual No Retornable     4       1     6     5    5
## 298         400 ml NR Individual No Retornable     0      NA     1    NA   NA
## 299      1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 300      1 Ltro. N.R. Individual No Retornable    NA      NA     2    NA   NA
## 301     12 Oz. NR Pet Individual No Retornable    NA       2     4     1    1
## 302         2 Lts. NR   Familiar No Retornable    NA       6     8     6   NA
## 303         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 304       Lata 235 ml Individual No Retornable    NA      NA    NA     0    0
## 305       Lata 450 ml Individual No Retornable    NA      NA    NA     1    1
## 306     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 307      1 Ltro. N.R.   Familiar No Retornable     2       6    NA    NA   NA
## 308     237 ml NR Vid Individual No Retornable    NA      NA    NA    NA   NA
## 309  500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 310      1 Ltro. N.R.   Familiar No Retornable    NA      27    NA    27   NA
## 311         2 Lts. NR   Familiar No Retornable    48      NA    NA    70   NA
## 312       2.5 Lts. NR   Familiar No Retornable    14      18     4    56   NA
## 313  500 ml NR Vidrio Individual No Retornable    13      25    32    25   NA
## 314          8 Oz. NR Individual No Retornable     2       3     2    16   NA
## 315              Lata Individual No Retornable     2      NA    NA    NA    2
## 316      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 317          8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 318      1 Ltro. N.R.   Familiar No Retornable    36      27    NA    27   NA
## 319      1.250 Lts NR   Familiar No Retornable    NA      45    NA    34   NA
## 320       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 321      1.5 Lts. Ret   Familiar    Retornable    44       3    22    98   86
## 322     12 Oz. NR Pet Individual No Retornable     3      17    12    18   21
## 323        12 Oz. Ret Individual    Retornable    23      NA    NA    NA   NA
## 324         2 Lts. NR   Familiar No Retornable     8      42    NA    42   NA
## 325        2 Lts. Ret   Familiar    Retornable    NA       6    NA     8    6
## 326       2.5 Lts. NR   Familiar No Retornable    63      46   187     4   56
## 327  2.5 Lts. Ret Pet   Familiar    Retornable   240     222   278    42   95
## 328     500 ml NR PET Individual No Retornable     6       4     4     6    6
## 329  500 ml NR Vidrio Individual No Retornable    11      85    -4    25   53
## 330        500 ml Ret Individual    Retornable   192     129   205   499   11
## 331          8 Oz. NR Individual No Retornable    13      NA    15    13   NA
## 332              Lata Individual No Retornable    NA      NA     3    NA   NA
## 333       Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA    4
## 334       Lata 235 ml Individual No Retornable     1      15    NA    NA   NA
## 335         600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 336      1 Ltro. N.R. Individual No Retornable     1       2     1     5    1
## 337     500 ml NR PET Individual No Retornable    NA      NA     1     2    1
## 338         600 ml NR Individual No Retornable     1       3     3     5    2
## 339     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 340   125 ml NR Tetra Individual No Retornable    NA       1    NA    NA   NA
## 341      250 ml Tetra Individual No Retornable     2       2     0     1    1
## 342    250 ML. NR VID Individual No Retornable    NA      NA    NA    NA    0
## 343     413 ml NR VId Individual No Retornable     3       2    12     1    4
## 344     500 ml NR PET Individual No Retornable     3       1     1     4    2
## 345    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 346      1 Ltro. N.R.   Familiar No Retornable     4      NA     2     2    2
## 347    300 ML. NR PET Individual No Retornable     1      NA     1     1    1
## 348     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 349     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 350      200 ml Tetra Individual No Retornable    NA       1     1     0    0
## 351         600 ml NR Individual No Retornable     1       1     1     2    3
## 352       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 353         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 354       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 355      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 356        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 357         2 Lts. NR   Familiar No Retornable    NA      11    31     3    8
## 358        2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA    6
## 359    250 ml. NR PET Individual No Retornable     0       3    NA    NA   NA
## 360         400 ml NR Individual No Retornable    NA       2     1     1    2
## 361        500 ml Ret Individual    Retornable     2      NA     7     2    8
## 362         600 ml NR Individual No Retornable     1       1     3     1    1
## 363       Lata 235 ml Individual No Retornable    NA       2    NA    NA   NA
## 364      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 365         2 Lts. NR   Familiar No Retornable    NA       6    NA     3    6
## 366    250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 367         400 ml NR Individual No Retornable     1       1    NA     1    2
## 368        500 ml Ret Individual    Retornable     2      NA     3    NA    6
## 369         600 ml NR Individual No Retornable     1      NA     1     1    1
## 370       Lata 235 ml Individual No Retornable    NA       2    NA    NA   NA
## 371      1 Ltro. N.R.   Familiar No Retornable     2       2    NA     2    2
## 372        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 373         2 Lts. NR   Familiar No Retornable    NA      NA    NA    11    3
## 374    250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 375         400 ml NR Individual No Retornable    NA       2    NA     1    2
## 376     500 ml NR PET Individual No Retornable    NA      NA    NA     2   NA
## 377        500 ml Ret Individual    Retornable    NA      NA     7    NA    2
## 378         600 ml NR Individual No Retornable    NA       1     1     1   NA
## 379         600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 380      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 381         2 Lts. NR   Familiar No Retornable     8      11    28    NA   NA
## 382         400 ml NR Individual No Retornable    NA       1     0    NA    2
## 383        500 ml Ret Individual    Retornable    NA      NA     2    NA    6
## 384         600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 385       Lata 235 ml Individual No Retornable    NA       2    NA    NA   NA
## 386      1 Ltro. N.R.   Familiar No Retornable     4       2     4     2    2
## 387       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 388      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 389        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 390         2 Lts. NR   Familiar No Retornable    NA      11    42    11   NA
## 391        2 Lts. Ret   Familiar    Retornable    NA      NA     6     6    6
## 392    250 ml. NR PET Individual No Retornable     0       3    NA    NA   NA
## 393         400 ml NR Individual No Retornable    NA       1     1     1    0
## 394     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 395        500 ml Ret Individual    Retornable     2       2     7    NA    6
## 396         600 ml NR Individual No Retornable     3      NA     7     6    1
## 397       Lata 235 ml Individual No Retornable    NA       2    NA    NA   NA
## 398     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 399         600 ml NR Individual No Retornable     1       6    11     5   10
## 400       Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 401       Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 402         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 403       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 404         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 405      1 Ltro. N.R. Individual No Retornable     4       2     2     4    4
## 406       1.5 Lts. NR Individual No Retornable     6       3     3    10    3
## 407         600 ml NR Individual No Retornable     3      NA    NA    NA    3
## 408      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 409    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 410      1 Ltro. N.R. Individual No Retornable    NA       2    NA    NA   NA
## 411    250 ml. NR PET Individual No Retornable     0      NA     0     1   NA
## 412     500 ml NR PET Individual No Retornable    NA      NA     2    NA   NA
## 413         600 ml NR Individual No Retornable     1       1     1    NA    1
## 414    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 415         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 416      1 Ltro. N.R.   Familiar No Retornable    NA       2    NA     2    1
## 417      1 Ltro. N.R. Individual No Retornable     2      NA     2    NA   NA
## 418     12 Oz. NR Pet Individual No Retornable     2       1     1     1    2
## 419         2 Lts. NR   Familiar No Retornable     6       6     3     6    6
## 420         600 ml NR Individual No Retornable    NA      NA     3    NA    1
## 421       Lata 235 ml Individual No Retornable    NA       0     1     1    1
## 422       Lata 237 ml Individual No Retornable     1      NA    NA    NA   NA
## 423       Lata 450 ml Individual No Retornable     1       1     1     1    1
## 424     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 425  500 ml NR Vidrio Individual No Retornable     2      NA     2     2    2
## 426      1 Ltro. N.R.   Familiar No Retornable    11      11    17    11    8
## 427         2 Lts. NR   Familiar No Retornable     3       6     8    11   11
## 428       2.5 Lts. NR   Familiar No Retornable     4      NA    NA    NA   NA
## 429         400 ml NR Individual No Retornable     2       2     3     3    3
## 430  500 ml NR Vidrio Individual No Retornable    17      13    15     8   15
## 431          8 Oz. NR Individual No Retornable     1       1     2     1    1
## 432      1 Ltro. N.R.   Familiar No Retornable     2      NA     4     2    2
## 433         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 434  500 ml NR Vidrio Individual No Retornable     2       2     4     4    2
## 435          8 Oz. NR Individual No Retornable     1       1     1    NA   NA
## 436      1 Ltro. N.R.   Familiar No Retornable    21      NA    NA    NA    2
## 437      1.250 Lts NR   Familiar No Retornable    16      34    45    45   32
## 438       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 439      1.5 Lts. Ret   Familiar    Retornable    22      13    29    44   10
## 440     12 Oz. NR Pet Individual No Retornable     9       6    15    12   14
## 441        12 Oz. Ret Individual    Retornable     8       5     5     8    5
## 442         2 Lts. NR   Familiar No Retornable     3       3     6    13    3
## 443        2 Lts. Ret   Familiar    Retornable     6       3     3     8    3
## 444       2.5 Lts. NR   Familiar No Retornable    49      60    49    63   60
## 445  2.5 Lts. Ret Pet   Familiar    Retornable   102      70   116   134  130
## 446     500 ml NR PET Individual No Retornable     4       6     4     8    6
## 447  500 ml NR Vidrio Individual No Retornable    27      23    42    40   32
## 448        500 ml Ret Individual    Retornable    72      55    70    80   91
## 449         710 ml NR Individual No Retornable    NA       3    NA    NA   NA
## 450          8 Oz. NR Individual No Retornable    21      14    15    15   16
## 451              Lata Individual No Retornable     2       3     3     2    2
## 452       Lata 235 ml Individual No Retornable     3       3     3     3    2
## 453         600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 454      1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 455     500 ml NR PET Individual No Retornable     1       1    NA     2   NA
## 456         600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 457      250 ml Tetra Individual No Retornable     1       0     0     0    0
## 458    250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 459     413 ml NR VId Individual No Retornable     2      NA     3     1    1
## 460    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 461      1 Ltro. N.R.   Familiar No Retornable     2      NA     2    NA    2
## 462    300 ML. NR PET Individual No Retornable     1      NA    NA    NA    0
## 463     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 464     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 465      200 ml Tetra Individual No Retornable     1       0     0     0    0
## 466         600 ml NR Individual No Retornable     3       1     1     2    3
## 467         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 468       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 469      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 470         2 Lts. NR   Familiar No Retornable     3      NA     1    NA   NA
## 471       2.5 Lts. NR   Familiar No Retornable    NA      NA     7     4    4
## 472    250 ml. NR PET Individual No Retornable     0      NA     0    NA   NA
## 473         400 ml NR Individual No Retornable     1      NA     0     0    1
## 474     500 ml NR PET Individual No Retornable    NA       2    NA    NA    2
## 475        500 ml Ret Individual    Retornable    NA       2    NA     3    2
## 476         600 ml NR Individual No Retornable     1       1    NA     2    1
## 477       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 478      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 479         2 Lts. NR   Familiar No Retornable    NA      NA     1    NA    3
## 480       2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA   NA
## 481    250 ml. NR PET Individual No Retornable     0      NA     0    NA   NA
## 482         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 483     500 ml NR PET Individual No Retornable     2      NA    NA    NA   NA
## 484        500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 485         600 ml NR Individual No Retornable     1      NA     1     1    1
## 486       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 487         2 Lts. NR   Familiar No Retornable    NA      NA     1     3    3
## 488       2.5 Lts. NR   Familiar No Retornable    NA       4     4     7   NA
## 489    250 ml. NR PET Individual No Retornable     0      NA     0    NA   NA
## 490         400 ml NR Individual No Retornable    NA      NA     0    NA    0
## 491     500 ml NR PET Individual No Retornable    NA       2    NA    NA    2
## 492        500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 493         600 ml NR Individual No Retornable     1       2     1     3    1
## 494     500 ml NR PET Individual No Retornable    NA       2    NA    NA   NA
## 495         600 ml NR Individual No Retornable     1      NA     2    NA   NA
## 496      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 497         2 Lts. NR   Familiar No Retornable    NA       3    NA     3   NA
## 498       2.5 Lts. NR   Familiar No Retornable    NA       4    11     7    4
## 499    250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 500         400 ml NR Individual No Retornable    NA       0    NA    NA    0
## 501         600 ml NR Individual No Retornable     1      NA     1    NA    1
## 502       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 503      1 Ltro. N.R.   Familiar No Retornable     4      NA    NA     2   NA
## 504      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 505         2 Lts. NR   Familiar No Retornable     3      NA     1    NA   NA
## 506       2.5 Lts. NR   Familiar No Retornable     4      NA    11     4    7
## 507    250 ml. NR PET Individual No Retornable     0      NA     0    NA   NA
## 508         400 ml NR Individual No Retornable    NA      NA    NA     0    1
## 509     500 ml NR PET Individual No Retornable    NA       2    NA     2   NA
## 510        500 ml Ret Individual    Retornable     2       2     2     1   NA
## 511         600 ml NR Individual No Retornable     2       2     1     3    3
## 512       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 513         600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 514         600 ml NR Individual No Retornable     3       1     6     3    1
## 515         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 516         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 517         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 518      1 Ltro. N.R. Individual No Retornable     2       8   150     2    2
## 519       1.5 Lts. NR Individual No Retornable     3       6    10     3    3
## 520    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 521         5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 522         600 ml NR Individual No Retornable    NA      NA     3    NA   NA
## 523         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 524    300 ML. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 525      1 Ltro. N.R. Individual No Retornable    NA      NA     1    NA   NA
## 526    250 ml. NR PET Individual No Retornable     1       1     1     0    0
## 527         600 ml NR Individual No Retornable     2       1     3     1    1
## 528    250 ml. NR PET Individual No Retornable    NA      NA    NA     2    2
## 529         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 530      1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 531      1 Ltro. N.R. Individual No Retornable     2       2    NA    NA   NA
## 532     12 Oz. NR Pet Individual No Retornable    NA       1     1     1    1
## 533         2 Lts. NR   Familiar No Retornable    NA       8    11     8    6
## 534         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 535       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 536       Lata 450 ml Individual No Retornable    NA       1    NA    NA   NA
## 537     500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 538      1 Ltro. N.R.   Familiar No Retornable     2       2    NA    NA   NA
## 539     237 ml NR Vid Individual No Retornable    NA       1    NA    NA   NA
## 540  500 ml NR Vidrio Individual No Retornable     2       4    NA    NA    2
## 541      1 Ltro. N.R.   Familiar No Retornable    11      13    13    13   42
## 542        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 543         2 Lts. NR   Familiar No Retornable    14      17    11    11   11
## 544        2 Lts. Ret   Familiar    Retornable     8       8    14    14    8
## 545       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 546  500 ml NR Vidrio Individual No Retornable    15      17    17    21   17
## 547          8 Oz. NR Individual No Retornable     2       1     3     2    3
## 548              Lata Individual No Retornable     2       2     2    NA   NA
## 549      1 Ltro. N.R.   Familiar No Retornable     2       4     4     4    2
## 550         2 Lts. NR   Familiar No Retornable    11      14    14    17   14
## 551  500 ml NR Vidrio Individual No Retornable     2       4     6     4    4
## 552       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 553      1 Ltro. N.R.   Familiar No Retornable    13      17    17    19   51
## 554      1.250 Lts NR   Familiar No Retornable    16      16    11    11    8
## 555       1.5 Lts. NR   Familiar No Retornable    13      16    16    10    6
## 556      1.5 Lts. Ret   Familiar    Retornable    32      32    48    35  120
## 557     12 Oz. NR Pet Individual No Retornable     9       6    12    14   11
## 558        12 Oz. Ret Individual    Retornable     5      NA     5     5    5
## 559         2 Lts. NR   Familiar No Retornable    17      14    14    18   20
## 560        2 Lts. Ret   Familiar    Retornable    11      11    11     6   14
## 561       2.5 Lts. NR   Familiar No Retornable    25      60    74   116  190
## 562  2.5 Lts. Ret Pet   Familiar    Retornable   120     106   116   113  225
## 563  500 ml NR Vidrio Individual No Retornable    23      25    21    38   55
## 564        500 ml Ret Individual    Retornable    80      82    97    97  222
## 565       6.5 Oz. Ret Individual    Retornable    NA       1     1    NA   NA
## 566          8 Oz. NR Individual No Retornable     3       5     6     6   20
## 567              Lata Individual No Retornable     6       3     6     6   24
## 568       Lata 16 Oz. Individual No Retornable     4       6     4     8    2
## 569       Lata 235 ml Individual No Retornable     2       4     4     4    5
## 570      1 Ltro. N.R. Individual No Retornable    NA       1     1     1    2
## 571     500 ml NR PET Individual No Retornable    NA       1    NA    NA   NA
## 572         600 ml NR Individual No Retornable     1       1    NA     3    1
## 573      250 ml Tetra Individual No Retornable     1       0     0     0    0
## 574     413 ml NR VId Individual No Retornable    NA      NA     3    NA    1
## 575      1 Ltro. N.R.   Familiar No Retornable     2      NA    NA     2   NA
## 576    300 ML. NR PET Individual No Retornable     1       1     1    NA   NA
## 577     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 578      200 ml Tetra Individual No Retornable    NA       0     0     1    1
## 579         600 ml NR Individual No Retornable     1       1     1     2    1
## 580         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 581       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 582      1 Ltro. N.R.   Familiar No Retornable     2       2     2     2    4
## 583      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 584         2 Lts. NR   Familiar No Retornable    NA      NA     4     3    6
## 585       2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA   NA
## 586    250 ml. NR PET Individual No Retornable     1       1     1     0    0
## 587         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 588        500 ml Ret Individual    Retornable     1       2     1     1    1
## 589         600 ml NR Individual No Retornable     1       3     1     2    2
## 590       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 591      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 592         2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 593    250 ml. NR PET Individual No Retornable     1       0     1     0    0
## 594         400 ml NR Individual No Retornable     0      NA    NA    NA    0
## 595        500 ml Ret Individual    Retornable     1      NA     1     1    1
## 596         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 597       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 598      1 Ltro. N.R.   Familiar No Retornable    NA      NA     4    NA   NA
## 599         2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 600    250 ml. NR PET Individual No Retornable     1       1     1     0    0
## 601         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 602        500 ml Ret Individual    Retornable     1      NA     1     1    1
## 603         600 ml NR Individual No Retornable    NA      NA     2     1    1
## 604         600 ml NR Individual No Retornable     2       1    NA    NA    1
## 605      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 606         2 Lts. NR   Familiar No Retornable    NA       3    NA     3   NA
## 607       2.5 Lts. NR   Familiar No Retornable     4       7     7    NA   NA
## 608         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 609         600 ml NR Individual No Retornable     1      NA    NA    NA    3
## 610       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 611      1 Ltro. N.R.   Familiar No Retornable     8       6     8     8    4
## 612      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 613         2 Lts. NR   Familiar No Retornable     3      NA     4    NA    6
## 614       2.5 Lts. NR   Familiar No Retornable    NA       7     4     7   NA
## 615    250 ml. NR PET Individual No Retornable     1       1     1     0    0
## 616         400 ml NR Individual No Retornable     0       0     0     1    0
## 617        500 ml Ret Individual    Retornable     1      NA     1     1    1
## 618         600 ml NR Individual No Retornable     1       3     3     3    3
## 619       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 620     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 621         600 ml NR Individual No Retornable     3      18     2     1   11
## 622       Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 623       Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 624         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 625         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 626      1 Ltro. N.R. Individual No Retornable     6      15     2     2    8
## 627       1.5 Lts. NR Individual No Retornable    10      13     3     6   10
## 628    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 629         5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 630         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 631    300 ML. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 632     500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 633    250 ml. NR PET Individual No Retornable     7       6     5     7    4
## 634         400 ml NR Individual No Retornable     3       2     3     3    2
## 635      1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 636      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA    2
## 637     12 Oz. NR Pet Individual No Retornable    NA       1     1     2    1
## 638         2 Lts. NR   Familiar No Retornable     3       3    14    25   17
## 639         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 640       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 641       Lata 450 ml Individual No Retornable    NA      NA     1     1    3
## 642     500 ml NR PET Individual No Retornable     3      NA     2     1    3
## 643      1 Ltro. N.R.   Familiar No Retornable     2       6     6    NA   NA
## 644     237 ml NR Vid Individual No Retornable     2      NA    NA     1   NA
## 645  500 ml NR Vidrio Individual No Retornable     4      NA     4     6    2
## 646      1 Ltro. N.R.   Familiar No Retornable    44      66    40    46   72
## 647        12 Oz. Ret Individual    Retornable    14      11    11    14   15
## 648         2 Lts. NR   Familiar No Retornable    99     116    68    76  113
## 649        2 Lts. Ret   Familiar    Retornable    82      76    82    82  104
## 650       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 651  500 ml NR Vidrio Individual No Retornable    42      40    40    68   46
## 652          8 Oz. NR Individual No Retornable    15      16    16    18   17
## 653              Lata Individual No Retornable     8       8     9     8    9
## 654         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 655      1 Ltro. N.R.   Familiar No Retornable     6       8     8     4    4
## 656         2 Lts. NR   Familiar No Retornable    34      14    37    31   42
## 657  500 ml NR Vidrio Individual No Retornable     6       2     6     4    4
## 658          8 Oz. NR Individual No Retornable    NA      NA     1    NA   NA
## 659      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    8
## 660      1.250 Lts NR   Familiar No Retornable    98     114    69    87   74
## 661       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 662      1.5 Lts. Ret   Familiar    Retornable     3       6     3     3    3
## 663     12 Oz. NR Pet Individual No Retornable     9       6     6    14    9
## 664        12 Oz. Ret Individual    Retornable    17      14    14    17   12
## 665         2 Lts. NR   Familiar No Retornable    82      96    54    93   85
## 666        2 Lts. Ret   Familiar    Retornable    34      31    23    56   34
## 667       2.5 Lts. NR   Familiar No Retornable   109     180   127   106  169
## 668  2.5 Lts. Ret Pet   Familiar    Retornable   120     116   144   173  183
## 669         400 ml NR Individual No Retornable     2      NA    NA    NA    2
## 670  500 ml NR Vidrio Individual No Retornable    44      38    61    89   87
## 671        500 ml Ret Individual    Retornable    82      78    72   123   53
## 672          8 Oz. NR Individual No Retornable    30      20    21    30   29
## 673              Lata Individual No Retornable     6       5     9     6    8
## 674       Lata 16 Oz. Individual No Retornable     2      NA     4     4    2
## 675       Lata 235 ml Individual No Retornable    NA       2     2     4    1
## 676         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 677      1 Ltro. N.R. Individual No Retornable    NA       1     1     1    1
## 678     500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 679     1 Ltro. Tetra   Familiar No Retornable    23      19    15    20   13
## 680      250 ml Tetra Individual No Retornable     0       0     0     0    0
## 681    250 ML. NR VID Individual No Retornable     4       3     5     2    3
## 682     413 ml NR VId Individual No Retornable     5      20    19    NA   37
## 683    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 684      1 Ltro. N.R.   Familiar No Retornable     4       4     4     2    4
## 685     1 Ltro. Tetra   Familiar No Retornable     2       2     2     2   NA
## 686     1 Ltro. Tetra   Familiar No Retornable     2       1     3     3    2
## 687     1 Ltro. Tetra   Familiar No Retornable     4       2     1     3    2
## 688     1 Ltro. Tetra   Familiar No Retornable     2       2     3     3    1
## 689      200 ml Tetra Individual No Retornable     0       1     0     0    0
## 690         600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 691         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 692         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 693         600 ml NR Individual No Retornable     8       5     9    14    7
## 694         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 695        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 696         2 Lts. NR   Familiar No Retornable    NA       3     8     6   20
## 697        2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 698         400 ml NR Individual No Retornable    NA      NA     0    NA    1
## 699        500 ml Ret Individual    Retornable     1       2    NA     1   NA
## 700         600 ml NR Individual No Retornable     1       4     1     3    4
## 701       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 702         2 Lts. NR   Familiar No Retornable    NA       3     8     8    3
## 703         400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 704        500 ml Ret Individual    Retornable     1      NA    NA     1   NA
## 705         600 ml NR Individual No Retornable    NA       4     3     2    2
## 706       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 707         2 Lts. NR   Familiar No Retornable    NA      NA     6     3   NA
## 708         400 ml NR Individual No Retornable     0       0    NA    NA   NA
## 709        500 ml Ret Individual    Retornable     1      NA    NA     1   NA
## 710         600 ml NR Individual No Retornable     1       5     3     3    1
## 711         600 ml NR Individual No Retornable     1       2     4     4    1
## 712         2 Lts. NR   Familiar No Retornable     8      14     6    17   20
## 713         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 714        500 ml Ret Individual    Retornable    NA      NA    NA    NA    2
## 715         600 ml NR Individual No Retornable     1       3     3     3    4
## 716       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 717        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 718         2 Lts. NR   Familiar No Retornable     3      14    17    20   11
## 719    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 720         400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 721        500 ml Ret Individual    Retornable     1      NA     2     3   NA
## 722         600 ml NR Individual No Retornable     1       5     5     3    3
## 723       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 724         600 ml NR Individual No Retornable     5      NA     1     3   NA
## 725     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 726         600 ml NR Individual No Retornable    16      13    13    22   14
## 727         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 728         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 729      1 Ltro. N.R. Individual No Retornable     6      55    11    NA   25
## 730       1.5 Lts. NR Individual No Retornable    NA      38     6    NA   48
## 731     355 Ml NR Pet Individual No Retornable     2      20    NA    NA    8
## 732         5 Lts. NR   Familiar No Retornable    35     106    28    25   49
## 733         600 ml NR Individual No Retornable     8      33    NA    13   18
## 734      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 735         473 ml NR Individual No Retornable     2      NA    NA     1   NA
## 736    250 ml. NR PET Individual No Retornable     3      NA     3     1   NA
## 737         600 ml NR Individual No Retornable     3       5    NA    NA   NA
## 738    250 ml. NR PET Individual No Retornable     8       8     2     2    4
## 739         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 740      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 741      1 Ltro. N.R. Individual No Retornable    NA      NA     4     2   NA
## 742     12 Oz. NR Pet Individual No Retornable    NA       2     2    NA   NA
## 743         2 Lts. NR   Familiar No Retornable    11      17     6    17    6
## 744         600 ml NR Individual No Retornable     3       3     3    NA    3
## 745       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 746       Lata 450 ml Individual No Retornable    NA      NA    NA    NA   NA
## 747     500 ml NR PET Individual No Retornable     3      NA     3    NA    3
## 748      1 Ltro. N.R.   Familiar No Retornable     6      NA     6    NA   NA
## 749     237 ml NR Vid Individual No Retornable    NA      NA     1     1   NA
## 750  500 ml NR Vidrio Individual No Retornable     2       2     6     8    4
## 751         600 ml NR Individual No Retornable    NA      NA    NA     5   13
## 752              Lata Individual No Retornable    NA       2     2     2   NA
## 753      1 Ltro. N.R.   Familiar No Retornable    72      72    59   127   87
## 754         2 Lts. NR   Familiar No Retornable    37     155   189    NA  121
## 755  500 ml NR Vidrio Individual No Retornable    38      68    38    74   82
## 756         600 ml NR Individual No Retornable    NA       5     8     5   10
## 757          8 Oz. NR Individual No Retornable    15      11    21    NA   40
## 758              Lata Individual No Retornable     6       5    11     9   17
## 759         600 ml NR Individual No Retornable     8       5     5     8    5
## 760       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 761      1 Ltro. N.R.   Familiar No Retornable    11      15    13    15   17
## 762         2 Lts. NR   Familiar No Retornable    17      23    28    31   17
## 763  500 ml NR Vidrio Individual No Retornable     4       4     6     6    6
## 764         600 ml NR Individual No Retornable     5       8     5     8    8
## 765          8 Oz. NR Individual No Retornable     2       2     1     1    2
## 766              Lata Individual No Retornable    NA       2     2    NA    3
## 767      1 Ltro. N.R.   Familiar No Retornable    95     159    32   161  118
## 768      1.250 Lts NR   Familiar No Retornable    NA      NA    58    90   21
## 769       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 770      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA     3    3
## 771     12 Oz. NR Pet Individual No Retornable     3      NA    NA    NA   NA
## 772         2 Lts. NR   Familiar No Retornable   163     217   355   107  192
## 773       2.5 Lts. NR   Familiar No Retornable   123     240   335   183  243
## 774  2.5 Lts. Ret Pet   Familiar    Retornable    46     204   190   134  183
## 775         400 ml NR Individual No Retornable    27      24    41     8   71
## 776     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 777  500 ml NR Vidrio Individual No Retornable    68      76   135   120  116
## 778        500 ml Ret Individual    Retornable   154     139    95   224   87
## 779       6.5 Oz. Ret Individual    Retornable     2       1    NA    NA   NA
## 780         600 ml NR Individual No Retornable    28      10    20    20   20
## 781          8 Oz. NR Individual No Retornable    24      22    35    10   68
## 782              Lata Individual No Retornable    18      18    24    21   41
## 783       Lata 16 Oz. Individual No Retornable    10      NA    NA     4    6
## 784         600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 785      1 Ltro. N.R. Individual No Retornable    NA      NA     1     2    2
## 786     500 ml NR PET Individual No Retornable     2       2     2    NA    3
## 787         600 ml NR Individual No Retornable    NA      NA     3     3   NA
## 788     1 Ltro. Tetra   Familiar No Retornable    20      13     9    13   30
## 789      250 ml Tetra Individual No Retornable     8      NA     4    NA    2
## 790    250 ML. NR VID Individual No Retornable     3       1     2    NA    2
## 791     413 ml NR VId Individual No Retornable    20      24    19    NA   NA
## 792       Lata 335 ml Individual No Retornable    NA       1    NA    NA   NA
## 793      1 Ltro. N.R.   Familiar No Retornable     4       4    NA     2    4
## 794    300 ML. NR PET Individual No Retornable     2       1     1     1    0
## 795     1 Ltro. Tetra   Familiar No Retornable    13      10    14     8   10
## 796     1 Ltro. Tetra   Familiar No Retornable     6       3    10    11    8
## 797     1 Ltro. Tetra   Familiar No Retornable    10       6     7    12   10
## 798     1 Ltro. Tetra   Familiar No Retornable    11       5     4     7    6
## 799      200 ml Tetra Individual No Retornable     2       2     3     1    6
## 800         600 ml NR Individual No Retornable     5       3    NA    NA    8
## 801         600 ml NR Individual No Retornable    NA       5     3     3    3
## 802         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 803         600 ml NR Individual No Retornable     5       5     5    10    3
## 804         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 805         2 Lts. NR   Familiar No Retornable    NA       6     6    14   NA
## 806    250 ml. NR PET Individual No Retornable     1       3     3     1    1
## 807         400 ml NR Individual No Retornable     0      NA    NA    NA    1
## 808         600 ml NR Individual No Retornable     3      NA    NA     3    8
## 809         2 Lts. NR   Familiar No Retornable    NA       3    NA    NA    3
## 810    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 811         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 812         600 ml NR Individual No Retornable     3      NA    NA     3    5
## 813         2 Lts. NR   Familiar No Retornable    NA      11    NA    11    3
## 814    250 ml. NR PET Individual No Retornable     3      NA     1     3    3
## 815         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 816         600 ml NR Individual No Retornable     3      NA    NA     3    5
## 817         600 ml NR Individual No Retornable    NA       3    NA     3    5
## 818         2 Lts. NR   Familiar No Retornable    NA       8     3    11    3
## 819    250 ml. NR PET Individual No Retornable     3      NA     1    NA    1
## 820         400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 821        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 822         600 ml NR Individual No Retornable     3       5    NA     5    5
## 823      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 824         2 Lts. NR   Familiar No Retornable    NA      14     8    48    6
## 825       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 826    250 ml. NR PET Individual No Retornable     5       1     3     4    4
## 827         400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 828        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 829         600 ml NR Individual No Retornable     3      NA     3    NA   10
## 830         600 ml NR Individual No Retornable     5       6     3     7    4
## 831     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 832         600 ml NR Individual No Retornable    15      18    16     6   21
## 833       Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 834         600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 835         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 836      1 Ltro. N.R. Individual No Retornable    13      19    17    13   15
## 837       1.5 Lts. NR Individual No Retornable    10      19    19    19   29
## 838         600 ml NR Individual No Retornable     3       5     5     5    8
## 839      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 840    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 841    250 ml. NR PET Individual No Retornable     0       0     1     0   NA
## 842         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 843    250 ml. NR PET Individual No Retornable     1      NA    NA     0    0
## 844      1 Ltro. N.R.   Familiar No Retornable    NA       1    NA    NA    5
## 845      1 Ltro. N.R. Individual No Retornable    NA      NA     2     2    4
## 846     12 Oz. NR Pet Individual No Retornable    NA       2     2     1    1
## 847         2 Lts. NR   Familiar No Retornable     6       3     6     6   11
## 848         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 849       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 850       Lata 450 ml Individual No Retornable    NA       3    NA     1    1
## 851        12 Oz. Ret Individual    Retornable    NA      NA     2    NA    2
## 852     237 ml NR Vid Individual No Retornable    NA      NA    NA    NA   NA
## 853  500 ml NR Vidrio Individual No Retornable     2      NA     2    NA   NA
## 854       Lata 235 ml Individual No Retornable     1      NA    NA    NA   NA
## 855      1 Ltro. N.R.   Familiar No Retornable    23      25    21    21   27
## 856        12 Oz. Ret Individual    Retornable    15      17    18    15   23
## 857         2 Lts. NR   Familiar No Retornable    28      20    14    20   17
## 858        2 Lts. Ret   Familiar    Retornable    23      20    25    23   34
## 859         400 ml NR Individual No Retornable     7       8     5     7   10
## 860  500 ml NR Vidrio Individual No Retornable    19      19    23    23   23
## 861          8 Oz. NR Individual No Retornable     3       5     2     7    4
## 862              Lata Individual No Retornable     5       6     6     8    8
## 863      1 Ltro. N.R.   Familiar No Retornable     6      13     8     6    8
## 864         2 Lts. NR   Familiar No Retornable    NA      NA     3     6    3
## 865         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 866  500 ml NR Vidrio Individual No Retornable     4       4     6     8    8
## 867          8 Oz. NR Individual No Retornable     1       2    NA     1    2
## 868      1 Ltro. N.R.   Familiar No Retornable     4       2     2    NA   NA
## 869      1.250 Lts NR   Familiar No Retornable    45      61    40    53   55
## 870       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 871      1.5 Lts. Ret   Familiar    Retornable     3       3     3     6    3
## 872     12 Oz. NR Pet Individual No Retornable    14      14    11    11   14
## 873        12 Oz. Ret Individual    Retornable    11      12    11    11    9
## 874         2 Lts. NR   Familiar No Retornable    NA       6    NA     6   NA
## 875        2 Lts. Ret   Familiar    Retornable    23      14    11     8    8
## 876       2.5 Lts. NR   Familiar No Retornable    63      56    63    67   63
## 877  2.5 Lts. Ret Pet   Familiar    Retornable   190     208   116   201  240
## 878         400 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 879  500 ml NR Vidrio Individual No Retornable    36      32    38    34   38
## 880        500 ml Ret Individual    Retornable    80      80    59    85   87
## 881          8 Oz. NR Individual No Retornable    12      13     6    15   12
## 882              Lata Individual No Retornable     8       6     9     9   11
## 883       Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 884       Lata 235 ml Individual No Retornable    NA       2     1    NA   NA
## 885         600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 886      1 Ltro. N.R. Individual No Retornable    NA       1     1     1    7
## 887     500 ml NR PET Individual No Retornable    NA       1    NA     1   NA
## 888         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 889     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 890      250 ml Tetra Individual No Retornable     1       0     0     0    0
## 891    250 ML. NR VID Individual No Retornable    NA       0    NA    NA    1
## 892     413 ml NR VId Individual No Retornable     3       3     2     3    3
## 893    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 894      1 Ltro. N.R.   Familiar No Retornable     2       2     4     2    4
## 895     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 896     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 897      200 ml Tetra Individual No Retornable     0       0     0     0    1
## 898         600 ml NR Individual No Retornable     3       4     4     4    4
## 899         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 900       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 901      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 902         2 Lts. NR   Familiar No Retornable     3       3     1     4    4
## 903    250 ml. NR PET Individual No Retornable     0       0     1     0   NA
## 904         400 ml NR Individual No Retornable    NA       0     0    NA   NA
## 905        500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 906         600 ml NR Individual No Retornable     1       1     1     1    1
## 907       Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 908         2 Lts. NR   Familiar No Retornable     3      NA     1     4    9
## 909    250 ml. NR PET Individual No Retornable     0       0     0     0   NA
## 910         400 ml NR Individual No Retornable     0      NA    NA     0   NA
## 911        500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 912         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 913       Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 914         2 Lts. NR   Familiar No Retornable    NA      NA     1     1    1
## 915    250 ml. NR PET Individual No Retornable     0       0     1     0   NA
## 916         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 917        500 ml Ret Individual    Retornable    NA       2    NA     1    2
## 918         600 ml NR Individual No Retornable    NA       2     1     1    1
## 919         600 ml NR Individual No Retornable     1       4     1     1    3
## 920         2 Lts. NR   Familiar No Retornable    NA       6     8     3    6
## 921    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 922        500 ml Ret Individual    Retornable     2      NA     2    NA    2
## 923       Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 924      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 925         2 Lts. NR   Familiar No Retornable     6       8     4     9   18
## 926    250 ml. NR PET Individual No Retornable     0       0     1     0   NA
## 927         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 928        500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 929         600 ml NR Individual No Retornable     4       4     4     3    4
## 930       Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 931     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 932         600 ml NR Individual No Retornable    NA      NA    NA     1   10
## 933       Lata 453 ml Individual No Retornable    NA       0    NA    NA   NA
## 934         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 935       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 936         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 937      1 Ltro. N.R. Individual No Retornable     2       2     2     6    2
## 938       1.5 Lts. NR Individual No Retornable     3       3     3     3    3
## 939         5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 940      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 941    300 ML. NR PET Individual No Retornable    NA      NA     1     1    1
## 942    250 ml. NR PET Individual No Retornable     1       1     1     1    1
## 943         600 ml NR Individual No Retornable     1      NA     1     4    1
## 944    250 ml. NR PET Individual No Retornable     1      NA     2     1   NA
## 945         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 946      1 Ltro. N.R.   Familiar No Retornable     1       1     1    NA    1
## 947      1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2    4
## 948     12 Oz. NR Pet Individual No Retornable    NA       2     1     1    1
## 949         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 950      1 Ltro. N.R.   Familiar No Retornable     2       2     2    NA   NA
## 951  500 ml NR Vidrio Individual No Retornable     4       4     2     2   NA
## 952      1 Ltro. N.R.   Familiar No Retornable    25      30    27    27   36
## 953        12 Oz. Ret Individual    Retornable     8       6     5     3    6
## 954         2 Lts. NR   Familiar No Retornable    39      28    31    37   39
## 955        2 Lts. Ret   Familiar    Retornable    28      28    17    25   28
## 956  500 ml NR Vidrio Individual No Retornable    25      25    11    19   21
## 957         600 ml NR Individual No Retornable     5      10    10    10    8
## 958          8 Oz. NR Individual No Retornable     4       5     4     4    6
## 959              Lata Individual No Retornable     5       9     5     5    8
## 960       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 961      1 Ltro. N.R.   Familiar No Retornable     4       8     6     8    8
## 962         2 Lts. NR   Familiar No Retornable     6       6    14    11    8
## 963  500 ml NR Vidrio Individual No Retornable    NA      NA     2     4    4
## 964         600 ml NR Individual No Retornable     5       3     3     5    5
## 965          8 Oz. NR Individual No Retornable     1       1     3     1    3
## 966      1 Ltro. N.R.   Familiar No Retornable    34      34    34    42   42
## 967      1.250 Lts NR   Familiar No Retornable     3      NA    NA    NA   NA
## 968       1.5 Lts. NR   Familiar No Retornable    25      22    22    22   29
## 969      1.5 Lts. Ret   Familiar    Retornable     3       3     3     3    3
## 970     12 Oz. NR Pet Individual No Retornable     6       8    11     8   11
## 971        12 Oz. Ret Individual    Retornable    11       5     3     6    2
## 972         2 Lts. NR   Familiar No Retornable    NA      NA    NA    11   NA
## 973        2 Lts. Ret   Familiar    Retornable     3       3     3    NA    3
## 974       2.5 Lts. NR   Familiar No Retornable    49      88    77    95  130
## 975  2.5 Lts. Ret Pet   Familiar    Retornable    49      70    67    53   39
## 976         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 977     500 ml NR PET Individual No Retornable    13      13    11    15   17
## 978  500 ml NR Vidrio Individual No Retornable    27      44    59    19   36
## 979        500 ml Ret Individual    Retornable    36      42    38    55   30
## 980       6.5 Oz. Ret Individual    Retornable     2       2     2     2    2
## 981         710 ml NR Individual No Retornable    15      12     9    12   12
## 982          8 Oz. NR Individual No Retornable    15      17    17    23   22
## 983              Lata Individual No Retornable     3       6     3     9    3
## 984       Lata 16 Oz. Individual No Retornable     4       6     2     6    2
## 985       Lata 235 ml Individual No Retornable     3       4     2     3    2
## 986         600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 987      1 Ltro. N.R. Individual No Retornable     1       1     1     1    2
## 988     500 ml NR PET Individual No Retornable    NA       1    NA     1   NA
## 989         600 ml NR Individual No Retornable     4      NA     3     1    2
## 990     1 Ltro. Tetra   Familiar No Retornable     4       4     5     2    4
## 991   125 ml NR Tetra Individual No Retornable    NA       1    NA    NA   NA
## 992      250 ml Tetra Individual No Retornable     1       0     2     0    0
## 993    250 ML. NR VID Individual No Retornable     2       3     2     1    2
## 994     413 ml NR VId Individual No Retornable     6       1     4     3    8
## 995       Lata 335 ml Individual No Retornable    NA      NA    NA    NA   NA
## 996    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 997      1 Ltro. N.R.   Familiar No Retornable    NA       4     4     4    2
## 998    300 ML. NR PET Individual No Retornable     2      NA     1     1    1
## 999     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1000    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1001    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1002     200 ml Tetra Individual No Retornable     1       1     1     0    1
## 1003        600 ml NR Individual No Retornable     4       1     3     2    4
## 1004      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1005        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1006      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1007     1 Ltro. N.R.   Familiar No Retornable    NA       2    NA     2   NA
## 1008        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA    3
## 1009        400 ml NR Individual No Retornable    NA      NA     0     0    1
## 1010    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1011       500 ml Ret Individual    Retornable    NA      NA    NA     2   NA
## 1012        600 ml NR Individual No Retornable     1       2     2     1    3
## 1013      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1014     1 Ltro. N.R.   Familiar No Retornable     2      NA     2    NA   NA
## 1015      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1016     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1017        2 Lts. NR   Familiar No Retornable    NA       3     3     3    6
## 1018        400 ml NR Individual No Retornable     0      NA    NA    NA    1
## 1019       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1020        600 ml NR Individual No Retornable     1       1    NA     1    3
## 1021      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1022     1 Ltro. N.R.   Familiar No Retornable     4      NA    NA     2    2
## 1023        2 Lts. NR   Familiar No Retornable    NA       3     3     3    3
## 1024    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1025       500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 1026        600 ml NR Individual No Retornable     3      NA     2     1    1
## 1027        600 ml NR Individual No Retornable     3       1     3     1   NA
## 1028        2 Lts. NR   Familiar No Retornable     6       6    14    14   14
## 1029        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 1030       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1031        600 ml NR Individual No Retornable     3       1     5     1    3
## 1032      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1033     1 Ltro. N.R.   Familiar No Retornable     4      NA     2     4    4
## 1034        2 Lts. NR   Familiar No Retornable     3       6     8     3   14
## 1035   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1036        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1037       500 ml Ret Individual    Retornable    NA       2     2    NA    2
## 1038        600 ml NR Individual No Retornable     1       3     1     2    3
## 1039      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1040        600 ml NR Individual No Retornable     8      11     5     4    6
## 1041      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1042       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1043        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1044        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1045     1 Ltro. N.R. Individual No Retornable     4       4     2     2    2
## 1046      1.5 Lts. NR Individual No Retornable     3       3     3     3    3
## 1047     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1048   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1049   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1050        600 ml NR Individual No Retornable    NA      NA     2    NA   NA
## 1051   250 ml. NR PET Individual No Retornable     1       1     1     1    4
## 1052        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1053     1 Ltro. N.R.   Familiar No Retornable     1       1     1     2    1
## 1054     1 Ltro. N.R. Individual No Retornable    NA      NA     2    NA   NA
## 1055    12 Oz. NR Pet Individual No Retornable     2       1     2     2    1
## 1056        2 Lts. NR   Familiar No Retornable    NA      NA    11    NA   NA
## 1057        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1058      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1059    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1060        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1061      Lata 235 ml Individual No Retornable     1      NA     1     1   NA
## 1062     1 Ltro. N.R.   Familiar No Retornable    11       8    13    13   11
## 1063        2 Lts. NR   Familiar No Retornable     8       8     3     6    3
## 1064       2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1065 500 ml NR Vidrio Individual No Retornable    21      21    19    23   25
## 1066         8 Oz. NR Individual No Retornable    NA      NA    NA    NA    1
## 1067      Lata 235 ml Individual No Retornable    NA       1     1     1   NA
## 1068        600 ml NR Individual No Retornable     2       1     2     3    3
## 1069     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1070     1.250 Lts NR   Familiar No Retornable    21      24    29    37   29
## 1071      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1072     1.5 Lts. Ret   Familiar    Retornable     3       3     3    13    6
## 1073    12 Oz. NR Pet Individual No Retornable     5       6     8    11    5
## 1074       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1075        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 1076      2.5 Lts. NR   Familiar No Retornable    35      53    53    60   42
## 1077 2.5 Lts. Ret Pet   Familiar    Retornable    70      74    70    95   81
## 1078 500 ml NR Vidrio Individual No Retornable    23      25    30    38   27
## 1079       500 ml Ret Individual    Retornable    74      72    89    95   91
## 1080      6.5 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1081         8 Oz. NR Individual No Retornable     3       2     4     8    5
## 1082             Lata Individual No Retornable     3       2     5     5    3
## 1083      Lata 235 ml Individual No Retornable     2       2     2     2    2
## 1084     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 1085    500 ml NR PET Individual No Retornable     1       1    NA     1    1
## 1086        600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 1087     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 1088   250 ML. NR VID Individual No Retornable    NA       1    NA    NA    0
## 1089    413 ml NR VId Individual No Retornable     2       3     2     5    5
## 1090   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1091    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1092    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1093    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1094    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1095     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1096        600 ml NR Individual No Retornable     3       1     3     4    3
## 1097        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1098        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1099   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1100        400 ml NR Individual No Retornable    NA      NA     0    NA    0
## 1101       500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 1102        600 ml NR Individual No Retornable     1       2     3     4    3
## 1103      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 1104      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1105        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1106   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1107        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 1108       500 ml Ret Individual    Retornable    NA      NA    NA     2   NA
## 1109        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 1110      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 1111        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1112   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1113        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1114       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1115        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1116        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1117        2 Lts. NR   Familiar No Retornable    NA      NA     3     3    3
## 1118        400 ml NR Individual No Retornable     0      NA    NA     0   NA
## 1119       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 1120        600 ml NR Individual No Retornable     1      NA     3     3    3
## 1121      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 1122        2 Lts. NR   Familiar No Retornable     3       3     3    NA   NA
## 1123   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1124        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1125       500 ml Ret Individual    Retornable    NA      NA     2    NA    2
## 1126        600 ml NR Individual No Retornable     1       2     3     4    3
## 1127      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 1128        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1129    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1130        600 ml NR Individual No Retornable     3      NA     3    NA   NA
## 1131      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1132      Lata 453 ml Individual No Retornable    NA       0    NA    NA   NA
## 1133        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1134        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1135     1 Ltro. N.R. Individual No Retornable     2       2     2     2    4
## 1136      1.5 Lts. NR Individual No Retornable     3       3     3     3    6
## 1137        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1138        600 ml NR Individual No Retornable    NA       3    NA    NA    3
## 1139     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1140   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1141   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1142   250 ml. NR PET Individual No Retornable     2       3     3     5    3
## 1143        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1144     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     2    1
## 1145     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1146    12 Oz. NR Pet Individual No Retornable    NA       2     2     2    1
## 1147        2 Lts. NR   Familiar No Retornable     3      NA    NA     3   NA
## 1148      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1149      Lata 450 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1150    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1151      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1152     1 Ltro. N.R.   Familiar No Retornable     4      11    13     8   11
## 1153        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1154      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1155 500 ml NR Vidrio Individual No Retornable     2       8     6    11    8
## 1156         8 Oz. NR Individual No Retornable     2       1     2     1    2
## 1157             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1158     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1159     1.250 Lts NR   Familiar No Retornable    21      26    37    26   24
## 1160      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1161     1.5 Lts. Ret   Familiar    Retornable     6       6    16     6   25
## 1162    12 Oz. NR Pet Individual No Retornable    12       9     6    11   12
## 1163        2 Lts. NR   Familiar No Retornable    NA      NA     3     6   NA
## 1164      2.5 Lts. NR   Familiar No Retornable     7      11    18    32   35
## 1165 2.5 Lts. Ret Pet   Familiar    Retornable   155     113   159   169  180
## 1166    500 ml NR PET Individual No Retornable    NA       2    NA    NA   NA
## 1167 500 ml NR Vidrio Individual No Retornable    17      15    21    19   25
## 1168       500 ml Ret Individual    Retornable   106      74    95   114   95
## 1169         8 Oz. NR Individual No Retornable     4       1     4     4    4
## 1170             Lata Individual No Retornable     2       3     3     3    3
## 1171      Lata 16 Oz. Individual No Retornable    NA       2     4     4    2
## 1172      Lata 235 ml Individual No Retornable    NA       1    NA     1    2
## 1173     1 Ltro. N.R. Individual No Retornable     1       1     1     3    1
## 1174    500 ml NR PET Individual No Retornable     1      NA    NA     1   NA
## 1175        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1176    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1177     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 1178    413 ml NR VId Individual No Retornable     4       2     2     3    2
## 1179   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1180     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA     2    2
## 1181   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 1182    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1183    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1184    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1185     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1186        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1187        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1188        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1189        600 ml NR Individual No Retornable     2      NA    NA    NA   NA
## 1190        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1191        2 Lts. NR   Familiar No Retornable    NA       1     1     3    1
## 1192   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1193        400 ml NR Individual No Retornable    NA       0     0    NA   NA
## 1194       500 ml Ret Individual    Retornable    NA       1     1    NA    1
## 1195        600 ml NR Individual No Retornable     2       1     1     1    2
## 1196             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1197      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1198      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1199        2 Lts. NR   Familiar No Retornable    NA       1     1    NA    1
## 1200   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1201       500 ml Ret Individual    Retornable    NA       1     1    NA    1
## 1202        600 ml NR Individual No Retornable    NA       1     1     1    1
## 1203             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1204      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1205        2 Lts. NR   Familiar No Retornable    NA       1     4    NA    1
## 1206   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1207        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 1208       500 ml Ret Individual    Retornable    NA       1     1    NA    1
## 1209        600 ml NR Individual No Retornable     2       1     1     1    1
## 1210             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1211        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1212        400 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 1213      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1214      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1215        2 Lts. NR   Familiar No Retornable     3       1     4    NA    1
## 1216   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1217        400 ml NR Individual No Retornable     0      NA     0     0    0
## 1218       500 ml Ret Individual    Retornable     4       1     1    NA    1
## 1219        600 ml NR Individual No Retornable     2       1     1     1    2
## 1220             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1221      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1222        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1223        600 ml NR Individual No Retornable    NA       4     3     4   10
## 1224      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1225        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1226        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1227     1 Ltro. N.R. Individual No Retornable     2       2     6     2    2
## 1228      1.5 Lts. NR Individual No Retornable    NA       3     6     3   10
## 1229        600 ml NR Individual No Retornable    NA       3     3    NA    3
## 1230        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1231   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1232   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 1233        600 ml NR Individual No Retornable     1       1     1     1   NA
## 1234   250 ml. NR PET Individual No Retornable     0       1    NA    NA   NA
## 1235        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1236     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1237    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 1238     1 Ltro. N.R.   Familiar No Retornable     2      NA     2     2    2
## 1239       12 Oz. Ret Individual    Retornable    NA       2    NA    NA    2
## 1240        2 Lts. NR   Familiar No Retornable    NA       3     3     3    3
## 1241 500 ml NR Vidrio Individual No Retornable     6       4     2     4    6
## 1242         8 Oz. NR Individual No Retornable    NA       1     2     2    3
## 1243     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1244     1.250 Lts NR   Familiar No Retornable     5      11    13     8   11
## 1245      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1246     1.5 Lts. Ret   Familiar    Retornable     3       3     3     3    3
## 1247    12 Oz. NR Pet Individual No Retornable     5       3     6     3    6
## 1248      2.5 Lts. NR   Familiar No Retornable    NA       4    14    14   25
## 1249 2.5 Lts. Ret Pet   Familiar    Retornable    21      42    42    56   63
## 1250 500 ml NR Vidrio Individual No Retornable     8      13    13    11   13
## 1251       500 ml Ret Individual    Retornable    23      42    40    40   44
## 1252         8 Oz. NR Individual No Retornable     1       2     2     2    1
## 1253             Lata Individual No Retornable    NA      NA     2    NA    2
## 1254      Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 1255     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1256    1 Ltro. Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 1257     250 ml Tetra Individual No Retornable     0       0     0    NA   NA
## 1258   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA    0
## 1259    413 ml NR VId Individual No Retornable     3       6     1     5    4
## 1260      Lata 335 ml Individual No Retornable     1      NA    NA    NA   NA
## 1261     200 ml Tetra Individual No Retornable     0       0     0    NA   NA
## 1262        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1263      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1264       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1265        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1266   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 1267        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1268       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 1269        600 ml NR Individual No Retornable     1       2     1     1    1
## 1270      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 1271     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    2
## 1272   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 1273        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1274       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 1275      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 1276   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 1277        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 1278       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 1279        600 ml NR Individual No Retornable     2       1     1     1   NA
## 1280       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1281        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 1282      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 1283     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1284        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA    3
## 1285   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 1286        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 1287       500 ml Ret Individual    Retornable     1       2    NA    NA   NA
## 1288        600 ml NR Individual No Retornable     2       2     1     3    1
## 1289      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 1290        600 ml NR Individual No Retornable     1      NA     1    NA    1
## 1291        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1292        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1293     1 Ltro. N.R. Individual No Retornable     2      NA     4     2    4
## 1294      1.5 Lts. NR Individual No Retornable     3      NA     6     3    6
## 1295        600 ml NR Individual No Retornable    NA      NA     3    NA   NA
## 1296        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1297   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1298   250 ml. NR PET Individual No Retornable     0      NA    NA     0    0
## 1299        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1300   250 ml. NR PET Individual No Retornable     3       1     4     3    1
## 1301        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1302     1 Ltro. N.R.   Familiar No Retornable     1      NA     1     1    1
## 1303    12 Oz. NR Pet Individual No Retornable     2      NA     1     1    1
## 1304    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1305 500 ml NR Vidrio Individual No Retornable     2       2    NA     4    2
## 1306      Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 1307     1 Ltro. N.R.   Familiar No Retornable    11       8     8    13   15
## 1308       12 Oz. Ret Individual    Retornable    NA      NA     2    NA   NA
## 1309        2 Lts. NR   Familiar No Retornable    NA       6    NA     6    3
## 1310       2 Lts. Ret   Familiar    Retornable     6       8     6    11    8
## 1311      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1312        400 ml NR Individual No Retornable    NA      NA     2     3    3
## 1313 500 ml NR Vidrio Individual No Retornable     4       2     6     8   11
## 1314        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 1315         8 Oz. NR Individual No Retornable     1       1    NA     1    2
## 1316             Lata Individual No Retornable    NA       2    NA     2    2
## 1317     1 Ltro. N.R.   Familiar No Retornable     4      NA     2     2    2
## 1318 500 ml NR Vidrio Individual No Retornable    NA      NA     2     4    4
## 1319        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 1320     1 Ltro. N.R.   Familiar No Retornable    13      11    11     8   17
## 1321     1.250 Lts NR   Familiar No Retornable    13      11    16    18   11
## 1322      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1323     1.5 Lts. Ret   Familiar    Retornable     3       3     3     3    3
## 1324    12 Oz. NR Pet Individual No Retornable     5      11     9     8   11
## 1325        2 Lts. NR   Familiar No Retornable     6       3     3     6    3
## 1326       2 Lts. Ret   Familiar    Retornable    NA      NA    NA     6   NA
## 1327      2.5 Lts. NR   Familiar No Retornable    NA      18    21    21   25
## 1328 2.5 Lts. Ret Pet   Familiar    Retornable    92      88    81    99   81
## 1329 500 ml NR Vidrio Individual No Retornable    11       6     8    15   11
## 1330       500 ml Ret Individual    Retornable    34      49    59    59   44
## 1331         8 Oz. NR Individual No Retornable     9       7    11     8   14
## 1332             Lata Individual No Retornable     6       5     5     6    8
## 1333      Lata 235 ml Individual No Retornable     2      NA     1    NA   NA
## 1334     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 1335    500 ml NR PET Individual No Retornable     1      NA     2    NA   NA
## 1336        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1337     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 1338    413 ml NR VId Individual No Retornable    NA      NA     2    NA   NA
## 1339    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1340    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1341     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1342        600 ml NR Individual No Retornable     1       1     1     1    1
## 1343        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1344     1 Ltro. N.R.   Familiar No Retornable     2       2    NA     2   NA
## 1345        2 Lts. NR   Familiar No Retornable    NA       3     6     6    8
## 1346   250 ml. NR PET Individual No Retornable     0      NA    NA     0    0
## 1347        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1348       500 ml Ret Individual    Retornable    NA       2    NA     3    1
## 1349        600 ml NR Individual No Retornable     1       1     1     3    1
## 1350      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 1351      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1352        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1353   250 ml. NR PET Individual No Retornable     0      NA    NA     0    0
## 1354        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1355       500 ml Ret Individual    Retornable    NA      NA    NA     1    1
## 1356        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1357      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 1358   250 ml. NR PET Individual No Retornable     0      NA    NA     0    0
## 1359        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 1360       500 ml Ret Individual    Retornable    NA      NA    NA     1    1
## 1361        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1362        600 ml NR Individual No Retornable     1       1     1     1    2
## 1363        2 Lts. NR   Familiar No Retornable     3       3    11     6    8
## 1364        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 1365       500 ml Ret Individual    Retornable     2      NA     2    NA    2
## 1366        600 ml NR Individual No Retornable    NA       1     1     3    1
## 1367      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 1368     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA     2    2
## 1369        2 Lts. NR   Familiar No Retornable    NA      NA     6    NA    8
## 1370   250 ml. NR PET Individual No Retornable     0      NA    NA     0    0
## 1371        400 ml NR Individual No Retornable    NA      NA     0     0   NA
## 1372       500 ml Ret Individual    Retornable    NA      NA     2     3    1
## 1373        600 ml NR Individual No Retornable     2       2     1     1    1
## 1374      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 1375    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1376        600 ml NR Individual No Retornable     1       1    NA    NA    1
## 1377        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1378      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1379        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1380     1 Ltro. N.R. Individual No Retornable    19     108     2     2   13
## 1381      1.5 Lts. NR Individual No Retornable    16      73     3     3   16
## 1382    355 Ml NR Pet Individual No Retornable     3      18    NA    NA   NA
## 1383        5 Lts. NR   Familiar No Retornable     7      NA    NA    NA   NA
## 1384        600 ml NR Individual No Retornable     8      48    NA    NA   NA
## 1385     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1386   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1387   250 ml. NR PET Individual No Retornable     1       1     1     1    0
## 1388        600 ml NR Individual No Retornable     1       1     1     1   NA
## 1389   250 ml. NR PET Individual No Retornable     3       1    NA     2    2
## 1390        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1391     1 Ltro. N.R.   Familiar No Retornable     1      NA    NA     1    2
## 1392     1 Ltro. N.R. Individual No Retornable    NA       2     4    NA   NA
## 1393    12 Oz. NR Pet Individual No Retornable     2       2     3     1    2
## 1394        2 Lts. NR   Familiar No Retornable    NA       8     8     3    6
## 1395      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1396    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1397 500 ml NR Vidrio Individual No Retornable     4       4     2     2    6
## 1398     1 Ltro. N.R.   Familiar No Retornable    15       8    15    15   13
## 1399       12 Oz. Ret Individual    Retornable     2       2     2     2    2
## 1400      2.5 Lts. NR   Familiar No Retornable    11       7    11     4    7
## 1401        400 ml NR Individual No Retornable     3       3     5     3    2
## 1402 500 ml NR Vidrio Individual No Retornable    15      15    17    19   30
## 1403         8 Oz. NR Individual No Retornable     4       6     5     7    9
## 1404             Lata Individual No Retornable     3       2     5     5    3
## 1405      Lata 235 ml Individual No Retornable     1       2     2     1   NA
## 1406     1 Ltro. N.R.   Familiar No Retornable     2      NA     2     2    2
## 1407        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 1408 500 ml NR Vidrio Individual No Retornable     4       2     4     6    8
## 1409        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1410         8 Oz. NR Individual No Retornable     1      NA    NA    NA   NA
## 1411     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1412     1.250 Lts NR   Familiar No Retornable    40      26    40    45   21
## 1413      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1414     1.5 Lts. Ret   Familiar    Retornable    25      35    73    54   16
## 1415    12 Oz. NR Pet Individual No Retornable    17      15    21    39   12
## 1416       12 Oz. Ret Individual    Retornable    NA       2     3     3    3
## 1417        2 Lts. NR   Familiar No Retornable     3      NA    NA     6   NA
## 1418      2.5 Lts. NR   Familiar No Retornable    42      28    81     4   NA
## 1419 2.5 Lts. Ret Pet   Familiar    Retornable   151     127   151   134  229
## 1420    500 ml NR PET Individual No Retornable     4       4     4    NA   NA
## 1421 500 ml NR Vidrio Individual No Retornable    36      36    44    30   32
## 1422       500 ml Ret Individual    Retornable    82      68    85    91   97
## 1423      6.5 Oz. Ret Individual    Retornable     2       1     1     1    1
## 1424         8 Oz. NR Individual No Retornable     9       8    13     9   13
## 1425             Lata Individual No Retornable     9       6     6     8    9
## 1426      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 1427      Lata 235 ml Individual No Retornable     7       7     5     4    5
## 1428     1 Ltro. N.R. Individual No Retornable    NA       1     1     1    1
## 1429    500 ml NR PET Individual No Retornable    NA      NA    NA     1    1
## 1430        600 ml NR Individual No Retornable    NA      NA    NA    NA    3
## 1431    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1432     250 ml Tetra Individual No Retornable     3       0     0     0    0
## 1433   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 1434    413 ml NR VId Individual No Retornable     2      NA     2     1    1
## 1435   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1436     1 Ltro. N.R.   Familiar No Retornable    NA       2     4    NA    2
## 1437   300 ML. NR PET Individual No Retornable    NA       3     1     2   NA
## 1438    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1439     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1440        600 ml NR Individual No Retornable     5      NA    NA    NA    3
## 1441        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1442        2 Lts. NR   Familiar No Retornable    NA      NA     1     3    6
## 1443      2.5 Lts. NR   Familiar No Retornable     4       4     7    NA    4
## 1444   250 ml. NR PET Individual No Retornable     1       1     1     1    0
## 1445        400 ml NR Individual No Retornable     0       1     2     1    3
## 1446       500 ml Ret Individual    Retornable     2      NA     3     2    4
## 1447        600 ml NR Individual No Retornable     1       1     1     2    2
## 1448      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 1449      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1450        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA    1
## 1451   250 ml. NR PET Individual No Retornable     0       1     1     0    0
## 1452        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 1453       500 ml Ret Individual    Retornable    NA       2     1    NA   NA
## 1454        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1455      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 1456        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA    1
## 1457      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1458   250 ml. NR PET Individual No Retornable     1       1     1     1    0
## 1459        400 ml NR Individual No Retornable    NA      NA     0     1   NA
## 1460       500 ml Ret Individual    Retornable    NA      NA     1    NA   NA
## 1461        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1462        600 ml NR Individual No Retornable     3       1     1     3    2
## 1463     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1464        2 Lts. NR   Familiar No Retornable     3      NA     3    NA    3
## 1465      2.5 Lts. NR   Familiar No Retornable    11      NA    11    NA   NA
## 1466        400 ml NR Individual No Retornable    NA       1    NA     0    3
## 1467       500 ml Ret Individual    Retornable     4       2    11     4    6
## 1468        600 ml NR Individual No Retornable     3      NA    NA     1    3
## 1469      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 1470      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1471        2 Lts. NR   Familiar No Retornable    NA       6     1    NA    4
## 1472      2.5 Lts. NR   Familiar No Retornable    11       4     7     7    7
## 1473   250 ml. NR PET Individual No Retornable     1       1     1     1    0
## 1474        400 ml NR Individual No Retornable     1       2     2     2    1
## 1475       500 ml Ret Individual    Retornable     2      NA     1     2   11
## 1476        600 ml NR Individual No Retornable     3       1     1     3    1
## 1477      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 1478        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1479    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1480        600 ml NR Individual No Retornable     6      10     4     4    6
## 1481      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1482      Lata 453 ml Individual No Retornable    NA       0    NA    NA   NA
## 1483        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1484        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1485        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1486     1 Ltro. N.R. Individual No Retornable     6      27    11     4    2
## 1487      1.5 Lts. NR Individual No Retornable     3       3    10    13    3
## 1488        5 Lts. NR   Familiar No Retornable    18      28    14    14   28
## 1489        600 ml NR Individual No Retornable    NA      10    NA     8   NA
## 1490        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1491      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 1492        473 ml NR Individual No Retornable     1       1     1     2    3
## 1493        600 ml NR Individual No Retornable     4       3     3     3    4
## 1494   250 ml. NR PET Individual No Retornable     6       2    NA     2    6
## 1495        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1496     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 1497    12 Oz. NR Pet Individual No Retornable    NA       1     2     1    1
## 1498        2 Lts. NR   Familiar No Retornable    NA      37    NA    28   NA
## 1499        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1500      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 1501      Lata 450 ml Individual No Retornable    NA      NA    NA    NA    1
## 1502    500 ml NR PET Individual No Retornable    NA       3    NA     1    1
## 1503     1 Ltro. N.R.   Familiar No Retornable     6       8     8     8   13
## 1504        2 Lts. NR   Familiar No Retornable     6       6     3    14    8
## 1505       2 Lts. Ret   Familiar    Retornable     6      NA     3     3    6
## 1506        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1507 500 ml NR Vidrio Individual No Retornable    17      32    17    21   40
## 1508         8 Oz. NR Individual No Retornable     2       1     4     3    3
## 1509             Lata Individual No Retornable    NA       2    NA     2    2
## 1510     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1511 500 ml NR Vidrio Individual No Retornable     2      NA     2     2    2
## 1512        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1513     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1514     1.250 Lts NR   Familiar No Retornable    48      71    32    42   77
## 1515      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1516     1.5 Lts. Ret   Familiar    Retornable    22      19    25    25   29
## 1517    12 Oz. NR Pet Individual No Retornable    17      12    15    15   30
## 1518        2 Lts. NR   Familiar No Retornable    NA      NA    NA     6   NA
## 1519       2 Lts. Ret   Familiar    Retornable    11       6     8     8   14
## 1520      2.5 Lts. NR   Familiar No Retornable    49      88    49    88  102
## 1521 2.5 Lts. Ret Pet   Familiar    Retornable    74     232    42   144  236
## 1522 500 ml NR Vidrio Individual No Retornable    25      53    11    19   44
## 1523       500 ml Ret Individual    Retornable    23     101    25    80  118
## 1524         8 Oz. NR Individual No Retornable     6       4     8     7    6
## 1525             Lata Individual No Retornable     5       5     3     7    6
## 1526      Lata 16 Oz. Individual No Retornable     2      NA    NA    NA   NA
## 1527      Lata 235 ml Individual No Retornable     6       6     4     6    4
## 1528        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1529     1 Ltro. N.R. Individual No Retornable    NA       2     1     1    1
## 1530    500 ml NR PET Individual No Retornable    NA      NA    NA     1    1
## 1531        600 ml NR Individual No Retornable     8      NA    NA    NA    3
## 1532    1 Ltro. Tetra   Familiar No Retornable     4      NA     4     2    2
## 1533     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 1534   250 ML. NR VID Individual No Retornable     1       2    NA     3    2
## 1535    413 ml NR VId Individual No Retornable     3      22    NA     1   NA
## 1536   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1537     1 Ltro. N.R.   Familiar No Retornable     4       2     2     2    4
## 1538   300 ML. NR PET Individual No Retornable     1       1     0     1    0
## 1539    1 Ltro. Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 1540    1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1541    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1542    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1543     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1544        600 ml NR Individual No Retornable     6       1     3     3    4
## 1545        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1546      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1547        2 Lts. NR   Familiar No Retornable     6       6     6     8    6
## 1548        400 ml NR Individual No Retornable     0       0    NA    NA   NA
## 1549       500 ml Ret Individual    Retornable    NA      NA     1     2    1
## 1550        600 ml NR Individual No Retornable     4       3     3     4    4
## 1551      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1552      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1553        2 Lts. NR   Familiar No Retornable    NA       3     6     3    8
## 1554        400 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 1555       500 ml Ret Individual    Retornable    NA      NA     1    NA    1
## 1556        600 ml NR Individual No Retornable     4       1     3     3    2
## 1557      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1558      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1559   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1560        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1561       500 ml Ret Individual    Retornable     2      NA     1    NA    1
## 1562        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 1563        600 ml NR Individual No Retornable     2       1     3     3    4
## 1564       12 Oz. Ret Individual    Retornable    NA       2    NA    NA   NA
## 1565        2 Lts. NR   Familiar No Retornable     3      17     8    14   20
## 1566        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 1567       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 1568        600 ml NR Individual No Retornable     4       3     4     4    4
## 1569      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1570      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1571        2 Lts. NR   Familiar No Retornable    NA      23     3    14   23
## 1572        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 1573       500 ml Ret Individual    Retornable    NA      NA     1    NA    1
## 1574        600 ml NR Individual No Retornable     4       3     4     4    4
## 1575      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1576    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1577        600 ml NR Individual No Retornable     6       8     7    13   10
## 1578      Lata 222 ml Individual No Retornable    NA      NA     3    NA   NA
## 1579      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1580        2 Lts. NR   Familiar No Retornable    NA       3    11    NA    3
## 1581        600 ml NR Individual No Retornable     3      NA     5     5    3
## 1582        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1583     1 Ltro. N.R. Individual No Retornable     6      15    21     2    2
## 1584      1.5 Lts. NR Individual No Retornable    10       6    16    13    6
## 1585   300 ML. NR PET Individual No Retornable    NA      NA     2     1   NA
## 1586    355 Ml NR Pet Individual No Retornable     3       3     5    NA    3
## 1587        5 Lts. NR   Familiar No Retornable     4       4     4    NA    7
## 1588        600 ml NR Individual No Retornable     5       8    10     3    5
## 1589     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1590   300 ML. NR PET Individual No Retornable     4       5     4     3    2
## 1591      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 1592        473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1593   250 ml. NR PET Individual No Retornable     1       0     1    NA    0
## 1594    500 ml NR PET Individual No Retornable    NA      NA     2    NA   NA
## 1595        600 ml NR Individual No Retornable     3       3    NA    NA    1
## 1596   250 ml. NR PET Individual No Retornable     7       5     4     7   NA
## 1597        400 ml NR Individual No Retornable     1       1    NA    NA   NA
## 1598     1 Ltro. N.R.   Familiar No Retornable     1       3     1     1    1
## 1599     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 1600    12 Oz. NR Pet Individual No Retornable     3       3     1     1    2
## 1601        2 Lts. NR   Familiar No Retornable     8      17     3    20    6
## 1602        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1603      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 1604      Lata 450 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1605    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1606      Lata 235 ml Individual No Retornable     1       1    NA    NA   NA
## 1607 500 ml NR Vidrio Individual No Retornable     4       2     8    NA    8
## 1608      Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 1609 500 ml NR Vidrio Individual No Retornable     2      NA    NA     2   NA
## 1610     1 Ltro. N.R.   Familiar No Retornable    NA       4     2     6   NA
## 1611     1.250 Lts NR   Familiar No Retornable    21      11    29    NA   11
## 1612      1.5 Lts. NR   Familiar No Retornable    25      25    25     3   29
## 1613     1.5 Lts. Ret   Familiar    Retornable    25      32    16    38   29
## 1614     1.750 Lts NR   Familiar No Retornable    NA      NA    NA     2   NA
## 1615    12 Oz. NR Pet Individual No Retornable    15      17    27    30   26
## 1616       12 Oz. Ret Individual    Retornable    NA      NA    NA     3   NA
## 1617        2 Lts. NR   Familiar No Retornable    NA       3    NA     6   NA
## 1618       2 Lts. Ret   Familiar    Retornable    NA       6     3    NA   NA
## 1619      2.5 Lts. NR   Familiar No Retornable    70     116   102    77   67
## 1620 2.5 Lts. Ret Pet   Familiar    Retornable    56      88   106    42   74
## 1621    500 ml NR PET Individual No Retornable     2       2    15    NA   NA
## 1622 500 ml NR Vidrio Individual No Retornable    19       6    27    23    4
## 1623       500 ml Ret Individual    Retornable    72      85    82   139  104
## 1624         8 Oz. NR Individual No Retornable     4       4     4     3    4
## 1625             Lata Individual No Retornable     2       2     6     5   NA
## 1626      Lata 16 Oz. Individual No Retornable     6       4     6     2    6
## 1627      Lata 235 ml Individual No Retornable     8       7     8     3    8
## 1628        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1629     1 Ltro. N.R. Individual No Retornable     1       1     1     8    4
## 1630    500 ml NR PET Individual No Retornable     3      NA     1     5    2
## 1631        600 ml NR Individual No Retornable    10       4     5    15   13
## 1632    1 Ltro. Tetra   Familiar No Retornable    NA      NA     2     1    1
## 1633  125 ml NR Tetra Individual No Retornable     1       1     1    NA    1
## 1634     250 ml Tetra Individual No Retornable     4       2     2     1    0
## 1635   250 ML. NR VID Individual No Retornable     1       3    NA    NA    2
## 1636    413 ml NR VId Individual No Retornable    14      11     7    10   16
## 1637      Lata 335 ml Individual No Retornable    NA      NA     1    NA   NA
## 1638   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1639     1 Ltro. N.R.   Familiar No Retornable    NA       2     4     2    2
## 1640   300 ML. NR PET Individual No Retornable     1       0     1     1   NA
## 1641    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1642    1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1643     200 ml Tetra Individual No Retornable     0       0     1     0    0
## 1644        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1645      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1646      1.5 Lts. NR   Familiar No Retornable    NA       4    NA    NA   NA
## 1647     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1648        2 Lts. NR   Familiar No Retornable     3      NA    11     6    6
## 1649       2 Lts. Ret   Familiar    Retornable    NA      NA    NA     1   NA
## 1650      2.5 Lts. NR   Familiar No Retornable     7       7     7     8    7
## 1651   250 ml. NR PET Individual No Retornable     1       0     1    NA    0
## 1652        400 ml NR Individual No Retornable     3       5     5     3    8
## 1653       500 ml Ret Individual    Retornable    NA       1     2     2   NA
## 1654        600 ml NR Individual No Retornable     3       6    NA     2   NA
## 1655      Lata 235 ml Individual No Retornable    NA       1     1    NA    2
## 1656      1.5 Lts. NR   Familiar No Retornable     3       2    NA    NA   NA
## 1657     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1658        2 Lts. NR   Familiar No Retornable    NA       6     8     8   11
## 1659       2 Lts. Ret   Familiar    Retornable    NA      NA    NA     1   NA
## 1660      2.5 Lts. NR   Familiar No Retornable     7      25    18     1    4
## 1661   250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 1662        400 ml NR Individual No Retornable     5       2     9     5    8
## 1663    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1664       500 ml Ret Individual    Retornable    NA       3     2     2    2
## 1665        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1666      Lata 235 ml Individual No Retornable    NA       1     1    NA    2
## 1667      1.5 Lts. NR   Familiar No Retornable    NA       2    NA    NA   NA
## 1668        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 1669       2 Lts. Ret   Familiar    Retornable    NA      NA    NA     1   NA
## 1670      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA     1   NA
## 1671   250 ml. NR PET Individual No Retornable     1       0     1    NA    0
## 1672        400 ml NR Individual No Retornable     0      NA    NA    NA    1
## 1673       500 ml Ret Individual    Retornable    NA       1     2     2    2
## 1674        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1675        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 1676     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1677        2 Lts. NR   Familiar No Retornable    NA      NA     6    NA    8
## 1678      2.5 Lts. NR   Familiar No Retornable     7       4     4     4   NA
## 1679        400 ml NR Individual No Retornable    NA      NA     3     0    4
## 1680       500 ml Ret Individual    Retornable     2      NA    NA    NA    6
## 1681        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1682      Lata 235 ml Individual No Retornable    NA       1     1    NA    2
## 1683      1.5 Lts. NR   Familiar No Retornable    NA       2    NA    NA   NA
## 1684     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1685     1.750 Lts NR   Familiar No Retornable    NA      NA    NA     2   NA
## 1686        2 Lts. NR   Familiar No Retornable     3      NA     6     3    8
## 1687       2 Lts. Ret   Familiar    Retornable    NA      NA    NA     1   NA
## 1688      2.5 Lts. NR   Familiar No Retornable    NA      14     4     4    7
## 1689   250 ml. NR PET Individual No Retornable     1       0     1    NA    0
## 1690        400 ml NR Individual No Retornable     2       3     5     3    5
## 1691       500 ml Ret Individual    Retornable    NA       3     2     2    2
## 1692        600 ml NR Individual No Retornable    NA       2    NA    NA   NA
## 1693      Lata 235 ml Individual No Retornable    NA       1     1    NA    2
## 1694        600 ml NR Individual No Retornable     1      NA    NA     1    1
## 1695      Lata 222 ml Individual No Retornable    NA       0    NA    NA   NA
## 1696      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1697        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA    3
## 1698        600 ml NR Individual No Retornable     1       4    NA     5    5
## 1699        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1700     1 Ltro. N.R. Individual No Retornable     2      95     2     2   27
## 1701      1.5 Lts. NR Individual No Retornable     6     101     3    16   35
## 1702   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1703        5 Lts. NR   Familiar No Retornable     7      14    NA    18    7
## 1704        600 ml NR Individual No Retornable     5      36    NA     8   10
## 1705        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1706   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1707        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1708        473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1709   250 ml. NR PET Individual No Retornable     1       0     0     0    0
## 1710        600 ml NR Individual No Retornable     5       4    NA    NA   NA
## 1711   250 ml. NR PET Individual No Retornable    NA       2    NA     1   NA
## 1712        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1713     1 Ltro. N.R.   Familiar No Retornable    NA       1    NA     1   NA
## 1714     1 Ltro. N.R. Individual No Retornable     2       4     2     2    4
## 1715  100 ml NR Tetra Individual No Retornable    NA       4    NA    NA   NA
## 1716    12 Oz. NR Pet Individual No Retornable    NA       2     1     1   NA
## 1717        2 Lts. NR   Familiar No Retornable     3       8     3    11    3
## 1718        600 ml NR Individual No Retornable    NA      NA    NA     3    1
## 1719      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1720      Lata 450 ml Individual No Retornable     1      NA     1    NA   NA
## 1721    500 ml NR PET Individual No Retornable     3      NA    NA    NA   NA
## 1722     1 Ltro. N.R.   Familiar No Retornable     2       2    NA    NA   NA
## 1723    237 ml NR Vid Individual No Retornable     1      NA    NA    NA   NA
## 1724 500 ml NR Vidrio Individual No Retornable     4       2     2     2    4
## 1725      Lata 235 ml Individual No Retornable    NA       1    NA     1   NA
## 1726     1 Ltro. N.R.   Familiar No Retornable    23      23    30    40   42
## 1727       12 Oz. Ret Individual    Retornable     6       8     6     9   14
## 1728        2 Lts. NR   Familiar No Retornable    28      31    37    34   59
## 1729       2 Lts. Ret   Familiar    Retornable     6       6     8     8   11
## 1730        400 ml NR Individual No Retornable     3      14     5    19   14
## 1731 500 ml NR Vidrio Individual No Retornable    36      40    34    32   49
## 1732         8 Oz. NR Individual No Retornable     3       4     3     8    8
## 1733             Lata Individual No Retornable     3       3     3     5    5
## 1734      Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 1735     1 Ltro. N.R.   Familiar No Retornable     8       4     8     8   11
## 1736        2 Lts. NR   Familiar No Retornable     8       8    11    11    8
## 1737 500 ml NR Vidrio Individual No Retornable     6       6     6     2    6
## 1738         8 Oz. NR Individual No Retornable    NA       2    NA     1    1
## 1739             Lata Individual No Retornable    NA      NA    NA     2   NA
## 1740     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    4
## 1741     1.250 Lts NR   Familiar No Retornable    53      53    53    90   69
## 1742      1.5 Lts. NR   Familiar No Retornable    NA       6     6     6    6
## 1743     1.5 Lts. Ret   Familiar    Retornable     3       3     3    NA    3
## 1744    12 Oz. NR Pet Individual No Retornable    17      17    17    21   32
## 1745       12 Oz. Ret Individual    Retornable    17      17    20    27   29
## 1746        2 Lts. NR   Familiar No Retornable    28      28    25    62   73
## 1747       2 Lts. Ret   Familiar    Retornable     6       6     6     8   14
## 1748      2.5 Lts. NR   Familiar No Retornable    81      85    77    70   85
## 1749 2.5 Lts. Ret Pet   Familiar    Retornable    35      28    32    28   28
## 1750        400 ml NR Individual No Retornable     7       2     3    NA    5
## 1751    500 ml NR PET Individual No Retornable    21      15    13    25   15
## 1752 500 ml NR Vidrio Individual No Retornable    49      55    38    49   72
## 1753       500 ml Ret Individual    Retornable    55      53    38    57   80
## 1754      6.5 Oz. Ret Individual    Retornable     2       2     1     2    2
## 1755        710 ml NR Individual No Retornable     6       3     9    18   18
## 1756         8 Oz. NR Individual No Retornable    13      13    12    20   22
## 1757             Lata Individual No Retornable     5       6     6     8    8
## 1758      Lata 16 Oz. Individual No Retornable     2       2     4     6    8
## 1759      Lata 235 ml Individual No Retornable     4       6     4     5    6
## 1760        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1761     1 Ltro. N.R. Individual No Retornable     2       1     1     1    2
## 1762    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 1763        600 ml NR Individual No Retornable     1      NA     2     3    3
## 1764    1 Ltro. Tetra   Familiar No Retornable     2       1     1     5    2
## 1765     250 ml Tetra Individual No Retornable     2       1     2     1   NA
## 1766   250 ML. NR VID Individual No Retornable     1       1     1     2    2
## 1767    413 ml NR VId Individual No Retornable     3      13    NA     1    2
## 1768      Lata 335 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1769   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1770     1 Ltro. N.R.   Familiar No Retornable     2       2     2     6    2
## 1771   300 ML. NR PET Individual No Retornable     0       1    NA     1    1
## 1772    1 Ltro. Tetra   Familiar No Retornable     1       4     7    NA    3
## 1773    1 Ltro. Tetra   Familiar No Retornable     1       3     4     3   NA
## 1774    1 Ltro. Tetra   Familiar No Retornable     4       1     7    NA   NA
## 1775    1 Ltro. Tetra   Familiar No Retornable     5       2     6     5    5
## 1776     200 ml Tetra Individual No Retornable     1       1     0     1    1
## 1777        600 ml NR Individual No Retornable     3       4     5     8    9
## 1778        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1779      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1780     1 Ltro. N.R.   Familiar No Retornable     2       2     2     4    4
## 1781     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1782        2 Lts. NR   Familiar No Retornable    NA      NA     3     3   11
## 1783   250 ml. NR PET Individual No Retornable     1       0     0     0    0
## 1784        400 ml NR Individual No Retornable     2       2     4     3    6
## 1785       500 ml Ret Individual    Retornable     1       1     1     1    3
## 1786        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1787      Lata 235 ml Individual No Retornable    NA       1     1     0    0
## 1788     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1789        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1790   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 1791        400 ml NR Individual No Retornable     1      NA     1    NA   NA
## 1792       500 ml Ret Individual    Retornable     1       1     1     1    3
## 1793      Lata 235 ml Individual No Retornable    NA       1     1     0    0
## 1794     1 Ltro. N.R.   Familiar No Retornable     2       2     2    NA   NA
## 1795        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1796   250 ml. NR PET Individual No Retornable     1       0     0     0    0
## 1797        400 ml NR Individual No Retornable     1      NA     4    NA    2
## 1798    500 ml NR PET Individual No Retornable     2      NA    NA    NA   NA
## 1799       500 ml Ret Individual    Retornable     1       1     1     1    3
## 1800        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1801        600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 1802     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1803        2 Lts. NR   Familiar No Retornable     6       3     3     3    6
## 1804        400 ml NR Individual No Retornable    NA      NA     2     2    2
## 1805       500 ml Ret Individual    Retornable     2       2    NA     2    2
## 1806        600 ml NR Individual No Retornable    NA      NA     1     4    1
## 1807      Lata 235 ml Individual No Retornable    NA       1     1     0    0
## 1808     1 Ltro. N.R.   Familiar No Retornable     6       6     4     4    4
## 1809      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1810     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1811       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1812        2 Lts. NR   Familiar No Retornable     8       6     6     6    3
## 1813   250 ml. NR PET Individual No Retornable     1       0     0     0    0
## 1814        400 ml NR Individual No Retornable     4      NA     4     5    7
## 1815    500 ml NR PET Individual No Retornable     4      NA    NA    NA   NA
## 1816       500 ml Ret Individual    Retornable     1       1     1     1    3
## 1817        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1818      Lata 235 ml Individual No Retornable    NA       1     1     0    0
## 1819        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1820        600 ml NR Individual No Retornable     6       2     3    10    7
## 1821      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1822        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1823     1 Ltro. N.R. Individual No Retornable     2       8     6     6   13
## 1824      1.5 Lts. NR Individual No Retornable     6       6     3     6    6
## 1825        5 Lts. NR   Familiar No Retornable    11       7     4     7    7
## 1826        600 ml NR Individual No Retornable     3       3     3     3    5
## 1827   300 ML. NR PET Individual No Retornable     1       1     1     1    0
## 1828        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1829   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 1830        600 ml NR Individual No Retornable     1       2     1     1    3
## 1831   250 ml. NR PET Individual No Retornable     1       0     1     1    2
## 1832        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1833     1 Ltro. N.R.   Familiar No Retornable    NA       1     1    NA   NA
## 1834     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 1835    12 Oz. NR Pet Individual No Retornable    NA       2     1     1   NA
## 1836        2 Lts. NR   Familiar No Retornable     3       3    NA     3    3
## 1837 500 ml NR Vidrio Individual No Retornable     2      NA    NA    NA   NA
## 1838      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1839     1 Ltro. N.R.   Familiar No Retornable     6      13     8    13   11
## 1840       12 Oz. Ret Individual    Retornable     5       3     3     5    3
## 1841        2 Lts. NR   Familiar No Retornable     6       8     6     6   11
## 1842       2 Lts. Ret   Familiar    Retornable     6       3     3    11    6
## 1843      2.5 Lts. NR   Familiar No Retornable     7       4     4     4    7
## 1844        400 ml NR Individual No Retornable    12      12     8    17   15
## 1845 500 ml NR Vidrio Individual No Retornable     8       6     6    13   11
## 1846         8 Oz. NR Individual No Retornable     1       1     1    NA    1
## 1847             Lata Individual No Retornable     5       2     5     5    6
## 1848      Lata 235 ml Individual No Retornable     1      NA     1    NA    1
## 1849     1 Ltro. N.R.   Familiar No Retornable    NA      NA     2    NA    2
## 1850        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 1851 500 ml NR Vidrio Individual No Retornable     2      NA     4    NA    2
## 1852         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 1853     1 Ltro. N.R.   Familiar No Retornable     4       6     8     8   13
## 1854     1.250 Lts NR   Familiar No Retornable    11      11    16    11   18
## 1855      1.5 Lts. NR   Familiar No Retornable     6       6    10     6    6
## 1856     1.5 Lts. Ret   Familiar    Retornable     3       3     3    NA    3
## 1857    12 Oz. NR Pet Individual No Retornable     3       3     3     5    2
## 1858       12 Oz. Ret Individual    Retornable     6       6     6     6    9
## 1859        2 Lts. NR   Familiar No Retornable     8      23     8    17   23
## 1860       2 Lts. Ret   Familiar    Retornable     8       6     6    14    8
## 1861      2.5 Lts. NR   Familiar No Retornable     7      18    14    11   18
## 1862 2.5 Lts. Ret Pet   Familiar    Retornable    25      56    35    53   53
## 1863 500 ml NR Vidrio Individual No Retornable    21      25    19    23   23
## 1864       500 ml Ret Individual    Retornable    23      15    53     8   36
## 1865         8 Oz. NR Individual No Retornable     5       7     6     6    8
## 1866             Lata Individual No Retornable     2       5     2     5    2
## 1867      Lata 16 Oz. Individual No Retornable    NA      NA     2    NA    2
## 1868      Lata 235 ml Individual No Retornable     2       7     5     2    4
## 1869     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 1870    500 ml NR PET Individual No Retornable     1       2     1     2    2
## 1871        600 ml NR Individual No Retornable     1      NA     1     1    2
## 1872    1 Ltro. Tetra   Familiar No Retornable     5       2     3     2    3
## 1873     250 ml Tetra Individual No Retornable     2       0     0    NA   NA
## 1874   250 ML. NR VID Individual No Retornable     1       1     1     1    1
## 1875    413 ml NR VId Individual No Retornable     2       1     1     2    1
## 1876    500 ml NR PET Individual No Retornable     6       2     2     5    3
## 1877     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA     2   NA
## 1878   300 ML. NR PET Individual No Retornable    NA       1     0     1    1
## 1879    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1880     200 ml Tetra Individual No Retornable     0       0     0    NA   NA
## 1881        600 ml NR Individual No Retornable     4       4     2     4    3
## 1882        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1883      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1884     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1885       12 Oz. Ret Individual    Retornable     2      NA     2     2    2
## 1886        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA    6
## 1887   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 1888        400 ml NR Individual No Retornable     0      NA    NA     1   NA
## 1889       500 ml Ret Individual    Retornable     2      NA     2    NA   NA
## 1890        600 ml NR Individual No Retornable    NA       1     1     3    1
## 1891      Lata 235 ml Individual No Retornable    NA       1     0     0   NA
## 1892     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1893       12 Oz. Ret Individual    Retornable     0      NA    NA    NA   NA
## 1894        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1895   250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 1896       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1897        600 ml NR Individual No Retornable     1      NA    NA     1    1
## 1898      Lata 235 ml Individual No Retornable    NA       1     0     0   NA
## 1899       12 Oz. Ret Individual    Retornable     0       2    NA    NA   NA
## 1900   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 1901        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1902       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 1903        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1904        600 ml NR Individual No Retornable     1       1     3     1    2
## 1905     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1906       12 Oz. Ret Individual    Retornable    NA      NA    NA     2   NA
## 1907        2 Lts. NR   Familiar No Retornable     3       6     3     3    3
## 1908        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 1909       500 ml Ret Individual    Retornable     2       2     2    NA    2
## 1910        600 ml NR Individual No Retornable     1       1     1     3    1
## 1911      Lata 235 ml Individual No Retornable    NA       1     0     0   NA
## 1912     1 Ltro. N.R.   Familiar No Retornable     2       2    NA     4   NA
## 1913     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1914       12 Oz. Ret Individual    Retornable     2      NA     2     2    3
## 1915        2 Lts. NR   Familiar No Retornable    NA       3     6     3    3
## 1916   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 1917        400 ml NR Individual No Retornable    NA       0     2     1    1
## 1918       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1919        600 ml NR Individual No Retornable     1       4     3     3    3
## 1920      Lata 235 ml Individual No Retornable    NA       1     0     0   NA
## 1921        600 ml NR Individual No Retornable     4       3     6     3   10
## 1922      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1923        600 ml NR Individual No Retornable     2      NA     1     1    1
## 1924      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1925        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1926     1 Ltro. N.R. Individual No Retornable     4       2    NA     4   11
## 1927      1.5 Lts. NR Individual No Retornable     3       3    NA    10   13
## 1928   300 ML. NR PET Individual No Retornable    NA      NA     1     0   NA
## 1929        5 Lts. NR   Familiar No Retornable     4      NA    NA    NA   NA
## 1930        600 ml NR Individual No Retornable     8      NA    NA    NA   NA
## 1931   300 ML. NR PET Individual No Retornable    NA      NA    NA     1   NA
## 1932   250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 1933        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1934   250 ml. NR PET Individual No Retornable     1      NA    NA     2    1
## 1935        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1936     1 Ltro. N.R.   Familiar No Retornable    NA       1    NA     1   NA
## 1937     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA    2
## 1938    12 Oz. NR Pet Individual No Retornable    NA       1    NA     1    1
## 1939        2 Lts. NR   Familiar No Retornable    NA      NA     3     3    6
## 1940        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 1941      Lata 235 ml Individual No Retornable    NA       0    NA    NA    0
## 1942      Lata 450 ml Individual No Retornable     1      NA    NA    NA    1
## 1943    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 1944     1 Ltro. N.R.   Familiar No Retornable     2       2    NA    NA   NA
## 1945 500 ml NR Vidrio Individual No Retornable     2       2     4    NA   NA
## 1946      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1947     1 Ltro. N.R.   Familiar No Retornable    11      11    11     2   13
## 1948     1.250 Lts NR   Familiar No Retornable     8       8     8     8   13
## 1949      1.5 Lts. NR   Familiar No Retornable    16       3     6     6   13
## 1950     1.5 Lts. Ret   Familiar    Retornable    10       6     3     6    6
## 1951    12 Oz. NR Pet Individual No Retornable     2       2     3     2    2
## 1952        2 Lts. NR   Familiar No Retornable    NA      NA    NA     1   NA
## 1953      2.5 Lts. NR   Familiar No Retornable    63      39    35    11   95
## 1954 2.5 Lts. Ret Pet   Familiar    Retornable    25      21    14    11    4
## 1955    500 ml NR PET Individual No Retornable     4       6     6     2    4
## 1956 500 ml NR Vidrio Individual No Retornable    15      11    13     6   15
## 1957       500 ml Ret Individual    Retornable    40      27    25    25   19
## 1958         8 Oz. NR Individual No Retornable     1       1     1    NA   NA
## 1959             Lata Individual No Retornable     6       2     3    NA    3
## 1960      Lata 16 Oz. Individual No Retornable     2       4     4     2    6
## 1961      Lata 235 ml Individual No Retornable     5       3     3     2    4
## 1962        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1963     1 Ltro. N.R. Individual No Retornable    NA       1    NA     1    1
## 1964    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 1965        600 ml NR Individual No Retornable    NA      NA    NA     2   NA
## 1966     250 ml Tetra Individual No Retornable    NA       0     0     2    0
## 1967   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 1968    413 ml NR VId Individual No Retornable    NA      NA    NA     3    0
## 1969   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1970     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1971   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 1972    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 1973    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA     1    2
## 1974    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1975     200 ml Tetra Individual No Retornable    NA       0     0     0    0
## 1976        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1977      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1978      1.5 Lts. NR   Familiar No Retornable     2       2     2     2    2
## 1979     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1980        2 Lts. NR   Familiar No Retornable     4       1    NA     1   NA
## 1981      2.5 Lts. NR   Familiar No Retornable     2       3     1     2   NA
## 1982   250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 1983        400 ml NR Individual No Retornable    NA      NA     1    NA    0
## 1984       500 ml Ret Individual    Retornable     1       1    NA     1    3
## 1985        600 ml NR Individual No Retornable     1       1     1    NA    1
## 1986             Lata Individual No Retornable     0      NA    NA    NA   NA
## 1987      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 1988      1.5 Lts. NR   Familiar No Retornable     2       2     2     2    2
## 1989     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1990        2 Lts. NR   Familiar No Retornable     1       1     3     1    8
## 1991      2.5 Lts. NR   Familiar No Retornable     9       3     4     5    4
## 1992   250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 1993        400 ml NR Individual No Retornable     1       0     1     0    1
## 1994       500 ml Ret Individual    Retornable     3       3     2     1    5
## 1995        600 ml NR Individual No Retornable     2       3     1     1    1
## 1996             Lata Individual No Retornable     0      NA    NA    NA   NA
## 1997      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 1998      1.5 Lts. NR   Familiar No Retornable     2       2     2     2    2
## 1999        2 Lts. NR   Familiar No Retornable     1       1    NA     1   NA
## 2000      2.5 Lts. NR   Familiar No Retornable     2       3     3     2   NA
## 2001   250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 2002        400 ml NR Individual No Retornable     1      NA     0     0    0
## 2003       500 ml Ret Individual    Retornable     1       1    NA     1    3
## 2004        600 ml NR Individual No Retornable     1       1     1    NA    1
## 2005             Lata Individual No Retornable     0      NA    NA    NA   NA
## 2006        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2007     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2008   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2009       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2010      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 2011      1.5 Lts. NR   Familiar No Retornable     2       2     2     2    2
## 2012     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2013        2 Lts. NR   Familiar No Retornable     1       1    NA     1    6
## 2014      2.5 Lts. NR   Familiar No Retornable     2       3     3     2   NA
## 2015   250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 2016        400 ml NR Individual No Retornable     1       0     1     0    1
## 2017       500 ml Ret Individual    Retornable     1       1    NA     1    3
## 2018        600 ml NR Individual No Retornable     4       2     1    NA    1
## 2019             Lata Individual No Retornable     0      NA    NA    NA   NA
## 2020      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 2021    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2022        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2023      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2024      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2025        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 2026        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2027     1 Ltro. N.R. Individual No Retornable    15      49    40    25   59
## 2028      1.5 Lts. NR Individual No Retornable    10      13    NA    10   60
## 2029   300 ML. NR PET Individual No Retornable    NA      NA     0    NA    0
## 2030        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2031        600 ml NR Individual No Retornable    13      25    13    15   10
## 2032        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2033   300 ML. NR PET Individual No Retornable     1       3    NA    NA    2
## 2034     1 Ltro. N.R. Individual No Retornable     3       6     1     2    8
## 2035        600 ml NR Individual No Retornable     6       3     2    NA    8
## 2036        473 ml NR Individual No Retornable     1       3     1     1    2
## 2037   250 ml. NR PET Individual No Retornable     0       2    NA    NA   NA
## 2038        600 ml NR Individual No Retornable     8       5     3     3    5
## 2039   250 ml. NR PET Individual No Retornable     8       8     5     6   12
## 2040        400 ml NR Individual No Retornable     0       1     1     0    0
## 2041     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA     1    1
## 2042     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA    2
## 2043    12 Oz. NR Pet Individual No Retornable    NA      NA     1     1    1
## 2044        2 Lts. NR   Familiar No Retornable     8       6     8     6   14
## 2045        600 ml NR Individual No Retornable     3       1    NA    NA   NA
## 2046      Lata 235 ml Individual No Retornable     1       0     1     1    2
## 2047      Lata 450 ml Individual No Retornable     2       4     4     4   11
## 2048    500 ml NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2049     1 Ltro. N.R.   Familiar No Retornable    NA       4    NA    NA   NA
## 2050    237 ml NR Vid Individual No Retornable     1       2     1    NA    1
## 2051 500 ml NR Vidrio Individual No Retornable    NA       2    NA     2    2
## 2052     1 Ltro. N.R.   Familiar No Retornable     8       6    17    NA   15
## 2053       12 Oz. Ret Individual    Retornable     2       3     3     2    5
## 2054        2 Lts. NR   Familiar No Retornable    14      14    14    20   23
## 2055       2 Lts. Ret   Familiar    Retornable     3       8     6    14   11
## 2056 500 ml NR Vidrio Individual No Retornable     6      17    13    17   30
## 2057         8 Oz. NR Individual No Retornable     7       4     8     7    6
## 2058             Lata Individual No Retornable    NA      NA    NA     2    2
## 2059      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2060     1 Ltro. N.R.   Familiar No Retornable     4       6    11    NA    8
## 2061        2 Lts. NR   Familiar No Retornable     8       8     3     8    6
## 2062 500 ml NR Vidrio Individual No Retornable    NA       6    NA     4    4
## 2063         8 Oz. NR Individual No Retornable    NA       2    NA    NA   NA
## 2064     1 Ltro. N.R.   Familiar No Retornable    11      17    23    NA   38
## 2065     1.250 Lts NR   Familiar No Retornable    40      61    63    NA   66
## 2066      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2067     1.5 Lts. Ret   Familiar    Retornable    10       3     6     6    6
## 2068    12 Oz. NR Pet Individual No Retornable    27      20    30    15   27
## 2069       12 Oz. Ret Individual    Retornable     2      18    18    NA    3
## 2070        2 Lts. NR   Familiar No Retornable    42      59    34    42   28
## 2071       2 Lts. Ret   Familiar    Retornable    14      17    14     8   17
## 2072      2.5 Lts. NR   Familiar No Retornable    63     194    85    42   92
## 2073 2.5 Lts. Ret Pet   Familiar    Retornable    32      56    63    42   56
## 2074    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2075 500 ml NR Vidrio Individual No Retornable    46      95    51    25   78
## 2076       500 ml Ret Individual    Retornable    53      91    59   114   95
## 2077         8 Oz. NR Individual No Retornable    14      24    12     8   17
## 2078             Lata Individual No Retornable     3       5    14     2    8
## 2079      Lata 16 Oz. Individual No Retornable    NA       6    12     2    6
## 2080      Lata 235 ml Individual No Retornable     4       4    11     4    7
## 2081        600 ml NR Individual No Retornable    NA       3     2     3    3
## 2082     1 Ltro. N.R. Individual No Retornable     4       3     2     3    8
## 2083    500 ml NR PET Individual No Retornable     8       6     5     6    7
## 2084        600 ml NR Individual No Retornable     8       8     8    10   11
## 2085    1 Ltro. Tetra   Familiar No Retornable     6       2     2    NA    4
## 2086  125 ml NR Tetra Individual No Retornable     1       1     0     1    2
## 2087     250 ml Tetra Individual No Retornable     5       1     1     2    0
## 2088   250 ML. NR VID Individual No Retornable     7       6    NA     2    5
## 2089    413 ml NR VId Individual No Retornable    14      19    10    13   19
## 2090   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2091     1 Ltro. N.R.   Familiar No Retornable     2      NA     4     2    2
## 2092   300 ML. NR PET Individual No Retornable     2       3     0     1    2
## 2093    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2094    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2095    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2096    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2097     200 ml Tetra Individual No Retornable    NA      NA    NA     0    0
## 2098        600 ml NR Individual No Retornable     2       2    NA     3    1
## 2099      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2100        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2101      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2102      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 2103     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2104        2 Lts. NR   Familiar No Retornable    NA       6     3     6    1
## 2105      2.5 Lts. NR   Familiar No Retornable     4       4    NA    NA   14
## 2106   250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 2107        400 ml NR Individual No Retornable     0       0     1     1    1
## 2108       500 ml Ret Individual    Retornable     1       1     6     1    2
## 2109        600 ml NR Individual No Retornable     3       2     4     4    3
## 2110             Lata Individual No Retornable    NA      NA     0     0   NA
## 2111      Lata 235 ml Individual No Retornable    NA       1     0    NA   NA
## 2112      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 2113     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2114        2 Lts. NR   Familiar No Retornable     3      NA     6     3    1
## 2115      2.5 Lts. NR   Familiar No Retornable    NA       4    NA     4   18
## 2116   250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 2117        400 ml NR Individual No Retornable     0       0     0     1   NA
## 2118       500 ml Ret Individual    Retornable     1       1     2     5   NA
## 2119        600 ml NR Individual No Retornable     4       4     6     4    5
## 2120             Lata Individual No Retornable    NA      NA     0     0   NA
## 2121      Lata 235 ml Individual No Retornable    NA       1     0    NA   NA
## 2122      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 2123        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 2124      2.5 Lts. NR   Familiar No Retornable    NA       4    NA    NA   NA
## 2125   250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 2126        400 ml NR Individual No Retornable     0      NA     0     1   NA
## 2127       500 ml Ret Individual    Retornable     1       1    NA     1   NA
## 2128        600 ml NR Individual No Retornable     1       3     1     2    1
## 2129             Lata Individual No Retornable    NA      NA     0     0   NA
## 2130        600 ml NR Individual No Retornable     3       3     4     4    3
## 2131     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2132        2 Lts. NR   Familiar No Retornable    NA      11     8    NA    1
## 2133      2.5 Lts. NR   Familiar No Retornable     7       4    NA    NA   21
## 2134        400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2135       500 ml Ret Individual    Retornable    NA      NA     4    NA    2
## 2136        600 ml NR Individual No Retornable     4       5     3     5    4
## 2137      Lata 235 ml Individual No Retornable    NA       1     0    NA   NA
## 2138      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 2139     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2140       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2141        2 Lts. NR   Familiar No Retornable    NA      11     6    NA    1
## 2142      2.5 Lts. NR   Familiar No Retornable     7      11    NA     4   28
## 2143   250 ml. NR PET Individual No Retornable     0       0    NA    NA    3
## 2144        400 ml NR Individual No Retornable     1      NA     1     1   NA
## 2145       500 ml Ret Individual    Retornable     1       1    NA     3    6
## 2146        600 ml NR Individual No Retornable     4       8     6     5    8
## 2147             Lata Individual No Retornable    NA      NA     0     0   NA
## 2148      Lata 235 ml Individual No Retornable    NA       1     0    NA   NA
## 2149     1 Ltro. N.R. Individual No Retornable    NA       1     1    NA   NA
## 2150    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2151        600 ml NR Individual No Retornable    30      50    25    37   36
## 2152      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2153      Lata 453 ml Individual No Retornable    NA       1     1     3    7
## 2154        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2155        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2156        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2157     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2    2
## 2158      1.5 Lts. NR Individual No Retornable    NA      NA    NA     3    3
## 2159   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2160        600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 2161   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2162   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2163   250 ml. NR PET Individual No Retornable     1      NA     1     1   NA
## 2164     1 Ltro. N.R.   Familiar No Retornable    NA       1    NA     1   NA
## 2165    12 Oz. NR Pet Individual No Retornable    NA       1     1     1   NA
## 2166        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 2167      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2168     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA     4    2
## 2169        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 2170       2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2171 500 ml NR Vidrio Individual No Retornable   142      25    NA     6   66
## 2172     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2173     1.250 Lts NR   Familiar No Retornable   124      85    NA    26   95
## 2174      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2175     1.5 Lts. Ret   Familiar    Retornable   206     117    25    63   86
## 2176    12 Oz. NR Pet Individual No Retornable    11       8     2    23   15
## 2177       12 Oz. Ret Individual    Retornable    15      NA    NA    NA   32
## 2178        2 Lts. NR   Familiar No Retornable    NA      NA    NA     6   17
## 2179       2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2180      2.5 Lts. NR   Familiar No Retornable   310     113    NA    14   46
## 2181 2.5 Lts. Ret Pet   Familiar    Retornable   778     419    67   335  257
## 2182        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2183    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    2
## 2184 500 ml NR Vidrio Individual No Retornable   152      38    NA    70   82
## 2185       500 ml Ret Individual    Retornable   934     579   254   311  353
## 2186         8 Oz. NR Individual No Retornable     8       6     2    17    5
## 2187             Lata Individual No Retornable     2       2     2    NA    2
## 2188      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 2189      Lata 235 ml Individual No Retornable    NA       1    NA    NA    3
## 2190     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1   NA
## 2191    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 2192        600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 2193     250 ml Tetra Individual No Retornable     0       0    NA     0   NA
## 2194   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 2195    413 ml NR VId Individual No Retornable     1      NA    NA     5   NA
## 2196   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2197     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2198     200 ml Tetra Individual No Retornable    NA       0    NA     0   NA
## 2199        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2200      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2201      1.5 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2202     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2203       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2204        2 Lts. NR   Familiar No Retornable    NA       6     1     3   20
## 2205   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 2206        400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2207       500 ml Ret Individual    Retornable    10       7     2     3   16
## 2208        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2209      Lata 235 ml Individual No Retornable    NA      NA    NA     0    1
## 2210      1.5 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2211       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2212        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA    3
## 2213   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2214        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 2215       500 ml Ret Individual    Retornable   223      64    32    73   29
## 2216      Lata 235 ml Individual No Retornable    NA      NA    NA     0    1
## 2217      1.5 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2218       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2219        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 2220   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2221        400 ml NR Individual No Retornable    NA      NA    NA     0    1
## 2222       500 ml Ret Individual    Retornable   244       1    21    39   45
## 2223        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   11
## 2224       500 ml Ret Individual    Retornable     4      NA     4     4   NA
## 2225      Lata 235 ml Individual No Retornable    NA      NA    NA     0    1
## 2226      1.5 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2227     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2228       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2229        2 Lts. NR   Familiar No Retornable     3      NA     4    NA    8
## 2230   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2231        400 ml NR Individual No Retornable    NA      NA    NA     0    1
## 2232       500 ml Ret Individual    Retornable     1       5     4    22   20
## 2233      Lata 235 ml Individual No Retornable    NA      NA    NA     0    1
## 2234        600 ml NR Individual No Retornable    NA      NA    NA    NA    3
## 2235      Lata 222 ml Individual No Retornable    NA      NA     4    NA   NA
## 2236      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2237        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2238        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2239     1 Ltro. N.R. Individual No Retornable     2       4     4    NA    2
## 2240      1.5 Lts. NR Individual No Retornable     3      19     3    NA    3
## 2241        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2242   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2243     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1   NA
## 2244        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2245   250 ml. NR PET Individual No Retornable     2       3     1     4    3
## 2246        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2247     1 Ltro. N.R.   Familiar No Retornable    NA       3     1    NA    1
## 2248    12 Oz. NR Pet Individual No Retornable    NA       3     1    NA    1
## 2249        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 2250     1 Ltro. N.R.   Familiar No Retornable     8       2     2     6    2
## 2251 500 ml NR Vidrio Individual No Retornable     4       2     4     8    6
## 2252         8 Oz. NR Individual No Retornable    NA       1    NA     1    1
## 2253     1 Ltro. N.R.   Familiar No Retornable    13       4     6     4    8
## 2254     1.250 Lts NR   Familiar No Retornable     3       3    NA     3   NA
## 2255      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2256     1.5 Lts. Ret   Familiar    Retornable    22       3     6    48    3
## 2257    12 Oz. NR Pet Individual No Retornable     5       5     5    12    2
## 2258      2.5 Lts. NR   Familiar No Retornable    NA      NA     7    35   28
## 2259 2.5 Lts. Ret Pet   Familiar    Retornable    74      81    74    85   21
## 2260        400 ml NR Individual No Retornable     3       3     2     2   NA
## 2261    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2262 500 ml NR Vidrio Individual No Retornable     6       4     6    11   13
## 2263       500 ml Ret Individual    Retornable   116      93   118   123  110
## 2264         8 Oz. NR Individual No Retornable     2       3     2     4    4
## 2265      Lata 16 Oz. Individual No Retornable     2       2    NA     4   NA
## 2266      Lata 235 ml Individual No Retornable     2       2     2     1   NA
## 2267     1 Ltro. N.R. Individual No Retornable    NA       1     1    NA    1
## 2268    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 2269        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 2270  125 ml NR Tetra Individual No Retornable    NA       1    NA    NA   NA
## 2271     250 ml Tetra Individual No Retornable     0       4     0    NA    0
## 2272   250 ML. NR VID Individual No Retornable     1      NA    NA    NA   NA
## 2273    413 ml NR VId Individual No Retornable     5       5     5     4    7
## 2274   300 ML. NR PET Individual No Retornable    NA      NA    NA     0    1
## 2275    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2276     200 ml Tetra Individual No Retornable     0       0     0    NA    0
## 2277        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2278        2 Lts. NR   Familiar No Retornable    NA       1    NA    NA   NA
## 2279        400 ml NR Individual No Retornable     0       0     0     0    0
## 2280       500 ml Ret Individual    Retornable    NA       2     2    NA   NA
## 2281        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2282      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 2283        2 Lts. NR   Familiar No Retornable    NA       1    NA     3   NA
## 2284        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2285       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2286      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 2287        2 Lts. NR   Familiar No Retornable     3       6    NA    11    3
## 2288        400 ml NR Individual No Retornable     0      NA     0     0   NA
## 2289       500 ml Ret Individual    Retornable     2       2     2     6    6
## 2290        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2291     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2292        2 Lts. NR   Familiar No Retornable    NA       3     3     3   NA
## 2293        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 2294       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 2295      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 2296     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2297        2 Lts. NR   Familiar No Retornable     6       1     3     8   NA
## 2298        400 ml NR Individual No Retornable     0       0     0     0   NA
## 2299       500 ml Ret Individual    Retornable     4       4     2     6    8
## 2300        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2301      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 2302    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2303        600 ml NR Individual No Retornable     1       3     3    NA    1
## 2304      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2305        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2306     1 Ltro. N.R. Individual No Retornable    17       8    NA     2    2
## 2307      1.5 Lts. NR Individual No Retornable    22       3    NA     3    3
## 2308        600 ml NR Individual No Retornable     3       3    NA    NA   NA
## 2309     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2310     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2311        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2312        473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2313   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2314   250 ml. NR PET Individual No Retornable     3       4     1     2    3
## 2315        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2316     1 Ltro. N.R.   Familiar No Retornable    NA       1    NA     1   NA
## 2317     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2318    12 Oz. NR Pet Individual No Retornable    NA       1     1     1   NA
## 2319        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2320    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2321 500 ml NR Vidrio Individual No Retornable     2      NA     4    NA    2
## 2322     1 Ltro. N.R.   Familiar No Retornable    13      38    19    25   19
## 2323       12 Oz. Ret Individual    Retornable     3      NA     3     2    3
## 2324        2 Lts. NR   Familiar No Retornable    48      39    76     3   51
## 2325 500 ml NR Vidrio Individual No Retornable     8       4    32    NA   11
## 2326         8 Oz. NR Individual No Retornable     2       1     2     2    3
## 2327             Lata Individual No Retornable     2       3    NA     5    2
## 2328     1 Ltro. N.R.   Familiar No Retornable     6       4     6     2    8
## 2329 500 ml NR Vidrio Individual No Retornable     2       4     4    NA    6
## 2330        600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 2331         8 Oz. NR Individual No Retornable     2      NA     2     1   NA
## 2332     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2333     1.250 Lts NR   Familiar No Retornable    58      69    53    71   50
## 2334      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2335     1.5 Lts. Ret   Familiar    Retornable     3       3     6     3    3
## 2336     1.750 Lts NR   Familiar No Retornable    NA      NA    NA     5   NA
## 2337    12 Oz. NR Pet Individual No Retornable     9      23     5    23    5
## 2338        2 Lts. NR   Familiar No Retornable    NA      NA    34    34    6
## 2339      2.5 Lts. NR   Familiar No Retornable    NA     201   187    42  180
## 2340 2.5 Lts. Ret Pet   Familiar    Retornable    67      95   148   130   46
## 2341 500 ml NR Vidrio Individual No Retornable    36      25    27    NA   49
## 2342       500 ml Ret Individual    Retornable    53      59    34   125   34
## 2343         8 Oz. NR Individual No Retornable     6       6     5     7   10
## 2344             Lata Individual No Retornable     3      24    NA     4    5
## 2345      Lata 16 Oz. Individual No Retornable     2      NA    NA    NA   NA
## 2346     1 Ltro. N.R. Individual No Retornable    NA       1     1    NA   NA
## 2347    500 ml NR PET Individual No Retornable    NA      NA     1     1   NA
## 2348  125 ml NR Tetra Individual No Retornable     1      NA    NA    NA   NA
## 2349     250 ml Tetra Individual No Retornable     2       0     0     0   NA
## 2350   250 ML. NR VID Individual No Retornable     2       1     1    NA    2
## 2351    413 ml NR VId Individual No Retornable     6       5    18     4   11
## 2352   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2353     1 Ltro. N.R.   Familiar No Retornable     4       4     4     4    6
## 2354   300 ML. NR PET Individual No Retornable    NA       2    NA     1    1
## 2355     200 ml Tetra Individual No Retornable    NA       0     0    NA    0
## 2356        600 ml NR Individual No Retornable     3      NA    NA    NA    1
## 2357        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2358      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2359     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2360        2 Lts. NR   Familiar No Retornable     6       8     6    17   NA
## 2361   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2362        400 ml NR Individual No Retornable     0      NA     2     0    0
## 2363       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2364        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 2365     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2366        2 Lts. NR   Familiar No Retornable    NA      NA     6    NA    8
## 2367   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2368        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2369       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2370        2 Lts. NR   Familiar No Retornable    NA      NA     3     6   NA
## 2371   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2372        400 ml NR Individual No Retornable     0      NA     2    NA   NA
## 2373       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2374     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2375        2 Lts. NR   Familiar No Retornable    NA       8    11     8    6
## 2376       500 ml Ret Individual    Retornable     6       2    13     6    8
## 2377      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2378     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2379     1.750 Lts NR   Familiar No Retornable    NA      NA    NA     5   NA
## 2380        2 Lts. NR   Familiar No Retornable     3      14    14    14   31
## 2381   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2382        400 ml NR Individual No Retornable     0       0     2    NA   NA
## 2383       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2384        600 ml NR Individual No Retornable     3       1     1     1    1
## 2385    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2386        600 ml NR Individual No Retornable     2      16    NA    NA    9
## 2387      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2388        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2389        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2390        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2391     1 Ltro. N.R. Individual No Retornable     2       4     6    19    6
## 2392      1.5 Lts. NR Individual No Retornable     3      16    35    25   32
## 2393        600 ml NR Individual No Retornable    NA      NA     3    NA    3
## 2394        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2395   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2396     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2397      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 2398        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2399        600 ml NR Individual No Retornable     1      NA    NA     1    1
## 2400   250 ml. NR PET Individual No Retornable    11       1     8     6   16
## 2401        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2402     1 Ltro. N.R.   Familiar No Retornable     1       1     3     2    2
## 2403     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 2404    12 Oz. NR Pet Individual No Retornable    NA       1     2     1    1
## 2405        2 Lts. NR   Familiar No Retornable    23      14     8    17   11
## 2406        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2407      Lata 235 ml Individual No Retornable     0       0     0     0    0
## 2408      Lata 450 ml Individual No Retornable    NA       1     1     2    1
## 2409    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2410    237 ml NR Vid Individual No Retornable    NA      NA    NA     1   NA
## 2411 500 ml NR Vidrio Individual No Retornable    NA      NA    NA     4    4
## 2412      Lata 235 ml Individual No Retornable     1      NA    NA    NA    1
## 2413     1 Ltro. N.R.   Familiar No Retornable    21       2    23    13   32
## 2414        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2415      2.5 Lts. NR   Familiar No Retornable    32      25    53     7   92
## 2416 500 ml NR Vidrio Individual No Retornable    17      21    13    13   32
## 2417         8 Oz. NR Individual No Retornable     4       2    NA    NA    3
## 2418             Lata Individual No Retornable     2       2    NA    NA   NA
## 2419     1 Ltro. N.R.   Familiar No Retornable     6       2     2     8    8
## 2420        2 Lts. NR   Familiar No Retornable    11      23     3    14   NA
## 2421 500 ml NR Vidrio Individual No Retornable    13      15    13     4    8
## 2422         8 Oz. NR Individual No Retornable     2      NA    NA    NA    4
## 2423     1 Ltro. N.R.   Familiar No Retornable     2      NA    11     2   NA
## 2424     1.250 Lts NR   Familiar No Retornable    NA     161   172    11  198
## 2425      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2426     1.5 Lts. Ret   Familiar    Retornable    54      48    54   105   73
## 2427    12 Oz. NR Pet Individual No Retornable    12       5     2     5    2
## 2428        2 Lts. NR   Familiar No Retornable    NA      NA    NA     6   NA
## 2429      2.5 Lts. NR   Familiar No Retornable   190     229   204    NA  324
## 2430 2.5 Lts. Ret Pet   Familiar    Retornable   151     229   215   148  204
## 2431    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    2
## 2432 500 ml NR Vidrio Individual No Retornable    40      51    38    27   91
## 2433       500 ml Ret Individual    Retornable    34     116     2    87  144
## 2434         8 Oz. NR Individual No Retornable    21       9    10    11   22
## 2435             Lata Individual No Retornable     6      12    NA     9   12
## 2436      Lata 16 Oz. Individual No Retornable     6      12     6    NA   24
## 2437      Lata 235 ml Individual No Retornable     2       5    NA    NA    3
## 2438        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2439     1 Ltro. N.R. Individual No Retornable    NA       1     1     5    1
## 2440    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 2441        600 ml NR Individual No Retornable     3       1    NA     3    4
## 2442     250 ml Tetra Individual No Retornable     0       0     0     1    1
## 2443   250 ML. NR VID Individual No Retornable    NA       1    NA    NA    0
## 2444    413 ml NR VId Individual No Retornable     4       4     5     3    8
## 2445   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2446     1 Ltro. N.R.   Familiar No Retornable     2       2     2     4   NA
## 2447   300 ML. NR PET Individual No Retornable     1       1     0     1    1
## 2448    1 Ltro. Tetra   Familiar No Retornable     2       1     3     3    2
## 2449    1 Ltro. Tetra   Familiar No Retornable     2       1     2     3    2
## 2450    1 Ltro. Tetra   Familiar No Retornable     2       1     5     3    6
## 2451    1 Ltro. Tetra   Familiar No Retornable     2       1     3     3    2
## 2452     200 ml Tetra Individual No Retornable     0       2     2     2    3
## 2453        600 ml NR Individual No Retornable     1       3     3     3    1
## 2454        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2455      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2456     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2457      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2458     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2459        2 Lts. NR   Familiar No Retornable    NA      17    NA     3    1
## 2460      2.5 Lts. NR   Familiar No Retornable    NA      NA     4     3    5
## 2461        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 2462       500 ml Ret Individual    Retornable     2       2     1     5    2
## 2463        600 ml NR Individual No Retornable     3       2     3     3    3
## 2464      Lata 235 ml Individual No Retornable    NA       1    NA     0    0
## 2465     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2466      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2467     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2468        2 Lts. NR   Familiar No Retornable    NA      11    11     3    1
## 2469      2.5 Lts. NR   Familiar No Retornable    NA      NA     4     3    5
## 2470        400 ml NR Individual No Retornable     0      NA    NA     0   NA
## 2471       500 ml Ret Individual    Retornable     2       2     3     5    4
## 2472        600 ml NR Individual No Retornable     4       2    NA    NA    4
## 2473      Lata 235 ml Individual No Retornable    NA       1    NA     0    0
## 2474      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2475        2 Lts. NR   Familiar No Retornable    NA      11    11    NA    1
## 2476      2.5 Lts. NR   Familiar No Retornable    NA      NA     4     3    9
## 2477        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 2478       500 ml Ret Individual    Retornable     2      NA     1     5    2
## 2479        600 ml NR Individual No Retornable     1       2    NA     2    3
## 2480        600 ml NR Individual No Retornable     3       2     3     1    1
## 2481     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2482        2 Lts. NR   Familiar No Retornable    NA      17    NA     3    3
## 2483      2.5 Lts. NR   Familiar No Retornable     4      NA    NA    NA    4
## 2484       500 ml Ret Individual    Retornable    NA       4     2    NA   NA
## 2485        600 ml NR Individual No Retornable     3      NA    NA     1   NA
## 2486      Lata 235 ml Individual No Retornable    NA       1    NA     0    0
## 2487     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2488      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2489     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2490        2 Lts. NR   Familiar No Retornable     3      17    25    20    1
## 2491      2.5 Lts. NR   Familiar No Retornable    NA      NA     4     3    5
## 2492        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 2493    500 ml NR PET Individual No Retornable    NA      NA    NA     4   NA
## 2494       500 ml Ret Individual    Retornable     2      NA     1     5    2
## 2495        600 ml NR Individual No Retornable     2      NA    NA     2    3
## 2496      Lata 235 ml Individual No Retornable    NA       1    NA     0    0
## 2497    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2498        600 ml NR Individual No Retornable    13      12    12     7   11
## 2499      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2500        2 Lts. NR   Familiar No Retornable    NA      NA     3     3    3
## 2501        600 ml NR Individual No Retornable     5       5     5     8    5
## 2502      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2503        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2504     1 Ltro. N.R. Individual No Retornable    17      21    40    15   59
## 2505      1.5 Lts. NR Individual No Retornable     3      19    38    44   76
## 2506   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2507    355 Ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2508        5 Lts. NR   Familiar No Retornable    11      NA     4    14   21
## 2509        600 ml NR Individual No Retornable    20      23    23    15   20
## 2510     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2511        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2512   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2513     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2514      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 2515   250 ml. NR PET Individual No Retornable     2       2     2     2    2
## 2516    500 ml NR PET Individual No Retornable    NA      NA     2     2   NA
## 2517        600 ml NR Individual No Retornable     5       3     3     3    5
## 2518   250 ml. NR PET Individual No Retornable     4       1     0     8    5
## 2519        400 ml NR Individual No Retornable     2       2    NA     3   NA
## 2520     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1   NA
## 2521     1 Ltro. N.R. Individual No Retornable    NA       2     2     4    2
## 2522    12 Oz. NR Pet Individual No Retornable    NA       2     2     2    1
## 2523        2 Lts. NR   Familiar No Retornable     8       8     8     8    8
## 2524        600 ml NR Individual No Retornable     8       8     3     8    3
## 2525      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2526      Lata 450 ml Individual No Retornable    NA      NA    NA     1    1
## 2527    500 ml NR PET Individual No Retornable     2      NA    NA    NA   NA
## 2528 500 ml NR Vidrio Individual No Retornable    NA       2    NA     2    2
## 2529      Lata 235 ml Individual No Retornable     2       2     2     3    2
## 2530     1 Ltro. N.R.   Familiar No Retornable     2       2     4     2    6
## 2531        2 Lts. NR   Familiar No Retornable    11       6    14    NA    8
## 2532 500 ml NR Vidrio Individual No Retornable    11       4    19    11   21
## 2533        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 2534         8 Oz. NR Individual No Retornable     3      NA     1     3    2
## 2535             Lata Individual No Retornable    NA      NA    NA     2   NA
## 2536     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2537    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2538        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 2539        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2540 500 ml NR Vidrio Individual No Retornable    NA      NA     2     2    2
## 2541     1 Ltro. N.R.   Familiar No Retornable    80      87    85    80  156
## 2542     1.250 Lts NR   Familiar No Retornable     5       8    26     8   11
## 2543      1.5 Lts. NR   Familiar No Retornable     3       3    22     6   16
## 2544     1.5 Lts. Ret   Familiar    Retornable    22      22    22    22   32
## 2545    12 Oz. NR Pet Individual No Retornable    33      20    24    14   41
## 2546       12 Oz. Ret Individual    Retornable     3      NA     2     3    3
## 2547        2 Lts. NR   Familiar No Retornable    31      14    17    14   25
## 2548       2 Lts. Ret   Familiar    Retornable     8       6    20     3   23
## 2549      2.5 Lts. NR   Familiar No Retornable   183     240   137   275  303
## 2550 2.5 Lts. Ret Pet   Familiar    Retornable    21      32    63    39   42
## 2551    500 ml NR PET Individual No Retornable    49      44    51    55   53
## 2552 500 ml NR Vidrio Individual No Retornable    78      51   131    78  125
## 2553       500 ml Ret Individual    Retornable   129      74    89   120  201
## 2554      6.5 Oz. Ret Individual    Retornable    NA      NA    NA     1   NA
## 2555        710 ml NR Individual No Retornable     3       6     9    NA    3
## 2556         8 Oz. NR Individual No Retornable    14      15    17    12   16
## 2557             Lata Individual No Retornable    20      11    18    11   24
## 2558      Lata 16 Oz. Individual No Retornable     8      10    10     8   18
## 2559      Lata 235 ml Individual No Retornable     6       6     4     5    7
## 2560        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 2561     1 Ltro. N.R. Individual No Retornable     1       2     1     3    1
## 2562    500 ml NR PET Individual No Retornable    NA       1     2     2   NA
## 2563        600 ml NR Individual No Retornable     4       4     3     4    7
## 2564     250 ml Tetra Individual No Retornable     1       0     0     0    0
## 2565   250 ML. NR VID Individual No Retornable     1      NA    NA     1    1
## 2566   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2567    413 ml NR VId Individual No Retornable     8       3     2     3    6
## 2568    500 ml NR PET Individual No Retornable    NA      NA     2     2   NA
## 2569      Lata 335 ml Individual No Retornable    NA       1    NA    NA   NA
## 2570      Lata 453 ml Individual No Retornable     2       2     2    NA    1
## 2571   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2572     1 Ltro. N.R.   Familiar No Retornable     2       6    NA     6    2
## 2573   300 ML. NR PET Individual No Retornable     1       1     1     1    1
## 2574    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2575     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 2576        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2577        600 ml NR Individual No Retornable     3      NA     5     8   10
## 2578      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2579        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2580      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2581     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA    4
## 2582      1.5 Lts. NR   Familiar No Retornable     2       2     4     6    4
## 2583     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2584        2 Lts. NR   Familiar No Retornable     3       6     7     4   NA
## 2585      2.5 Lts. NR   Familiar No Retornable    11      NA    11     4    4
## 2586   250 ml. NR PET Individual No Retornable     5       2     3     2    2
## 2587        400 ml NR Individual No Retornable     3       8     4     9    6
## 2588       500 ml Ret Individual    Retornable     4       2     5     5   10
## 2589        600 ml NR Individual No Retornable    11       3    18    13   18
## 2590             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2591      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 2592     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 2593      1.5 Lts. NR   Familiar No Retornable     2       2     4     6    4
## 2594     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2595        2 Lts. NR   Familiar No Retornable    NA       6    15     4    3
## 2596      2.5 Lts. NR   Familiar No Retornable     4       4    14     7   14
## 2597   250 ml. NR PET Individual No Retornable     1       1     1     1    2
## 2598        400 ml NR Individual No Retornable     2       1     2     4    7
## 2599       500 ml Ret Individual    Retornable     2       2     9     5   12
## 2600        600 ml NR Individual No Retornable     4      NA    13    10   13
## 2601             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2602      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 2603     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 2604      1.5 Lts. NR   Familiar No Retornable     2       2     4     6    4
## 2605        2 Lts. NR   Familiar No Retornable     3       3     7     6   NA
## 2606      2.5 Lts. NR   Familiar No Retornable     4      NA    11     7   NA
## 2607   250 ml. NR PET Individual No Retornable     3       2     2     2    2
## 2608        400 ml NR Individual No Retornable     2       1     2     3    7
## 2609       500 ml Ret Individual    Retornable     4       2     7     5   10
## 2610        600 ml NR Individual No Retornable     8      NA     8     8    8
## 2611             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2612        600 ml NR Individual No Retornable    NA      NA     8     5   NA
## 2613     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2614        2 Lts. NR   Familiar No Retornable    NA       3    NA     6    6
## 2615      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    4
## 2616        400 ml NR Individual No Retornable     2       1    NA     2   NA
## 2617       500 ml Ret Individual    Retornable    NA      NA     2    NA    2
## 2618        600 ml NR Individual No Retornable    NA      NA    NA     4   NA
## 2619      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 2620     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA     2    2
## 2621      1.5 Lts. NR   Familiar No Retornable     2       2     4     6    4
## 2622     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2623        2 Lts. NR   Familiar No Retornable    NA       6     7     6    6
## 2624      2.5 Lts. NR   Familiar No Retornable     4       4    14     7    7
## 2625   250 ml. NR PET Individual No Retornable     3       2     4     2    3
## 2626        400 ml NR Individual No Retornable     2       3     3     6    5
## 2627       500 ml Ret Individual    Retornable     4       2     9     7   12
## 2628        600 ml NR Individual No Retornable     9      NA    15    10   20
## 2629             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2630      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 2631    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2632        600 ml NR Individual No Retornable     3      NA    NA    NA    3
## 2633       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2634        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2635      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2636        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2637     1 Ltro. N.R. Individual No Retornable     2       4     8     6    2
## 2638      1.5 Lts. NR Individual No Retornable     3       6    13    10   NA
## 2639   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2640        600 ml NR Individual No Retornable     3       8     5     3    3
## 2641     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2642        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2643        600 ml NR Individual No Retornable    NA       1    NA    NA    1
## 2644   250 ml. NR PET Individual No Retornable     0       0     1     0    0
## 2645        600 ml NR Individual No Retornable     1       1     1     3    3
## 2646   250 ml. NR PET Individual No Retornable     3       4     1     0    3
## 2647        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2648     1 Ltro. N.R.   Familiar No Retornable     1       2     3    NA   NA
## 2649     1 Ltro. N.R. Individual No Retornable     2      NA     2     4    2
## 2650    12 Oz. NR Pet Individual No Retornable     2       2     2     1   NA
## 2651        2 Lts. NR   Familiar No Retornable     3       8    11    20   14
## 2652        600 ml NR Individual No Retornable     3      NA    NA     4    3
## 2653      Lata 450 ml Individual No Retornable    NA      NA     1    NA    1
## 2654     1 Ltro. N.R.   Familiar No Retornable     4       4     2    NA   NA
## 2655    237 ml NR Vid Individual No Retornable     1      NA    NA     1   NA
## 2656 500 ml NR Vidrio Individual No Retornable     2      NA     6    NA   NA
## 2657             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2658      Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 2659     1 Ltro. N.R.   Familiar No Retornable    17      23    30    30   21
## 2660        2 Lts. NR   Familiar No Retornable    20      31    31    25   23
## 2661       2 Lts. Ret   Familiar    Retornable    NA       3     3     3    3
## 2662 500 ml NR Vidrio Individual No Retornable    13      17    17    17   19
## 2663         8 Oz. NR Individual No Retornable     4       3     2     4    5
## 2664             Lata Individual No Retornable    NA       3     2     2   NA
## 2665     1 Ltro. N.R.   Familiar No Retornable     4       6     8     2    6
## 2666        2 Lts. NR   Familiar No Retornable    11       8     6     6    8
## 2667 500 ml NR Vidrio Individual No Retornable     2       4     4     2    2
## 2668         8 Oz. NR Individual No Retornable    NA       1     1     1    2
## 2669     1 Ltro. N.R.   Familiar No Retornable    82      78    68    74   95
## 2670     1.250 Lts NR   Familiar No Retornable    34      26    24    29   26
## 2671      1.5 Lts. NR   Familiar No Retornable    16      16    25    25   19
## 2672     1.5 Lts. Ret   Familiar    Retornable    38      35    44    44   32
## 2673    12 Oz. NR Pet Individual No Retornable    26      20    20    27   24
## 2674        2 Lts. NR   Familiar No Retornable    45      54    54    37   68
## 2675       2 Lts. Ret   Familiar    Retornable    25      25    25    17   17
## 2676      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   11
## 2677 2.5 Lts. Ret Pet   Familiar    Retornable   261     208   151   208  271
## 2678    500 ml NR PET Individual No Retornable    17      17     8    11    6
## 2679 500 ml NR Vidrio Individual No Retornable    NA       2    NA    NA   30
## 2680       500 ml Ret Individual    Retornable   129      91    76    89  101
## 2681        710 ml NR Individual No Retornable    12       6    12     6   12
## 2682         8 Oz. NR Individual No Retornable    12      12     9    14   11
## 2683             Lata Individual No Retornable    11       9     8     9   11
## 2684      Lata 16 Oz. Individual No Retornable     8      10     8     8    8
## 2685      Lata 235 ml Individual No Retornable     7       8     6     5    8
## 2686        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 2687     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 2688    500 ml NR PET Individual No Retornable     1       4     2     3    2
## 2689        600 ml NR Individual No Retornable    NA       3     4     6    8
## 2690     250 ml Tetra Individual No Retornable     1      NA    NA    NA   NA
## 2691   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 2692    413 ml NR VId Individual No Retornable     3      NA     4     7    4
## 2693   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2694     1 Ltro. N.R.   Familiar No Retornable     2      NA     2     4    2
## 2695   300 ML. NR PET Individual No Retornable     0       1    NA     0    0
## 2696    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2697     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2698        600 ml NR Individual No Retornable     3       3     4     2    2
## 2699      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2700        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2701      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2702     1 Ltro. N.R.   Familiar No Retornable     4       2     4     2    2
## 2703      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2704        2 Lts. NR   Familiar No Retornable     1      NA     4     4    3
## 2705      2.5 Lts. NR   Familiar No Retornable     4       6     6     1    7
## 2706   250 ml. NR PET Individual No Retornable     0       0     1     0    0
## 2707        400 ml NR Individual No Retornable     0      NA     1    NA   NA
## 2708       500 ml Ret Individual    Retornable     2       3     2     3    2
## 2709        600 ml NR Individual No Retornable     3       4     3     4    4
## 2710             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2711      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2712      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2713        2 Lts. NR   Familiar No Retornable     1      NA     1     4    3
## 2714      2.5 Lts. NR   Familiar No Retornable     1       3     3     1   NA
## 2715   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 2716       500 ml Ret Individual    Retornable     2       3     2     3    2
## 2717        600 ml NR Individual No Retornable     1       3     1     1    3
## 2718             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2719      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2720     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2721      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2722        2 Lts. NR   Familiar No Retornable     1      NA     1     1   NA
## 2723      2.5 Lts. NR   Familiar No Retornable     4       3     3     1   NA
## 2724   250 ml. NR PET Individual No Retornable     0       0     1     0    0
## 2725        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2726       500 ml Ret Individual    Retornable     2       3     2     3    2
## 2727        600 ml NR Individual No Retornable     3       3     1     1    1
## 2728             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2729        600 ml NR Individual No Retornable     1       2     3     1    2
## 2730        2 Lts. NR   Familiar No Retornable    NA      NA     3     3   NA
## 2731      2.5 Lts. NR   Familiar No Retornable     4       4     4    NA    4
## 2732        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 2733       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2734        600 ml NR Individual No Retornable    NA       3    NA     3    3
## 2735      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2736     1 Ltro. N.R.   Familiar No Retornable     6       2     6     4    2
## 2737      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2738        2 Lts. NR   Familiar No Retornable     1      NA     4     6    3
## 2739      2.5 Lts. NR   Familiar No Retornable     8       8    10     3    7
## 2740   250 ml. NR PET Individual No Retornable     0       0     1     0    0
## 2741        400 ml NR Individual No Retornable     0      NA    NA    NA    3
## 2742       500 ml Ret Individual    Retornable     2       3     2     3    2
## 2743        600 ml NR Individual No Retornable     4       4     4     6    4
## 2744             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2745      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2746        600 ml NR Individual No Retornable     6      10     4    10   10
## 2747      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2748       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2749        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2750        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2751     1 Ltro. N.R. Individual No Retornable     4       6     8     2    6
## 2752      1.5 Lts. NR Individual No Retornable     3       6    10    10    3
## 2753   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2754        5 Lts. NR   Familiar No Retornable     4       7     4     4   NA
## 2755        600 ml NR Individual No Retornable     3       5     5    NA    3
## 2756        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2757   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2758   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 2759        600 ml NR Individual No Retornable     1       1     1     1    1
## 2760   250 ml. NR PET Individual No Retornable     2       4     3     3    4
## 2761        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2762     1 Ltro. N.R.   Familiar No Retornable    NA      NA     1     1    1
## 2763    12 Oz. NR Pet Individual No Retornable    NA       3     1     1    1
## 2764        2 Lts. NR   Familiar No Retornable     6       3     3    NA    3
## 2765      Lata 235 ml Individual No Retornable    NA      NA    NA     0    0
## 2766      Lata 450 ml Individual No Retornable     1      NA    NA     1   NA
## 2767    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2768     1 Ltro. N.R.   Familiar No Retornable    NA       2     2     2   NA
## 2769 500 ml NR Vidrio Individual No Retornable    NA       2    NA     2    2
## 2770     1 Ltro. N.R.   Familiar No Retornable    11       6    13     8   13
## 2771      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2772     1.5 Lts. Ret   Familiar    Retornable     3       3     3     3    3
## 2773    12 Oz. NR Pet Individual No Retornable     8       5     5     6    6
## 2774       12 Oz. Ret Individual    Retornable     3       3     3     5    5
## 2775        2 Lts. NR   Familiar No Retornable    11       8    11    14    8
## 2776      2.5 Lts. NR   Familiar No Retornable    28      35    46    49   39
## 2777 2.5 Lts. Ret Pet   Familiar    Retornable    21      18    18    11   14
## 2778 500 ml NR Vidrio Individual No Retornable    23      15    23    23   21
## 2779       500 ml Ret Individual    Retornable    23      21    32    42   42
## 2780         8 Oz. NR Individual No Retornable     1       2     2     3    3
## 2781             Lata Individual No Retornable     2       2     3     3    2
## 2782      Lata 235 ml Individual No Retornable     2       1     2     2    2
## 2783     1 Ltro. N.R. Individual No Retornable    NA      NA     1     1    1
## 2784    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 2785        600 ml NR Individual No Retornable     1       1     1    NA    1
## 2786     250 ml Tetra Individual No Retornable    NA      NA     0     0    0
## 2787   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 2788    413 ml NR VId Individual No Retornable     1       1     1     3    3
## 2789   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2790   300 ML. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 2791     200 ml Tetra Individual No Retornable    NA      NA     0     0    0
## 2792        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2793        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2794      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2795     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2796        2 Lts. NR   Familiar No Retornable     3       3    NA     3   NA
## 2797   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 2798        400 ml NR Individual No Retornable     1       0     0     0    3
## 2799       500 ml Ret Individual    Retornable     1       1     1     2   NA
## 2800        600 ml NR Individual No Retornable     4       2     3     3    4
## 2801      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2802     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2803        2 Lts. NR   Familiar No Retornable     6       6    NA     3    3
## 2804   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 2805        400 ml NR Individual No Retornable     1       0     0     1    1
## 2806       500 ml Ret Individual    Retornable     1       1     3     2    2
## 2807        600 ml NR Individual No Retornable     3       1     2     2    2
## 2808      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2809        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 2810   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 2811        400 ml NR Individual No Retornable     0      NA     0     0    1
## 2812       500 ml Ret Individual    Retornable     1       1     1     2   NA
## 2813        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 2814        600 ml NR Individual No Retornable    NA      NA     1    NA    1
## 2815     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2816        2 Lts. NR   Familiar No Retornable    NA      NA     3     3   NA
## 2817        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 2818      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2819     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2820        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 2821   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 2822        400 ml NR Individual No Retornable     1       1    NA     1    1
## 2823       500 ml Ret Individual    Retornable     3       1     1     2   NA
## 2824        600 ml NR Individual No Retornable     3       1     3     1    3
## 2825      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2826    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2827        600 ml NR Individual No Retornable     2       1     1     3    3
## 2828      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2829        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2830        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2831      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2832        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2833     1 Ltro. N.R. Individual No Retornable    NA       8     2     2   55
## 2834      1.5 Lts. NR Individual No Retornable    NA       3     3     3    3
## 2835        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2836        600 ml NR Individual No Retornable    10      20    NA    10   15
## 2837   300 ML. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 2838   250 ml. NR PET Individual No Retornable    NA       1     1     1    2
## 2839        600 ml NR Individual No Retornable    NA       3    NA     3    3
## 2840   250 ml. NR PET Individual No Retornable     4       6     2     3   10
## 2841        400 ml NR Individual No Retornable    NA       0     0     1    0
## 2842     1 Ltro. N.R.   Familiar No Retornable     2       1     1    NA    2
## 2843     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2   NA
## 2844    12 Oz. NR Pet Individual No Retornable    NA       2     1     2    1
## 2845        2 Lts. NR   Familiar No Retornable     8      14    NA     6   11
## 2846      Lata 235 ml Individual No Retornable     0       0     1     1    1
## 2847      Lata 450 ml Individual No Retornable    NA      NA     1     3    2
## 2848    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2849 500 ml NR Vidrio Individual No Retornable     4       2    NA     4    2
## 2850     1 Ltro. N.R.   Familiar No Retornable     6       4     2     6    6
## 2851        2 Lts. NR   Familiar No Retornable    11      14     8     8   17
## 2852        400 ml NR Individual No Retornable     2       2    NA     2    2
## 2853 500 ml NR Vidrio Individual No Retornable     8      21     4     8    6
## 2854         8 Oz. NR Individual No Retornable     1      NA    NA     1    1
## 2855             Lata Individual No Retornable    NA      NA     2    NA   NA
## 2856     1 Ltro. N.R.   Familiar No Retornable     2       2     6    NA    2
## 2857 500 ml NR Vidrio Individual No Retornable     4       2     6     2    2
## 2858         8 Oz. NR Individual No Retornable    NA       1    NA    NA   NA
## 2859             Lata Individual No Retornable    NA       2    NA    NA   NA
## 2860      Lata 235 ml Individual No Retornable     1       3    NA    NA   NA
## 2861     1 Ltro. N.R.   Familiar No Retornable    NA      25    42    42   70
## 2862     1.250 Lts NR   Familiar No Retornable    NA      NA    11     8   40
## 2863      1.5 Lts. NR   Familiar No Retornable    NA      NA    13    16   51
## 2864     1.5 Lts. Ret   Familiar    Retornable    98      48    41   288    3
## 2865    12 Oz. NR Pet Individual No Retornable     5      18     6    36    5
## 2866        2 Lts. NR   Familiar No Retornable    NA      NA    NA     8    3
## 2867       2 Lts. Ret   Familiar    Retornable     6       3     3     8    8
## 2868      2.5 Lts. NR   Familiar No Retornable    NA     144   120    NA  190
## 2869 2.5 Lts. Ret Pet   Familiar    Retornable   130     338   247   416   77
## 2870    500 ml NR PET Individual No Retornable     2       8     8    19   34
## 2871 500 ml NR Vidrio Individual No Retornable     6     167    NA    NA   97
## 2872       500 ml Ret Individual    Retornable   101     251   222   839   44
## 2873         8 Oz. NR Individual No Retornable    NA       2     4     4    7
## 2874             Lata Individual No Retornable    NA      NA     8    21   18
## 2875      Lata 16 Oz. Individual No Retornable    NA      NA     6    14   28
## 2876      Lata 235 ml Individual No Retornable     9       4     7     8    3
## 2877        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 2878     1 Ltro. N.R. Individual No Retornable     1       1     1     1    5
## 2879    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 2880        600 ml NR Individual No Retornable     1       3     2    NA    3
## 2881  125 ml NR Tetra Individual No Retornable     1      NA    NA    NA   NA
## 2882     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 2883   250 ML. NR VID Individual No Retornable     2       2     1    NA    1
## 2884    413 ml NR VId Individual No Retornable    10      21    NA     2   18
## 2885     1 Ltro. N.R.   Familiar No Retornable     2       2     2     2   NA
## 2886   300 ML. NR PET Individual No Retornable     0       1     1     1    1
## 2887    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2888     200 ml Tetra Individual No Retornable     0       1     2     0    1
## 2889        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2890      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2891      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2892     1 Ltro. N.R.   Familiar No Retornable    NA       2     2     2    2
## 2893      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2894     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2895        2 Lts. NR   Familiar No Retornable     3      14     6    14    6
## 2896   250 ml. NR PET Individual No Retornable     3       1     1     1    1
## 2897        400 ml NR Individual No Retornable    NA      NA     2    NA    2
## 2898       500 ml Ret Individual    Retornable     8       3    15    35   NA
## 2899        600 ml NR Individual No Retornable     5       3     3     3    5
## 2900      Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 2901     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2902      1.5 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 2903     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2904        2 Lts. NR   Familiar No Retornable    NA       6     6     8    3
## 2905   250 ml. NR PET Individual No Retornable     1       1     0     0    1
## 2906        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2907       500 ml Ret Individual    Retornable     4       5    13    31   NA
## 2908        600 ml NR Individual No Retornable     3       3    NA     3    3
## 2909      Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 2910      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2911        2 Lts. NR   Familiar No Retornable     3      NA    NA     3    3
## 2912   250 ml. NR PET Individual No Retornable     1       1     1     1    1
## 2913        400 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 2914       500 ml Ret Individual    Retornable     2       3     6    35   NA
## 2915        600 ml NR Individual No Retornable     3       3    NA    NA   NA
## 2916        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2917     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2918        2 Lts. NR   Familiar No Retornable     6       3     3    NA   NA
## 2919        400 ml NR Individual No Retornable    NA      NA     2    NA   NA
## 2920       500 ml Ret Individual    Retornable     8       4     4    11   NA
## 2921      Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 2922     1 Ltro. N.R.   Familiar No Retornable     6       4    NA     2    4
## 2923      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2924     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2925        2 Lts. NR   Familiar No Retornable    NA      14     8    20   20
## 2926   250 ml. NR PET Individual No Retornable     3       1     1     1    2
## 2927        400 ml NR Individual No Retornable     0       2     3     2    2
## 2928       500 ml Ret Individual    Retornable     4       9    15    45    2
## 2929        600 ml NR Individual No Retornable     8       3     3     5    8
## 2930      Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 2931    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2932        600 ml NR Individual No Retornable    NA       3    NA    NA    6
## 2933      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2934        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2935        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2936        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2937     1 Ltro. N.R. Individual No Retornable     6      11    15    11   13
## 2938      1.5 Lts. NR Individual No Retornable     6      13    25    22   19
## 2939   300 ML. NR PET Individual No Retornable    NA      NA    NA     0    0
## 2940        600 ml NR Individual No Retornable     5       3     3     8    5
## 2941     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2942      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 2943        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2944   300 ML. NR PET Individual No Retornable     1       1     2     1    1
## 2945     1 Ltro. N.R. Individual No Retornable    NA      NA     1     1    1
## 2946      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 2947   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 2948        600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 2949   250 ml. NR PET Individual No Retornable     5       5     1     5    3
## 2950        400 ml NR Individual No Retornable     0      NA    NA    NA    1
## 2951     1 Ltro. N.R.   Familiar No Retornable    NA       3     1     2    5
## 2952     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 2953    12 Oz. NR Pet Individual No Retornable    NA       1     1     2    2
## 2954        2 Lts. NR   Familiar No Retornable    NA      11    NA     8    6
## 2955        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 2956      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 2957      Lata 450 ml Individual No Retornable     1       1    NA     1    1
## 2958    500 ml NR PET Individual No Retornable     1      NA     1     1    2
## 2959 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 2960     1 Ltro. N.R.   Familiar No Retornable    19      15    19    17   21
## 2961        2 Lts. NR   Familiar No Retornable     6      NA     3     6    3
## 2962       2 Lts. Ret   Familiar    Retornable     6      NA    NA    NA   NA
## 2963      2.5 Lts. NR   Familiar No Retornable    25      21    21    28   28
## 2964        400 ml NR Individual No Retornable     3       3     3     2    2
## 2965 500 ml NR Vidrio Individual No Retornable    21      13    13    13   11
## 2966         8 Oz. NR Individual No Retornable    NA      NA     1     1   NA
## 2967             Lata Individual No Retornable     2      NA    NA    NA    2
## 2968      Lata 235 ml Individual No Retornable     1       1    NA    NA   NA
## 2969     1 Ltro. N.R.   Familiar No Retornable    11       6     6     4    6
## 2970        2 Lts. NR   Familiar No Retornable     3       6     6     6    6
## 2971 500 ml NR Vidrio Individual No Retornable     8       4     6     6    6
## 2972      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2973     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA     2    2
## 2974     1.250 Lts NR   Familiar No Retornable    71      69    77    87   61
## 2975      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2976     1.5 Lts. Ret   Familiar    Retornable    44      38    29    25   29
## 2977    12 Oz. NR Pet Individual No Retornable     3       5     6     9    9
## 2978        2 Lts. NR   Familiar No Retornable    31      23    31    46   31
## 2979       2 Lts. Ret   Familiar    Retornable     6      NA    NA     8    3
## 2980      2.5 Lts. NR   Familiar No Retornable    63     130    85   162  116
## 2981 2.5 Lts. Ret Pet   Familiar    Retornable    56     162    70   197  169
## 2982        400 ml NR Individual No Retornable     5      NA    NA    NA   NA
## 2983    500 ml NR PET Individual No Retornable     2       2     6    11    8
## 2984 500 ml NR Vidrio Individual No Retornable    25      53    61    59   49
## 2985       500 ml Ret Individual    Retornable   144     137   139   273   91
## 2986         8 Oz. NR Individual No Retornable     9       4     7     7    6
## 2987             Lata Individual No Retornable     3       5     2     5    3
## 2988      Lata 16 Oz. Individual No Retornable     2      NA     4     4    6
## 2989      Lata 235 ml Individual No Retornable     3       5     5     6    4
## 2990        600 ml NR Individual No Retornable    NA       1    NA     1   NA
## 2991     1 Ltro. N.R. Individual No Retornable    NA       1     1     1    4
## 2992    500 ml NR PET Individual No Retornable     1      NA     1     2    1
## 2993        600 ml NR Individual No Retornable     1      NA    NA     2    1
## 2994    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2995     250 ml Tetra Individual No Retornable     3       0     0     1    1
## 2996   250 ML. NR VID Individual No Retornable     1       1     0     1    2
## 2997    413 ml NR VId Individual No Retornable     5       5     7     5    9
## 2998   250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 2999     1 Ltro. N.R.   Familiar No Retornable    NA       2     2     2    2
## 3000   300 ML. NR PET Individual No Retornable     1       1     1     1    0
## 3001    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3002    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3003     200 ml Tetra Individual No Retornable     0       0     1     1    2
## 3004        600 ml NR Individual No Retornable     4       4     5     3    3
## 3005        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3006     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3007        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 3008      2.5 Lts. NR   Familiar No Retornable    11       4    11    14    7
## 3009   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 3010        400 ml NR Individual No Retornable    NA       0     0     1    1
## 3011       500 ml Ret Individual    Retornable    13       8    13    13   17
## 3012        600 ml NR Individual No Retornable     1       2     3     3    2
## 3013      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3014     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3015     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3016        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3017      2.5 Lts. NR   Familiar No Retornable     7       4     7    11    7
## 3018   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 3019        400 ml NR Individual No Retornable    NA      NA    NA     2    1
## 3020       500 ml Ret Individual    Retornable     1       6     2     8    4
## 3021        600 ml NR Individual No Retornable     1       1     3     1    3
## 3022      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3023      2.5 Lts. NR   Familiar No Retornable    NA       7     4    11    4
## 3024   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 3025        400 ml NR Individual No Retornable     2      NA    NA     1    1
## 3026       500 ml Ret Individual    Retornable     9       8     8     6    2
## 3027        600 ml NR Individual No Retornable     1       2     2     1    1
## 3028        600 ml NR Individual No Retornable     1       3    NA     2    3
## 3029     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3030        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 3031      2.5 Lts. NR   Familiar No Retornable    11      11     7     7   14
## 3032   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 3033        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 3034       500 ml Ret Individual    Retornable     8       4     4     8   13
## 3035        600 ml NR Individual No Retornable     3       4     3     4    3
## 3036      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3037     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3038        2 Lts. NR   Familiar No Retornable    NA      NA     3     6   NA
## 3039      2.5 Lts. NR   Familiar No Retornable    11      11     7    18   14
## 3040   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 3041        400 ml NR Individual No Retornable     2       0     1     2    2
## 3042       500 ml Ret Individual    Retornable    17      13    13    23   15
## 3043        600 ml NR Individual No Retornable     4       5     4     3    4
## 3044      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3045        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 3046    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3047        600 ml NR Individual No Retornable     3       6     1     3    8
## 3048      Lata 222 ml Individual No Retornable    NA      NA     0    NA   NA
## 3049      Lata 453 ml Individual No Retornable    NA      NA    NA    NA    1
## 3050        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3051     1 Ltro. N.R. Individual No Retornable     8      19    13     2   15
## 3052      1.5 Lts. NR Individual No Retornable     3       3    13     6    3
## 3053   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3054   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3055        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3056   250 ml. NR PET Individual No Retornable     2       3    NA     1    2
## 3057        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3058     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1    1
## 3059    12 Oz. NR Pet Individual No Retornable     2       1     2     1    1
## 3060      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3061       12 Oz. Ret Individual    Retornable    NA      NA     2     2   NA
## 3062      Lata 235 ml Individual No Retornable     1       1     1     1   NA
## 3063     1 Ltro. N.R.   Familiar No Retornable    17      19    15     8   17
## 3064        2 Lts. NR   Familiar No Retornable     6       8     3    NA    6
## 3065       2 Lts. Ret   Familiar    Retornable     6       6     3     8   11
## 3066 500 ml NR Vidrio Individual No Retornable    23      NA    23    13   11
## 3067         8 Oz. NR Individual No Retornable     1      NA    NA     1    2
## 3068 500 ml NR Vidrio Individual No Retornable     4      NA     4     2    2
## 3069     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3070     1.250 Lts NR   Familiar No Retornable    48      42    32    32   32
## 3071      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3072     1.5 Lts. Ret   Familiar    Retornable    22      32    22    38   19
## 3073    12 Oz. NR Pet Individual No Retornable     5       6     6     6    5
## 3074       12 Oz. Ret Individual    Retornable     6       3     6     6    5
## 3075        2 Lts. NR   Familiar No Retornable    17      17     8    11   NA
## 3076       2 Lts. Ret   Familiar    Retornable     6       8     8    23   NA
## 3077      2.5 Lts. NR   Familiar No Retornable    NA      28    70    NA   70
## 3078 2.5 Lts. Ret Pet   Familiar    Retornable    92      88    63    42  176
## 3079    500 ml NR PET Individual No Retornable    17      15    11    15   19
## 3080 500 ml NR Vidrio Individual No Retornable    36      13    19    NA   32
## 3081       500 ml Ret Individual    Retornable    46      36    21    49   17
## 3082         8 Oz. NR Individual No Retornable    11       5     6     6   10
## 3083             Lata Individual No Retornable    NA      NA     3     3    3
## 3084      Lata 235 ml Individual No Retornable     4       1     2     2    2
## 3085     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 3086        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3087    1 Ltro. Tetra   Familiar No Retornable     8      12    NA    NA    2
## 3088     250 ml Tetra Individual No Retornable     1       0     0     0    0
## 3089   250 ML. NR VID Individual No Retornable    NA       1     4    NA    3
## 3090    413 ml NR VId Individual No Retornable     7      21    NA    NA   NA
## 3091   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3092    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3093     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3094        600 ml NR Individual No Retornable     1       1     1     1   NA
## 3095        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3096     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3097        2 Lts. NR   Familiar No Retornable     8       3     8    11    6
## 3098   250 ml. NR PET Individual No Retornable     3      NA     1    NA    1
## 3099        400 ml NR Individual No Retornable    NA       2    NA     0    0
## 3100       500 ml Ret Individual    Retornable    NA      NA     1    NA   NA
## 3101        600 ml NR Individual No Retornable     3      NA     1     1    3
## 3102      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3103     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3104        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 3105       500 ml Ret Individual    Retornable    NA      NA     1    NA   NA
## 3106      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3107      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3108   250 ml. NR PET Individual No Retornable     1      NA     1    NA   NA
## 3109        400 ml NR Individual No Retornable    NA      NA     0     0   NA
## 3110       500 ml Ret Individual    Retornable    NA      NA     1    NA   NA
## 3111     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3112        2 Lts. NR   Familiar No Retornable    14       6    14     3    6
## 3113       500 ml Ret Individual    Retornable     2       2     2    NA    2
## 3114        600 ml NR Individual No Retornable     1       1     1     1    1
## 3115      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3116     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3117        2 Lts. NR   Familiar No Retornable    NA       6     6     6    6
## 3118   250 ml. NR PET Individual No Retornable     1      NA    NA     1    1
## 3119        400 ml NR Individual No Retornable     0      NA    NA     0   NA
## 3120       500 ml Ret Individual    Retornable    NA      NA     3    NA   NA
## 3121        600 ml NR Individual No Retornable     3       8    NA     1    1
## 3122      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3123    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3124        600 ml NR Individual No Retornable    NA      NA     4    NA    3
## 3125        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3126        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3127     1 Ltro. N.R. Individual No Retornable     2       2     2     2    2
## 3128      1.5 Lts. NR Individual No Retornable     3      NA     3     3    3
## 3129   300 ML. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3130        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3131     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3132   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3133     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3134      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3135   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3136        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3137   250 ml. NR PET Individual No Retornable    NA       0     1    NA    1
## 3138        400 ml NR Individual No Retornable     0      NA     0    NA    0
## 3139     1 Ltro. N.R.   Familiar No Retornable     1      NA     1     1    3
## 3140     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 3141    12 Oz. NR Pet Individual No Retornable     2      NA     2     1    1
## 3142        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3143        600 ml NR Individual No Retornable    NA       3    NA    NA   NA
## 3144 500 ml NR Vidrio Individual No Retornable    NA      NA    NA     2    2
## 3145      Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 3146     1 Ltro. N.R.   Familiar No Retornable     2       2     4     6    2
## 3147        2 Lts. NR   Familiar No Retornable     8       6     3     8    3
## 3148 500 ml NR Vidrio Individual No Retornable     6       6     6     6    4
## 3149         8 Oz. NR Individual No Retornable     1       2     1     1    2
## 3150             Lata Individual No Retornable     2      NA    NA     2   NA
## 3151      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3152     1 Ltro. N.R.   Familiar No Retornable    NA      NA     2    NA    2
## 3153 500 ml NR Vidrio Individual No Retornable     4       4     2     2    2
## 3154         8 Oz. NR Individual No Retornable     1      NA    NA    NA    1
## 3155      Lata 235 ml Individual No Retornable    NA       1    NA     1   NA
## 3156     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3157     1.250 Lts NR   Familiar No Retornable    18      21    29    29   29
## 3158      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3159     1.5 Lts. Ret   Familiar    Retornable    13       6    16    25   10
## 3160    12 Oz. NR Pet Individual No Retornable     9      12     6    18    6
## 3161        2 Lts. NR   Familiar No Retornable    23      17    11    14   20
## 3162       2 Lts. Ret   Familiar    Retornable    11       6    11     8   11
## 3163      2.5 Lts. NR   Familiar No Retornable    21      32     7    25   28
## 3164 2.5 Lts. Ret Pet   Familiar    Retornable    35      11     7    35   28
## 3165 500 ml NR Vidrio Individual No Retornable    NA      38    NA     6   42
## 3166       500 ml Ret Individual    Retornable    46      34    44    44   51
## 3167        600 ml NR Individual No Retornable    NA      13     3     8    8
## 3168        710 ml NR Individual No Retornable    NA       6     3     3   NA
## 3169         8 Oz. NR Individual No Retornable    NA       7     4     5    5
## 3170             Lata Individual No Retornable     2       2     6     3   NA
## 3171      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 3172      Lata 235 ml Individual No Retornable     4       2     2     2    2
## 3173        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3174     1 Ltro. N.R. Individual No Retornable    NA       1     1     1    1
## 3175    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3176        600 ml NR Individual No Retornable    NA       3    NA    NA    1
## 3177    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3178     250 ml Tetra Individual No Retornable     1      NA     0     0    0
## 3179    413 ml NR VId Individual No Retornable    NA       2     1    NA    2
## 3180   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3181     1 Ltro. N.R.   Familiar No Retornable    NA      NA     2    NA   NA
## 3182   300 ML. NR PET Individual No Retornable     1      NA     0    NA    1
## 3183     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3184        600 ml NR Individual No Retornable    NA       3     3    NA    2
## 3185        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3186     1 Ltro. N.R.   Familiar No Retornable    NA       2    NA    NA   NA
## 3187      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3188     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3189        2 Lts. NR   Familiar No Retornable     3       3     6    NA    3
## 3190   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3191        400 ml NR Individual No Retornable    NA       0     1     0    0
## 3192       500 ml Ret Individual    Retornable    NA      NA     1     1   NA
## 3193        600 ml NR Individual No Retornable    NA       1     1     1    1
## 3194      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3195      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3196        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3197   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3198        400 ml NR Individual No Retornable    NA      NA     0    NA    1
## 3199       500 ml Ret Individual    Retornable    NA      NA     1     1   NA
## 3200        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3201      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3202      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3203        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3204   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3205        400 ml NR Individual No Retornable    NA      NA     0     0   NA
## 3206       500 ml Ret Individual    Retornable    NA      NA     1     1   NA
## 3207        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3208        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3209        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA    3
## 3210        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3211        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 3212      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3213     1 Ltro. N.R.   Familiar No Retornable    NA       2    NA     2   NA
## 3214      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3215     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3216        2 Lts. NR   Familiar No Retornable     6       3    NA     6   NA
## 3217   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3218        400 ml NR Individual No Retornable     0       0     0     1    0
## 3219       500 ml Ret Individual    Retornable    NA      NA     1     1    4
## 3220        600 ml NR Individual No Retornable    NA       3     1     1    2
## 3221      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3222    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3223        600 ml NR Individual No Retornable     4       4    NA     1    3
## 3224       12 Oz. Ret Individual    Retornable    NA      NA    NA     2   NA
## 3225        2 Lts. NR   Familiar No Retornable    NA       3     3     3   NA
## 3226        600 ml NR Individual No Retornable     8       8     6    10   10
## 3227        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3228     1 Ltro. N.R. Individual No Retornable    13      17     2     6   19
## 3229      1.5 Lts. NR Individual No Retornable     3      44     3    10   22
## 3230   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3231    355 Ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3232        600 ml NR Individual No Retornable    NA      10    10    NA    5
## 3233     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3234      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3235     1 Ltro. N.R. Individual No Retornable    NA       3    NA     1    4
## 3236      1.5 Lts. NR Individual No Retornable     2       2     2     6    8
## 3237       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3238   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3239    500 ml NR PET Individual No Retornable     1       3     1     1    1
## 3240        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3241   250 ml. NR PET Individual No Retornable     6       0     1     2    4
## 3242        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3243     1 Ltro. N.R.   Familiar No Retornable    NA      NA     1     1    1
## 3244     1 Ltro. N.R. Individual No Retornable     2       2    NA    NA   NA
## 3245    12 Oz. NR Pet Individual No Retornable     2       1     1     1    1
## 3246        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3247      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3248      Lata 450 ml Individual No Retornable    NA       1     1     1   NA
## 3249    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3250       12 Oz. Ret Individual    Retornable    NA      NA     2     2   NA
## 3251      Lata 235 ml Individual No Retornable    NA      NA     1     1   NA
## 3252     1 Ltro. N.R.   Familiar No Retornable    NA       4     4     4    2
## 3253       12 Oz. Ret Individual    Retornable     3       2     3     8    6
## 3254        2 Lts. NR   Familiar No Retornable    NA       3     3     6   NA
## 3255       2 Lts. Ret   Familiar    Retornable     3       8     6     8   11
## 3256 500 ml NR Vidrio Individual No Retornable    17      15    15    17   34
## 3257         8 Oz. NR Individual No Retornable     2       1     2    NA    1
## 3258             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3259      Lata 235 ml Individual No Retornable     2       3     2     2    1
## 3260 500 ml NR Vidrio Individual No Retornable     2       2     2     2   11
## 3261        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3262             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3263     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3264     1.250 Lts NR   Familiar No Retornable    50      61     3    55   87
## 3265      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3266     1.5 Lts. Ret   Familiar    Retornable    98      79    44   124  181
## 3267    12 Oz. NR Pet Individual No Retornable    20      23    23    44   32
## 3268       12 Oz. Ret Individual    Retornable    41      38    60    38   99
## 3269        2 Lts. NR   Familiar No Retornable    11      NA    NA     3   NA
## 3270       2 Lts. Ret   Familiar    Retornable     3      11    NA     6    6
## 3271      2.5 Lts. NR   Familiar No Retornable    70      53    42    42   81
## 3272 2.5 Lts. Ret Pet   Familiar    Retornable   423     366   447   683  866
## 3273    500 ml NR PET Individual No Retornable    46      34    21    27   38
## 3274 500 ml NR Vidrio Individual No Retornable    55      42    34    57   82
## 3275       500 ml Ret Individual    Retornable   306     203   334   505  611
## 3276      6.5 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3277         8 Oz. NR Individual No Retornable    17      13    13    22   16
## 3278             Lata Individual No Retornable     6       6    12     9   15
## 3279      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 3280      Lata 235 ml Individual No Retornable     3       1     2     3    2
## 3281     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 3282    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3283        600 ml NR Individual No Retornable     6       4    NA     6    4
## 3284     250 ml Tetra Individual No Retornable     3       2     0     0    1
## 3285   250 ML. NR VID Individual No Retornable    NA       0    NA    NA    1
## 3286    413 ml NR VId Individual No Retornable     3       6     2     2    4
## 3287   250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 3288     1 Ltro. N.R.   Familiar No Retornable    NA       2     2     2    2
## 3289   300 ML. NR PET Individual No Retornable     1       1     1     1    1
## 3290    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3291    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3292    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3293     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3294        600 ml NR Individual No Retornable     3      NA     3     3   NA
## 3295        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3296      1.5 Lts. NR   Familiar No Retornable     3       3    NA     3   NA
## 3297     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3298       12 Oz. Ret Individual    Retornable     3       2     6     5   11
## 3299        2 Lts. NR   Familiar No Retornable    NA       8     8     8    3
## 3300      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   11
## 3301   250 ml. NR PET Individual No Retornable     1      NA     0     3   NA
## 3302        400 ml NR Individual No Retornable     3       2    NA     3    3
## 3303    500 ml NR PET Individual No Retornable    NA       2     2     2    2
## 3304       500 ml Ret Individual    Retornable     6       7     7     8    8
## 3305        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3306             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3307      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3308      1.5 Lts. NR   Familiar No Retornable     3      NA     3    NA    3
## 3309     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3310        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 3311      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    4
## 3312   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3313        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 3314    500 ml NR PET Individual No Retornable     2       2    NA     2    4
## 3315       500 ml Ret Individual    Retornable    NA       1     1    NA   13
## 3316      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 3317      1.5 Lts. NR   Familiar No Retornable     6       3     6     3    6
## 3318       12 Oz. Ret Individual    Retornable     3       3     2     3    6
## 3319        2 Lts. NR   Familiar No Retornable    NA       6     3    NA   NA
## 3320   250 ml. NR PET Individual No Retornable     1      NA     0     1   NA
## 3321        400 ml NR Individual No Retornable     2       2    NA     2    2
## 3322    500 ml NR PET Individual No Retornable    NA       2    NA     2   NA
## 3323       500 ml Ret Individual    Retornable    NA       1     1     2   NA
## 3324        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3325     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3326       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3327        2 Lts. NR   Familiar No Retornable     3       8    11    11   11
## 3328      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3329       500 ml Ret Individual    Retornable     6       6     4    11    6
## 3330      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3331      1.5 Lts. NR   Familiar No Retornable     3       6     6     3    6
## 3332     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3333       12 Oz. Ret Individual    Retornable     5       3     5     6   11
## 3334        2 Lts. NR   Familiar No Retornable     3      14    17    17   11
## 3335      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   11
## 3336   250 ml. NR PET Individual No Retornable     3      NA     0     1    1
## 3337        400 ml NR Individual No Retornable     3       2    NA     3    3
## 3338    500 ml NR PET Individual No Retornable     2       2     4     4    4
## 3339       500 ml Ret Individual    Retornable    11       9    12     6   13
## 3340      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3341    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3342        600 ml NR Individual No Retornable     6       4     5     6    4
## 3343      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3344     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2    2
## 3345      1.5 Lts. NR Individual No Retornable    NA      NA    NA     3    3
## 3346        600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 3347      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3348        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3349   250 ml. NR PET Individual No Retornable     0       0    NA     0    0
## 3350   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3351        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3352     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3353     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3354    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3355        2 Lts. NR   Familiar No Retornable     6       6    NA     3   NA
## 3356      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3357      Lata 450 ml Individual No Retornable    NA      NA     1     1    1
## 3358 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 3359     1 Ltro. N.R.   Familiar No Retornable     2       2     2    NA    2
## 3360 500 ml NR Vidrio Individual No Retornable     2       4     4     2    4
## 3361     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3362     1.250 Lts NR   Familiar No Retornable    NA      NA    NA    11   16
## 3363      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3364     1.5 Lts. Ret   Familiar    Retornable    10      13    16    22   16
## 3365    12 Oz. NR Pet Individual No Retornable     5       3     2     3    3
## 3366 2.5 Lts. Ret Pet   Familiar    Retornable    67      49    56    70   70
## 3367 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 3368       500 ml Ret Individual    Retornable    19      11    21    32   25
## 3369         8 Oz. NR Individual No Retornable    NA       2     1     1    1
## 3370      Lata 235 ml Individual No Retornable     1      NA    NA     1    1
## 3371        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 3372     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3373    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3374        600 ml NR Individual No Retornable    NA       3    NA    NA   NA
## 3375     250 ml Tetra Individual No Retornable    NA       1     2    NA    2
## 3376   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 3377    413 ml NR VId Individual No Retornable     4       2     4    NA    3
## 3378   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3379     1 Ltro. N.R.   Familiar No Retornable    NA       2    NA     2   NA
## 3380   300 ML. NR PET Individual No Retornable    NA      NA     0     0    1
## 3381     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3382      1.5 Lts. NR   Familiar No Retornable     3       5     3     3    2
## 3383     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3384        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 3385   250 ml. NR PET Individual No Retornable     0       0    NA     0    0
## 3386        400 ml NR Individual No Retornable     0       0     0    NA    0
## 3387       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3388      1.5 Lts. NR   Familiar No Retornable    NA      NA     2    NA   NA
## 3389     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3390   250 ml. NR PET Individual No Retornable     0       0    NA     0    0
## 3391        400 ml NR Individual No Retornable    NA       0    NA     0   NA
## 3392       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3393      1.5 Lts. NR   Familiar No Retornable     3       3     5     2    2
## 3394   250 ml. NR PET Individual No Retornable     0       0    NA     0    0
## 3395        400 ml NR Individual No Retornable     0       0    NA     0    1
## 3396       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3397     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3398        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 3399        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3400      1.5 Lts. NR   Familiar No Retornable     3       5     5     3    3
## 3401     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3402        2 Lts. NR   Familiar No Retornable     3       6     3     3    3
## 3403   250 ml. NR PET Individual No Retornable     0       0    NA     0    0
## 3404        400 ml NR Individual No Retornable     0       0     0     0    0
## 3405       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3406    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3407        600 ml NR Individual No Retornable     1       1     1     3    2
## 3408        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3409        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3410     1 Ltro. N.R. Individual No Retornable     4       2     6     2    6
## 3411      1.5 Lts. NR Individual No Retornable     3       3    16     3   10
## 3412   300 ML. NR PET Individual No Retornable    NA      NA    NA     0    1
## 3413        600 ml NR Individual No Retornable    NA       3    NA    NA    3
## 3414      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3415        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3416   300 ML. NR PET Individual No Retornable     1      NA     1     1    2
## 3417      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3418   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3419        600 ml NR Individual No Retornable     1      NA     1     2    1
## 3420   250 ml. NR PET Individual No Retornable     6       3     3     4    5
## 3421        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3422     1 Ltro. N.R.   Familiar No Retornable     1       1     2     5    5
## 3423     1 Ltro. N.R. Individual No Retornable    NA       2    NA    NA   NA
## 3424  100 ml NR Tetra Individual No Retornable     0      NA    NA    NA   NA
## 3425    12 Oz. NR Pet Individual No Retornable     2       2     2     2    2
## 3426        2 Lts. NR   Familiar No Retornable     3       6     6    14    6
## 3427        600 ml NR Individual No Retornable     3       1    NA     1   NA
## 3428      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 3429      Lata 450 ml Individual No Retornable    NA       1    NA    NA   NA
## 3430    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3431     1 Ltro. N.R.   Familiar No Retornable     2       2    NA    NA   NA
## 3432    237 ml NR Vid Individual No Retornable     1       1    NA    NA    1
## 3433 500 ml NR Vidrio Individual No Retornable     2      NA    NA     2    4
## 3434      Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 3435     1 Ltro. N.R.   Familiar No Retornable    32      32    30    32   44
## 3436        2 Lts. NR   Familiar No Retornable    37      39    59    48   65
## 3437 500 ml NR Vidrio Individual No Retornable    17      19    17    25   40
## 3438         8 Oz. NR Individual No Retornable     4       6     3     2    4
## 3439             Lata Individual No Retornable     3       2    NA     3    3
## 3440     1 Ltro. N.R.   Familiar No Retornable     4       6     8     6   11
## 3441        2 Lts. NR   Familiar No Retornable     8      17    11    14   14
## 3442 500 ml NR Vidrio Individual No Retornable     4       6     2     6    6
## 3443         8 Oz. NR Individual No Retornable     1       1     1     1    1
## 3444     1 Ltro. N.R.   Familiar No Retornable    38      34    34    40   57
## 3445     1.250 Lts NR   Familiar No Retornable    32      26    55    48   58
## 3446      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3447     1.5 Lts. Ret   Familiar    Retornable     6      13    10    16   16
## 3448    12 Oz. NR Pet Individual No Retornable     5       3     8     6   11
## 3449       12 Oz. Ret Individual    Retornable     8       6     5     6    2
## 3450        2 Lts. NR   Familiar No Retornable    56      65    93    93  110
## 3451       2 Lts. Ret   Familiar    Retornable     6      11     8     3   14
## 3452      2.5 Lts. NR   Familiar No Retornable    88      67   144    81  123
## 3453 2.5 Lts. Ret Pet   Familiar    Retornable    60      67   127    67   85
## 3454    500 ml NR PET Individual No Retornable    NA       2    NA     4    2
## 3455 500 ml NR Vidrio Individual No Retornable    25      21    27    32   46
## 3456       500 ml Ret Individual    Retornable    23      27    42    66   42
## 3457        710 ml NR Individual No Retornable     9       6     3     3   12
## 3458         8 Oz. NR Individual No Retornable     7       8    11     9   12
## 3459             Lata Individual No Retornable     6       5     5     6    8
## 3460      Lata 16 Oz. Individual No Retornable     2       2     4     4    8
## 3461      Lata 235 ml Individual No Retornable     1       1     3     4    2
## 3462        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3463     1 Ltro. N.R. Individual No Retornable     1       2     1     2    2
## 3464    500 ml NR PET Individual No Retornable     1      NA    NA     1    3
## 3465        600 ml NR Individual No Retornable     3       1     1     3    8
## 3466     250 ml Tetra Individual No Retornable     2       1     1     1    1
## 3467   250 ML. NR VID Individual No Retornable     1       1     1    NA    1
## 3468    413 ml NR VId Individual No Retornable     5       3     3     4    7
## 3469   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3470     1 Ltro. N.R.   Familiar No Retornable    NA       4    NA    NA    4
## 3471   300 ML. NR PET Individual No Retornable     1       1    NA    NA    1
## 3472    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3473    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3474    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3475     200 ml Tetra Individual No Retornable     0       0     0     1    0
## 3476        600 ml NR Individual No Retornable     1       2     2    10    2
## 3477      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3478        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3479      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3480     1 Ltro. N.R.   Familiar No Retornable     2       2    NA     4    2
## 3481     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3482       12 Oz. Ret Individual    Retornable     1       2     0    NA   NA
## 3483        2 Lts. NR   Familiar No Retornable     3       3     8    14   11
## 3484   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3485        400 ml NR Individual No Retornable    NA       0    NA    NA    0
## 3486       500 ml Ret Individual    Retornable     1       1     1     3    4
## 3487        600 ml NR Individual No Retornable     1       2     1     1    1
## 3488      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3489     1 Ltro. N.R.   Familiar No Retornable     4       2    NA    NA   NA
## 3490     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3491       12 Oz. Ret Individual    Retornable     1       2     0    NA   NA
## 3492        2 Lts. NR   Familiar No Retornable     3       3     8    NA    6
## 3493   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3494        400 ml NR Individual No Retornable     0       0    NA    NA    0
## 3495       500 ml Ret Individual    Retornable     1       1     1     3    2
## 3496        600 ml NR Individual No Retornable    NA       1    NA    NA    1
## 3497      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3498     1 Ltro. N.R.   Familiar No Retornable     4       2     2    NA    4
## 3499       12 Oz. Ret Individual    Retornable     1       2     0    NA   NA
## 3500        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3501   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3502        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 3503       500 ml Ret Individual    Retornable     1       1     1     3    4
## 3504        600 ml NR Individual No Retornable    NA       2    NA    NA    2
## 3505        600 ml NR Individual No Retornable     1       2     1     1    1
## 3506     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3507        2 Lts. NR   Familiar No Retornable    14       6    14    11   11
## 3508        400 ml NR Individual No Retornable    NA       0     0    NA    0
## 3509        600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 3510      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3511     1 Ltro. N.R.   Familiar No Retornable     6       2     2     6    2
## 3512     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3513       12 Oz. Ret Individual    Retornable     1       2     0    NA   NA
## 3514        2 Lts. NR   Familiar No Retornable     6      NA     6    14   11
## 3515   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3516        400 ml NR Individual No Retornable    NA       1    NA     0    0
## 3517       500 ml Ret Individual    Retornable     1       1     1     3    6
## 3518        600 ml NR Individual No Retornable     2       1     3     1    4
## 3519      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3520        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 3521    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3522        600 ml NR Individual No Retornable    12       7     4     6   10
## 3523      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3524      Lata 453 ml Individual No Retornable    NA       0    NA    NA   NA
## 3525      LATA 680 ML Individual No Retornable    NA      NA     1     1   NA
## 3526       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3527        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3528        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3529     1 Ltro. N.R. Individual No Retornable     2       2    NA     2    2
## 3530      1.5 Lts. NR Individual No Retornable     3       6    NA     3    3
## 3531   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3532   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3533   250 ml. NR PET Individual No Retornable     2       2     3     2    3
## 3534     1 Ltro. N.R.   Familiar No Retornable     1       1    NA     1    1
## 3535    12 Oz. NR Pet Individual No Retornable     2       1     1     1    1
## 3536        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3537     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 3538     1 Ltro. N.R.   Familiar No Retornable    11      11     8    11    8
## 3539        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 3540       2 Lts. Ret   Familiar    Retornable     8       8     8    11    6
## 3541        400 ml NR Individual No Retornable     2       3    NA     2   NA
## 3542 500 ml NR Vidrio Individual No Retornable     6       8     8    11    6
## 3543         8 Oz. NR Individual No Retornable     2      NA     1     1   NA
## 3544             Lata Individual No Retornable     2      NA     2     1   NA
## 3545     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    4
## 3546     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3547     1.250 Lts NR   Familiar No Retornable    50      42    45    45   32
## 3548      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3549     1.5 Lts. Ret   Familiar    Retornable    19      22    25    32   22
## 3550    12 Oz. NR Pet Individual No Retornable     2       2     2     2    2
## 3551       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA    2
## 3552       2 Lts. Ret   Familiar    Retornable    17      11    11    11   14
## 3553      2.5 Lts. NR   Familiar No Retornable    63      49    56    63   63
## 3554 2.5 Lts. Ret Pet   Familiar    Retornable   183     151   134   215  155
## 3555        400 ml NR Individual No Retornable     8       8     8     8   10
## 3556 500 ml NR Vidrio Individual No Retornable    13      13    13    19   17
## 3557       500 ml Ret Individual    Retornable    40      44    34    46   53
## 3558         8 Oz. NR Individual No Retornable     3       3     2     2    3
## 3559             Lata Individual No Retornable     5       3     3     3    5
## 3560      Lata 235 ml Individual No Retornable    NA      NA     1    NA    1
## 3561        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3562     1 Ltro. N.R. Individual No Retornable     1       1    NA     1    1
## 3563    500 ml NR PET Individual No Retornable    NA       1    NA    NA    1
## 3564        600 ml NR Individual No Retornable     1       1     1    NA    1
## 3565     250 ml Tetra Individual No Retornable     3       0     0     0    0
## 3566    413 ml NR VId Individual No Retornable     5       4     3     5    3
## 3567   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3568     1 Ltro. N.R.   Familiar No Retornable    NA      NA     2    NA   NA
## 3569   300 ML. NR PET Individual No Retornable     0       0    NA     0    0
## 3570     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3571        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3572      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3573     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3574        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3575   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3576        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 3577       500 ml Ret Individual    Retornable     1       1     1     2    1
## 3578      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3579      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3580     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3581        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3582   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3583        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3584       500 ml Ret Individual    Retornable     1       1     1     2    1
## 3585      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3586        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3587   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3588        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 3589       500 ml Ret Individual    Retornable     1       1     1     2    1
## 3590     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3591        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 3592        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 3593       500 ml Ret Individual    Retornable    NA      NA     2    NA   NA
## 3594      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3595     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3596        2 Lts. NR   Familiar No Retornable     3       3     3     6   NA
## 3597   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3598        400 ml NR Individual No Retornable     0      NA    NA     0    2
## 3599       500 ml Ret Individual    Retornable     1       1     1     2    1
## 3600      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3601    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3602        600 ml NR Individual No Retornable     3       1     1     3    5
## 3603       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3604        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3605      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3606        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3607     1 Ltro. N.R. Individual No Retornable     8       8    15     4    8
## 3608      1.5 Lts. NR Individual No Retornable    13       3    16     3   16
## 3609        600 ml NR Individual No Retornable    10      NA     3     5    8
## 3610        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3611   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3612      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3613        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3614   250 ml. NR PET Individual No Retornable     3       3     4     2    3
## 3615        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3616     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 3617     1 Ltro. N.R. Individual No Retornable    NA       2    NA    NA   NA
## 3618    12 Oz. NR Pet Individual No Retornable    NA       2     1     1    1
## 3619        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA    3
## 3620      Lata 235 ml Individual No Retornable    NA       0    NA    NA    0
## 3621      Lata 450 ml Individual No Retornable    NA      NA     1    NA   NA
## 3622    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3623 500 ml NR Vidrio Individual No Retornable     2      NA     2    NA   NA
## 3624      Lata 235 ml Individual No Retornable    NA       1     1    NA   NA
## 3625     1 Ltro. N.R.   Familiar No Retornable    11       6     8    11   17
## 3626        2 Lts. NR   Familiar No Retornable     6       8     6     3    8
## 3627        400 ml NR Individual No Retornable     5       3     3     2    2
## 3628 500 ml NR Vidrio Individual No Retornable    13       4    11    11    8
## 3629         8 Oz. NR Individual No Retornable     1       2     1     2    2
## 3630     1 Ltro. N.R.   Familiar No Retornable     2       2    NA     2    4
## 3631        2 Lts. NR   Familiar No Retornable    NA       3     6     6    3
## 3632 500 ml NR Vidrio Individual No Retornable     2       2     4     2    4
## 3633     1 Ltro. N.R.   Familiar No Retornable    42      25    25    42   30
## 3634     1.250 Lts NR   Familiar No Retornable    NA      NA    NA     3   NA
## 3635      1.5 Lts. NR   Familiar No Retornable    10       6    19    13   19
## 3636     1.5 Lts. Ret   Familiar    Retornable    16      13    22    22   19
## 3637    12 Oz. NR Pet Individual No Retornable     5       6     6     6    8
## 3638        2 Lts. NR   Familiar No Retornable    25      20    11    17   25
## 3639      2.5 Lts. NR   Familiar No Retornable    35      32    42    56   63
## 3640 2.5 Lts. Ret Pet   Familiar    Retornable    92     116   162   148  232
## 3641        400 ml NR Individual No Retornable     2      NA    NA    NA   NA
## 3642    500 ml NR PET Individual No Retornable     8       8     8     8   11
## 3643 500 ml NR Vidrio Individual No Retornable    25      15    19    23   32
## 3644       500 ml Ret Individual    Retornable    36      40    57    17   34
## 3645         8 Oz. NR Individual No Retornable     8       6     8     7    8
## 3646             Lata Individual No Retornable     2       3     3     5    3
## 3647      Lata 16 Oz. Individual No Retornable     2      NA     4     2    4
## 3648      Lata 235 ml Individual No Retornable     2       2     2     2    2
## 3649        600 ml NR Individual No Retornable    NA       1    NA    NA    1
## 3650     1 Ltro. N.R. Individual No Retornable    NA      NA     1     1    1
## 3651    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3652        600 ml NR Individual No Retornable     3       2    NA    NA    3
## 3653  125 ml NR Tetra Individual No Retornable    NA       1    NA    NA   NA
## 3654     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 3655   250 ML. NR VID Individual No Retornable    NA       0    NA    NA    1
## 3656    413 ml NR VId Individual No Retornable     5       3     7     3    8
## 3657   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3658     200 ml Tetra Individual No Retornable    NA       0     0     0    0
## 3659        600 ml NR Individual No Retornable     1       1     1     2    2
## 3660        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3661      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3662      1.5 Lts. NR   Familiar No Retornable     5       3     2     3    3
## 3663     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3664        2 Lts. NR   Familiar No Retornable     6      NA     6     3   NA
## 3665        400 ml NR Individual No Retornable    NA       0     0     0    1
## 3666       500 ml Ret Individual    Retornable     1      NA     1     1    3
## 3667        600 ml NR Individual No Retornable     1       1     2     1    1
## 3668      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3669      1.5 Lts. NR   Familiar No Retornable     5       2     2     2    2
## 3670     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3671        2 Lts. NR   Familiar No Retornable     4      NA     4    NA    6
## 3672        400 ml NR Individual No Retornable    NA      NA    NA     0    0
## 3673       500 ml Ret Individual    Retornable     1      NA     1     1    1
## 3674        600 ml NR Individual No Retornable     1       1     1     1    1
## 3675      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3676      1.5 Lts. NR   Familiar No Retornable     3       5     2     3    2
## 3677        2 Lts. NR   Familiar No Retornable     1      NA     1    NA    6
## 3678        400 ml NR Individual No Retornable    NA      NA    NA     1    1
## 3679       500 ml Ret Individual    Retornable     1      NA     1     1    1
## 3680        600 ml NR Individual No Retornable    NA       1    NA     2    1
## 3681        600 ml NR Individual No Retornable     1       1     1    NA   NA
## 3682     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3683        2 Lts. NR   Familiar No Retornable     6      NA     6    NA    3
## 3684        400 ml NR Individual No Retornable    NA       0     0     0    0
## 3685       500 ml Ret Individual    Retornable    NA       2    NA    NA    2
## 3686      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3687      1.5 Lts. NR   Familiar No Retornable     8       2     5     2    3
## 3688     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3689        2 Lts. NR   Familiar No Retornable     6       6     6     3    6
## 3690        400 ml NR Individual No Retornable     0       0     0     1    1
## 3691       500 ml Ret Individual    Retornable     1      NA     3     1    5
## 3692        600 ml NR Individual No Retornable     2       1     1     2    3
## 3693      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3694    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3695        600 ml NR Individual No Retornable    NA      NA     3     3    4
## 3696      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3697        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3698        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3699     1 Ltro. N.R. Individual No Retornable     2       8    15    11   13
## 3700      1.5 Lts. NR Individual No Retornable    10      16    19    10   13
## 3701   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3702        600 ml NR Individual No Retornable    10      15    13    15   15
## 3703     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3704   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3705        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3706        600 ml NR Individual No Retornable     3      NA     4    NA   NA
## 3707   250 ml. NR PET Individual No Retornable     5       4     6     4    3
## 3708        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3709     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     3    4
## 3710  100 ml NR Tetra Individual No Retornable    NA       0    NA    NA   NA
## 3711    12 Oz. NR Pet Individual No Retornable    NA       1     1     2    1
## 3712        2 Lts. NR   Familiar No Retornable     3       3     6    NA    3
## 3713        600 ml NR Individual No Retornable    NA       3    NA     1    1
## 3714      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3715      Lata 450 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3716    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3717    237 ml NR Vid Individual No Retornable     1      NA    NA    NA   NA
## 3718 500 ml NR Vidrio Individual No Retornable     2      NA     2    NA   NA
## 3719      Lata 235 ml Individual No Retornable     2       3     1     1   NA
## 3720     1 Ltro. N.R.   Familiar No Retornable    NA       2     4     2    4
## 3721 500 ml NR Vidrio Individual No Retornable     4       6     2     6    4
## 3722         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3723             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3724 500 ml NR Vidrio Individual No Retornable     2       2    NA     2   NA
## 3725         8 Oz. NR Individual No Retornable     1      NA    NA    NA   NA
## 3726     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3727     1.250 Lts NR   Familiar No Retornable    61      37    79    29   55
## 3728      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3729     1.5 Lts. Ret   Familiar    Retornable   130     101   149   133  193
## 3730    12 Oz. NR Pet Individual No Retornable     6      11    14    11   12
## 3731        2 Lts. NR   Familiar No Retornable     6      NA    NA     1   NA
## 3732       2 Lts. Ret   Familiar    Retornable    NA       3     3     6    3
## 3733      2.5 Lts. NR   Familiar No Retornable    NA      32    32    35   46
## 3734 2.5 Lts. Ret Pet   Familiar    Retornable   243     159   211   215  208
## 3735    500 ml NR PET Individual No Retornable    15       4    19    13   13
## 3736 500 ml NR Vidrio Individual No Retornable     8      17    17    13   23
## 3737       500 ml Ret Individual    Retornable   186     125   146   175  188
## 3738         8 Oz. NR Individual No Retornable     4       4     4     7    6
## 3739             Lata Individual No Retornable     5       2     5     3    3
## 3740      Lata 16 Oz. Individual No Retornable    NA      NA     4     6    4
## 3741      Lata 235 ml Individual No Retornable     9       7     7     3    4
## 3742     1 Ltro. N.R. Individual No Retornable    NA       1     1     1    1
## 3743        600 ml NR Individual No Retornable     1       1     3     1    2
## 3744     250 ml Tetra Individual No Retornable     2       0     0     0    1
## 3745   250 ML. NR VID Individual No Retornable    NA       0    NA    NA   NA
## 3746    413 ml NR VId Individual No Retornable     6       7     8     3    5
## 3747   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3748     1 Ltro. N.R.   Familiar No Retornable    NA       2    NA    NA    2
## 3749   300 ML. NR PET Individual No Retornable     1      NA     1    NA    1
## 3750     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3751        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3752      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3753      1.5 Lts. NR   Familiar No Retornable    10       3    11    10    4
## 3754     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3755        2 Lts. NR   Familiar No Retornable     1      NA     1    12   NA
## 3756        400 ml NR Individual No Retornable     1       4     2     0    2
## 3757       500 ml Ret Individual    Retornable     7       2     6     2    6
## 3758        600 ml NR Individual No Retornable     3       3     3    NA    3
## 3759             Lata Individual No Retornable    NA      NA    NA     0   NA
## 3760      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 3761      1.5 Lts. NR   Familiar No Retornable     3      NA     5     3    4
## 3762     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3763        2 Lts. NR   Familiar No Retornable     1      NA     1     6   NA
## 3764        400 ml NR Individual No Retornable     1       1     2    NA    1
## 3765       500 ml Ret Individual    Retornable     5       4     6     2    2
## 3766        600 ml NR Individual No Retornable    NA       3     3    NA    3
## 3767             Lata Individual No Retornable    NA      NA    NA     0   NA
## 3768      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 3769      1.5 Lts. NR   Familiar No Retornable     3       3     6     6    7
## 3770        2 Lts. NR   Familiar No Retornable     1      NA     1     4   NA
## 3771        400 ml NR Individual No Retornable     1       2    NA    NA   NA
## 3772       500 ml Ret Individual    Retornable     3       4    NA    NA    2
## 3773        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3774             Lata Individual No Retornable    NA      NA    NA     0   NA
## 3775     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3776        2 Lts. NR   Familiar No Retornable    NA      NA     3     8   NA
## 3777        400 ml NR Individual No Retornable    NA      NA     2    NA   NA
## 3778       500 ml Ret Individual    Retornable     4      NA     4     2    4
## 3779        600 ml NR Individual No Retornable    NA       1     3    NA    3
## 3780      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 3781      1.5 Lts. NR   Familiar No Retornable    10       3    10    10    7
## 3782     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3783        2 Lts. NR   Familiar No Retornable     1       3     1     9    6
## 3784        400 ml NR Individual No Retornable     3       3     2     0    5
## 3785       500 ml Ret Individual    Retornable     7       8     8     6    8
## 3786        600 ml NR Individual No Retornable     3       4     5     3    5
## 3787             Lata Individual No Retornable    NA      NA    NA     0   NA
## 3788      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 3789    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3790        600 ml NR Individual No Retornable     1      NA     1     3    6
## 3791      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3792        2 Lts. NR   Familiar No Retornable    NA      NA    NA     8   NA
## 3793        600 ml NR Individual No Retornable     5      NA     5     3    5
## 3794      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3795        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3796     1 Ltro. N.R. Individual No Retornable     6      51     4     2    2
## 3797      1.5 Lts. NR Individual No Retornable     6      10    10    16   19
## 3798   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3799        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3800        600 ml NR Individual No Retornable     5       3     3     5    3
## 3801        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3802   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3803     1 Ltro. N.R. Individual No Retornable    NA       2    NA    NA   NA
## 3804      1.5 Lts. NR Individual No Retornable    NA       3    NA     2   NA
## 3805        600 ml NR Individual No Retornable    NA      NA    NA    NA    4
## 3806   250 ml. NR PET Individual No Retornable     1      NA    NA    NA    1
## 3807        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3808   250 ml. NR PET Individual No Retornable     9       8    11    10    7
## 3809        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3810     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 3811  100 ml NR Tetra Individual No Retornable     0       0    NA    NA   NA
## 3812    12 Oz. NR Pet Individual No Retornable    NA       1     1     1    1
## 3813        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3814        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3815      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3816      Lata 450 ml Individual No Retornable     1      NA     1     1   NA
## 3817    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3818      Lata 235 ml Individual No Retornable     1       1    NA    NA   NA
## 3819     1 Ltro. N.R.   Familiar No Retornable     2       4     4     2    6
## 3820 500 ml NR Vidrio Individual No Retornable     6       2    11    13    6
## 3821             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3822     1 Ltro. N.R.   Familiar No Retornable     8       8    40    NA   42
## 3823      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3824     1.5 Lts. Ret   Familiar    Retornable    35     127    86   206   44
## 3825    12 Oz. NR Pet Individual No Retornable    21      26     9    11   44
## 3826        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 3827       2 Lts. Ret   Familiar    Retornable     6       3    NA    NA   NA
## 3828      2.5 Lts. NR   Familiar No Retornable    18      25    32    18   63
## 3829 2.5 Lts. Ret Pet   Familiar    Retornable   173     271   243   328  370
## 3830 500 ml NR Vidrio Individual No Retornable    25      13    23    15   72
## 3831       500 ml Ret Individual    Retornable   112     154   192   165  159
## 3832         8 Oz. NR Individual No Retornable     5       4     4     5    5
## 3833             Lata Individual No Retornable     2       3     6     6    3
## 3834      Lata 16 Oz. Individual No Retornable    12       8    14    10   16
## 3835      Lata 235 ml Individual No Retornable     4       3     5     4    8
## 3836        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3837     1 Ltro. N.R. Individual No Retornable    NA       2     3     1    1
## 3838    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3839        600 ml NR Individual No Retornable     3       1    NA     3    1
## 3840     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 3841   250 ML. NR VID Individual No Retornable    NA       1    NA    NA    1
## 3842    413 ml NR VId Individual No Retornable    10       5     8    NA    7
## 3843   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3844     1 Ltro. N.R.   Familiar No Retornable     2      NA     2     2   NA
## 3845   300 ML. NR PET Individual No Retornable    NA       1     1     2    1
## 3846    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3847     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3848        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3849      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3850      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3851     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3852        2 Lts. NR   Familiar No Retornable     3       6     3     6    6
## 3853       2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3854      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA   NA
## 3855   250 ml. NR PET Individual No Retornable     1      NA    NA    NA    1
## 3856        400 ml NR Individual No Retornable     1       1     3     1    3
## 3857       500 ml Ret Individual    Retornable    NA      NA     7     6   12
## 3858        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3859      Lata 235 ml Individual No Retornable    NA       0    NA     0    0
## 3860      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3861     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3862        2 Lts. NR   Familiar No Retornable    NA       6     8     3    6
## 3863      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA    4
## 3864   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    1
## 3865        400 ml NR Individual No Retornable    NA      NA     3     1    2
## 3866       500 ml Ret Individual    Retornable     2       2     5     2    7
## 3867        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3868             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3869      Lata 235 ml Individual No Retornable    NA       0    NA     0    0
## 3870      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3871        2 Lts. NR   Familiar No Retornable    NA       6    NA     3   NA
## 3872      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA   NA
## 3873   250 ml. NR PET Individual No Retornable     1      NA    NA    NA    1
## 3874        400 ml NR Individual No Retornable     2      NA    NA     1    1
## 3875       500 ml Ret Individual    Retornable    NA      NA     7     2   14
## 3876        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3877     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3878        2 Lts. NR   Familiar No Retornable    NA       8     3     6   14
## 3879      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA    7
## 3880        400 ml NR Individual No Retornable    NA      NA     0    NA    0
## 3881       500 ml Ret Individual    Retornable     6       4     4    NA    8
## 3882      Lata 235 ml Individual No Retornable    NA       0    NA     0    0
## 3883      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3884     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3885        2 Lts. NR   Familiar No Retornable    NA       6    17    20    8
## 3886      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    7
## 3887   250 ml. NR PET Individual No Retornable     1      NA    NA    NA    1
## 3888        400 ml NR Individual No Retornable    NA       1     3     1    2
## 3889       500 ml Ret Individual    Retornable    15       6    14    15    7
## 3890        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3891             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3892      Lata 235 ml Individual No Retornable    NA       0    NA     0    0
## 3893    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3894        600 ml NR Individual No Retornable    NA      NA     3    NA    3
## 3895        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3896        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3897     1 Ltro. N.R. Individual No Retornable     2       6     2     2    2
## 3898      1.5 Lts. NR Individual No Retornable     3       3     3     3    6
## 3899   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3900   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3901        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3902        473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3903        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3904   250 ml. NR PET Individual No Retornable     6       5     3    NA    6
## 3905        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3906     1 Ltro. N.R.   Familiar No Retornable     1       1    NA     1   NA
## 3907     1 Ltro. N.R. Individual No Retornable    NA       2     2    NA    2
## 3908  100 ml NR Tetra Individual No Retornable     3      NA    NA    NA   NA
## 3909    12 Oz. NR Pet Individual No Retornable     2       2     4     1    2
## 3910        2 Lts. NR   Familiar No Retornable    NA       6     8     8   11
## 3911        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3912      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 3913      Lata 450 ml Individual No Retornable    NA       1    NA    NA   NA
## 3914    500 ml NR PET Individual No Retornable     1      NA    NA    NA   NA
## 3915 500 ml NR Vidrio Individual No Retornable    NA      NA     4    NA   NA
## 3916      Lata 235 ml Individual No Retornable     1       1    NA    NA   NA
## 3917     1 Ltro. N.R.   Familiar No Retornable     4       8     6     6    8
## 3918        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 3919 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA    6
## 3920        600 ml NR Individual No Retornable     3      NA    NA    NA    3
## 3921         8 Oz. NR Individual No Retornable     1      NA    NA    NA    1
## 3922 500 ml NR Vidrio Individual No Retornable     2       6     4     2    8
## 3923     1 Ltro. N.R.   Familiar No Retornable     4       8    30    NA   34
## 3924     1.250 Lts NR   Familiar No Retornable    16       5    18     8    8
## 3925      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3926     1.5 Lts. Ret   Familiar    Retornable    54      32    32    51   32
## 3927    12 Oz. NR Pet Individual No Retornable     6       6     2    23    2
## 3928        2 Lts. NR   Familiar No Retornable    NA      NA    NA    17   NA
## 3929      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    53   95
## 3930 2.5 Lts. Ret Pet   Familiar    Retornable   123     159   211   162  144
## 3931    500 ml NR PET Individual No Retornable     6      21    NA    30   NA
## 3932 500 ml NR Vidrio Individual No Retornable     2       6     6    44   25
## 3933       500 ml Ret Individual    Retornable   110     118   120    76  142
## 3934        710 ml NR Individual No Retornable     3       6     3    NA    3
## 3935         8 Oz. NR Individual No Retornable     2       3     3     1   NA
## 3936      Lata 235 ml Individual No Retornable     1       3     3     6   NA
## 3937     1 Ltro. N.R. Individual No Retornable     1       1     1     2    1
## 3938    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3939        600 ml NR Individual No Retornable     1      NA     1     3    1
## 3940    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3941  100 ml NR Tetra Individual No Retornable    NA       2    NA    NA    1
## 3942     250 ml Tetra Individual No Retornable     6       0     7     0    4
## 3943   250 ML. NR VID Individual No Retornable    NA       0    NA     1    2
## 3944    413 ml NR VId Individual No Retornable     2       2    NA     2    9
## 3945   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3946     1 Ltro. N.R.   Familiar No Retornable     2       2    NA     2    2
## 3947   300 ML. NR PET Individual No Retornable     0       0    NA     0    1
## 3948     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3949      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3950      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3951     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3952        2 Lts. NR   Familiar No Retornable    NA       4     1     3   NA
## 3953      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    11   NA
## 3954        400 ml NR Individual No Retornable     0       0     1     0    0
## 3955       500 ml Ret Individual    Retornable     1      NA    NA    NA   10
## 3956        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3957      Lata 235 ml Individual No Retornable    NA       0     0     2   NA
## 3958      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3959     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3960        2 Lts. NR   Familiar No Retornable    NA       1     1     3   NA
## 3961      2.5 Lts. NR   Familiar No Retornable    NA       4     7     7    7
## 3962        400 ml NR Individual No Retornable     0       0     1    NA    0
## 3963       500 ml Ret Individual    Retornable     1      NA    NA    NA    3
## 3964        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3965      Lata 235 ml Individual No Retornable    NA       0     0     2   NA
## 3966      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3967        2 Lts. NR   Familiar No Retornable    NA       1     1     3   NA
## 3968      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3969        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 3970       500 ml Ret Individual    Retornable     1      NA    NA    NA    1
## 3971        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3972     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3973        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 3974      2.5 Lts. NR   Familiar No Retornable    NA      NA    11    18   11
## 3975        400 ml NR Individual No Retornable     0       0     1    NA    0
## 3976       500 ml Ret Individual    Retornable    NA       2    NA     2    2
## 3977      Lata 235 ml Individual No Retornable    NA       0     0     2   NA
## 3978      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3979     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3980        2 Lts. NR   Familiar No Retornable     3       6     1     8    3
## 3981      2.5 Lts. NR   Familiar No Retornable    NA       4     4    11    4
## 3982        400 ml NR Individual No Retornable     0       0     1    NA    0
## 3983       500 ml Ret Individual    Retornable     1      NA     2    NA    3
## 3984        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3985      Lata 235 ml Individual No Retornable    NA       0     0     2   NA
## 3986    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3987        600 ml NR Individual No Retornable     2      NA    NA     3    8
## 3988      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3989      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3990        2 Lts. NR   Familiar No Retornable     6       6     6     8   14
## 3991        600 ml NR Individual No Retornable     3       3     3     3    9
## 3992             Lata Individual No Retornable     2       2    NA     2    3
## 3993      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3994        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3995     1 Ltro. N.R. Individual No Retornable    15       8    13    11   19
## 3996      1.5 Lts. NR Individual No Retornable     6       3    13    29   25
## 3997   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3998        5 Lts. NR   Familiar No Retornable    11      11    11    11   18
## 3999        600 ml NR Individual No Retornable     8      13     8    10   13
##      Junio Julio Agosto Septiembre Octubre Noviembre Diciembre
## 1       NA    NA     NA         NA      NA        NA         1
## 2        2     2      2          2       2         4         2
## 3        3     3      3          3       3         3         3
## 4       NA    NA     NA         NA      NA        NA         1
## 5       NA    NA     NA         NA      NA         0        NA
## 6       NA    NA     NA         NA      NA        NA        NA
## 7       NA     0     NA         NA       0        NA        NA
## 8        1    NA      1          1      NA        NA        NA
## 9        4     4      7          4       3         1         3
## 10       0    NA     NA         NA      NA        NA        NA
## 11       1     1      1          1       1         1         1
## 12      NA    NA     NA         NA      NA        NA        NA
## 13       1     1      1          2       1         1         1
## 14      NA     6      3          6      NA         3        17
## 15      NA    NA     NA          1      NA        NA        NA
## 16      NA    NA      2         NA      NA        NA         2
## 17      NA    NA     NA         NA       3        NA        NA
## 18       4     2      2         NA       4         2         4
## 19      NA    NA     NA          2      NA         4         2
## 20       8    NA     NA         NA      NA        NA        NA
## 21      10    25     32         19      32        10        38
## 22      67    86     60         67      76        67        89
## 23      14    15     15          8      21        26        11
## 24       2     2      3          2       2         2         2
## 25      NA     6     NA         NA      NA        NA        NA
## 26       8    17      6          3       3         6         8
## 27      14    25     35         18      28        14       278
## 28      95   127     81        102      92       120       109
## 29      23    30     25         21      42        32        25
## 30     108   127     95         93     139        93       101
## 31       2     3      3          2       5         2         2
## 32       2     2      5         NA       3        NA         3
## 33       2     4      4          6       4         2         2
## 34       1     3      2          4       2         2         2
## 35      NA    NA      1         NA      NA        NA        NA
## 36       1     1      1          1       1         1         1
## 37      NA    NA     NA         NA      NA        NA        NA
## 38      NA    NA     NA         NA      NA        NA        NA
## 39       0     0      0          0       0         0         0
## 40       1     2     NA          0       1        NA         3
## 41      NA    NA     NA         NA       0        NA        NA
## 42       1    NA     NA         NA      NA        NA        NA
## 43      NA    NA     NA         NA      NA        NA         1
## 44       0     0      0          0       0         0         0
## 45       1     1     NA         NA      NA        NA         1
## 46      NA    NA     NA         NA       1         1        NA
## 47       1    NA     NA         NA      NA        NA        NA
## 48       3     3     NA         NA      NA        NA         3
## 49      NA     0      1         NA       0        NA        NA
## 50       1     0      0          0      NA         0         0
## 51       2     1     NA          2       1         1         1
## 52       3     1      1          2       1         1         1
## 53      NA    NA     NA         NA      NA        NA        NA
## 54      NA    NA     NA         NA      NA        NA        NA
## 55       1    NA     NA         NA      NA        NA        NA
## 56      NA     0     NA         NA       0        NA        NA
## 57       1    NA     NA         NA      NA        NA        NA
## 58       2     1     NA         NA       1         1         1
## 59      NA     1      1         NA       2        NA         1
## 60      NA    NA     NA         NA      NA        NA        NA
## 61      NA    NA     NA         NA      NA        NA        NA
## 62      NA     0     NA         NA       0        NA        NA
## 63       1    NA     NA         NA      NA        NA        NA
## 64       2     1     NA         NA       1         1         1
## 65      NA    NA      1          1       3         1         1
## 66      NA    NA     NA         NA      NA        NA        NA
## 67       1    NA     NA         NA      NA        NA        NA
## 68      NA    NA      3         NA       3         3        NA
## 69      NA    NA     NA         NA      NA        NA        NA
## 70       3    NA      3          3       1        NA        NA
## 71      NA    NA     NA         NA      NA        NA        NA
## 72       1    NA     NA         NA      NA        NA        NA
## 73       3     3      3          3      NA        NA         6
## 74      NA     0     NA         NA       0        NA        NA
## 75       1    NA     NA         NA       0        NA        NA
## 76       2     1      2          4       1         1         1
## 77      NA     1      2          1       3         1         3
## 78      NA    NA     NA         NA      NA        NA        NA
## 79      NA    NA     NA         NA      NA        NA        NA
## 80      NA    NA     NA         NA      NA        NA         1
## 81       1    NA      1          1       1        NA         1
## 82      NA    NA     NA         NA       1        NA         1
## 83      NA    NA     NA         NA      NA        NA         3
## 84      NA    NA     NA         NA      NA         1        NA
## 85       4     4      4          8       6         2         2
## 86       6     6      6          3       3         3         3
## 87      NA    NA      4         NA      NA        NA        NA
## 88       3     3     NA          3       8        NA         3
## 89      NA    NA     NA         NA      NA        NA         1
## 90      NA    NA     NA         NA      NA         0        NA
## 91      NA    NA     NA         NA      NA        NA        NA
## 92       5     3      5          3       3         3         3
## 93       0    NA     NA         NA      NA        NA        NA
## 94       3     1      2          1       1         1         2
## 95       1     1      2          1       2         1         2
## 96       6    NA      3         NA      NA        NA         6
## 97      NA     0     NA         NA      NA         0         0
## 98       1    NA     NA          1      NA        NA        NA
## 99       1    NA     NA         NA      NA        NA        NA
## 100     NA     2      2         NA      NA        NA        NA
## 101     NA     1     NA          1       1        NA        NA
## 102      2     2      2          2       4         2         2
## 103      3    NA     NA         NA      NA        NA         3
## 104     NA    NA     NA         NA      NA        NA        NA
## 105      2    NA     NA         NA      NA        NA         2
## 106      2     6      4          6       4         4         4
## 107     NA    NA      1         NA       1        NA        NA
## 108     NA     1     NA          1      NA        NA         1
## 109     NA    NA     NA         NA      NA        NA        NA
## 110      1    NA     NA         NA       1        NA        NA
## 111     NA    NA      2          4       2         2         2
## 112     NA    NA     NA         NA      NA        NA        NA
## 113      3     3     NA          3       3         3         3
## 114     10    13      6         13      16        10         6
## 115      5     3      5          3       5         6         5
## 116     NA    NA     NA         NA      NA        NA         3
## 117     NA    NA     NA         NA      NA        NA        NA
## 118     NA    NA     NA         NA      NA         7        NA
## 119     39    42     39         60      28        25        25
## 120      4     4      2          4       2         6        NA
## 121     15    11      8         11      11        11         8
## 122     44    36     27         40      40        25        23
## 123      3     4      5          4       4         6         4
## 124      2     2     NA          3       3         3         5
## 125      1     3      2          1       3         1         2
## 126      1     2      1          1       1         1         1
## 127     NA    NA     NA         NA      NA        NA        NA
## 128      3     1     NA          1       2         2         2
## 129      0     0      0          1       0         1         0
## 130      1     2      2          2       1         2         3
## 131     NA    NA     NA         NA      NA        NA        NA
## 132     NA    NA     NA          1       0        NA        NA
## 133     NA    NA     NA         NA       2        NA        NA
## 134      0     0      0          0       1         0        NA
## 135     NA    NA     NA         NA      NA        NA         1
## 136      0     0      1          1       0         0         0
## 137     NA     1     NA         NA       1        NA        NA
## 138     NA    NA     NA         NA       1         1        NA
## 139     NA    NA     NA         NA      NA         2         2
## 140      2     1      1         NA      NA        NA        NA
## 141      3     1     NA         NA      NA         1         3
## 142      0     0     NA          0      NA        NA         0
## 143     NA    NA     NA         NA      NA        NA        NA
## 144     NA     1      1         NA       1        NA        NA
## 145     NA    NA     NA         NA      NA        NA        NA
## 146      2     1      1         NA      NA        NA        NA
## 147     NA     1     NA         NA      NA         1        NA
## 148      0    NA     NA         NA      NA        NA        NA
## 149      2    NA     NA         NA      NA        NA        NA
## 150     NA    NA     NA         NA       1        NA        NA
## 151     NA    NA     NA         NA      NA        NA        NA
## 152     NA    NA     NA         NA      NA        NA         2
## 153     NA     1     NA         NA       3         1        NA
## 154      1    NA     NA         NA      NA         0        NA
## 155     NA    NA     NA          2      NA         2         2
## 156     NA     1     NA         NA      NA        NA        NA
## 157     NA    NA     NA         NA      NA        NA        NA
## 158      2     1      1         NA      NA        NA        NA
## 159     NA    NA      3         NA      NA        NA        NA
## 160     NA    NA      0         NA      NA        NA        NA
## 161     NA     2      2          2       4        NA        NA
## 162     NA    NA      1         NA      NA        NA        NA
## 163     NA    NA     NA         NA      NA        NA        NA
## 164     NA    NA     NA         NA      NA         2         2
## 165      2     1      1         NA      NA        NA        NA
## 166     NA     1     NA          3      NA         1         6
## 167      0    NA     NA          0       0        NA        NA
## 168     NA    NA     NA         NA      NA        NA        NA
## 169     NA     1      1          1       1        NA        NA
## 170     NA    NA     NA         NA      NA        NA        NA
## 171     NA     3     NA         NA       1        NA        NA
## 172      1     1     NA          1      NA         1         3
## 173     NA    NA     NA         NA      NA        NA        NA
## 174     NA    NA     NA         NA      NA         3         1
## 175     13    21     15         13       4        11         8
## 176     32    38     13          6       6        13        22
## 177     NA    NA     NA          0      NA        NA        NA
## 178     NA    NA     NA         NA      NA        NA        NA
## 179     13     8     10          5       8         5         8
## 180     NA    NA     NA         NA      NA        NA         3
## 181     NA    NA     NA         NA      NA         0        NA
## 182      3    NA     NA         NA      NA        NA        NA
## 183     NA    NA     NA         NA      NA        NA        NA
## 184     NA     2     NA          1      NA         1         1
## 185      2     4     NA          1       1         2         1
## 186      0     1     NA         NA      NA         0         1
## 187      2     2      2         NA       2         1         1
## 188      1     1     NA          1      NA         1         2
## 189     17    11      3          3       3        NA        NA
## 190     NA    NA     NA         NA      NA        NA         0
## 191      1     1     NA         NA      NA        NA        NA
## 192      1    NA     NA         NA      NA        NA        NA
## 193     NA    NA     NA         NA      NA        NA        NA
## 194     NA    NA     NA         NA      NA        NA        NA
## 195      2    NA     NA         NA      NA        NA        NA
## 196     NA    NA     NA         NA      NA        NA        NA
## 197      8     6     11         13       8        13        11
## 198      2    NA      3         NA       2         2         2
## 199      6     8      3          8      11         6         3
## 200      6    11      6         17      11        11        20
## 201     14     7     NA         11       4        11         7
## 202     NA    NA     NA         NA      NA        NA         2
## 203      6    11     21         15      17        19        13
## 204      1     3      2          1       2         2         3
## 205     NA    NA     NA          1       1        NA        NA
## 206     NA     1      1          1      NA        NA        NA
## 207     NA     2      2          2       2         2         2
## 208     NA    NA     NA         NA      NA        NA        NA
## 209     NA    NA     NA          3      NA        NA         6
## 210      2     4      2          4       4         2         2
## 211     11    15     23         23      15        19        19
## 212      5    NA     NA         NA      NA        NA        NA
## 213     16    25     25         16      22        19        29
## 214      6    19     19         19      10        13        13
## 215      5    11     15         14      17        14        14
## 216      2     5      2          3       5         2         3
## 217     14    14     17         14      14        11        14
## 218      3     6     11          6       3        11         8
## 219     25    39     42         60      28        77        25
## 220     25    39     60         63      99        49       106
## 221     NA    NA     NA         NA      NA        NA        NA
## 222      4     6      2         NA      NA        NA        NA
## 223     13    44     57         32      34        38        32
## 224     42    78     72        108      93        66        82
## 225      8     9     11         12       9        12        16
## 226      2     2      2          3       2         5         3
## 227      4     2      4          4       4         4         4
## 228      3     3      3          3       3         2         4
## 229      1     4     NA          1       2         1         1
## 230     NA    NA     NA         NA      NA        NA         1
## 231      1     3     NA          3       3         1         2
## 232     NA     3     NA         NA      NA        NA        NA
## 233     NA    NA     NA         NA      NA        NA        NA
## 234      0     0     NA          0      NA         0         0
## 235     NA    NA     NA         NA      NA        NA        NA
## 236      4     6      1         NA      NA         2         7
## 237      1     1     NA         NA      NA         0        NA
## 238     NA    NA     NA         NA      NA         2        NA
## 239     NA    NA     NA          1      NA        NA        NA
## 240     NA    NA     NA         NA      NA        NA        NA
## 241      0     0     NA          0      NA         0         1
## 242      1     5      2          1       1         3         4
## 243     NA    NA     NA         NA      NA         3         3
## 244     NA    NA     NA         NA       1         2         7
## 245     NA    NA     NA         NA      NA        NA        NA
## 246      3     6      4          8       4         4         3
## 247     NA    NA     NA         NA      NA        NA        NA
## 248     NA     1      1          0      NA        NA         1
## 249      2     1      1         NA       2         2        NA
## 250      1     1      3          4       3         2         3
## 251     NA    NA     NA         NA      NA        NA         0
## 252     NA     3      4          3       7         6         8
## 253     NA    NA     NA         NA      NA        NA        NA
## 254     NA     0      0         NA      NA        NA        NA
## 255     NA     1      1         NA       2        NA        NA
## 256      3     2      2          1       2         3         1
## 257     NA    NA     NA         NA      NA        NA         0
## 258      3     6      4          3       1         4         6
## 259     NA    NA     NA         NA      NA        NA        NA
## 260      0     1      0          0      NA        NA        NA
## 261     NA     1      1         NA       2        NA         2
## 262      2     3      3          3       2         3         2
## 263      1     1     NA          1       1         2         3
## 264     NA    NA     NA         NA       3         3         6
## 265     NA    NA     NA         NA      NA        NA        NA
## 266     NA    NA     NA         NA      NA        NA        NA
## 267     NA    NA     NA         NA      NA        NA         3
## 268     NA    NA     NA         NA      NA        NA         0
## 269     NA    NA     NA         NA      NA        NA        NA
## 270      3     6     10          8      10        12         8
## 271     NA    NA     NA         NA      NA        NA        NA
## 272      1     1      1          1       0         0         0
## 273     NA     1      3          2       2         2        NA
## 274      3     2      4          4       4         3         3
## 275     NA    NA     NA         NA      NA        NA         0
## 276     NA     1     NA         NA      NA         1        NA
## 277      1     6      1          3       4         7         8
## 278     NA    NA      0         NA      NA        NA        NA
## 279     NA    NA     NA         NA      NA        NA        14
## 280     NA    NA     NA         NA       1        NA         3
## 281     NA    NA     NA         NA      NA        NA         3
## 282     NA    NA     NA         NA      NA        NA         4
## 283      2     2      2         51       2         2         2
## 284      3     3      3        165       3         3        19
## 285      0     0     NA         NA      NA        NA        NA
## 286     NA    NA     NA         35      NA        NA        NA
## 287     NA    NA     NA         NA      NA        NA        NA
## 288     NA    NA     NA         NA      NA        NA         1
## 289     NA    NA     NA         NA      NA        NA         3
## 290     NA    NA     NA         NA      NA        NA         1
## 291      2     1      1          2       2         0         2
## 292      2     1     NA          2      NA        NA         1
## 293     NA    NA     NA          2      NA        NA        NA
## 294     NA    NA     NA         NA      NA        NA        NA
## 295     NA     1      0         NA      NA        NA        NA
## 296      1     1      1          1       3         1         1
## 297     11     1     16         NA      NA        NA        NA
## 298      1    NA     NA          1       1        NA         0
## 299      1     1      1          1       1         1         1
## 300     NA    NA     NA         NA      NA        NA        NA
## 301      1     1      1          1       1         1         1
## 302     11    NA     NA         14      NA        NA        31
## 303     NA    NA      1         NA       1        NA        NA
## 304      0    NA      0          0       0         0         0
## 305      1     1     NA          1       1        NA         3
## 306      1    NA     NA         NA      NA        NA        NA
## 307     NA    NA     NA         NA      NA        NA        NA
## 308      1    NA     NA         NA      NA        NA        NA
## 309      2     6      2          4       2         2         4
## 310     NA    NA     NA          4       6         6         6
## 311     NA    NA     NA         NA      11         3         8
## 312     NA    NA     NA          7      11         7        18
## 313     25    25      4         44      NA         4        30
## 314     NA    NA     NA          1       3         2         1
## 315     NA    NA     NA         NA       1        NA        NA
## 316     NA    NA     NA         NA      NA        NA         2
## 317     NA    NA      1         NA      NA        NA        NA
## 318     27     4     NA          6      38         2        23
## 319     NA    NA     NA         NA      NA        NA        NA
## 320     41     3     38          3       3        13        55
## 321     44    79     51         10     120        35        44
## 322      6    17      6         20      33         3         8
## 323     NA     2      2         12      36        NA        41
## 324     37    NA      3         NA      37        NA        17
## 325     37    NA     NA         NA      NA        NA        NA
## 326     92    NA     99         NA      60         7        21
## 327    380   215    567          7     324         4       299
## 328     34    NA     NA         NA      NA         4        30
## 329     51    25     80          4      72        NA        57
## 330      2    11    220        251     142        72       118
## 331     13    13      4         18      13         1         1
## 332      2     3     NA          3       3         5         2
## 333      2     6      4          2       8         6         2
## 334      1     4      3          6       3         5         3
## 335     NA     1     NA         NA      NA        NA        NA
## 336      3     2      1          1       1         1         1
## 337      2     2     NA         NA       1        NA         2
## 338      6     6     NA         NA       3         1         3
## 339     NA    NA     NA          4      NA         1         1
## 340     NA    NA     NA         NA      NA        NA        NA
## 341      1     1      1          1       1         1         1
## 342     NA    NA     NA         NA      NA        NA        NA
## 343     26     2      1         NA      NA        NA        NA
## 344      3    NA      1          2       1        NA        NA
## 345      1    NA     NA          1      NA        NA        NA
## 346     NA     2     NA          2       2         2        NA
## 347      1     0      0          0       1        NA         1
## 348     NA    NA     NA         NA      NA        NA         1
## 349      1    NA     NA         NA      NA        NA        NA
## 350      1     1      1          2       1         1         2
## 351     NA     1      1          1       1        NA         2
## 352     NA    NA     NA         NA      NA         6        NA
## 353     NA    NA     NA         NA       3         8         1
## 354     NA    NA     NA         NA       2         2         2
## 355      2    NA     NA         NA      NA        NA        NA
## 356     NA    NA     NA          2      12        NA        NA
## 357     28    NA     NA         12      11        NA        17
## 358     NA     3     NA         NA       3        NA        NA
## 359     NA    NA      0         NA      NA        NA        NA
## 360      1     0      1          1       4         2        NA
## 361     NA    NA     NA          1      NA         1         3
## 362      1    NA      4          1       4        NA         5
## 363     NA    NA     NA         NA      NA        NA        NA
## 364      2    NA      3         NA      NA        NA        NA
## 365      6     3     NA          9       6        NA         8
## 366     NA    NA      0         NA      NA        NA        NA
## 367     NA    NA      1         NA      NA         2        NA
## 368     NA    NA     NA          1      NA         1         1
## 369     NA    NA     NA         NA       1        NA        NA
## 370     NA    NA     NA         NA      NA        NA        NA
## 371     NA    NA      4         NA       2        NA        NA
## 372     NA    NA     NA          2       9        NA        NA
## 373      6     3      3         12      NA        NA         8
## 374     NA    NA      0         NA      NA        NA        NA
## 375      1    NA     NA          1       4        NA        NA
## 376     NA    NA     NA         NA      NA        NA        NA
## 377     NA    NA     NA          5      NA         1         7
## 378      1     3     NA          1      NA        NA         3
## 379     NA    NA     NA         NA       2        NA        NA
## 380      2    NA     NA         NA      NA        NA        NA
## 381     31    NA     NA         NA      11         3         8
## 382     NA    NA     NA         NA      NA         2        NA
## 383     NA    NA     NA         NA      NA         2        NA
## 384     NA    NA     NA          3       1        NA        NA
## 385     NA    NA     NA         NA      NA        NA        NA
## 386      2     2      4          2       4         2        NA
## 387     NA    NA     NA         NA      NA        NA         2
## 388      2    NA     NA         NA      NA        NA        NA
## 389     NA    NA     NA          2       9        NA        NA
## 390     31    NA     NA          9      11         3         6
## 391      3     6      3          8       3         3         6
## 392     NA    NA      0         NA      NA        NA        NA
## 393      3    NA      1          0       4         3         0
## 394      2    NA     NA         NA      NA        NA        NA
## 395      2     6      2          1      11         1         5
## 396      9     3      4          3       4        NA         5
## 397     NA    NA     NA         NA      NA        NA        NA
## 398     NA     1      2          2      NA         3         2
## 399     13     8     11          5       9        10         4
## 400      1    NA     NA         NA      NA        NA        NA
## 401      0    NA      1         NA      NA        NA        NA
## 402     NA    NA     NA         NA       3         1         1
## 403     NA    NA     NA         NA      NA        NA         3
## 404     NA    NA     NA         NA      NA         1        NA
## 405      2     4      4          2       4         2         4
## 406      3     3      3          3       3         3         6
## 407     NA    NA     NA          3      NA         3        NA
## 408     NA    NA     NA         NA      NA        NA         3
## 409     NA    NA     NA         NA      NA         1        NA
## 410     NA    NA     NA         NA      NA        NA        NA
## 411     NA    NA     NA         NA       0        NA        NA
## 412      1    NA      1         NA      NA         1         1
## 413      1     1      3         NA       3         1         1
## 414      4    NA     NA         NA      NA        NA        NA
## 415     NA    NA     NA         NA       0        NA        NA
## 416      1     1      1          1       1         1         1
## 417     NA    NA     NA         NA      NA        NA        NA
## 418      1     1      1          1       1         1         1
## 419      6     6      6          8       6         3         3
## 420     NA     1      1         NA      NA         1        NA
## 421      1     0      0          1       1         1         1
## 422     NA    NA     NA         NA      NA        NA        NA
## 423      1    NA      1          1       1         1        NA
## 424      1    NA     NA         NA      NA        NA        NA
## 425      2     2      4         NA       2        NA         2
## 426     13    11     11          8       8         8        11
## 427     11     6      8          8       3        NA        11
## 428     NA    NA     NA         NA      NA        NA        NA
## 429      2     2      3          3       5         2        NA
## 430     15    15     15         17      21        11        17
## 431      2     1      2          1       1         2         3
## 432      2     2      2          2       2         2        NA
## 433     NA     0     NA         NA      NA        NA        NA
## 434      4     2     NA          4       2         4         2
## 435     NA    NA     NA         NA      NA        NA        NA
## 436     15    30     30         30      30        25        17
## 437     24    NA     NA         NA      NA        NA        NA
## 438      3    10     13         16      19        10        19
## 439     13    16      6         10      10        10        16
## 440     12    12     15         14      17        12        12
## 441      8     6      6          8       9         6         9
## 442      3    NA     NA          3       6         6         6
## 443      6     3      3          3      NA         3        NA
## 444     46    67     67         85      99        60       190
## 445     99   116    137        106     148        53        67
## 446      8     8      8         13      11         8         8
## 447     40    34     40         40      40        30        30
## 448     70    82     46         55      72        44        51
## 449     NA    NA     NA         NA      NA        NA        NA
## 450     18    20     16         19      16        17        20
## 451     NA     2     NA         NA      NA        NA        NA
## 452      1    NA     NA         NA      NA        NA        NA
## 453     NA    NA     NA         NA      NA        NA        NA
## 454      1     1      2          1       1         1         1
## 455     NA    NA     NA         NA      NA        NA        NA
## 456      1     1     NA         NA      NA         1        NA
## 457      0     0      0          0       0         0         0
## 458     NA    NA     NA         NA       0        NA         0
## 459      4     3      2          3      NA         1         3
## 460     NA    NA     NA         NA       0        NA        NA
## 461     NA     2     NA          2      NA         2        NA
## 462      0    NA     NA          1       1         0        NA
## 463      1    NA     NA         NA       1        NA        NA
## 464     NA    NA     NA         NA      NA         1        NA
## 465      0     0      0          0       1         1         0
## 466      3     3      3          2       1         1        NA
## 467     NA    NA     NA         NA      NA         1         2
## 468     NA    NA     NA         NA       1         1         1
## 469      1    NA     NA         NA      NA        NA        NA
## 470     NA    NA     NA         NA       4         3         3
## 471      4     4      7         NA       4         4         7
## 472     NA    NA     NA         NA       0        NA        NA
## 473      0    NA     NA         NA       0         0        NA
## 474      2    NA     NA         NA       2         2        NA
## 475      2     3     NA         NA       2        NA        NA
## 476      1     1      3          2       1         2         1
## 477     NA    NA     NA         NA      NA        NA        NA
## 478      1    NA     NA         NA      NA        NA        NA
## 479     NA    NA     NA         NA       1        NA        NA
## 480      4    NA      4          4       4        NA         4
## 481     NA    NA     NA         NA       0        NA        NA
## 482     NA    NA     NA         NA      NA         0        NA
## 483     NA    NA      4         NA      NA        NA        NA
## 484     NA     1     NA         NA       4         2         2
## 485      1     1      1          1       2        NA         1
## 486     NA    NA     NA         NA      NA        NA        NA
## 487     NA    NA     NA         NA       4        NA        NA
## 488      4     4      9          7       4        NA         7
## 489     NA    NA     NA         NA       0        NA        NA
## 490     NA    NA      0         NA      NA        NA        NA
## 491      2    NA      2          2      NA        NA        NA
## 492     NA     1     NA         NA      NA        NA        NA
## 493      1     1      1          1       2         1         1
## 494     NA    NA     NA         NA      NA        NA        NA
## 495      1     1      1          1       3         1         1
## 496      1    NA     NA         NA       3        NA        NA
## 497     NA    NA      3          3      NA        NA        NA
## 498      4     7      4          4       7         4         7
## 499     NA    NA     NA         NA      NA        NA        NA
## 500     NA     0     NA          0      NA        NA        NA
## 501      1     1      1          1       1         3         1
## 502     NA    NA     NA         NA      NA        NA        NA
## 503     NA     2     NA          2       2        NA        NA
## 504      1    NA     NA         NA      NA        NA        NA
## 505      3     3      3         NA       1        NA         3
## 506      7     7      7          4       9         7         7
## 507     NA    NA     NA         NA       0        NA        NA
## 508      0    NA     NA         NA       1        NA         0
## 509      2    NA     NA         NA       4        NA         2
## 510     NA     3      2          2      NA        NA        NA
## 511      1     1      3          2       1         2         1
## 512     NA    NA     NA         NA      NA        NA        NA
## 513     NA    NA     NA         NA      NA         1        NA
## 514      3     1      3          4       2         4         5
## 515     NA    NA     NA         NA       3        NA        NA
## 516     NA    NA     NA         NA       1         1        NA
## 517     NA    NA     NA         NA      NA         1         1
## 518      2     2      2          2       2         2        19
## 519      3    10      3          3      22         3         3
## 520     NA    NA     NA          0      NA        NA        NA
## 521     NA    NA     NA         NA      NA        NA         7
## 522     NA    NA     NA         NA      NA        NA        NA
## 523     NA    NA     NA         NA      NA        NA         1
## 524     NA    NA     NA         NA      NA         0        NA
## 525     NA     1      1         NA      NA        NA        NA
## 526     NA     1      0          1      NA         1         1
## 527      1     1      1         NA       1         1         1
## 528      4     2      5          2       2         2        NA
## 529      1     0     NA          1       0        NA        NA
## 530      3     1      1          1       1         1         1
## 531     NA    NA     NA         NA      NA        NA        NA
## 532      2     1      1          1       1         1         1
## 533      6     3      6          3       3         3        37
## 534     NA    NA      1         NA       1        NA        NA
## 535     NA    NA     NA          0      NA        NA         0
## 536      1    NA     NA          1      NA        NA        NA
## 537      2    NA     NA         NA      NA        NA        NA
## 538     NA    NA     NA         NA      NA        NA        NA
## 539     NA    NA     NA         NA      NA        NA        NA
## 540     NA    NA     NA         NA      NA        NA        NA
## 541      2    32      4         15      21        17        40
## 542      2     3     NA         NA      NA         2        NA
## 543      8     6     14         11       8         8        14
## 544     14     8     11         14       8         8        14
## 545     NA    NA     NA         NA      NA        NA         4
## 546     46    30      4         21      15        19        11
## 547      2     2      4          3       4         3         3
## 548     NA    NA     NA         NA      NA        NA        NA
## 549      4     6      4          6      13         6         2
## 550      8     6     14         11       6         8        14
## 551      4     2      4          8       4         4         4
## 552     NA    NA     NA         NA      NA        NA        NA
## 553     27    32      4         27      15        13        61
## 554     NA    NA     NA         NA      NA        NA        NA
## 555     51     3     10         25      29        10        54
## 556     10    25     44         32      51        41        76
## 557     24    12      8          9      20        14        12
## 558      5     3      6          6       3         3         2
## 559     17     8     17         31      28        20        14
## 560      3    14      3         14      17        11        17
## 561     88    NA     85         60      95        85       116
## 562    116    88    123        116     236        14       197
## 563     30    30      8         34      30        21        15
## 564    131    53     34         78     118       120       142
## 565      1     1     NA         NA      NA        NA         1
## 566      2     5      7          6       6         6         6
## 567     NA    NA     NA          2       6         3         6
## 568     30    NA     NA          6      12        12        34
## 569      3     3      3          2       5         4         4
## 570      2     2      1          1       1         1         1
## 571     NA    NA     NA         NA      NA        NA         1
## 572      3    NA      3         NA      NA         3        NA
## 573      1     1      0          0       0         0         0
## 574      3     2     NA         NA      NA        NA        NA
## 575      2     2      2         NA      NA        NA        NA
## 576      0     1      0          0       1         1         0
## 577      1    NA     NA         NA      NA        NA        NA
## 578      2     2      1          2       0         2         1
## 579      1     1      1          2       2         1         1
## 580     NA    NA     NA         NA       3         2         3
## 581     NA    NA     NA         NA       3         1        NA
## 582      4    NA      2          2       2         2         2
## 583      2    NA      1          1      NA        NA        NA
## 584      3    10      1          4      12         3        14
## 585     NA    NA     NA         NA      NA        NA        NA
## 586     NA     1      0          1      NA         1         1
## 587     NA    NA     NA          0      NA        NA        NA
## 588      1     2      1          1       2         1         5
## 589      3     1      1          2       1         1         2
## 590     NA    NA      0         NA      NA        NA        NA
## 591      2    NA      1          1      NA        NA        NA
## 592     NA     1      1          4       1        NA         6
## 593     NA     0      0          0      NA         0         0
## 594     NA    NA     NA         NA       0        NA         0
## 595      1    NA      1          1       2         1         1
## 596      1    NA      1         NA      NA         1         1
## 597     NA    NA      0         NA      NA        NA        NA
## 598     NA    NA      2          2       2         2         2
## 599     NA     1      1          4       4        NA        NA
## 600     NA     1      0          1      NA         1         1
## 601     NA    NA      0         NA      NA        NA        NA
## 602      1    NA      1          1       2         1         1
## 603      1     1      1         NA      NA         1         1
## 604      1     1      1          2       1         3         2
## 605      2    NA      1          1      NA        NA        NA
## 606      3     8     NA         NA       6         6         8
## 607     NA    NA     NA         NA      NA        NA        NA
## 608     NA    NA     NA         NA      NA        NA        NA
## 609     NA     3      1         NA       1         3        NA
## 610     NA    NA      0         NA      NA        NA        NA
## 611     34    NA     NA          2      11        11         8
## 612      2    NA      1          1      NA        NA        NA
## 613     NA    15      1          4      12         3        23
## 614     NA    NA     NA         NA      NA        NA        NA
## 615     NA     1      0          2      NA         1         1
## 616      0     0      1          1      NA         1        NA
## 617      3    NA      1          1       2         1         5
## 618      2     3      3          1       1         1         2
## 619     NA    NA      0         NA      NA        NA        NA
## 620     NA     1      1          2      NA         2         3
## 621     13     3      7          4       6        10        13
## 622      1    NA      0          0       1        NA        NA
## 623      0    NA      1          1      NA        NA        NA
## 624     NA    NA     NA         NA       1         1        NA
## 625     NA    NA     NA         NA      NA         1        NA
## 626      6     6      6          4       6         4         2
## 627      3     6      3          6       3         3         3
## 628     NA    NA     NA         NA       0        NA        NA
## 629     NA    NA     NA         NA      NA        NA         4
## 630     NA    NA     NA         NA      NA        NA         1
## 631     NA    NA     NA         NA      NA         0        NA
## 632     NA    NA     NA         NA      NA        NA        NA
## 633      9     7     13          0       3         3         4
## 634      1     3      2          4       3         2         1
## 635      1    NA      1          4      NA        NA         1
## 636     NA     6     NA         NA       2         2        NA
## 637      1     1      1          1       2         2         3
## 638     25    23     11         17      34        25        17
## 639     NA    NA      1         NA      NA        NA        NA
## 640     NA    NA     NA         NA      NA        NA         0
## 641     NA    NA      1         NA      NA        NA         1
## 642      7    NA     NA         NA      NA        NA        NA
## 643     NA    NA     NA         NA      NA        NA        NA
## 644     NA    NA     NA         NA      NA        NA        NA
## 645      4     4      8          6      NA        NA         2
## 646     44    72     49         49      53        53        57
## 647     15    12     15         11       9         6         6
## 648    101    93    116         76      96       101        96
## 649     96    54     99         54      51        73        45
## 650     NA    NA      4         NA      NA        NA        NA
## 651     55    61     70         51      78        51        66
## 652     16    18     11         19      14        12        20
## 653      6     5      5          6       6         8         6
## 654     NA    NA     NA          3       3        NA        NA
## 655      6    11      4          4       2         6         8
## 656     20    20     20         25      23        23        34
## 657      4     6      6          2       4         2         8
## 658      1     1      2         NA      NA         1        NA
## 659     NA    15     25         42      49        55        55
## 660     45    NA     NA         NA      NA        NA        NA
## 661     79    73    114         16       6         3        10
## 662      3     3      3          3       3         3         3
## 663     18     5      9          9       5         8        11
## 664     12    12     12         11       9         8         9
## 665     73    85     79         56      93       110       116
## 666     28    42     42         39      23        14        39
## 667    201   130    211         77     173       109       204
## 668    197   137    176        169     183       201       166
## 669     NA    NA     NA         NA      NA        NA        NA
## 670     74    49     59         49      66        66        87
## 671    125    78    101         85      70       116        74
## 672     33    36     27         26      14        22        25
## 673      3     9      5          9       8        11         9
## 674      8     4      2          4       2         4         6
## 675     NA     1      1         NA      NA        NA        NA
## 676     NA     1     NA         NA      NA        NA        NA
## 677      1     1      1          1       1         1         1
## 678     NA    NA     NA         NA      NA        NA         1
## 679      8    16     10         18      14         9        18
## 680      0     0      0          0       0         0         1
## 681      4     5      5          6       3         1         4
## 682      2    25     20          2      17        NA        21
## 683     NA     0     NA         NA      NA        NA        NA
## 684      2     6      4          4       2         2         6
## 685      2     3      2          3       5         4         3
## 686      2     5      4          1       5         1         2
## 687      3     4      3          5       5         2         4
## 688      3     1      2         NA       3         5         2
## 689      0     0      0          1       0         0         0
## 690      3     1     NA         NA      NA        NA        NA
## 691      3     1     NA         NA      NA        NA        NA
## 692     NA     1     NA         NA      NA        NA        NA
## 693      8     7      6          6       8         3         6
## 694     NA    NA     NA         NA       1         5         5
## 695      3    NA     NA         NA      NA        NA        NA
## 696     11     3     14         11      11        11        11
## 697     NA    NA     NA         NA      NA         3        NA
## 698      0    NA      0         NA       0        NA        NA
## 699      1     2     NA         NA      NA        NA         4
## 700      3     4      3          4       3         2         2
## 701     NA    NA     NA         NA      NA        NA        NA
## 702      8    NA     NA          6       6         3         8
## 703      0    NA      1          0      NA         0        NA
## 704      1    NA      2          2      NA        NA         2
## 705     NA    NA      1          1       3         2         1
## 706     NA    NA     NA         NA      NA        NA        NA
## 707     NA    NA      3          6       3         8        NA
## 708      0    NA      0         NA       1        NA        NA
## 709      1    NA     NA         NA      NA        NA         2
## 710      1    NA      3          3       4         1         3
## 711     NA     1     NA          4       1         1         4
## 712     23     6     14         17      11        11        11
## 713     NA    NA     NA         NA       0        NA        NA
## 714     NA    NA     NA         NA      NA        NA        NA
## 715      5     1      1          1       5         3         5
## 716     NA    NA     NA         NA      NA        NA        NA
## 717      2    NA     NA         NA      NA        NA        NA
## 718      8    14     11         17      17        20        17
## 719     NA    NA      3         NA      NA        NA        NA
## 720      0     0      0         NA      NA        NA         0
## 721      1    NA     NA         NA       2         2        NA
## 722      5     5      6          5       6         2         3
## 723     NA    NA     NA         NA      NA        NA        NA
## 724     NA     2     NA         NA      NA        NA         1
## 725     NA    NA      1         NA      NA         1        NA
## 726     11    17     10         22      12        13        17
## 727     NA    NA     NA         NA      NA        NA         1
## 728     NA    NA     NA         NA      NA         1        NA
## 729     51    NA     NA         57       2         2        53
## 730     25    NA     22         38       3         3        51
## 731      3     8      8          6       3         6         5
## 732     25    42      7         21      25        32        11
## 733     18     5      8         66       3        NA         5
## 734     NA    NA     NA         NA      NA        NA         1
## 735     NA    NA     NA         NA      NA        NA        NA
## 736      1     3     NA          2       2         1         1
## 737      3     5     NA         NA       5         4        NA
## 738      3    NA     NA          3       2         4        NA
## 739      0    NA     NA          1       1        NA         0
## 740     NA    NA     NA          1       1        NA         1
## 741      2    NA     NA         NA      NA         2        NA
## 742     NA    NA     NA          1       1        NA         1
## 743     31    14     NA         NA      NA        25        NA
## 744      3    NA      3          3      NA        NA        NA
## 745     NA    NA     NA         NA      NA        NA         0
## 746     NA    NA     NA         NA      NA        NA         1
## 747      1    NA     NA         NA      NA        NA         5
## 748     NA    NA     NA         NA      NA        NA        NA
## 749      2     1     NA          1       1         1         1
## 750      8     6      2         11       8         2         8
## 751      3     5     NA         NA      NA        NA        NA
## 752     NA    NA     NA         NA       2         2         2
## 753     30    72    108         42      93        57        55
## 754    251     6    158         62     124        93       194
## 755      8    27     95         15      27        49        30
## 756     13    18      8          5      13         8         8
## 757     10    NA      8         11      19        10        17
## 758      5    12      9          8      12         6         3
## 759     NA    NA      5         10      18         5        NA
## 760     NA    NA     NA         NA       1        NA        NA
## 761     17    17     21         19      17        13        17
## 762     17    31     17         14      11        11        20
## 763      8     2      4          6       6         2         6
## 764      3     3      5          5       5         3         8
## 765      2     2      1          1       3         1         2
## 766     NA     2      3          3       2         2         3
## 767      8    82    156         40     137        61        63
## 768     61    42     42         32      NA        NA        NA
## 769     NA    NA     NA         16      51        22        22
## 770      3     3      3          3       3         3         3
## 771      2    NA     21         29      36        14        35
## 772    211    42    304         82     186       271       113
## 773    275    39    370         99     204       155       345
## 774    144   166     53        243      85        53       176
## 775      7    NA     NA         NA      NA        NA        NA
## 776     NA    NA     NA         NA      NA        NA        42
## 777     49    34    188         59      72       108        51
## 778    169   142     82        182     133       148       251
## 779     NA    NA     NA         NA      NA        NA        NA
## 780     25    15     20         36      41        36        25
## 781     16     5     23         16      25        23        22
## 782     NA    18     14         17      17         6         6
## 783      6    12     NA          6       4         4         4
## 784     NA     1     NA         NA      NA        NA        NA
## 785     NA     1     NA          2       1        NA         3
## 786      3     1      2          2       3        NA         2
## 787      1     3      1          2       8        NA         1
## 788     13     6     14         17      23        15        18
## 789      5     2      3          5       2         4         2
## 790      4     2      2          1       4         1         3
## 791      7     4     23         NA       1         5         9
## 792     NA    NA     NA         NA      NA        NA        NA
## 793      4     2      2          6       2         2         4
## 794      1     2      1          1       1         1         1
## 795     NA     6      5         13      14         4         1
## 796      5     4     13          2       8         3         4
## 797      8     7      7         12      11         1         4
## 798      7     2      7          3       3         2        NA
## 799      3     4      4          4       0         1         4
## 800      8     3     NA          3       3         3        NA
## 801     NA    NA      5          8       5         5         3
## 802     NA    NA     NA         NA      NA         3        NA
## 803      3    15      6         10       4         5         3
## 804     NA    NA     NA         NA       1         3         3
## 805     NA     3     NA          8       3         3        NA
## 806      3     4      1          3       3         3        NA
## 807     NA    NA     NA          2       0        NA        NA
## 808     NA     5      3          3       3         3         3
## 809      8     3     NA          3      NA        NA        NA
## 810     NA    NA     NA          0       0        NA        NA
## 811     NA     0     NA          3      NA        NA        NA
## 812     NA     3     NA          3      NA        NA         1
## 813     NA    NA     NA         NA      NA        NA        NA
## 814      1    NA      1          2       2        NA         1
## 815     NA     0     NA          3      NA        NA        NA
## 816     NA     8     NA          3       3         5         3
## 817      3     5     NA          8       3        NA        NA
## 818      3     3      3          6       8         3         3
## 819     NA    NA     NA          1       1        NA         1
## 820     NA    NA     NA         NA      NA        NA        NA
## 821     NA    NA     NA         NA      NA         2        NA
## 822      3     3      3          3       3         1        NA
## 823      3     3     NA         NA      NA        NA        NA
## 824     NA     3      3          8       8        NA        NA
## 825     NA     7     NA         NA      NA        NA        NA
## 826      4     3      1          3       3         1         3
## 827     NA     1     NA          2      NA         0         0
## 828     NA    NA     NA          2       2        NA         2
## 829      3     8      8          3       8         3         3
## 830      6     3      1         NA      NA         4         3
## 831     NA    NA      4         NA      NA         5         3
## 832     21     5     16         16      16        18         7
## 833     NA    NA     NA          0      NA        NA        NA
## 834     NA    NA     NA         NA       1        NA        NA
## 835     NA    NA     NA         NA      NA         1        NA
## 836     17    15     27         27      25        17        17
## 837     22    25     19         16      16        13        16
## 838      3    10     10          5       8         5         5
## 839     NA    NA     NA         NA      NA        NA         1
## 840     NA    NA     NA         NA       0         0         1
## 841      0     1      1          1       1         1         1
## 842     NA    NA      1         NA      NA         1        NA
## 843     NA     1      2          2      NA        NA         1
## 844      1     1      1          1      NA         1        NA
## 845     NA    NA     NA         NA       2        NA         2
## 846      1     1      1          1       1         1         1
## 847      6     8     11          8       6         6        11
## 848     NA    NA      1         NA      NA        NA        NA
## 849     NA    NA     NA          0       0         0        NA
## 850     NA     2     NA          1      NA        NA         1
## 851     NA    NA     NA         NA      NA        NA        NA
## 852     NA    NA     NA         NA       1        NA        NA
## 853      2     2     NA         NA      NA        NA        NA
## 854     NA    NA     NA         NA      NA        NA        NA
## 855     25    32     38         27      44        30        59
## 856     17    17     17         17      15        18        11
## 857     23    25     23         17      23        17        14
## 858     17    34     28         17      28        20        25
## 859      8    15     12         10      12         8         8
## 860     17    21     19         19      19        25        25
## 861      4     6      5          4       5         7         6
## 862      8    11     11          8      11        11        11
## 863      8    13     15         15      11         6        11
## 864     NA     3      6          8       6         3         6
## 865     NA    NA      0         NA      NA        NA        NA
## 866      8    11     11          8       8         6         6
## 867     NA    NA     NA         NA      NA        NA        NA
## 868     NA    NA      4          2       2         2         2
## 869     40    NA     NA         NA      NA        NA        NA
## 870     25    89     86         95      63        48        95
## 871     22    22     25         25      16        19        22
## 872      9    18     20         30      27        17         9
## 873     17    17     15         14      12        12        14
## 874      3    NA     NA         NA      NA        NA        NA
## 875      3     6      6          3      NA        NA        NA
## 876     74    88    102        113      60        63       120
## 877    222   268    247        236     215        81       148
## 878     NA    NA     NA         NA      NA        NA        NA
## 879     34    46     57         59      34        46        23
## 880     82   116    118        127     104        57        89
## 881     12    16     15         11      16        11        10
## 882     11    14      9         11      11         9         9
## 883     NA    NA     NA         NA      NA         2        NA
## 884     NA    NA     NA         NA      NA        NA        NA
## 885     NA    NA     NA         NA      NA        NA        NA
## 886      1     1      1          1       1         3         1
## 887     NA    NA     NA         NA      NA        NA        NA
## 888     NA    NA     NA         NA      NA        NA        NA
## 889     NA    NA     NA         NA      NA        NA         7
## 890      0     0      0          0       0         0         0
## 891     NA    NA      0         NA      NA        NA        NA
## 892      3    19      3          3       3         5         4
## 893     NA    NA     NA         NA       0        NA        NA
## 894      2     4      2          6       2         4         2
## 895      1    NA     NA         NA      NA        NA        NA
## 896     NA    NA     NA         NA       1        NA         1
## 897      0     0      0          0       0         0         0
## 898      3     6      6          6       4         5         5
## 899     NA    NA     NA         NA      NA         1        NA
## 900     NA    NA     NA         NA       1        NA        NA
## 901     NA    NA     NA          2      NA        NA        NA
## 902      3     8      3          6      NA         3         6
## 903      0     1      1          1       1         1         1
## 904      0    NA     NA         NA      NA         1        NA
## 905      1     1     NA         NA       1         1         1
## 906      2     2      1          2       1         3         1
## 907     NA    NA     NA         NA      NA        NA        NA
## 908      3     3      6          3      NA        NA         8
## 909      0     1      1          0       0         0         0
## 910      0    NA     NA         NA      NA        NA        NA
## 911      1     1     NA         NA       1         1         1
## 912     NA    NA      1         NA      NA         1        NA
## 913     NA    NA     NA         NA      NA        NA        NA
## 914     NA    NA     NA         NA      NA        NA        NA
## 915      0     1      1          1       1         1         1
## 916      0    NA      0          0      NA        NA        NA
## 917      1     1      2          2       1         1         1
## 918      2     3      1          2       1         3         1
## 919      3     4      3          4       1         3         2
## 920      8    14      8         17       8         6         6
## 921     NA    NA     NA         NA      NA        NA        NA
## 922     NA    NA     NA          2       2        NA         2
## 923     NA    NA     NA         NA      NA        NA        NA
## 924     NA    NA     NA          2      NA        NA        NA
## 925     11    11      6         20      11        14        17
## 926      0     2      1          1       1         1         1
## 927      0     0     NA         NA       0        NA         0
## 928      1     1     NA         NA       1         1         1
## 929      4     6      4          5       4         5         4
## 930     NA    NA     NA         NA      NA        NA        NA
## 931     NA     5      2         NA       3         2         4
## 932      3     4     NA          4      NA        NA        NA
## 933     NA    NA     NA         NA      NA        NA        NA
## 934     NA    NA     NA         NA       1         1         1
## 935     NA    NA     NA         NA      NA        NA         2
## 936     NA    NA     NA         NA      NA         1         3
## 937      2     2      2          2       2         2         4
## 938      3     3      3          3       3         3         6
## 939      4    NA     NA         NA      NA        NA         4
## 940     NA    NA     NA         NA      NA        NA         2
## 941     NA    NA     NA          1      NA         1         2
## 942      1     1      1          1       1         1        NA
## 943      1     3      3          2       1         3         1
## 944      1     1      2          2       1         2         1
## 945     NA    NA     NA         NA      NA        NA         2
## 946      1    NA     NA          1       1         1         1
## 947     NA     2      4          2       2        NA        NA
## 948      2     1      1          1       1         1         1
## 949     NA    NA     NA         NA      NA        NA        NA
## 950     NA    NA     NA         NA      NA        NA        NA
## 951      2    NA     NA         NA      NA         2        NA
## 952     30    32     36         51      30        32        23
## 953      8     5      6         11       9         8         8
## 954     28    28     31         31      28        34        34
## 955     23    17     17         31      31        23        20
## 956     25    19     23         25      23        21        15
## 957      8     8      8          8      10         8        10
## 958      4     4      5          7       6         5         6
## 959      8     5      6          6       5         5         3
## 960      1    NA     NA         NA      NA        NA        NA
## 961      6     6      6          8       6         6         6
## 962      8     3      6         11      NA         6        11
## 963      4     4      4          4       4         8         6
## 964      5     3      8          3      NA        NA        NA
## 965      2     3      2          1       1         3         1
## 966     51    46     68         55      40        34        57
## 967     NA    NA     NA         NA      NA        NA        NA
## 968     25    29     32         25      29        38        35
## 969      3     3      3          3       3         3         6
## 970     11    11     11          9      20        11         6
## 971     NA     6      8          3       5         5         5
## 972     NA    NA     NA         NA      NA        NA        NA
## 973      6    NA     11          8      11         3         6
## 974     74   102    102         74      85       102        99
## 975    113    18     88         14      95       113        88
## 976      2    NA     NA         NA      NA        NA        NA
## 977     25    30     30         23      21        25        30
## 978     51    27     36         36      34        30        23
## 979     46    38     66         55      72        91        23
## 980      3     2      1          1       1         2         2
## 981     NA    NA     NA         NA      NA        NA        NA
## 982     24    23     23         18      16        17        16
## 983      3     5      5          6       3         6         3
## 984      6     4      4          6       4         2         4
## 985      4     2      3          4       3         4         2
## 986     NA    NA     NA         NA      NA        NA        NA
## 987      1     1      1          2       1         2         1
## 988     NA    NA     NA         NA      NA        NA        NA
## 989      1    NA      1         NA       5        NA         1
## 990      5     3      6          4       4        NA         2
## 991     NA    NA     NA          1      NA        NA        NA
## 992      1     0      2          1       0         2         0
## 993      1     2      1          2       1         2         3
## 994      6     7     10          5       3         8         5
## 995      1    NA      1          0      NA        NA         2
## 996      1    NA     NA         NA      NA        NA        NA
## 997     NA     4      4          6       4         4         4
## 998      1     1      2          2       3         1         2
## 999      1    NA     NA         NA      NA        NA        NA
## 1000    NA    NA     NA         NA      NA        NA         2
## 1001    NA    NA     NA         NA      NA        NA         1
## 1002     1     1      1          0       1         1         1
## 1003     1     4      3          5       7         8         9
## 1004    NA    NA     NA         NA       3        NA         3
## 1005    NA    NA     NA         NA       2         6         4
## 1006    NA    NA     NA         NA       1        NA        NA
## 1007     4     2     NA          4       4        NA         4
## 1008     3     6      3          3       8         8         3
## 1009     0    NA      0         NA       0        NA         1
## 1010    NA    NA     NA         NA       2        NA         2
## 1011     1     1      1          1      NA         1         2
## 1012     3     3      2          3       2         1         3
## 1013    NA    NA     NA         NA      NA        NA        NA
## 1014    NA    NA     NA         NA      NA        NA        NA
## 1015    NA    NA      0         NA      NA        NA        NA
## 1016    NA    NA     NA          3      NA        NA        NA
## 1017     6     6      3          6      NA        NA        NA
## 1018    NA    NA     NA         NA      NA         0        NA
## 1019     1     1      3          5      NA         1        NA
## 1020     2     1     NA          4       1        NA         3
## 1021    NA    NA     NA         NA      NA        NA        NA
## 1022     2     2      2          2       2         2        NA
## 1023    NA    NA     NA         NA      NA        NA        NA
## 1024    NA    NA     NA         NA      NA        NA         2
## 1025     1     1      1          1      NA         1        NA
## 1026     1     2      1          1       1        NA         3
## 1027     2     1      2          1       4         3         3
## 1028    14     8     14         14       6         3        14
## 1029    NA    NA     NA         NA      NA        NA        NA
## 1030    NA    NA     NA         NA       2         2        NA
## 1031     3     1      3          1       3         4         5
## 1032    NA    NA     NA         NA      NA        NA        NA
## 1033     6     2      2          6       4         4         8
## 1034     6     6      6          8       6         3         6
## 1035    NA    NA      1         NA      NA        NA         1
## 1036    NA     0     NA          0      NA        NA         0
## 1037     1     1      1          1      NA         1        NA
## 1038     3     3      3          3       2         4         6
## 1039    NA    NA     NA         NA      NA        NA        NA
## 1040     8     4      4          8       6        11        15
## 1041     0    NA     NA         NA      NA        NA        NA
## 1042    NA    NA     NA         NA      NA         2        NA
## 1043    NA    NA     NA         NA      NA        NA         1
## 1044    NA    NA     NA         NA      NA         1         1
## 1045     2     4      2          2       2         2         2
## 1046    13     6      3          3       3         3         3
## 1047    NA    NA     NA         NA      NA        NA         1
## 1048    NA    NA     NA         NA      NA         1        NA
## 1049    NA    NA     NA         NA      NA        NA        NA
## 1050     1    NA     NA         NA       1        NA        NA
## 1051     1     2      2          2       2         1         1
## 1052    NA    NA     NA         NA       0        NA        NA
## 1053     2     1      1          1       1         1         1
## 1054    NA    NA     NA         NA      NA        NA        NA
## 1055     1     1      1          2       1         1         1
## 1056     3    NA     14          6       6         6        NA
## 1057    NA     1     NA         NA      NA        NA        NA
## 1058    NA    NA     NA         NA      NA        NA        NA
## 1059     2    NA     NA         NA      NA        NA        NA
## 1060    NA    NA     NA         NA      NA        NA        NA
## 1061     1     1     NA         NA      NA        NA        NA
## 1062    13    13     15         13      13        11        11
## 1063     6     6      3          3       6         8        11
## 1064    NA    NA      3          3      NA        NA        NA
## 1065    34    30     25         25      25        25        17
## 1066     1     1     NA         NA       1         1        NA
## 1067     1     1     NA          2       1         1        NA
## 1068     3     3      4          6       4         4         4
## 1069    NA    NA      2         13      11         8        13
## 1070    24    24     32         NA      NA        NA        NA
## 1071     3     6      2         13      16        10        13
## 1072     3     3      3          3       3         3         3
## 1073     9    11     11         12      11         6        11
## 1074    NA     2      3         NA       2        NA        NA
## 1075    NA     3     NA          3      NA        NA        NA
## 1076    56    67     70         46      46        46        67
## 1077    92   102     67         85      77        56        81
## 1078    36    38     34         25      38        32        25
## 1079   116   101    108         89     101        70        70
## 1080     1     1     NA         NA      NA        NA        NA
## 1081     6     6      5          5       6         3         5
## 1082     6     5      6          5       5        NA         2
## 1083     2     2      1          1       1         1        NA
## 1084     1     1      1          1       1         2         1
## 1085    NA    NA     NA         NA      NA        NA        NA
## 1086     1    NA     NA          1       1        NA        NA
## 1087     0     0      0          0       0         0         0
## 1088    NA    NA      0         NA      NA        NA        NA
## 1089    NA     3      3         NA       3         1        NA
## 1090    NA     0     NA         NA      NA        NA        NA
## 1091    NA    NA     NA         NA      NA         1         1
## 1092     1    NA     NA         NA      NA        NA        NA
## 1093    NA     1     NA         NA      NA        NA        NA
## 1094    NA    NA     NA         NA      NA         1        NA
## 1095     0     0      0          0       0         0         0
## 1096     4     4      4          4       4         3         3
## 1097    NA    NA     NA         NA       1         1         1
## 1098     1     3      3         NA       3        NA        NA
## 1099    NA    NA     NA         NA      NA        NA        NA
## 1100    NA    NA     NA         NA       0        NA        NA
## 1101    NA    NA     NA         NA       1        NA        NA
## 1102     4     3      3          4       3         3         4
## 1103     0     0      0         NA       0         0        NA
## 1104    NA    NA      2         NA      NA        NA        NA
## 1105     1    NA     NA         NA      NA        NA         3
## 1106    NA    NA     NA         NA      NA        NA        NA
## 1107    NA    NA     NA         NA      NA        NA        NA
## 1108    NA    NA     NA         NA       1         2        NA
## 1109     1    NA     NA         NA      NA        NA        NA
## 1110     0     0      0         NA       0         0        NA
## 1111     1     3     NA         NA      NA        NA        NA
## 1112    NA    NA     NA         NA      NA        NA        NA
## 1113    NA     0     NA         NA      NA        NA        NA
## 1114    NA    NA     NA         NA       1        NA        NA
## 1115    NA    NA     NA          1      NA        NA        NA
## 1116    NA     3     NA          1      NA         1        NA
## 1117    NA    NA     NA         NA      NA         3        NA
## 1118    NA    NA     NA         NA      NA         0        NA
## 1119    NA     4      2          2      NA        NA        NA
## 1120     4     4      4          4       4         5         4
## 1121     0     0      0         NA       0         0        NA
## 1122     4     3      3          3      NA        NA        NA
## 1123    NA    NA     NA         NA      NA        NA        NA
## 1124     0    NA      0          0      NA        NA         0
## 1125     2    NA     NA         NA       1        NA         2
## 1126     4     4      3          4       3         4         4
## 1127     0     0      0         NA       0         0        NA
## 1128    NA    NA     NA         NA      NA        NA        NA
## 1129    NA     1     NA         NA      NA        NA        NA
## 1130     1    NA     NA          1       1         3         1
## 1131     0    NA     NA         NA      NA        NA        NA
## 1132     2    NA     NA         NA      NA        NA        NA
## 1133    NA    NA     NA         NA      NA         1        NA
## 1134    NA    NA     NA         NA      NA         1         1
## 1135     2     2      2          2       2         2         2
## 1136     3     3      3          6       6         3         3
## 1137    NA    NA      4         NA      NA        NA        NA
## 1138    NA    NA     NA         NA      NA        NA        NA
## 1139    NA    NA     NA         NA      NA        NA         1
## 1140    NA    NA     NA         NA      NA         0        NA
## 1141     0    NA      1         NA      NA        NA        NA
## 1142     4     5      4          5       3         3         1
## 1143    NA    NA     NA         NA       0        NA        NA
## 1144     1     1     NA          1       1         1         1
## 1145    NA    NA      2         NA      NA        NA        NA
## 1146     1     1      2          1       1         1         1
## 1147    NA    NA     NA         NA      NA        NA        NA
## 1148    NA    NA     NA         NA      NA        NA         0
## 1149    NA    NA     NA         NA      NA        NA         1
## 1150     1     1     NA         NA      NA        NA         1
## 1151    NA     1     NA         NA      NA        NA        NA
## 1152    11     6      4          8      11        11         6
## 1153     3    NA     NA         NA      NA        NA         6
## 1154     7    NA     NA         NA      NA        NA        NA
## 1155    11     6     13          6       8        15         6
## 1156     2     1      2          3       3         3         2
## 1157    NA    NA     NA          2      NA        NA        NA
## 1158    NA    NA     NA          2       2         2         2
## 1159    21    NA     NA         NA      NA        NA        NA
## 1160    19    22     50         32      35        35        38
## 1161    16    13     16         16      19        22        22
## 1162    12     9     12          9      12        11         8
## 1163    NA    NA     NA         NA       6         3        NA
## 1164    46    28     53         49      35        77        88
## 1165   218   130    187        159     173       116       201
## 1166    NA    NA     NA         NA      NA        NA        NA
## 1167    27    19     36         25      23        21        25
## 1168   135    53    114        120     131        99        89
## 1169     5     5      6          6       5         7         4
## 1170     5     3      5          2       5         5         6
## 1171     6     4      6          4       2         4         6
## 1172     4     2      1          2      NA         2         1
## 1173     1     1      1          1       1         1         1
## 1174    NA    NA     NA         NA      NA        NA        NA
## 1175    NA    NA     NA         NA      NA        NA        NA
## 1176    NA    NA     NA         NA      NA        NA         2
## 1177     0     0      0          0       0         0         0
## 1178     2     4      2          6       4         2         2
## 1179     0    NA     NA         NA      NA        NA        NA
## 1180    NA     2     NA          4      NA         4         6
## 1181    NA     0     NA         NA      NA        NA        NA
## 1182    NA     1     NA         NA      NA         1        NA
## 1183    NA    NA     NA         NA      NA        NA         1
## 1184     1    NA     NA         NA      NA        NA        NA
## 1185     0     0      0          0       0         0         0
## 1186     1    NA     NA         NA      NA        NA        NA
## 1187     1    NA     NA         NA      NA        NA        NA
## 1188     1    NA     NA         NA      NA        NA        NA
## 1189     1    NA     NA         NA      NA         1        NA
## 1190    NA    NA     NA         NA       2        NA         2
## 1191     1     1      1         NA      NA         1         1
## 1192     0    NA      1         NA      NA        NA        NA
## 1193    NA    NA      1          0       0         0         0
## 1194     2     1      1         NA       1         2         2
## 1195     1     1      1          1       1         1         2
## 1196     0    NA      0         NA      NA        NA         0
## 1197    NA    NA     NA         NA      NA         0        NA
## 1198    NA    NA      1         NA      NA        NA        NA
## 1199     1     4      1         NA      NA         1         6
## 1200     0    NA      0         NA      NA        NA        NA
## 1201     2     1      1         NA       1        NA        NA
## 1202     1     1      1          2       1         1        NA
## 1203     0    NA      0         NA      NA        NA         0
## 1204    NA    NA     NA         NA      NA         0        NA
## 1205     1     1      1         NA      NA         1         1
## 1206     0    NA      1         NA      NA        NA        NA
## 1207    NA    NA     NA         NA      NA        NA        NA
## 1208     2     1      1         NA       1        NA        NA
## 1209     1     1      1          2       1         1         2
## 1210     0    NA      0         NA      NA        NA         0
## 1211     1    NA     NA         NA      NA         1        NA
## 1212    NA    NA     NA         NA      NA        NA        NA
## 1213    NA    NA     NA         NA      NA         0        NA
## 1214    NA    NA      1         NA      NA        NA        NA
## 1215     4     1      1          3       3         1         6
## 1216     0    NA      1         NA      NA        NA        NA
## 1217     0     0     NA         NA      NA        NA        NA
## 1218     2     1      1          2       1        NA        NA
## 1219     1     2      1          2       1         1         1
## 1220     0    NA      0         NA      NA        NA         0
## 1221    NA    NA     NA         NA      NA         0        NA
## 1222    NA    NA     NA         NA      NA        NA        NA
## 1223     3    NA      5          1       3        NA        NA
## 1224    NA    NA      0         NA      NA        NA        NA
## 1225    NA    NA     NA         NA       1         1        NA
## 1226    NA    NA     NA         NA      NA         1        NA
## 1227     2     4      4          4       2         2        NA
## 1228    NA     6      6          3       3         3        NA
## 1229     3     3      3         NA       3        NA        NA
## 1230    NA    NA     NA         NA      NA        NA         1
## 1231    NA    NA     NA         NA      NA         0        NA
## 1232    NA    NA      1         NA      NA         0         0
## 1233     1     1      2          1       1         1         2
## 1234     0    NA      0         NA      NA        NA        NA
## 1235     0    NA     NA         NA      NA        NA         0
## 1236    NA    NA     NA         NA      NA         1        NA
## 1237    NA    NA     NA         NA      NA         1        NA
## 1238     2     2      4          2       2         4         2
## 1239     2    NA      2         NA       2         2         2
## 1240     3     3      3         NA       6        NA         6
## 1241     4     4      8          6       6         8         2
## 1242     2     3      2          2       1         3         2
## 1243    NA    NA     NA         NA      NA         2         6
## 1244     5    NA     NA         NA      NA        NA        NA
## 1245     6    22     29         16      25        22        16
## 1246     3     3      6          3       3         6         3
## 1247     5     5      5          3       8         6         5
## 1248    18    11     18          4      14        14        28
## 1249    46    56     49         70      70        53        70
## 1250    15    21     15         13      17        13        17
## 1251    57    61     59         49      55        51        53
## 1252     2     2      4          1       4         2         3
## 1253    NA     1      0          2       2         1         1
## 1254    NA     1      1          1      NA         1         1
## 1255    NA    NA     NA         NA      NA         1        NA
## 1256    NA    NA     NA         NA      NA        NA         1
## 1257    NA    NA     NA         NA      NA         0        NA
## 1258    NA    NA     NA         NA      NA        NA        NA
## 1259     5     7      3          3       4         5         2
## 1260    NA    NA     NA         NA      NA        NA        NA
## 1261    NA    NA     NA         NA      NA         0        NA
## 1262    NA    NA     NA         NA       1        NA        NA
## 1263    NA    NA     NA         NA       1        NA        NA
## 1264    NA    NA      2         NA      NA        NA        NA
## 1265    NA    NA     NA         NA       3        NA         3
## 1266    NA    NA      1         NA      NA         0         0
## 1267    NA    NA     NA          0      NA        NA        NA
## 1268    NA    NA     NA         NA      NA        NA        NA
## 1269     1     1      1          1       1         1         1
## 1270    NA     0     NA         NA      NA        NA        NA
## 1271    NA    NA     NA         NA      NA        NA        NA
## 1272    NA    NA      0         NA      NA         0         0
## 1273    NA    NA     NA         NA      NA        NA         0
## 1274    NA    NA     NA          2      NA         2        NA
## 1275    NA     0     NA         NA      NA        NA        NA
## 1276    NA    NA      1         NA      NA         0         0
## 1277    NA    NA     NA         NA      NA        NA        NA
## 1278    NA    NA     NA         NA      NA        NA        NA
## 1279     1     1      3         NA       1         1         1
## 1280    NA    NA      2         NA      NA        NA        NA
## 1281    NA    NA     NA         NA      NA        NA        NA
## 1282    NA     0     NA         NA      NA        NA        NA
## 1283     2     2     NA         NA      NA        NA        NA
## 1284     3    NA     NA          6       3         6         6
## 1285    NA    NA      1         NA      NA         0         0
## 1286    NA    NA     NA         NA      NA         0        NA
## 1287    NA    NA     NA         NA      NA        NA         2
## 1288     2     3      3          1       2         1         3
## 1289    NA     0     NA         NA      NA        NA        NA
## 1290     1    NA     NA          1      NA        NA         1
## 1291    NA    NA     NA         NA       1        NA         1
## 1292    NA    NA     NA         NA      NA        NA         1
## 1293     2     2      2          2       4         2         2
## 1294     3     3      3          3       3         3         3
## 1295    NA    NA     NA         NA      NA        NA        NA
## 1296    NA    NA     NA         NA      NA        NA         1
## 1297    NA    NA     NA         NA      NA         1        NA
## 1298     0    NA     NA         NA      NA        NA        NA
## 1299    NA     1     NA         NA      NA        NA        NA
## 1300     2     3      3          1       3         1         2
## 1301    NA    NA     NA         NA       0        NA        NA
## 1302     1     1      1          1       1         1         1
## 1303     1     1      1          1       1         1         1
## 1304     1    NA     NA         NA      NA        NA        NA
## 1305    NA     2      2          4       4         2         2
## 1306    NA    NA     NA         NA      NA        NA        NA
## 1307    13    17     15         17      19        15        15
## 1308    NA    NA     NA         NA      NA        NA        NA
## 1309     6     6      3          3       8         3         8
## 1310     6    11      6          8       6         6         8
## 1311     4    NA     NA         NA      NA        NA        NA
## 1312     3     3      2          3       3         3         2
## 1313     6     6      4          8       2         4         6
## 1314     3    NA     NA         NA      NA        NA        NA
## 1315     1     1      1         NA      NA        NA         1
## 1316    NA     2      2         NA      NA         2        NA
## 1317     4     2     NA          2       4         2         6
## 1318     4     2      2          2       2         4         2
## 1319    NA    NA     NA         NA      NA        NA        NA
## 1320    13    11     13         15      19        17        17
## 1321    16    21     16         NA      NA        NA        NA
## 1322    NA    NA      3         10       6        10        16
## 1323     3     3      3          3       3         6         3
## 1324     9     9     14          9      20        12        12
## 1325     3    NA     NA         NA      NA        NA        NA
## 1326    NA    NA      8         NA      NA        NA        NA
## 1327    25    28     32         18      25        25        77
## 1328    99    88    102         88      92        88       116
## 1329     8    15     13         13      15        15        25
## 1330    46    42     38         44      46        38        42
## 1331    13    13     11         10      11        12        12
## 1332     6     8      5          5       6         5         3
## 1333    NA    NA     NA         NA      NA        NA         1
## 1334     1     1      1          1       1         1         1
## 1335    NA    NA     NA         NA      NA        NA        NA
## 1336    NA     1      1          1       1        NA        NA
## 1337     0     0      0          0       0         0         0
## 1338    NA    NA     NA         NA       2         2         2
## 1339    NA    NA     NA         NA      NA        NA         1
## 1340     1     1     NA         NA      NA         1        NA
## 1341     0     0      0          0       0         0         0
## 1342     2    NA      2          2       3         3         3
## 1343    NA    NA     NA         NA       1        NA        NA
## 1344     2     2      2          2      NA        NA         2
## 1345     3     3      3          8      NA         6         6
## 1346     0    NA     NA         NA      NA        NA        NA
## 1347    NA    NA     NA          0      NA        NA         0
## 1348    NA     2     NA         NA       3         1         3
## 1349     2     3      3          1       3         3         3
## 1350    NA    NA     NA         NA      NA        NA        NA
## 1351    NA    NA      3         NA      NA        NA        NA
## 1352    NA     3     NA         NA      NA        NA        NA
## 1353     0    NA     NA         NA      NA        NA        NA
## 1354    NA    NA      0         NA      NA        NA        NA
## 1355    NA    NA      2         NA       1         1         1
## 1356    NA     1     NA          1       1        NA         1
## 1357    NA    NA     NA         NA      NA        NA        NA
## 1358     0    NA     NA         NA      NA        NA        NA
## 1359    NA    NA     NA         NA      NA        NA        NA
## 1360    NA    NA     NA         NA       1         1         1
## 1361    NA     1      1         NA      NA        NA        NA
## 1362     2     3      2          1       1         2         2
## 1363     3     3      3          6       3        NA        11
## 1364    NA     0     NA         NA      NA        NA        NA
## 1365     2    NA     NA         NA      NA        NA        NA
## 1366     1     1      1          1      NA         1         4
## 1367    NA    NA     NA         NA      NA        NA        NA
## 1368     2     2      2          2      NA        NA        NA
## 1369     6    NA      3          3       3        NA         8
## 1370     0    NA     NA         NA      NA        NA        NA
## 1371     0    NA     NA         NA       0         0        NA
## 1372     2     2     NA          2       1         1         1
## 1373     1     3      2          1       3         2         1
## 1374    NA    NA     NA         NA      NA        NA        NA
## 1375    NA     1     NA         NA      NA        NA         2
## 1376    NA    NA      1          1      NA        NA         2
## 1377    NA    NA     NA         NA       1         1         1
## 1378    NA    NA     NA         NA      NA        NA         3
## 1379    NA    NA     NA         NA      NA         1        NA
## 1380    15    11     17         25       4        19        13
## 1381    13    13     19         19       6        13         6
## 1382     3     3      3          6      NA         3         2
## 1383    NA     4      7         NA      NA        NA        NA
## 1384     5     3     NA          5      NA        NA        NA
## 1385    NA    NA     NA         NA      NA        NA         1
## 1386    NA    NA     NA          1      NA         0        NA
## 1387     1     1     NA          1       0         1         0
## 1388     1    NA      1          1       1        NA        NA
## 1389     4     4      5          3       2         1         3
## 1390     2    NA     NA         NA      NA        NA         0
## 1391     1     1     NA         NA       1         2         1
## 1392     2    NA      2          2      NA        NA         2
## 1393     1     1      2          2       1         1         1
## 1394     8     6      3          6       6        NA         6
## 1395    NA    NA     NA         NA      NA        NA        NA
## 1396     1    NA      1         NA      NA        NA        NA
## 1397     2     4      2          6       2         2         4
## 1398    15    19     13         19      17        15        15
## 1399     3     2      3          2       3         2         2
## 1400    11    14     11         11      11        14         4
## 1401     3     3      2          3       2         2         2
## 1402    19    32     13         30      19        19        17
## 1403     8     8      7          7       7         9         5
## 1404     5     5      3          3       3         2         3
## 1405    NA    NA     NA         NA      NA        NA        NA
## 1406     4     4      4          4       4         2        NA
## 1407    NA    NA     NA          3      NA         3        NA
## 1408     4     6      4         11       4         2         6
## 1409    NA    NA     NA         NA      NA         1        NA
## 1410     2    NA     NA         NA      NA        NA        NA
## 1411    NA    NA     NA          2       2         2         2
## 1412    26    NA     NA         NA      NA        NA        NA
## 1413    19    76     20         48      44        41        48
## 1414    32    44     41         51      35        19        67
## 1415    24    26     23         17      18        21        18
## 1416     3     3      2          2       3         3         2
## 1417    NA    NA     NA         NA      NA        NA        NA
## 1418    18    25     39         25      70        NA       137
## 1419   151   190    134        166     162       127       180
## 1420    NA    NA     NA         NA      NA        NA        NA
## 1421    19    44     30         19      17        23        49
## 1422    99   131     80         74     114       112        85
## 1423     2     2      2          2       1         2         1
## 1424    13    12     13         14      10        15         9
## 1425     8     9      8         NA      NA         2         6
## 1426    NA     2      4          4       6         2         4
## 1427     5     5      5          4       5         5         5
## 1428     1     1      1          1       1         2         1
## 1429    NA    NA     NA         NA      NA        NA        NA
## 1430    NA    NA     NA         NA      NA        NA        NA
## 1431    NA    NA     NA         NA      NA        NA         1
## 1432     0     0      0          0       0         0         0
## 1433    NA    NA     NA         NA      NA        NA         0
## 1434     0     2     NA         NA       0        NA         3
## 1435    NA    NA     NA         NA       0        NA        NA
## 1436     2    NA      2          2       2        NA         2
## 1437    NA     1      1          1       0         1         0
## 1438    NA    NA     NA         NA      NA        NA         1
## 1439     0     0      0          0       0         0         0
## 1440     1     5      3          5       3         4         2
## 1441    NA    NA     NA         NA       3         3         1
## 1442    NA    NA     NA          4       3        NA         8
## 1443    NA    NA     NA          5      NA        NA        NA
## 1444     1     1      1          1       0         1         0
## 1445     3     2     NA          1       3         1         3
## 1446    NA     2      4          3       2        NA        NA
## 1447     2     3      4          3       3         2         3
## 1448     0    NA     NA         NA      NA        NA        NA
## 1449    NA    NA      1         NA      NA        NA        NA
## 1450    NA    NA     NA          1      NA        NA        NA
## 1451     0     1     NA          1       0         0         0
## 1452    NA    NA     NA          0      NA        NA        NA
## 1453    NA    NA     NA          1      NA        NA        NA
## 1454    NA    NA     NA         NA      NA         1         1
## 1455     0    NA     NA         NA      NA        NA        NA
## 1456     3     3     NA          1      NA        NA        NA
## 1457    NA    NA     NA         NA      NA         2        NA
## 1458     1     1     NA          1       0         1         0
## 1459    NA    NA     NA         NA       1        NA        NA
## 1460    NA    NA     NA          1      NA        NA        NA
## 1461    NA    NA     NA         NA      NA        NA        NA
## 1462     3     3      3          3       1         3         1
## 1463     3     3     NA         NA      NA        NA        NA
## 1464    NA    NA      3         NA      NA         3        11
## 1465     4     4      7         NA       4        NA        NA
## 1466     6     5      2          3       5         1         3
## 1467     2     4      6          2       2        NA         2
## 1468    NA    NA     NA         NA      NA         3         3
## 1469     0    NA     NA         NA      NA        NA        NA
## 1470    NA    NA      3         NA      NA         2        NA
## 1471    NA     3     NA          1      NA        NA        NA
## 1472     4     4      4          9      NA         4        NA
## 1473     1     1      1          1       0         1         0
## 1474     3     3      1          3       3         3         3
## 1475     4     6      2         11       2         4         6
## 1476     4     6      3          4       3         6         3
## 1477     0    NA     NA         NA      NA        NA        NA
## 1478    NA    NA     NA         NA      NA         3        NA
## 1479    NA    NA      1         NA      NA         2        NA
## 1480     7     6      9          3       6        10         4
## 1481     0    NA     NA         NA      NA        NA        NA
## 1482    NA    NA      0         NA      NA        NA        NA
## 1483    NA    NA     NA          3      NA        NA        NA
## 1484    NA    NA     NA         NA      NA         1        NA
## 1485    NA    NA     NA         NA      NA         1         1
## 1486     2     2      2          2       2        21         2
## 1487     3     3      3         NA       3        32         3
## 1488    11    28     21         35       4        NA         7
## 1489    NA    NA     NA         NA      NA        13        NA
## 1490    NA    NA     NA         NA      NA        NA         1
## 1491    NA    NA     NA          2      NA        NA        NA
## 1492     2     3     NA          2       0         0         3
## 1493     1     5      1          3       3         3         3
## 1494    NA    NA     16         NA      NA         1        NA
## 1495    NA    NA     NA         NA       1        NA         0
## 1496     1     1      1          1       1         1        NA
## 1497     1     1      1          1       1         1        NA
## 1498    28    NA     NA         31      NA        NA        NA
## 1499    NA    NA      1         NA      NA        NA        NA
## 1500    NA    NA      1         NA      NA        NA         1
## 1501     1     1      3          2      NA        NA         3
## 1502     5    NA     NA         NA      NA        NA         1
## 1503     8     8     15         15      13        17        11
## 1504     8    11     11         11       6        11        NA
## 1505     6     6      3         NA       6         3        NA
## 1506    NA    NA     NA         NA      NA         2        NA
## 1507    NA    34     19         21      30        21        36
## 1508     3     3      3          4       2         3         2
## 1509     2     3     NA          2       2         2         1
## 1510    NA    NA     NA         NA      NA         2         4
## 1511     4     2     NA         NA       2         4        NA
## 1512    NA    NA      3         NA      NA        NA        NA
## 1513    NA    NA     NA         25      46        27        25
## 1514     5    NA     NA         NA      NA        NA        NA
## 1515    38    86     51          3      NA        57        38
## 1516    29    67     51         13      63        48         3
## 1517     2    15     15         36       9        18        20
## 1518    NA     3     NA         NA      NA         3        NA
## 1519     8    11     11          8       6         3        NA
## 1520    56   127     77         49     137        42        53
## 1521   127   243    148        225     166       201        88
## 1522    30    49     34         21      61        38        53
## 1523    59    66     82         85      66        36        95
## 1524     6     9      8         10      10         8         7
## 1525     6     6      8          8      11         3         3
## 1526    NA     2     NA         NA      NA         2        NA
## 1527     6     8      9          8       7         6         7
## 1528    NA     1      1         NA      NA        NA        NA
## 1529     1     1      1          1       1         1        NA
## 1530    NA    NA      1         NA      NA        NA        NA
## 1531     1     3      3         NA      NA        NA        NA
## 1532     2     9     NA          2       5         4         4
## 1533     0     0      0          0       0         0         1
## 1534     1     2      1          1       0         2         2
## 1535    NA     5      5          4       5         4         8
## 1536    NA    NA     NA         NA       0        NA        NA
## 1537     2     2      4          2       4         2         4
## 1538     1     2      1          2       1         2         1
## 1539    NA    NA     NA         NA      NA         1        NA
## 1540    NA    NA     NA         NA      NA        NA         1
## 1541     1    NA     NA         NA      NA        NA        NA
## 1542    NA     1     NA         NA      NA        NA        NA
## 1543     0     0      0          0       0         0        NA
## 1544     5     3      4          3       4         3         2
## 1545    NA    NA     NA         NA       1         4         4
## 1546    NA    NA     NA         NA      NA         2        NA
## 1547     8    11      6          6      14         6        11
## 1548     0    NA     NA         NA      NA         1         1
## 1549     1     1      1         NA       1         1         2
## 1550     3     4      4          6       4         3         4
## 1551    NA    NA     NA         NA      NA         0        NA
## 1552    NA    NA     NA         NA      NA         2        NA
## 1553    NA     3     NA         NA       3         3        NA
## 1554     0    NA     NA         NA      NA         1        NA
## 1555     1     1      1         NA       1         1        NA
## 1556     3     3      3          3       5         4         3
## 1557    NA    NA     NA         NA      NA         0        NA
## 1558    NA    NA     NA         NA      NA         2         2
## 1559     1    NA     NA         NA      NA        NA        NA
## 1560    NA    NA     NA         NA      NA         1        NA
## 1561     1     1      1         NA       1         1        NA
## 1562    NA    NA     NA         NA      NA         1         2
## 1563     4     3      3          4       3         2         3
## 1564    NA    NA     NA         NA      NA        NA        NA
## 1565    17    20     11         14      11         8        14
## 1566     0    NA     NA         NA       0        NA         3
## 1567    NA    NA     NA         NA      NA        NA        NA
## 1568     4     4      4          4       3         4         3
## 1569    NA    NA     NA         NA      NA         0        NA
## 1570    NA    NA     NA         NA      NA         2        NA
## 1571    NA    17     25         25      17        11        14
## 1572     1     0      0         NA      NA         1         2
## 1573     1     1      1          2       1         1        NA
## 1574     6     6      5          6       4         6         3
## 1575    NA    NA     NA         NA      NA         0        NA
## 1576    NA     2      1          2      NA         1        NA
## 1577     2    11      6         10       4         7         6
## 1578    NA    NA     NA         NA      NA        NA        NA
## 1579    NA    NA      0         NA      NA        NA        NA
## 1580    11     6      3          8       6         3        11
## 1581     9     5      5          5      10         6         1
## 1582    NA    NA     NA         NA      NA         1        NA
## 1583     8     2      2          6      11         2         6
## 1584    22    10     10         10      13         3        35
## 1585    NA    NA     NA         NA      NA        NA        NA
## 1586    14     2     NA          2       6        NA        11
## 1587     7    NA      7         NA       4        NA         7
## 1588    23     5      3          8      15        NA         8
## 1589    NA    NA     NA         NA      NA        NA         1
## 1590     3    NA      3         NA      NA         2        NA
## 1591    NA    NA     NA          3      NA        NA        NA
## 1592    NA    NA     NA         NA       1        NA        NA
## 1593     1     0     NA          0       1         0        NA
## 1594    NA    NA      1         NA      NA        NA        NA
## 1595     3    NA     NA         NA      NA        NA        NA
## 1596     8     8      3         NA      NA        NA         2
## 1597     0    NA     NA          0      NA        NA         1
## 1598     1     5      1          1       3         1         1
## 1599    NA    NA     NA         NA      NA        NA        NA
## 1600     1     6      1          2       2         1         1
## 1601     8    11      3          8      11        17         8
## 1602    NA    NA     NA         NA       1        NA        NA
## 1603    NA    NA     NA         NA      NA        NA        NA
## 1604    NA    NA     NA         NA      NA        NA         1
## 1605     1    NA     NA         NA      NA        NA        NA
## 1606    NA    NA     NA         NA      NA        NA        NA
## 1607     8     2      6          8       2         8         8
## 1608    NA    NA     NA         NA      NA        NA        NA
## 1609    NA    NA     NA         NA      NA        NA        NA
## 1610    NA    NA      4         11      15        13         2
## 1611    21    21     24         NA      NA        NA        NA
## 1612    35    35     20         16      48        35        29
## 1613    19    38     48         29      57        16        32
## 1614    NA    NA     NA         NA      NA        NA        NA
## 1615    14    33     29         18      20        24        23
## 1616    NA    NA     NA          2      NA        NA        NA
## 1617    NA    NA     NA         NA      NA        NA        NA
## 1618    NA    NA     NA         NA      NA        NA        NA
## 1619   127   106     35         53     137       109       180
## 1620    46    56     60         56      88        67        67
## 1621     2    NA     NA         NA       6        NA        NA
## 1622    15    55     36         27      23        21        49
## 1623    82    36     68         85     142        34        63
## 1624     5     4      3          3       4         2         4
## 1625     5     2      2          3       3         5         3
## 1626    10     6      6          8       6         6         4
## 1627    10     8      7          7      11         9        12
## 1628    NA    NA     NA         NA      NA        NA        NA
## 1629     4     6      1          5      11         1         1
## 1630     2     3     NA         NA      NA        NA        NA
## 1631    10    10     NA          6      13         8         2
## 1632     2     3      1          3       5         7         8
## 1633    NA    NA     NA         NA      NA        NA        NA
## 1634     0     0      0          0       0         0         1
## 1635    NA    NA      1         NA      NA        NA         1
## 1636     5    15      5          5      11        18         4
## 1637    NA    NA     NA         NA      NA        NA        NA
## 1638     1    NA     NA         NA       0        NA        NA
## 1639     2     2     NA         NA       4        NA         6
## 1640     1     0      2          1       3         1         2
## 1641    NA    NA     NA         NA      NA         1        NA
## 1642    NA    NA     NA         NA      NA        NA        NA
## 1643     0     0      1          0       0         1         1
## 1644    NA    NA     NA         NA       5        10         3
## 1645    NA    NA     NA         NA      NA         2         1
## 1646     2    NA      2          1      NA         2        NA
## 1647     1    NA     NA         NA      NA        NA        NA
## 1648    14     6     11          6       6        11         8
## 1649    NA    NA     NA         NA      NA        NA        NA
## 1650     7    NA     NA         NA      NA        NA        NA
## 1651     1     0     NA          0       1         0        NA
## 1652    10     6      5          8       5         5         8
## 1653     1     1      5          2       1         1         1
## 1654    NA    NA     NA         NA      NA        NA        NA
## 1655     2     2      1          2       2         2         3
## 1656     2    NA      2          2      NA         2        NA
## 1657     1    NA     NA         NA      NA        NA        NA
## 1658    17     8      6          6      28        37        20
## 1659    NA    NA     NA         NA      NA        NA        NA
## 1660     4    NA     NA         NA      NA        NA         2
## 1661     1     0     NA          0       0         0        NA
## 1662    10    NA      5          3       9         9         5
## 1663    NA    NA     NA         NA      NA         2        NA
## 1664     1     1      5          2       1         1         1
## 1665    NA    NA     NA         NA       1        NA        NA
## 1666     2     2      1          2       2         2         3
## 1667     2    NA      2          1      NA         2        NA
## 1668    NA    NA     NA         NA      NA        NA        NA
## 1669    NA    NA     NA         NA      NA        NA        NA
## 1670    NA    NA     NA         NA      NA        NA        NA
## 1671     1     0     NA          0       1         0        NA
## 1672     3    NA     NA         NA      NA        NA         2
## 1673     1     1      3         NA       1         1         1
## 1674    NA    NA     NA         NA       1        NA        NA
## 1675    NA    NA     NA         NA      NA        NA        NA
## 1676     1    NA     NA         NA      NA        NA        NA
## 1677     8     3      3          3       6         8         6
## 1678     4    NA     NA         NA      NA        NA        NA
## 1679     3     3      2          3       7         5         3
## 1680    NA    NA     NA         NA      NA        NA        NA
## 1681    NA    NA     NA         NA      NA        NA        NA
## 1682     2     2      1          2       2         2         3
## 1683     2    NA      2          1      NA         2        NA
## 1684     1    NA     NA         NA      NA        NA        NA
## 1685    NA    NA     NA         NA      NA        NA        NA
## 1686     8     3      3          3      11         8         8
## 1687    NA    NA     NA         NA      NA        NA        NA
## 1688     4    NA     NA         NA      NA        NA        NA
## 1689     1     0     NA          0       1         0        NA
## 1690    14    NA      4          3       9         7         7
## 1691     1     1      3          2       1         1         1
## 1692    NA    NA     NA         NA      NA        NA        NA
## 1693     2     2      1          2       2         2         3
## 1694    NA    NA     NA         NA      NA         1        NA
## 1695    NA    NA     NA         NA      NA        NA        NA
## 1696    NA    NA      0         NA      NA        NA        NA
## 1697     3     3      3          6      NA        NA        NA
## 1698     5     1      4          4       2        NA        NA
## 1699    NA    NA     NA         NA      NA         1        NA
## 1700    27    19     17         17       4         8         2
## 1701    41    19     29          6       3        13         3
## 1702    NA    NA      0         NA      NA        NA        NA
## 1703     4    11     60         NA      NA        NA         7
## 1704    10     3     15          3      10        NA        NA
## 1705    NA    NA     NA         NA      NA        NA         1
## 1706    NA    NA      1         NA      NA         0        NA
## 1707    NA    NA     NA         NA      NA         1        NA
## 1708    NA    NA     NA          0      NA        NA        NA
## 1709     1     0     NA          0      NA        NA        NA
## 1710     1     2      2          2       1         1         3
## 1711     1     1      1         NA       1        NA        NA
## 1712    NA    NA     NA         NA      NA        NA         0
## 1713    NA     1     NA          1       1         1         1
## 1714     2    NA      2         NA      NA        NA        NA
## 1715    NA    NA     NA         NA      NA        NA        NA
## 1716    NA     1      1          1       1         1         1
## 1717     8     3      6          8       3         6         6
## 1718     3     3      1         NA      NA        NA        NA
## 1719    NA    NA      0          0      NA        NA        NA
## 1720    NA     1      1         NA      NA        NA        NA
## 1721    NA    NA      1         NA      NA        NA        NA
## 1722    NA    NA     NA         NA      NA        NA        NA
## 1723    NA    NA     NA         NA      NA        NA        NA
## 1724     6     2      2          6      NA         4         2
## 1725    NA    NA     NA         NA      NA        NA        NA
## 1726    40    42     40         38      46        42        40
## 1727     6    14      9         11      12        12        12
## 1728    39    45     51         42      54        54        51
## 1729    11     6      8          8       8        NA         6
## 1730    12    10     10         12      10         7         3
## 1731    40    57     38         44      55        38        42
## 1732     8     8      7          8       7         6        11
## 1733     6     3      3          6       6        NA         6
## 1734    NA     1     NA         NA      NA         2        NA
## 1735    11    15     13          8       8         4        11
## 1736    17    17     14          6      14        11        14
## 1737     4     6      6          8       6         6         8
## 1738     1     2     NA          2       1         2         1
## 1739    NA    NA     NA         NA      NA        NA        NA
## 1740     4     8     27         42      34        34        38
## 1741    45    NA     NA         NA      NA        NA        NA
## 1742    29    70     51         48      57        44        29
## 1743     3     3      3          3       3         3         3
## 1744    23    24     33         33      24        29        23
## 1745    29    29     29         27      35        26        32
## 1746    73    54     68         48      59        45        62
## 1747     8     8      6          6       8         6         3
## 1748    92    77     99         60      63        85        56
## 1749    28    49     32         32      42        46        46
## 1750    NA    NA     NA         NA      NA        NA        NA
## 1751    19    17     21         13      23        15        23
## 1752    76    74     74         70      93        53        70
## 1753    80    66     82         85      93        59        74
## 1754     2     1      1          2       1        NA         1
## 1755    NA    NA     NA         NA      NA        NA        NA
## 1756    23    20     20         18      19        18        21
## 1757    11    12     14          6       8         8        11
## 1758    10     6      6          4       8         6         8
## 1759     6     7      5          8       6         7         7
## 1760    NA    NA     NA         NA      NA        NA        NA
## 1761     2     2      1          2       1         1         2
## 1762    NA     1     NA         NA      NA        NA        NA
## 1763     3     1      4          1      NA        NA        NA
## 1764     1     4      4          6       2         4         3
## 1765     1     1      1          1       0         0         0
## 1766     5    NA      2         NA       1        NA         2
## 1767     2     3      4          1       3         2         3
## 1768    NA    NA     NA         NA      NA        NA         2
## 1769    NA    NA     NA         NA       0        NA        NA
## 1770    NA    NA      4          2       2         2         2
## 1771     1    NA      0          1       1        NA         0
## 1772     2     1      1          4       6         2         3
## 1773     3     2      4          4       4         3         2
## 1774     2     2      4          5       2         3         1
## 1775     5     4     NA          1       3         3        NA
## 1776     1     2      0          3       1         1         2
## 1777     8     6      8          9       9         8         6
## 1778    NA    NA     NA         NA       3         8         4
## 1779    NA    NA     NA         NA       1         1        NA
## 1780     4     4      2          4       4         2         2
## 1781     2    NA     NA         NA      NA        NA        NA
## 1782    NA    NA      3          3       6        NA         4
## 1783     1     0     NA          0      NA        NA        NA
## 1784     3     5      7          2       2         2         5
## 1785     3     2      3          1       1         1         3
## 1786    NA    NA     NA          1      NA        NA         1
## 1787     0     0      0          0      NA         0        NA
## 1788     2    NA     NA         NA      NA        NA        NA
## 1789    NA    NA     NA          3      NA        NA         1
## 1790     1     0     NA          0      NA        NA        NA
## 1791    NA    NA     NA         NA      NA         2        NA
## 1792     3     2      1          1       1         1         1
## 1793     0     0      0          0      NA         0        NA
## 1794     2     2     NA          4       2         2         2
## 1795    NA    NA     NA         NA      NA        NA         1
## 1796     1     0     NA          0      NA        NA        NA
## 1797     3    NA      2          2      NA        NA        NA
## 1798    NA    NA     NA         NA      NA        NA        NA
## 1799     3     2      1          1       1         1         1
## 1800    NA    NA     NA         NA      NA        NA        NA
## 1801    NA    NA     NA         NA      NA        NA        NA
## 1802     2    NA     NA         NA      NA        NA        NA
## 1803     6     3      6          3       6        14         6
## 1804     3     2      3          2       2         5         3
## 1805     4    NA     NA          6      NA         2         2
## 1806     5     3     NA          1       1        NA        NA
## 1807     0     0      0          0      NA         0        NA
## 1808     8     8      2          8       4         8         4
## 1809    NA    NA     NA         NA      NA        NA         0
## 1810     2    NA     NA         NA      NA        NA        NA
## 1811    NA    NA     NA         NA      NA        NA         2
## 1812     6     3      8          3       3         6         9
## 1813     1     0      1          0      NA        NA        NA
## 1814     7     5      7          5       2         5         3
## 1815    NA    NA     NA         NA      NA        NA        NA
## 1816     3     2      1          1       1         1         1
## 1817    NA    NA      5          3      NA         3         4
## 1818     0     0      0          0      NA         0        NA
## 1819    NA    NA     NA         NA      NA        NA        NA
## 1820     8     1      4          2       3         5         4
## 1821    NA    NA      0         NA      NA        NA        NA
## 1822    NA    NA     NA         NA      NA         1        NA
## 1823     8    11      8          4       4         6         6
## 1824     6    10      3          3       3        13         3
## 1825     7    11     14         NA       7         7        11
## 1826     3     3      5          3       5         3         5
## 1827     3     1      1          1       2         1         1
## 1828    NA    NA     NA         NA      NA         1        NA
## 1829    NA    NA     NA         NA      NA        NA        NA
## 1830     3     3      1          1       2         2         1
## 1831     1     1     NA          1       2        NA         1
## 1832    NA    NA     NA         NA      NA        NA         0
## 1833    NA     1      1         NA       1         1         1
## 1834    NA    NA     NA          2      NA        NA        NA
## 1835    NA     1      1          1       1         1         1
## 1836     3     6     NA          8       3         3         6
## 1837    NA    NA     NA         NA      NA        NA        NA
## 1838    NA     1     NA         NA      NA        NA        NA
## 1839    11    11     17         11      15        13        15
## 1840     6     6      5          6       6         6         3
## 1841     6     6      8          3       8        11         6
## 1842     6     6      8          3       6         8         8
## 1843    11     4     11         NA       4         4         4
## 1844    12    12     12         12      14        14        12
## 1845     8     4     11          8      11         6         8
## 1846     3     1      2          2       1         1         4
## 1847     6     5      5          3       2         2         2
## 1848    NA    NA      1         NA       1        NA         1
## 1849    NA    NA      2          2      NA         2         2
## 1850     3    NA     NA         NA       3        NA         6
## 1851     4     2     NA          2       2        NA         2
## 1852     1    NA     NA          1      NA         1         1
## 1853    15    13      6          8      13         6         8
## 1854     5    NA     NA         NA      NA        NA        NA
## 1855     6    22     29         25      25        25        22
## 1856     3     3      3          6       3         3         6
## 1857     2     5      2          2       3         3         3
## 1858     9     6      8          9       6         8         9
## 1859    17    20     23         31      23        17        42
## 1860     6     8     14         11      11        11        11
## 1861    14    11     14         21      18        18       162
## 1862    49    28     35         60      35        42        53
## 1863    23    25     23         30      27        21        32
## 1864    11    17     11         32      42         6        15
## 1865     4     4      4          3       6         4         4
## 1866     5     2      3          2       3         3         3
## 1867     2     2      2          2       2         2         2
## 1868     4     3      3          3       2         3         3
## 1869     3     1      1          1       1         1         1
## 1870     2     2     NA          1       1         1         1
## 1871     3     2      1          1       1         1         1
## 1872     1     1      1          2       4         2         2
## 1873    NA     0      0          0       0         0         0
## 1874     1     1      0          2       0         0         1
## 1875     3     3      2          3       1         2         3
## 1876     4     2      2          4       2         1         4
## 1877    NA     2     NA         NA       2        NA        NA
## 1878     1    NA      0          1      NA         0         0
## 1879     1    NA     NA         NA       1        NA         1
## 1880    NA     0      0          0       0         0         0
## 1881     6     4      2          4       4         3         6
## 1882    NA    NA     NA         NA       1        NA        NA
## 1883    NA    NA     NA         NA      NA        NA         1
## 1884     1    NA     NA         NA      NA        NA        NA
## 1885    NA     2      3          2       2        NA         3
## 1886    NA     6      3          3      NA         3        NA
## 1887    NA    NA     NA         NA      NA        NA        NA
## 1888     1     0     NA          1       0         1         1
## 1889     2    NA     NA         NA      NA         1        NA
## 1890     1     1      1          2       1        NA         4
## 1891     0     0      0          0       0         0         0
## 1892     1    NA     NA         NA      NA        NA        NA
## 1893    NA    NA     NA         NA      NA        NA        NA
## 1894     3    NA      3          3      NA        NA        NA
## 1895    NA    NA     NA         NA      NA        NA        NA
## 1896    NA    NA     NA         NA      NA         1        NA
## 1897    NA     1     NA          1       1        NA         1
## 1898     0     0      0          0       0         0         0
## 1899    NA    NA     NA          2      NA        NA        NA
## 1900    NA    NA     NA         NA      NA        NA        NA
## 1901    NA    NA     NA         NA       0        NA        NA
## 1902    NA    NA     NA         NA      NA         1         2
## 1903     1    NA     NA         NA      NA        NA        NA
## 1904     2     1      1          5       2         1         1
## 1905     1    NA     NA         NA      NA        NA        NA
## 1906     2    NA     NA         NA      NA        NA        NA
## 1907     3     3      6          6       3        NA        NA
## 1908     0     0     NA         NA       0         0         0
## 1909     2    NA      4         NA      NA        NA        NA
## 1910     1    NA      1          1       1        NA        NA
## 1911     0     0      0          0       0         0         0
## 1912    NA     2      2         NA       2        NA         2
## 1913     1    NA     NA         NA      NA        NA        NA
## 1914    NA     3      2          2      NA         3         2
## 1915    NA     3     NA          6       3        NA         3
## 1916    NA    NA      1         NA      NA        NA        NA
## 1917     3     1      2          3       1         3         2
## 1918    NA     2     NA          2       2         1        NA
## 1919     1     3      2          3       3         2         5
## 1920     0     0      0          0       0         0         0
## 1921     7     5      3          7       3         5         6
## 1922    NA    NA      0         NA      NA        NA        NA
## 1923     1     1     NA          1       1         1         2
## 1924    NA    NA     NA         NA      NA        NA         3
## 1925    NA    NA     NA         NA      NA         1         1
## 1926    11     8      2          6       4         8         4
## 1927    19    13      3          3       6        16        13
## 1928    NA    NA     NA          1      NA        NA        NA
## 1929    NA    NA     NA         NA      NA        NA        NA
## 1930     5     3      3          3      NA         3         3
## 1931    NA    NA     NA         NA      NA         0        NA
## 1932     0     0      0          0       0        NA         0
## 1933     2    NA      1          1       2         3         1
## 1934     4     2      2          3       3         4         3
## 1935     0     0      0          0       1         0         1
## 1936     1     1      1          1       1         1         1
## 1937    NA    NA     NA         NA      NA        NA        NA
## 1938     1     1      1          2       1         1         1
## 1939     3     6      3          6      NA         8         3
## 1940     1    NA     NA         NA      NA        NA        NA
## 1941    NA    NA     NA         NA      NA        NA         0
## 1942     1     1     NA         NA      NA         1         1
## 1943    NA    NA     NA         NA      NA        NA         2
## 1944    NA    NA      2          2      NA        NA         2
## 1945     2    NA      2         NA      NA        NA        NA
## 1946    NA     1     NA         NA      NA        NA        NA
## 1947    11    11     13          6       4         6         6
## 1948     5    NA     NA         NA      NA        NA        NA
## 1949    10    13      6          6      10        32        19
## 1950     6    10      6          3       6        10         6
## 1951     3     2      2          2       2         3         6
## 1952    NA    NA     NA         NA      NA        NA        NA
## 1953    74   106     60         11      11        70        60
## 1954    14    14      7          7       7        21         7
## 1955     4     8      4          2      NA         6         2
## 1956    21     8     11          6       4        21        13
## 1957    34    19     17         15       6        32        25
## 1958     2     1      2          1       1         2         1
## 1959    NA     2      2         NA       2         5         2
## 1960     4     2     NA          4      NA         8         2
## 1961     4     1      2          1      NA         3         2
## 1962    NA    NA     NA         NA      NA        NA        NA
## 1963     1     1      1          1       1         1         1
## 1964    NA    NA     NA         NA      NA        NA        NA
## 1965    NA     5     NA          4       3         2         1
## 1966     0     2      0          1       1         0         2
## 1967    NA     1     NA          1       1         1         1
## 1968     1     3     NA          0       3         1        NA
## 1969    NA    NA     NA         NA       0        NA         1
## 1970    NA     2      2         NA      NA         2         2
## 1971     1    NA      0          1       1         0         0
## 1972    NA    NA     NA         NA       1         1        NA
## 1973     1    NA      1         NA      NA         1        NA
## 1974    NA    NA     NA         NA      NA         1        NA
## 1975     0     1      0          1       1         0         1
## 1976    NA    NA     NA         NA      NA        NA         3
## 1977    NA    NA     NA         NA       1        NA        NA
## 1978    NA    NA      2         NA      NA         2         2
## 1979     1    NA     NA         NA      NA        NA        NA
## 1980     3     3      2         NA       3         1         1
## 1981     1     2      1         NA      NA         1         1
## 1982     0     0      0          0       0        NA         0
## 1983     2     2      0          0       0        NA        NA
## 1984    NA     1     NA          2      NA         1         1
## 1985     2    NA     NA          1       1        NA         1
## 1986     1    NA      0         NA      NA        NA        NA
## 1987     0     0      0          0       0         0         0
## 1988    NA    NA      2         NA      NA         2         1
## 1989     1    NA     NA         NA      NA        NA        NA
## 1990    NA     3      2         14      NA         1         1
## 1991     1     2      1          4      NA         1        11
## 1992     0     0      0          0       0        NA         0
## 1993     1     1      0         NA      NA        NA        NA
## 1994    NA     1     NA         NA      NA         1         1
## 1995     3     1     NA         NA      NA        NA         2
## 1996     1    NA      0         NA      NA        NA        NA
## 1997     0     0      0          0       0         0         0
## 1998    NA    NA      2         NA      NA         2         1
## 1999    NA     3      2         NA      NA         1         1
## 2000     1     2      1         NA      NA         1         4
## 2001     0     0      0          0       0        NA         0
## 2002     1     0      0         NA      NA         0        NA
## 2003    NA     1     NA         NA      NA         1         1
## 2004     1    NA     NA         NA      NA        NA         2
## 2005     1    NA      0         NA      NA        NA        NA
## 2006     1    NA     NA         NA      NA        NA         1
## 2007     1    NA     NA         NA      NA        NA        NA
## 2008    NA    NA      1         NA      NA        NA        NA
## 2009    NA    NA     NA         NA       2        NA        NA
## 2010     0     0      0          0       0         0         0
## 2011    NA    NA      2         NA      NA         2         1
## 2012     1    NA     NA         NA      NA        NA        NA
## 2013    NA     6      2         NA      NA         1         1
## 2014     1     2      1         NA      NA         1         4
## 2015     0     0      0          0       0        NA         0
## 2016     2     2      0         NA      NA        NA         0
## 2017     2     1      2         NA      NA         1         1
## 2018     3     1     NA          1       1         1         5
## 2019     1    NA      0         NA      NA        NA        NA
## 2020     0     0      0          0       0         0         0
## 2021    NA     1     NA         NA       1         1        NA
## 2022     2     2      1          2       1         1         3
## 2023     0    NA     NA         NA      NA        NA        NA
## 2024    NA    NA      0         NA      NA        NA        NA
## 2025    NA    NA     NA         NA       1        NA        NA
## 2026    NA    NA     NA         NA      NA         1        NA
## 2027    53    27     42         55      19         4        23
## 2028    57    29     57         29       3         6        13
## 2029     0    NA     NA          1      NA         0         1
## 2030    NA    NA     NA         NA      NA        NA        18
## 2031    20    13     15          8      15        13        13
## 2032    NA    NA     NA         NA      NA        NA         3
## 2033    NA    NA     NA         NA      NA         1        NA
## 2034    12     2      5          6       2         1        NA
## 2035     1     1      2          3       3         1        NA
## 2036     1     1      1         NA      NA        NA        NA
## 2037    NA    NA     NA         NA      NA        NA        NA
## 2038     2     4      3          3       3         4         4
## 2039     4     5      4          4       3         3         2
## 2040    NA    NA      0         NA       0         1        NA
## 2041    NA    NA      1          1       1         1        NA
## 2042    NA     2     NA         NA      NA        NA        NA
## 2043    NA     1      1          2       1         1        NA
## 2044     6    14      6         NA      NA        14        NA
## 2045    NA    NA      1         NA      NA         3        NA
## 2046     2     2      1          0       1         1         4
## 2047     3     8     NA          4      NA        NA        NA
## 2048    NA    NA     NA         NA      NA        NA        NA
## 2049    NA    NA     NA         NA      NA        NA        NA
## 2050     1     1      1          1      NA         2        NA
## 2051     4    NA      4          6       4         4         4
## 2052    11    21     13          6       6        13         4
## 2053     2     5      2          2       3         5         2
## 2054    17    17     17          6      14        14         3
## 2055     6    14     17         20      11        11        11
## 2056    32    23     27         25      23        27        27
## 2057     9     6      8          6       9         8         4
## 2058     3    NA      3         NA       2         2         2
## 2059     1    NA     NA         NA      NA        NA        NA
## 2060     4     4      4          8       6        11         2
## 2061     3     3      6          6       8         3         6
## 2062     4     2      6          4       4         2         6
## 2063     1    NA      1          1       1         2        NA
## 2064    NA    42     46         44      13        23        51
## 2065    18    NA     NA         NA      NA        NA        NA
## 2066    51     3     54         NA      51         6        32
## 2067    13    13     16         25      19        16         3
## 2068    27    21     23         21      17        17        12
## 2069     6     3     NA          3       3        NA         3
## 2070    62    34     65         45      59        54        73
## 2071    20    23     28         28      17         6        NA
## 2072   120   130    120         85     109        42       130
## 2073    88    56     99        109      67         4        46
## 2074    NA    NA     NA          4      NA        NA        NA
## 2075    32    87     68        106      61       110        23
## 2076    61    61    108         70     112       120        19
## 2077    21    10     23         32      16        26        25
## 2078    15     3     17          0       8         9        12
## 2079    18    NA     12         NA      NA         8        12
## 2080    17    NA     14         NA       5         6        10
## 2081     3     2      1         NA       1         3        NA
## 2082     2     2      3          2       1         1        NA
## 2083     6     3      2          3       5         4         1
## 2084    11    11      6          7       8         9         5
## 2085    NA     3      1          3      NA         1        NA
## 2086     2    NA     NA         NA      NA        NA        NA
## 2087    NA     0      3          2       0         2         0
## 2088     2     1      3         NA      NA        NA        NA
## 2089    32     2     NA         NA      NA        23         2
## 2090     3    NA     NA         NA       0        NA        NA
## 2091     2     2      2          2      NA         4         4
## 2092     3    NA      2         NA       1         2         0
## 2093    NA    NA     NA          4      NA         1         1
## 2094    NA    NA     NA          2       3         1         1
## 2095    NA     1     NA          6       1         2        NA
## 2096    NA    NA     NA          5      12         1        NA
## 2097    NA     1      0          2       1         2         3
## 2098     3     1      2          2       3         1         2
## 2099    NA    NA     NA         NA       6         3        10
## 2100    NA    NA     NA         NA       5         8         5
## 2101    NA    NA     NA         NA       3         1         2
## 2102     3     3      2         NA       5         2         2
## 2103     1     1      1         NA      NA        NA        NA
## 2104    NA     3      3         NA      NA        NA         6
## 2105    11    NA     18         NA      NA        NA        NA
## 2106    NA    NA     NA         NA      NA        NA        NA
## 2107     1    NA      2          3      NA         1         4
## 2108    NA     2     NA          8       2        NA        NA
## 2109     6     5      3          3       1         3         4
## 2110    NA    NA     NA         NA      NA        NA        NA
## 2111     0    NA     NA         NA      NA        NA        NA
## 2112     2     3      2         NA       5         2         2
## 2113     1     1      1         NA      NA        NA        NA
## 2114     6    NA     NA         NA       3        NA        NA
## 2115    NA     7     NA         NA       7         7         7
## 2116    NA    NA     NA         NA      NA        NA        NA
## 2117     1     0     NA          1      NA         2         3
## 2118     6     2     NA          4       2        NA         4
## 2119     3     3      3          2       3         3         2
## 2120    NA    NA     NA         NA      NA        NA        NA
## 2121     0    NA     NA         NA      NA        NA        NA
## 2122     2     3      2         NA       5         2         2
## 2123    NA     3     NA         NA      NA        NA        NA
## 2124    NA    NA     NA         NA      NA        NA        NA
## 2125    NA    NA     NA         NA      NA        NA        NA
## 2126     1     0      0          0       2         0         3
## 2127    NA    NA     NA         NA      NA        NA        NA
## 2128     2     2      2          3       1         3         3
## 2129    NA    NA     NA         NA      NA        NA        NA
## 2130     5     5      4          3       6         1         3
## 2131     1     1      1         NA      NA        NA        NA
## 2132    NA    NA     NA          3      NA         3        11
## 2133     4    11      7         NA       7         4         7
## 2134    NA    NA     NA          1       5        NA         4
## 2135     2     2     NA          6       2         6        NA
## 2136     3     5      4          3       5         5         5
## 2137     0    NA     NA         NA      NA        NA        NA
## 2138     2     3      2         NA       5         2         2
## 2139     1     1      1         NA      NA        NA        NA
## 2140    NA     2     NA         NA      NA        NA        NA
## 2141     3     3      3          3      NA        NA        NA
## 2142    14    NA     18         NA      11        NA         7
## 2143    NA    NA     NA         NA      NA        NA        NA
## 2144     4     3      3          2       7         1         7
## 2145     2     2      2         13       4        NA        NA
## 2146     8     1      3          8       7         8         3
## 2147    NA    NA     NA         NA      NA        NA        NA
## 2148     0    NA     NA         NA      NA        NA        NA
## 2149    NA    NA     NA         NA      NA        NA        NA
## 2150    NA     1      1         NA      NA         1        NA
## 2151    43    13     30         22      33        26        25
## 2152     2    NA      0         NA       0        NA        NA
## 2153     7     5      3          2       1         2         2
## 2154    NA    NA     NA         11      NA        NA        14
## 2155    NA    NA      3         NA      NA        NA        NA
## 2156    NA    NA     NA         NA      NA         1        NA
## 2157     2     2      2          2       2         2         2
## 2158     3     3      3         13       3         3         3
## 2159     0    NA     NA         NA      NA        NA        NA
## 2160     3    NA     NA         NA      NA        NA        NA
## 2161     0    NA     NA         NA      NA        NA        NA
## 2162    NA    NA      0         NA      NA        NA        NA
## 2163     1     2      7         NA      NA         0         4
## 2164     1     1      1          1       1         1         1
## 2165     1     1      1          1       1         1         1
## 2166    NA     6     NA         NA      NA        NA        17
## 2167    NA    NA     NA         NA      NA        NA         0
## 2168     4     2     NA         NA       2        NA         2
## 2169    NA    NA     NA         NA      NA        NA        NA
## 2170    NA    NA     NA          3      NA        NA        NA
## 2171    32    11     36        108     101       171       108
## 2172     2     2     NA          4      57         2         6
## 2173    26    NA     NA         NA      NA        NA         3
## 2174    60    57    387        260     539        44        51
## 2175    63   127     79        171     143       143       260
## 2176    29    15     17         24      44         8        15
## 2177    NA     3      8          8      NA        NA        NA
## 2178     3    NA     NA         NA      NA         3         3
## 2179    NA    NA     NA          6      NA        NA         3
## 2180    99    95     60        194     102       159       335
## 2181   278   271    310        514     391       232       662
## 2182     7    NA     NA         NA      NA        NA        NA
## 2183    NA    NA     NA          2      NA        NA         4
## 2184   101    57     42        133     249       197       146
## 2185   486   714    530        562     719       746        NA
## 2186    43    10      3          9       5         8         7
## 2187     2    NA      2         NA      NA         3         3
## 2188    NA    NA      2          2       4         8         2
## 2189     4    NA      4          2       2         3         2
## 2190     1     1      1          1       1         1         1
## 2191    NA    NA     NA         NA      NA        NA        NA
## 2192    NA    NA     NA         NA       1        NA        NA
## 2193     0     0      0          0       0         0         1
## 2194    NA    NA     NA         NA      NA         0        NA
## 2195     3    10     NA         NA      NA        NA        NA
## 2196     0    NA     NA         NA      NA        NA        NA
## 2197    NA    NA      2         NA      NA        NA        NA
## 2198     0     0      0          0       0         0         0
## 2199    NA    NA     NA         NA       1         1        NA
## 2200    NA    NA     NA         NA       1        NA        NA
## 2201    NA    NA      1         NA      NA        NA         1
## 2202    NA     3     NA         NA      NA        NA         3
## 2203    NA     0      1          1      NA        NA        NA
## 2204     6     9     10         NA       4         3         1
## 2205    NA    NA      0         NA      NA        NA        NA
## 2206     3     1      0          1       3         0         0
## 2207     3    22      3          9       5         4        12
## 2208    NA    NA     NA          3      NA        NA        NA
## 2209     1    NA     NA          0      NA        NA         0
## 2210    NA    NA      4         NA      NA        NA         1
## 2211    NA     0      1          1      NA        NA        NA
## 2212     8     1      1         14       1        NA         9
## 2213    NA    NA      0         NA      NA        NA        NA
## 2214     1     1     NA          2       1        NA        NA
## 2215   126   119    100         55      60        88       126
## 2216     1    NA     NA          0      NA        NA         0
## 2217    NA    NA      1         NA      NA        NA         1
## 2218    NA     0      1          1      NA        NA        NA
## 2219    NA     4      1          6       1        NA         1
## 2220    NA    NA      0         NA      NA        NA        NA
## 2221     2     1     NA          2       1        NA        NA
## 2222   128   132    100         60      83       107       126
## 2223     3     6      3         11      NA        NA         3
## 2224    NA    19      2         NA       8        NA        11
## 2225     1    NA     NA          0      NA        NA         0
## 2226    NA    NA      1         NA      NA         3         1
## 2227    NA    NA     NA         NA      NA        NA         3
## 2228    NA     0      1          1      NA        NA        NA
## 2229     3    20     13          6       9        NA        23
## 2230    NA    NA      0         NA      NA        NA         1
## 2231     3     1      0          0       0         1        NA
## 2232     7    24      9          3      11         2        10
## 2233     1    NA     NA          0      NA        NA         0
## 2234    NA     1     NA         NA      NA        NA        NA
## 2235    NA    NA     NA         NA      NA        NA        NA
## 2236     1    NA      1         NA      NA        NA        NA
## 2237    NA    NA     NA         NA       1         1        NA
## 2238    NA    NA     NA         NA      NA         1        NA
## 2239     4     2      2          2       2         2         6
## 2240    10     6     10          3       3         3        10
## 2241    NA    NA     28         NA      NA        NA         4
## 2242    NA    NA     NA         NA      NA         0        NA
## 2243    NA    NA     NA         NA      NA        NA        NA
## 2244     1    NA     NA         NA      NA        NA        NA
## 2245     3     3      1          2       1         3        NA
## 2246     1    NA     NA          0       0        NA         1
## 2247     1     1      1          1       1         1         1
## 2248     2     2      1          1       1         1         1
## 2249    NA     3     NA         NA       6        NA        14
## 2250     4     2      6         NA       4         4        NA
## 2251     4     8      6          6       6         6         2
## 2252     1     2     NA          2      NA        NA         1
## 2253     6    13      8          2       6         8         4
## 2254    NA    NA     NA         NA      NA        NA        NA
## 2255     3     3      6          3       3         6         3
## 2256    NA     3     13          6       6        13        19
## 2257     5     8      8          2       2         5         6
## 2258    21    77      4         NA       7        25        42
## 2259    42   106     60         39      63        35        63
## 2260    NA    NA     NA         NA      NA        NA        NA
## 2261    NA    NA     NA         NA      NA        NA         2
## 2262    11    13     13         11      30        42        27
## 2263   106   118    125        142     110        36       101
## 2264     3     5      3          5       1         2         5
## 2265     2     2      2         NA       2         2         2
## 2266     1    NA      2         NA       1         1        NA
## 2267     1     1      1          1       1         1         1
## 2268    NA    NA     NA         NA      NA        NA        NA
## 2269    NA    NA     NA         NA       1        NA        NA
## 2270    NA    NA     NA         NA      NA        NA        NA
## 2271     2     0      0          0       0         0         0
## 2272    NA    NA     NA         NA      NA        NA        NA
## 2273     3     5      3          5       6         4         7
## 2274    NA     0     NA         NA      NA        NA        NA
## 2275    NA    NA     NA         NA      NA        NA         1
## 2276     0     0      0          0       0         0         0
## 2277    NA    NA     NA         NA       5        NA        NA
## 2278    NA     3     NA         NA       3        NA        NA
## 2279     0    NA     NA          0       2         0        NA
## 2280     2     2     NA         NA      NA         1        NA
## 2281    NA    NA     NA         NA      NA        NA        NA
## 2282    NA    NA     NA         NA      NA        NA        NA
## 2283    NA    NA     NA         NA      NA        NA        NA
## 2284    NA     0     NA         NA      NA        NA        NA
## 2285    NA    NA     NA         NA      NA         1        NA
## 2286    NA    NA     NA         NA      NA        NA        NA
## 2287     8     8      6          3       6         6         6
## 2288    NA    NA     NA         NA      NA        NA        NA
## 2289     8     4      2         NA      NA         1        NA
## 2290    NA    NA     NA         NA      NA        NA        NA
## 2291     3    NA     NA         NA      NA        NA        NA
## 2292    NA    NA     NA         NA      NA         3         3
## 2293    NA    NA     NA         NA      NA        NA        NA
## 2294    NA    NA     NA         NA      NA        NA        NA
## 2295    NA    NA     NA         NA      NA        NA        NA
## 2296     3    NA     NA         NA      NA        NA        NA
## 2297    NA     3      6          6      NA        NA         8
## 2298    NA     0      0         NA       0        NA         0
## 2299     8     4     NA          2       2         1         2
## 2300    NA    NA     NA         NA      NA        NA        NA
## 2301    NA    NA     NA         NA      NA        NA        NA
## 2302    NA    NA     NA         NA      NA        NA         1
## 2303     1    NA     NA         NA      NA         1        NA
## 2304     1    NA     NA         NA      NA        NA        NA
## 2305    NA    NA     NA         NA      NA         1        NA
## 2306    23    NA      2          2       4         2         2
## 2307     3    NA     10          3       6         3         3
## 2308    NA    NA     NA         NA      NA        13        NA
## 2309    NA    NA     NA         NA      NA        NA         1
## 2310    NA    NA      1         NA      NA        NA        NA
## 2311    NA    NA     NA         NA      NA        NA        NA
## 2312    NA    NA     NA         NA       0        NA        NA
## 2313    NA    NA      0         NA      NA        NA        NA
## 2314     3    NA     NA          1      NA        NA         1
## 2315     1    NA     NA         NA       0        NA         0
## 2316    NA    NA      1          1       1         1         1
## 2317     2    NA     NA         NA      NA        NA        NA
## 2318     1    NA      1          1       1         1         1
## 2319    11    NA     NA         NA      NA        11        14
## 2320     3    NA     NA         NA      NA        NA        NA
## 2321     2     4     NA          4       2        NA        NA
## 2322    36    NA     25         NA      13        17        13
## 2323     3     2      2          3       3         2         2
## 2324    76    65     42         34      70        48        34
## 2325    23     2      6         17      19        13        17
## 2326     2     1      1          3       2         2         4
## 2327     5     2      2          2       3         2         2
## 2328     6     6      6          6       4         6         4
## 2329     6     2      4          6       6         2         6
## 2330    NA    NA     NA         NA      NA        NA        NA
## 2331     2     2      1          1       1         1         2
## 2332    NA    NA     NA          2       2        NA        NA
## 2333    NA    NA     NA         NA      NA        NA        NA
## 2334    38   114    155         76     120        86        63
## 2335     3     3      3          3       3         3        16
## 2336    NA    NA     NA         NA      NA        NA        NA
## 2337    18     8     17         17      18        20        12
## 2338     6    34     42         34      34        39        34
## 2339   137   127    148         53     208       166       116
## 2340   123    NA    166         85     144       215       109
## 2341    36    13     55         34      59        30        30
## 2342    70     2     66         93      36        82        68
## 2343    16     6     13          9      11         6        12
## 2344    26    NA     12          9      14         5        18
## 2345    NA    NA     NA         NA      NA        NA        NA
## 2346     2    NA      1          1       1         1         1
## 2347    NA    NA     NA         NA      NA        NA         1
## 2348    NA    NA     NA         NA      NA        NA        NA
## 2349     0     0      0          0       0         0         0
## 2350    NA    NA     NA         NA      NA         1        NA
## 2351    NA     0      2         NA       4         5         5
## 2352    NA    NA     NA         NA       0        NA        NA
## 2353     6     2      4          8       2         4         6
## 2354     1     1     NA          1       3         1         1
## 2355     0    NA      0          0       0         0         0
## 2356     3    NA      1          1       1        NA         1
## 2357    NA    NA     NA         NA      NA         1        NA
## 2358    NA    NA     NA         NA       1        NA        NA
## 2359     2    NA     NA         NA      NA        NA        NA
## 2360     8    NA     11          6       8         6        11
## 2361    NA    NA      2         NA      NA        NA        NA
## 2362    NA    NA      0         NA      NA         0        NA
## 2363    NA    NA     NA         NA      NA         1         2
## 2364    NA    NA      1          1      NA         1        NA
## 2365     2    NA     NA         NA      NA        NA        NA
## 2366     6    NA      3          3       3        NA        11
## 2367    NA    NA      0         NA      NA        NA        NA
## 2368    NA    NA     NA         NA       0        NA        NA
## 2369    NA    NA     NA         NA      NA         1        NA
## 2370     3    NA      6          3      NA        NA        NA
## 2371    NA    NA      0         NA      NA        NA        NA
## 2372     2    NA     NA         NA      NA        NA        NA
## 2373    NA    NA     NA         NA      NA         1        NA
## 2374     2    NA     NA         NA      NA        NA        NA
## 2375     6     8      8          3       6         6        NA
## 2376    23     4      6          6      13         8        NA
## 2377    NA    NA     NA         NA      NA         2        NA
## 2378     2    NA     NA         NA      NA        NA        NA
## 2379    NA    NA     NA         NA      NA        NA        NA
## 2380    17    14      8         14       8         8        28
## 2381    NA    NA      2         NA      NA        NA        NA
## 2382     2    NA     NA          0      NA        NA         0
## 2383    NA    NA     NA         NA      NA         1        NA
## 2384     3    NA     NA          1      NA         3         1
## 2385    NA    NA     NA         NA       1         1        NA
## 2386     9    NA     NA         NA      NA         4         9
## 2387     0    NA     NA         NA      NA        NA        NA
## 2388    NA    NA     NA         39      NA        NA        NA
## 2389    NA    NA     NA         NA       1         1        NA
## 2390    NA    NA     NA         NA      NA         1        NA
## 2391    11     2      2          2       4         6         2
## 2392    25     6     38         29      25        19         3
## 2393     3    NA      3          3       5         3        NA
## 2394    NA    NA     NA         NA      NA        NA         1
## 2395    NA    NA     NA         NA      NA         0        NA
## 2396    NA    NA      1         NA      NA        NA        NA
## 2397    NA    NA     NA          2      NA        NA        NA
## 2398    NA     1     NA         NA      NA        NA        NA
## 2399     3    NA      2         NA       3         1         1
## 2400    12     6     16         NA       4         6         7
## 2401     1     0     NA         NA      NA        NA         0
## 2402     3     1      2          1       1         1         2
## 2403    NA    NA     NA         NA      NA        NA        NA
## 2404     1     1      1          1       1         1         1
## 2405    23    11     28         NA      14        11        NA
## 2406    NA    NA     NA         NA      NA        NA        NA
## 2407    NA     0     NA          0       0        NA        NA
## 2408    NA    NA      1          1      NA        NA        NA
## 2409     1    NA      1         NA      NA        NA        NA
## 2410    NA    NA     NA         NA      NA        NA        NA
## 2411    NA    NA      2          2      NA         2         4
## 2412    NA    NA     NA         NA      NA        NA        NA
## 2413    11    25     34         21      19        21        36
## 2414    NA    NA      6         NA      NA         3        NA
## 2415    14     4     25         49      NA        32        14
## 2416    17    13     17         30      11        17        NA
## 2417     1     1     NA          2       2         1         6
## 2418    NA     2     NA         NA      NA        NA        NA
## 2419    11     6      6          6       2         8        11
## 2420     6     8      3         11      NA         6        14
## 2421    13     8     13         17      17        15        17
## 2422    NA    NA     NA         NA      NA        NA         2
## 2423    NA    NA      4          2      NA         2         4
## 2424    45   106    106        148      79        50        NA
## 2425    NA    NA     NA         13      NA        13       108
## 2426    29    57     79        105      89        16        98
## 2427     2     3      3          3       2         9        17
## 2428    NA    NA     NA         NA      NA        NA        NA
## 2429    88   215    187        282      70       254       141
## 2430    99   352     53        285     106       243       159
## 2431    NA    NA     NA         NA      NA        NA        NA
## 2432    13    42     46         42      38        34        59
## 2433    27    40     63         93      70        95        51
## 2434     8    16     16         16      25         7        19
## 2435     9     9     12          9       8         8        21
## 2436     6    12     10         10      10        12        28
## 2437     5     3      4          2       4         1        13
## 2438    NA     1     NA         NA      NA        NA        NA
## 2439     3     1      2          1       1         1         1
## 2440    NA    NA      1         NA      NA        NA        NA
## 2441     3     3      4          3       3         3        NA
## 2442     0     0      0          0       1         0         0
## 2443    NA    NA      1         NA      NA        NA         1
## 2444     2     4     13         NA       8         7         7
## 2445     1    NA     NA         NA       1        NA        NA
## 2446     2    NA      4         NA       2        NA        NA
## 2447     0    NA      1          0      NA         0        NA
## 2448     4     6      1          1       7        NA         5
## 2449     1     2      5          2       7         2         4
## 2450     5     7      7         NA       5         4         6
## 2451     4     3      3         NA       5         2        NA
## 2452     2     2      5          3       5         2         4
## 2453     1     1      1          2      NA         1         1
## 2454    NA    NA     NA         NA       1        NA         3
## 2455    NA    NA     NA         NA      NA         1        NA
## 2456    NA    NA      2         NA      NA        NA        NA
## 2457    NA    NA     NA          1      NA         1         2
## 2458     1    NA     NA         NA      NA        NA        NA
## 2459     4     5      1         14      NA         3        NA
## 2460     9    13      3          3      NA         2        10
## 2461    NA     1      1         NA      NA        NA        NA
## 2462     1     2      4          2       2         4         7
## 2463     4     1      3          4       1         2         2
## 2464    NA    NA     NA         NA      NA        NA        NA
## 2465    NA    NA      2         NA      NA        NA        NA
## 2466    NA    NA     NA          1      NA         1         2
## 2467     1    NA     NA         NA      NA        NA        NA
## 2468     4     5      1         14      NA        NA         6
## 2469     5     6      3          3      NA         2         3
## 2470    NA     0      0         NA      NA        NA        NA
## 2471     1     2      2          2       2         4         5
## 2472     4     2      1          3       2         1         1
## 2473    NA    NA     NA         NA      NA        NA        NA
## 2474    NA    NA     NA          1      NA         1         2
## 2475     1     2      1         NA      NA        NA        NA
## 2476     9     6      3         10      NA         5         3
## 2477    NA     0     NA          0       0         0         0
## 2478     3     2      2          2       2         4         5
## 2479     3     1      1          3       2         1         1
## 2480    NA    NA     NA         NA      NA        NA        NA
## 2481     1    NA     NA         NA      NA        NA        NA
## 2482     6     6     NA         23      NA        NA         3
## 2483    NA    NA      7         NA      NA         4         4
## 2484    NA    NA     NA         NA      NA        NA         2
## 2485     3     1     NA         NA      NA         1        NA
## 2486    NA    NA     NA         NA      NA        NA        NA
## 2487    NA    NA      4         NA      NA        NA        NA
## 2488    NA    NA     NA          1      NA         1         2
## 2489     1    NA     NA         NA      NA        NA        NA
## 2490     1     5      1         20       3        NA        NA
## 2491     9    10      6          3      NA         2         3
## 2492     0     0      0         NA      NA        NA        NA
## 2493    NA    NA     NA         NA      NA        NA        NA
## 2494     3     2      2          2       2         4         3
## 2495     4     3      3          3       2         3         1
## 2496    NA    NA     NA         NA      NA        NA        NA
## 2497    NA     2      3         NA       1         1        NA
## 2498    12     9     15          8      16         6         4
## 2499     0    NA     NA         NA      NA        NA        NA
## 2500    NA    NA     NA          6      NA        NA         8
## 2501     5     8      3          3       3        NA         4
## 2502    NA    NA     NA         NA      NA        NA         3
## 2503    NA    NA     NA         NA      NA         1         4
## 2504    27    19     23         36      25        15         6
## 2505    44    32     35         44      32        13        25
## 2506    NA    NA     NA          1      NA        NA        NA
## 2507     2    NA      2         NA       3         8        NA
## 2508    NA    14     14         11      28        11         7
## 2509    20    13     18         10      28        15        NA
## 2510    NA    NA     NA         NA      NA        NA         2
## 2511    NA    NA     NA         NA      NA        NA         1
## 2512    NA     1     NA         NA      NA        NA        NA
## 2513     2    NA     NA         NA       2         2        NA
## 2514    NA    NA     NA          2      NA        NA        NA
## 2515     1     2      3          1       3         1         1
## 2516    NA    NA     NA          3       2         3        NA
## 2517     3     3     NA          5       3         8         3
## 2518     3     5      5          9       4         7         3
## 2519     2     5      0          2       1         7         3
## 2520     1     4      2          1       1         1         1
## 2521    NA    NA     NA         NA      NA        NA        NA
## 2522     1     1      1          1       1         1         1
## 2523     8     3     14          6      11         8        20
## 2524    10     6      6         NA       4         3         3
## 2525    NA    NA      0          0      NA        NA         0
## 2526    NA    NA      1          2      NA        NA         1
## 2527     1    NA      2          1      NA         1         2
## 2528     2     2     NA          2       2        NA        NA
## 2529     2     1      1          2       1        NA         2
## 2530     2     6      4         NA       2         2         6
## 2531    14     8     11         NA      11        11        14
## 2532    21    11     13         17      19        13        19
## 2533    NA    10     NA         NA      NA        NA        NA
## 2534     2     1      1          2       1         2         1
## 2535    NA    NA      2         NA       2        NA        NA
## 2536     2    NA     NA         NA      NA        NA        NA
## 2537    NA    NA     NA         NA      NA         2        NA
## 2538    NA    NA      3         NA       6        NA        NA
## 2539    NA    NA      2         NA      NA        NA        NA
## 2540     4     2      2          4       2         4        NA
## 2541    95   104     93        123      66        59        44
## 2542    29     3      5         NA      NA        NA        NA
## 2543    10    32     32         44      57        44        35
## 2544    41    29     48         25      51        19        16
## 2545    60    66     32         36      29        35        27
## 2546    NA    NA     NA         NA      NA        NA        NA
## 2547    25    17     31         14       6        14        25
## 2548    20     6     14         25      17        17         6
## 2549   229   232    236        282     275       148       257
## 2550    70    67     74        102      85        28        21
## 2551    66    36     42         40      59        34        51
## 2552   112   135    133        148     116        93       159
## 2553   239   184    161        161     150        87        78
## 2554    NA    NA     NA         NA      NA        NA        NA
## 2555     3     9      3          6       3         6        NA
## 2556    14    13      8          7       3         8        19
## 2557    21    15     21         14      17        14        12
## 2558    18     8     12         10       8        10         6
## 2559     6     6      3          4       4         1         4
## 2560    NA    NA     NA         NA      NA        NA        NA
## 2561     1     2      3          2       1         1         2
## 2562    NA    NA     NA         NA      NA         2        NA
## 2563     7     8      6          7       6         5         6
## 2564     0     0      0          0       1         0         2
## 2565     1    NA      1         NA      NA        NA         1
## 2566    NA    NA      0         NA      NA        NA        NA
## 2567     9     2      7         10       7         7         8
## 2568     2     2     NA         NA       2         4         2
## 2569    NA    NA     NA         NA      NA        NA        NA
## 2570    NA     4      2          2       1        NA        NA
## 2571    NA    NA     NA          1       0        NA        NA
## 2572     4     4     13          4       4        NA        NA
## 2573     3     2      1          2       1         1         1
## 2574    NA    NA      1         NA      NA        NA        NA
## 2575     0     0      1          1       1         0         1
## 2576    NA    NA      3         NA      NA        NA        NA
## 2577    10     5      8         10       5         8         5
## 2578    NA    NA     NA         NA       6        NA         3
## 2579    NA    NA     NA         NA       6        11        NA
## 2580    NA    NA     NA         NA       1        NA         1
## 2581    NA    NA     NA          2      NA        NA        NA
## 2582     2     2      2          4       1         2         4
## 2583     1     2     NA         NA      NA        NA        NA
## 2584     3     3     NA          6       1        NA        11
## 2585     7     7      5          7       7         7         7
## 2586     2     2      2          1       3         1         1
## 2587     6     7      1          6       3         2         4
## 2588    11    10      7          3       7        NA         2
## 2589    16     8     13          5      13        13         6
## 2590    NA     0     NA          0      NA        NA         1
## 2591    NA     0      0          0      NA         1         0
## 2592    NA    NA     NA          2      NA        NA        NA
## 2593     5     2      4          4       1         2         6
## 2594     1     2     NA         NA      NA        NA        NA
## 2595     3     8     NA         11       1        NA         6
## 2596     7    18      9          7       7        14        21
## 2597     1     1      1          1       2         1         1
## 2598     6     5      1          4       5         2         5
## 2599    13     3     10          3       7        NA         2
## 2600     8    10      8         10      13        15        16
## 2601    NA     0     NA          0      NA        NA         1
## 2602    NA     0      0          0      NA         1         0
## 2603    NA    NA     NA          2      NA        NA        NA
## 2604     2     2      2          4       1         5         4
## 2605    NA    NA     NA          3       1         3         6
## 2606    NA    11      5         NA       7         7        NA
## 2607     1     2      2          1       3         1         1
## 2608     5     3      0          3       4         2         5
## 2609     5     3      7          5       5        NA         2
## 2610     6     5      5          5       6         1         8
## 2611    NA     0     NA          0      NA        NA         1
## 2612     5     5      8          5      10         5         5
## 2613     1     2     NA         NA      NA        NA        NA
## 2614    NA     8     NA          3      NA         6        NA
## 2615     4     4     NA         NA      NA         4        NA
## 2616    NA    NA     NA         NA      NA        NA        NA
## 2617    NA     4      2         NA      NA        NA        NA
## 2618     5    NA     NA         NA       3         3        NA
## 2619    NA     0      0          0      NA         1         0
## 2620     2    NA      2          2      NA        NA         2
## 2621     2     2      2          4       1         5         6
## 2622     1     2     NA         NA      NA        NA        NA
## 2623     3    11      3          6       6         3        11
## 2624    11    11      5          7       7        14        14
## 2625     3     3      2          1       4         1         1
## 2626     8     5      1          4       4         3         6
## 2627    15     7      7          3       9         2         2
## 2628    15    15     15         10      17        10        19
## 2629    NA     0     NA          0      NA        NA         1
## 2630    NA     0      0          0      NA         1         0
## 2631    NA     2      1         NA      NA        NA         1
## 2632     6     6      7         NA       6         1         6
## 2633    NA    NA     NA         NA      NA         2        NA
## 2634    NA    NA     NA         NA       1        NA         1
## 2635    NA    NA     NA         NA      NA         2         5
## 2636    NA    NA     NA         NA      NA         1         4
## 2637     8    11     11          8       4         4         2
## 2638    13    19     19         10      16        10         6
## 2639    NA    NA     NA          1      NA        NA        NA
## 2640     5     5      3          8       3         3         5
## 2641    NA    NA     NA         NA      NA        NA         1
## 2642    NA    NA     NA         NA      NA        NA         1
## 2643    NA    NA     NA         NA      NA        NA        NA
## 2644     1     0      0         NA       1         1        NA
## 2645     2     3      4          4       3         3         2
## 2646     2     5      4          6       4         4         4
## 2647    NA    NA     NA          1      NA        NA        NA
## 2648    NA     2      4          2       2         2         4
## 2649     6     6      2          6       2        NA         2
## 2650    NA     1      1          2       1         1         1
## 2651    17    17     20         25      17        23        25
## 2652     3     4      4          4       1         4         4
## 2653     1     1      1          1      NA         1         1
## 2654    NA    NA     NA         NA      NA        NA        NA
## 2655     1    NA     NA         NA      NA        NA        NA
## 2656     2    NA      2         NA       4         2        NA
## 2657     1    NA     NA         NA      NA        NA        NA
## 2658    NA    NA     NA         NA      NA        NA        NA
## 2659    21    30     25         34      23        27        34
## 2660    28    37     45         34      48        42        54
## 2661    11     3      3         NA       6        NA         6
## 2662    21    21     17         21      21        19        30
## 2663     5     7      7          5       4         6         5
## 2664     3     3      3          3       3         2         3
## 2665     6    11      8          8       8         4         2
## 2666     6     8     11          8       6         8         8
## 2667     4     4      4          2       4         4         2
## 2668     1    NA      1          1       1         2         1
## 2669    59   101     78         72      85        59        87
## 2670    18    NA     NA         NA      NA        NA        NA
## 2671    25    41     51         48      41        57        60
## 2672    29    38     38         38      51        38        54
## 2673    15    15     15          8      14        17        18
## 2674    23    54     48         45      56        65        73
## 2675    17    31     34         37      31        20        37
## 2676    NA     7      7         NA      74       162        60
## 2677   141   240    169        240     197       176       144
## 2678    11    13     11         17      17        13        17
## 2679    NA    NA      4         NA      19        40        61
## 2680    70    91     97         91      91        70        34
## 2681     9    12     12          9      15         9         6
## 2682    14    14     14         14       9        12        13
## 2683    11     8      7         12       9         6         6
## 2684    10     8     12         12       8         6         8
## 2685     6     8      5          7       6         7         4
## 2686    NA    NA      1         NA      NA        NA        NA
## 2687     3     2      2          3       1         1         2
## 2688     1     2     NA         NA      NA        NA        NA
## 2689     7     4      5          6       4         6         5
## 2690    NA     0      0          0       0         0         0
## 2691    NA    NA     NA         NA      NA        NA         1
## 2692     6     3      8          9       7         7         8
## 2693    NA    NA     NA         NA       0        NA        NA
## 2694    NA     2      2          4       4         2        NA
## 2695     1     1      1          1       1         1         1
## 2696    NA    NA     NA         NA      NA        NA         1
## 2697    NA     0      0          0       0         0         0
## 2698     3     5      4          4       3         4         4
## 2699    NA    NA     NA         NA      10        13        NA
## 2700    NA    NA     NA         NA       3         3         1
## 2701    NA    NA     NA         NA       1         1        NA
## 2702    NA     2      2          6       4         6         2
## 2703    NA     1     NA         NA      NA         2         1
## 2704     1     5      9          5      18         4        12
## 2705     8     4     NA         NA      NA         4        NA
## 2706     1     0      0         NA       1         1        NA
## 2707    NA    NA     NA         NA      NA        NA        NA
## 2708     2     2      1          1       1         3         1
## 2709     3     6      6          4       6         4         6
## 2710     0     1      0          1       1         0         1
## 2711     1     1     NA         NA       0        NA         1
## 2712    NA     1     NA         NA      NA         2         1
## 2713     1     5      4          5       4         4         6
## 2714     1    NA     NA         NA      NA        NA        NA
## 2715     0     0      0         NA       0         0        NA
## 2716     2     2      1          1       1         1         1
## 2717     3     3      3          3       3         2         4
## 2718     0     1      0          1       1         0         1
## 2719     1     1     NA         NA       0        NA         1
## 2720     2    NA     NA         NA      NA        NA        NA
## 2721    NA     1     NA         NA      NA         2         1
## 2722     1     4      4          5       4         4         4
## 2723     1    NA     NA         NA      NA        NA        NA
## 2724     1     0      0         NA       1         1        NA
## 2725    NA    NA     NA          0      NA        NA        NA
## 2726     2     2      1          1       1         1         1
## 2727     3     3      4          4       4         3         3
## 2728     0     1      0          1       1         0         1
## 2729     2     4      3          2       3         2         3
## 2730     3     9      6          3      11         6         3
## 2731    NA     7     NA         NA      NA        NA        NA
## 2732    NA    NA     NA         NA      NA        NA        NA
## 2733     2    NA     NA         NA      NA        NA        NA
## 2734     1     4      1          1       3         3         1
## 2735     1     1     NA         NA       0        NA         1
## 2736     4     6      4          6       6         6         6
## 2737    NA     1     NA         NA      NA         2         1
## 2738     4     5     12          5      20         4        12
## 2739     8     4     NA         NA      NA         4        NA
## 2740     1     0      0         NA       1         1        NA
## 2741     0     0      0         NA       0         0         0
## 2742     2     2      1          1       1         1         1
## 2743     4     8      7          4       8         6         5
## 2744     0     1      0          1       1         0         1
## 2745     1     1     NA         NA       0        NA         1
## 2746    10    11      8         14      11        12        11
## 2747     0    NA     NA         NA      NA        NA        NA
## 2748    NA    NA     NA         NA       2        NA         2
## 2749    NA    NA     NA         NA      NA         1        NA
## 2750    NA    NA     NA         NA      NA         1         1
## 2751     6     4      2          6       6         2         2
## 2752     3     6     10          3      10         3         6
## 2753    NA    NA     NA          0      NA        NA        NA
## 2754    NA    NA      4         NA       4        NA        18
## 2755     3    NA      3         NA      NA        NA        NA
## 2756    NA    NA     NA         NA      NA        NA         1
## 2757    NA    NA     NA         NA      NA         0        NA
## 2758    NA    NA     NA         NA      NA        NA        NA
## 2759     1     1      1         NA       1         1         1
## 2760     2     3      6          3       4         4         2
## 2761     0    NA     NA          0      NA        NA        NA
## 2762     1     1      1          1       2         1         1
## 2763     1     1      2          1       2         1         1
## 2764     3    NA      3          3      NA         3         3
## 2765    NA     0      0         NA      NA         0         0
## 2766    NA    NA     NA          1       1         1        NA
## 2767     1    NA      1         NA      NA         1        NA
## 2768     2    NA     NA          2       2         2        NA
## 2769     4     2      2          2       2         4        NA
## 2770    15     8      6         11      15        13        13
## 2771    NA    NA     NA          3       3         3         3
## 2772     3     3      3          3       3         3         3
## 2773     8     5      8          5       6         6         6
## 2774     5     5      3          2       2         2         2
## 2775     8     6      8          6       6         8         8
## 2776    35    42     46         42      21        35        11
## 2777    11    21      7          7      14         7        25
## 2778    21    23     23         23      25        19        25
## 2779    76    34     61         53      40        32        40
## 2780     3     1      3          1       3         1         1
## 2781     2     3      2          2       3         2         2
## 2782     1     1      1          1       2         1        NA
## 2783     1     1      1          1       1         1         1
## 2784    NA    NA      1         NA      NA        NA        NA
## 2785    NA     1      1         NA      NA        NA        NA
## 2786     0     0      0          0       0         0         0
## 2787    NA    NA      0         NA      NA        NA         0
## 2788     4     3      3          3       1         0         2
## 2789     1    NA     NA         NA      NA        NA        NA
## 2790     0    NA     NA          0       0         0        NA
## 2791     0     1      0          0       0         0         0
## 2792    NA    NA     NA         NA      NA        NA        NA
## 2793    NA    NA     NA         NA      NA         1         1
## 2794    NA    NA     NA         NA       1        NA        NA
## 2795     1    NA     NA         NA      NA        NA        NA
## 2796     6    NA      3          1       3         3         3
## 2797    NA    NA     NA         NA      NA        NA        NA
## 2798     1     1      1          1       0        NA        NA
## 2799     1     2      1          1       1        NA        NA
## 2800     4     2      2          1       3         1         1
## 2801    NA    NA     NA         NA      NA        NA        NA
## 2802     1    NA     NA         NA      NA        NA        NA
## 2803     3     3     NA          4       3        NA         3
## 2804    NA    NA     NA         NA      NA        NA        NA
## 2805     1     1      1          1       1         1        NA
## 2806     3     2      1          1       1        NA        NA
## 2807     2     1      2          1       2         1         1
## 2808    NA    NA     NA         NA      NA        NA        NA
## 2809    NA    NA      3          1      NA        NA        NA
## 2810    NA    NA     NA         NA      NA        NA        NA
## 2811    NA     1     NA         NA       0         0        NA
## 2812     1     2      1          1       1         2        NA
## 2813    NA    NA     NA         NA       1        NA        NA
## 2814     1     1      1          1       1        NA        NA
## 2815     1    NA     NA         NA      NA        NA        NA
## 2816     3    NA     NA         NA      NA        NA        NA
## 2817    NA    NA     NA         NA      NA        NA        NA
## 2818    NA    NA     NA         NA      NA        NA        NA
## 2819     1    NA     NA         NA      NA        NA        NA
## 2820     3     3      6          1       3         3        NA
## 2821    NA    NA     NA         NA      NA        NA        NA
## 2822     1     1      1          0       1         1         0
## 2823     1     2      1          1       1        NA         2
## 2824     3     2      2          1       1         1         1
## 2825    NA    NA     NA         NA      NA        NA        NA
## 2826    NA     1     NA          2      NA        NA        NA
## 2827     2     3      2         NA       3         3         3
## 2828     0    NA     NA         NA      NA        NA        NA
## 2829    NA    NA     NA         17      NA        NA        NA
## 2830    NA    NA     NA         NA       1        NA        NA
## 2831    NA    NA     NA         NA      NA         3        NA
## 2832    NA    NA     NA         NA      NA         1         1
## 2833    19    15      6          2      34         2        23
## 2834    16    22     22          3      98         3        35
## 2835    NA    NA     NA         NA      NA        NA        18
## 2836    18    NA     10          5      23        NA         5
## 2837    NA    NA     NA         NA      NA         1        NA
## 2838     1     1      0          1       1         1         1
## 2839     3    NA      3         NA       3         3         3
## 2840     5     3     13          2       8         4         1
## 2841     3    NA     NA         NA       0        NA        NA
## 2842     1     1      1         NA      NA         2         1
## 2843    NA    NA     NA          2       2        NA        NA
## 2844     1     1      1          1       1         2         1
## 2845    28    NA     NA         NA      14        NA        NA
## 2846     2     1      1          1       1         0         2
## 2847     1     1      4          2      NA        NA         2
## 2848     3    NA     NA         NA      NA        NA        NA
## 2849     2     2     NA          2       2         2        NA
## 2850    11     4      2          6      11         8         2
## 2851     6     6      8          8       6        11         6
## 2852     2    NA      2          2       2         2        NA
## 2853     8     8     11          6       4         8         4
## 2854    NA    NA     NA          1       1        NA        NA
## 2855    NA    NA     NA         NA      NA        NA        NA
## 2856     2     4      6          4      NA         2         4
## 2857     4     6      4          6       4         6         2
## 2858    NA    NA     NA         NA      NA        NA        NA
## 2859    NA    NA     NA          2      NA         2        NA
## 2860     1    NA      1         NA       1        NA         1
## 2861    NA    80     NA         70      25         6        89
## 2862    NA    NA     NA         NA      NA        NA        NA
## 2863     3    44     38         79      38        10        92
## 2864     3     6      3         79      41        41       187
## 2865     2    11      3         15      20         2        20
## 2866    NA     3      6         NA       3         3         8
## 2867    NA     3      3          6       3         3         6
## 2868    42   176     85         35      NA        60        18
## 2869     4   306    162        169     130       623       169
## 2870    NA    21      4         34      25        NA        25
## 2871    25    68     51         51      51         8       150
## 2872    15    49    277        139     199        91       395
## 2873     8     3      4          7       4         7         2
## 2874    NA    14     12         27       1        NA         9
## 2875    NA    NA     12         28      NA         2        14
## 2876     5     6      4          4       5         3         4
## 2877    NA    NA     NA         NA      NA        NA        NA
## 2878     1     4      2          1       1         5         3
## 2879    NA    NA     NA         NA      NA        NA        NA
## 2880    NA     3     NA         NA       3         2         2
## 2881    NA    NA     NA         NA      NA        NA        NA
## 2882     0     0      0          0       0         1         0
## 2883     2    NA      2          1      NA         2         1
## 2884     3    NA     12         NA      NA         2         1
## 2885     2     2     NA          2       2         2         2
## 2886     1    NA     NA          1      NA        NA         0
## 2887    NA    NA     NA         NA      NA        NA         1
## 2888     2     1      1          0       2         1         1
## 2889    NA    NA     NA          1       1        NA        NA
## 2890    NA    NA     NA         NA       6        NA        NA
## 2891    NA    NA     NA         NA       1         1        NA
## 2892    NA     2      4         NA       2         2        NA
## 2893    NA    NA     NA          1      NA        NA         3
## 2894     3     1     NA          1      NA         1        NA
## 2895     6    17      3         11      NA         3        10
## 2896     1     1      0          1       1         1         1
## 2897     0     2      3         NA      NA         1         1
## 2898     3     8     15          8       9         1        14
## 2899     8     5      3          5       5         5         8
## 2900     0     1      1         NA       1         0         1
## 2901    NA    NA     NA         NA      11        NA        NA
## 2902    NA    NA     NA          1      NA        NA        NA
## 2903    NA     4     NA          1      NA         1        NA
## 2904     3     8     NA          6       8        NA        10
## 2905     0     1      0          0       1         0         1
## 2906    NA     0     NA          2      NA         1         1
## 2907     3    15     15          4      13         5        18
## 2908     3    NA      3          3       3        NA         3
## 2909     0     1      1         NA       1         0         1
## 2910    NA    NA     NA          1      NA        NA        NA
## 2911     3     8     NA         NA      NA        NA        13
## 2912     1     1      0          1       1         1         1
## 2913    NA     2     NA         NA       1         1         1
## 2914     1    11     11          4       9         3         5
## 2915     5     3     NA          3      NA         1         5
## 2916     1     1      3         NA      NA        NA        NA
## 2917    NA     1     NA          1      NA         1        NA
## 2918    NA     3      6         NA      NA        NA        NA
## 2919    NA    NA     NA          0      NA        NA        NA
## 2920    NA    NA      2          2      NA        NA        NA
## 2921     0     1      1         NA       1         0         1
## 2922     4     4      4          2       2         2         2
## 2923    NA    NA     NA          1      NA         2         3
## 2924     3     4      3          1      NA         1        NA
## 2925    14    23     NA         11      NA         3        13
## 2926     1     2      0          1       1         1         1
## 2927     2     2      0         NA       1         1         1
## 2928     7     6     19          8      11         5        12
## 2929     8     5      5          8       5         5        10
## 2930     0     1      1         NA       1         0         1
## 2931    NA     3     NA         NA      NA         1        NA
## 2932     1    NA      2          2      NA         6        NA
## 2933    NA    NA      0         NA      NA        NA        NA
## 2934    NA    NA     NA          6       3         3        NA
## 2935    NA    NA      2          3       8        NA        NA
## 2936    NA    NA     NA         NA      NA         1         3
## 2937    13     8      6         17       8         4         2
## 2938    22    16     22         19      13        10         6
## 2939    NA     0     NA          1      NA        NA        NA
## 2940     3     3      3          5       3        NA        NA
## 2941    NA    NA     NA         NA      NA        NA         1
## 2942    NA    NA     NA         NA      NA        NA         2
## 2943    NA    NA     NA         NA      NA        NA         1
## 2944     0     1     NA          2      NA        NA         1
## 2945     1     1     NA         NA       2        NA        NA
## 2946    NA    NA     NA          5      NA        NA        NA
## 2947     0    NA      0         NA       1        NA        NA
## 2948     1     1      1          1       3         1         1
## 2949     6     2      4          5      NA         1         2
## 2950     1     0     NA          1       0         0         0
## 2951     2     1      4          2       2         1         1
## 2952    NA    NA     NA         NA      NA        NA        NA
## 2953     1     1      1          2       1         1         1
## 2954     3     3      3          8      17        NA         3
## 2955    NA    NA     NA         NA      NA        NA        NA
## 2956     0     0      0          0      NA         0         0
## 2957     1    NA      1          1       1         1         1
## 2958     1    NA      2         NA      NA         1         1
## 2959    NA    NA     NA         NA      NA         4        NA
## 2960    17    19     15         21      17        15        23
## 2961     8     6     NA          3      NA        NA        NA
## 2962    NA    NA     NA         NA      NA         3        NA
## 2963    14    14     21         11      14        11        21
## 2964    NA    NA     NA         NA      NA        NA        NA
## 2965    13    19     15         17      15        11        19
## 2966     1     1      2          1       2         1         1
## 2967     2     2      2          2       2         3        NA
## 2968    NA    NA     NA         NA      NA        NA        NA
## 2969     8     8      6          8       8         4         8
## 2970     6     3      6          8       8         3         6
## 2971     4     6      6          4       4         8         6
## 2972    NA    NA     NA         NA       1        NA        NA
## 2973    NA    NA      2         NA      NA         2         2
## 2974    50    74     69         77      53        58        98
## 2975    19    NA     NA          6       3         3        NA
## 2976    48    48     48         41      38        51        48
## 2977     9     5      8          5      11         2         8
## 2978    39    25     31         34      39        39        31
## 2979     3    NA     NA          6       6         3        NA
## 2980   141   102    155        159      95        81       377
## 2981   113   102    148        169     151        95       197
## 2982    NA    NA     NA         NA      NA        NA        NA
## 2983    11     8     15          8      11        11        13
## 2984    61    57     46         55      59        38        76
## 2985   148   129    175        139     118        97       165
## 2986     6     6      6          7       6         7         6
## 2987     6     5      5          8       5         3         3
## 2988     6     6      6          4       6         6         4
## 2989     4     5      5          3       4         1         4
## 2990    NA    NA      1         NA      NA        NA        NA
## 2991     3     1      2          2       1         1         1
## 2992     1     2      2          1      NA        NA         1
## 2993     1     3      2          3       4        NA         2
## 2994    NA    NA     NA         NA      NA         1         1
## 2995     1     1      1          1       0         1         1
## 2996    NA     1      1         NA       1         1         1
## 2997     6     6      7          6      10         5         9
## 2998     1    NA     NA          1       0         0        NA
## 2999     2     2      2          2       4         4         2
## 3000     2     1      1          1       2        NA         1
## 3001    NA    NA     NA         NA       1         1         1
## 3002    NA    NA     NA          1      NA        NA        NA
## 3003     1     1      1          1       1         2         2
## 3004     3     3      4          6       1         3         4
## 3005    NA    NA     NA         NA       4         4         4
## 3006     1    NA     NA         NA      NA        NA        NA
## 3007    NA     3     NA          6      NA        NA         3
## 3008    14    18     11          7       7        11        18
## 3009     0    NA      0         NA       1        NA        NA
## 3010     1     1     NA         NA       0        NA         0
## 3011    13    12     23         10      13        13        11
## 3012     3     2      3          2       4         4         3
## 3013     0    NA     NA         NA      NA        NA        NA
## 3014    NA    NA     NA         NA       2        NA        NA
## 3015     1    NA     NA         NA      NA        NA        NA
## 3016    NA    NA     NA          3       6         3        NA
## 3017     7     7      7          7       4         4        18
## 3018     0    NA      0         NA       0        NA        NA
## 3019     1     1      0          0      NA        NA        NA
## 3020    NA     3     NA          3       5        NA         4
## 3021     2     2      2          3       1         1         3
## 3022     0    NA     NA         NA      NA        NA        NA
## 3023    11     4      7          4      NA         7         7
## 3024     0    NA      0         NA       1        NA        NA
## 3025     1     2     NA         NA      NA        NA        NA
## 3026     2     1      6          3       5         2         2
## 3027     3     2      3          3       3         1         1
## 3028     2     1      1          1       4         3         1
## 3029     1    NA     NA         NA      NA        NA        NA
## 3030    NA     3     NA          3      NA        NA        NA
## 3031    11     7     18         NA       4        11        25
## 3032    NA    NA     NA         NA      NA        NA        NA
## 3033    NA    NA      1         NA      NA        NA        NA
## 3034    17    11     17          2       6        13         6
## 3035     3     4      3          1       4         3         3
## 3036     0    NA     NA         NA      NA        NA        NA
## 3037     1     3     NA         NA      NA        NA        NA
## 3038     3     8      3          8       3        NA        NA
## 3039    21    18     14          4       7        14        18
## 3040     0    NA      0         NA       1        NA        NA
## 3041     0     1      1         NA       0         0        NA
## 3042    23    20     21         16       9        11         2
## 3043     4     4      3          3       6         4         5
## 3044     0    NA     NA         NA      NA        NA        NA
## 3045    NA    NA     NA         NA      NA        NA        NA
## 3046    NA     1      1         NA      NA        NA         1
## 3047    10     4      8          6       3         3         5
## 3048     1    NA     NA         NA      NA        NA        NA
## 3049     0     0      0         NA       0        NA        NA
## 3050    NA    NA     NA         NA      NA         1        NA
## 3051    19    11     13         13       2        15         4
## 3052     3     3      3         13       3         6         6
## 3053    NA    NA     NA          1      NA        NA        NA
## 3054    NA    NA     NA         NA       1        NA        NA
## 3055     1    NA     NA         NA      NA        NA        NA
## 3056     3     3     NA          6       2         2         3
## 3057    NA    NA     NA         NA       1        NA        NA
## 3058     1     1      1          1       2         1         1
## 3059     1     1      1          1       1         1         1
## 3060    NA    NA     NA         NA      NA        NA         0
## 3061    NA    NA     NA         NA      NA        NA        NA
## 3062    NA    NA     NA         NA      NA        NA        NA
## 3063    13    15     23         13      17        13         8
## 3064     8     3      3          6       3        NA         8
## 3065    11    11     17          8       8         6         8
## 3066    23    13     25         21      21        13        13
## 3067     1     2      1          4      NA         2         3
## 3068     2     4      2          2       2        NA         2
## 3069    NA    NA     NA         NA       2        NA        NA
## 3070    26    NA     NA         NA      NA        NA        NA
## 3071    38    38     70         41      60        35        76
## 3072    22    29     22         29      32        32        29
## 3073     6     6      6          3       6         8         6
## 3074     3     5      9          5       8         6         5
## 3075     8    17     NA         17       8        14        11
## 3076     8    14      6          6       8        NA        11
## 3077    42    42     70         42      NA        56        85
## 3078    99   127     85        127      63        81        88
## 3079    19    21     13         17      19        13        17
## 3080    13    30     23         25      34        13        38
## 3081    32    17     32         42      44        38        25
## 3082     6    15     NA         15      NA         6         6
## 3083     3     3      3          3       3         3        NA
## 3084     2     4      2          2       2         2         2
## 3085     1     1      1          1       1         1         1
## 3086    NA    NA     NA         NA       1        NA        NA
## 3087     4     6      4          4       6         2         6
## 3088     0     0      0          0       0         0         0
## 3089    NA    NA      4         NA      NA        NA        NA
## 3090     5     0     NA         NA       7        17        NA
## 3091     1    NA     NA         NA      NA        NA        NA
## 3092    NA    NA     NA         NA      NA         1        NA
## 3093     0     0      0          0       0         0         0
## 3094     3     3      3          3       1         1        NA
## 3095    NA    NA     NA         NA       8         9        10
## 3096    NA     1     NA          3       6        NA        NA
## 3097     8    11     14          8       8         6        14
## 3098     3     1     NA         NA      NA         1         1
## 3099    NA    NA      0         NA       0        NA        NA
## 3100    NA    NA     NA         NA       1         2         1
## 3101     3     3      4          1       1         1         1
## 3102    NA    NA     NA         NA      NA        NA        NA
## 3103    NA     1     NA         NA      NA        NA        NA
## 3104    NA    NA     NA         NA      NA        NA        NA
## 3105    NA    NA     NA         NA       1        NA         1
## 3106    NA    NA     NA         NA      NA        NA        NA
## 3107    NA    NA     NA         NA       3        NA        NA
## 3108     1     1     NA         NA       1        NA         1
## 3109    NA    NA      1         NA      NA        NA        NA
## 3110    NA    NA     NA         NA       1        NA         1
## 3111     3     1     NA         NA      NA        NA        NA
## 3112     3     8      6          6       6         8         3
## 3113    NA    NA      2         NA      NA        NA        NA
## 3114     3     3      4          1       4         1        NA
## 3115    NA    NA     NA         NA      NA        NA        NA
## 3116     3     4     NA          3      NA         3        NA
## 3117     6     8     14          3       3         8        11
## 3118     1     1     NA          1       1         1         1
## 3119     0     0     NA          0      NA         0         0
## 3120     2     2     NA          2       1        NA         3
## 3121     3    NA      3          1       1         1         1
## 3122    NA    NA     NA         NA      NA        NA        NA
## 3123    NA    NA     NA         NA       2        NA        NA
## 3124     3    NA     NA         NA       3        NA        NA
## 3125    NA    NA     NA         NA       5        NA        NA
## 3126    NA    NA     NA         NA      NA         1        NA
## 3127     2     2      2         76     114         2         2
## 3128     3     3      3         73     155        10         3
## 3129    NA    NA     NA         NA      NA        NA        NA
## 3130    NA     3     NA         25      NA        NA        NA
## 3131    NA    NA     NA         NA      NA        NA         2
## 3132    NA    NA     NA         NA      NA         0        NA
## 3133    NA    NA     NA         NA       6        NA        NA
## 3134    NA    NA     NA          2      NA        NA        NA
## 3135    NA    NA      0         NA      NA        NA        NA
## 3136    NA    NA     NA         NA       1        NA        NA
## 3137     1    NA     NA          0       4        NA         1
## 3138    NA     0      0          0       2        NA         1
## 3139     1     1      1          4       4         1         2
## 3140    NA    NA     NA         NA      NA        NA        NA
## 3141     1     1      1          2       1         1         1
## 3142    NA    NA      3          6      NA        NA        NA
## 3143    NA    NA      1         NA      NA        NA        NA
## 3144     2     2     NA         NA       4        NA         2
## 3145    NA    NA     NA         NA      NA        NA        NA
## 3146     2     2      4          4      17        NA        11
## 3147     3    NA      6          3       8         3         3
## 3148     6     6      4          8      36         4        13
## 3149     1     2      1          2       8        NA         2
## 3150    NA     2      2          3       6         2        NA
## 3151    NA    NA     NA         NA       2        NA        NA
## 3152    NA     2      4          2       8        NA         6
## 3153     2     2     NA          4      11        NA         2
## 3154    NA    NA      1          1       2         1         1
## 3155    NA    NA     NA         NA      NA        NA        NA
## 3156    NA    NA     NA         NA      17        NA         2
## 3157    18    NA     NA         NA      NA        NA        NA
## 3158    13    35     41         54     298        51        41
## 3159    19    13     16         25      29        13        19
## 3160     6     5      8         21      66        11        14
## 3161    17    11     17         20      68        11        11
## 3162     3     8     14         23      17         6         6
## 3163    25    28     14         53     461        70        63
## 3164    35    14     39         53      60        25        46
## 3165     6     8     32         59     366        25        80
## 3166    59    40     49         55     123        87        23
## 3167     3     5      5         10      86        18        13
## 3168     3    NA      6         15      51         6        15
## 3169     4     2      4         12      17         2         4
## 3170     2     3      8          6      47         6         6
## 3171    NA    NA     NA         NA      30         4         2
## 3172     5     1      3          4      13        NA         2
## 3173    NA     1     NA         NA      NA        NA        NA
## 3174     2     1      1          2       4         1         1
## 3175    NA    NA     NA         NA       3        NA        NA
## 3176    NA    NA      1         NA      10        NA        NA
## 3177    NA    NA     NA         NA       4        NA        NA
## 3178     0     0      0          0       0         1         0
## 3179     1     2      2          6      13        NA         6
## 3180    NA    NA     NA         NA       1        NA        NA
## 3181     4     2     NA         NA       2         2         4
## 3182     0     0     NA          0       2        NA         1
## 3183     0     0      0          0       0         0         0
## 3184     1     2      3          4       5         1         1
## 3185    NA    NA     NA         NA      15         1         8
## 3186    NA    NA     NA         NA       4         4        NA
## 3187    NA    NA     NA         NA      NA        NA         2
## 3188     3    NA     NA         NA      NA        NA        NA
## 3189    NA     3      3          6      28        NA        NA
## 3190    NA    NA      0         NA      NA        NA        NA
## 3191     0     1      1          0       6         0         1
## 3192    NA    NA     NA          1       1         2         1
## 3193     1     1      1          1      13        NA         5
## 3194     0     0      0          0       1        NA        NA
## 3195    NA    NA     NA         NA       3        NA         2
## 3196    NA    NA     NA         NA      25        NA        NA
## 3197    NA    NA      0         NA      NA        NA        NA
## 3198    NA    NA     NA         NA       5        NA        NA
## 3199    NA    NA     NA          1       1        NA         1
## 3200    NA    NA     NA         NA       3        NA        NA
## 3201     0     0      0          0       1        NA        NA
## 3202    NA    NA     NA         NA      NA        NA         2
## 3203    NA    NA     NA         NA      11        NA        NA
## 3204    NA    NA      0         NA      NA        NA        NA
## 3205    NA    NA     NA         NA      NA         0         1
## 3206    NA    NA     NA          1       1        NA         1
## 3207    NA    NA     NA         NA       3        NA        NA
## 3208     1     1     NA          3      13         3         3
## 3209     3    NA      3          6       8        NA         3
## 3210    NA    NA     NA         NA       3        NA        NA
## 3211    NA    NA     NA         NA       1        NA        NA
## 3212     0     0      0          0       1        NA        NA
## 3213    NA     2      2         NA      11         4        NA
## 3214    NA    NA     NA         NA       3        NA         2
## 3215     3    NA     NA         NA      NA        NA        NA
## 3216     6     3     NA          8      28         3         6
## 3217    NA    NA      0         NA      NA        NA        NA
## 3218     1     0      1          0      11         0         2
## 3219     2     2      2          1       3        NA         1
## 3220     2     2      3          4      20         1         6
## 3221     0     0      0          0       1        NA        NA
## 3222    NA     1      1         NA       4        NA        NA
## 3223     1     1      1         NA      18        NA         4
## 3224    NA     2     NA         NA      NA         2        NA
## 3225    NA     3      3         NA       3        17        NA
## 3226     8    10     10          9      10        NA         1
## 3227    NA    NA     NA         NA      NA         1        NA
## 3228    44     4      2         85      17         2         8
## 3229    19     6      3        130      29        19        13
## 3230    NA    NA     NA          2      NA        NA        NA
## 3231    NA    NA     NA         NA       6        NA        NA
## 3232     5     8      3         18      38        NA        NA
## 3233    NA    NA     NA         NA      NA        NA        -1
## 3234    NA    NA     NA         NA      NA        NA         2
## 3235     3    NA     NA         NA      NA        NA         1
## 3236     6     5      3          5       3        NA        NA
## 3237    NA    NA     NA         NA      NA         2        NA
## 3238     0     0      1          1       1         0         1
## 3239     1    NA     NA          1       5         1         2
## 3240     1     1     NA         NA      NA        NA        NA
## 3241     1     4      2          1       1        NA         2
## 3242     0    NA     NA         NA      NA        NA         0
## 3243     1     1      1          1       1         1         1
## 3244    NA    NA     NA         NA      NA        NA        NA
## 3245     1     1      1          1       2         2         1
## 3246    NA    NA     NA          3      NA        NA        NA
## 3247    NA    NA     NA         NA      NA         0        NA
## 3248     1     1     NA         NA      NA         1        NA
## 3249     1    NA      1         NA       1         1         1
## 3250    NA    NA     NA         NA      NA        NA        NA
## 3251    NA    NA     NA         NA      NA        NA        NA
## 3252     4     2      4          4      11         4         2
## 3253     6     9     11          9      14        11        15
## 3254    NA    NA     NA         NA      NA        NA        NA
## 3255     8    11     14         11       8         6         3
## 3256    21    27     38         38      49        27        21
## 3257     1     1      1          1       1         1         1
## 3258     2     3      3         NA      NA        NA        NA
## 3259     1    NA      1          1       1         1        NA
## 3260     2     4      2          4      NA         2         2
## 3261    NA    NA     NA         NA       3        NA        NA
## 3262    NA    NA     NA         NA       0        NA        NA
## 3263    NA    NA     NA         11      25        15        NA
## 3264    61    NA     NA         NA      NA        NA        NA
## 3265    60    86    113         92      86        86        70
## 3266   111   301     44        143     133       130       101
## 3267    44    23     27         63      26        35        29
## 3268   114    78    114        105     132        78       126
## 3269    NA    NA     NA         NA      NA        NA        NA
## 3270     8     6      3          6       8        NA         3
## 3271    81    77     95        113     120        88       127
## 3272   359   771    317        578     511       352       412
## 3273    11    36     34         61      38        32        38
## 3274    80    66     97        131     230        97       106
## 3275   249   499    273        355     562       260       256
## 3276    NA    NA     NA          1       1         1         2
## 3277    13     6     13         11      21         9        13
## 3278    17    12     15         17      27        15        12
## 3279    NA    NA      2         NA      NA        NA        NA
## 3280    NA     3      4          6       2         2         1
## 3281     1     2      1          1       1         2         2
## 3282    NA     1     NA         NA       2        NA        NA
## 3283     3     6      5          6       4         3        NA
## 3284     0     0      0          0       1         0         0
## 3285    NA     0     NA         NA      NA        NA         1
## 3286     3     1      3         NA       3         2         2
## 3287     1    NA     NA         NA       1        NA        NA
## 3288     2     2     NA          2       2         2        NA
## 3289     1     1      0          1       2         1         0
## 3290    NA    NA     NA         NA       2         1        NA
## 3291     1    NA     NA         NA       2        NA        NA
## 3292    NA    NA     NA         NA       1        NA        NA
## 3293     0     0      0          1       0         0         0
## 3294     5     5      5          5       6        NA        NA
## 3295    NA    NA     NA         NA      11        10         6
## 3296     3     3      2          3       3         3         3
## 3297     3    NA     NA         NA      NA        NA        NA
## 3298     9     9      9          9      14        11        11
## 3299     6     3      6          8       6        11        11
## 3300    NA    NA     NA         NA      NA        NA        NA
## 3301     2     0      1          1       1         0         1
## 3302     2    NA     NA          2      NA        NA         0
## 3303     2     4      4          8       5         2         2
## 3304    11    15      1          8      11         5         7
## 3305    NA    NA     NA         NA      NA        33        NA
## 3306    NA     2     NA         NA      NA        NA        NA
## 3307    NA    NA     NA         NA      NA        NA        NA
## 3308     6    NA      8         NA       6        NA         6
## 3309     3    NA     NA         NA      NA        NA        NA
## 3310     6     8     NA          6      12         6         3
## 3311    NA    NA     NA         NA      NA        NA        NA
## 3312     0     0      1          0       0         0         0
## 3313    NA    NA     NA          0      NA        NA        NA
## 3314     4     2     NA          6       3         4        NA
## 3315     2     1      1         12       1         1         1
## 3316    NA    NA     NA         NA      NA        NA        NA
## 3317     3     6      3          6      NA         6        NA
## 3318     3     3      3          6       8         9         3
## 3319    NA    NA     NA         NA       6        NA        NA
## 3320     2     0      1          2       1         0         1
## 3321     2    NA     NA          2      NA        NA        NA
## 3322    NA     4      2          2       3         8         2
## 3323     2     7      1          2       5         1        -2
## 3324    NA    NA     NA         NA       2        NA        NA
## 3325     3    NA     NA         NA      NA        NA        NA
## 3326    NA     5      3          5       3         2         5
## 3327    11    11      3         17      11        11         8
## 3328    NA    NA     NA         NA      NA        NA         4
## 3329     6     4     NA         NA       6         4         6
## 3330    NA    NA     NA         NA      NA        NA        NA
## 3331    10     6      3          6      10        10        10
## 3332     3    NA     NA         NA      NA        NA        NA
## 3333     8     9     11          9      15        12         8
## 3334    23    17     NA         14      15        23        11
## 3335    NA    NA     NA         NA      NA        NA        NA
## 3336     2     0      1          1       1         0         1
## 3337     2     0      0          3       0         0         0
## 3338     6     8     11          6       7         8         6
## 3339    15    17     11         12       9         9         9
## 3340    NA    NA     NA         NA      NA        NA        NA
## 3341    NA     2      2         NA      NA        NA         1
## 3342     3     1      5          5      10         3         1
## 3343     0    NA     NA         NA      NA        NA        NA
## 3344    NA    NA      2          2       2         2         2
## 3345    NA    NA      3          3       3         3         3
## 3346    NA    NA     NA          3      NA        NA        NA
## 3347    NA    NA     NA          2      NA        NA        NA
## 3348     3    NA     NA          3      NA        NA        NA
## 3349    NA     0     NA          0       0         0         0
## 3350    NA    NA     21         NA      NA        NA        NA
## 3351    NA     0     NA          0      NA        NA        NA
## 3352     2    NA      1         NA       1         1         1
## 3353    NA    NA     NA          4      NA        NA        NA
## 3354     1    NA      1          1       1         1         1
## 3355     8     3     11          3      NA         3         6
## 3356    NA     0     NA         NA      NA         0         0
## 3357    NA    NA     NA          1       1         1        NA
## 3358     2    NA     NA         NA      NA        NA        NA
## 3359     2    NA      2          2       2         2         2
## 3360     4     4      4          6       6         2         4
## 3361    NA    NA     NA          2       2        NA        NA
## 3362    16    NA     NA         NA      NA        NA        NA
## 3363     3    22     29         38      38        32        16
## 3364    22    16     22         16      22        16        16
## 3365     3     3      3          2       3         3         2
## 3366    56    46     56         53      46        32        32
## 3367    NA    NA     NA          2      NA        NA         2
## 3368    27    23     25         25      19        21        21
## 3369     1     1      1          1       1         1         1
## 3370     1     1      2          1       2         1        NA
## 3371    NA    NA      1         NA      NA        NA        NA
## 3372    NA    NA      1          1       1         1         1
## 3373    NA     1     NA         NA      NA        NA        NA
## 3374     3    NA     NA         NA       4        NA         3
## 3375     2    NA      1          3       0         2         2
## 3376    NA    NA     NA         NA      NA         0         0
## 3377     2    NA      3          2       1         3         3
## 3378     1    NA     NA         NA      NA        NA        NA
## 3379     4    NA     NA         NA      NA         4        NA
## 3380     0    NA     NA         NA      NA        NA        NA
## 3381    NA    NA      0          0       0         0         0
## 3382     2     2      2         NA       3         2        NA
## 3383     2    NA     NA         NA      NA        NA        NA
## 3384    NA     3     NA         NA       3         3        NA
## 3385    NA     0     NA          0       0         0         0
## 3386     0    NA     NA         NA       1         0         1
## 3387    NA    NA      1         NA       1         1         1
## 3388     2     2     NA         NA      NA        NA        NA
## 3389     2    NA     NA         NA      NA        NA        NA
## 3390    NA     0     NA          0       0         0         0
## 3391     0     0     NA          0      NA        NA         0
## 3392    NA    NA      1         NA       1         1         1
## 3393     2     2      2          2       3         2         3
## 3394    NA     0     NA          0       0         0         0
## 3395     0    NA     NA         NA      NA        NA        NA
## 3396    NA    NA      1         NA       1         1         1
## 3397     2    NA     NA         NA      NA        NA        NA
## 3398    NA     3      3          3       3         3        NA
## 3399    NA    NA     NA          0      NA        NA        NA
## 3400     2     2      2          3       3         2         2
## 3401     2    NA     NA         NA      NA        NA        NA
## 3402     3     3     NA          3       3        NA         3
## 3403    NA     0     NA          0       0         0         0
## 3404     1     1      0          0      NA         0         1
## 3405    NA    NA      1          2       1         1         1
## 3406    NA    NA      1         NA      NA         1        NA
## 3407     1    NA      3         NA      NA         3         3
## 3408    NA    NA     NA         11      NA        NA        NA
## 3409    NA    NA     NA         NA      NA         1         1
## 3410     6     4     15         11       4         6         2
## 3411     6    13     22          3      10        13         6
## 3412     0    NA     NA          0       1         0         0
## 3413     5    NA      5          3      NA         3        NA
## 3414    NA    NA     NA         NA      NA        NA         2
## 3415    NA    NA     NA         NA      NA        NA         1
## 3416    NA     1      1          2       1         2         1
## 3417    NA    NA     NA          2      NA        NA        NA
## 3418    NA    NA     NA         NA      NA        NA        NA
## 3419    NA     1     NA         NA       1         1         2
## 3420     5     7     11          2       7         3         2
## 3421     0     1      0         NA       1        NA         0
## 3422     2     5      2          2       3         3         3
## 3423    NA    NA     NA         NA      NA        NA        NA
## 3424    NA    NA     NA         NA      NA        NA        NA
## 3425     1     2      2          1       1         1         2
## 3426    14     8     17         NA       8        11        17
## 3427     1    NA      1          4       1        NA        NA
## 3428     0     0     NA          0      NA         0         0
## 3429    NA     1     NA         NA      NA         1         1
## 3430     1     2     NA          1      NA         1         2
## 3431    NA    NA     NA         NA      NA        NA        NA
## 3432     1    NA     NA         NA      NA        NA        NA
## 3433     2     2      2          2       2         2        NA
## 3434    NA    NA     NA         NA      NA        NA        NA
## 3435    17    32     27         30      51        17        44
## 3436    54    65     48         54      70        59        68
## 3437     2    27     19         23      23        27        25
## 3438     3     3      3          3       4         4         1
## 3439     3     2     NA          3       3         2         3
## 3440     8     8      8         11      15         8        13
## 3441    17    23     25         20      23        20        31
## 3442     6     6      4          8       4         4         4
## 3443     1     1      1          1       1         1         1
## 3444    23    46     46         49      72        17        53
## 3445     5    NA     NA         NA      NA        NA        NA
## 3446    29    48     44         35      67        73        35
## 3447    10     3     13         16      10        16        NA
## 3448     5    12      9          9      17         8         9
## 3449     6     8      5          5      NA        NA        NA
## 3450    99    87     76         73     101        62       104
## 3451     6     8      6         14       6         3        NA
## 3452   109   116    159        102     120       102        63
## 3453    60    99    120        106     148        85       123
## 3454     4     2     NA         NA      NA        NA        NA
## 3455    49    19     40         36      36        38        42
## 3456    59    30     40         19      15        42         8
## 3457     6     9      6         12      12         6         3
## 3458     9    11     13         11       9         9        11
## 3459     9     5      8          8       8         5         8
## 3460     2     8      2          6       6         6         4
## 3461     5     3      4          3       5         2         3
## 3462    NA    NA     NA         NA      NA        NA        NA
## 3463     2     2      1          2       1         2         1
## 3464     3     3      3          1      NA        NA        NA
## 3465     4     5      8          4       3         2         2
## 3466     0     1      0          0       0         1         1
## 3467    NA    NA      0         NA      NA        NA         1
## 3468     8     6     10          3       7         6         9
## 3469     0    NA     NA          1      NA        NA        NA
## 3470     2     4     NA          2       4        NA         4
## 3471     0     1      0          0       0         0         0
## 3472    NA    NA     NA         NA      NA        NA         1
## 3473    NA    NA     NA         NA      NA        NA         1
## 3474    NA    NA     NA         NA      NA        NA         2
## 3475     0     0      0          0       0         0         1
## 3476     6     5      4          2       4         3         4
## 3477    NA    NA     NA         NA      NA        NA         3
## 3478    NA    NA     NA         NA      NA        NA         1
## 3479    NA    NA     NA         NA       1        NA         1
## 3480     4    11     NA          4       4         2         2
## 3481    NA     1     NA         NA      NA        NA        NA
## 3482     0    NA     NA         NA      NA        NA        NA
## 3483     8     8      6          6      14         6         6
## 3484    NA    NA     NA         NA      NA        NA        NA
## 3485     1    NA     NA         NA      NA        NA        NA
## 3486     2     1      1          1      NA        NA        NA
## 3487     2     1      1          3       1         3         1
## 3488    NA    NA     NA         NA      NA        NA        NA
## 3489    NA     2     NA         NA      NA        NA        NA
## 3490    NA     1     NA         NA      NA        NA        NA
## 3491     0    NA     NA         NA      NA        NA        NA
## 3492     6     3      3         20      NA        NA         6
## 3493    NA    NA     NA         NA      NA        NA        NA
## 3494    NA     0     NA         NA      NA        NA        NA
## 3495     2     1      1          1      NA        NA        NA
## 3496     1     1      1          1       1         1        NA
## 3497    NA    NA     NA         NA      NA        NA        NA
## 3498     4    NA     NA         NA      NA        NA        NA
## 3499     0    NA     NA         NA      NA        NA        NA
## 3500    NA    NA     NA         NA      NA        NA         3
## 3501    NA    NA     NA         NA      NA        NA        NA
## 3502    NA     0     NA         NA      NA        NA        NA
## 3503     2     1      1          1      NA        NA        NA
## 3504     1    NA     NA          1      NA         1         1
## 3505     1     2      1          2      NA         1         1
## 3506    NA     1     NA         NA      NA        NA        NA
## 3507    20    17     17          8      23         8         3
## 3508    NA    NA     NA         NA      NA        NA         0
## 3509    NA     1     NA          1       3         1        NA
## 3510    NA    NA     NA         NA      NA        NA        NA
## 3511     4     4      2          6       4         4         2
## 3512    NA     1     NA         NA      NA        NA        NA
## 3513     0    NA     NA         NA      NA        NA        NA
## 3514    11    14      8          8      14         6         8
## 3515    NA    NA     NA         NA      NA        NA        NA
## 3516     1     1      0          0      NA        NA        NA
## 3517     2     3      1          1       2        NA        NA
## 3518     3     3      3         15       3         3         1
## 3519    NA    NA     NA         NA      NA        NA        NA
## 3520    NA    NA     NA         NA      NA        NA         2
## 3521    NA     2      2          2       4         1         3
## 3522     8    10     15          6      10         6        10
## 3523     0    NA     NA         NA      NA        NA        NA
## 3524    NA    NA     NA         NA      NA        NA        NA
## 3525    NA    NA     NA         NA      NA        NA        NA
## 3526    NA    NA     NA         NA       2        NA         2
## 3527    NA    NA     NA         NA      NA         1        NA
## 3528    NA    NA     NA         NA      NA         1        NA
## 3529     4     2      2          2       2         2         4
## 3530     6     3      3          3       3         3         6
## 3531    NA    NA     NA         NA      NA         0        NA
## 3532    NA    NA      0         NA      NA        NA        NA
## 3533     4     2      4          2       3         1         3
## 3534     2     1      1          1       1         1         1
## 3535     2     1      1          2       2         2         1
## 3536    NA    NA     NA          3      NA        NA        NA
## 3537    NA    NA     NA         NA      NA        NA        NA
## 3538     6     8      8         13       6         6         6
## 3539     8     3      3          3       3         3         6
## 3540    11    11     11         11      14        14        14
## 3541    NA     3     NA          2       2         2         2
## 3542     8    13     11         11       8         8         6
## 3543     2    NA     NA          1       1         1         1
## 3544     2     2     NA          2      NA        NA         2
## 3545     2     2      4         NA       4         2         2
## 3546    NA    NA      2          2       4         2        NA
## 3547    32    NA     NA         NA      NA        NA        NA
## 3548    19    54     48         48      63        38        64
## 3549    35    38     41         32      54        35        38
## 3550     3     8      6          5       6         8         8
## 3551    NA    NA     NA         NA      NA        NA        NA
## 3552    11    14     11         11      17        14        17
## 3553    63    60     46         63      53        35       162
## 3554   201   187    169        127     159       229       162
## 3555     3    NA     NA         NA      NA        NA        NA
## 3556    17    17     21         21      27        17        17
## 3557    44    40     40         55      42        72        38
## 3558     3     2      3          4       4         4         4
## 3559     3     5      5          5       3         3         5
## 3560    NA    NA     NA         NA      NA        NA        NA
## 3561    NA     1     NA         NA      NA        NA        NA
## 3562     1     1      1          2       1         1         1
## 3563    NA     1     NA         NA      NA        NA        NA
## 3564    NA    NA      1         NA       1         1        NA
## 3565     0     0      0          0       0         0         0
## 3566     6     5      6          7       7         5         2
## 3567     0    NA     NA         NA      NA        NA        NA
## 3568    NA    NA      2         NA      NA         2        NA
## 3569    NA    NA     NA          0       0         0         0
## 3570     0     0      0          0       0         0         0
## 3571    NA    NA     NA         NA       3         1         3
## 3572    NA    NA     NA         NA       1         1         1
## 3573    NA     1     NA         NA      NA        NA        NA
## 3574     1    NA     NA          1      NA        NA         4
## 3575    NA    NA      0         NA      NA        NA        NA
## 3576    NA     0     NA          0      NA         0        NA
## 3577     1     1      1         NA       1         2         1
## 3578    NA    NA     NA         NA      NA        NA        NA
## 3579    NA    NA     NA         NA      NA        NA         0
## 3580    NA     1     NA         NA      NA        NA        NA
## 3581     1    NA     NA          1      NA         3         1
## 3582    NA    NA      0         NA      NA        NA        NA
## 3583    NA     0     NA          0      NA        NA        NA
## 3584     1     1      1         NA       1        NA         1
## 3585    NA    NA     NA         NA      NA        NA        NA
## 3586     1    NA     NA          1      NA        NA         1
## 3587    NA    NA      0         NA      NA        NA        NA
## 3588    NA     0     NA         NA      NA        NA        NA
## 3589     1     1      1         NA       1        NA         1
## 3590    NA     1     NA          3      NA        NA        NA
## 3591     3     6     11          6      11        NA         6
## 3592     0    NA     NA          0       0        NA        NA
## 3593    NA     2      2         NA      NA        NA        NA
## 3594    NA    NA     NA         NA      NA        NA        NA
## 3595    NA     1     NA         NA      NA        NA        NA
## 3596     4    NA     NA          1      NA        NA         1
## 3597    NA    NA      0         NA      NA        NA        NA
## 3598    NA     0      0          1      NA         1         0
## 3599     1     1      1          2       1        NA         1
## 3600    NA    NA     NA         NA      NA        NA        NA
## 3601    NA     1     NA         NA      NA        NA        NA
## 3602     6     3      6          6       4         4         5
## 3603    NA    NA     NA         NA       2         2         2
## 3604    NA    NA     NA         17      NA        NA        NA
## 3605    NA    NA     NA         NA      NA        NA         2
## 3606    NA    NA     NA         NA      NA         1        NA
## 3607     8     8      8         11       6        15         2
## 3608    13    13     13         10       6         6         6
## 3609     3     8      3          3       5         3        NA
## 3610    NA    NA     NA         NA      NA        NA         1
## 3611    NA    NA     NA         NA      NA         1        NA
## 3612    NA    NA     NA          3      NA        NA        NA
## 3613     1    NA     NA         NA      NA        NA        NA
## 3614     2     3      2          1       2         2         1
## 3615    NA    NA      1          1      NA        NA        NA
## 3616     1     1      4          1       1         3         1
## 3617    NA    NA     NA         NA      NA        NA        NA
## 3618     1     1      1          1       1         1         1
## 3619    NA     6      3          3      NA         3         6
## 3620    NA    NA     NA         NA      NA        NA         0
## 3621    NA    NA     NA         NA      NA        NA        NA
## 3622     1     1     NA         NA      NA        NA        NA
## 3623     2     2      2          2      NA        NA        NA
## 3624    NA    NA     NA         NA      NA        NA        NA
## 3625     8    11     15         11      17         6        13
## 3626     8    11     14          6      11        11        14
## 3627     3     2      3          2       3         3        NA
## 3628    13     8     11          8      13         8         8
## 3629     2     2      2          1       3         3         3
## 3630     2     2      4          2       2         4         4
## 3631     3     8      8          6       3        NA         8
## 3632     6     4      2          4       2         4        NA
## 3633    25    25     34         34      34        21        25
## 3634    NA    NA     NA         NA      NA        NA        NA
## 3635    16    13     16         19      13        19        13
## 3636    16    32     32         19      32        22        25
## 3637     5     6      9         14       6         3         8
## 3638    23    23     31         45      31        23        11
## 3639    46    49     63         60      25        42        35
## 3640     4    99    137        123     208        35       130
## 3641    NA    NA     NA         NA      NA        NA        NA
## 3642     8    11     13          8       8         8        11
## 3643    13    15     30         32      27        27        17
## 3644    15    25     36         21      25         8        21
## 3645     8     8     10          6      10         4         6
## 3646     2     2      3          3       3         3         2
## 3647     2     2      2          2       2         6        NA
## 3648     2     2      2          2       3         1        NA
## 3649    NA    NA     NA         NA      NA        NA        NA
## 3650     2     2      1          1       1         1         1
## 3651     1    NA      1          1      NA        NA         1
## 3652    NA     1     NA         NA       2        NA         1
## 3653    NA    NA     NA         NA      NA        NA        NA
## 3654     0     0      2          0       0         0         0
## 3655    NA    NA     NA         NA      NA        NA         0
## 3656     2     4      5          4       4         3        NA
## 3657     0    NA     NA         NA       1        NA        NA
## 3658     0     0      0          0       0         0         0
## 3659     1     1      1          1       1         1         1
## 3660    NA    NA     NA         NA      NA         1         1
## 3661    NA    NA     NA         NA       1        NA        NA
## 3662    NA     2      3          1       1         2         1
## 3663     2     1     NA         NA       1        NA        NA
## 3664     3     1     NA          1       3         1         1
## 3665     1     0      1          0       1         0         0
## 3666    NA     1      1          1       1         1         1
## 3667     1     1      1          1       1         3         1
## 3668     0    NA     NA         NA       0        NA        NA
## 3669    NA    NA     NA          1       1         1         1
## 3670     2     1     NA         NA       1        NA        NA
## 3671    NA     1     NA          7       3         1         1
## 3672     1     0      0          0       1        NA         0
## 3673    NA     1      1          1       1         1         1
## 3674    NA     1      1          1       1         1         1
## 3675     0    NA     NA         NA       0        NA        NA
## 3676    NA     2      2          1       2         1         1
## 3677    NA     1     NA          1       3         1         1
## 3678     1     0      0          0       1        NA         0
## 3679    NA     1      1          1       1         1         1
## 3680     1     1      1          1       1         1        NA
## 3681     1    NA     NA          1      NA         1        NA
## 3682     2     1     NA         NA       1        NA        NA
## 3683    NA    NA      3          3       3         6        NA
## 3684    NA    NA      0         NA      NA        NA        NA
## 3685    NA    NA     NA         NA      NA        NA        NA
## 3686     0    NA     NA         NA       0        NA        NA
## 3687    NA     2     NA          1       2         1         4
## 3688     2     1     NA         NA       1        NA        NA
## 3689     6     1      3          4       3         1         4
## 3690     1     1      0          0       1         1         0
## 3691     2     1      1          1       1         1         1
## 3692     1     1      1          1       1         1         1
## 3693     0    NA     NA         NA       0        NA        NA
## 3694    NA    NA     NA         NA       1        NA        NA
## 3695     4     6      5          3       4         3         4
## 3696     0     0     NA         NA      NA        NA        NA
## 3697    NA    NA     NA         NA       1        NA        NA
## 3698    NA    NA     NA         NA      NA         1        NA
## 3699    13     6     15          2       6         4         2
## 3700    16    13     10          6      13         6         3
## 3701    NA    NA     NA          1      NA        NA        NA
## 3702    15    10      8          5      15        13         8
## 3703    NA    NA     NA         NA      NA        NA         1
## 3704    NA    NA     NA         NA      NA         0        NA
## 3705    NA    NA     NA         NA      NA        NA        NA
## 3706    NA     3     NA         NA       3         3         1
## 3707     3     4      2          3       6         4         5
## 3708    NA     0     NA          0       0        NA         1
## 3709     1     3      1          3       3         3         1
## 3710    NA    NA     NA         NA      NA        NA        NA
## 3711     2     1      1          2       2         1         2
## 3712     6    NA      3         NA      NA         8        NA
## 3713     1     1      1         NA       2         1         1
## 3714    NA     0     NA         NA      NA        NA        NA
## 3715     1     1     NA         NA       1         1        NA
## 3716     1    NA     NA         NA      NA         1         1
## 3717    NA    NA     NA         NA      NA        NA        NA
## 3718    NA    NA     NA         NA      NA        NA        NA
## 3719    NA    NA     NA         NA      NA        NA        NA
## 3720     2     2     NA          4       2         2         2
## 3721     4     4      4          4       2         4         6
## 3722    NA    NA     NA         NA      NA         1        NA
## 3723    NA    NA     NA          2      NA        NA        NA
## 3724    NA    NA     NA         NA      NA        NA        NA
## 3725    NA    NA     NA         NA      NA        NA        NA
## 3726    NA    NA     NA          2       2         2         2
## 3727     8    NA     NA         NA      NA        NA        NA
## 3728    10    48     44         38      29        16        52
## 3729   171   159    165        120     105       111       146
## 3730    11     9     11         20      18        21        15
## 3731    NA    NA     NA         NA      NA        NA        NA
## 3732     3     6      6          6       3         3         6
## 3733     7    42     35         32      21        35         7
## 3734   229   218    162        208     247       155       166
## 3735    17     8     13         13      17        17        21
## 3736    19    17     13         15      21        27        19
## 3737   186   123    118        154     171       156       129
## 3738    12     6      7          4       5         6         6
## 3739     3     2      3          3       2         5         2
## 3740     4     2      6         NA       4         6         2
## 3741     4     2      3          1       3         3         3
## 3742     1     1      1          1       1         1         1
## 3743     1     2      1          1       2         1        NA
## 3744     0     2      0          0       1         0         0
## 3745    NA    NA      1         NA      NA        NA        NA
## 3746     7     7      3          3       7         6         4
## 3747    NA    NA     NA         NA       0        NA        NA
## 3748     2    NA     NA         NA      NA         2         2
## 3749     1    NA     NA          0       1         2         0
## 3750     0     0      0          0       0         0         0
## 3751    NA    NA      1         NA      NA        NA        NA
## 3752    NA    NA     NA         NA       1        NA         1
## 3753    10    10      6         10      10        NA         6
## 3754     5     1     NA         NA      NA        NA        NA
## 3755     1     2      2          4       3         1         4
## 3756     0     2      2          2       3         1         3
## 3757     4     2      5          1       2         2         5
## 3758     5     1      3          5       3         3         3
## 3759    NA    NA     NA         NA      NA        NA        NA
## 3760    NA    NA     NA         NA       0        NA        NA
## 3761     3     3     NA          3       4         6         2
## 3762     2     4     NA         NA      NA        NA        NA
## 3763     1     2      2          1       3         1         1
## 3764     2     2     NA          4       2         2        NA
## 3765     4     2      3          5       2         2         3
## 3766     3     1      3          3      NA         3        NA
## 3767    NA    NA     NA         NA      NA        NA        NA
## 3768    NA    NA     NA         NA       0        NA        NA
## 3769     3     3      6          6       7        10        10
## 3770     1     2      2          1       3         1         1
## 3771    NA    NA     NA          2      NA         2         2
## 3772    NA    NA      3          1       2         2         1
## 3773    NA    NA     NA          3      NA         3         3
## 3774    NA    NA     NA         NA      NA        NA        NA
## 3775     2     1     NA         NA      NA        NA        NA
## 3776    NA    NA     NA         NA      NA        NA        NA
## 3777     2    NA      2          1      NA         2        NA
## 3778     2     4      2         NA       2        NA         2
## 3779     3     1      3         NA       3        NA        NA
## 3780    NA    NA     NA         NA       0        NA        NA
## 3781    10    10     10         10      10        10         9
## 3782     2     1     NA         NA      NA        NA        NA
## 3783     4     2      2          1       3         1         1
## 3784     3     1      2          5       2         3         2
## 3785     8     2      7          3       4         2         5
## 3786     5     4      5          5       3         5         3
## 3787    NA    NA     NA         NA      NA        NA        NA
## 3788    NA    NA     NA         NA       0        NA        NA
## 3789    NA     2     NA         NA      NA        NA        NA
## 3790     1     1      1         NA       1         1         3
## 3791    NA    NA      0         NA      NA        NA        NA
## 3792    NA    NA     NA          6      NA        NA        NA
## 3793     8     3      8          5      NA         3        NA
## 3794    NA    NA     NA         NA      NA        NA         3
## 3795    NA    NA     NA         NA      NA         1        NA
## 3796     6    15      2          6      13        11         2
## 3797    13    13      3          3      16        22        10
## 3798    NA    NA     NA          0      NA        NA        NA
## 3799    NA    NA      7         NA      NA        NA        NA
## 3800     8     3      5         NA      NA        NA         5
## 3801    NA    NA     NA         NA      NA        NA         1
## 3802    NA    NA     NA         NA      NA         0        NA
## 3803    NA     1     NA         NA      NA        NA        NA
## 3804    NA    NA     NA         NA      NA        NA        NA
## 3805    NA    NA     NA         NA      NA        NA        NA
## 3806     2    NA      1         NA      NA        NA        NA
## 3807     1    NA     NA         NA      NA        NA        NA
## 3808    15     8     NA         13       6        11        10
## 3809     1    NA     NA         NA       0        NA         0
## 3810     1     2      2          1       3         1         2
## 3811    NA    NA     NA         NA      NA        NA        NA
## 3812     1     1      1          1       1         1         1
## 3813     3     3     NA          3      48        NA         3
## 3814    NA    NA      1         NA      NA        NA        NA
## 3815    NA     0      0         NA      NA        NA         0
## 3816     1     1      1         NA      NA        NA         1
## 3817     1    NA      2         NA      NA         1         1
## 3818    NA    NA     NA         NA      NA        NA        NA
## 3819     6     6      6         NA       2         4         2
## 3820     8     8      8          6       6         4         6
## 3821    NA    NA     NA          3      NA        NA        NA
## 3822    30    NA     19         42       2        11         8
## 3823    NA    NA     NA          3       3         3         7
## 3824   136    86     92        155     114        79       120
## 3825     2    14     11         33      36         2        21
## 3826    NA    NA     NA         NA      NA        NA        NA
## 3827    NA    NA     NA         NA      NA        NA        NA
## 3828    42    NA     14         56       7        28        42
## 3829   250   271    468        377     402        11       380
## 3830    NA    11     11         40      25        13        27
## 3831   467    32    213        395     404        13       207
## 3832     4     5      4          4       4         4         7
## 3833    12    NA      2          9       5         3         5
## 3834    20    NA      8         14      10         6         6
## 3835    NA     1      4          3       2         2         1
## 3836    NA    NA      1         NA      NA        NA        NA
## 3837     1     1      1          1       1         1         1
## 3838    NA    NA     NA         NA      NA        NA        NA
## 3839    NA    NA     NA         NA       7         1        NA
## 3840     0     0      0          0       1         0         1
## 3841    NA    NA     NA         NA      NA         1        NA
## 3842     3     8      4         NA      10        10        10
## 3843     0    NA     NA         NA       1        NA        NA
## 3844     2     2      2         NA       2        NA         2
## 3845    NA     1      1          0       1        NA         1
## 3846    NA     1     NA         NA      NA        NA        NA
## 3847     0     0      0          0       0         0         0
## 3848    NA    NA      1         NA      NA        NA        NA
## 3849    NA    NA     NA         NA       1        NA        NA
## 3850    NA    NA     NA         NA      NA         1        NA
## 3851     1     1     NA         NA      NA        NA        NA
## 3852    NA     6     NA          6      14        NA         6
## 3853    NA    NA     NA         NA      NA        NA         6
## 3854    NA    NA     NA         NA      NA        NA         4
## 3855     2    NA      1         NA      NA        NA        NA
## 3856     2     0     NA          3       5        NA         3
## 3857    NA    NA     21          3      NA         2         6
## 3858    NA    NA     NA         NA      NA        NA        NA
## 3859    NA    NA     NA         NA      NA        NA        NA
## 3860    NA    NA     NA         NA      NA         1        NA
## 3861     1     1     NA         NA      NA        NA         3
## 3862    NA     8      3          8      14        NA         1
## 3863    NA    NA     NA         NA      NA        NA        NA
## 3864     1    NA      1         NA      NA        NA        NA
## 3865     4     0     NA          3       4        NA         3
## 3866     2     4      6         14      NA        NA         6
## 3867    NA    NA     NA         NA      NA        NA        NA
## 3868    NA    NA     NA          5      NA        NA        NA
## 3869    NA    NA     NA         NA      NA        NA        NA
## 3870    NA    NA     NA         NA      NA         1        NA
## 3871    NA    NA      3          3      14         3         4
## 3872    NA    NA     NA         NA      NA        NA        NA
## 3873     2    NA      1         NA      NA        NA        NA
## 3874     2     0      1          2       4         2         2
## 3875    NA     2      4          3      NA         2        NA
## 3876    NA    NA     NA         NA      NA        NA        NA
## 3877     1     4     NA         NA      NA        NA        NA
## 3878    NA    NA      3          3       8        NA        NA
## 3879    NA    NA     NA         NA      NA        NA         4
## 3880     0     0     NA          2       2        NA        NA
## 3881    NA    NA      4         NA       2        NA         2
## 3882    NA    NA     NA         NA      NA        NA        NA
## 3883    NA    NA      3         NA      NA         1         1
## 3884     1     1     NA         NA      NA        NA        NA
## 3885     3    11     NA          8      17        NA        12
## 3886    NA    NA     NA         NA      NA        NA         4
## 3887     3    NA      1         NA      NA        NA         1
## 3888     3     3     NA          3       4         2         3
## 3889    11    NA     12         14      NA         2         8
## 3890    NA    NA     NA         NA      NA        NA        NA
## 3891    NA    NA     NA          2      NA        NA        NA
## 3892    NA    NA     NA         NA      NA        NA        NA
## 3893    NA     2      1         NA       2        NA         1
## 3894    NA    NA     NA         NA      NA        NA        NA
## 3895    NA    NA     NA         NA       1        NA        NA
## 3896    NA    NA     NA         NA      NA         1        NA
## 3897     2     2      2          2       2         2         2
## 3898     3     3      3          3       3         3         3
## 3899    NA    NA     NA          1      NA        NA        NA
## 3900    NA    NA     NA         NA      NA         0        NA
## 3901    NA     1     NA         NA      NA        NA        NA
## 3902    NA    NA     NA          1      NA        NA        NA
## 3903    NA     1     NA         NA      NA        NA         1
## 3904     3     6      5          7       7         1         4
## 3905    NA     0     NA          1      NA        NA        NA
## 3906    NA     3      1          3       2         3         3
## 3907     2    NA     NA         NA      NA        NA        NA
## 3908     0    NA     NA         NA      NA        NA        NA
## 3909     2     2      2          2       2         1         2
## 3910     6     6      8         14       6         3        14
## 3911    NA    NA      1         NA      NA        NA        NA
## 3912    NA    NA     NA          0      NA        NA         0
## 3913    NA    NA     NA          1      NA         1         1
## 3914    NA    NA     NA         NA      NA        NA        NA
## 3915    NA    NA     NA          2      NA        NA         2
## 3916    NA    NA     NA         NA      NA        NA        NA
## 3917     4     2      8          2       2        NA        NA
## 3918    NA     6     NA         NA       6        NA        NA
## 3919     6     2      6          2      NA        NA        NA
## 3920    NA    NA     NA         NA      NA        NA        NA
## 3921    NA    NA     NA         NA      NA        NA        NA
## 3922     6    NA      4          8      NA         2        NA
## 3923    NA     4     NA         11       2         2        NA
## 3924    NA    NA     NA         NA      NA        NA        NA
## 3925    NA    NA     NA          3       3         3        NA
## 3926    44    51     25         70      44        29        41
## 3927     2     8      5         14      11         2        23
## 3928    NA    NA     NA         NA      NA        NA        NA
## 3929    NA    NA     49         NA      NA        NA        NA
## 3930    95   151    144        137      85       173       106
## 3931    NA     6      8          8       4         8         4
## 3932    17    13     53         34      NA        NA        NA
## 3933    63    91     91         72     137       114        82
## 3934    NA    NA     NA         NA      NA        NA        NA
## 3935    NA     1      1          2       1        NA        NA
## 3936    NA     1     NA         NA      NA        NA        NA
## 3937     1     2      1          1       1         1         1
## 3938    NA    NA     NA          1      NA        NA        NA
## 3939     3     3      2         NA       1        NA         1
## 3940    NA     1     NA         NA      NA        NA        NA
## 3941     3     1      2          2       1         2         2
## 3942     4     0      2          5       2         2         4
## 3943    NA    NA      0         NA      NA        NA        NA
## 3944     4     6      6          8       8         2        NA
## 3945    NA    NA     NA          1       0        NA         1
## 3946     2     2     NA          4       2        NA         2
## 3947     1     1      1         NA       1        NA         1
## 3948     1     0      0          1       0         0         1
## 3949    NA    NA     NA         NA       1         1        NA
## 3950    NA    NA     NA         NA      NA         1        NA
## 3951     1    NA     NA         NA      NA        NA        NA
## 3952     3     1      3         NA       1        NA         1
## 3953     4     4      4          4       7        NA         4
## 3954     2     0     NA          0       0        NA        NA
## 3955     2    NA     NA          2       1        NA         1
## 3956    NA    NA     NA         NA      NA        NA         1
## 3957    NA    NA     NA         NA      NA        NA        NA
## 3958    NA    NA     NA         NA      NA         1        NA
## 3959     1    NA     NA         NA      NA        NA        NA
## 3960    NA     6     NA         NA       1        NA         1
## 3961    NA    NA     18          4       4         4        NA
## 3962     2    NA     NA         NA       0        NA        NA
## 3963     2    NA     NA         NA       1        NA         1
## 3964    NA    NA     NA         NA      NA        NA         1
## 3965    NA    NA     NA         NA      NA        NA        NA
## 3966    NA    NA     NA         NA      NA         1        NA
## 3967    NA     1     NA          3       1        NA         1
## 3968    NA    NA     NA          4      NA        NA         4
## 3969     0    NA     NA         NA       1        NA        NA
## 3970     2    NA     NA         NA       1        NA         1
## 3971    NA    NA     NA         NA      NA        NA         1
## 3972     1    NA     NA         NA      NA        NA        NA
## 3973    NA    NA     NA         NA      NA        NA        NA
## 3974     4    NA      4          4       4        NA        NA
## 3975     0    NA     NA         NA      NA        NA         0
## 3976    NA    NA     NA         NA      NA        NA        NA
## 3977    NA    NA     NA         NA      NA        NA        NA
## 3978    NA    NA     NA         NA      NA         1        NA
## 3979     1    NA     NA         NA      NA        NA        NA
## 3980    NA     6     NA         NA       1         3         1
## 3981     4    NA     NA          4      NA        NA         7
## 3982     3    NA      0         NA       1         0         0
## 3983     2     4      2         NA       1         2         1
## 3984    NA    NA     NA         NA      NA        NA         1
## 3985    NA    NA     NA         NA      NA        NA        NA
## 3986    NA    NA      1         NA      NA        NA        NA
## 3987     4     3      3         NA       6        NA         3
## 3988     0     0     NA         NA      NA        NA        NA
## 3989    NA    NA      0         NA      NA        NA        NA
## 3990     8     8      8         NA       8         3        NA
## 3991     5     4      5          1       5         4         1
## 3992    NA    NA      3         NA      NA         2         2
## 3993    NA    NA     NA         NA      NA        NA         5
## 3994    NA    NA     NA         NA      NA         1         4
## 3995    11    11     17         17      15         6         4
## 3996    16    13     29         25      19        10         6
## 3997    NA    NA     NA          1      NA        NA        NA
## 3998    25    14     25          7      11        11        11
## 3999    18     8     10         13       5         8         5
##  [ reached 'max' / getOption("max.print") -- omitted 462510 rows ]
str(base_de_datos)
## 'data.frame':    466509 obs. of  25 variables:
##  $ ID                  : int  1 2 3 4 5 6 7 8 9 10 ...
##  $ Año                 : int  2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 ...
##  $ Territorio          : chr  "Guadalajara" "Guadalajara" "Guadalajara" "Guadalajara" ...
##  $ Sub.Territorio      : chr  "Belenes" "Belenes" "Belenes" "Belenes" ...
##  $ CEDI                : chr  "Suc. Belenes" "Suc. Belenes" "Suc. Belenes" "Suc. Belenes" ...
##  $ Cliente             : int  77737 77737 77737 77737 77737 77737 77737 77737 77737 77737 ...
##  $ Nombre              : chr  "ABARR" "ABARR" "ABARR" "ABARR" ...
##  $ Tamaño.Cte.Industria: chr  "Extra Grande" "Extra Grande" "Extra Grande" "Extra Grande" ...
##  $ Segmento.Det        : chr  "Agua Mineral" "Agua Purificada" "Agua Purificada" "Agua Saborizada" ...
##  $ Marca               : chr  "Topo Chico A.M." "Ciel Agua Purificada" "Ciel Agua Purificada" "Ciel Exprim" ...
##  $ Presentacion        : chr  "600 ml NR" "1 Ltro. N.R." "1.5 Lts. NR" "600 ml NR" ...
##  $ Tamaño              : chr  "Individual" "Individual" "Individual" "Individual" ...
##  $ Retornable_NR       : chr  "No Retornable" "No Retornable" "No Retornable" "No Retornable" ...
##  $ Enero               : int  NA NA NA NA NA NA 1 NA 3 NA ...
##  $ Febrero             : int  NA 2 NA NA NA NA NA 1 3 NA ...
##  $ Marzo               : int  NA 8 3 NA NA 1 NA NA 4 NA ...
##  $ Abril               : int  NA 4 6 NA NA NA NA 1 4 NA ...
##  $ Mayo                : int  NA 4 3 NA NA NA 0 NA 4 NA ...
##  $ Junio               : int  NA 2 3 NA NA NA NA 1 4 0 ...
##  $ Julio               : int  NA 2 3 NA NA NA 0 NA 4 NA ...
##  $ Agosto              : int  NA 2 3 NA NA NA NA 1 7 NA ...
##  $ Septiembre          : int  NA 2 3 NA NA NA NA 1 4 NA ...
##  $ Octubre             : int  NA 2 3 NA NA NA 0 NA 3 NA ...
##  $ Noviembre           : int  NA 4 3 NA 0 NA NA NA 1 NA ...
##  $ Diciembre           : int  1 2 3 1 NA NA NA NA 3 NA ...

Limpiar todos los nombre de una tabla

base_de_datos_1<-clean_names(base_de_datos)

Exportar csv

write.csv(base_de_datos, file="bd_arca_limpia.csv", row.names=FALSE)

Función select

library(dplyr)
select <- select(base_de_datos, CEDI, Enero:Junio)
select
##                 CEDI Enero Febrero Marzo Abril Mayo Junio
## 1       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2       Suc. Belenes    NA       2     8     4    4     2
## 3       Suc. Belenes    NA      NA     3     6    3     3
## 4       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6       Suc. Belenes    NA      NA     1    NA   NA    NA
## 7       Suc. Belenes     1      NA    NA    NA    0    NA
## 8       Suc. Belenes    NA       1    NA     1   NA     1
## 9       Suc. Belenes     3       3     4     4    4     4
## 10      Suc. Belenes    NA      NA    NA    NA   NA     0
## 11      Suc. Belenes    NA       1     1     1    1     1
## 12      Suc. Belenes     0      NA    NA    NA   NA    NA
## 13      Suc. Belenes    NA       2     1     2    1     1
## 14      Suc. Belenes     3       3     3     3    3    NA
## 15      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 16      Suc. Belenes     4      NA    NA     2   NA    NA
## 17      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 18      Suc. Belenes     6      NA    NA     4   NA     4
## 19      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 20      Suc. Belenes    13      13     8    21   29     8
## 21      Suc. Belenes    NA      NA    NA    NA   NA    10
## 22      Suc. Belenes    41      38    44    76   57    67
## 23      Suc. Belenes    15      11     9    18   17    14
## 24      Suc. Belenes     5       2     2     3    3     2
## 25      Suc. Belenes    NA      NA    NA     6   NA    NA
## 26      Suc. Belenes    14       6     8    14    3     8
## 27      Suc. Belenes    14      21    28    32   14    14
## 28      Suc. Belenes    99      81    81   109   81    95
## 29      Suc. Belenes    25       6    11    27   27    23
## 30      Suc. Belenes    95      74    80   129  106   108
## 31      Suc. Belenes     3       2     1     3    4     2
## 32      Suc. Belenes     2       3     2     3    5     2
## 33      Suc. Belenes     6      NA     4     2    4     2
## 34      Suc. Belenes     3       1    NA     1    1     1
## 35      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 36      Suc. Belenes    NA      NA     1     1    1     1
## 37      Suc. Belenes    NA      NA    NA     1   NA    NA
## 38      Suc. Belenes     1      NA    NA    NA   NA    NA
## 39      Suc. Belenes     2       0     0     0    0     0
## 40      Suc. Belenes     1       1     1     0    1     1
## 41      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 42      Suc. Belenes     0      NA    NA     0   NA     1
## 43      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 44      Suc. Belenes    NA      NA     0     0    0     0
## 45      Suc. Belenes     1       1    NA     1    1     1
## 46      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 47      Suc. Belenes    NA      NA    NA    NA   NA     1
## 48      Suc. Belenes    NA      NA    NA     3   NA     3
## 49      Suc. Belenes     0      NA    NA    NA    0    NA
## 50      Suc. Belenes    NA      NA     0    NA    1     1
## 51      Suc. Belenes     1      NA     1     2    2     2
## 52      Suc. Belenes     2      NA     1     2    1     3
## 53      Suc. Belenes     0      NA    NA     0   NA    NA
## 54      Suc. Belenes    NA      NA     0     0   NA    NA
## 55      Suc. Belenes    NA      NA    NA    NA   NA     1
## 56      Suc. Belenes     0      NA    NA    NA    0    NA
## 57      Suc. Belenes    NA      NA    NA    NA    0     1
## 58      Suc. Belenes     1      NA     1     2    2     2
## 59      Suc. Belenes    NA       1    NA    NA    2    NA
## 60      Suc. Belenes     0      NA    NA     0   NA    NA
## 61      Suc. Belenes    NA      NA     0     0   NA    NA
## 62      Suc. Belenes     0      NA    NA    NA    0    NA
## 63      Suc. Belenes    NA      NA    NA    NA    0     1
## 64      Suc. Belenes     1      NA     1     2    2     2
## 65      Suc. Belenes    NA       1    NA     1    1    NA
## 66      Suc. Belenes     0      NA    NA     0   NA    NA
## 67      Suc. Belenes    NA      NA    NA    NA   NA     1
## 68      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 69      Suc. Belenes     2      NA    NA    NA   NA    NA
## 70      Suc. Belenes     1      NA    NA    NA   NA     3
## 71      Suc. Belenes    NA      NA     0     0   NA    NA
## 72      Suc. Belenes    NA      NA    NA    NA   NA     1
## 73      Suc. Belenes    NA      NA     3    NA    3     3
## 74      Suc. Belenes     0      NA    NA     1    0    NA
## 75      Suc. Belenes    NA      NA    NA     0   NA     1
## 76      Suc. Belenes     1      NA     1     2    4     2
## 77      Suc. Belenes     1       2     3     2    4    NA
## 78      Suc. Belenes     0      NA    NA     0   NA    NA
## 79      Suc. Belenes    NA      NA     0     0   NA    NA
## 80      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 81      Suc. Belenes     1       1     1     1    1     1
## 82      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 83      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 84      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 85      Suc. Belenes     2       8     4     8    4     4
## 86      Suc. Belenes     3      NA     3     6    6     6
## 87      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 88      Suc. Belenes     5       3     3    NA    3     3
## 89      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 90      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 91      Suc. Belenes    NA      NA     1    NA   NA    NA
## 92      Suc. Belenes     2       3     3     3    4     5
## 93      Suc. Belenes    NA      NA    NA    NA   NA     0
## 94      Suc. Belenes     1      NA    NA     1    1     3
## 95      Suc. Belenes     2      NA    NA     1    2     1
## 96      Suc. Belenes     3       3     6     3    3     6
## 97      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 98      Suc. Belenes    NA      NA    NA    NA   NA     1
## 99      Suc. Belenes    NA      NA    NA    NA   NA     1
## 100     Suc. Belenes     2       4    NA     2    2    NA
## 101     Suc. Belenes    NA       1    NA     1    1    NA
## 102     Suc. Belenes     2       2     2     2   NA     2
## 103     Suc. Belenes    NA      NA    NA     3   NA     3
## 104     Suc. Belenes    NA      NA     3    NA   NA    NA
## 105     Suc. Belenes    NA      NA    NA    NA   NA     2
## 106     Suc. Belenes     2       2     2     2    4     2
## 107     Suc. Belenes     1      NA    NA    NA   NA    NA
## 108     Suc. Belenes    NA       1    NA     1    1    NA
## 109     Suc. Belenes    NA      NA    NA     2   NA    NA
## 110     Suc. Belenes     1      NA    NA    NA   NA     1
## 111     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 112     Suc. Belenes     3      NA     3     8   NA    NA
## 113     Suc. Belenes    NA      NA    NA    NA   NA     3
## 114     Suc. Belenes     6       3     6     6    3    10
## 115     Suc. Belenes     3       3     5     3    8     5
## 116     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 117     Suc. Belenes     3       3     3     6    3    NA
## 118     Suc. Belenes     7      NA     4    NA   NA    NA
## 119     Suc. Belenes    46      39    35    32   53    39
## 120     Suc. Belenes     2       4     4     6    4     4
## 121     Suc. Belenes     8      13    11     6   13    15
## 122     Suc. Belenes    49      46    46    38   46    44
## 123     Suc. Belenes     5       3     3     5    3     3
## 124     Suc. Belenes     2       2     2     2    2     2
## 125     Suc. Belenes     3       3     4     2    2     1
## 126     Suc. Belenes     1       1    NA     1    3     1
## 127     Suc. Belenes    NA       1    NA     1   NA    NA
## 128     Suc. Belenes     1       1    NA     2    4     3
## 129     Suc. Belenes     0       0     1     0    0     0
## 130     Suc. Belenes     3      NA     1     1    1     1
## 131     Suc. Belenes    NA       2    NA    NA   NA    NA
## 132     Suc. Belenes     0      NA    NA    NA   NA    NA
## 133     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 134     Suc. Belenes     1       0    NA     0   NA     0
## 135     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 136     Suc. Belenes    NA       1    NA     0    0     0
## 137     Suc. Belenes    NA      NA    NA    NA    1    NA
## 138     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 139     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 140     Suc. Belenes    NA      NA    NA    NA   NA     2
## 141     Suc. Belenes     1      NA     1     1   NA     3
## 142     Suc. Belenes     0      NA    NA    NA    1     0
## 143     Suc. Belenes     1      NA    NA     1    1    NA
## 144     Suc. Belenes    NA      NA    NA    NA    1    NA
## 145     Suc. Belenes    NA       0    NA    NA   NA    NA
## 146     Suc. Belenes    NA      NA    NA    NA   NA     2
## 147     Suc. Belenes     1      NA     1     1   NA    NA
## 148     Suc. Belenes    NA      NA    NA     0   NA     0
## 149     Suc. Belenes     1      NA    NA     1    1     2
## 150     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 151     Suc. Belenes    NA       0    NA    NA   NA    NA
## 152     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 153     Suc. Belenes     1      NA     1     1   NA    NA
## 154     Suc. Belenes    NA      NA    NA    NA   NA     1
## 155     Suc. Belenes     1      NA    NA     1    1    NA
## 156     Suc. Belenes     1      NA    NA    NA   NA    NA
## 157     Suc. Belenes    NA      NA    NA    NA    1    NA
## 158     Suc. Belenes    NA      NA    NA    NA   NA     2
## 159     Suc. Belenes    NA      NA     3    NA   NA    NA
## 160     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 161     Suc. Belenes    NA       2    NA    NA   NA    NA
## 162     Suc. Belenes    NA      NA     3    NA   NA    NA
## 163     Suc. Belenes    NA       0    NA    NA   NA    NA
## 164     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 165     Suc. Belenes    NA      NA    NA    NA   NA     2
## 166     Suc. Belenes     1      NA     1     1    3    NA
## 167     Suc. Belenes    NA      NA    NA    NA   NA     0
## 168     Suc. Belenes     1      NA    NA     1    1    NA
## 169     Suc. Belenes    NA      NA    NA    NA    1    NA
## 170     Suc. Belenes    NA       0    NA    NA   NA    NA
## 171     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 172     Suc. Belenes     1      NA     1    NA    3     1
## 173     Suc. Belenes    NA      NA    NA    NA    1    NA
## 174     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 175     Suc. Belenes     2      27     6    15   17    13
## 176     Suc. Belenes     6      41    10    16   38    32
## 177     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 178     Suc. Belenes    NA      NA    NA    NA    1    NA
## 179     Suc. Belenes    NA       5     8     5   15    13
## 180     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 181     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 182     Suc. Belenes    NA      NA    NA     6   NA     3
## 183     Suc. Belenes    NA      NA     1    NA   NA    NA
## 184     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 185     Suc. Belenes     4       1     1     3    5     2
## 186     Suc. Belenes    NA      NA    NA    NA   NA     0
## 187     Suc. Belenes     1       1    NA     3    4     2
## 188     Suc. Belenes     2       2    NA     1    2     1
## 189     Suc. Belenes     6       6     6    17    6    17
## 190     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 191     Suc. Belenes    NA      NA    NA     1   NA     1
## 192     Suc. Belenes    NA      NA    NA    NA   NA     1
## 193     Suc. Belenes    NA       6    NA    NA   NA    NA
## 194     Suc. Belenes    NA       2    NA    NA   NA    NA
## 195     Suc. Belenes     2       2    NA    NA   NA     2
## 196     Suc. Belenes    NA       1    NA    NA   NA    NA
## 197     Suc. Belenes     6       6     8    11    8     8
## 198     Suc. Belenes     2       3    NA    NA   NA     2
## 199     Suc. Belenes     3      11     3     6    6     6
## 200     Suc. Belenes     8       8     6    11   11     6
## 201     Suc. Belenes     4       7     7     7   11    14
## 202     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 203     Suc. Belenes    11      11    11    13   11     6
## 204     Suc. Belenes     2       3    NA     1    1     1
## 205     Suc. Belenes    NA      NA    NA     2    3    NA
## 206     Suc. Belenes    NA       1    NA     1   NA    NA
## 207     Suc. Belenes    NA       2     2    NA    2    NA
## 208     Suc. Belenes    NA      NA     0    NA   NA    NA
## 209     Suc. Belenes    NA       3    NA    NA   NA    NA
## 210     Suc. Belenes    NA       4     2     2    2     2
## 211     Suc. Belenes    17      11    15    11   13    11
## 212     Suc. Belenes     8      11    29     8   13     5
## 213     Suc. Belenes    NA       3     3    13    6    16
## 214     Suc. Belenes    16      16    19    10   22     6
## 215     Suc. Belenes     9       8     8     6    9     5
## 216     Suc. Belenes     2       3     3     3    3     2
## 217     Suc. Belenes     6       6     6    14   17    14
## 218     Suc. Belenes     6       8     6     8    8     3
## 219     Suc. Belenes    18      28    25    39   28    25
## 220     Suc. Belenes    56      53    32    56   56    25
## 221     Suc. Belenes    NA      NA    NA     5    2    NA
## 222     Suc. Belenes     4       2     4     6    4     4
## 223     Suc. Belenes    21      21    15    27   25    13
## 224     Suc. Belenes    57      53    49    87   57    42
## 225     Suc. Belenes     3       7     6     9    8     8
## 226     Suc. Belenes     5      11    NA     3    6     2
## 227     Suc. Belenes     2      10    NA    NA   NA     4
## 228     Suc. Belenes     1       5     4     4    3     3
## 229     Suc. Belenes     1       1     2     2    2     1
## 230     Suc. Belenes    NA      NA    NA     1   NA    NA
## 231     Suc. Belenes     3      NA     2     4    4     1
## 232     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 233     Suc. Belenes    NA       1    NA    NA   NA    NA
## 234     Suc. Belenes     2       0    NA     0    0     0
## 235     Suc. Belenes     1      NA    NA    NA    0    NA
## 236     Suc. Belenes     6       5     3     3    4     4
## 237     Suc. Belenes    NA      NA    NA    NA   NA     1
## 238     Suc. Belenes     2      NA    NA    NA   NA    NA
## 239     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 240     Suc. Belenes    NA      NA    NA    NA    2    NA
## 241     Suc. Belenes     0       0    NA     0    0     0
## 242     Suc. Belenes     1      NA    NA     1    1     1
## 243     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 244     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 245     Suc. Belenes    NA      NA    NA    NA    2    NA
## 246     Suc. Belenes     3       4     3     3    6     3
## 247     Suc. Belenes    NA      NA    NA     2    4    NA
## 248     Suc. Belenes    NA       1     1    NA    2    NA
## 249     Suc. Belenes     2       1     2     2    1     2
## 250     Suc. Belenes    NA       1     3     1    2     1
## 251     Suc. Belenes    NA       0    NA    NA   NA    NA
## 252     Suc. Belenes    NA       1    NA     6    3    NA
## 253     Suc. Belenes    NA      NA    NA     2    4    NA
## 254     Suc. Belenes    NA       1    NA     1    1    NA
## 255     Suc. Belenes    NA       1    NA    NA    1    NA
## 256     Suc. Belenes    NA       1     1     3    1     3
## 257     Suc. Belenes    NA       0    NA    NA   NA    NA
## 258     Suc. Belenes    NA       1    NA     3    3     3
## 259     Suc. Belenes    NA      NA    NA     2    4    NA
## 260     Suc. Belenes    NA       1     1    NA    4     0
## 261     Suc. Belenes    NA       1     2    NA    1    NA
## 262     Suc. Belenes    NA       1     2     2    1     2
## 263     Suc. Belenes    NA       1    NA    NA   NA     1
## 264     Suc. Belenes     3      11    NA     6    3    NA
## 265     Suc. Belenes    NA       4    NA     4   NA    NA
## 266     Suc. Belenes     2      NA    NA    NA   NA    NA
## 267     Suc. Belenes     1      NA    NA    NA   NA    NA
## 268     Suc. Belenes    NA       0    NA    NA   NA    NA
## 269     Suc. Belenes     2      NA    NA    NA   NA    NA
## 270     Suc. Belenes     6      10     8     8   11     3
## 271     Suc. Belenes    NA       4    NA     2    7    NA
## 272     Suc. Belenes     0       1     2     0    8     1
## 273     Suc. Belenes     2       3    NA     2    3    NA
## 274     Suc. Belenes     2       2     4     3    2     3
## 275     Suc. Belenes    NA       0    NA    NA   NA    NA
## 276     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 277     Suc. Belenes     4       6     1     2    4     1
## 278     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 279     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 280     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 281     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 282     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 283     Suc. Belenes     4      11    66     2    2     2
## 284     Suc. Belenes     6       3    67     3    3     3
## 285     Suc. Belenes    NA      NA    NA     0    0     0
## 286     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 287     Suc. Belenes    NA      NA    51    NA   NA    NA
## 288     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 289     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 290     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 291     Suc. Belenes    NA       0     2    NA    3     2
## 292     Suc. Belenes    NA      NA     2     2    3     2
## 293     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 294     Suc. Belenes    NA      NA    NA    NA    1    NA
## 295     Suc. Belenes     1      NA    NA     1   NA    NA
## 296     Suc. Belenes     3      NA     1     1   NA     1
## 297     Suc. Belenes     4       1     6     5    5    11
## 298     Suc. Belenes     0      NA     1    NA   NA     1
## 299     Suc. Belenes    NA       1     1     1    1     1
## 300     Suc. Belenes    NA      NA     2    NA   NA    NA
## 301     Suc. Belenes    NA       2     4     1    1     1
## 302     Suc. Belenes    NA       6     8     6   NA    11
## 303     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 304     Suc. Belenes    NA      NA    NA     0    0     0
## 305     Suc. Belenes    NA      NA    NA     1    1     1
## 306     Suc. Belenes    NA      NA    NA    NA   NA     1
## 307     Suc. Belenes     2       6    NA    NA   NA    NA
## 308     Suc. Belenes    NA      NA    NA    NA   NA     1
## 309     Suc. Belenes    NA      NA    NA    NA   NA     2
## 310     Suc. Belenes    NA      27    NA    27   NA    NA
## 311     Suc. Belenes    48      NA    NA    70   NA    NA
## 312     Suc. Belenes    14      18     4    56   NA    NA
## 313     Suc. Belenes    13      25    32    25   NA    25
## 314     Suc. Belenes     2       3     2    16   NA    NA
## 315     Suc. Belenes     2      NA    NA    NA    2    NA
## 316     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 317     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 318     Suc. Belenes    36      27    NA    27   NA    27
## 319     Suc. Belenes    NA      45    NA    34   NA    NA
## 320     Suc. Belenes    NA      NA    NA    NA   NA    41
## 321     Suc. Belenes    44       3    22    98   86    44
## 322     Suc. Belenes     3      17    12    18   21     6
## 323     Suc. Belenes    23      NA    NA    NA   NA    NA
## 324     Suc. Belenes     8      42    NA    42   NA    37
## 325     Suc. Belenes    NA       6    NA     8    6    37
## 326     Suc. Belenes    63      46   187     4   56    92
## 327     Suc. Belenes   240     222   278    42   95   380
## 328     Suc. Belenes     6       4     4     6    6    34
## 329     Suc. Belenes    11      85    -4    25   53    51
## 330     Suc. Belenes   192     129   205   499   11     2
## 331     Suc. Belenes    13      NA    15    13   NA    13
## 332     Suc. Belenes    NA      NA     3    NA   NA     2
## 333     Suc. Belenes    NA      NA    NA    NA    4     2
## 334     Suc. Belenes     1      15    NA    NA   NA     1
## 335     Suc. Belenes    NA      NA     1    NA   NA    NA
## 336     Suc. Belenes     1       2     1     5    1     3
## 337     Suc. Belenes    NA      NA     1     2    1     2
## 338     Suc. Belenes     1       3     3     5    2     6
## 339     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 340     Suc. Belenes    NA       1    NA    NA   NA    NA
## 341     Suc. Belenes     2       2     0     1    1     1
## 342     Suc. Belenes    NA      NA    NA    NA    0    NA
## 343     Suc. Belenes     3       2    12     1    4    26
## 344     Suc. Belenes     3       1     1     4    2     3
## 345     Suc. Belenes    NA      NA    NA    NA   NA     1
## 346     Suc. Belenes     4      NA     2     2    2    NA
## 347     Suc. Belenes     1      NA     1     1    1     1
## 348     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 349     Suc. Belenes    NA      NA    NA    NA   NA     1
## 350     Suc. Belenes    NA       1     1     0    0     1
## 351     Suc. Belenes     1       1     1     2    3    NA
## 352     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 353     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 354     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 355     Suc. Belenes    NA      NA    NA    NA   NA     2
## 356     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 357     Suc. Belenes    NA      11    31     3    8    28
## 358     Suc. Belenes    NA      NA    NA    NA    6    NA
## 359     Suc. Belenes     0       3    NA    NA   NA    NA
## 360     Suc. Belenes    NA       2     1     1    2     1
## 361     Suc. Belenes     2      NA     7     2    8    NA
## 362     Suc. Belenes     1       1     3     1    1     1
## 363     Suc. Belenes    NA       2    NA    NA   NA    NA
## 364     Suc. Belenes    NA      NA    NA    NA   NA     2
## 365     Suc. Belenes    NA       6    NA     3    6     6
## 366     Suc. Belenes     0      NA    NA    NA   NA    NA
## 367     Suc. Belenes     1       1    NA     1    2    NA
## 368     Suc. Belenes     2      NA     3    NA    6    NA
## 369     Suc. Belenes     1      NA     1     1    1    NA
## 370     Suc. Belenes    NA       2    NA    NA   NA    NA
## 371     Suc. Belenes     2       2    NA     2    2    NA
## 372     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 373     Suc. Belenes    NA      NA    NA    11    3     6
## 374     Suc. Belenes     0      NA    NA    NA   NA    NA
## 375     Suc. Belenes    NA       2    NA     1    2     1
## 376     Suc. Belenes    NA      NA    NA     2   NA    NA
## 377     Suc. Belenes    NA      NA     7    NA    2    NA
## 378     Suc. Belenes    NA       1     1     1   NA     1
## 379     Suc. Belenes    NA      NA     1    NA   NA    NA
## 380     Suc. Belenes    NA      NA    NA    NA   NA     2
## 381     Suc. Belenes     8      11    28    NA   NA    31
## 382     Suc. Belenes    NA       1     0    NA    2    NA
## 383     Suc. Belenes    NA      NA     2    NA    6    NA
## 384     Suc. Belenes    NA      NA    NA     1    1    NA
## 385     Suc. Belenes    NA       2    NA    NA   NA    NA
## 386     Suc. Belenes     4       2     4     2    2     2
## 387     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 388     Suc. Belenes    NA      NA    NA    NA   NA     2
## 389     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 390     Suc. Belenes    NA      11    42    11   NA    31
## 391     Suc. Belenes    NA      NA     6     6    6     3
## 392     Suc. Belenes     0       3    NA    NA   NA    NA
## 393     Suc. Belenes    NA       1     1     1    0     3
## 394     Suc. Belenes    NA      NA    NA    NA   NA     2
## 395     Suc. Belenes     2       2     7    NA    6     2
## 396     Suc. Belenes     3      NA     7     6    1     9
## 397     Suc. Belenes    NA       2    NA    NA   NA    NA
## 398     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 399     Suc. Belenes     1       6    11     5   10    13
## 400     Suc. Belenes    NA      NA    NA    NA   NA     1
## 401     Suc. Belenes    NA      NA    NA    NA   NA     0
## 402     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 403     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 404     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 405     Suc. Belenes     4       2     2     4    4     2
## 406     Suc. Belenes     6       3     3    10    3     3
## 407     Suc. Belenes     3      NA    NA    NA    3    NA
## 408     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 409     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 410     Suc. Belenes    NA       2    NA    NA   NA    NA
## 411     Suc. Belenes     0      NA     0     1   NA    NA
## 412     Suc. Belenes    NA      NA     2    NA   NA     1
## 413     Suc. Belenes     1       1     1    NA    1     1
## 414     Suc. Belenes    NA      NA    NA    NA   NA     4
## 415     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 416     Suc. Belenes    NA       2    NA     2    1     1
## 417     Suc. Belenes     2      NA     2    NA   NA    NA
## 418     Suc. Belenes     2       1     1     1    2     1
## 419     Suc. Belenes     6       6     3     6    6     6
## 420     Suc. Belenes    NA      NA     3    NA    1    NA
## 421     Suc. Belenes    NA       0     1     1    1     1
## 422     Suc. Belenes     1      NA    NA    NA   NA    NA
## 423     Suc. Belenes     1       1     1     1    1     1
## 424     Suc. Belenes    NA      NA    NA    NA   NA     1
## 425     Suc. Belenes     2      NA     2     2    2     2
## 426     Suc. Belenes    11      11    17    11    8    13
## 427     Suc. Belenes     3       6     8    11   11    11
## 428     Suc. Belenes     4      NA    NA    NA   NA    NA
## 429     Suc. Belenes     2       2     3     3    3     2
## 430     Suc. Belenes    17      13    15     8   15    15
## 431     Suc. Belenes     1       1     2     1    1     2
## 432     Suc. Belenes     2      NA     4     2    2     2
## 433     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 434     Suc. Belenes     2       2     4     4    2     4
## 435     Suc. Belenes     1       1     1    NA   NA    NA
## 436     Suc. Belenes    21      NA    NA    NA    2    15
## 437     Suc. Belenes    16      34    45    45   32    24
## 438     Suc. Belenes    NA      NA    NA    NA   NA     3
## 439     Suc. Belenes    22      13    29    44   10    13
## 440     Suc. Belenes     9       6    15    12   14    12
## 441     Suc. Belenes     8       5     5     8    5     8
## 442     Suc. Belenes     3       3     6    13    3     3
## 443     Suc. Belenes     6       3     3     8    3     6
## 444     Suc. Belenes    49      60    49    63   60    46
## 445     Suc. Belenes   102      70   116   134  130    99
## 446     Suc. Belenes     4       6     4     8    6     8
## 447     Suc. Belenes    27      23    42    40   32    40
## 448     Suc. Belenes    72      55    70    80   91    70
## 449     Suc. Belenes    NA       3    NA    NA   NA    NA
## 450     Suc. Belenes    21      14    15    15   16    18
## 451     Suc. Belenes     2       3     3     2    2    NA
## 452     Suc. Belenes     3       3     3     3    2     1
## 453     Suc. Belenes    NA       1    NA    NA   NA    NA
## 454     Suc. Belenes     1       1     1     1    1     1
## 455     Suc. Belenes     1       1    NA     2   NA    NA
## 456     Suc. Belenes     1      NA    NA    NA    1     1
## 457     Suc. Belenes     1       0     0     0    0     0
## 458     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 459     Suc. Belenes     2      NA     3     1    1     4
## 460     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 461     Suc. Belenes     2      NA     2    NA    2    NA
## 462     Suc. Belenes     1      NA    NA    NA    0     0
## 463     Suc. Belenes    NA      NA    NA    NA   NA     1
## 464     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 465     Suc. Belenes     1       0     0     0    0     0
## 466     Suc. Belenes     3       1     1     2    3     3
## 467     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 468     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 469     Suc. Belenes    NA      NA    NA    NA   NA     1
## 470     Suc. Belenes     3      NA     1    NA   NA    NA
## 471     Suc. Belenes    NA      NA     7     4    4     4
## 472     Suc. Belenes     0      NA     0    NA   NA    NA
## 473     Suc. Belenes     1      NA     0     0    1     0
## 474     Suc. Belenes    NA       2    NA    NA    2     2
## 475     Suc. Belenes    NA       2    NA     3    2     2
## 476     Suc. Belenes     1       1    NA     2    1     1
## 477     Suc. Belenes    NA       0    NA    NA   NA    NA
## 478     Suc. Belenes    NA      NA    NA    NA   NA     1
## 479     Suc. Belenes    NA      NA     1    NA    3    NA
## 480     Suc. Belenes    NA      NA     4    NA   NA     4
## 481     Suc. Belenes     0      NA     0    NA   NA    NA
## 482     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 483     Suc. Belenes     2      NA    NA    NA   NA    NA
## 484     Suc. Belenes    NA      NA    NA     1   NA    NA
## 485     Suc. Belenes     1      NA     1     1    1     1
## 486     Suc. Belenes    NA       0    NA    NA   NA    NA
## 487     Suc. Belenes    NA      NA     1     3    3    NA
## 488     Suc. Belenes    NA       4     4     7   NA     4
## 489     Suc. Belenes     0      NA     0    NA   NA    NA
## 490     Suc. Belenes    NA      NA     0    NA    0    NA
## 491     Suc. Belenes    NA       2    NA    NA    2     2
## 492     Suc. Belenes    NA      NA    NA     1   NA    NA
## 493     Suc. Belenes     1       2     1     3    1     1
## 494     Suc. Belenes    NA       2    NA    NA   NA    NA
## 495     Suc. Belenes     1      NA     2    NA   NA     1
## 496     Suc. Belenes    NA      NA    NA    NA   NA     1
## 497     Suc. Belenes    NA       3    NA     3   NA    NA
## 498     Suc. Belenes    NA       4    11     7    4     4
## 499     Suc. Belenes     1      NA    NA    NA   NA    NA
## 500     Suc. Belenes    NA       0    NA    NA    0    NA
## 501     Suc. Belenes     1      NA     1    NA    1     1
## 502     Suc. Belenes    NA       0    NA    NA   NA    NA
## 503     Suc. Belenes     4      NA    NA     2   NA    NA
## 504     Suc. Belenes    NA      NA    NA    NA   NA     1
## 505     Suc. Belenes     3      NA     1    NA   NA     3
## 506     Suc. Belenes     4      NA    11     4    7     7
## 507     Suc. Belenes     0      NA     0    NA   NA    NA
## 508     Suc. Belenes    NA      NA    NA     0    1     0
## 509     Suc. Belenes    NA       2    NA     2   NA     2
## 510     Suc. Belenes     2       2     2     1   NA    NA
## 511     Suc. Belenes     2       2     1     3    3     1
## 512     Suc. Belenes    NA       0    NA    NA   NA    NA
## 513     Suc. Belenes    NA      NA     1    NA   NA    NA
## 514     Suc. Belenes     3       1     6     3    1     3
## 515     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 516     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 517     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 518     Suc. Belenes     2       8   150     2    2     2
## 519     Suc. Belenes     3       6    10     3    3     3
## 520     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 521     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 522     Suc. Belenes    NA      NA     3    NA   NA    NA
## 523     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 524     Suc. Belenes    NA      NA    NA     0   NA    NA
## 525     Suc. Belenes    NA      NA     1    NA   NA    NA
## 526     Suc. Belenes     1       1     1     0    0    NA
## 527     Suc. Belenes     2       1     3     1    1     1
## 528     Suc. Belenes    NA      NA    NA     2    2     4
## 529     Suc. Belenes    NA      NA    NA    NA   NA     1
## 530     Suc. Belenes    NA       1     1     1    1     3
## 531     Suc. Belenes     2       2    NA    NA   NA    NA
## 532     Suc. Belenes    NA       1     1     1    1     2
## 533     Suc. Belenes    NA       8    11     8    6     6
## 534     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 535     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 536     Suc. Belenes    NA       1    NA    NA   NA     1
## 537     Suc. Belenes    NA      NA    NA     1   NA     2
## 538     Suc. Belenes     2       2    NA    NA   NA    NA
## 539     Suc. Belenes    NA       1    NA    NA   NA    NA
## 540     Suc. Belenes     2       4    NA    NA    2    NA
## 541     Suc. Belenes    11      13    13    13   42     2
## 542     Suc. Belenes    NA      NA    NA    NA   NA     2
## 543     Suc. Belenes    14      17    11    11   11     8
## 544     Suc. Belenes     8       8    14    14    8    14
## 545     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 546     Suc. Belenes    15      17    17    21   17    46
## 547     Suc. Belenes     2       1     3     2    3     2
## 548     Suc. Belenes     2       2     2    NA   NA    NA
## 549     Suc. Belenes     2       4     4     4    2     4
## 550     Suc. Belenes    11      14    14    17   14     8
## 551     Suc. Belenes     2       4     6     4    4     4
## 552     Suc. Belenes    NA       1    NA    NA   NA    NA
## 553     Suc. Belenes    13      17    17    19   51    27
## 554     Suc. Belenes    16      16    11    11    8    NA
## 555     Suc. Belenes    13      16    16    10    6    51
## 556     Suc. Belenes    32      32    48    35  120    10
## 557     Suc. Belenes     9       6    12    14   11    24
## 558     Suc. Belenes     5      NA     5     5    5     5
## 559     Suc. Belenes    17      14    14    18   20    17
## 560     Suc. Belenes    11      11    11     6   14     3
## 561     Suc. Belenes    25      60    74   116  190    88
## 562     Suc. Belenes   120     106   116   113  225   116
## 563     Suc. Belenes    23      25    21    38   55    30
## 564     Suc. Belenes    80      82    97    97  222   131
## 565     Suc. Belenes    NA       1     1    NA   NA     1
## 566     Suc. Belenes     3       5     6     6   20     2
## 567     Suc. Belenes     6       3     6     6   24    NA
## 568     Suc. Belenes     4       6     4     8    2    30
## 569     Suc. Belenes     2       4     4     4    5     3
## 570     Suc. Belenes    NA       1     1     1    2     2
## 571     Suc. Belenes    NA       1    NA    NA   NA    NA
## 572     Suc. Belenes     1       1    NA     3    1     3
## 573     Suc. Belenes     1       0     0     0    0     1
## 574     Suc. Belenes    NA      NA     3    NA    1     3
## 575     Suc. Belenes     2      NA    NA     2   NA     2
## 576     Suc. Belenes     1       1     1    NA   NA     0
## 577     Suc. Belenes    NA      NA    NA    NA   NA     1
## 578     Suc. Belenes    NA       0     0     1    1     2
## 579     Suc. Belenes     1       1     1     2    1     1
## 580     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 581     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 582     Suc. Belenes     2       2     2     2    4     4
## 583     Suc. Belenes    NA      NA    NA    NA   NA     2
## 584     Suc. Belenes    NA      NA     4     3    6     3
## 585     Suc. Belenes    NA      NA     4    NA   NA    NA
## 586     Suc. Belenes     1       1     1     0    0    NA
## 587     Suc. Belenes    NA      NA    NA    NA    0    NA
## 588     Suc. Belenes     1       2     1     1    1     1
## 589     Suc. Belenes     1       3     1     2    2     3
## 590     Suc. Belenes    NA       0     0    NA   NA    NA
## 591     Suc. Belenes    NA      NA    NA    NA   NA     2
## 592     Suc. Belenes    NA      NA     1    NA   NA    NA
## 593     Suc. Belenes     1       0     1     0    0    NA
## 594     Suc. Belenes     0      NA    NA    NA    0    NA
## 595     Suc. Belenes     1      NA     1     1    1     1
## 596     Suc. Belenes    NA      NA    NA    NA    1     1
## 597     Suc. Belenes    NA       0     0    NA   NA    NA
## 598     Suc. Belenes    NA      NA     4    NA   NA    NA
## 599     Suc. Belenes    NA      NA     1    NA   NA    NA
## 600     Suc. Belenes     1       1     1     0    0    NA
## 601     Suc. Belenes    NA      NA    NA    NA    0    NA
## 602     Suc. Belenes     1      NA     1     1    1     1
## 603     Suc. Belenes    NA      NA     2     1    1     1
## 604     Suc. Belenes     2       1    NA    NA    1     1
## 605     Suc. Belenes    NA      NA    NA    NA   NA     2
## 606     Suc. Belenes    NA       3    NA     3   NA     3
## 607     Suc. Belenes     4       7     7    NA   NA    NA
## 608     Suc. Belenes    NA      NA    NA    NA    0    NA
## 609     Suc. Belenes     1      NA    NA    NA    3    NA
## 610     Suc. Belenes    NA       0     0    NA   NA    NA
## 611     Suc. Belenes     8       6     8     8    4    34
## 612     Suc. Belenes    NA      NA    NA    NA   NA     2
## 613     Suc. Belenes     3      NA     4    NA    6    NA
## 614     Suc. Belenes    NA       7     4     7   NA    NA
## 615     Suc. Belenes     1       1     1     0    0    NA
## 616     Suc. Belenes     0       0     0     1    0     0
## 617     Suc. Belenes     1      NA     1     1    1     3
## 618     Suc. Belenes     1       3     3     3    3     2
## 619     Suc. Belenes    NA       0     0    NA   NA    NA
## 620     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 621     Suc. Belenes     3      18     2     1   11    13
## 622     Suc. Belenes    NA      NA    NA    NA   NA     1
## 623     Suc. Belenes    NA      NA    NA    NA   NA     0
## 624     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 625     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 626     Suc. Belenes     6      15     2     2    8     6
## 627     Suc. Belenes    10      13     3     6   10     3
## 628     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 629     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 630     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 631     Suc. Belenes    NA       1    NA    NA   NA    NA
## 632     Suc. Belenes    NA      NA    NA    NA    1    NA
## 633     Suc. Belenes     7       6     5     7    4     9
## 634     Suc. Belenes     3       2     3     3    2     1
## 635     Suc. Belenes    NA       1     1     1    1     1
## 636     Suc. Belenes    NA      NA    NA    NA    2    NA
## 637     Suc. Belenes    NA       1     1     2    1     1
## 638     Suc. Belenes     3       3    14    25   17    25
## 639     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 640     Suc. Belenes    NA       0    NA    NA   NA    NA
## 641     Suc. Belenes    NA      NA     1     1    3    NA
## 642     Suc. Belenes     3      NA     2     1    3     7
## 643     Suc. Belenes     2       6     6    NA   NA    NA
## 644     Suc. Belenes     2      NA    NA     1   NA    NA
## 645     Suc. Belenes     4      NA     4     6    2     4
## 646     Suc. Belenes    44      66    40    46   72    44
## 647     Suc. Belenes    14      11    11    14   15    15
## 648     Suc. Belenes    99     116    68    76  113   101
## 649     Suc. Belenes    82      76    82    82  104    96
## 650     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 651     Suc. Belenes    42      40    40    68   46    55
## 652     Suc. Belenes    15      16    16    18   17    16
## 653     Suc. Belenes     8       8     9     8    9     6
## 654     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 655     Suc. Belenes     6       8     8     4    4     6
## 656     Suc. Belenes    34      14    37    31   42    20
## 657     Suc. Belenes     6       2     6     4    4     4
## 658     Suc. Belenes    NA      NA     1    NA   NA     1
## 659     Suc. Belenes    NA      NA    NA    NA    8    NA
## 660     Suc. Belenes    98     114    69    87   74    45
## 661     Suc. Belenes    NA      NA    NA    NA   NA    79
## 662     Suc. Belenes     3       6     3     3    3     3
## 663     Suc. Belenes     9       6     6    14    9    18
## 664     Suc. Belenes    17      14    14    17   12    12
## 665     Suc. Belenes    82      96    54    93   85    73
## 666     Suc. Belenes    34      31    23    56   34    28
## 667     Suc. Belenes   109     180   127   106  169   201
## 668     Suc. Belenes   120     116   144   173  183   197
## 669     Suc. Belenes     2      NA    NA    NA    2    NA
## 670     Suc. Belenes    44      38    61    89   87    74
## 671     Suc. Belenes    82      78    72   123   53   125
## 672     Suc. Belenes    30      20    21    30   29    33
## 673     Suc. Belenes     6       5     9     6    8     3
## 674     Suc. Belenes     2      NA     4     4    2     8
## 675     Suc. Belenes    NA       2     2     4    1    NA
## 676     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 677     Suc. Belenes    NA       1     1     1    1     1
## 678     Suc. Belenes    NA      NA    NA     1   NA    NA
## 679     Suc. Belenes    23      19    15    20   13     8
## 680     Suc. Belenes     0       0     0     0    0     0
## 681     Suc. Belenes     4       3     5     2    3     4
## 682     Suc. Belenes     5      20    19    NA   37     2
## 683     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 684     Suc. Belenes     4       4     4     2    4     2
## 685     Suc. Belenes     2       2     2     2   NA     2
## 686     Suc. Belenes     2       1     3     3    2     2
## 687     Suc. Belenes     4       2     1     3    2     3
## 688     Suc. Belenes     2       2     3     3    1     3
## 689     Suc. Belenes     0       1     0     0    0     0
## 690     Suc. Belenes     3      NA    NA    NA   NA     3
## 691     Suc. Belenes    NA      NA    NA    NA   NA     3
## 692     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 693     Suc. Belenes     8       5     9    14    7     8
## 694     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 695     Suc. Belenes    NA      NA    NA    NA   NA     3
## 696     Suc. Belenes    NA       3     8     6   20    11
## 697     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 698     Suc. Belenes    NA      NA     0    NA    1     0
## 699     Suc. Belenes     1       2    NA     1   NA     1
## 700     Suc. Belenes     1       4     1     3    4     3
## 701     Suc. Belenes    NA       1    NA    NA   NA    NA
## 702     Suc. Belenes    NA       3     8     8    3     8
## 703     Suc. Belenes    NA      NA    NA     0   NA     0
## 704     Suc. Belenes     1      NA    NA     1   NA     1
## 705     Suc. Belenes    NA       4     3     2    2    NA
## 706     Suc. Belenes    NA       1    NA    NA   NA    NA
## 707     Suc. Belenes    NA      NA     6     3   NA    NA
## 708     Suc. Belenes     0       0    NA    NA   NA     0
## 709     Suc. Belenes     1      NA    NA     1   NA     1
## 710     Suc. Belenes     1       5     3     3    1     1
## 711     Suc. Belenes     1       2     4     4    1    NA
## 712     Suc. Belenes     8      14     6    17   20    23
## 713     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 714     Suc. Belenes    NA      NA    NA    NA    2    NA
## 715     Suc. Belenes     1       3     3     3    4     5
## 716     Suc. Belenes    NA       1    NA    NA   NA    NA
## 717     Suc. Belenes    NA      NA    NA    NA   NA     2
## 718     Suc. Belenes     3      14    17    20   11     8
## 719     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 720     Suc. Belenes    NA      NA    NA    NA    1     0
## 721     Suc. Belenes     1      NA     2     3   NA     1
## 722     Suc. Belenes     1       5     5     3    3     5
## 723     Suc. Belenes    NA       1    NA    NA   NA    NA
## 724     Suc. Belenes     5      NA     1     3   NA    NA
## 725     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 726     Suc. Belenes    16      13    13    22   14    11
## 727     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 728     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 729     Suc. Belenes     6      55    11    NA   25    51
## 730     Suc. Belenes    NA      38     6    NA   48    25
## 731     Suc. Belenes     2      20    NA    NA    8     3
## 732     Suc. Belenes    35     106    28    25   49    25
## 733     Suc. Belenes     8      33    NA    13   18    18
## 734     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 735     Suc. Belenes     2      NA    NA     1   NA    NA
## 736     Suc. Belenes     3      NA     3     1   NA     1
## 737     Suc. Belenes     3       5    NA    NA   NA     3
## 738     Suc. Belenes     8       8     2     2    4     3
## 739     Suc. Belenes    NA      NA    NA    NA   NA     0
## 740     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 741     Suc. Belenes    NA      NA     4     2   NA     2
## 742     Suc. Belenes    NA       2     2    NA   NA    NA
## 743     Suc. Belenes    11      17     6    17    6    31
## 744     Suc. Belenes     3       3     3    NA    3     3
## 745     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 746     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 747     Suc. Belenes     3      NA     3    NA    3     1
## 748     Suc. Belenes     6      NA     6    NA   NA    NA
## 749     Suc. Belenes    NA      NA     1     1   NA     2
## 750     Suc. Belenes     2       2     6     8    4     8
## 751     Suc. Belenes    NA      NA    NA     5   13     3
## 752     Suc. Belenes    NA       2     2     2   NA    NA
## 753     Suc. Belenes    72      72    59   127   87    30
## 754     Suc. Belenes    37     155   189    NA  121   251
## 755     Suc. Belenes    38      68    38    74   82     8
## 756     Suc. Belenes    NA       5     8     5   10    13
## 757     Suc. Belenes    15      11    21    NA   40    10
## 758     Suc. Belenes     6       5    11     9   17     5
## 759     Suc. Belenes     8       5     5     8    5    NA
## 760     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 761     Suc. Belenes    11      15    13    15   17    17
## 762     Suc. Belenes    17      23    28    31   17    17
## 763     Suc. Belenes     4       4     6     6    6     8
## 764     Suc. Belenes     5       8     5     8    8     3
## 765     Suc. Belenes     2       2     1     1    2     2
## 766     Suc. Belenes    NA       2     2    NA    3    NA
## 767     Suc. Belenes    95     159    32   161  118     8
## 768     Suc. Belenes    NA      NA    58    90   21    61
## 769     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 770     Suc. Belenes    NA      NA    NA     3    3     3
## 771     Suc. Belenes     3      NA    NA    NA   NA     2
## 772     Suc. Belenes   163     217   355   107  192   211
## 773     Suc. Belenes   123     240   335   183  243   275
## 774     Suc. Belenes    46     204   190   134  183   144
## 775     Suc. Belenes    27      24    41     8   71     7
## 776     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 777     Suc. Belenes    68      76   135   120  116    49
## 778     Suc. Belenes   154     139    95   224   87   169
## 779     Suc. Belenes     2       1    NA    NA   NA    NA
## 780     Suc. Belenes    28      10    20    20   20    25
## 781     Suc. Belenes    24      22    35    10   68    16
## 782     Suc. Belenes    18      18    24    21   41    NA
## 783     Suc. Belenes    10      NA    NA     4    6     6
## 784     Suc. Belenes    NA       1    NA    NA   NA    NA
## 785     Suc. Belenes    NA      NA     1     2    2    NA
## 786     Suc. Belenes     2       2     2    NA    3     3
## 787     Suc. Belenes    NA      NA     3     3   NA     1
## 788     Suc. Belenes    20      13     9    13   30    13
## 789     Suc. Belenes     8      NA     4    NA    2     5
## 790     Suc. Belenes     3       1     2    NA    2     4
## 791     Suc. Belenes    20      24    19    NA   NA     7
## 792     Suc. Belenes    NA       1    NA    NA   NA    NA
## 793     Suc. Belenes     4       4    NA     2    4     4
## 794     Suc. Belenes     2       1     1     1    0     1
## 795     Suc. Belenes    13      10    14     8   10    NA
## 796     Suc. Belenes     6       3    10    11    8     5
## 797     Suc. Belenes    10       6     7    12   10     8
## 798     Suc. Belenes    11       5     4     7    6     7
## 799     Suc. Belenes     2       2     3     1    6     3
## 800     Suc. Belenes     5       3    NA    NA    8     8
## 801     Suc. Belenes    NA       5     3     3    3    NA
## 802     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 803     Suc. Belenes     5       5     5    10    3     3
## 804     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 805     Suc. Belenes    NA       6     6    14   NA    NA
## 806     Suc. Belenes     1       3     3     1    1     3
## 807     Suc. Belenes     0      NA    NA    NA    1    NA
## 808     Suc. Belenes     3      NA    NA     3    8    NA
## 809     Suc. Belenes    NA       3    NA    NA    3     8
## 810     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 811     Suc. Belenes    NA      NA    NA    NA    0    NA
## 812     Suc. Belenes     3      NA    NA     3    5    NA
## 813     Suc. Belenes    NA      11    NA    11    3    NA
## 814     Suc. Belenes     3      NA     1     3    3     1
## 815     Suc. Belenes    NA      NA    NA    NA    0    NA
## 816     Suc. Belenes     3      NA    NA     3    5    NA
## 817     Suc. Belenes    NA       3    NA     3    5     3
## 818     Suc. Belenes    NA       8     3    11    3     3
## 819     Suc. Belenes     3      NA     1    NA    1    NA
## 820     Suc. Belenes    NA      NA    NA    NA    1    NA
## 821     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 822     Suc. Belenes     3       5    NA     5    5     3
## 823     Suc. Belenes    NA      NA    NA    NA   NA     3
## 824     Suc. Belenes    NA      14     8    48    6    NA
## 825     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 826     Suc. Belenes     5       1     3     4    4     4
## 827     Suc. Belenes    NA      NA    NA    NA    1    NA
## 828     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 829     Suc. Belenes     3      NA     3    NA   10     3
## 830     Suc. Belenes     5       6     3     7    4     6
## 831     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 832     Suc. Belenes    15      18    16     6   21    21
## 833     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 834     Suc. Belenes    NA      NA    NA     1   NA    NA
## 835     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 836     Suc. Belenes    13      19    17    13   15    17
## 837     Suc. Belenes    10      19    19    19   29    22
## 838     Suc. Belenes     3       5     5     5    8     3
## 839     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 840     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 841     Suc. Belenes     0       0     1     0   NA     0
## 842     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 843     Suc. Belenes     1      NA    NA     0    0    NA
## 844     Suc. Belenes    NA       1    NA    NA    5     1
## 845     Suc. Belenes    NA      NA     2     2    4    NA
## 846     Suc. Belenes    NA       2     2     1    1     1
## 847     Suc. Belenes     6       3     6     6   11     6
## 848     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 849     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 850     Suc. Belenes    NA       3    NA     1    1    NA
## 851     Suc. Belenes    NA      NA     2    NA    2    NA
## 852     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 853     Suc. Belenes     2      NA     2    NA   NA     2
## 854     Suc. Belenes     1      NA    NA    NA   NA    NA
## 855     Suc. Belenes    23      25    21    21   27    25
## 856     Suc. Belenes    15      17    18    15   23    17
## 857     Suc. Belenes    28      20    14    20   17    23
## 858     Suc. Belenes    23      20    25    23   34    17
## 859     Suc. Belenes     7       8     5     7   10     8
## 860     Suc. Belenes    19      19    23    23   23    17
## 861     Suc. Belenes     3       5     2     7    4     4
## 862     Suc. Belenes     5       6     6     8    8     8
## 863     Suc. Belenes     6      13     8     6    8     8
## 864     Suc. Belenes    NA      NA     3     6    3    NA
## 865     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 866     Suc. Belenes     4       4     6     8    8     8
## 867     Suc. Belenes     1       2    NA     1    2    NA
## 868     Suc. Belenes     4       2     2    NA   NA    NA
## 869     Suc. Belenes    45      61    40    53   55    40
## 870     Suc. Belenes    NA      NA    NA    NA   NA    25
## 871     Suc. Belenes     3       3     3     6    3    22
## 872     Suc. Belenes    14      14    11    11   14     9
## 873     Suc. Belenes    11      12    11    11    9    17
## 874     Suc. Belenes    NA       6    NA     6   NA     3
## 875     Suc. Belenes    23      14    11     8    8     3
## 876     Suc. Belenes    63      56    63    67   63    74
## 877     Suc. Belenes   190     208   116   201  240   222
## 878     Suc. Belenes    NA      NA    NA    NA    2    NA
## 879     Suc. Belenes    36      32    38    34   38    34
## 880     Suc. Belenes    80      80    59    85   87    82
## 881     Suc. Belenes    12      13     6    15   12    12
## 882     Suc. Belenes     8       6     9     9   11    11
## 883     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 884     Suc. Belenes    NA       2     1    NA   NA    NA
## 885     Suc. Belenes    NA       1    NA    NA   NA    NA
## 886     Suc. Belenes    NA       1     1     1    7     1
## 887     Suc. Belenes    NA       1    NA     1   NA    NA
## 888     Suc. Belenes     1      NA    NA    NA   NA    NA
## 889     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 890     Suc. Belenes     1       0     0     0    0     0
## 891     Suc. Belenes    NA       0    NA    NA    1    NA
## 892     Suc. Belenes     3       3     2     3    3     3
## 893     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 894     Suc. Belenes     2       2     4     2    4     2
## 895     Suc. Belenes    NA      NA    NA    NA   NA     1
## 896     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 897     Suc. Belenes     0       0     0     0    1     0
## 898     Suc. Belenes     3       4     4     4    4     3
## 899     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 900     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 901     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 902     Suc. Belenes     3       3     1     4    4     3
## 903     Suc. Belenes     0       0     1     0   NA     0
## 904     Suc. Belenes    NA       0     0    NA   NA     0
## 905     Suc. Belenes    NA      NA    NA     1   NA     1
## 906     Suc. Belenes     1       1     1     1    1     2
## 907     Suc. Belenes    NA       0    NA     0   NA    NA
## 908     Suc. Belenes     3      NA     1     4    9     3
## 909     Suc. Belenes     0       0     0     0   NA     0
## 910     Suc. Belenes     0      NA    NA     0   NA     0
## 911     Suc. Belenes    NA      NA    NA     1   NA     1
## 912     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 913     Suc. Belenes    NA       0    NA     0   NA    NA
## 914     Suc. Belenes    NA      NA     1     1    1    NA
## 915     Suc. Belenes     0       0     1     0   NA     0
## 916     Suc. Belenes    NA      NA    NA    NA   NA     0
## 917     Suc. Belenes    NA       2    NA     1    2     1
## 918     Suc. Belenes    NA       2     1     1    1     2
## 919     Suc. Belenes     1       4     1     1    3     3
## 920     Suc. Belenes    NA       6     8     3    6     8
## 921     Suc. Belenes    NA      NA    NA    NA    1    NA
## 922     Suc. Belenes     2      NA     2    NA    2    NA
## 923     Suc. Belenes    NA       0    NA     0   NA    NA
## 924     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 925     Suc. Belenes     6       8     4     9   18    11
## 926     Suc. Belenes     0       0     1     0   NA     0
## 927     Suc. Belenes    NA      NA    NA    NA    0     0
## 928     Suc. Belenes    NA      NA    NA     1   NA     1
## 929     Suc. Belenes     4       4     4     3    4     4
## 930     Suc. Belenes    NA       0    NA     0   NA    NA
## 931     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 932     Suc. Belenes    NA      NA    NA     1   10     3
## 933     Suc. Belenes    NA       0    NA    NA   NA    NA
## 934     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 935     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 936     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 937     Suc. Belenes     2       2     2     6    2     2
## 938     Suc. Belenes     3       3     3     3    3     3
## 939     Suc. Belenes    NA      NA    NA    NA   NA     4
## 940     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 941     Suc. Belenes    NA      NA     1     1    1    NA
## 942     Suc. Belenes     1       1     1     1    1     1
## 943     Suc. Belenes     1      NA     1     4    1     1
## 944     Suc. Belenes     1      NA     2     1   NA     1
## 945     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 946     Suc. Belenes     1       1     1    NA    1     1
## 947     Suc. Belenes    NA      NA    NA     2    4    NA
## 948     Suc. Belenes    NA       2     1     1    1     2
## 949     Suc. Belenes     1      NA    NA    NA   NA    NA
## 950     Suc. Belenes     2       2     2    NA   NA    NA
## 951     Suc. Belenes     4       4     2     2   NA     2
## 952     Suc. Belenes    25      30    27    27   36    30
## 953     Suc. Belenes     8       6     5     3    6     8
## 954     Suc. Belenes    39      28    31    37   39    28
## 955     Suc. Belenes    28      28    17    25   28    23
## 956     Suc. Belenes    25      25    11    19   21    25
## 957     Suc. Belenes     5      10    10    10    8     8
## 958     Suc. Belenes     4       5     4     4    6     4
## 959     Suc. Belenes     5       9     5     5    8     8
## 960     Suc. Belenes    NA      NA    NA    NA   NA     1
## 961     Suc. Belenes     4       8     6     8    8     6
## 962     Suc. Belenes     6       6    14    11    8     8
## 963     Suc. Belenes    NA      NA     2     4    4     4
## 964     Suc. Belenes     5       3     3     5    5     5
## 965     Suc. Belenes     1       1     3     1    3     2
## 966     Suc. Belenes    34      34    34    42   42    51
## 967     Suc. Belenes     3      NA    NA    NA   NA    NA
## 968     Suc. Belenes    25      22    22    22   29    25
## 969     Suc. Belenes     3       3     3     3    3     3
## 970     Suc. Belenes     6       8    11     8   11    11
## 971     Suc. Belenes    11       5     3     6    2    NA
## 972     Suc. Belenes    NA      NA    NA    11   NA    NA
## 973     Suc. Belenes     3       3     3    NA    3     6
## 974     Suc. Belenes    49      88    77    95  130    74
## 975     Suc. Belenes    49      70    67    53   39   113
## 976     Suc. Belenes    NA      NA    NA    NA   NA     2
## 977     Suc. Belenes    13      13    11    15   17    25
## 978     Suc. Belenes    27      44    59    19   36    51
## 979     Suc. Belenes    36      42    38    55   30    46
## 980     Suc. Belenes     2       2     2     2    2     3
## 981     Suc. Belenes    15      12     9    12   12    NA
## 982     Suc. Belenes    15      17    17    23   22    24
## 983     Suc. Belenes     3       6     3     9    3     3
## 984     Suc. Belenes     4       6     2     6    2     6
## 985     Suc. Belenes     3       4     2     3    2     4
## 986     Suc. Belenes    NA       1    NA    NA   NA    NA
## 987     Suc. Belenes     1       1     1     1    2     1
## 988     Suc. Belenes    NA       1    NA     1   NA    NA
## 989     Suc. Belenes     4      NA     3     1    2     1
## 990     Suc. Belenes     4       4     5     2    4     5
## 991     Suc. Belenes    NA       1    NA    NA   NA    NA
## 992     Suc. Belenes     1       0     2     0    0     1
## 993     Suc. Belenes     2       3     2     1    2     1
## 994     Suc. Belenes     6       1     4     3    8     6
## 995     Suc. Belenes    NA      NA    NA    NA   NA     1
## 996     Suc. Belenes    NA      NA    NA    NA   NA     1
## 997     Suc. Belenes    NA       4     4     4    2    NA
## 998     Suc. Belenes     2      NA     1     1    1     1
## 999     Suc. Belenes    NA      NA    NA    NA   NA     1
## 1000    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1001    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1002    Suc. Belenes     1       1     1     0    1     1
## 1003    Suc. Belenes     4       1     3     2    4     1
## 1004    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1005    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1006    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1007    Suc. Belenes    NA       2    NA     2   NA     4
## 1008    Suc. Belenes    NA      NA     3    NA    3     3
## 1009    Suc. Belenes    NA      NA     0     0    1     0
## 1010    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1011    Suc. Belenes    NA      NA    NA     2   NA     1
## 1012    Suc. Belenes     1       2     2     1    3     3
## 1013    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1014    Suc. Belenes     2      NA     2    NA   NA    NA
## 1015    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1016    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1017    Suc. Belenes    NA       3     3     3    6     6
## 1018    Suc. Belenes     0      NA    NA    NA    1    NA
## 1019    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1020    Suc. Belenes     1       1    NA     1    3     2
## 1021    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1022    Suc. Belenes     4      NA    NA     2    2     2
## 1023    Suc. Belenes    NA       3     3     3    3    NA
## 1024    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1025    Suc. Belenes     2      NA    NA    NA   NA     1
## 1026    Suc. Belenes     3      NA     2     1    1     1
## 1027    Suc. Belenes     3       1     3     1   NA     2
## 1028    Suc. Belenes     6       6    14    14   14    14
## 1029    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1030    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1031    Suc. Belenes     3       1     5     1    3     3
## 1032    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1033    Suc. Belenes     4      NA     2     4    4     6
## 1034    Suc. Belenes     3       6     8     3   14     6
## 1035    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1036    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1037    Suc. Belenes    NA       2     2    NA    2     1
## 1038    Suc. Belenes     1       3     1     2    3     3
## 1039    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1040    Suc. Belenes     8      11     5     4    6     8
## 1041    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1042    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1043    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1044    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1045    Suc. Belenes     4       4     2     2    2     2
## 1046    Suc. Belenes     3       3     3     3    3    13
## 1047    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1048    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1049    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1050    Suc. Belenes    NA      NA     2    NA   NA     1
## 1051    Suc. Belenes     1       1     1     1    4     1
## 1052    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1053    Suc. Belenes     1       1     1     2    1     2
## 1054    Suc. Belenes    NA      NA     2    NA   NA    NA
## 1055    Suc. Belenes     2       1     2     2    1     1
## 1056    Suc. Belenes    NA      NA    11    NA   NA     3
## 1057    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1058    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1059    Suc. Belenes    NA      NA    NA    NA   NA     2
## 1060    Suc. Belenes    NA      NA     1    NA   NA    NA
## 1061    Suc. Belenes     1      NA     1     1   NA     1
## 1062    Suc. Belenes    11       8    13    13   11    13
## 1063    Suc. Belenes     8       8     3     6    3     6
## 1064    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1065    Suc. Belenes    21      21    19    23   25    34
## 1066    Suc. Belenes    NA      NA    NA    NA    1     1
## 1067    Suc. Belenes    NA       1     1     1   NA     1
## 1068    Suc. Belenes     2       1     2     3    3     3
## 1069    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1070    Suc. Belenes    21      24    29    37   29    24
## 1071    Suc. Belenes    NA      NA    NA    NA   NA     3
## 1072    Suc. Belenes     3       3     3    13    6     3
## 1073    Suc. Belenes     5       6     8    11    5     9
## 1074    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1075    Suc. Belenes     3      NA    NA    NA   NA    NA
## 1076    Suc. Belenes    35      53    53    60   42    56
## 1077    Suc. Belenes    70      74    70    95   81    92
## 1078    Suc. Belenes    23      25    30    38   27    36
## 1079    Suc. Belenes    74      72    89    95   91   116
## 1080    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1081    Suc. Belenes     3       2     4     8    5     6
## 1082    Suc. Belenes     3       2     5     5    3     6
## 1083    Suc. Belenes     2       2     2     2    2     2
## 1084    Suc. Belenes     1       1     1     1    1     1
## 1085    Suc. Belenes     1       1    NA     1    1    NA
## 1086    Suc. Belenes     1      NA    NA    NA    1     1
## 1087    Suc. Belenes     2       0     0     0    0     0
## 1088    Suc. Belenes    NA       1    NA    NA    0    NA
## 1089    Suc. Belenes     2       3     2     5    5    NA
## 1090    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1091    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1092    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1093    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1094    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1095    Suc. Belenes     0       0     0     0    0     0
## 1096    Suc. Belenes     3       1     3     4    3     4
## 1097    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1098    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1099    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1100    Suc. Belenes    NA      NA     0    NA    0    NA
## 1101    Suc. Belenes     2      NA    NA    NA   NA    NA
## 1102    Suc. Belenes     1       2     3     4    3     4
## 1103    Suc. Belenes    NA       0     0     0   NA     0
## 1104    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1105    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1106    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1107    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1108    Suc. Belenes    NA      NA    NA     2   NA    NA
## 1109    Suc. Belenes    NA      NA    NA     1   NA     1
## 1110    Suc. Belenes    NA       0     0     0   NA     0
## 1111    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1112    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1113    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1114    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1115    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1116    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1117    Suc. Belenes    NA      NA     3     3    3    NA
## 1118    Suc. Belenes     0      NA    NA     0   NA    NA
## 1119    Suc. Belenes    NA       2    NA    NA   NA    NA
## 1120    Suc. Belenes     1      NA     3     3    3     4
## 1121    Suc. Belenes    NA       0     0     0   NA     0
## 1122    Suc. Belenes     3       3     3    NA   NA     4
## 1123    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1124    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1125    Suc. Belenes    NA      NA     2    NA    2     2
## 1126    Suc. Belenes     1       2     3     4    3     4
## 1127    Suc. Belenes    NA       0     0     0   NA     0
## 1128    Suc. Belenes    NA      NA     1    NA   NA    NA
## 1129    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1130    Suc. Belenes     3      NA     3    NA   NA     1
## 1131    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1132    Suc. Belenes    NA       0    NA    NA   NA     2
## 1133    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1134    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1135    Suc. Belenes     2       2     2     2    4     2
## 1136    Suc. Belenes     3       3     3     3    6     3
## 1137    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1138    Suc. Belenes    NA       3    NA    NA    3    NA
## 1139    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1140    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1141    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1142    Suc. Belenes     2       3     3     5    3     4
## 1143    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1144    Suc. Belenes    NA       1     1     2    1     1
## 1145    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1146    Suc. Belenes    NA       2     2     2    1     1
## 1147    Suc. Belenes     3      NA    NA     3   NA    NA
## 1148    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1149    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1150    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1151    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1152    Suc. Belenes     4      11    13     8   11    11
## 1153    Suc. Belenes    NA      NA    NA    NA   NA     3
## 1154    Suc. Belenes    NA      NA    NA    NA   NA     7
## 1155    Suc. Belenes     2       8     6    11    8    11
## 1156    Suc. Belenes     2       1     2     1    2     2
## 1157    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1158    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1159    Suc. Belenes    21      26    37    26   24    21
## 1160    Suc. Belenes    NA      NA    NA    NA   NA    19
## 1161    Suc. Belenes     6       6    16     6   25    16
## 1162    Suc. Belenes    12       9     6    11   12    12
## 1163    Suc. Belenes    NA      NA     3     6   NA    NA
## 1164    Suc. Belenes     7      11    18    32   35    46
## 1165    Suc. Belenes   155     113   159   169  180   218
## 1166    Suc. Belenes    NA       2    NA    NA   NA    NA
## 1167    Suc. Belenes    17      15    21    19   25    27
## 1168    Suc. Belenes   106      74    95   114   95   135
## 1169    Suc. Belenes     4       1     4     4    4     5
## 1170    Suc. Belenes     2       3     3     3    3     5
## 1171    Suc. Belenes    NA       2     4     4    2     6
## 1172    Suc. Belenes    NA       1    NA     1    2     4
## 1173    Suc. Belenes     1       1     1     3    1     1
## 1174    Suc. Belenes     1      NA    NA     1   NA    NA
## 1175    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1176    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1177    Suc. Belenes     2       0     0     0    0     0
## 1178    Suc. Belenes     4       2     2     3    2     2
## 1179    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1180    Suc. Belenes     2      NA    NA     2    2    NA
## 1181    Suc. Belenes    NA      NA    NA    NA    0    NA
## 1182    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1183    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1184    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1185    Suc. Belenes     0       0     0     0    0     0
## 1186    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1187    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1188    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1189    Suc. Belenes     2      NA    NA    NA   NA     1
## 1190    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1191    Suc. Belenes    NA       1     1     3    1     1
## 1192    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1193    Suc. Belenes    NA       0     0    NA   NA    NA
## 1194    Suc. Belenes    NA       1     1    NA    1     2
## 1195    Suc. Belenes     2       1     1     1    2     1
## 1196    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1197    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1198    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1199    Suc. Belenes    NA       1     1    NA    1     1
## 1200    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1201    Suc. Belenes    NA       1     1    NA    1     2
## 1202    Suc. Belenes    NA       1     1     1    1     1
## 1203    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1204    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1205    Suc. Belenes    NA       1     4    NA    1     1
## 1206    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1207    Suc. Belenes    NA      NA     0    NA   NA    NA
## 1208    Suc. Belenes    NA       1     1    NA    1     2
## 1209    Suc. Belenes     2       1     1     1    1     1
## 1210    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1211    Suc. Belenes    NA      NA     1    NA   NA     1
## 1212    Suc. Belenes    NA      NA    NA    NA    2    NA
## 1213    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1214    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1215    Suc. Belenes     3       1     4    NA    1     4
## 1216    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1217    Suc. Belenes     0      NA     0     0    0     0
## 1218    Suc. Belenes     4       1     1    NA    1     2
## 1219    Suc. Belenes     2       1     1     1    2     1
## 1220    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1221    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1222    Suc. Belenes    NA      NA     1    NA   NA    NA
## 1223    Suc. Belenes    NA       4     3     4   10     3
## 1224    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1225    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1226    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1227    Suc. Belenes     2       2     6     2    2     2
## 1228    Suc. Belenes    NA       3     6     3   10    NA
## 1229    Suc. Belenes    NA       3     3    NA    3     3
## 1230    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1231    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1232    Suc. Belenes     0      NA    NA    NA    0    NA
## 1233    Suc. Belenes     1       1     1     1   NA     1
## 1234    Suc. Belenes     0       1    NA    NA   NA     0
## 1235    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1236    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1237    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1238    Suc. Belenes     2      NA     2     2    2     2
## 1239    Suc. Belenes    NA       2    NA    NA    2     2
## 1240    Suc. Belenes    NA       3     3     3    3     3
## 1241    Suc. Belenes     6       4     2     4    6     4
## 1242    Suc. Belenes    NA       1     2     2    3     2
## 1243    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1244    Suc. Belenes     5      11    13     8   11     5
## 1245    Suc. Belenes    NA      NA    NA    NA   NA     6
## 1246    Suc. Belenes     3       3     3     3    3     3
## 1247    Suc. Belenes     5       3     6     3    6     5
## 1248    Suc. Belenes    NA       4    14    14   25    18
## 1249    Suc. Belenes    21      42    42    56   63    46
## 1250    Suc. Belenes     8      13    13    11   13    15
## 1251    Suc. Belenes    23      42    40    40   44    57
## 1252    Suc. Belenes     1       2     2     2    1     2
## 1253    Suc. Belenes    NA      NA     2    NA    2    NA
## 1254    Suc. Belenes    NA       1    NA     1    1    NA
## 1255    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1256    Suc. Belenes     1       1    NA    NA   NA    NA
## 1257    Suc. Belenes     0       0     0    NA   NA    NA
## 1258    Suc. Belenes    NA      NA    NA    NA    0    NA
## 1259    Suc. Belenes     3       6     1     5    4     5
## 1260    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1261    Suc. Belenes     0       0     0    NA   NA    NA
## 1262    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1263    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1264    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1265    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1266    Suc. Belenes     0      NA    NA    NA    0    NA
## 1267    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1268    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1269    Suc. Belenes     1       2     1     1    1     1
## 1270    Suc. Belenes    NA       0     0    NA    0    NA
## 1271    Suc. Belenes    NA      NA    NA    NA    2    NA
## 1272    Suc. Belenes     0      NA    NA    NA    0    NA
## 1273    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1274    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1275    Suc. Belenes    NA       0     0    NA    0    NA
## 1276    Suc. Belenes     0      NA    NA    NA    0    NA
## 1277    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1278    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1279    Suc. Belenes     2       1     1     1   NA     1
## 1280    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1281    Suc. Belenes     3      NA    NA    NA   NA    NA
## 1282    Suc. Belenes    NA       0     0    NA    0    NA
## 1283    Suc. Belenes    NA      NA    NA    NA   NA     2
## 1284    Suc. Belenes    NA       3    NA    NA    3     3
## 1285    Suc. Belenes     0      NA    NA    NA    0    NA
## 1286    Suc. Belenes     0      NA    NA    NA   NA    NA
## 1287    Suc. Belenes     1       2    NA    NA   NA    NA
## 1288    Suc. Belenes     2       2     1     3    1     2
## 1289    Suc. Belenes    NA       0     0    NA    0    NA
## 1290    Suc. Belenes     1      NA     1    NA    1     1
## 1291    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1292    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1293    Suc. Belenes     2      NA     4     2    4     2
## 1294    Suc. Belenes     3      NA     6     3    6     3
## 1295    Suc. Belenes    NA      NA     3    NA   NA    NA
## 1296    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1297    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1298    Suc. Belenes     0      NA    NA     0    0     0
## 1299    Suc. Belenes    NA      NA    NA    NA    1    NA
## 1300    Suc. Belenes     3       1     4     3    1     2
## 1301    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1302    Suc. Belenes     1      NA     1     1    1     1
## 1303    Suc. Belenes     2      NA     1     1    1     1
## 1304    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1305    Suc. Belenes     2       2    NA     4    2    NA
## 1306    Suc. Belenes    NA      NA     1    NA   NA    NA
## 1307    Suc. Belenes    11       8     8    13   15    13
## 1308    Suc. Belenes    NA      NA     2    NA   NA    NA
## 1309    Suc. Belenes    NA       6    NA     6    3     6
## 1310    Suc. Belenes     6       8     6    11    8     6
## 1311    Suc. Belenes    NA      NA    NA    NA   NA     4
## 1312    Suc. Belenes    NA      NA     2     3    3     3
## 1313    Suc. Belenes     4       2     6     8   11     6
## 1314    Suc. Belenes     3      NA    NA    NA   NA     3
## 1315    Suc. Belenes     1       1    NA     1    2     1
## 1316    Suc. Belenes    NA       2    NA     2    2    NA
## 1317    Suc. Belenes     4      NA     2     2    2     4
## 1318    Suc. Belenes    NA      NA     2     4    4     4
## 1319    Suc. Belenes     3      NA    NA    NA   NA    NA
## 1320    Suc. Belenes    13      11    11     8   17    13
## 1321    Suc. Belenes    13      11    16    18   11    16
## 1322    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1323    Suc. Belenes     3       3     3     3    3     3
## 1324    Suc. Belenes     5      11     9     8   11     9
## 1325    Suc. Belenes     6       3     3     6    3     3
## 1326    Suc. Belenes    NA      NA    NA     6   NA    NA
## 1327    Suc. Belenes    NA      18    21    21   25    25
## 1328    Suc. Belenes    92      88    81    99   81    99
## 1329    Suc. Belenes    11       6     8    15   11     8
## 1330    Suc. Belenes    34      49    59    59   44    46
## 1331    Suc. Belenes     9       7    11     8   14    13
## 1332    Suc. Belenes     6       5     5     6    8     6
## 1333    Suc. Belenes     2      NA     1    NA   NA    NA
## 1334    Suc. Belenes     1       1     1     1    1     1
## 1335    Suc. Belenes     1      NA     2    NA   NA    NA
## 1336    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1337    Suc. Belenes     2       0     0     0    0     0
## 1338    Suc. Belenes    NA      NA     2    NA   NA    NA
## 1339    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1340    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1341    Suc. Belenes     0       0     0     0    0     0
## 1342    Suc. Belenes     1       1     1     1    1     2
## 1343    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1344    Suc. Belenes     2       2    NA     2   NA     2
## 1345    Suc. Belenes    NA       3     6     6    8     3
## 1346    Suc. Belenes     0      NA    NA     0    0     0
## 1347    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1348    Suc. Belenes    NA       2    NA     3    1    NA
## 1349    Suc. Belenes     1       1     1     3    1     2
## 1350    Suc. Belenes    NA       0    NA     0   NA    NA
## 1351    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1352    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1353    Suc. Belenes     0      NA    NA     0    0     0
## 1354    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1355    Suc. Belenes    NA      NA    NA     1    1    NA
## 1356    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1357    Suc. Belenes    NA       0    NA     0   NA    NA
## 1358    Suc. Belenes     0      NA    NA     0    0     0
## 1359    Suc. Belenes    NA      NA    NA    NA    0    NA
## 1360    Suc. Belenes    NA      NA    NA     1    1    NA
## 1361    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1362    Suc. Belenes     1       1     1     1    2     2
## 1363    Suc. Belenes     3       3    11     6    8     3
## 1364    Suc. Belenes     0      NA    NA    NA   NA    NA
## 1365    Suc. Belenes     2      NA     2    NA    2     2
## 1366    Suc. Belenes    NA       1     1     3    1     1
## 1367    Suc. Belenes    NA       0    NA     0   NA    NA
## 1368    Suc. Belenes     2      NA    NA     2    2     2
## 1369    Suc. Belenes    NA      NA     6    NA    8     6
## 1370    Suc. Belenes     0      NA    NA     0    0     0
## 1371    Suc. Belenes    NA      NA     0     0   NA     0
## 1372    Suc. Belenes    NA      NA     2     3    1     2
## 1373    Suc. Belenes     2       2     1     1    1     1
## 1374    Suc. Belenes    NA       0    NA     0   NA    NA
## 1375    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1376    Suc. Belenes     1       1    NA    NA    1    NA
## 1377    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1378    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1379    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1380    Suc. Belenes    19     108     2     2   13    15
## 1381    Suc. Belenes    16      73     3     3   16    13
## 1382    Suc. Belenes     3      18    NA    NA   NA     3
## 1383    Suc. Belenes     7      NA    NA    NA   NA    NA
## 1384    Suc. Belenes     8      48    NA    NA   NA     5
## 1385    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1386    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1387    Suc. Belenes     1       1     1     1    0     1
## 1388    Suc. Belenes     1       1     1     1   NA     1
## 1389    Suc. Belenes     3       1    NA     2    2     4
## 1390    Suc. Belenes    NA      NA    NA    NA   NA     2
## 1391    Suc. Belenes     1      NA    NA     1    2     1
## 1392    Suc. Belenes    NA       2     4    NA   NA     2
## 1393    Suc. Belenes     2       2     3     1    2     1
## 1394    Suc. Belenes    NA       8     8     3    6     8
## 1395    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1396    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1397    Suc. Belenes     4       4     2     2    6     2
## 1398    Suc. Belenes    15       8    15    15   13    15
## 1399    Suc. Belenes     2       2     2     2    2     3
## 1400    Suc. Belenes    11       7    11     4    7    11
## 1401    Suc. Belenes     3       3     5     3    2     3
## 1402    Suc. Belenes    15      15    17    19   30    19
## 1403    Suc. Belenes     4       6     5     7    9     8
## 1404    Suc. Belenes     3       2     5     5    3     5
## 1405    Suc. Belenes     1       2     2     1   NA    NA
## 1406    Suc. Belenes     2      NA     2     2    2     4
## 1407    Suc. Belenes     3      NA    NA    NA   NA    NA
## 1408    Suc. Belenes     4       2     4     6    8     4
## 1409    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1410    Suc. Belenes     1      NA    NA    NA   NA     2
## 1411    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1412    Suc. Belenes    40      26    40    45   21    26
## 1413    Suc. Belenes    NA      NA    NA    NA   NA    19
## 1414    Suc. Belenes    25      35    73    54   16    32
## 1415    Suc. Belenes    17      15    21    39   12    24
## 1416    Suc. Belenes    NA       2     3     3    3     3
## 1417    Suc. Belenes     3      NA    NA     6   NA    NA
## 1418    Suc. Belenes    42      28    81     4   NA    18
## 1419    Suc. Belenes   151     127   151   134  229   151
## 1420    Suc. Belenes     4       4     4    NA   NA    NA
## 1421    Suc. Belenes    36      36    44    30   32    19
## 1422    Suc. Belenes    82      68    85    91   97    99
## 1423    Suc. Belenes     2       1     1     1    1     2
## 1424    Suc. Belenes     9       8    13     9   13    13
## 1425    Suc. Belenes     9       6     6     8    9     8
## 1426    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1427    Suc. Belenes     7       7     5     4    5     5
## 1428    Suc. Belenes    NA       1     1     1    1     1
## 1429    Suc. Belenes    NA      NA    NA     1    1    NA
## 1430    Suc. Belenes    NA      NA    NA    NA    3    NA
## 1431    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1432    Suc. Belenes     3       0     0     0    0     0
## 1433    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1434    Suc. Belenes     2      NA     2     1    1     0
## 1435    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1436    Suc. Belenes    NA       2     4    NA    2     2
## 1437    Suc. Belenes    NA       3     1     2   NA    NA
## 1438    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1439    Suc. Belenes     0       0     0     0    0     0
## 1440    Suc. Belenes     5      NA    NA    NA    3     1
## 1441    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1442    Suc. Belenes    NA      NA     1     3    6    NA
## 1443    Suc. Belenes     4       4     7    NA    4    NA
## 1444    Suc. Belenes     1       1     1     1    0     1
## 1445    Suc. Belenes     0       1     2     1    3     3
## 1446    Suc. Belenes     2      NA     3     2    4    NA
## 1447    Suc. Belenes     1       1     1     2    2     2
## 1448    Suc. Belenes    NA       0     0     0    0     0
## 1449    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1450    Suc. Belenes    NA      NA     1    NA    1    NA
## 1451    Suc. Belenes     0       1     1     0    0     0
## 1452    Suc. Belenes    NA      NA    NA     0   NA    NA
## 1453    Suc. Belenes    NA       2     1    NA   NA    NA
## 1454    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1455    Suc. Belenes    NA       0     0     0    0     0
## 1456    Suc. Belenes    NA      NA     1    NA    1     3
## 1457    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1458    Suc. Belenes     1       1     1     1    0     1
## 1459    Suc. Belenes    NA      NA     0     1   NA    NA
## 1460    Suc. Belenes    NA      NA     1    NA   NA    NA
## 1461    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1462    Suc. Belenes     3       1     1     3    2     3
## 1463    Suc. Belenes    NA      NA    NA    NA   NA     3
## 1464    Suc. Belenes     3      NA     3    NA    3    NA
## 1465    Suc. Belenes    11      NA    11    NA   NA     4
## 1466    Suc. Belenes    NA       1    NA     0    3     6
## 1467    Suc. Belenes     4       2    11     4    6     2
## 1468    Suc. Belenes     3      NA    NA     1    3    NA
## 1469    Suc. Belenes    NA       0     0     0    0     0
## 1470    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1471    Suc. Belenes    NA       6     1    NA    4    NA
## 1472    Suc. Belenes    11       4     7     7    7     4
## 1473    Suc. Belenes     1       1     1     1    0     1
## 1474    Suc. Belenes     1       2     2     2    1     3
## 1475    Suc. Belenes     2      NA     1     2   11     4
## 1476    Suc. Belenes     3       1     1     3    1     4
## 1477    Suc. Belenes    NA       0     0     0    0     0
## 1478    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1479    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1480    Suc. Belenes     6      10     4     4    6     7
## 1481    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1482    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1483    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1484    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1485    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1486    Suc. Belenes     6      27    11     4    2     2
## 1487    Suc. Belenes     3       3    10    13    3     3
## 1488    Suc. Belenes    18      28    14    14   28    11
## 1489    Suc. Belenes    NA      10    NA     8   NA    NA
## 1490    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1491    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1492    Suc. Belenes     1       1     1     2    3     2
## 1493    Suc. Belenes     4       3     3     3    4     1
## 1494    Suc. Belenes     6       2    NA     2    6    NA
## 1495    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1496    Suc. Belenes    NA       1     1     1    1     1
## 1497    Suc. Belenes    NA       1     2     1    1     1
## 1498    Suc. Belenes    NA      37    NA    28   NA    28
## 1499    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1500    Suc. Belenes    NA      NA     0    NA   NA    NA
## 1501    Suc. Belenes    NA      NA    NA    NA    1     1
## 1502    Suc. Belenes    NA       3    NA     1    1     5
## 1503    Suc. Belenes     6       8     8     8   13     8
## 1504    Suc. Belenes     6       6     3    14    8     8
## 1505    Suc. Belenes     6      NA     3     3    6     6
## 1506    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1507    Suc. Belenes    17      32    17    21   40    NA
## 1508    Suc. Belenes     2       1     4     3    3     3
## 1509    Suc. Belenes    NA       2    NA     2    2     2
## 1510    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1511    Suc. Belenes     2      NA     2     2    2     4
## 1512    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1513    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1514    Suc. Belenes    48      71    32    42   77     5
## 1515    Suc. Belenes    NA      NA    NA    NA   NA    38
## 1516    Suc. Belenes    22      19    25    25   29    29
## 1517    Suc. Belenes    17      12    15    15   30     2
## 1518    Suc. Belenes    NA      NA    NA     6   NA    NA
## 1519    Suc. Belenes    11       6     8     8   14     8
## 1520    Suc. Belenes    49      88    49    88  102    56
## 1521    Suc. Belenes    74     232    42   144  236   127
## 1522    Suc. Belenes    25      53    11    19   44    30
## 1523    Suc. Belenes    23     101    25    80  118    59
## 1524    Suc. Belenes     6       4     8     7    6     6
## 1525    Suc. Belenes     5       5     3     7    6     6
## 1526    Suc. Belenes     2      NA    NA    NA   NA    NA
## 1527    Suc. Belenes     6       6     4     6    4     6
## 1528    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1529    Suc. Belenes    NA       2     1     1    1     1
## 1530    Suc. Belenes    NA      NA    NA     1    1    NA
## 1531    Suc. Belenes     8      NA    NA    NA    3     1
## 1532    Suc. Belenes     4      NA     4     2    2     2
## 1533    Suc. Belenes     2       0     0     0    0     0
## 1534    Suc. Belenes     1       2    NA     3    2     1
## 1535    Suc. Belenes     3      22    NA     1   NA    NA
## 1536    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1537    Suc. Belenes     4       2     2     2    4     2
## 1538    Suc. Belenes     1       1     0     1    0     1
## 1539    Suc. Belenes     1       1    NA    NA   NA    NA
## 1540    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1541    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1542    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1543    Suc. Belenes     0       0     0     0    0     0
## 1544    Suc. Belenes     6       1     3     3    4     5
## 1545    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1546    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1547    Suc. Belenes     6       6     6     8    6     8
## 1548    Suc. Belenes     0       0    NA    NA   NA     0
## 1549    Suc. Belenes    NA      NA     1     2    1     1
## 1550    Suc. Belenes     4       3     3     4    4     3
## 1551    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1552    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1553    Suc. Belenes    NA       3     6     3    8    NA
## 1554    Suc. Belenes    NA      NA    NA    NA    2     0
## 1555    Suc. Belenes    NA      NA     1    NA    1     1
## 1556    Suc. Belenes     4       1     3     3    2     3
## 1557    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1558    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1559    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1560    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1561    Suc. Belenes     2      NA     1    NA    1     1
## 1562    Suc. Belenes    NA      NA    NA     1   NA    NA
## 1563    Suc. Belenes     2       1     3     3    4     4
## 1564    Suc. Belenes    NA       2    NA    NA   NA    NA
## 1565    Suc. Belenes     3      17     8    14   20    17
## 1566    Suc. Belenes    NA      NA     0    NA   NA     0
## 1567    Suc. Belenes    NA       2    NA    NA   NA    NA
## 1568    Suc. Belenes     4       3     4     4    4     4
## 1569    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1570    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1571    Suc. Belenes    NA      23     3    14   23    NA
## 1572    Suc. Belenes    NA      NA    NA     0   NA     1
## 1573    Suc. Belenes    NA      NA     1    NA    1     1
## 1574    Suc. Belenes     4       3     4     4    4     6
## 1575    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1576    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1577    Suc. Belenes     6       8     7    13   10     2
## 1578    Suc. Belenes    NA      NA     3    NA   NA    NA
## 1579    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1580    Suc. Belenes    NA       3    11    NA    3    11
## 1581    Suc. Belenes     3      NA     5     5    3     9
## 1582    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1583    Suc. Belenes     6      15    21     2    2     8
## 1584    Suc. Belenes    10       6    16    13    6    22
## 1585    Suc. Belenes    NA      NA     2     1   NA    NA
## 1586    Suc. Belenes     3       3     5    NA    3    14
## 1587    Suc. Belenes     4       4     4    NA    7     7
## 1588    Suc. Belenes     5       8    10     3    5    23
## 1589    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1590    Suc. Belenes     4       5     4     3    2     3
## 1591    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1592    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1593    Suc. Belenes     1       0     1    NA    0     1
## 1594    Suc. Belenes    NA      NA     2    NA   NA    NA
## 1595    Suc. Belenes     3       3    NA    NA    1     3
## 1596    Suc. Belenes     7       5     4     7   NA     8
## 1597    Suc. Belenes     1       1    NA    NA   NA     0
## 1598    Suc. Belenes     1       3     1     1    1     1
## 1599    Suc. Belenes     2      NA    NA    NA   NA    NA
## 1600    Suc. Belenes     3       3     1     1    2     1
## 1601    Suc. Belenes     8      17     3    20    6     8
## 1602    Suc. Belenes    NA       1    NA    NA   NA    NA
## 1603    Suc. Belenes    NA      NA     0    NA   NA    NA
## 1604    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1605    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1606    Suc. Belenes     1       1    NA    NA   NA    NA
## 1607    Suc. Belenes     4       2     8    NA    8     8
## 1608    Suc. Belenes    NA      NA     1    NA   NA    NA
## 1609    Suc. Belenes     2      NA    NA     2   NA    NA
## 1610    Suc. Belenes    NA       4     2     6   NA    NA
## 1611    Suc. Belenes    21      11    29    NA   11    21
## 1612    Suc. Belenes    25      25    25     3   29    35
## 1613    Suc. Belenes    25      32    16    38   29    19
## 1614    Suc. Belenes    NA      NA    NA     2   NA    NA
## 1615    Suc. Belenes    15      17    27    30   26    14
## 1616    Suc. Belenes    NA      NA    NA     3   NA    NA
## 1617    Suc. Belenes    NA       3    NA     6   NA    NA
## 1618    Suc. Belenes    NA       6     3    NA   NA    NA
## 1619    Suc. Belenes    70     116   102    77   67   127
## 1620    Suc. Belenes    56      88   106    42   74    46
## 1621    Suc. Belenes     2       2    15    NA   NA     2
## 1622    Suc. Belenes    19       6    27    23    4    15
## 1623    Suc. Belenes    72      85    82   139  104    82
## 1624    Suc. Belenes     4       4     4     3    4     5
## 1625    Suc. Belenes     2       2     6     5   NA     5
## 1626    Suc. Belenes     6       4     6     2    6    10
## 1627    Suc. Belenes     8       7     8     3    8    10
## 1628    Suc. Belenes    NA       1    NA    NA   NA    NA
## 1629    Suc. Belenes     1       1     1     8    4     4
## 1630    Suc. Belenes     3      NA     1     5    2     2
## 1631    Suc. Belenes    10       4     5    15   13    10
## 1632    Suc. Belenes    NA      NA     2     1    1     2
## 1633    Suc. Belenes     1       1     1    NA    1    NA
## 1634    Suc. Belenes     4       2     2     1    0     0
## 1635    Suc. Belenes     1       3    NA    NA    2    NA
## 1636    Suc. Belenes    14      11     7    10   16     5
## 1637    Suc. Belenes    NA      NA     1    NA   NA    NA
## 1638    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1639    Suc. Belenes    NA       2     4     2    2     2
## 1640    Suc. Belenes     1       0     1     1   NA     1
## 1641    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1642    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1643    Suc. Belenes     0       0     1     0    0     0
## 1644    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1645    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1646    Suc. Belenes    NA       4    NA    NA   NA     2
## 1647    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1648    Suc. Belenes     3      NA    11     6    6    14
## 1649    Suc. Belenes    NA      NA    NA     1   NA    NA
## 1650    Suc. Belenes     7       7     7     8    7     7
## 1651    Suc. Belenes     1       0     1    NA    0     1
## 1652    Suc. Belenes     3       5     5     3    8    10
## 1653    Suc. Belenes    NA       1     2     2   NA     1
## 1654    Suc. Belenes     3       6    NA     2   NA    NA
## 1655    Suc. Belenes    NA       1     1    NA    2     2
## 1656    Suc. Belenes     3       2    NA    NA   NA     2
## 1657    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1658    Suc. Belenes    NA       6     8     8   11    17
## 1659    Suc. Belenes    NA      NA    NA     1   NA    NA
## 1660    Suc. Belenes     7      25    18     1    4     4
## 1661    Suc. Belenes     0       0     0    NA    0     1
## 1662    Suc. Belenes     5       2     9     5    8    10
## 1663    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1664    Suc. Belenes    NA       3     2     2    2     1
## 1665    Suc. Belenes    NA       1    NA    NA   NA    NA
## 1666    Suc. Belenes    NA       1     1    NA    2     2
## 1667    Suc. Belenes    NA       2    NA    NA   NA     2
## 1668    Suc. Belenes    NA      NA    NA     3   NA    NA
## 1669    Suc. Belenes    NA      NA    NA     1   NA    NA
## 1670    Suc. Belenes    NA      NA    NA     1   NA    NA
## 1671    Suc. Belenes     1       0     1    NA    0     1
## 1672    Suc. Belenes     0      NA    NA    NA    1     3
## 1673    Suc. Belenes    NA       1     2     2    2     1
## 1674    Suc. Belenes    NA       1    NA    NA   NA    NA
## 1675    Suc. Belenes    NA      NA    NA     1   NA    NA
## 1676    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1677    Suc. Belenes    NA      NA     6    NA    8     8
## 1678    Suc. Belenes     7       4     4     4   NA     4
## 1679    Suc. Belenes    NA      NA     3     0    4     3
## 1680    Suc. Belenes     2      NA    NA    NA    6    NA
## 1681    Suc. Belenes    NA      NA    NA    NA    1    NA
## 1682    Suc. Belenes    NA       1     1    NA    2     2
## 1683    Suc. Belenes    NA       2    NA    NA   NA     2
## 1684    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1685    Suc. Belenes    NA      NA    NA     2   NA    NA
## 1686    Suc. Belenes     3      NA     6     3    8     8
## 1687    Suc. Belenes    NA      NA    NA     1   NA    NA
## 1688    Suc. Belenes    NA      14     4     4    7     4
## 1689    Suc. Belenes     1       0     1    NA    0     1
## 1690    Suc. Belenes     2       3     5     3    5    14
## 1691    Suc. Belenes    NA       3     2     2    2     1
## 1692    Suc. Belenes    NA       2    NA    NA   NA    NA
## 1693    Suc. Belenes    NA       1     1    NA    2     2
## 1694    Suc. Belenes     1      NA    NA     1    1    NA
## 1695    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1696    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1697    Suc. Belenes     3      NA    NA    NA    3     3
## 1698    Suc. Belenes     1       4    NA     5    5     5
## 1699    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1700    Suc. Belenes     2      95     2     2   27    27
## 1701    Suc. Belenes     6     101     3    16   35    41
## 1702    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1703    Suc. Belenes     7      14    NA    18    7     4
## 1704    Suc. Belenes     5      36    NA     8   10    10
## 1705    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1706    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1707    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1708    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1709    Suc. Belenes     1       0     0     0    0     1
## 1710    Suc. Belenes     5       4    NA    NA   NA     1
## 1711    Suc. Belenes    NA       2    NA     1   NA     1
## 1712    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1713    Suc. Belenes    NA       1    NA     1   NA    NA
## 1714    Suc. Belenes     2       4     2     2    4     2
## 1715    Suc. Belenes    NA       4    NA    NA   NA    NA
## 1716    Suc. Belenes    NA       2     1     1   NA    NA
## 1717    Suc. Belenes     3       8     3    11    3     8
## 1718    Suc. Belenes    NA      NA    NA     3    1     3
## 1719    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1720    Suc. Belenes     1      NA     1    NA   NA    NA
## 1721    Suc. Belenes     3      NA    NA    NA   NA    NA
## 1722    Suc. Belenes     2       2    NA    NA   NA    NA
## 1723    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1724    Suc. Belenes     4       2     2     2    4     6
## 1725    Suc. Belenes    NA       1    NA     1   NA    NA
## 1726    Suc. Belenes    23      23    30    40   42    40
## 1727    Suc. Belenes     6       8     6     9   14     6
## 1728    Suc. Belenes    28      31    37    34   59    39
## 1729    Suc. Belenes     6       6     8     8   11    11
## 1730    Suc. Belenes     3      14     5    19   14    12
## 1731    Suc. Belenes    36      40    34    32   49    40
## 1732    Suc. Belenes     3       4     3     8    8     8
## 1733    Suc. Belenes     3       3     3     5    5     6
## 1734    Suc. Belenes    NA      NA    NA     1   NA    NA
## 1735    Suc. Belenes     8       4     8     8   11    11
## 1736    Suc. Belenes     8       8    11    11    8    17
## 1737    Suc. Belenes     6       6     6     2    6     4
## 1738    Suc. Belenes    NA       2    NA     1    1     1
## 1739    Suc. Belenes    NA      NA    NA     2   NA    NA
## 1740    Suc. Belenes    NA      NA    NA    NA    4     4
## 1741    Suc. Belenes    53      53    53    90   69    45
## 1742    Suc. Belenes    NA       6     6     6    6    29
## 1743    Suc. Belenes     3       3     3    NA    3     3
## 1744    Suc. Belenes    17      17    17    21   32    23
## 1745    Suc. Belenes    17      17    20    27   29    29
## 1746    Suc. Belenes    28      28    25    62   73    73
## 1747    Suc. Belenes     6       6     6     8   14     8
## 1748    Suc. Belenes    81      85    77    70   85    92
## 1749    Suc. Belenes    35      28    32    28   28    28
## 1750    Suc. Belenes     7       2     3    NA    5    NA
## 1751    Suc. Belenes    21      15    13    25   15    19
## 1752    Suc. Belenes    49      55    38    49   72    76
## 1753    Suc. Belenes    55      53    38    57   80    80
## 1754    Suc. Belenes     2       2     1     2    2     2
## 1755    Suc. Belenes     6       3     9    18   18    NA
## 1756    Suc. Belenes    13      13    12    20   22    23
## 1757    Suc. Belenes     5       6     6     8    8    11
## 1758    Suc. Belenes     2       2     4     6    8    10
## 1759    Suc. Belenes     4       6     4     5    6     6
## 1760    Suc. Belenes    NA       1    NA    NA   NA    NA
## 1761    Suc. Belenes     2       1     1     1    2     2
## 1762    Suc. Belenes    NA      NA    NA     1   NA    NA
## 1763    Suc. Belenes     1      NA     2     3    3     3
## 1764    Suc. Belenes     2       1     1     5    2     1
## 1765    Suc. Belenes     2       1     2     1   NA     1
## 1766    Suc. Belenes     1       1     1     2    2     5
## 1767    Suc. Belenes     3      13    NA     1    2     2
## 1768    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1769    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1770    Suc. Belenes     2       2     2     6    2    NA
## 1771    Suc. Belenes     0       1    NA     1    1     1
## 1772    Suc. Belenes     1       4     7    NA    3     2
## 1773    Suc. Belenes     1       3     4     3   NA     3
## 1774    Suc. Belenes     4       1     7    NA   NA     2
## 1775    Suc. Belenes     5       2     6     5    5     5
## 1776    Suc. Belenes     1       1     0     1    1     1
## 1777    Suc. Belenes     3       4     5     8    9     8
## 1778    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1779    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1780    Suc. Belenes     2       2     2     4    4     4
## 1781    Suc. Belenes    NA      NA    NA    NA   NA     2
## 1782    Suc. Belenes    NA      NA     3     3   11    NA
## 1783    Suc. Belenes     1       0     0     0    0     1
## 1784    Suc. Belenes     2       2     4     3    6     3
## 1785    Suc. Belenes     1       1     1     1    3     3
## 1786    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1787    Suc. Belenes    NA       1     1     0    0     0
## 1788    Suc. Belenes    NA      NA    NA    NA   NA     2
## 1789    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1790    Suc. Belenes     0       0     0     0    0     1
## 1791    Suc. Belenes     1      NA     1    NA   NA    NA
## 1792    Suc. Belenes     1       1     1     1    3     3
## 1793    Suc. Belenes    NA       1     1     0    0     0
## 1794    Suc. Belenes     2       2     2    NA   NA     2
## 1795    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1796    Suc. Belenes     1       0     0     0    0     1
## 1797    Suc. Belenes     1      NA     4    NA    2     3
## 1798    Suc. Belenes     2      NA    NA    NA   NA    NA
## 1799    Suc. Belenes     1       1     1     1    3     3
## 1800    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1801    Suc. Belenes     1      NA    NA    NA    1    NA
## 1802    Suc. Belenes    NA      NA    NA    NA   NA     2
## 1803    Suc. Belenes     6       3     3     3    6     6
## 1804    Suc. Belenes    NA      NA     2     2    2     3
## 1805    Suc. Belenes     2       2    NA     2    2     4
## 1806    Suc. Belenes    NA      NA     1     4    1     5
## 1807    Suc. Belenes    NA       1     1     0    0     0
## 1808    Suc. Belenes     6       6     4     4    4     8
## 1809    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1810    Suc. Belenes    NA      NA    NA    NA   NA     2
## 1811    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1812    Suc. Belenes     8       6     6     6    3     6
## 1813    Suc. Belenes     1       0     0     0    0     1
## 1814    Suc. Belenes     4      NA     4     5    7     7
## 1815    Suc. Belenes     4      NA    NA    NA   NA    NA
## 1816    Suc. Belenes     1       1     1     1    3     3
## 1817    Suc. Belenes    NA      NA    NA    NA    1    NA
## 1818    Suc. Belenes    NA       1     1     0    0     0
## 1819    Suc. Belenes    NA      NA     1    NA   NA    NA
## 1820    Suc. Belenes     6       2     3    10    7     8
## 1821    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1822    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1823    Suc. Belenes     2       8     6     6   13     8
## 1824    Suc. Belenes     6       6     3     6    6     6
## 1825    Suc. Belenes    11       7     4     7    7     7
## 1826    Suc. Belenes     3       3     3     3    5     3
## 1827    Suc. Belenes     1       1     1     1    0     3
## 1828    Suc. Belenes    NA      NA     1    NA   NA    NA
## 1829    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1830    Suc. Belenes     1       2     1     1    3     3
## 1831    Suc. Belenes     1       0     1     1    2     1
## 1832    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1833    Suc. Belenes    NA       1     1    NA   NA    NA
## 1834    Suc. Belenes     2      NA    NA    NA   NA    NA
## 1835    Suc. Belenes    NA       2     1     1   NA    NA
## 1836    Suc. Belenes     3       3    NA     3    3     3
## 1837    Suc. Belenes     2      NA    NA    NA   NA    NA
## 1838    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1839    Suc. Belenes     6      13     8    13   11    11
## 1840    Suc. Belenes     5       3     3     5    3     6
## 1841    Suc. Belenes     6       8     6     6   11     6
## 1842    Suc. Belenes     6       3     3    11    6     6
## 1843    Suc. Belenes     7       4     4     4    7    11
## 1844    Suc. Belenes    12      12     8    17   15    12
## 1845    Suc. Belenes     8       6     6    13   11     8
## 1846    Suc. Belenes     1       1     1    NA    1     3
## 1847    Suc. Belenes     5       2     5     5    6     6
## 1848    Suc. Belenes     1      NA     1    NA    1    NA
## 1849    Suc. Belenes    NA      NA     2    NA    2    NA
## 1850    Suc. Belenes    NA      NA    NA     3   NA     3
## 1851    Suc. Belenes     2      NA     4    NA    2     4
## 1852    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1853    Suc. Belenes     4       6     8     8   13    15
## 1854    Suc. Belenes    11      11    16    11   18     5
## 1855    Suc. Belenes     6       6    10     6    6     6
## 1856    Suc. Belenes     3       3     3    NA    3     3
## 1857    Suc. Belenes     3       3     3     5    2     2
## 1858    Suc. Belenes     6       6     6     6    9     9
## 1859    Suc. Belenes     8      23     8    17   23    17
## 1860    Suc. Belenes     8       6     6    14    8     6
## 1861    Suc. Belenes     7      18    14    11   18    14
## 1862    Suc. Belenes    25      56    35    53   53    49
## 1863    Suc. Belenes    21      25    19    23   23    23
## 1864    Suc. Belenes    23      15    53     8   36    11
## 1865    Suc. Belenes     5       7     6     6    8     4
## 1866    Suc. Belenes     2       5     2     5    2     5
## 1867    Suc. Belenes    NA      NA     2    NA    2     2
## 1868    Suc. Belenes     2       7     5     2    4     4
## 1869    Suc. Belenes     1       1     1     1    1     3
## 1870    Suc. Belenes     1       2     1     2    2     2
## 1871    Suc. Belenes     1      NA     1     1    2     3
## 1872    Suc. Belenes     5       2     3     2    3     1
## 1873    Suc. Belenes     2       0     0    NA   NA    NA
## 1874    Suc. Belenes     1       1     1     1    1     1
## 1875    Suc. Belenes     2       1     1     2    1     3
## 1876    Suc. Belenes     6       2     2     5    3     4
## 1877    Suc. Belenes    NA      NA    NA     2   NA    NA
## 1878    Suc. Belenes    NA       1     0     1    1     1
## 1879    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1880    Suc. Belenes     0       0     0    NA   NA    NA
## 1881    Suc. Belenes     4       4     2     4    3     6
## 1882    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1883    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1884    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1885    Suc. Belenes     2      NA     2     2    2    NA
## 1886    Suc. Belenes    NA      NA     3    NA    6    NA
## 1887    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1888    Suc. Belenes     0      NA    NA     1   NA     1
## 1889    Suc. Belenes     2      NA     2    NA   NA     2
## 1890    Suc. Belenes    NA       1     1     3    1     1
## 1891    Suc. Belenes    NA       1     0     0   NA     0
## 1892    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1893    Suc. Belenes     0      NA    NA    NA   NA    NA
## 1894    Suc. Belenes    NA      NA    NA    NA   NA     3
## 1895    Suc. Belenes     0      NA    NA    NA   NA    NA
## 1896    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1897    Suc. Belenes     1      NA    NA     1    1    NA
## 1898    Suc. Belenes    NA       1     0     0   NA     0
## 1899    Suc. Belenes     0       2    NA    NA   NA    NA
## 1900    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1901    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1902    Suc. Belenes    NA       2    NA    NA   NA    NA
## 1903    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1904    Suc. Belenes     1       1     3     1    2     2
## 1905    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1906    Suc. Belenes    NA      NA    NA     2   NA     2
## 1907    Suc. Belenes     3       6     3     3    3     3
## 1908    Suc. Belenes    NA      NA    NA     0   NA     0
## 1909    Suc. Belenes     2       2     2    NA    2     2
## 1910    Suc. Belenes     1       1     1     3    1     1
## 1911    Suc. Belenes    NA       1     0     0   NA     0
## 1912    Suc. Belenes     2       2    NA     4   NA    NA
## 1913    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1914    Suc. Belenes     2      NA     2     2    3    NA
## 1915    Suc. Belenes    NA       3     6     3    3    NA
## 1916    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1917    Suc. Belenes    NA       0     2     1    1     3
## 1918    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1919    Suc. Belenes     1       4     3     3    3     1
## 1920    Suc. Belenes    NA       1     0     0   NA     0
## 1921    Suc. Belenes     4       3     6     3   10     7
## 1922    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1923    Suc. Belenes     2      NA     1     1    1     1
## 1924    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1925    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1926    Suc. Belenes     4       2    NA     4   11    11
## 1927    Suc. Belenes     3       3    NA    10   13    19
## 1928    Suc. Belenes    NA      NA     1     0   NA    NA
## 1929    Suc. Belenes     4      NA    NA    NA   NA    NA
## 1930    Suc. Belenes     8      NA    NA    NA   NA     5
## 1931    Suc. Belenes    NA      NA    NA     1   NA    NA
## 1932    Suc. Belenes     0       0     0    NA    0     0
## 1933    Suc. Belenes    NA      NA    NA    NA    1     2
## 1934    Suc. Belenes     1      NA    NA     2    1     4
## 1935    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1936    Suc. Belenes    NA       1    NA     1   NA     1
## 1937    Suc. Belenes    NA      NA    NA    NA    2    NA
## 1938    Suc. Belenes    NA       1    NA     1    1     1
## 1939    Suc. Belenes    NA      NA     3     3    6     3
## 1940    Suc. Belenes    NA      NA    NA     1   NA     1
## 1941    Suc. Belenes    NA       0    NA    NA    0    NA
## 1942    Suc. Belenes     1      NA    NA    NA    1     1
## 1943    Suc. Belenes    NA      NA    NA     1   NA    NA
## 1944    Suc. Belenes     2       2    NA    NA   NA    NA
## 1945    Suc. Belenes     2       2     4    NA   NA     2
## 1946    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1947    Suc. Belenes    11      11    11     2   13    11
## 1948    Suc. Belenes     8       8     8     8   13     5
## 1949    Suc. Belenes    16       3     6     6   13    10
## 1950    Suc. Belenes    10       6     3     6    6     6
## 1951    Suc. Belenes     2       2     3     2    2     3
## 1952    Suc. Belenes    NA      NA    NA     1   NA    NA
## 1953    Suc. Belenes    63      39    35    11   95    74
## 1954    Suc. Belenes    25      21    14    11    4    14
## 1955    Suc. Belenes     4       6     6     2    4     4
## 1956    Suc. Belenes    15      11    13     6   15    21
## 1957    Suc. Belenes    40      27    25    25   19    34
## 1958    Suc. Belenes     1       1     1    NA   NA     2
## 1959    Suc. Belenes     6       2     3    NA    3    NA
## 1960    Suc. Belenes     2       4     4     2    6     4
## 1961    Suc. Belenes     5       3     3     2    4     4
## 1962    Suc. Belenes    NA       1    NA    NA   NA    NA
## 1963    Suc. Belenes    NA       1    NA     1    1     1
## 1964    Suc. Belenes    NA      NA    NA    NA    1    NA
## 1965    Suc. Belenes    NA      NA    NA     2   NA    NA
## 1966    Suc. Belenes    NA       0     0     2    0     0
## 1967    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1968    Suc. Belenes    NA      NA    NA     3    0     1
## 1969    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1970    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1971    Suc. Belenes    NA      NA    NA    NA    1     1
## 1972    Suc. Belenes    NA      NA    NA    NA    1    NA
## 1973    Suc. Belenes    NA      NA    NA     1    2     1
## 1974    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1975    Suc. Belenes    NA       0     0     0    0     0
## 1976    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1977    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1978    Suc. Belenes     2       2     2     2    2    NA
## 1979    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1980    Suc. Belenes     4       1    NA     1   NA     3
## 1981    Suc. Belenes     2       3     1     2   NA     1
## 1982    Suc. Belenes     0       0     0    NA    0     0
## 1983    Suc. Belenes    NA      NA     1    NA    0     2
## 1984    Suc. Belenes     1       1    NA     1    3    NA
## 1985    Suc. Belenes     1       1     1    NA    1     2
## 1986    Suc. Belenes     0      NA    NA    NA   NA     1
## 1987    Suc. Belenes    NA       0     0    NA   NA     0
## 1988    Suc. Belenes     2       2     2     2    2    NA
## 1989    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1990    Suc. Belenes     1       1     3     1    8    NA
## 1991    Suc. Belenes     9       3     4     5    4     1
## 1992    Suc. Belenes     0       0     0    NA    0     0
## 1993    Suc. Belenes     1       0     1     0    1     1
## 1994    Suc. Belenes     3       3     2     1    5    NA
## 1995    Suc. Belenes     2       3     1     1    1     3
## 1996    Suc. Belenes     0      NA    NA    NA   NA     1
## 1997    Suc. Belenes    NA       0     0    NA   NA     0
## 1998    Suc. Belenes     2       2     2     2    2    NA
## 1999    Suc. Belenes     1       1    NA     1   NA    NA
## 2000    Suc. Belenes     2       3     3     2   NA     1
## 2001    Suc. Belenes     0       0     0    NA    0     0
## 2002    Suc. Belenes     1      NA     0     0    0     1
## 2003    Suc. Belenes     1       1    NA     1    3    NA
## 2004    Suc. Belenes     1       1     1    NA    1     1
## 2005    Suc. Belenes     0      NA    NA    NA   NA     1
## 2006    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2007    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2008    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2009    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2010    Suc. Belenes    NA       0     0    NA   NA     0
## 2011    Suc. Belenes     2       2     2     2    2    NA
## 2012    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2013    Suc. Belenes     1       1    NA     1    6    NA
## 2014    Suc. Belenes     2       3     3     2   NA     1
## 2015    Suc. Belenes     0       0     0    NA    0     0
## 2016    Suc. Belenes     1       0     1     0    1     2
## 2017    Suc. Belenes     1       1    NA     1    3     2
## 2018    Suc. Belenes     4       2     1    NA    1     3
## 2019    Suc. Belenes     0      NA    NA    NA   NA     1
## 2020    Suc. Belenes    NA       0     0    NA   NA     0
## 2021    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2022    Suc. Belenes    NA      NA    NA    NA    1     2
## 2023    Suc. Belenes    NA      NA    NA    NA   NA     0
## 2024    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2025    Suc. Belenes     1       1    NA    NA   NA    NA
## 2026    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2027    Suc. Belenes    15      49    40    25   59    53
## 2028    Suc. Belenes    10      13    NA    10   60    57
## 2029    Suc. Belenes    NA      NA     0    NA    0     0
## 2030    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2031    Suc. Belenes    13      25    13    15   10    20
## 2032    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2033    Suc. Belenes     1       3    NA    NA    2    NA
## 2034    Suc. Belenes     3       6     1     2    8    12
## 2035    Suc. Belenes     6       3     2    NA    8     1
## 2036    Suc. Belenes     1       3     1     1    2     1
## 2037    Suc. Belenes     0       2    NA    NA   NA    NA
## 2038    Suc. Belenes     8       5     3     3    5     2
## 2039    Suc. Belenes     8       8     5     6   12     4
## 2040    Suc. Belenes     0       1     1     0    0    NA
## 2041    Suc. Belenes    NA      NA    NA     1    1    NA
## 2042    Suc. Belenes     2      NA    NA    NA    2    NA
## 2043    Suc. Belenes    NA      NA     1     1    1    NA
## 2044    Suc. Belenes     8       6     8     6   14     6
## 2045    Suc. Belenes     3       1    NA    NA   NA    NA
## 2046    Suc. Belenes     1       0     1     1    2     2
## 2047    Suc. Belenes     2       4     4     4   11     3
## 2048    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2049    Suc. Belenes    NA       4    NA    NA   NA    NA
## 2050    Suc. Belenes     1       2     1    NA    1     1
## 2051    Suc. Belenes    NA       2    NA     2    2     4
## 2052    Suc. Belenes     8       6    17    NA   15    11
## 2053    Suc. Belenes     2       3     3     2    5     2
## 2054    Suc. Belenes    14      14    14    20   23    17
## 2055    Suc. Belenes     3       8     6    14   11     6
## 2056    Suc. Belenes     6      17    13    17   30    32
## 2057    Suc. Belenes     7       4     8     7    6     9
## 2058    Suc. Belenes    NA      NA    NA     2    2     3
## 2059    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2060    Suc. Belenes     4       6    11    NA    8     4
## 2061    Suc. Belenes     8       8     3     8    6     3
## 2062    Suc. Belenes    NA       6    NA     4    4     4
## 2063    Suc. Belenes    NA       2    NA    NA   NA     1
## 2064    Suc. Belenes    11      17    23    NA   38    NA
## 2065    Suc. Belenes    40      61    63    NA   66    18
## 2066    Suc. Belenes    NA      NA    NA    NA   NA    51
## 2067    Suc. Belenes    10       3     6     6    6    13
## 2068    Suc. Belenes    27      20    30    15   27    27
## 2069    Suc. Belenes     2      18    18    NA    3     6
## 2070    Suc. Belenes    42      59    34    42   28    62
## 2071    Suc. Belenes    14      17    14     8   17    20
## 2072    Suc. Belenes    63     194    85    42   92   120
## 2073    Suc. Belenes    32      56    63    42   56    88
## 2074    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2075    Suc. Belenes    46      95    51    25   78    32
## 2076    Suc. Belenes    53      91    59   114   95    61
## 2077    Suc. Belenes    14      24    12     8   17    21
## 2078    Suc. Belenes     3       5    14     2    8    15
## 2079    Suc. Belenes    NA       6    12     2    6    18
## 2080    Suc. Belenes     4       4    11     4    7    17
## 2081    Suc. Belenes    NA       3     2     3    3     3
## 2082    Suc. Belenes     4       3     2     3    8     2
## 2083    Suc. Belenes     8       6     5     6    7     6
## 2084    Suc. Belenes     8       8     8    10   11    11
## 2085    Suc. Belenes     6       2     2    NA    4    NA
## 2086    Suc. Belenes     1       1     0     1    2     2
## 2087    Suc. Belenes     5       1     1     2    0    NA
## 2088    Suc. Belenes     7       6    NA     2    5     2
## 2089    Suc. Belenes    14      19    10    13   19    32
## 2090    Suc. Belenes    NA      NA    NA    NA   NA     3
## 2091    Suc. Belenes     2      NA     4     2    2     2
## 2092    Suc. Belenes     2       3     0     1    2     3
## 2093    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2094    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2095    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2096    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2097    Suc. Belenes    NA      NA    NA     0    0    NA
## 2098    Suc. Belenes     2       2    NA     3    1     3
## 2099    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2100    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2101    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2102    Suc. Belenes    NA      NA    NA    NA    1     3
## 2103    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2104    Suc. Belenes    NA       6     3     6    1    NA
## 2105    Suc. Belenes     4       4    NA    NA   14    11
## 2106    Suc. Belenes     0       0    NA    NA   NA    NA
## 2107    Suc. Belenes     0       0     1     1    1     1
## 2108    Suc. Belenes     1       1     6     1    2    NA
## 2109    Suc. Belenes     3       2     4     4    3     6
## 2110    Suc. Belenes    NA      NA     0     0   NA    NA
## 2111    Suc. Belenes    NA       1     0    NA   NA     0
## 2112    Suc. Belenes    NA      NA    NA    NA    1     2
## 2113    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2114    Suc. Belenes     3      NA     6     3    1     6
## 2115    Suc. Belenes    NA       4    NA     4   18    NA
## 2116    Suc. Belenes     0       0    NA    NA   NA    NA
## 2117    Suc. Belenes     0       0     0     1   NA     1
## 2118    Suc. Belenes     1       1     2     5   NA     6
## 2119    Suc. Belenes     4       4     6     4    5     3
## 2120    Suc. Belenes    NA      NA     0     0   NA    NA
## 2121    Suc. Belenes    NA       1     0    NA   NA     0
## 2122    Suc. Belenes    NA      NA    NA    NA    1     2
## 2123    Suc. Belenes    NA       3    NA    NA   NA    NA
## 2124    Suc. Belenes    NA       4    NA    NA   NA    NA
## 2125    Suc. Belenes     0       0    NA    NA   NA    NA
## 2126    Suc. Belenes     0      NA     0     1   NA     1
## 2127    Suc. Belenes     1       1    NA     1   NA    NA
## 2128    Suc. Belenes     1       3     1     2    1     2
## 2129    Suc. Belenes    NA      NA     0     0   NA    NA
## 2130    Suc. Belenes     3       3     4     4    3     5
## 2131    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2132    Suc. Belenes    NA      11     8    NA    1    NA
## 2133    Suc. Belenes     7       4    NA    NA   21     4
## 2134    Suc. Belenes    NA      NA    NA    NA    1    NA
## 2135    Suc. Belenes    NA      NA     4    NA    2     2
## 2136    Suc. Belenes     4       5     3     5    4     3
## 2137    Suc. Belenes    NA       1     0    NA   NA     0
## 2138    Suc. Belenes    NA      NA    NA    NA    1     2
## 2139    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2140    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2141    Suc. Belenes    NA      11     6    NA    1     3
## 2142    Suc. Belenes     7      11    NA     4   28    14
## 2143    Suc. Belenes     0       0    NA    NA    3    NA
## 2144    Suc. Belenes     1      NA     1     1   NA     4
## 2145    Suc. Belenes     1       1    NA     3    6     2
## 2146    Suc. Belenes     4       8     6     5    8     8
## 2147    Suc. Belenes    NA      NA     0     0   NA    NA
## 2148    Suc. Belenes    NA       1     0    NA   NA     0
## 2149    Suc. Belenes    NA       1     1    NA   NA    NA
## 2150    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2151    Suc. Belenes    30      50    25    37   36    43
## 2152    Suc. Belenes    NA      NA    NA    NA   NA     2
## 2153    Suc. Belenes    NA       1     1     3    7     7
## 2154    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2155    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2156    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2157    Suc. Belenes    NA      NA    NA     2    2     2
## 2158    Suc. Belenes    NA      NA    NA     3    3     3
## 2159    Suc. Belenes    NA      NA    NA    NA   NA     0
## 2160    Suc. Belenes    NA      NA    NA     3   NA     3
## 2161    Suc. Belenes    NA      NA    NA    NA   NA     0
## 2162    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2163    Suc. Belenes     1      NA     1     1   NA     1
## 2164    Suc. Belenes    NA       1    NA     1   NA     1
## 2165    Suc. Belenes    NA       1     1     1   NA     1
## 2166    Suc. Belenes    NA      NA    NA     3   NA    NA
## 2167    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2168    Suc. Belenes     2      NA    NA     4    2     4
## 2169    Suc. Belenes     3      NA    NA    NA   NA    NA
## 2170    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2171    Suc. Belenes   142      25    NA     6   66    32
## 2172    Suc. Belenes    NA      NA    NA    NA   NA     2
## 2173    Suc. Belenes   124      85    NA    26   95    26
## 2174    Suc. Belenes    NA      NA    NA    NA   NA    60
## 2175    Suc. Belenes   206     117    25    63   86    63
## 2176    Suc. Belenes    11       8     2    23   15    29
## 2177    Suc. Belenes    15      NA    NA    NA   32    NA
## 2178    Suc. Belenes    NA      NA    NA     6   17     3
## 2179    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2180    Suc. Belenes   310     113    NA    14   46    99
## 2181    Suc. Belenes   778     419    67   335  257   278
## 2182    Suc. Belenes    NA      NA    NA    NA   NA     7
## 2183    Suc. Belenes    NA      NA    NA    NA    2    NA
## 2184    Suc. Belenes   152      38    NA    70   82   101
## 2185    Suc. Belenes   934     579   254   311  353   486
## 2186    Suc. Belenes     8       6     2    17    5    43
## 2187    Suc. Belenes     2       2     2    NA    2     2
## 2188    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2189    Suc. Belenes    NA       1    NA    NA    3     4
## 2190    Suc. Belenes    NA      NA    NA     1   NA     1
## 2191    Suc. Belenes    NA      NA    NA     1   NA    NA
## 2192    Suc. Belenes    NA      NA    NA     3   NA    NA
## 2193    Suc. Belenes     0       0    NA     0   NA     0
## 2194    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2195    Suc. Belenes     1      NA    NA     5   NA     3
## 2196    Suc. Belenes    NA      NA    NA    NA   NA     0
## 2197    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2198    Suc. Belenes    NA       0    NA     0   NA     0
## 2199    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2200    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2201    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2202    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2203    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2204    Suc. Belenes    NA       6     1     3   20     6
## 2205    Suc. Belenes    NA      NA    NA    NA    1    NA
## 2206    Suc. Belenes    NA      NA    NA    NA    1     3
## 2207    Suc. Belenes    10       7     2     3   16     3
## 2208    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2209    Suc. Belenes    NA      NA    NA     0    1     1
## 2210    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2211    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2212    Suc. Belenes    NA      NA     1    NA    3     8
## 2213    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2214    Suc. Belenes    NA      NA    NA    NA    0     1
## 2215    Suc. Belenes   223      64    32    73   29   126
## 2216    Suc. Belenes    NA      NA    NA     0    1     1
## 2217    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2218    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2219    Suc. Belenes    NA      NA     1    NA   NA    NA
## 2220    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2221    Suc. Belenes    NA      NA    NA     0    1     2
## 2222    Suc. Belenes   244       1    21    39   45   128
## 2223    Suc. Belenes    NA      NA    NA    NA   11     3
## 2224    Suc. Belenes     4      NA     4     4   NA    NA
## 2225    Suc. Belenes    NA      NA    NA     0    1     1
## 2226    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2227    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2228    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2229    Suc. Belenes     3      NA     4    NA    8     3
## 2230    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2231    Suc. Belenes    NA      NA    NA     0    1     3
## 2232    Suc. Belenes     1       5     4    22   20     7
## 2233    Suc. Belenes    NA      NA    NA     0    1     1
## 2234    Suc. Belenes    NA      NA    NA    NA    3    NA
## 2235    Suc. Belenes    NA      NA     4    NA   NA    NA
## 2236    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2237    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2238    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2239    Suc. Belenes     2       4     4    NA    2     4
## 2240    Suc. Belenes     3      19     3    NA    3    10
## 2241    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2242    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2243    Suc. Belenes    NA      NA    NA     1   NA    NA
## 2244    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2245    Suc. Belenes     2       3     1     4    3     3
## 2246    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2247    Suc. Belenes    NA       3     1    NA    1     1
## 2248    Suc. Belenes    NA       3     1    NA    1     2
## 2249    Suc. Belenes     3      NA    NA    NA   NA    NA
## 2250    Suc. Belenes     8       2     2     6    2     4
## 2251    Suc. Belenes     4       2     4     8    6     4
## 2252    Suc. Belenes    NA       1    NA     1    1     1
## 2253    Suc. Belenes    13       4     6     4    8     6
## 2254    Suc. Belenes     3       3    NA     3   NA    NA
## 2255    Suc. Belenes    NA      NA    NA    NA   NA     3
## 2256    Suc. Belenes    22       3     6    48    3    NA
## 2257    Suc. Belenes     5       5     5    12    2     5
## 2258    Suc. Belenes    NA      NA     7    35   28    21
## 2259    Suc. Belenes    74      81    74    85   21    42
## 2260    Suc. Belenes     3       3     2     2   NA    NA
## 2261    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2262    Suc. Belenes     6       4     6    11   13    11
## 2263    Suc. Belenes   116      93   118   123  110   106
## 2264    Suc. Belenes     2       3     2     4    4     3
## 2265    Suc. Belenes     2       2    NA     4   NA     2
## 2266    Suc. Belenes     2       2     2     1   NA     1
## 2267    Suc. Belenes    NA       1     1    NA    1     1
## 2268    Suc. Belenes    NA      NA    NA     1   NA    NA
## 2269    Suc. Belenes    NA       1    NA    NA   NA    NA
## 2270    Suc. Belenes    NA       1    NA    NA   NA    NA
## 2271    Suc. Belenes     0       4     0    NA    0     2
## 2272    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2273    Suc. Belenes     5       5     5     4    7     3
## 2274    Suc. Belenes    NA      NA    NA     0    1    NA
## 2275    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2276    Suc. Belenes     0       0     0    NA    0     0
## 2277    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2278    Suc. Belenes    NA       1    NA    NA   NA    NA
## 2279    Suc. Belenes     0       0     0     0    0     0
## 2280    Suc. Belenes    NA       2     2    NA   NA     2
## 2281    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2282    Suc. Belenes    NA       0    NA     0   NA    NA
## 2283    Suc. Belenes    NA       1    NA     3   NA    NA
## 2284    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2285    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2286    Suc. Belenes    NA       0    NA     0   NA    NA
## 2287    Suc. Belenes     3       6    NA    11    3     8
## 2288    Suc. Belenes     0      NA     0     0   NA    NA
## 2289    Suc. Belenes     2       2     2     6    6     8
## 2290    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2291    Suc. Belenes    NA      NA    NA    NA   NA     3
## 2292    Suc. Belenes    NA       3     3     3   NA    NA
## 2293    Suc. Belenes    NA      NA     0    NA   NA    NA
## 2294    Suc. Belenes    NA       2    NA    NA   NA    NA
## 2295    Suc. Belenes    NA       0    NA     0   NA    NA
## 2296    Suc. Belenes    NA      NA    NA    NA   NA     3
## 2297    Suc. Belenes     6       1     3     8   NA    NA
## 2298    Suc. Belenes     0       0     0     0   NA    NA
## 2299    Suc. Belenes     4       4     2     6    8     8
## 2300    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2301    Suc. Belenes    NA       0    NA     0   NA    NA
## 2302    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2303    Suc. Belenes     1       3     3    NA    1     1
## 2304    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2305    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2306    Suc. Belenes    17       8    NA     2    2    23
## 2307    Suc. Belenes    22       3    NA     3    3     3
## 2308    Suc. Belenes     3       3    NA    NA   NA    NA
## 2309    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2310    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2311    Suc. Belenes    NA      NA    NA    NA    1    NA
## 2312    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2313    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2314    Suc. Belenes     3       4     1     2    3     3
## 2315    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2316    Suc. Belenes    NA       1    NA     1   NA    NA
## 2317    Suc. Belenes    NA      NA    NA    NA   NA     2
## 2318    Suc. Belenes    NA       1     1     1   NA     1
## 2319    Suc. Belenes    NA      NA    NA    NA   NA    11
## 2320    Suc. Belenes    NA      NA    NA    NA   NA     3
## 2321    Suc. Belenes     2      NA     4    NA    2     2
## 2322    Suc. Belenes    13      38    19    25   19    36
## 2323    Suc. Belenes     3      NA     3     2    3     3
## 2324    Suc. Belenes    48      39    76     3   51    76
## 2325    Suc. Belenes     8       4    32    NA   11    23
## 2326    Suc. Belenes     2       1     2     2    3     2
## 2327    Suc. Belenes     2       3    NA     5    2     5
## 2328    Suc. Belenes     6       4     6     2    8     6
## 2329    Suc. Belenes     2       4     4    NA    6     6
## 2330    Suc. Belenes    NA      NA    NA     3   NA    NA
## 2331    Suc. Belenes     2      NA     2     1   NA     2
## 2332    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2333    Suc. Belenes    58      69    53    71   50    NA
## 2334    Suc. Belenes    NA      NA    NA    NA   NA    38
## 2335    Suc. Belenes     3       3     6     3    3     3
## 2336    Suc. Belenes    NA      NA    NA     5   NA    NA
## 2337    Suc. Belenes     9      23     5    23    5    18
## 2338    Suc. Belenes    NA      NA    34    34    6     6
## 2339    Suc. Belenes    NA     201   187    42  180   137
## 2340    Suc. Belenes    67      95   148   130   46   123
## 2341    Suc. Belenes    36      25    27    NA   49    36
## 2342    Suc. Belenes    53      59    34   125   34    70
## 2343    Suc. Belenes     6       6     5     7   10    16
## 2344    Suc. Belenes     3      24    NA     4    5    26
## 2345    Suc. Belenes     2      NA    NA    NA   NA    NA
## 2346    Suc. Belenes    NA       1     1    NA   NA     2
## 2347    Suc. Belenes    NA      NA     1     1   NA    NA
## 2348    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2349    Suc. Belenes     2       0     0     0   NA     0
## 2350    Suc. Belenes     2       1     1    NA    2    NA
## 2351    Suc. Belenes     6       5    18     4   11    NA
## 2352    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2353    Suc. Belenes     4       4     4     4    6     6
## 2354    Suc. Belenes    NA       2    NA     1    1     1
## 2355    Suc. Belenes    NA       0     0    NA    0     0
## 2356    Suc. Belenes     3      NA    NA    NA    1     3
## 2357    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2358    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2359    Suc. Belenes    NA      NA    NA    NA   NA     2
## 2360    Suc. Belenes     6       8     6    17   NA     8
## 2361    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2362    Suc. Belenes     0      NA     2     0    0    NA
## 2363    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2364    Suc. Belenes    NA       1    NA    NA   NA    NA
## 2365    Suc. Belenes    NA      NA    NA    NA   NA     2
## 2366    Suc. Belenes    NA      NA     6    NA    8     6
## 2367    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2368    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2369    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2370    Suc. Belenes    NA      NA     3     6   NA     3
## 2371    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2372    Suc. Belenes     0      NA     2    NA   NA     2
## 2373    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2374    Suc. Belenes    NA      NA    NA    NA   NA     2
## 2375    Suc. Belenes    NA       8    11     8    6     6
## 2376    Suc. Belenes     6       2    13     6    8    23
## 2377    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2378    Suc. Belenes    NA      NA    NA    NA   NA     2
## 2379    Suc. Belenes    NA      NA    NA     5   NA    NA
## 2380    Suc. Belenes     3      14    14    14   31    17
## 2381    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2382    Suc. Belenes     0       0     2    NA   NA     2
## 2383    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2384    Suc. Belenes     3       1     1     1    1     3
## 2385    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2386    Suc. Belenes     2      16    NA    NA    9     9
## 2387    Suc. Belenes    NA      NA    NA    NA   NA     0
## 2388    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2389    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2390    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2391    Suc. Belenes     2       4     6    19    6    11
## 2392    Suc. Belenes     3      16    35    25   32    25
## 2393    Suc. Belenes    NA      NA     3    NA    3     3
## 2394    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2395    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2396    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2397    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2398    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2399    Suc. Belenes     1      NA    NA     1    1     3
## 2400    Suc. Belenes    11       1     8     6   16    12
## 2401    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2402    Suc. Belenes     1       1     3     2    2     3
## 2403    Suc. Belenes     2      NA    NA    NA   NA    NA
## 2404    Suc. Belenes    NA       1     2     1    1     1
## 2405    Suc. Belenes    23      14     8    17   11    23
## 2406    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2407    Suc. Belenes     0       0     0     0    0    NA
## 2408    Suc. Belenes    NA       1     1     2    1    NA
## 2409    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2410    Suc. Belenes    NA      NA    NA     1   NA    NA
## 2411    Suc. Belenes    NA      NA    NA     4    4    NA
## 2412    Suc. Belenes     1      NA    NA    NA    1    NA
## 2413    Suc. Belenes    21       2    23    13   32    11
## 2414    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2415    Suc. Belenes    32      25    53     7   92    14
## 2416    Suc. Belenes    17      21    13    13   32    17
## 2417    Suc. Belenes     4       2    NA    NA    3     1
## 2418    Suc. Belenes     2       2    NA    NA   NA    NA
## 2419    Suc. Belenes     6       2     2     8    8    11
## 2420    Suc. Belenes    11      23     3    14   NA     6
## 2421    Suc. Belenes    13      15    13     4    8    13
## 2422    Suc. Belenes     2      NA    NA    NA    4    NA
## 2423    Suc. Belenes     2      NA    11     2   NA    NA
## 2424    Suc. Belenes    NA     161   172    11  198    45
## 2425    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2426    Suc. Belenes    54      48    54   105   73    29
## 2427    Suc. Belenes    12       5     2     5    2     2
## 2428    Suc. Belenes    NA      NA    NA     6   NA    NA
## 2429    Suc. Belenes   190     229   204    NA  324    88
## 2430    Suc. Belenes   151     229   215   148  204    99
## 2431    Suc. Belenes    NA      NA    NA    NA    2    NA
## 2432    Suc. Belenes    40      51    38    27   91    13
## 2433    Suc. Belenes    34     116     2    87  144    27
## 2434    Suc. Belenes    21       9    10    11   22     8
## 2435    Suc. Belenes     6      12    NA     9   12     9
## 2436    Suc. Belenes     6      12     6    NA   24     6
## 2437    Suc. Belenes     2       5    NA    NA    3     5
## 2438    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2439    Suc. Belenes    NA       1     1     5    1     3
## 2440    Suc. Belenes    NA      NA    NA     1   NA    NA
## 2441    Suc. Belenes     3       1    NA     3    4     3
## 2442    Suc. Belenes     0       0     0     1    1     0
## 2443    Suc. Belenes    NA       1    NA    NA    0    NA
## 2444    Suc. Belenes     4       4     5     3    8     2
## 2445    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2446    Suc. Belenes     2       2     2     4   NA     2
## 2447    Suc. Belenes     1       1     0     1    1     0
## 2448    Suc. Belenes     2       1     3     3    2     4
## 2449    Suc. Belenes     2       1     2     3    2     1
## 2450    Suc. Belenes     2       1     5     3    6     5
## 2451    Suc. Belenes     2       1     3     3    2     4
## 2452    Suc. Belenes     0       2     2     2    3     2
## 2453    Suc. Belenes     1       3     3     3    1     1
## 2454    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2455    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2456    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2457    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2458    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2459    Suc. Belenes    NA      17    NA     3    1     4
## 2460    Suc. Belenes    NA      NA     4     3    5     9
## 2461    Suc. Belenes    NA      NA     0    NA   NA    NA
## 2462    Suc. Belenes     2       2     1     5    2     1
## 2463    Suc. Belenes     3       2     3     3    3     4
## 2464    Suc. Belenes    NA       1    NA     0    0    NA
## 2465    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2466    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2467    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2468    Suc. Belenes    NA      11    11     3    1     4
## 2469    Suc. Belenes    NA      NA     4     3    5     5
## 2470    Suc. Belenes     0      NA    NA     0   NA    NA
## 2471    Suc. Belenes     2       2     3     5    4     1
## 2472    Suc. Belenes     4       2    NA    NA    4     4
## 2473    Suc. Belenes    NA       1    NA     0    0    NA
## 2474    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2475    Suc. Belenes    NA      11    11    NA    1     1
## 2476    Suc. Belenes    NA      NA     4     3    9     9
## 2477    Suc. Belenes    NA       0    NA    NA   NA    NA
## 2478    Suc. Belenes     2      NA     1     5    2     3
## 2479    Suc. Belenes     1       2    NA     2    3     3
## 2480    Suc. Belenes     3       2     3     1    1    NA
## 2481    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2482    Suc. Belenes    NA      17    NA     3    3     6
## 2483    Suc. Belenes     4      NA    NA    NA    4    NA
## 2484    Suc. Belenes    NA       4     2    NA   NA    NA
## 2485    Suc. Belenes     3      NA    NA     1   NA     3
## 2486    Suc. Belenes    NA       1    NA     0    0    NA
## 2487    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2488    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2489    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2490    Suc. Belenes     3      17    25    20    1     1
## 2491    Suc. Belenes    NA      NA     4     3    5     9
## 2492    Suc. Belenes    NA      NA    NA    NA    0     0
## 2493    Suc. Belenes    NA      NA    NA     4   NA    NA
## 2494    Suc. Belenes     2      NA     1     5    2     3
## 2495    Suc. Belenes     2      NA    NA     2    3     4
## 2496    Suc. Belenes    NA       1    NA     0    0    NA
## 2497    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2498    Suc. Belenes    13      12    12     7   11    12
## 2499    Suc. Belenes    NA      NA    NA    NA   NA     0
## 2500    Suc. Belenes    NA      NA     3     3    3    NA
## 2501    Suc. Belenes     5       5     5     8    5     5
## 2502    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2503    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2504    Suc. Belenes    17      21    40    15   59    27
## 2505    Suc. Belenes     3      19    38    44   76    44
## 2506    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2507    Suc. Belenes    NA      NA    NA    NA   NA     2
## 2508    Suc. Belenes    11      NA     4    14   21    NA
## 2509    Suc. Belenes    20      23    23    15   20    20
## 2510    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2511    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2512    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2513    Suc. Belenes    NA      NA    NA    NA   NA     2
## 2514    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2515    Suc. Belenes     2       2     2     2    2     1
## 2516    Suc. Belenes    NA      NA     2     2   NA    NA
## 2517    Suc. Belenes     5       3     3     3    5     3
## 2518    Suc. Belenes     4       1     0     8    5     3
## 2519    Suc. Belenes     2       2    NA     3   NA     2
## 2520    Suc. Belenes     1       1     1     1   NA     1
## 2521    Suc. Belenes    NA       2     2     4    2    NA
## 2522    Suc. Belenes    NA       2     2     2    1     1
## 2523    Suc. Belenes     8       8     8     8    8     8
## 2524    Suc. Belenes     8       8     3     8    3    10
## 2525    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2526    Suc. Belenes    NA      NA    NA     1    1    NA
## 2527    Suc. Belenes     2      NA    NA    NA   NA     1
## 2528    Suc. Belenes    NA       2    NA     2    2     2
## 2529    Suc. Belenes     2       2     2     3    2     2
## 2530    Suc. Belenes     2       2     4     2    6     2
## 2531    Suc. Belenes    11       6    14    NA    8    14
## 2532    Suc. Belenes    11       4    19    11   21    21
## 2533    Suc. Belenes     3      NA    NA    NA   NA    NA
## 2534    Suc. Belenes     3      NA     1     3    2     2
## 2535    Suc. Belenes    NA      NA    NA     2   NA    NA
## 2536    Suc. Belenes    NA      NA    NA    NA   NA     2
## 2537    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2538    Suc. Belenes    NA      NA     3    NA   NA    NA
## 2539    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2540    Suc. Belenes    NA      NA     2     2    2     4
## 2541    Suc. Belenes    80      87    85    80  156    95
## 2542    Suc. Belenes     5       8    26     8   11    29
## 2543    Suc. Belenes     3       3    22     6   16    10
## 2544    Suc. Belenes    22      22    22    22   32    41
## 2545    Suc. Belenes    33      20    24    14   41    60
## 2546    Suc. Belenes     3      NA     2     3    3    NA
## 2547    Suc. Belenes    31      14    17    14   25    25
## 2548    Suc. Belenes     8       6    20     3   23    20
## 2549    Suc. Belenes   183     240   137   275  303   229
## 2550    Suc. Belenes    21      32    63    39   42    70
## 2551    Suc. Belenes    49      44    51    55   53    66
## 2552    Suc. Belenes    78      51   131    78  125   112
## 2553    Suc. Belenes   129      74    89   120  201   239
## 2554    Suc. Belenes    NA      NA    NA     1   NA    NA
## 2555    Suc. Belenes     3       6     9    NA    3     3
## 2556    Suc. Belenes    14      15    17    12   16    14
## 2557    Suc. Belenes    20      11    18    11   24    21
## 2558    Suc. Belenes     8      10    10     8   18    18
## 2559    Suc. Belenes     6       6     4     5    7     6
## 2560    Suc. Belenes    NA       1    NA    NA   NA    NA
## 2561    Suc. Belenes     1       2     1     3    1     1
## 2562    Suc. Belenes    NA       1     2     2   NA    NA
## 2563    Suc. Belenes     4       4     3     4    7     7
## 2564    Suc. Belenes     1       0     0     0    0     0
## 2565    Suc. Belenes     1      NA    NA     1    1     1
## 2566    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2567    Suc. Belenes     8       3     2     3    6     9
## 2568    Suc. Belenes    NA      NA     2     2   NA     2
## 2569    Suc. Belenes    NA       1    NA    NA   NA    NA
## 2570    Suc. Belenes     2       2     2    NA    1    NA
## 2571    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2572    Suc. Belenes     2       6    NA     6    2     4
## 2573    Suc. Belenes     1       1     1     1    1     3
## 2574    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2575    Suc. Belenes     0       0     0     0    0     0
## 2576    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2577    Suc. Belenes     3      NA     5     8   10    10
## 2578    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2579    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2580    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2581    Suc. Belenes     2      NA    NA    NA    4    NA
## 2582    Suc. Belenes     2       2     4     6    4     2
## 2583    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2584    Suc. Belenes     3       6     7     4   NA     3
## 2585    Suc. Belenes    11      NA    11     4    4     7
## 2586    Suc. Belenes     5       2     3     2    2     2
## 2587    Suc. Belenes     3       8     4     9    6     6
## 2588    Suc. Belenes     4       2     5     5   10    11
## 2589    Suc. Belenes    11       3    18    13   18    16
## 2590    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2591    Suc. Belenes    NA       0     0     0    1    NA
## 2592    Suc. Belenes     2      NA    NA    NA   NA    NA
## 2593    Suc. Belenes     2       2     4     6    4     5
## 2594    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2595    Suc. Belenes    NA       6    15     4    3     3
## 2596    Suc. Belenes     4       4    14     7   14     7
## 2597    Suc. Belenes     1       1     1     1    2     1
## 2598    Suc. Belenes     2       1     2     4    7     6
## 2599    Suc. Belenes     2       2     9     5   12    13
## 2600    Suc. Belenes     4      NA    13    10   13     8
## 2601    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2602    Suc. Belenes    NA       0     0     0    1    NA
## 2603    Suc. Belenes     2      NA    NA    NA   NA    NA
## 2604    Suc. Belenes     2       2     4     6    4     2
## 2605    Suc. Belenes     3       3     7     6   NA    NA
## 2606    Suc. Belenes     4      NA    11     7   NA    NA
## 2607    Suc. Belenes     3       2     2     2    2     1
## 2608    Suc. Belenes     2       1     2     3    7     5
## 2609    Suc. Belenes     4       2     7     5   10     5
## 2610    Suc. Belenes     8      NA     8     8    8     6
## 2611    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2612    Suc. Belenes    NA      NA     8     5   NA     5
## 2613    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2614    Suc. Belenes    NA       3    NA     6    6    NA
## 2615    Suc. Belenes    NA      NA    NA    NA    4     4
## 2616    Suc. Belenes     2       1    NA     2   NA    NA
## 2617    Suc. Belenes    NA      NA     2    NA    2    NA
## 2618    Suc. Belenes    NA      NA    NA     4   NA     5
## 2619    Suc. Belenes    NA       0     0     0    1    NA
## 2620    Suc. Belenes     2      NA    NA     2    2     2
## 2621    Suc. Belenes     2       2     4     6    4     2
## 2622    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2623    Suc. Belenes    NA       6     7     6    6     3
## 2624    Suc. Belenes     4       4    14     7    7    11
## 2625    Suc. Belenes     3       2     4     2    3     3
## 2626    Suc. Belenes     2       3     3     6    5     8
## 2627    Suc. Belenes     4       2     9     7   12    15
## 2628    Suc. Belenes     9      NA    15    10   20    15
## 2629    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2630    Suc. Belenes    NA       0     0     0    1    NA
## 2631    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2632    Suc. Belenes     3      NA    NA    NA    3     6
## 2633    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2634    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2635    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2636    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2637    Suc. Belenes     2       4     8     6    2     8
## 2638    Suc. Belenes     3       6    13    10   NA    13
## 2639    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2640    Suc. Belenes     3       8     5     3    3     5
## 2641    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2642    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2643    Suc. Belenes    NA       1    NA    NA    1    NA
## 2644    Suc. Belenes     0       0     1     0    0     1
## 2645    Suc. Belenes     1       1     1     3    3     2
## 2646    Suc. Belenes     3       4     1     0    3     2
## 2647    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2648    Suc. Belenes     1       2     3    NA   NA    NA
## 2649    Suc. Belenes     2      NA     2     4    2     6
## 2650    Suc. Belenes     2       2     2     1   NA    NA
## 2651    Suc. Belenes     3       8    11    20   14    17
## 2652    Suc. Belenes     3      NA    NA     4    3     3
## 2653    Suc. Belenes    NA      NA     1    NA    1     1
## 2654    Suc. Belenes     4       4     2    NA   NA    NA
## 2655    Suc. Belenes     1      NA    NA     1   NA     1
## 2656    Suc. Belenes     2      NA     6    NA   NA     2
## 2657    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2658    Suc. Belenes    NA      NA     1    NA   NA    NA
## 2659    Suc. Belenes    17      23    30    30   21    21
## 2660    Suc. Belenes    20      31    31    25   23    28
## 2661    Suc. Belenes    NA       3     3     3    3    11
## 2662    Suc. Belenes    13      17    17    17   19    21
## 2663    Suc. Belenes     4       3     2     4    5     5
## 2664    Suc. Belenes    NA       3     2     2   NA     3
## 2665    Suc. Belenes     4       6     8     2    6     6
## 2666    Suc. Belenes    11       8     6     6    8     6
## 2667    Suc. Belenes     2       4     4     2    2     4
## 2668    Suc. Belenes    NA       1     1     1    2     1
## 2669    Suc. Belenes    82      78    68    74   95    59
## 2670    Suc. Belenes    34      26    24    29   26    18
## 2671    Suc. Belenes    16      16    25    25   19    25
## 2672    Suc. Belenes    38      35    44    44   32    29
## 2673    Suc. Belenes    26      20    20    27   24    15
## 2674    Suc. Belenes    45      54    54    37   68    23
## 2675    Suc. Belenes    25      25    25    17   17    17
## 2676    Suc. Belenes    NA      NA    NA    NA   11    NA
## 2677    Suc. Belenes   261     208   151   208  271   141
## 2678    Suc. Belenes    17      17     8    11    6    11
## 2679    Suc. Belenes    NA       2    NA    NA   30    NA
## 2680    Suc. Belenes   129      91    76    89  101    70
## 2681    Suc. Belenes    12       6    12     6   12     9
## 2682    Suc. Belenes    12      12     9    14   11    14
## 2683    Suc. Belenes    11       9     8     9   11    11
## 2684    Suc. Belenes     8      10     8     8    8    10
## 2685    Suc. Belenes     7       8     6     5    8     6
## 2686    Suc. Belenes    NA      NA    NA     1   NA    NA
## 2687    Suc. Belenes     1       1     1     1    1     3
## 2688    Suc. Belenes     1       4     2     3    2     1
## 2689    Suc. Belenes    NA       3     4     6    8     7
## 2690    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2691    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2692    Suc. Belenes     3      NA     4     7    4     6
## 2693    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2694    Suc. Belenes     2      NA     2     4    2    NA
## 2695    Suc. Belenes     0       1    NA     0    0     1
## 2696    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2697    Suc. Belenes     0      NA    NA    NA   NA    NA
## 2698    Suc. Belenes     3       3     4     2    2     3
## 2699    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2700    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2701    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2702    Suc. Belenes     4       2     4     2    2    NA
## 2703    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2704    Suc. Belenes     1      NA     4     4    3     1
## 2705    Suc. Belenes     4       6     6     1    7     8
## 2706    Suc. Belenes     0       0     1     0    0     1
## 2707    Suc. Belenes     0      NA     1    NA   NA    NA
## 2708    Suc. Belenes     2       3     2     3    2     2
## 2709    Suc. Belenes     3       4     3     4    4     3
## 2710    Suc. Belenes    NA      NA    NA    NA   NA     0
## 2711    Suc. Belenes    NA       0     0    NA    0     1
## 2712    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2713    Suc. Belenes     1      NA     1     4    3     1
## 2714    Suc. Belenes     1       3     3     1   NA     1
## 2715    Suc. Belenes     0       0     0     0    0     0
## 2716    Suc. Belenes     2       3     2     3    2     2
## 2717    Suc. Belenes     1       3     1     1    3     3
## 2718    Suc. Belenes    NA      NA    NA    NA   NA     0
## 2719    Suc. Belenes    NA       0     0    NA    0     1
## 2720    Suc. Belenes    NA      NA    NA    NA   NA     2
## 2721    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2722    Suc. Belenes     1      NA     1     1   NA     1
## 2723    Suc. Belenes     4       3     3     1   NA     1
## 2724    Suc. Belenes     0       0     1     0    0     1
## 2725    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2726    Suc. Belenes     2       3     2     3    2     2
## 2727    Suc. Belenes     3       3     1     1    1     3
## 2728    Suc. Belenes    NA      NA    NA    NA   NA     0
## 2729    Suc. Belenes     1       2     3     1    2     2
## 2730    Suc. Belenes    NA      NA     3     3   NA     3
## 2731    Suc. Belenes     4       4     4    NA    4    NA
## 2732    Suc. Belenes    NA      NA    NA    NA    0    NA
## 2733    Suc. Belenes    NA      NA    NA    NA   NA     2
## 2734    Suc. Belenes    NA       3    NA     3    3     1
## 2735    Suc. Belenes    NA       0     0    NA    0     1
## 2736    Suc. Belenes     6       2     6     4    2     4
## 2737    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2738    Suc. Belenes     1      NA     4     6    3     4
## 2739    Suc. Belenes     8       8    10     3    7     8
## 2740    Suc. Belenes     0       0     1     0    0     1
## 2741    Suc. Belenes     0      NA    NA    NA    3     0
## 2742    Suc. Belenes     2       3     2     3    2     2
## 2743    Suc. Belenes     4       4     4     6    4     4
## 2744    Suc. Belenes    NA      NA    NA    NA   NA     0
## 2745    Suc. Belenes    NA       0     0    NA    0     1
## 2746    Suc. Belenes     6      10     4    10   10    10
## 2747    Suc. Belenes    NA      NA    NA    NA   NA     0
## 2748    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2749    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2750    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2751    Suc. Belenes     4       6     8     2    6     6
## 2752    Suc. Belenes     3       6    10    10    3     3
## 2753    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2754    Suc. Belenes     4       7     4     4   NA    NA
## 2755    Suc. Belenes     3       5     5    NA    3     3
## 2756    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2757    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2758    Suc. Belenes    NA      NA     0    NA   NA    NA
## 2759    Suc. Belenes     1       1     1     1    1     1
## 2760    Suc. Belenes     2       4     3     3    4     2
## 2761    Suc. Belenes    NA      NA    NA    NA   NA     0
## 2762    Suc. Belenes    NA      NA     1     1    1     1
## 2763    Suc. Belenes    NA       3     1     1    1     1
## 2764    Suc. Belenes     6       3     3    NA    3     3
## 2765    Suc. Belenes    NA      NA    NA     0    0    NA
## 2766    Suc. Belenes     1      NA    NA     1   NA    NA
## 2767    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2768    Suc. Belenes    NA       2     2     2   NA     2
## 2769    Suc. Belenes    NA       2    NA     2    2     4
## 2770    Suc. Belenes    11       6    13     8   13    15
## 2771    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2772    Suc. Belenes     3       3     3     3    3     3
## 2773    Suc. Belenes     8       5     5     6    6     8
## 2774    Suc. Belenes     3       3     3     5    5     5
## 2775    Suc. Belenes    11       8    11    14    8     8
## 2776    Suc. Belenes    28      35    46    49   39    35
## 2777    Suc. Belenes    21      18    18    11   14    11
## 2778    Suc. Belenes    23      15    23    23   21    21
## 2779    Suc. Belenes    23      21    32    42   42    76
## 2780    Suc. Belenes     1       2     2     3    3     3
## 2781    Suc. Belenes     2       2     3     3    2     2
## 2782    Suc. Belenes     2       1     2     2    2     1
## 2783    Suc. Belenes    NA      NA     1     1    1     1
## 2784    Suc. Belenes    NA      NA    NA     1   NA    NA
## 2785    Suc. Belenes     1       1     1    NA    1    NA
## 2786    Suc. Belenes    NA      NA     0     0    0     0
## 2787    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2788    Suc. Belenes     1       1     1     3    3     4
## 2789    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2790    Suc. Belenes    NA      NA     0    NA   NA     0
## 2791    Suc. Belenes    NA      NA     0     0    0     0
## 2792    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2793    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2794    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2795    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2796    Suc. Belenes     3       3    NA     3   NA     6
## 2797    Suc. Belenes    NA      NA     0    NA   NA    NA
## 2798    Suc. Belenes     1       0     0     0    3     1
## 2799    Suc. Belenes     1       1     1     2   NA     1
## 2800    Suc. Belenes     4       2     3     3    4     4
## 2801    Suc. Belenes    NA       0     0    NA    0    NA
## 2802    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2803    Suc. Belenes     6       6    NA     3    3     3
## 2804    Suc. Belenes    NA      NA     0    NA   NA    NA
## 2805    Suc. Belenes     1       0     0     1    1     1
## 2806    Suc. Belenes     1       1     3     2    2     3
## 2807    Suc. Belenes     3       1     2     2    2     2
## 2808    Suc. Belenes    NA       0     0    NA    0    NA
## 2809    Suc. Belenes    NA       3    NA    NA   NA    NA
## 2810    Suc. Belenes    NA      NA     0    NA   NA    NA
## 2811    Suc. Belenes     0      NA     0     0    1    NA
## 2812    Suc. Belenes     1       1     1     2   NA     1
## 2813    Suc. Belenes    NA      NA     1    NA   NA    NA
## 2814    Suc. Belenes    NA      NA     1    NA    1     1
## 2815    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2816    Suc. Belenes    NA      NA     3     3   NA     3
## 2817    Suc. Belenes     0      NA    NA    NA   NA    NA
## 2818    Suc. Belenes    NA       0     0    NA    0    NA
## 2819    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2820    Suc. Belenes    NA       3    NA    NA   NA     3
## 2821    Suc. Belenes    NA      NA     0    NA   NA    NA
## 2822    Suc. Belenes     1       1    NA     1    1     1
## 2823    Suc. Belenes     3       1     1     2   NA     1
## 2824    Suc. Belenes     3       1     3     1    3     3
## 2825    Suc. Belenes    NA       0     0    NA    0    NA
## 2826    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2827    Suc. Belenes     2       1     1     3    3     2
## 2828    Suc. Belenes    NA      NA    NA    NA   NA     0
## 2829    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2830    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2831    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2832    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2833    Suc. Belenes    NA       8     2     2   55    19
## 2834    Suc. Belenes    NA       3     3     3    3    16
## 2835    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2836    Suc. Belenes    10      20    NA    10   15    18
## 2837    Suc. Belenes    NA       1    NA    NA   NA    NA
## 2838    Suc. Belenes    NA       1     1     1    2     1
## 2839    Suc. Belenes    NA       3    NA     3    3     3
## 2840    Suc. Belenes     4       6     2     3   10     5
## 2841    Suc. Belenes    NA       0     0     1    0     3
## 2842    Suc. Belenes     2       1     1    NA    2     1
## 2843    Suc. Belenes    NA      NA    NA     2   NA    NA
## 2844    Suc. Belenes    NA       2     1     2    1     1
## 2845    Suc. Belenes     8      14    NA     6   11    28
## 2846    Suc. Belenes     0       0     1     1    1     2
## 2847    Suc. Belenes    NA      NA     1     3    2     1
## 2848    Suc. Belenes    NA      NA    NA    NA   NA     3
## 2849    Suc. Belenes     4       2    NA     4    2     2
## 2850    Suc. Belenes     6       4     2     6    6    11
## 2851    Suc. Belenes    11      14     8     8   17     6
## 2852    Suc. Belenes     2       2    NA     2    2     2
## 2853    Suc. Belenes     8      21     4     8    6     8
## 2854    Suc. Belenes     1      NA    NA     1    1    NA
## 2855    Suc. Belenes    NA      NA     2    NA   NA    NA
## 2856    Suc. Belenes     2       2     6    NA    2     2
## 2857    Suc. Belenes     4       2     6     2    2     4
## 2858    Suc. Belenes    NA       1    NA    NA   NA    NA
## 2859    Suc. Belenes    NA       2    NA    NA   NA    NA
## 2860    Suc. Belenes     1       3    NA    NA   NA     1
## 2861    Suc. Belenes    NA      25    42    42   70    NA
## 2862    Suc. Belenes    NA      NA    11     8   40    NA
## 2863    Suc. Belenes    NA      NA    13    16   51     3
## 2864    Suc. Belenes    98      48    41   288    3     3
## 2865    Suc. Belenes     5      18     6    36    5     2
## 2866    Suc. Belenes    NA      NA    NA     8    3    NA
## 2867    Suc. Belenes     6       3     3     8    8    NA
## 2868    Suc. Belenes    NA     144   120    NA  190    42
## 2869    Suc. Belenes   130     338   247   416   77     4
## 2870    Suc. Belenes     2       8     8    19   34    NA
## 2871    Suc. Belenes     6     167    NA    NA   97    25
## 2872    Suc. Belenes   101     251   222   839   44    15
## 2873    Suc. Belenes    NA       2     4     4    7     8
## 2874    Suc. Belenes    NA      NA     8    21   18    NA
## 2875    Suc. Belenes    NA      NA     6    14   28    NA
## 2876    Suc. Belenes     9       4     7     8    3     5
## 2877    Suc. Belenes    NA       1    NA    NA   NA    NA
## 2878    Suc. Belenes     1       1     1     1    5     1
## 2879    Suc. Belenes    NA      NA    NA     1   NA    NA
## 2880    Suc. Belenes     1       3     2    NA    3    NA
## 2881    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2882    Suc. Belenes     2       0     0     0    0     0
## 2883    Suc. Belenes     2       2     1    NA    1     2
## 2884    Suc. Belenes    10      21    NA     2   18     3
## 2885    Suc. Belenes     2       2     2     2   NA     2
## 2886    Suc. Belenes     0       1     1     1    1     1
## 2887    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2888    Suc. Belenes     0       1     2     0    1     2
## 2889    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2890    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2891    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2892    Suc. Belenes    NA       2     2     2    2    NA
## 2893    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2894    Suc. Belenes    NA      NA    NA    NA   NA     3
## 2895    Suc. Belenes     3      14     6    14    6     6
## 2896    Suc. Belenes     3       1     1     1    1     1
## 2897    Suc. Belenes    NA      NA     2    NA    2     0
## 2898    Suc. Belenes     8       3    15    35   NA     3
## 2899    Suc. Belenes     5       3     3     3    5     8
## 2900    Suc. Belenes    NA       1    NA     1    1     0
## 2901    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2902    Suc. Belenes    NA       3    NA    NA   NA    NA
## 2903    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2904    Suc. Belenes    NA       6     6     8    3     3
## 2905    Suc. Belenes     1       1     0     0    1     0
## 2906    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2907    Suc. Belenes     4       5    13    31   NA     3
## 2908    Suc. Belenes     3       3    NA     3    3     3
## 2909    Suc. Belenes    NA       1    NA     1    1     0
## 2910    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2911    Suc. Belenes     3      NA    NA     3    3     3
## 2912    Suc. Belenes     1       1     1     1    1     1
## 2913    Suc. Belenes    NA      NA    NA    NA    2    NA
## 2914    Suc. Belenes     2       3     6    35   NA     1
## 2915    Suc. Belenes     3       3    NA    NA   NA     5
## 2916    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2917    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2918    Suc. Belenes     6       3     3    NA   NA    NA
## 2919    Suc. Belenes    NA      NA     2    NA   NA    NA
## 2920    Suc. Belenes     8       4     4    11   NA    NA
## 2921    Suc. Belenes    NA       1    NA     1    1     0
## 2922    Suc. Belenes     6       4    NA     2    4     4
## 2923    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2924    Suc. Belenes    NA      NA    NA    NA   NA     3
## 2925    Suc. Belenes    NA      14     8    20   20    14
## 2926    Suc. Belenes     3       1     1     1    2     1
## 2927    Suc. Belenes     0       2     3     2    2     2
## 2928    Suc. Belenes     4       9    15    45    2     7
## 2929    Suc. Belenes     8       3     3     5    8     8
## 2930    Suc. Belenes    NA       1    NA     1    1     0
## 2931    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2932    Suc. Belenes    NA       3    NA    NA    6     1
## 2933    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2934    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2935    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2936    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2937    Suc. Belenes     6      11    15    11   13    13
## 2938    Suc. Belenes     6      13    25    22   19    22
## 2939    Suc. Belenes    NA      NA    NA     0    0    NA
## 2940    Suc. Belenes     5       3     3     8    5     3
## 2941    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2942    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2943    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2944    Suc. Belenes     1       1     2     1    1     0
## 2945    Suc. Belenes    NA      NA     1     1    1     1
## 2946    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2947    Suc. Belenes     0       0     0     0    0     0
## 2948    Suc. Belenes     1      NA    NA    NA    1     1
## 2949    Suc. Belenes     5       5     1     5    3     6
## 2950    Suc. Belenes     0      NA    NA    NA    1     1
## 2951    Suc. Belenes    NA       3     1     2    5     2
## 2952    Suc. Belenes     2      NA    NA    NA   NA    NA
## 2953    Suc. Belenes    NA       1     1     2    2     1
## 2954    Suc. Belenes    NA      11    NA     8    6     3
## 2955    Suc. Belenes     3      NA    NA    NA   NA    NA
## 2956    Suc. Belenes    NA       0     0     0   NA     0
## 2957    Suc. Belenes     1       1    NA     1    1     1
## 2958    Suc. Belenes     1      NA     1     1    2     1
## 2959    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2960    Suc. Belenes    19      15    19    17   21    17
## 2961    Suc. Belenes     6      NA     3     6    3     8
## 2962    Suc. Belenes     6      NA    NA    NA   NA    NA
## 2963    Suc. Belenes    25      21    21    28   28    14
## 2964    Suc. Belenes     3       3     3     2    2    NA
## 2965    Suc. Belenes    21      13    13    13   11    13
## 2966    Suc. Belenes    NA      NA     1     1   NA     1
## 2967    Suc. Belenes     2      NA    NA    NA    2     2
## 2968    Suc. Belenes     1       1    NA    NA   NA    NA
## 2969    Suc. Belenes    11       6     6     4    6     8
## 2970    Suc. Belenes     3       6     6     6    6     6
## 2971    Suc. Belenes     8       4     6     6    6     4
## 2972    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2973    Suc. Belenes    NA      NA    NA     2    2    NA
## 2974    Suc. Belenes    71      69    77    87   61    50
## 2975    Suc. Belenes    NA      NA    NA    NA   NA    19
## 2976    Suc. Belenes    44      38    29    25   29    48
## 2977    Suc. Belenes     3       5     6     9    9     9
## 2978    Suc. Belenes    31      23    31    46   31    39
## 2979    Suc. Belenes     6      NA    NA     8    3     3
## 2980    Suc. Belenes    63     130    85   162  116   141
## 2981    Suc. Belenes    56     162    70   197  169   113
## 2982    Suc. Belenes     5      NA    NA    NA   NA    NA
## 2983    Suc. Belenes     2       2     6    11    8    11
## 2984    Suc. Belenes    25      53    61    59   49    61
## 2985    Suc. Belenes   144     137   139   273   91   148
## 2986    Suc. Belenes     9       4     7     7    6     6
## 2987    Suc. Belenes     3       5     2     5    3     6
## 2988    Suc. Belenes     2      NA     4     4    6     6
## 2989    Suc. Belenes     3       5     5     6    4     4
## 2990    Suc. Belenes    NA       1    NA     1   NA    NA
## 2991    Suc. Belenes    NA       1     1     1    4     3
## 2992    Suc. Belenes     1      NA     1     2    1     1
## 2993    Suc. Belenes     1      NA    NA     2    1     1
## 2994    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2995    Suc. Belenes     3       0     0     1    1     1
## 2996    Suc. Belenes     1       1     0     1    2    NA
## 2997    Suc. Belenes     5       5     7     5    9     6
## 2998    Suc. Belenes     0      NA    NA    NA   NA     1
## 2999    Suc. Belenes    NA       2     2     2    2     2
## 3000    Suc. Belenes     1       1     1     1    0     2
## 3001    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3002    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3003    Suc. Belenes     0       0     1     1    2     1
## 3004    Suc. Belenes     4       4     5     3    3     3
## 3005    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3006    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3007    Suc. Belenes     3      NA    NA    NA   NA    NA
## 3008    Suc. Belenes    11       4    11    14    7    14
## 3009    Suc. Belenes     0       0     0     0    0     0
## 3010    Suc. Belenes    NA       0     0     1    1     1
## 3011    Suc. Belenes    13       8    13    13   17    13
## 3012    Suc. Belenes     1       2     3     3    2     3
## 3013    Suc. Belenes    NA       0     0     0    0     0
## 3014    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3015    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3016    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3017    Suc. Belenes     7       4     7    11    7     7
## 3018    Suc. Belenes     0       0     0     0    0     0
## 3019    Suc. Belenes    NA      NA    NA     2    1     1
## 3020    Suc. Belenes     1       6     2     8    4    NA
## 3021    Suc. Belenes     1       1     3     1    3     2
## 3022    Suc. Belenes    NA       0     0     0    0     0
## 3023    Suc. Belenes    NA       7     4    11    4    11
## 3024    Suc. Belenes     0       0     0     0    0     0
## 3025    Suc. Belenes     2      NA    NA     1    1     1
## 3026    Suc. Belenes     9       8     8     6    2     2
## 3027    Suc. Belenes     1       2     2     1    1     3
## 3028    Suc. Belenes     1       3    NA     2    3     2
## 3029    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3030    Suc. Belenes    NA      NA    NA    NA    3    NA
## 3031    Suc. Belenes    11      11     7     7   14    11
## 3032    Suc. Belenes     1      NA    NA    NA   NA    NA
## 3033    Suc. Belenes    NA       0    NA    NA   NA    NA
## 3034    Suc. Belenes     8       4     4     8   13    17
## 3035    Suc. Belenes     3       4     3     4    3     3
## 3036    Suc. Belenes    NA       0     0     0    0     0
## 3037    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3038    Suc. Belenes    NA      NA     3     6   NA     3
## 3039    Suc. Belenes    11      11     7    18   14    21
## 3040    Suc. Belenes     0       0     0     0    0     0
## 3041    Suc. Belenes     2       0     1     2    2     0
## 3042    Suc. Belenes    17      13    13    23   15    23
## 3043    Suc. Belenes     4       5     4     3    4     4
## 3044    Suc. Belenes    NA       0     0     0    0     0
## 3045    Suc. Belenes    NA      NA    NA     1   NA    NA
## 3046    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3047    Suc. Belenes     3       6     1     3    8    10
## 3048    Suc. Belenes    NA      NA     0    NA   NA     1
## 3049    Suc. Belenes    NA      NA    NA    NA    1     0
## 3050    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3051    Suc. Belenes     8      19    13     2   15    19
## 3052    Suc. Belenes     3       3    13     6    3     3
## 3053    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3054    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3055    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3056    Suc. Belenes     2       3    NA     1    2     3
## 3057    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3058    Suc. Belenes     1       1     1     1    1     1
## 3059    Suc. Belenes     2       1     2     1    1     1
## 3060    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3061    Suc. Belenes    NA      NA     2     2   NA    NA
## 3062    Suc. Belenes     1       1     1     1   NA    NA
## 3063    Suc. Belenes    17      19    15     8   17    13
## 3064    Suc. Belenes     6       8     3    NA    6     8
## 3065    Suc. Belenes     6       6     3     8   11    11
## 3066    Suc. Belenes    23      NA    23    13   11    23
## 3067    Suc. Belenes     1      NA    NA     1    2     1
## 3068    Suc. Belenes     4      NA     4     2    2     2
## 3069    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3070    Suc. Belenes    48      42    32    32   32    26
## 3071    Suc. Belenes    NA      NA    NA    NA   NA    38
## 3072    Suc. Belenes    22      32    22    38   19    22
## 3073    Suc. Belenes     5       6     6     6    5     6
## 3074    Suc. Belenes     6       3     6     6    5     3
## 3075    Suc. Belenes    17      17     8    11   NA     8
## 3076    Suc. Belenes     6       8     8    23   NA     8
## 3077    Suc. Belenes    NA      28    70    NA   70    42
## 3078    Suc. Belenes    92      88    63    42  176    99
## 3079    Suc. Belenes    17      15    11    15   19    19
## 3080    Suc. Belenes    36      13    19    NA   32    13
## 3081    Suc. Belenes    46      36    21    49   17    32
## 3082    Suc. Belenes    11       5     6     6   10     6
## 3083    Suc. Belenes    NA      NA     3     3    3     3
## 3084    Suc. Belenes     4       1     2     2    2     2
## 3085    Suc. Belenes     1       1     1     1    1     1
## 3086    Suc. Belenes    NA      NA    NA    NA    1    NA
## 3087    Suc. Belenes     8      12    NA    NA    2     4
## 3088    Suc. Belenes     1       0     0     0    0     0
## 3089    Suc. Belenes    NA       1     4    NA    3    NA
## 3090    Suc. Belenes     7      21    NA    NA   NA     5
## 3091    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3092    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3093    Suc. Belenes     0       0     0     0    0     0
## 3094    Suc. Belenes     1       1     1     1   NA     3
## 3095    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3096    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3097    Suc. Belenes     8       3     8    11    6     8
## 3098    Suc. Belenes     3      NA     1    NA    1     3
## 3099    Suc. Belenes    NA       2    NA     0    0    NA
## 3100    Suc. Belenes    NA      NA     1    NA   NA    NA
## 3101    Suc. Belenes     3      NA     1     1    3     3
## 3102    Suc. Belenes    NA       0     0     0   NA    NA
## 3103    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3104    Suc. Belenes    NA      NA    NA     0   NA    NA
## 3105    Suc. Belenes    NA      NA     1    NA   NA    NA
## 3106    Suc. Belenes    NA       0     0     0   NA    NA
## 3107    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3108    Suc. Belenes     1      NA     1    NA   NA     1
## 3109    Suc. Belenes    NA      NA     0     0   NA    NA
## 3110    Suc. Belenes    NA      NA     1    NA   NA    NA
## 3111    Suc. Belenes    NA      NA    NA    NA   NA     3
## 3112    Suc. Belenes    14       6    14     3    6     3
## 3113    Suc. Belenes     2       2     2    NA    2    NA
## 3114    Suc. Belenes     1       1     1     1    1     3
## 3115    Suc. Belenes    NA       0     0     0   NA    NA
## 3116    Suc. Belenes    NA      NA    NA    NA   NA     3
## 3117    Suc. Belenes    NA       6     6     6    6     6
## 3118    Suc. Belenes     1      NA    NA     1    1     1
## 3119    Suc. Belenes     0      NA    NA     0   NA     0
## 3120    Suc. Belenes    NA      NA     3    NA   NA     2
## 3121    Suc. Belenes     3       8    NA     1    1     3
## 3122    Suc. Belenes    NA       0     0     0   NA    NA
## 3123    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3124    Suc. Belenes    NA      NA     4    NA    3     3
## 3125    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3126    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3127    Suc. Belenes     2       2     2     2    2     2
## 3128    Suc. Belenes     3      NA     3     3    3     3
## 3129    Suc. Belenes    NA      NA     0    NA   NA    NA
## 3130    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3131    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3132    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3133    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3134    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3135    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3136    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3137    Suc. Belenes    NA       0     1    NA    1     1
## 3138    Suc. Belenes     0      NA     0    NA    0    NA
## 3139    Suc. Belenes     1      NA     1     1    3     1
## 3140    Suc. Belenes     2      NA    NA    NA   NA    NA
## 3141    Suc. Belenes     2      NA     2     1    1     1
## 3142    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3143    Suc. Belenes    NA       3    NA    NA   NA    NA
## 3144    Suc. Belenes    NA      NA    NA     2    2     2
## 3145    Suc. Belenes    NA      NA     1    NA   NA    NA
## 3146    Suc. Belenes     2       2     4     6    2     2
## 3147    Suc. Belenes     8       6     3     8    3     3
## 3148    Suc. Belenes     6       6     6     6    4     6
## 3149    Suc. Belenes     1       2     1     1    2     1
## 3150    Suc. Belenes     2      NA    NA     2   NA    NA
## 3151    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3152    Suc. Belenes    NA      NA     2    NA    2    NA
## 3153    Suc. Belenes     4       4     2     2    2     2
## 3154    Suc. Belenes     1      NA    NA    NA    1    NA
## 3155    Suc. Belenes    NA       1    NA     1   NA    NA
## 3156    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3157    Suc. Belenes    18      21    29    29   29    18
## 3158    Suc. Belenes    NA      NA    NA    NA   NA    13
## 3159    Suc. Belenes    13       6    16    25   10    19
## 3160    Suc. Belenes     9      12     6    18    6     6
## 3161    Suc. Belenes    23      17    11    14   20    17
## 3162    Suc. Belenes    11       6    11     8   11     3
## 3163    Suc. Belenes    21      32     7    25   28    25
## 3164    Suc. Belenes    35      11     7    35   28    35
## 3165    Suc. Belenes    NA      38    NA     6   42     6
## 3166    Suc. Belenes    46      34    44    44   51    59
## 3167    Suc. Belenes    NA      13     3     8    8     3
## 3168    Suc. Belenes    NA       6     3     3   NA     3
## 3169    Suc. Belenes    NA       7     4     5    5     4
## 3170    Suc. Belenes     2       2     6     3   NA     2
## 3171    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3172    Suc. Belenes     4       2     2     2    2     5
## 3173    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3174    Suc. Belenes    NA       1     1     1    1     2
## 3175    Suc. Belenes    NA      NA    NA     1   NA    NA
## 3176    Suc. Belenes    NA       3    NA    NA    1    NA
## 3177    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3178    Suc. Belenes     1      NA     0     0    0     0
## 3179    Suc. Belenes    NA       2     1    NA    2     1
## 3180    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3181    Suc. Belenes    NA      NA     2    NA   NA     4
## 3182    Suc. Belenes     1      NA     0    NA    1     0
## 3183    Suc. Belenes     0       0     0     0    0     0
## 3184    Suc. Belenes    NA       3     3    NA    2     1
## 3185    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3186    Suc. Belenes    NA       2    NA    NA   NA    NA
## 3187    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3188    Suc. Belenes    NA      NA    NA    NA   NA     3
## 3189    Suc. Belenes     3       3     6    NA    3    NA
## 3190    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3191    Suc. Belenes    NA       0     1     0    0     0
## 3192    Suc. Belenes    NA      NA     1     1   NA    NA
## 3193    Suc. Belenes    NA       1     1     1    1     1
## 3194    Suc. Belenes    NA       0     0     0    0     0
## 3195    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3196    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3197    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3198    Suc. Belenes    NA      NA     0    NA    1    NA
## 3199    Suc. Belenes    NA      NA     1     1   NA    NA
## 3200    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3201    Suc. Belenes    NA       0     0     0    0     0
## 3202    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3203    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3204    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3205    Suc. Belenes    NA      NA     0     0   NA    NA
## 3206    Suc. Belenes    NA      NA     1     1   NA    NA
## 3207    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3208    Suc. Belenes    NA      NA    NA    NA    1     1
## 3209    Suc. Belenes    NA      NA     3    NA    3     3
## 3210    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3211    Suc. Belenes    NA      NA     1    NA   NA    NA
## 3212    Suc. Belenes    NA       0     0     0    0     0
## 3213    Suc. Belenes    NA       2    NA     2   NA    NA
## 3214    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3215    Suc. Belenes    NA      NA    NA    NA   NA     3
## 3216    Suc. Belenes     6       3    NA     6   NA     6
## 3217    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3218    Suc. Belenes     0       0     0     1    0     1
## 3219    Suc. Belenes    NA      NA     1     1    4     2
## 3220    Suc. Belenes    NA       3     1     1    2     2
## 3221    Suc. Belenes    NA       0     0     0    0     0
## 3222    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3223    Suc. Belenes     4       4    NA     1    3     1
## 3224    Suc. Belenes    NA      NA    NA     2   NA    NA
## 3225    Suc. Belenes    NA       3     3     3   NA    NA
## 3226    Suc. Belenes     8       8     6    10   10     8
## 3227    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3228    Suc. Belenes    13      17     2     6   19    44
## 3229    Suc. Belenes     3      44     3    10   22    19
## 3230    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3231    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3232    Suc. Belenes    NA      10    10    NA    5     5
## 3233    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3234    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3235    Suc. Belenes    NA       3    NA     1    4     3
## 3236    Suc. Belenes     2       2     2     6    8     6
## 3237    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3238    Suc. Belenes    NA      NA     0    NA   NA     0
## 3239    Suc. Belenes     1       3     1     1    1     1
## 3240    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3241    Suc. Belenes     6       0     1     2    4     1
## 3242    Suc. Belenes    NA      NA    NA    NA   NA     0
## 3243    Suc. Belenes    NA      NA     1     1    1     1
## 3244    Suc. Belenes     2       2    NA    NA   NA    NA
## 3245    Suc. Belenes     2       1     1     1    1     1
## 3246    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3247    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3248    Suc. Belenes    NA       1     1     1   NA     1
## 3249    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3250    Suc. Belenes    NA      NA     2     2   NA    NA
## 3251    Suc. Belenes    NA      NA     1     1   NA    NA
## 3252    Suc. Belenes    NA       4     4     4    2     4
## 3253    Suc. Belenes     3       2     3     8    6     6
## 3254    Suc. Belenes    NA       3     3     6   NA    NA
## 3255    Suc. Belenes     3       8     6     8   11     8
## 3256    Suc. Belenes    17      15    15    17   34    21
## 3257    Suc. Belenes     2       1     2    NA    1     1
## 3258    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3259    Suc. Belenes     2       3     2     2    1     1
## 3260    Suc. Belenes     2       2     2     2   11     2
## 3261    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3262    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3263    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3264    Suc. Belenes    50      61     3    55   87    61
## 3265    Suc. Belenes    NA      NA    NA    NA   NA    60
## 3266    Suc. Belenes    98      79    44   124  181   111
## 3267    Suc. Belenes    20      23    23    44   32    44
## 3268    Suc. Belenes    41      38    60    38   99   114
## 3269    Suc. Belenes    11      NA    NA     3   NA    NA
## 3270    Suc. Belenes     3      11    NA     6    6     8
## 3271    Suc. Belenes    70      53    42    42   81    81
## 3272    Suc. Belenes   423     366   447   683  866   359
## 3273    Suc. Belenes    46      34    21    27   38    11
## 3274    Suc. Belenes    55      42    34    57   82    80
## 3275    Suc. Belenes   306     203   334   505  611   249
## 3276    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3277    Suc. Belenes    17      13    13    22   16    13
## 3278    Suc. Belenes     6       6    12     9   15    17
## 3279    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3280    Suc. Belenes     3       1     2     3    2    NA
## 3281    Suc. Belenes     1       1     1     1    1     1
## 3282    Suc. Belenes    NA      NA    NA     1   NA    NA
## 3283    Suc. Belenes     6       4    NA     6    4     3
## 3284    Suc. Belenes     3       2     0     0    1     0
## 3285    Suc. Belenes    NA       0    NA    NA    1    NA
## 3286    Suc. Belenes     3       6     2     2    4     3
## 3287    Suc. Belenes    NA       1    NA    NA   NA     1
## 3288    Suc. Belenes    NA       2     2     2    2     2
## 3289    Suc. Belenes     1       1     1     1    1     1
## 3290    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3291    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3292    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3293    Suc. Belenes     0       0     0     0    0     0
## 3294    Suc. Belenes     3      NA     3     3   NA     5
## 3295    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3296    Suc. Belenes     3       3    NA     3   NA     3
## 3297    Suc. Belenes    NA      NA    NA    NA   NA     3
## 3298    Suc. Belenes     3       2     6     5   11     9
## 3299    Suc. Belenes    NA       8     8     8    3     6
## 3300    Suc. Belenes    NA      NA    NA    NA   11    NA
## 3301    Suc. Belenes     1      NA     0     3   NA     2
## 3302    Suc. Belenes     3       2    NA     3    3     2
## 3303    Suc. Belenes    NA       2     2     2    2     2
## 3304    Suc. Belenes     6       7     7     8    8    11
## 3305    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3306    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3307    Suc. Belenes    NA       0     0     0   NA    NA
## 3308    Suc. Belenes     3      NA     3    NA    3     6
## 3309    Suc. Belenes    NA      NA    NA    NA   NA     3
## 3310    Suc. Belenes    NA      NA    NA     3   NA     6
## 3311    Suc. Belenes    NA      NA    NA    NA    4    NA
## 3312    Suc. Belenes    NA      NA     0    NA   NA     0
## 3313    Suc. Belenes    NA      NA     0    NA   NA    NA
## 3314    Suc. Belenes     2       2    NA     2    4     4
## 3315    Suc. Belenes    NA       1     1    NA   13     2
## 3316    Suc. Belenes    NA       0    NA     0   NA    NA
## 3317    Suc. Belenes     6       3     6     3    6     3
## 3318    Suc. Belenes     3       3     2     3    6     3
## 3319    Suc. Belenes    NA       6     3    NA   NA    NA
## 3320    Suc. Belenes     1      NA     0     1   NA     2
## 3321    Suc. Belenes     2       2    NA     2    2     2
## 3322    Suc. Belenes    NA       2    NA     2   NA    NA
## 3323    Suc. Belenes    NA       1     1     2   NA     2
## 3324    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3325    Suc. Belenes    NA      NA    NA    NA   NA     3
## 3326    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3327    Suc. Belenes     3       8    11    11   11    11
## 3328    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3329    Suc. Belenes     6       6     4    11    6     6
## 3330    Suc. Belenes    NA       0     0     0   NA    NA
## 3331    Suc. Belenes     3       6     6     3    6    10
## 3332    Suc. Belenes    NA      NA    NA    NA   NA     3
## 3333    Suc. Belenes     5       3     5     6   11     8
## 3334    Suc. Belenes     3      14    17    17   11    23
## 3335    Suc. Belenes    NA      NA    NA    NA   11    NA
## 3336    Suc. Belenes     3      NA     0     1    1     2
## 3337    Suc. Belenes     3       2    NA     3    3     2
## 3338    Suc. Belenes     2       2     4     4    4     6
## 3339    Suc. Belenes    11       9    12     6   13    15
## 3340    Suc. Belenes    NA       0     0     0   NA    NA
## 3341    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3342    Suc. Belenes     6       4     5     6    4     3
## 3343    Suc. Belenes    NA      NA    NA    NA   NA     0
## 3344    Suc. Belenes    NA      NA    NA     2    2    NA
## 3345    Suc. Belenes    NA      NA    NA     3    3    NA
## 3346    Suc. Belenes    NA      NA    NA     3   NA    NA
## 3347    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3348    Suc. Belenes    NA      NA    NA    NA    1     3
## 3349    Suc. Belenes     0       0    NA     0    0    NA
## 3350    Suc. Belenes    NA      NA    NA    NA    1    NA
## 3351    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3352    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3353    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3354    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3355    Suc. Belenes     6       6    NA     3   NA     8
## 3356    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3357    Suc. Belenes    NA      NA     1     1    1    NA
## 3358    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3359    Suc. Belenes     2       2     2    NA    2     2
## 3360    Suc. Belenes     2       4     4     2    4     4
## 3361    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3362    Suc. Belenes    NA      NA    NA    11   16    16
## 3363    Suc. Belenes    NA      NA    NA    NA   NA     3
## 3364    Suc. Belenes    10      13    16    22   16    22
## 3365    Suc. Belenes     5       3     2     3    3     3
## 3366    Suc. Belenes    67      49    56    70   70    56
## 3367    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3368    Suc. Belenes    19      11    21    32   25    27
## 3369    Suc. Belenes    NA       2     1     1    1     1
## 3370    Suc. Belenes     1      NA    NA     1    1     1
## 3371    Suc. Belenes    NA       1    NA    NA   NA    NA
## 3372    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3373    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3374    Suc. Belenes    NA       3    NA    NA   NA     3
## 3375    Suc. Belenes    NA       1     2    NA    2     2
## 3376    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3377    Suc. Belenes     4       2     4    NA    3     2
## 3378    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3379    Suc. Belenes    NA       2    NA     2   NA     4
## 3380    Suc. Belenes    NA      NA     0     0    1     0
## 3381    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3382    Suc. Belenes     3       5     3     3    2     2
## 3383    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3384    Suc. Belenes    NA      NA     3    NA   NA    NA
## 3385    Suc. Belenes     0       0    NA     0    0    NA
## 3386    Suc. Belenes     0       0     0    NA    0     0
## 3387    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3388    Suc. Belenes    NA      NA     2    NA   NA     2
## 3389    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3390    Suc. Belenes     0       0    NA     0    0    NA
## 3391    Suc. Belenes    NA       0    NA     0   NA     0
## 3392    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3393    Suc. Belenes     3       3     5     2    2     2
## 3394    Suc. Belenes     0       0    NA     0    0    NA
## 3395    Suc. Belenes     0       0    NA     0    1     0
## 3396    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3397    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3398    Suc. Belenes    NA      NA     3    NA   NA    NA
## 3399    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3400    Suc. Belenes     3       5     5     3    3     2
## 3401    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3402    Suc. Belenes     3       6     3     3    3     3
## 3403    Suc. Belenes     0       0    NA     0    0    NA
## 3404    Suc. Belenes     0       0     0     0    0     1
## 3405    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3406    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3407    Suc. Belenes     1       1     1     3    2     1
## 3408    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3409    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3410    Suc. Belenes     4       2     6     2    6     6
## 3411    Suc. Belenes     3       3    16     3   10     6
## 3412    Suc. Belenes    NA      NA    NA     0    1     0
## 3413    Suc. Belenes    NA       3    NA    NA    3     5
## 3414    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3415    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3416    Suc. Belenes     1      NA     1     1    2    NA
## 3417    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3418    Suc. Belenes     0      NA    NA    NA    0    NA
## 3419    Suc. Belenes     1      NA     1     2    1    NA
## 3420    Suc. Belenes     6       3     3     4    5     5
## 3421    Suc. Belenes    NA      NA    NA    NA   NA     0
## 3422    Suc. Belenes     1       1     2     5    5     2
## 3423    Suc. Belenes    NA       2    NA    NA   NA    NA
## 3424    Suc. Belenes     0      NA    NA    NA   NA    NA
## 3425    Suc. Belenes     2       2     2     2    2     1
## 3426    Suc. Belenes     3       6     6    14    6    14
## 3427    Suc. Belenes     3       1    NA     1   NA     1
## 3428    Suc. Belenes    NA      NA    NA    NA    0     0
## 3429    Suc. Belenes    NA       1    NA    NA   NA    NA
## 3430    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3431    Suc. Belenes     2       2    NA    NA   NA    NA
## 3432    Suc. Belenes     1       1    NA    NA    1     1
## 3433    Suc. Belenes     2      NA    NA     2    4     2
## 3434    Suc. Belenes    NA       1    NA    NA   NA    NA
## 3435    Suc. Belenes    32      32    30    32   44    17
## 3436    Suc. Belenes    37      39    59    48   65    54
## 3437    Suc. Belenes    17      19    17    25   40     2
## 3438    Suc. Belenes     4       6     3     2    4     3
## 3439    Suc. Belenes     3       2    NA     3    3     3
## 3440    Suc. Belenes     4       6     8     6   11     8
## 3441    Suc. Belenes     8      17    11    14   14    17
## 3442    Suc. Belenes     4       6     2     6    6     6
## 3443    Suc. Belenes     1       1     1     1    1     1
## 3444    Suc. Belenes    38      34    34    40   57    23
## 3445    Suc. Belenes    32      26    55    48   58     5
## 3446    Suc. Belenes    NA      NA    NA    NA   NA    29
## 3447    Suc. Belenes     6      13    10    16   16    10
## 3448    Suc. Belenes     5       3     8     6   11     5
## 3449    Suc. Belenes     8       6     5     6    2     6
## 3450    Suc. Belenes    56      65    93    93  110    99
## 3451    Suc. Belenes     6      11     8     3   14     6
## 3452    Suc. Belenes    88      67   144    81  123   109
## 3453    Suc. Belenes    60      67   127    67   85    60
## 3454    Suc. Belenes    NA       2    NA     4    2     4
## 3455    Suc. Belenes    25      21    27    32   46    49
## 3456    Suc. Belenes    23      27    42    66   42    59
## 3457    Suc. Belenes     9       6     3     3   12     6
## 3458    Suc. Belenes     7       8    11     9   12     9
## 3459    Suc. Belenes     6       5     5     6    8     9
## 3460    Suc. Belenes     2       2     4     4    8     2
## 3461    Suc. Belenes     1       1     3     4    2     5
## 3462    Suc. Belenes    NA      NA    NA    NA    1    NA
## 3463    Suc. Belenes     1       2     1     2    2     2
## 3464    Suc. Belenes     1      NA    NA     1    3     3
## 3465    Suc. Belenes     3       1     1     3    8     4
## 3466    Suc. Belenes     2       1     1     1    1     0
## 3467    Suc. Belenes     1       1     1    NA    1    NA
## 3468    Suc. Belenes     5       3     3     4    7     8
## 3469    Suc. Belenes    NA      NA    NA    NA   NA     0
## 3470    Suc. Belenes    NA       4    NA    NA    4     2
## 3471    Suc. Belenes     1       1    NA    NA    1     0
## 3472    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3473    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3474    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3475    Suc. Belenes     0       0     0     1    0     0
## 3476    Suc. Belenes     1       2     2    10    2     6
## 3477    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3478    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3479    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3480    Suc. Belenes     2       2    NA     4    2     4
## 3481    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3482    Suc. Belenes     1       2     0    NA   NA     0
## 3483    Suc. Belenes     3       3     8    14   11     8
## 3484    Suc. Belenes     0      NA    NA    NA    0    NA
## 3485    Suc. Belenes    NA       0    NA    NA    0     1
## 3486    Suc. Belenes     1       1     1     3    4     2
## 3487    Suc. Belenes     1       2     1     1    1     2
## 3488    Suc. Belenes    NA       0     0     0    0    NA
## 3489    Suc. Belenes     4       2    NA    NA   NA    NA
## 3490    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3491    Suc. Belenes     1       2     0    NA   NA     0
## 3492    Suc. Belenes     3       3     8    NA    6     6
## 3493    Suc. Belenes     0      NA    NA    NA    0    NA
## 3494    Suc. Belenes     0       0    NA    NA    0    NA
## 3495    Suc. Belenes     1       1     1     3    2     2
## 3496    Suc. Belenes    NA       1    NA    NA    1     1
## 3497    Suc. Belenes    NA       0     0     0    0    NA
## 3498    Suc. Belenes     4       2     2    NA    4     4
## 3499    Suc. Belenes     1       2     0    NA   NA     0
## 3500    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3501    Suc. Belenes     0      NA    NA    NA    0    NA
## 3502    Suc. Belenes    NA      NA    NA    NA    0    NA
## 3503    Suc. Belenes     1       1     1     3    4     2
## 3504    Suc. Belenes    NA       2    NA    NA    2     1
## 3505    Suc. Belenes     1       2     1     1    1     1
## 3506    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3507    Suc. Belenes    14       6    14    11   11    20
## 3508    Suc. Belenes    NA       0     0    NA    0    NA
## 3509    Suc. Belenes     1      NA    NA    NA    1    NA
## 3510    Suc. Belenes    NA       0     0     0    0    NA
## 3511    Suc. Belenes     6       2     2     6    2     4
## 3512    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3513    Suc. Belenes     1       2     0    NA   NA     0
## 3514    Suc. Belenes     6      NA     6    14   11    11
## 3515    Suc. Belenes     0      NA    NA    NA    0    NA
## 3516    Suc. Belenes    NA       1    NA     0    0     1
## 3517    Suc. Belenes     1       1     1     3    6     2
## 3518    Suc. Belenes     2       1     3     1    4     3
## 3519    Suc. Belenes    NA       0     0     0    0    NA
## 3520    Suc. Belenes    NA      NA    NA     1    1    NA
## 3521    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3522    Suc. Belenes    12       7     4     6   10     8
## 3523    Suc. Belenes    NA      NA    NA    NA   NA     0
## 3524    Suc. Belenes    NA       0    NA    NA   NA    NA
## 3525    Suc. Belenes    NA      NA     1     1   NA    NA
## 3526    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3527    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3528    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3529    Suc. Belenes     2       2    NA     2    2     4
## 3530    Suc. Belenes     3       6    NA     3    3     6
## 3531    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3532    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3533    Suc. Belenes     2       2     3     2    3     4
## 3534    Suc. Belenes     1       1    NA     1    1     2
## 3535    Suc. Belenes     2       1     1     1    1     2
## 3536    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3537    Suc. Belenes     2      NA    NA    NA   NA    NA
## 3538    Suc. Belenes    11      11     8    11    8     6
## 3539    Suc. Belenes    NA      NA     3    NA   NA     8
## 3540    Suc. Belenes     8       8     8    11    6    11
## 3541    Suc. Belenes     2       3    NA     2   NA    NA
## 3542    Suc. Belenes     6       8     8    11    6     8
## 3543    Suc. Belenes     2      NA     1     1   NA     2
## 3544    Suc. Belenes     2      NA     2     1   NA     2
## 3545    Suc. Belenes    NA      NA    NA    NA    4     2
## 3546    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3547    Suc. Belenes    50      42    45    45   32    32
## 3548    Suc. Belenes    NA      NA    NA    NA   NA    19
## 3549    Suc. Belenes    19      22    25    32   22    35
## 3550    Suc. Belenes     2       2     2     2    2     3
## 3551    Suc. Belenes    NA      NA    NA    NA    2    NA
## 3552    Suc. Belenes    17      11    11    11   14    11
## 3553    Suc. Belenes    63      49    56    63   63    63
## 3554    Suc. Belenes   183     151   134   215  155   201
## 3555    Suc. Belenes     8       8     8     8   10     3
## 3556    Suc. Belenes    13      13    13    19   17    17
## 3557    Suc. Belenes    40      44    34    46   53    44
## 3558    Suc. Belenes     3       3     2     2    3     3
## 3559    Suc. Belenes     5       3     3     3    5     3
## 3560    Suc. Belenes    NA      NA     1    NA    1    NA
## 3561    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3562    Suc. Belenes     1       1    NA     1    1     1
## 3563    Suc. Belenes    NA       1    NA    NA    1    NA
## 3564    Suc. Belenes     1       1     1    NA    1    NA
## 3565    Suc. Belenes     3       0     0     0    0     0
## 3566    Suc. Belenes     5       4     3     5    3     6
## 3567    Suc. Belenes    NA      NA    NA    NA   NA     0
## 3568    Suc. Belenes    NA      NA     2    NA   NA    NA
## 3569    Suc. Belenes     0       0    NA     0    0    NA
## 3570    Suc. Belenes     0       0     0     0    0     0
## 3571    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3572    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3573    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3574    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3575    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3576    Suc. Belenes    NA       0    NA    NA   NA    NA
## 3577    Suc. Belenes     1       1     1     2    1     1
## 3578    Suc. Belenes    NA       0    NA    NA   NA    NA
## 3579    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3580    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3581    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3582    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3583    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3584    Suc. Belenes     1       1     1     2    1     1
## 3585    Suc. Belenes    NA       0    NA    NA   NA    NA
## 3586    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3587    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3588    Suc. Belenes    NA      NA    NA    NA    0    NA
## 3589    Suc. Belenes     1       1     1     2    1     1
## 3590    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3591    Suc. Belenes    NA      NA    NA    NA    3     3
## 3592    Suc. Belenes    NA      NA     0    NA   NA     0
## 3593    Suc. Belenes    NA      NA     2    NA   NA    NA
## 3594    Suc. Belenes    NA       0    NA    NA   NA    NA
## 3595    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3596    Suc. Belenes     3       3     3     6   NA     4
## 3597    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3598    Suc. Belenes     0      NA    NA     0    2    NA
## 3599    Suc. Belenes     1       1     1     2    1     1
## 3600    Suc. Belenes    NA       0    NA    NA   NA    NA
## 3601    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3602    Suc. Belenes     3       1     1     3    5     6
## 3603    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3604    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3605    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3606    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3607    Suc. Belenes     8       8    15     4    8     8
## 3608    Suc. Belenes    13       3    16     3   16    13
## 3609    Suc. Belenes    10      NA     3     5    8     3
## 3610    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3611    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3612    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3613    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3614    Suc. Belenes     3       3     4     2    3     2
## 3615    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3616    Suc. Belenes    NA       1     1     1    1     1
## 3617    Suc. Belenes    NA       2    NA    NA   NA    NA
## 3618    Suc. Belenes    NA       2     1     1    1     1
## 3619    Suc. Belenes    NA      NA     3    NA    3    NA
## 3620    Suc. Belenes    NA       0    NA    NA    0    NA
## 3621    Suc. Belenes    NA      NA     1    NA   NA    NA
## 3622    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3623    Suc. Belenes     2      NA     2    NA   NA     2
## 3624    Suc. Belenes    NA       1     1    NA   NA    NA
## 3625    Suc. Belenes    11       6     8    11   17     8
## 3626    Suc. Belenes     6       8     6     3    8     8
## 3627    Suc. Belenes     5       3     3     2    2     3
## 3628    Suc. Belenes    13       4    11    11    8    13
## 3629    Suc. Belenes     1       2     1     2    2     2
## 3630    Suc. Belenes     2       2    NA     2    4     2
## 3631    Suc. Belenes    NA       3     6     6    3     3
## 3632    Suc. Belenes     2       2     4     2    4     6
## 3633    Suc. Belenes    42      25    25    42   30    25
## 3634    Suc. Belenes    NA      NA    NA     3   NA    NA
## 3635    Suc. Belenes    10       6    19    13   19    16
## 3636    Suc. Belenes    16      13    22    22   19    16
## 3637    Suc. Belenes     5       6     6     6    8     5
## 3638    Suc. Belenes    25      20    11    17   25    23
## 3639    Suc. Belenes    35      32    42    56   63    46
## 3640    Suc. Belenes    92     116   162   148  232     4
## 3641    Suc. Belenes     2      NA    NA    NA   NA    NA
## 3642    Suc. Belenes     8       8     8     8   11     8
## 3643    Suc. Belenes    25      15    19    23   32    13
## 3644    Suc. Belenes    36      40    57    17   34    15
## 3645    Suc. Belenes     8       6     8     7    8     8
## 3646    Suc. Belenes     2       3     3     5    3     2
## 3647    Suc. Belenes     2      NA     4     2    4     2
## 3648    Suc. Belenes     2       2     2     2    2     2
## 3649    Suc. Belenes    NA       1    NA    NA    1    NA
## 3650    Suc. Belenes    NA      NA     1     1    1     2
## 3651    Suc. Belenes    NA      NA    NA     1   NA     1
## 3652    Suc. Belenes     3       2    NA    NA    3    NA
## 3653    Suc. Belenes    NA       1    NA    NA   NA    NA
## 3654    Suc. Belenes     2       0     0     0    0     0
## 3655    Suc. Belenes    NA       0    NA    NA    1    NA
## 3656    Suc. Belenes     5       3     7     3    8     2
## 3657    Suc. Belenes    NA      NA    NA    NA   NA     0
## 3658    Suc. Belenes    NA       0     0     0    0     0
## 3659    Suc. Belenes     1       1     1     2    2     1
## 3660    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3661    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3662    Suc. Belenes     5       3     2     3    3    NA
## 3663    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3664    Suc. Belenes     6      NA     6     3   NA     3
## 3665    Suc. Belenes    NA       0     0     0    1     1
## 3666    Suc. Belenes     1      NA     1     1    3    NA
## 3667    Suc. Belenes     1       1     2     1    1     1
## 3668    Suc. Belenes    NA       0     0     0    0     0
## 3669    Suc. Belenes     5       2     2     2    2    NA
## 3670    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3671    Suc. Belenes     4      NA     4    NA    6    NA
## 3672    Suc. Belenes    NA      NA    NA     0    0     1
## 3673    Suc. Belenes     1      NA     1     1    1    NA
## 3674    Suc. Belenes     1       1     1     1    1    NA
## 3675    Suc. Belenes    NA       0     0     0    0     0
## 3676    Suc. Belenes     3       5     2     3    2    NA
## 3677    Suc. Belenes     1      NA     1    NA    6    NA
## 3678    Suc. Belenes    NA      NA    NA     1    1     1
## 3679    Suc. Belenes     1      NA     1     1    1    NA
## 3680    Suc. Belenes    NA       1    NA     2    1     1
## 3681    Suc. Belenes     1       1     1    NA   NA     1
## 3682    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3683    Suc. Belenes     6      NA     6    NA    3    NA
## 3684    Suc. Belenes    NA       0     0     0    0    NA
## 3685    Suc. Belenes    NA       2    NA    NA    2    NA
## 3686    Suc. Belenes    NA       0     0     0    0     0
## 3687    Suc. Belenes     8       2     5     2    3    NA
## 3688    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3689    Suc. Belenes     6       6     6     3    6     6
## 3690    Suc. Belenes     0       0     0     1    1     1
## 3691    Suc. Belenes     1      NA     3     1    5     2
## 3692    Suc. Belenes     2       1     1     2    3     1
## 3693    Suc. Belenes    NA       0     0     0    0     0
## 3694    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3695    Suc. Belenes    NA      NA     3     3    4     4
## 3696    Suc. Belenes    NA      NA    NA    NA   NA     0
## 3697    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3698    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3699    Suc. Belenes     2       8    15    11   13    13
## 3700    Suc. Belenes    10      16    19    10   13    16
## 3701    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3702    Suc. Belenes    10      15    13    15   15    15
## 3703    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3704    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3705    Suc. Belenes    NA      NA    NA    NA    1    NA
## 3706    Suc. Belenes     3      NA     4    NA   NA    NA
## 3707    Suc. Belenes     5       4     6     4    3     3
## 3708    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3709    Suc. Belenes    NA       1     1     3    4     1
## 3710    Suc. Belenes    NA       0    NA    NA   NA    NA
## 3711    Suc. Belenes    NA       1     1     2    1     2
## 3712    Suc. Belenes     3       3     6    NA    3     6
## 3713    Suc. Belenes    NA       3    NA     1    1     1
## 3714    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3715    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3716    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3717    Suc. Belenes     1      NA    NA    NA   NA    NA
## 3718    Suc. Belenes     2      NA     2    NA   NA    NA
## 3719    Suc. Belenes     2       3     1     1   NA    NA
## 3720    Suc. Belenes    NA       2     4     2    4     2
## 3721    Suc. Belenes     4       6     2     6    4     4
## 3722    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3723    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3724    Suc. Belenes     2       2    NA     2   NA    NA
## 3725    Suc. Belenes     1      NA    NA    NA   NA    NA
## 3726    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3727    Suc. Belenes    61      37    79    29   55     8
## 3728    Suc. Belenes    NA      NA    NA    NA   NA    10
## 3729    Suc. Belenes   130     101   149   133  193   171
## 3730    Suc. Belenes     6      11    14    11   12    11
## 3731    Suc. Belenes     6      NA    NA     1   NA    NA
## 3732    Suc. Belenes    NA       3     3     6    3     3
## 3733    Suc. Belenes    NA      32    32    35   46     7
## 3734    Suc. Belenes   243     159   211   215  208   229
## 3735    Suc. Belenes    15       4    19    13   13    17
## 3736    Suc. Belenes     8      17    17    13   23    19
## 3737    Suc. Belenes   186     125   146   175  188   186
## 3738    Suc. Belenes     4       4     4     7    6    12
## 3739    Suc. Belenes     5       2     5     3    3     3
## 3740    Suc. Belenes    NA      NA     4     6    4     4
## 3741    Suc. Belenes     9       7     7     3    4     4
## 3742    Suc. Belenes    NA       1     1     1    1     1
## 3743    Suc. Belenes     1       1     3     1    2     1
## 3744    Suc. Belenes     2       0     0     0    1     0
## 3745    Suc. Belenes    NA       0    NA    NA   NA    NA
## 3746    Suc. Belenes     6       7     8     3    5     7
## 3747    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3748    Suc. Belenes    NA       2    NA    NA    2     2
## 3749    Suc. Belenes     1      NA     1    NA    1     1
## 3750    Suc. Belenes     0       0     0     0    0     0
## 3751    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3752    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3753    Suc. Belenes    10       3    11    10    4    10
## 3754    Suc. Belenes    NA      NA    NA    NA   NA     5
## 3755    Suc. Belenes     1      NA     1    12   NA     1
## 3756    Suc. Belenes     1       4     2     0    2     0
## 3757    Suc. Belenes     7       2     6     2    6     4
## 3758    Suc. Belenes     3       3     3    NA    3     5
## 3759    Suc. Belenes    NA      NA    NA     0   NA    NA
## 3760    Suc. Belenes    NA       0     0     0    1    NA
## 3761    Suc. Belenes     3      NA     5     3    4     3
## 3762    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3763    Suc. Belenes     1      NA     1     6   NA     1
## 3764    Suc. Belenes     1       1     2    NA    1     2
## 3765    Suc. Belenes     5       4     6     2    2     4
## 3766    Suc. Belenes    NA       3     3    NA    3     3
## 3767    Suc. Belenes    NA      NA    NA     0   NA    NA
## 3768    Suc. Belenes    NA       0     0     0    1    NA
## 3769    Suc. Belenes     3       3     6     6    7     3
## 3770    Suc. Belenes     1      NA     1     4   NA     1
## 3771    Suc. Belenes     1       2    NA    NA   NA    NA
## 3772    Suc. Belenes     3       4    NA    NA    2    NA
## 3773    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3774    Suc. Belenes    NA      NA    NA     0   NA    NA
## 3775    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3776    Suc. Belenes    NA      NA     3     8   NA    NA
## 3777    Suc. Belenes    NA      NA     2    NA   NA     2
## 3778    Suc. Belenes     4      NA     4     2    4     2
## 3779    Suc. Belenes    NA       1     3    NA    3     3
## 3780    Suc. Belenes    NA       0     0     0    1    NA
## 3781    Suc. Belenes    10       3    10    10    7    10
## 3782    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3783    Suc. Belenes     1       3     1     9    6     4
## 3784    Suc. Belenes     3       3     2     0    5     3
## 3785    Suc. Belenes     7       8     8     6    8     8
## 3786    Suc. Belenes     3       4     5     3    5     5
## 3787    Suc. Belenes    NA      NA    NA     0   NA    NA
## 3788    Suc. Belenes    NA       0     0     0    1    NA
## 3789    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3790    Suc. Belenes     1      NA     1     3    6     1
## 3791    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3792    Suc. Belenes    NA      NA    NA     8   NA    NA
## 3793    Suc. Belenes     5      NA     5     3    5     8
## 3794    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3795    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3796    Suc. Belenes     6      51     4     2    2     6
## 3797    Suc. Belenes     6      10    10    16   19    13
## 3798    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3799    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3800    Suc. Belenes     5       3     3     5    3     8
## 3801    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3802    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3803    Suc. Belenes    NA       2    NA    NA   NA    NA
## 3804    Suc. Belenes    NA       3    NA     2   NA    NA
## 3805    Suc. Belenes    NA      NA    NA    NA    4    NA
## 3806    Suc. Belenes     1      NA    NA    NA    1     2
## 3807    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3808    Suc. Belenes     9       8    11    10    7    15
## 3809    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3810    Suc. Belenes    NA       1     1     1    1     1
## 3811    Suc. Belenes     0       0    NA    NA   NA    NA
## 3812    Suc. Belenes    NA       1     1     1    1     1
## 3813    Suc. Belenes    NA      NA    NA    NA   NA     3
## 3814    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3815    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3816    Suc. Belenes     1      NA     1     1   NA     1
## 3817    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3818    Suc. Belenes     1       1    NA    NA   NA    NA
## 3819    Suc. Belenes     2       4     4     2    6     6
## 3820    Suc. Belenes     6       2    11    13    6     8
## 3821    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3822    Suc. Belenes     8       8    40    NA   42    30
## 3823    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3824    Suc. Belenes    35     127    86   206   44   136
## 3825    Suc. Belenes    21      26     9    11   44     2
## 3826    Suc. Belenes    NA      NA    NA     3   NA    NA
## 3827    Suc. Belenes     6       3    NA    NA   NA    NA
## 3828    Suc. Belenes    18      25    32    18   63    42
## 3829    Suc. Belenes   173     271   243   328  370   250
## 3830    Suc. Belenes    25      13    23    15   72    NA
## 3831    Suc. Belenes   112     154   192   165  159   467
## 3832    Suc. Belenes     5       4     4     5    5     4
## 3833    Suc. Belenes     2       3     6     6    3    12
## 3834    Suc. Belenes    12       8    14    10   16    20
## 3835    Suc. Belenes     4       3     5     4    8    NA
## 3836    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3837    Suc. Belenes    NA       2     3     1    1     1
## 3838    Suc. Belenes    NA      NA    NA     1   NA    NA
## 3839    Suc. Belenes     3       1    NA     3    1    NA
## 3840    Suc. Belenes     2       0     0     0    0     0
## 3841    Suc. Belenes    NA       1    NA    NA    1    NA
## 3842    Suc. Belenes    10       5     8    NA    7     3
## 3843    Suc. Belenes    NA      NA    NA    NA   NA     0
## 3844    Suc. Belenes     2      NA     2     2   NA     2
## 3845    Suc. Belenes    NA       1     1     2    1    NA
## 3846    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3847    Suc. Belenes     0       0     0     0    0     0
## 3848    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3849    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3850    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3851    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3852    Suc. Belenes     3       6     3     6    6    NA
## 3853    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3854    Suc. Belenes    NA      NA     4    NA   NA    NA
## 3855    Suc. Belenes     1      NA    NA    NA    1     2
## 3856    Suc. Belenes     1       1     3     1    3     2
## 3857    Suc. Belenes    NA      NA     7     6   12    NA
## 3858    Suc. Belenes     1      NA    NA    NA   NA    NA
## 3859    Suc. Belenes    NA       0    NA     0    0    NA
## 3860    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3861    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3862    Suc. Belenes    NA       6     8     3    6    NA
## 3863    Suc. Belenes    NA      NA     4    NA    4    NA
## 3864    Suc. Belenes     0      NA    NA    NA    1     1
## 3865    Suc. Belenes    NA      NA     3     1    2     4
## 3866    Suc. Belenes     2       2     5     2    7     2
## 3867    Suc. Belenes     1      NA    NA    NA   NA    NA
## 3868    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3869    Suc. Belenes    NA       0    NA     0    0    NA
## 3870    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3871    Suc. Belenes    NA       6    NA     3   NA    NA
## 3872    Suc. Belenes    NA      NA     4    NA   NA    NA
## 3873    Suc. Belenes     1      NA    NA    NA    1     2
## 3874    Suc. Belenes     2      NA    NA     1    1     2
## 3875    Suc. Belenes    NA      NA     7     2   14    NA
## 3876    Suc. Belenes     1      NA    NA    NA   NA    NA
## 3877    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3878    Suc. Belenes    NA       8     3     6   14    NA
## 3879    Suc. Belenes    NA      NA     4    NA    7    NA
## 3880    Suc. Belenes    NA      NA     0    NA    0     0
## 3881    Suc. Belenes     6       4     4    NA    8    NA
## 3882    Suc. Belenes    NA       0    NA     0    0    NA
## 3883    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3884    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3885    Suc. Belenes    NA       6    17    20    8     3
## 3886    Suc. Belenes    NA      NA    NA    NA    7    NA
## 3887    Suc. Belenes     1      NA    NA    NA    1     3
## 3888    Suc. Belenes    NA       1     3     1    2     3
## 3889    Suc. Belenes    15       6    14    15    7    11
## 3890    Suc. Belenes     1      NA    NA    NA   NA    NA
## 3891    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3892    Suc. Belenes    NA       0    NA     0    0    NA
## 3893    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3894    Suc. Belenes    NA      NA     3    NA    3    NA
## 3895    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3896    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3897    Suc. Belenes     2       6     2     2    2     2
## 3898    Suc. Belenes     3       3     3     3    6     3
## 3899    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3900    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3901    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3902    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3903    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3904    Suc. Belenes     6       5     3    NA    6     3
## 3905    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3906    Suc. Belenes     1       1    NA     1   NA    NA
## 3907    Suc. Belenes    NA       2     2    NA    2     2
## 3908    Suc. Belenes     3      NA    NA    NA   NA     0
## 3909    Suc. Belenes     2       2     4     1    2     2
## 3910    Suc. Belenes    NA       6     8     8   11     6
## 3911    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3912    Suc. Belenes    NA       0     0    NA   NA    NA
## 3913    Suc. Belenes    NA       1    NA    NA   NA    NA
## 3914    Suc. Belenes     1      NA    NA    NA   NA    NA
## 3915    Suc. Belenes    NA      NA     4    NA   NA    NA
## 3916    Suc. Belenes     1       1    NA    NA   NA    NA
## 3917    Suc. Belenes     4       8     6     6    8     4
## 3918    Suc. Belenes    NA      NA    NA    NA    3    NA
## 3919    Suc. Belenes    NA      NA    NA    NA    6     6
## 3920    Suc. Belenes     3      NA    NA    NA    3    NA
## 3921    Suc. Belenes     1      NA    NA    NA    1    NA
## 3922    Suc. Belenes     2       6     4     2    8     6
## 3923    Suc. Belenes     4       8    30    NA   34    NA
## 3924    Suc. Belenes    16       5    18     8    8    NA
## 3925    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3926    Suc. Belenes    54      32    32    51   32    44
## 3927    Suc. Belenes     6       6     2    23    2     2
## 3928    Suc. Belenes    NA      NA    NA    17   NA    NA
## 3929    Suc. Belenes    NA      NA     4    53   95    NA
## 3930    Suc. Belenes   123     159   211   162  144    95
## 3931    Suc. Belenes     6      21    NA    30   NA    NA
## 3932    Suc. Belenes     2       6     6    44   25    17
## 3933    Suc. Belenes   110     118   120    76  142    63
## 3934    Suc. Belenes     3       6     3    NA    3    NA
## 3935    Suc. Belenes     2       3     3     1   NA    NA
## 3936    Suc. Belenes     1       3     3     6   NA    NA
## 3937    Suc. Belenes     1       1     1     2    1     1
## 3938    Suc. Belenes    NA      NA    NA    NA    1    NA
## 3939    Suc. Belenes     1      NA     1     3    1     3
## 3940    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3941    Suc. Belenes    NA       2    NA    NA    1     3
## 3942    Suc. Belenes     6       0     7     0    4     4
## 3943    Suc. Belenes    NA       0    NA     1    2    NA
## 3944    Suc. Belenes     2       2    NA     2    9     4
## 3945    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3946    Suc. Belenes     2       2    NA     2    2     2
## 3947    Suc. Belenes     0       0    NA     0    1     1
## 3948    Suc. Belenes     0       0     0     0    0     1
## 3949    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3950    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3951    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3952    Suc. Belenes    NA       4     1     3   NA     3
## 3953    Suc. Belenes    NA      NA     4    11   NA     4
## 3954    Suc. Belenes     0       0     1     0    0     2
## 3955    Suc. Belenes     1      NA    NA    NA   10     2
## 3956    Suc. Belenes     1      NA    NA    NA   NA    NA
## 3957    Suc. Belenes    NA       0     0     2   NA    NA
## 3958    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3959    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3960    Suc. Belenes    NA       1     1     3   NA    NA
## 3961    Suc. Belenes    NA       4     7     7    7    NA
## 3962    Suc. Belenes     0       0     1    NA    0     2
## 3963    Suc. Belenes     1      NA    NA    NA    3     2
## 3964    Suc. Belenes     1      NA    NA    NA   NA    NA
## 3965    Suc. Belenes    NA       0     0     2   NA    NA
## 3966    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3967    Suc. Belenes    NA       1     1     3   NA    NA
## 3968    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3969    Suc. Belenes    NA       0    NA    NA   NA     0
## 3970    Suc. Belenes     1      NA    NA    NA    1     2
## 3971    Suc. Belenes     1      NA    NA    NA   NA    NA
## 3972    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3973    Suc. Belenes    NA      NA    NA     3   NA    NA
## 3974    Suc. Belenes    NA      NA    11    18   11     4
## 3975    Suc. Belenes     0       0     1    NA    0     0
## 3976    Suc. Belenes    NA       2    NA     2    2    NA
## 3977    Suc. Belenes    NA       0     0     2   NA    NA
## 3978    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3979    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3980    Suc. Belenes     3       6     1     8    3    NA
## 3981    Suc. Belenes    NA       4     4    11    4     4
## 3982    Suc. Belenes     0       0     1    NA    0     3
## 3983    Suc. Belenes     1      NA     2    NA    3     2
## 3984    Suc. Belenes     1      NA    NA    NA   NA    NA
## 3985    Suc. Belenes    NA       0     0     2   NA    NA
## 3986    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3987    Suc. Belenes     2      NA    NA     3    8     4
## 3988    Suc. Belenes    NA      NA    NA    NA   NA     0
## 3989    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3990    Suc. Belenes     6       6     6     8   14     8
## 3991    Suc. Belenes     3       3     3     3    9     5
## 3992    Suc. Belenes     2       2    NA     2    3    NA
## 3993    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3994    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3995    Suc. Belenes    15       8    13    11   19    11
## 3996    Suc. Belenes     6       3    13    29   25    16
## 3997    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3998    Suc. Belenes    11      11    11    11   18    25
## 3999    Suc. Belenes     8      13     8    10   13    18
## 4000    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4001    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4002    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4003    Suc. Belenes    NA      NA    NA     1   NA    NA
## 4004    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4005    Suc. Belenes     4       3     6     1    6     4
## 4006    Suc. Belenes     3       1     1     2    2     2
## 4007    Suc. Belenes    NA      NA    NA    NA   NA     0
## 4008    Suc. Belenes    NA      NA     1     1   NA    NA
## 4009    Suc. Belenes     6      NA     2     4    2     2
## 4010    Suc. Belenes    NA      NA     1     1   NA    NA
## 4011    Suc. Belenes    NA       6    NA     3    6     3
## 4012    Suc. Belenes    NA       3    NA     1    4     3
## 4013    Suc. Belenes    NA       0    NA    NA   NA    NA
## 4014    Suc. Belenes     2       2     1     2    2     3
## 4015    Suc. Belenes    NA      NA     1    NA   NA     4
## 4016    Suc. Belenes    NA      NA    NA     2    4    NA
## 4017    Suc. Belenes     1      NA     1     1    1     1
## 4018    Suc. Belenes    19      19    17    25   19    21
## 4019    Suc. Belenes    31      28    39    48   54    42
## 4020    Suc. Belenes    13      11    15    17   25    13
## 4021    Suc. Belenes     3       2     3     4    5     5
## 4022    Suc. Belenes     8       5    12    12    8    17
## 4023    Suc. Belenes     1      NA     1    NA   NA    NA
## 4024    Suc. Belenes     6       6     8     6    4     6
## 4025    Suc. Belenes     8       3     3    11    6     3
## 4026    Suc. Belenes     6       4     6     6    6     4
## 4027    Suc. Belenes     2       1     1     2    1     1
## 4028    Suc. Belenes    NA      NA    NA    NA   NA     2
## 4029    Suc. Belenes    NA      NA     1    NA   NA    NA
## 4030    Suc. Belenes    66      36    44    61   57    46
## 4031    Suc. Belenes     8       3    NA    NA   NA    NA
## 4032    Suc. Belenes     6      NA     3     6   13    10
## 4033    Suc. Belenes     3       3    16    29    3    13
## 4034    Suc. Belenes    NA      NA    NA     2   NA    NA
## 4035    Suc. Belenes     6      NA     2     3    2    NA
## 4036    Suc. Belenes    90      62    73    93   99    73
## 4037    Suc. Belenes     6      NA     3    NA   NA    NA
## 4038    Suc. Belenes    42      95    74    92  187    88
## 4039    Suc. Belenes    18      60    35    32   28    28
## 4040    Suc. Belenes    NA      NA    NA    NA   NA    11
## 4041    Suc. Belenes    74      55    51    66   53    44
## 4042    Suc. Belenes   123     154   123   161  222   186
## 4043    Suc. Belenes     7       5     6     7   10     9
## 4044    Suc. Belenes    21      20    21    24   27    30
## 4045    Suc. Belenes    NA      NA    NA    NA   NA     2
## 4046    Suc. Belenes     1       1     4     2    1     2
## 4047    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4048    Suc. Belenes     2       2     4     3    2     3
## 4049    Suc. Belenes    NA       1    NA    NA    1    NA
## 4050    Suc. Belenes     6       6     7     7    7     9
## 4051    Suc. Belenes    17       7    10    10    4     8
## 4052    Suc. Belenes    NA      NA    NA    NA    1    NA
## 4053    Suc. Belenes     2      NA    NA     1   NA    NA
## 4054    Suc. Belenes     1       2     2     1    2     3
## 4055    Suc. Belenes     4       4     4     4    5     3
## 4056    Suc. Belenes     2       1     2     1    1     2
## 4057    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4058    Suc. Belenes     2      NA     2    NA    2     2
## 4059    Suc. Belenes    NA      NA    NA     1    1     0
## 4060    Suc. Belenes    NA       1    NA    NA    1     1
## 4061    Suc. Belenes     1       1     2     1    2     1
## 4062    Suc. Belenes     1       1     1     1   NA     1
## 4063    Suc. Belenes     1      NA     1     1    1     1
## 4064    Suc. Belenes     0      NA     0     0    0    NA
## 4065    Suc. Belenes     3      NA    NA    NA   NA     3
## 4066    Suc. Belenes     3       3    NA    NA   NA     3
## 4067    Suc. Belenes     3       3     3    NA    5     3
## 4068    Suc. Belenes     3       3    14     3   10    NA
## 4069    Suc. Belenes     2      NA     2     2   NA     2
## 4070    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4071    Suc. Belenes     2       2     8     2    8     6
## 4072    Suc. Belenes    10       3    10     8   13    13
## 4073    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4074    Suc. Belenes     3      NA     4     6   NA    NA
## 4075    Suc. Belenes    NA       7     7    15   11    11
## 4076    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4077    Suc. Belenes     1      NA     0     1   NA     2
## 4078    Suc. Belenes     1       2     2     7    4     4
## 4079    Suc. Belenes     6       5     9     2   10     4
## 4080    Suc. Belenes     2      NA     1    NA    2    NA
## 4081    Suc. Belenes    NA      NA     0     0   NA    NA
## 4082    Suc. Belenes     4       4     8     4    8     4
## 4083    Suc. Belenes    10       3    13    11   16    10
## 4084    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4085    Suc. Belenes    NA      NA     1     4   NA    NA
## 4086    Suc. Belenes     4       7     7    15   18    18
## 4087    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4088    Suc. Belenes     1      NA     0     1    0     2
## 4089    Suc. Belenes     1       2     2     3   NA    NA
## 4090    Suc. Belenes     4       5     8     6    9     6
## 4091    Suc. Belenes     0       2     1    NA    3     2
## 4092    Suc. Belenes    NA      NA     0     0   NA    NA
## 4093    Suc. Belenes     8       2     6     6    8     8
## 4094    Suc. Belenes    10       6    13    11   13    13
## 4095    Suc. Belenes    NA      NA     1     1   NA    NA
## 4096    Suc. Belenes     4       4    11    11   18    14
## 4097    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4098    Suc. Belenes     1      NA     0     0    0     2
## 4099    Suc. Belenes     1       2     2     3    4     2
## 4100    Suc. Belenes     3       4     4     4    6     6
## 4101    Suc. Belenes     2      NA     1     2    0     2
## 4102    Suc. Belenes     1       5     4     3    1     5
## 4103    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4104    Suc. Belenes    NA       3     3     6   NA    NA
## 4105    Suc. Belenes    NA      NA    NA    NA   11    11
## 4106    Suc. Belenes    NA      NA     6     4    4     2
## 4107    Suc. Belenes    NA       3    NA    NA    1    NA
## 4108    Suc. Belenes    NA      NA     0     0   NA    NA
## 4109    Suc. Belenes     8       4    11     8   11     8
## 4110    Suc. Belenes    16      10    13    14   16    10
## 4111    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4112    Suc. Belenes    NA      NA    NA     2   NA    NA
## 4113    Suc. Belenes     8       3     6     4   NA    NA
## 4114    Suc. Belenes     7      11    11    22   25    11
## 4115    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4116    Suc. Belenes     1      NA     1     0    0     2
## 4117    Suc. Belenes     1       2     2     5    6     4
## 4118    Suc. Belenes     6       8     7     4   11     8
## 4119    Suc. Belenes     2      NA     2     2    3     2
## 4120    Suc. Belenes    NA      NA     0     0   NA    NA
## 4121    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4122    Suc. Belenes     7       3     6     8    6     6
## 4123    Suc. Belenes    NA      NA    NA    NA    0    NA
## 4124    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4125    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4126    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4127    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4128    Suc. Belenes    NA       2    NA    NA   NA    NA
## 4129    Suc. Belenes    NA       3    NA    NA   NA    NA
## 4130    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4131    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4132    Suc. Belenes     1      NA    NA    NA   NA    NA
## 4133    Suc. Belenes    NA      NA     3    NA   NA    NA
## 4134    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4135    Suc. Belenes     1      NA    NA    NA   NA    NA
## 4136    Suc. Belenes     6       1     3     3    6     5
## 4137    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4138    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4139    Suc. Belenes     0      NA    NA    NA   NA    NA
## 4140    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4141    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4142    Suc. Belenes    NA      NA    NA    NA   NA     2
## 4143    Suc. Belenes    NA       2     2     2    6     2
## 4144    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4145    Suc. Belenes     3       8     5     8   16     3
## 4146    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4147    Suc. Belenes     3      NA    16    29   41    48
## 4148    Suc. Belenes    NA       5     8     3    9     2
## 4149    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4150    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4151    Suc. Belenes    NA      21    60    53   39    60
## 4152    Suc. Belenes    11      35    63    74   70    92
## 4153    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4154    Suc. Belenes     4       4    17    13   17    13
## 4155    Suc. Belenes     8      17    27    44   42    53
## 4156    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4157    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4158    Suc. Belenes     2      NA    NA    NA   NA    NA
## 4159    Suc. Belenes    NA      NA    NA    NA    3     2
## 4160    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4161    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4162    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4163    Suc. Belenes     1      NA    NA    NA    1     1
## 4164    Suc. Belenes     2      NA    NA    NA   NA    NA
## 4165    Suc. Belenes     1      NA    NA    NA   NA    NA
## 4166    Suc. Belenes     5      NA    NA    NA   NA    NA
## 4167    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4168    Suc. Belenes     3      NA    NA    NA    1     5
## 4169    Suc. Belenes    NA      NA    NA    NA   NA     0
## 4170    Suc. Belenes     0      NA    NA    NA   NA    NA
## 4171    Suc. Belenes     0      NA    NA    NA   NA    NA
## 4172    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4173    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4174    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4175    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4176    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4177    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4178    Suc. Belenes    NA      NA    NA     1    1     1
## 4179    Suc. Belenes    NA      NA    NA    NA   NA     4
## 4180    Suc. Belenes     1       1     1     1    1    NA
## 4181    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4182    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4183    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4184    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4185    Suc. Belenes    NA      NA    NA     1    1     0
## 4186    Suc. Belenes    NA      NA    NA    NA   NA     2
## 4187    Suc. Belenes    NA      NA    NA     1    2    NA
## 4188    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4189    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4190    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4191    Suc. Belenes    NA      NA    NA     1    0     1
## 4192    Suc. Belenes    NA      NA    NA    NA   NA     2
## 4193    Suc. Belenes    NA      NA     1     1    2    NA
## 4194    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4195    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4196    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4197    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4198    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4199    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4200    Suc. Belenes    NA      NA    NA    NA   NA     4
## 4201    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4202    Suc. Belenes    NA      NA    NA     1    1     2
## 4203    Suc. Belenes    NA      NA    NA    NA   NA     2
## 4204    Suc. Belenes     1       1     1     1    1    NA
## 4205    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4206    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4207    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4208    Suc. Belenes    NA      NA    NA    NA   NA     0
## 4209    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4210    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4211    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4212    Suc. Belenes    11      11     8     2   13     4
## 4213    Suc. Belenes    10      13    16     6    6     6
## 4214    Suc. Belenes     5       3     3    NA   NA    NA
## 4215    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4216    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4217    Suc. Belenes     0       0    NA     0   NA     1
## 4218    Suc. Belenes     1       1     1     1    1     1
## 4219    Suc. Belenes     2       1     2     1    1     3
## 4220    Suc. Belenes     0       0     1     0    2    NA
## 4221    Suc. Belenes     1      NA     1     1    1     1
## 4222    Suc. Belenes    NA      NA     1     1    1     1
## 4223    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4224    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4225    Suc. Belenes    NA       0    NA    NA   NA    NA
## 4226    Suc. Belenes    NA       2    NA     2    2     2
## 4227    Suc. Belenes     4       4     4     4    6     2
## 4228    Suc. Belenes     6       6     6     3    6     8
## 4229    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4230    Suc. Belenes     2       4     6     6    8     8
## 4231    Suc. Belenes    NA       2     2     3    2    NA
## 4232    Suc. Belenes    NA      NA    NA    NA    2     1
## 4233    Suc. Belenes     2      NA    NA    NA   NA    NA
## 4234    Suc. Belenes    19      17    19    17   19    19
## 4235    Suc. Belenes     3      NA    NA     3   NA    NA
## 4236    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4237    Suc. Belenes    32      25    25    16   32    32
## 4238    Suc. Belenes    NA      NA    NA     2   NA    NA
## 4239    Suc. Belenes     6       6     6     8    5     5
## 4240    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4241    Suc. Belenes    11       8    11    17   23    23
## 4242    Suc. Belenes    11       8     8    11    6     8
## 4243    Suc. Belenes    49      53    70    77   70    81
## 4244    Suc. Belenes    88      74    74    92   92    70
## 4245    Suc. Belenes     2      NA    NA    NA   NA    NA
## 4246    Suc. Belenes    15      17    25    21   19    25
## 4247    Suc. Belenes    78      59    61    78   72    49
## 4248    Suc. Belenes     3       3     6     9    3     9
## 4249    Suc. Belenes     4       2     5     5    4     4
## 4250    Suc. Belenes     6       8     6     6    6     6
## 4251    Suc. Belenes     2       2     2     2    2     4
## 4252    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4253    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4254    Suc. Belenes    NA      NA     1     1    1     1
## 4255    Suc. Belenes     1      NA    NA     2    4     1
## 4256    Suc. Belenes    NA      NA     0     0    0     0
## 4257    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4258    Suc. Belenes     0       1     1    NA    1     2
## 4259    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4260    Suc. Belenes    NA      NA     0     0    0     0
## 4261    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4262    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4263    Suc. Belenes    NA       2    NA     2    2    NA
## 4264    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4265    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4266    Suc. Belenes     6       3     3     6    6     6
## 4267    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4268    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4269    Suc. Belenes     0       0    NA     0   NA     1
## 4270    Suc. Belenes    NA      NA     0    NA    0    NA
## 4271    Suc. Belenes     1       1     1     1    6     2
## 4272    Suc. Belenes     1       2     1     2    2     2
## 4273    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4274    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4275    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4276    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4277    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4278    Suc. Belenes     0       0    NA     0   NA     0
## 4279    Suc. Belenes     1       1     1     1    2     2
## 4280    Suc. Belenes     1       1     1     1    1     2
## 4281    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4282    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4283    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4284    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4285    Suc. Belenes     0       0    NA     0   NA     1
## 4286    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4287    Suc. Belenes     1       1     1     1    2     2
## 4288    Suc. Belenes     1       1     1     1    1     1
## 4289    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4290    Suc. Belenes    NA      NA     3    NA   NA    NA
## 4291    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4292    Suc. Belenes    NA      NA    NA    NA    2    NA
## 4293    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4294    Suc. Belenes     2       2     4    NA    2     4
## 4295    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4296    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4297    Suc. Belenes    NA      NA    NA     2   NA    NA
## 4298    Suc. Belenes     6       3     3     8    8     8
## 4299    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4300    Suc. Belenes     0       0    NA     0   NA     1
## 4301    Suc. Belenes     0      NA    NA     0   NA     0
## 4302    Suc. Belenes     1       1     1     1    4     2
## 4303    Suc. Belenes     3       1     1     2    2     5
## 4304    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4305    Suc. Belenes    NA      NA    NA    NA    5     3
## 4306    Suc. Belenes    NA      NA    NA    NA   NA     0
## 4307    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4308    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4309    Suc. Belenes     6       8    NA     2    8     8
## 4310    Suc. Belenes     6      NA     6     3   13     6
## 4311    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4312    Suc. Belenes    NA      NA     4     4    4     7
## 4313    Suc. Belenes     3      NA    NA     3    3     3
## 4314    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4315    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4316    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4317    Suc. Belenes    NA      NA    NA    NA    2    NA
## 4318    Suc. Belenes     1      NA     1     1    2     2
## 4319    Suc. Belenes    NA      NA    NA     1    1     1
## 4320    Suc. Belenes     1       1     4     2   NA    NA
## 4321    Suc. Belenes     1       0    NA     0    1     1
## 4322    Suc. Belenes     1      NA    NA     2    1     2
## 4323    Suc. Belenes    NA       2     1     2    1     2
## 4324    Suc. Belenes     6       6     6     8    6     8
## 4325    Suc. Belenes    NA      NA     3     1    2     1
## 4326    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4327    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4328    Suc. Belenes    NA       4    NA    NA   NA     4
## 4329    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4330    Suc. Belenes     6      13    13    15    6     8
## 4331    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4332    Suc. Belenes    13      10    13    19   13    19
## 4333    Suc. Belenes    29      35    57    38   48    67
## 4334    Suc. Belenes     3       5     6     3    5     6
## 4335    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4336    Suc. Belenes     7       7    21    11   25    18
## 4337    Suc. Belenes    46      60   141    77  109   155
## 4338    Suc. Belenes    NA       8    NA    NA    6     2
## 4339    Suc. Belenes    21      40    63    44   49    72
## 4340    Suc. Belenes     1       1     3     3    2     3
## 4341    Suc. Belenes    NA      NA     2     3    3     2
## 4342    Suc. Belenes    NA      NA     1     2    3     2
## 4343    Suc. Belenes     1       3    NA     1    2     1
## 4344    Suc. Belenes     1       1    NA     1   NA    NA
## 4345    Suc. Belenes     1       1    NA     6    2     3
## 4346    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4347    Suc. Belenes     0      NA    NA     0    0     0
## 4348    Suc. Belenes     1       1     1     2    2     2
## 4349    Suc. Belenes     1       2     3     2    5     3
## 4350    Suc. Belenes     2       2    NA    NA    2     4
## 4351    Suc. Belenes    NA       0     0     0    0     0
## 4352    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4353    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4354    Suc. Belenes     2       2     1     2    4     3
## 4355    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4356    Suc. Belenes     3      NA     6     3    3     6
## 4357    Suc. Belenes    NA       0     2     0    1     1
## 4358    Suc. Belenes    NA       1     3     2    5     4
## 4359    Suc. Belenes    NA       1     2     1    1     1
## 4360    Suc. Belenes     2       2     1     2    4     3
## 4361    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4362    Suc. Belenes    NA       0     0    NA   NA     0
## 4363    Suc. Belenes    NA       1     1    NA    1    NA
## 4364    Suc. Belenes    NA      NA     1     1    1     1
## 4365    Suc. Belenes     2       2     1     2    4     3
## 4366    Suc. Belenes    NA      NA    NA     3    6    NA
## 4367    Suc. Belenes     0      NA     1     0    1    NA
## 4368    Suc. Belenes     2       1     1     2    3    NA
## 4369    Suc. Belenes     1      NA     1     1    1     1
## 4370    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4371    Suc. Belenes     3       3     6    NA    6     6
## 4372    Suc. Belenes    NA       0    NA    NA   NA     0
## 4373    Suc. Belenes    NA      NA    NA     1   NA    NA
## 4374    Suc. Belenes     2       2     1     2    4     3
## 4375    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4376    Suc. Belenes    NA       3     8     6    6     6
## 4377    Suc. Belenes     0      NA     2     0    2     1
## 4378    Suc. Belenes    NA       1     1    NA    3     4
## 4379    Suc. Belenes     1       2     3     1    2     2
## 4380    Suc. Belenes     1      NA    NA     5    4     3
## 4381    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4382    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4383    Suc. Belenes     2       2     2     4    2     4
## 4384    Suc. Belenes     6      NA     3    16    3     3
## 4385    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4386    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4387    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4388    Suc. Belenes    NA       2     1     2   NA    NA
## 4389    Suc. Belenes    NA       5    NA    NA   NA    NA
## 4390    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4391    Suc. Belenes    NA      NA     1     1   NA     3
## 4392    Suc. Belenes     1       3     1     1   NA     2
## 4393    Suc. Belenes    NA      NA     0    NA   NA    NA
## 4394    Suc. Belenes    NA      NA     1     1    1     4
## 4395    Suc. Belenes     2      NA    NA    NA   NA    NA
## 4396    Suc. Belenes    NA      NA     0     0   NA    NA
## 4397    Suc. Belenes    NA      NA     2     1    1     1
## 4398    Suc. Belenes     6      NA    NA     3   NA     6
## 4399    Suc. Belenes    NA      NA     1    NA   NA    NA
## 4400    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4401    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4402    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4403    Suc. Belenes     2       2     4    NA   NA     2
## 4404    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4405    Suc. Belenes     2       2     6     2   NA     2
## 4406    Suc. Belenes    21      15    42    11    4    19
## 4407    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4408    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4409    Suc. Belenes    63      44   108    19   16    76
## 4410    Suc. Belenes     8       3     9     3    2     9
## 4411    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4412    Suc. Belenes    18      11    28    35    7    28
## 4413    Suc. Belenes    88      60   148    32   28   106
## 4414    Suc. Belenes    NA      NA    NA     2   NA    NA
## 4415    Suc. Belenes    17       2    23    13    4    19
## 4416    Suc. Belenes    49      34    78   283   15    66
## 4417    Suc. Belenes     3      NA     1    NA   NA     3
## 4418    Suc. Belenes     3       2     3    NA    2     3
## 4419    Suc. Belenes    NA       2     4    NA   NA    NA
## 4420    Suc. Belenes     4       1     5    NA   NA    NA
## 4421    Suc. Belenes    NA      NA     1     1    1     1
## 4422    Suc. Belenes    NA       1     1     1   NA    NA
## 4423    Suc. Belenes    NA       1    NA     1   NA     2
## 4424    Suc. Belenes     1       0     1     2    0     0
## 4425    Suc. Belenes    NA       0     1    NA   NA    NA
## 4426    Suc. Belenes     2       2     5     5   NA    NA
## 4427    Suc. Belenes    NA      NA    NA    NA   NA     0
## 4428    Suc. Belenes     0      NA     1    NA   NA    NA
## 4429    Suc. Belenes    NA      NA     0     0    0     0
## 4430    Suc. Belenes    NA      NA    NA     1   NA    NA
## 4431    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4432    Suc. Belenes    NA       2    NA    NA   NA    NA
## 4433    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4434    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4435    Suc. Belenes     3      NA     3    NA   NA     3
## 4436    Suc. Belenes     4       4    15    NA   NA    NA
## 4437    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4438    Suc. Belenes     0      NA    NA    NA    0    NA
## 4439    Suc. Belenes     3       1    NA    NA    1     2
## 4440    Suc. Belenes     1       1     1     1   NA     1
## 4441    Suc. Belenes    NA       0    NA    NA   NA    NA
## 4442    Suc. Belenes     2      NA    NA    NA   NA    NA
## 4443    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4444    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4445    Suc. Belenes    NA      NA     3    NA    3     3
## 4446    Suc. Belenes     4       4    11    NA   NA    NA
## 4447    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4448    Suc. Belenes    NA       0     1     0   NA    NA
## 4449    Suc. Belenes     3       1    NA    NA    1     2
## 4450    Suc. Belenes     1       1    NA     1   NA    NA
## 4451    Suc. Belenes    NA       0    NA    NA   NA    NA
## 4452    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4453    Suc. Belenes     3      NA     6     6   NA    NA
## 4454    Suc. Belenes     1       1    11    NA   NA    NA
## 4455    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4456    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4457    Suc. Belenes     3       1    NA    NA    1     2
## 4458    Suc. Belenes     1      NA    NA     1   NA    NA
## 4459    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4460    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4461    Suc. Belenes     6       3    NA     3   NA     3
## 4462    Suc. Belenes    NA      NA     2     2   NA    NA
## 4463    Suc. Belenes     1      NA    NA     3   NA    NA
## 4464    Suc. Belenes    NA       0    NA    NA   NA    NA
## 4465    Suc. Belenes     2       2    NA    NA   NA    NA
## 4466    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4467    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4468    Suc. Belenes     6      NA     8     3   NA     3
## 4469    Suc. Belenes     4       1    11    NA   NA    NA
## 4470    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4471    Suc. Belenes     0       0     1    NA   NA     0
## 4472    Suc. Belenes     5       1    NA    NA    1     2
## 4473    Suc. Belenes     1       1    NA     3   NA    NA
## 4474    Suc. Belenes    NA       0    NA    NA   NA    NA
## 4475    Suc. Belenes     1       4     1     3    3     3
## 4476    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4477    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4478    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4479    Suc. Belenes    NA      55    NA    NA   NA     4
## 4480    Suc. Belenes    NA     136    NA    NA   NA    NA
## 4481    Suc. Belenes    NA      NA    NA    NA   NA     0
## 4482    Suc. Belenes    NA      NA    NA    NA   NA     2
## 4483    Suc. Belenes    NA      NA    NA    NA    1    NA
## 4484    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4485    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4486    Suc. Belenes    NA      NA     1    NA   11    12
## 4487    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4488    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4489    Suc. Belenes    NA      NA     1    NA   NA    NA
## 4490    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4491    Suc. Belenes    NA      NA     0    NA   NA    NA
## 4492    Suc. Belenes    NA      NA     1    NA   NA    NA
## 4493    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4494    Suc. Belenes    NA      NA    NA     4   NA     6
## 4495    Suc. Belenes    25      42    17    30   32    11
## 4496    Suc. Belenes     3       2    NA     3    2     1
## 4497    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4498    Suc. Belenes    NA      NA    NA    NA    1    NA
## 4499    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4500    Suc. Belenes    NA     127   119   185  227    40
## 4501    Suc. Belenes    NA      NA    NA    NA   NA    76
## 4502    Suc. Belenes   162     479   485   336  707   466
## 4503    Suc. Belenes    35      62    90   102  111    71
## 4504    Suc. Belenes    NA      26    12    27   53    26
## 4505    Suc. Belenes    NA      NA    NA     3   NA    NA
## 4506    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4507    Suc. Belenes    NA     211    70   271  331   257
## 4508    Suc. Belenes   486      NA   750    NA   NA    NA
## 4509    Suc. Belenes    13      42    11    53   53    32
## 4510    Suc. Belenes    53     114    21   114  114   129
## 4511    Suc. Belenes   199     820   691   824   NA   888
## 4512    Suc. Belenes     6       8     4    17   19    32
## 4513    Suc. Belenes    NA      11    11    15   11     9
## 4514    Suc. Belenes    NA      30    20    40   36    12
## 4515    Suc. Belenes    NA      10    20    16   23    15
## 4516    Suc. Belenes    NA      NA     2    NA   NA    NA
## 4517    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4518    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4519    Suc. Belenes    NA      NA    18    NA   NA     1
## 4520    Suc. Belenes    NA      NA    NA    NA    1    NA
## 4521    Suc. Belenes    NA      NA    54    NA   NA    NA
## 4522    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4523    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4524    Suc. Belenes    NA      NA     0    NA   NA    NA
## 4525    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4526    Suc. Belenes    NA      27    11    20   37    17
## 4527    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4528    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4529    Suc. Belenes     5       6    15    16   24    17
## 4530    Suc. Belenes    NA       4    30    11   27    23
## 4531    Suc. Belenes    10       3    NA    NA   NA    NA
## 4532    Suc. Belenes    NA       1     2     1    2    NA
## 4533    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4534    Suc. Belenes    NA      21     3    11   29     6
## 4535    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4536    Suc. Belenes     2       6     7    15   12    16
## 4537    Suc. Belenes    NA      11    NA     1   13    14
## 4538    Suc. Belenes     4      NA    NA    NA   NA    NA
## 4539    Suc. Belenes    NA       1     2     1    2    NA
## 4540    Suc. Belenes    NA      24    17    NA   32     3
## 4541    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4542    Suc. Belenes     5      10    12    15   15    18
## 4543    Suc. Belenes    NA      25    13     1   19    16
## 4544    Suc. Belenes    11       8    NA    NA   NA    NA
## 4545    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4546    Suc. Belenes    NA      NA    NA     3   NA    14
## 4547    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4548    Suc. Belenes    NA      NA     2    NA   11    13
## 4549    Suc. Belenes    NA       1     2     1    2    NA
## 4550    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4551    Suc. Belenes    NA      30    23    23   57    37
## 4552    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4553    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4554    Suc. Belenes     5      15    15    14   37    22
## 4555    Suc. Belenes    NA      13    11    30   23    27
## 4556    Suc. Belenes     8       5    NA    NA   NA    NA
## 4557    Suc. Belenes    NA       1     2     1    2    NA
## 4558    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4559    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4560    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4561    Suc. Belenes    NA      NA    NA    NA   NA     0
## 4562    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4563    Suc. Belenes     8      11    11    17   30    21
## 4564    Suc. Belenes    19      16    10    29   60    29
## 4565    Suc. Belenes    NA      13     5    13   30    10
## 4566    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4567    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4568    Suc. Belenes     3       2     1     1    1     2
## 4569    Suc. Belenes    10       5     6     6   17     6
## 4570    Suc. Belenes    NA      NA     1    NA   NA    NA
## 4571    Suc. Belenes     1      NA    NA    NA   NA    NA
## 4572    Suc. Belenes     2      NA    NA    NA   NA    NA
## 4573    Suc. Belenes     3       3     3     3    5     5
## 4574    Suc. Belenes     7      11     6    14    6     3
## 4575    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4576    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4577    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4578    Suc. Belenes    NA       6     6    14    6    NA
## 4579    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4580    Suc. Belenes     0       0    NA    NA    1    NA
## 4581    Suc. Belenes     0      NA    NA    NA   NA    NA
## 4582    Suc. Belenes     2       1    NA    NA    1    NA
## 4583    Suc. Belenes     2      NA    NA    NA   NA    NA
## 4584    Suc. Belenes     3      NA    NA    NA   NA    NA
## 4585    Suc. Belenes     2       2    NA    NA   NA    NA
## 4586    Suc. Belenes     6      11     2     6    6     4
## 4587    Suc. Belenes    NA       3    NA     3   NA     3
## 4588    Suc. Belenes    NA       2    NA    NA   NA    NA
## 4589    Suc. Belenes     6      13     4    19   15    11
## 4590    Suc. Belenes     2       4    NA     1    2     1
## 4591    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4592    Suc. Belenes    66      66    53    79  119   106
## 4593    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4594    Suc. Belenes   333     523   412   682  644   476
## 4595    Suc. Belenes    30      38    15    53   60    75
## 4596    Suc. Belenes    44      30    45    78   84    98
## 4597    Suc. Belenes    NA      14    14    23   14    42
## 4598    Suc. Belenes     6       8     8    NA   14    NA
## 4599    Suc. Belenes    70     141    70   176  282   141
## 4600    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4601    Suc. Belenes    21      NA    11    27   38    32
## 4602    Suc. Belenes    NA      95    27   106  169   169
## 4603    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4604    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4605    Suc. Belenes    11      11     5    20   10    12
## 4606    Suc. Belenes     8      12    NA    12   14    11
## 4607    Suc. Belenes    10       6    NA    10   18    14
## 4608    Suc. Belenes     7       6     5    12    9     7
## 4609    Suc. Belenes     2       2     3    NA    2    NA
## 4610    Suc. Belenes     3      NA    NA     2   NA    NA
## 4611    Suc. Belenes     3      NA     3    NA   NA    NA
## 4612    Suc. Belenes    16      NA    NA    NA    3    NA
## 4613    Suc. Belenes    NA       2     2     2    4    NA
## 4614    Suc. Belenes    NA       0     0     1   NA    NA
## 4615    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4616    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4617    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4618    Suc. Belenes    NA       3     3     3   NA     6
## 4619    Suc. Belenes     8       2     6    11   14     5
## 4620    Suc. Belenes     6      11     8    14   23    11
## 4621    Suc. Belenes     6      NA    NA    NA   NA    NA
## 4622    Suc. Belenes    NA      18    NA     7   NA     7
## 4623    Suc. Belenes     1      NA    NA    NA    1    NA
## 4624    Suc. Belenes     7       3     2     5   10    12
## 4625    Suc. Belenes     2       2    NA    NA   NA    NA
## 4626    Suc. Belenes    42      55    27    59   66    44
## 4627    Suc. Belenes    25       3    20     5    5     8
## 4628    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4629    Suc. Belenes    NA       2    NA    NA    0    NA
## 4630    Suc. Belenes    NA       3    NA     6   NA     6
## 4631    Suc. Belenes     3      11     6    14   17    11
## 4632    Suc. Belenes     3      NA    NA    NA   NA    NA
## 4633    Suc. Belenes    NA      21    NA     7    4     7
## 4634    Suc. Belenes     5       3    NA     5    7     7
## 4635    Suc. Belenes     2       2    NA    NA   NA    NA
## 4636    Suc. Belenes    21      21    13    30   30    32
## 4637    Suc. Belenes    28       3    28     5    5     5
## 4638    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4639    Suc. Belenes    NA       2    NA    NA    0    NA
## 4640    Suc. Belenes    NA       3     3     6   NA     6
## 4641    Suc. Belenes     8      NA     6     6   12     5
## 4642    Suc. Belenes     3      NA     6    14   17    11
## 4643    Suc. Belenes     6      NA    NA    NA   NA    NA
## 4644    Suc. Belenes    NA      14    NA     4   NA     7
## 4645    Suc. Belenes     1      NA    NA    NA    1    NA
## 4646    Suc. Belenes     5       3     2     5    7    10
## 4647    Suc. Belenes     2       2    NA    NA   NA    NA
## 4648    Suc. Belenes    36      32    17    53   27    44
## 4649    Suc. Belenes    NA       3    53     5    5     8
## 4650    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4651    Suc. Belenes     3       3    NA    NA    3     3
## 4652    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4653    Suc. Belenes    36      15    11    11   32    17
## 4654    Suc. Belenes    NA      NA    25    NA   NA    NA
## 4655    Suc. Belenes    NA       2    NA    NA    0    NA
## 4656    Suc. Belenes    NA       3     3     6   NA     6
## 4657    Suc. Belenes     8       2     6    11   15     5
## 4658    Suc. Belenes     6      14    17    14   23    11
## 4659    Suc. Belenes     6      NA    NA    NA   NA    NA
## 4660    Suc. Belenes    NA      21    NA     7    7     7
## 4661    Suc. Belenes     1      NA    NA    NA   NA    NA
## 4662    Suc. Belenes     5       3     2     8   10    12
## 4663    Suc. Belenes    NA       2    NA    NA   NA    NA
## 4664    Suc. Belenes    57      44    38    80   72    78
## 4665    Suc. Belenes    30       3    28    13   10     8
## 4666    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4667    Suc. Belenes    NA       2    NA    NA    0    NA
## 4668    Suc. Belenes     3       2     2     1    2    NA
## 4669    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4670    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4671    Suc. Belenes     4      15     8     6    6     6
## 4672    Suc. Belenes     6       3     6    10    6     6
## 4673    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4674    Suc. Belenes     3      NA    NA    NA    3    NA
## 4675    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4676    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4677    Suc. Belenes    NA      NA    NA    NA   NA     2
## 4678    Suc. Belenes    NA      NA    NA     1   NA    NA
## 4679    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4680    Suc. Belenes     1       1     1     1    1     1
## 4681    Suc. Belenes     6       7     4     5    4     4
## 4682    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4683    Suc. Belenes     1       1     1    NA    1    NA
## 4684    Suc. Belenes    NA      NA     2     4    2     2
## 4685    Suc. Belenes    NA      NA     1     1    1     1
## 4686    Suc. Belenes     6       6     8    17   11    14
## 4687    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4688    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4689    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4690    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4691    Suc. Belenes    NA      NA     2     2   NA    NA
## 4692    Suc. Belenes     4       2     2    NA    4     4
## 4693    Suc. Belenes     6      11    11    11   11    11
## 4694    Suc. Belenes     8       6     6     2    6     2
## 4695    Suc. Belenes     2       2     1     1    3     2
## 4696    Suc. Belenes     2      NA    NA     2   NA     4
## 4697    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4698    Suc. Belenes    NA      NA    NA    NA    2    NA
## 4699    Suc. Belenes     8       6     4     6    6    13
## 4700    Suc. Belenes    16      13    13    18   18    11
## 4701    Suc. Belenes    NA      NA    NA    NA   NA     6
## 4702    Suc. Belenes    16      10    16    10   29    19
## 4703    Suc. Belenes     2       2     2     2    2     2
## 4704    Suc. Belenes    14      17    14    20   17    14
## 4705    Suc. Belenes    25      18    18    28   25    28
## 4706    Suc. Belenes   123     109   106   120  116   144
## 4707    Suc. Belenes    13       6    11     8    6    11
## 4708    Suc. Belenes    19       6    11    17   11    17
## 4709    Suc. Belenes    36      34    42    46   42    61
## 4710    Suc. Belenes     5       3     4     3    3     4
## 4711    Suc. Belenes     5       4     3     5    3     6
## 4712    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4713    Suc. Belenes     3       2     2     4    4     4
## 4714    Suc. Belenes    NA       1     1    NA   NA    NA
## 4715    Suc. Belenes    NA       1     1     2    2     2
## 4716    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4717    Suc. Belenes     2       1     1     5   NA     4
## 4718    Suc. Belenes     1      NA     0     0    0     0
## 4719    Suc. Belenes     1       1     1     1    1     1
## 4720    Suc. Belenes     2       3     3     3    5     1
## 4721    Suc. Belenes    NA       2    NA     2    2     2
## 4722    Suc. Belenes     1       1    NA     1    0     1
## 4723    Suc. Belenes    NA      NA     1    NA   NA    NA
## 4724    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4725    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4726    Suc. Belenes     0       0     0     0    0     0
## 4727    Suc. Belenes     1      NA     1     1    1     2
## 4728    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4729    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4730    Suc. Belenes    NA      NA    NA    NA    2     1
## 4731    Suc. Belenes     1       2     1     1    1     1
## 4732    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4733    Suc. Belenes    NA       0     0    NA    1     1
## 4734    Suc. Belenes    NA      NA    NA    NA    2     1
## 4735    Suc. Belenes     1       1     1     1    1     1
## 4736    Suc. Belenes    NA       0     0    NA   NA    NA
## 4737    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4738    Suc. Belenes     1       2     1     1    1     1
## 4739    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4740    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4741    Suc. Belenes    NA      NA     1     1    1     1
## 4742    Suc. Belenes    NA       0     0    NA   NA    NA
## 4743    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4744    Suc. Belenes     1       2     1     1    1     1
## 4745    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4746    Suc. Belenes    NA      NA    NA    NA    1    NA
## 4747    Suc. Belenes     2      NA    NA    NA   NA     1
## 4748    Suc. Belenes     1       1     1     1    1     1
## 4749    Suc. Belenes     1       2     2     1    1     1
## 4750    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4751    Suc. Belenes    NA      NA    NA     0   NA    NA
## 4752    Suc. Belenes    NA       2    NA    NA   NA    NA
## 4753    Suc. Belenes    NA       0     0    NA   NA    NA
## 4754    Suc. Belenes    NA      NA    NA    NA    2     1
## 4755    Suc. Belenes     1       2     1     1    1     1
## 4756    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4757    Suc. Belenes     0       0    NA    NA    2     1
## 4758    Suc. Belenes    NA      NA     2     2   NA     1
## 4759    Suc. Belenes     1       1     1     1    1     2
## 4760    Suc. Belenes    NA       0     0    NA   NA    NA
## 4761    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4762    Suc. Belenes     4       6     4     6    4     4
## 4763    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4764    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4765    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4766    Suc. Belenes    NA      NA     4     2    2     4
## 4767    Suc. Belenes    NA       3     3     3    3     6
## 4768    Suc. Belenes     7       4    11    NA   NA     4
## 4769    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4770    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4771    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4772    Suc. Belenes    NA      NA    NA     3   NA    NA
## 4773    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4774    Suc. Belenes    NA       0    NA     0    0     0
## 4775    Suc. Belenes     1      NA     1    NA   NA     1
## 4776    Suc. Belenes     1      NA    NA    NA   NA     1
## 4777    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4778    Suc. Belenes    NA       2     1     3    1     1
## 4779    Suc. Belenes     2       1     1     2    1     1
## 4780    Suc. Belenes     3       3     6     3    3     3
## 4781    Suc. Belenes    NA       0    NA    NA   NA    NA
## 4782    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4783    Suc. Belenes    NA      NA    NA     2   NA     2
## 4784    Suc. Belenes     1      NA    NA    NA   NA    NA
## 4785    Suc. Belenes     6       2     4     4    2     6
## 4786    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4787    Suc. Belenes    NA       4    NA    NA    4    NA
## 4788    Suc. Belenes     2       2     4     2    4     6
## 4789    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4790    Suc. Belenes    NA       2    NA    NA   NA    NA
## 4791    Suc. Belenes    NA      NA    NA    NA   NA     2
## 4792    Suc. Belenes    NA      NA    NA    NA   NA     2
## 4793    Suc. Belenes    24      50    NA    34   34    21
## 4794    Suc. Belenes    NA      NA    NA    NA   NA    25
## 4795    Suc. Belenes    44      73    25    44   79    76
## 4796    Suc. Belenes     2       8     3     5    6     8
## 4797    Suc. Belenes     2       2     2    NA   NA    NA
## 4798    Suc. Belenes    NA      NA    NA    NA    6    17
## 4799    Suc. Belenes    11      63    NA    14   35    21
## 4800    Suc. Belenes   106     130    74   120  109   123
## 4801    Suc. Belenes     4       6     8     4    4    11
## 4802    Suc. Belenes    11       8     2    11   11     6
## 4803    Suc. Belenes    21      55    13    38   30    49
## 4804    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4805    Suc. Belenes     6       9    NA     9    3     3
## 4806    Suc. Belenes    NA       1     1    NA    1     3
## 4807    Suc. Belenes    NA      NA    NA     2    2    NA
## 4808    Suc. Belenes    NA      NA    NA     2    2    NA
## 4809    Suc. Belenes     2       1     2    NA    1     1
## 4810    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4811    Suc. Belenes    NA       1     1     1    1     1
## 4812    Suc. Belenes    NA      NA    NA     1   NA    NA
## 4813    Suc. Belenes     1      NA    NA     1   NA     1
## 4814    Suc. Belenes     1       0     0     0    0     0
## 4815    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4816    Suc. Belenes     4      NA    NA    NA   NA     2
## 4817    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4818    Suc. Belenes    NA      NA    NA    NA    2    NA
## 4819    Suc. Belenes    NA      NA    NA    NA    0     0
## 4820    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4821    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4822    Suc. Belenes     1      NA    NA     1    1    NA
## 4823    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4824    Suc. Belenes     0       0     0     0    0     1
## 4825    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4826    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4827    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4828    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4829    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4830    Suc. Belenes    NA       0     0    NA   NA    NA
## 4831    Suc. Belenes    NA       3    NA     3   NA     4
## 4832    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4833    Suc. Belenes    NA       0    NA     0    0     0
## 4834    Suc. Belenes     1       0    NA    NA    0     0
## 4835    Suc. Belenes    NA       1     1    NA    1     3
## 4836    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4837    Suc. Belenes     0      NA    NA    NA   NA    NA
## 4838    Suc. Belenes    NA       0     0    NA    0     0
## 4839    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4840    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4841    Suc. Belenes    NA       0     0    NA   NA    NA
## 4842    Suc. Belenes    NA       3    NA    NA   NA     4
## 4843    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4844    Suc. Belenes    NA       0    NA     0    0     0
## 4845    Suc. Belenes     0       0    NA     0   NA     0
## 4846    Suc. Belenes    NA       1     1    NA    1     1
## 4847    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4848    Suc. Belenes     0      NA    NA    NA   NA    NA
## 4849    Suc. Belenes    NA       0     0    NA    0     0
## 4850    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4851    Suc. Belenes    NA       0     0    NA   NA    NA
## 4852    Suc. Belenes    NA       3    NA    NA   NA     1
## 4853    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4854    Suc. Belenes    NA       0    NA     0    0     0
## 4855    Suc. Belenes     0       0    NA     0    0     0
## 4856    Suc. Belenes    NA       1     3    NA    1     1
## 4857    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4858    Suc. Belenes     0      NA    NA    NA   NA    NA
## 4859    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4860    Suc. Belenes    NA      NA    NA    NA    6     3
## 4861    Suc. Belenes    NA      NA    NA    NA    0     0
## 4862    Suc. Belenes    NA       0     0    NA    0     0
## 4863    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4864    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4865    Suc. Belenes    NA       0     0    NA   NA    NA
## 4866    Suc. Belenes     3       3     3    NA   NA     4
## 4867    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4868    Suc. Belenes    NA       0    NA     0    0     0
## 4869    Suc. Belenes     1       0     0    NA    0     1
## 4870    Suc. Belenes    NA       1     1     2    1     1
## 4871    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4872    Suc. Belenes     0      NA    NA    NA   NA    NA
## 4873    Suc. Belenes    NA       0     0    NA    0     0
## 4874    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4875    Suc. Belenes    NA       1     1     1   NA     2
## 4876    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4877    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4878    Suc. Belenes     2       4     2     2    2     2
## 4879    Suc. Belenes     3       3     3     3    3     3
## 4880    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4881    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4882    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4883    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4884    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4885    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4886    Suc. Belenes     3       1    NA    NA    1    NA
## 4887    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4888    Suc. Belenes    NA       1    NA     1    1     1
## 4889    Suc. Belenes     2      NA     2    NA   NA    NA
## 4890    Suc. Belenes     1      NA    NA    NA   NA    NA
## 4891    Suc. Belenes     2       1     1     1    1     1
## 4892    Suc. Belenes     6      NA    NA    NA    3    NA
## 4893    Suc. Belenes    NA       0    NA     0    0    NA
## 4894    Suc. Belenes    NA      NA    NA     1   NA    NA
## 4895    Suc. Belenes    NA      NA    NA     2   NA    NA
## 4896    Suc. Belenes    NA      NA     1    NA   NA    NA
## 4897    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4898    Suc. Belenes     2       2     2     2    2     4
## 4899    Suc. Belenes    NA       2    NA    NA   NA    NA
## 4900    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4901    Suc. Belenes    24       5    11    16   13     5
## 4902    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4903    Suc. Belenes    22      16    16    32   41    51
## 4904    Suc. Belenes     2       2     3     3    2     6
## 4905    Suc. Belenes    25      11     7    18   14    14
## 4906    Suc. Belenes    67      46    35    67   70    70
## 4907    Suc. Belenes     6       8     6     4    6     8
## 4908    Suc. Belenes    19      21    21    23   30    30
## 4909    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4910    Suc. Belenes    NA      NA    NA     2   NA     2
## 4911    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4912    Suc. Belenes     1       1     1     1    1     1
## 4913    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4914    Suc. Belenes    NA       1     1     1    2     1
## 4915    Suc. Belenes     2      NA    NA     1    1    NA
## 4916    Suc. Belenes     0       0     0     0    0     0
## 4917    Suc. Belenes    NA       0    NA    NA   NA    NA
## 4918    Suc. Belenes     1       2    NA    NA    0    NA
## 4919    Suc. Belenes    NA      NA    NA    NA   NA     0
## 4920    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4921    Suc. Belenes     0       0     0     0    0     0
## 4922    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4923    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4924    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4925    Suc. Belenes     1      NA    NA    NA   NA    NA
## 4926    Suc. Belenes     0      NA    NA    NA    0    NA
## 4927    Suc. Belenes     1       1     1     2    2     1
## 4928    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4929    Suc. Belenes    NA       0     0    NA   NA    NA
## 4930    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4931    Suc. Belenes     1       3    NA    NA   NA     3
## 4932    Suc. Belenes    NA      NA    NA    NA    0    NA
## 4933    Suc. Belenes     1       1     1     2    2     1
## 4934    Suc. Belenes    NA       0     0    NA   NA    NA
## 4935    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4936    Suc. Belenes    NA      NA    NA     0   NA     0
## 4937    Suc. Belenes     1       1     1     2    2     1
## 4938    Suc. Belenes     1       3    NA    NA   NA    NA
## 4939    Suc. Belenes    NA      NA    NA    NA   NA     2
## 4940    Suc. Belenes    NA       0     0    NA   NA    NA
## 4941    Suc. Belenes     1       3     3     3    3    NA
## 4942    Suc. Belenes    NA       0     0    NA    0    NA
## 4943    Suc. Belenes     1       1     1     2    2     1
## 4944    Suc. Belenes     1      NA    NA    NA   NA    NA
## 4945    Suc. Belenes    NA       0     0    NA   NA    NA
## 4946    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4947    Suc. Belenes     2       3    NA    NA   NA    NA
## 4948    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4949    Suc. Belenes    53      80    15    78    8    34
## 4950    Suc. Belenes    54      38    10    79   13    38
## 4951    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4952    Suc. Belenes     4       7     7     7   NA    NA
## 4953    Suc. Belenes    13      25     5    23    5    15
## 4954    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4955    Suc. Belenes    12      11     8    16   15    14
## 4956    Suc. Belenes    NA      NA    NA    NA    5     5
## 4957    Suc. Belenes     5       5     5     4    7     6
## 4958    Suc. Belenes     1       0    NA    NA   NA    NA
## 4959    Suc. Belenes     3       3     1     3    3     3
## 4960    Suc. Belenes     2       3     2     1   NA     4
## 4961    Suc. Belenes    NA      NA    NA     0   NA     0
## 4962    Suc. Belenes    NA       1    NA     4    2     2
## 4963    Suc. Belenes     2       2    NA    NA   NA    NA
## 4964    Suc. Belenes     2       2     2     1    1     2
## 4965    Suc. Belenes    NA       3     6     8    3     3
## 4966    Suc. Belenes     1       3     1     3    3    NA
## 4967    Suc. Belenes    NA      NA    NA    NA    1     0
## 4968    Suc. Belenes    NA      NA     1     1    1    NA
## 4969    Suc. Belenes    NA      NA     2     1    2     4
## 4970    Suc. Belenes    NA       1     1     1   NA    NA
## 4971    Suc. Belenes     6       4     4     4    4     6
## 4972    Suc. Belenes     6       6     6     4    6     6
## 4973    Suc. Belenes     3       3    NA     3   NA     6
## 4974    Suc. Belenes    23      25    21    21   25    25
## 4975    Suc. Belenes     3       4     3     2    4     4
## 4976    Suc. Belenes     3       5     5     5    5     5
## 4977    Suc. Belenes     2       3     2     3    1     4
## 4978    Suc. Belenes     4      NA     2    NA    4    NA
## 4979    Suc. Belenes     6       4     6     8   11     8
## 4980    Suc. Belenes    NA      NA    NA    NA    1    NA
## 4981    Suc. Belenes     8       6     8    11   13    13
## 4982    Suc. Belenes     5       8     5     3    8     3
## 4983    Suc. Belenes    NA      NA    NA    NA    3     6
## 4984    Suc. Belenes     3       3     3     3    3     3
## 4985    Suc. Belenes    29      23    27    30   20    23
## 4986    Suc. Belenes    11       8     6     6   14    14
## 4987    Suc. Belenes    NA      NA     6    NA   NA    NA
## 4988    Suc. Belenes    21      28    14    21   21    35
## 4989    Suc. Belenes     4       4     7     4    4     4
## 4990    Suc. Belenes    11      15     6     8   23    19
## 4991    Suc. Belenes    97      82    78    89   91   116
## 4992    Suc. Belenes    93      78    82    91   72    87
## 4993    Suc. Belenes    NA      NA     3    NA   NA    NA
## 4994    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4995    Suc. Belenes    12      11    11    12   13    15
## 4996    Suc. Belenes    12       9     9    11   12    14
## 4997    Suc. Belenes     8       2     6     6    8     8
## 4998    Suc. Belenes    11       9     9     9   10     9
## 4999    Suc. Belenes    NA      NA    NA    NA    2     1
## 5000    Suc. Belenes     2       1     8     7   13     1
## 5001    Suc. Belenes    NA      NA    NA     3    1    NA
## 5002    Suc. Belenes     8       3     5     8    9     7
## 5003    Suc. Belenes     2       0     1     0    1     0
## 5004    Suc. Belenes    NA       1    NA    NA    2     1
## 5005    Suc. Belenes    14       9    20     2   16     7
## 5006    Suc. Belenes     2       3     3     1    2    NA
## 5007    Suc. Belenes    NA      NA    NA    NA   NA     1
## 5008    Suc. Belenes     4      NA     4     4    2     4
## 5009    Suc. Belenes     1       1     1     1    1     0
## 5010    Suc. Belenes     1      NA     1    NA   NA    NA
## 5011    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5012    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5013    Suc. Belenes    NA      NA     1    NA    1     1
## 5014    Suc. Belenes    NA       1     1     2    2     1
## 5015    Suc. Belenes     3      NA     3     5    4     6
## 5016    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5017    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5018    Suc. Belenes     6       3     4    NA   NA    NA
## 5019    Suc. Belenes    NA      NA     2     2   NA    NA
## 5020    Suc. Belenes     1       0    NA    NA   NA    NA
## 5021    Suc. Belenes     5       5     3     2    4     3
## 5022    Suc. Belenes    NA      NA     1    NA    2     2
## 5023    Suc. Belenes     6       4     3     6    4     9
## 5024    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5025    Suc. Belenes    NA       0     0     0   NA    NA
## 5026    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5027    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5028    Suc. Belenes     0       0    NA    NA   NA    NA
## 5029    Suc. Belenes     2       1     1     0    1     2
## 5030    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5031    Suc. Belenes    NA       1     1     3    3     1
## 5032    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5033    Suc. Belenes    NA       0     0     0   NA    NA
## 5034    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5035    Suc. Belenes    NA       2    NA    NA   NA    NA
## 5036    Suc. Belenes     1       0    NA    NA   NA    NA
## 5037    Suc. Belenes     2       0    NA     1    0     2
## 5038    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5039    Suc. Belenes    NA      NA     2    NA    1     1
## 5040    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5041    Suc. Belenes     6       4     3     4   NA     4
## 5042    Suc. Belenes     3       6     3    NA   NA     6
## 5043    Suc. Belenes    NA       4     4     4   NA    NA
## 5044    Suc. Belenes     3       1     1     3    3     2
## 5045    Suc. Belenes     4       2     2     4    2     4
## 5046    Suc. Belenes     5       4     3     6    5     5
## 5047    Suc. Belenes    NA       0     0     0   NA    NA
## 5048    Suc. Belenes     2      NA    NA    NA   NA    NA
## 5049    Suc. Belenes     3       8     1     3    6     6
## 5050    Suc. Belenes     2       4     2     4    4    NA
## 5051    Suc. Belenes     1       0    NA    NA   NA    NA
## 5052    Suc. Belenes     4       3     3     3    5     4
## 5053    Suc. Belenes     4       4     7     6    8     6
## 5054    Suc. Belenes     6       4     3     9    6     9
## 5055    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5056    Suc. Belenes    NA       0     0     0   NA    NA
## 5057    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5058    Suc. Belenes     4       6     4     9    6     9
## 5059    Suc. Belenes    NA      NA     0    NA   NA     0
## 5060    Suc. Belenes    NA      NA    NA    NA    5     1
## 5061    Suc. Belenes     2       3     4    NA   NA    NA
## 5062    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5063    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5064    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5065    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5066    Suc. Belenes     2       2     2     2   11     6
## 5067    Suc. Belenes     3       3     3     3   13    13
## 5068    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5069    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5070    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5071    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5072    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5073    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5074    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5075    Suc. Belenes     1      NA    NA     2   NA     1
## 5076    Suc. Belenes     1      NA    NA     2    4     5
## 5077    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5078    Suc. Belenes     2       1     2     2    3     2
## 5079    Suc. Belenes    11      NA    NA    NA   NA    NA
## 5080    Suc. Belenes    NA       2    NA    NA   NA    NA
## 5081    Suc. Belenes     2       1     2     1    1     2
## 5082    Suc. Belenes     6       3     8     6    6     6
## 5083    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5084    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5085    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5086    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5087    Suc. Belenes     1      NA    NA    NA   NA    NA
## 5088    Suc. Belenes     6       2     4     4   NA     8
## 5089    Suc. Belenes     3      NA     6     3    3     3
## 5090    Suc. Belenes     2       6     8     6    6    13
## 5091    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5092    Suc. Belenes    NA      NA    NA     2   NA    NA
## 5093    Suc. Belenes    NA      NA    NA    NA   NA     4
## 5094    Suc. Belenes    48      53    82    69   69    53
## 5095    Suc. Belenes    NA      NA    NA    NA   NA    41
## 5096    Suc. Belenes    60      19    32    29   19    41
## 5097    Suc. Belenes     2       2     3     3    5     3
## 5098    Suc. Belenes    NA      NA    NA     3   NA     3
## 5099    Suc. Belenes    81      85    74    85   81   102
## 5100    Suc. Belenes    85      85    56    70  130    70
## 5101    Suc. Belenes    53      44    93    91  101   101
## 5102    Suc. Belenes    95     123   163   165  169   142
## 5103    Suc. Belenes     4       1     3     3    5     5
## 5104    Suc. Belenes    NA       3     5     3    6     6
## 5105    Suc. Belenes     4       2    NA    NA    2    NA
## 5106    Suc. Belenes     2       1    NA     1    1     2
## 5107    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5108    Suc. Belenes    NA       2     1     1    1     1
## 5109    Suc. Belenes     1       1     1     2   NA    NA
## 5110    Suc. Belenes     2       1     1     2    2     1
## 5111    Suc. Belenes     0       1     0     0    1     1
## 5112    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5113    Suc. Belenes     5       4     2     3    3     4
## 5114    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5115    Suc. Belenes     3      NA     4    NA   NA    NA
## 5116    Suc. Belenes     1      NA    NA    NA   NA     1
## 5117    Suc. Belenes     0       0     1     0    0     0
## 5118    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5119    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5120    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5121    Suc. Belenes    NA      NA    NA    NA   NA     2
## 5122    Suc. Belenes    14       3    NA     3   NA    NA
## 5123    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5124    Suc. Belenes     0      NA    NA    NA    0     0
## 5125    Suc. Belenes     2      NA     2     2    1     1
## 5126    Suc. Belenes     1       4     3     3    2     4
## 5127    Suc. Belenes    NA       0    NA    NA   NA    NA
## 5128    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5129    Suc. Belenes    NA      NA    NA    NA   NA     2
## 5130    Suc. Belenes     3      NA    NA     3   NA    NA
## 5131    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5132    Suc. Belenes    NA       0    NA     0    0    NA
## 5133    Suc. Belenes    NA      NA    NA    NA    1     1
## 5134    Suc. Belenes     1       3     3     3    3     4
## 5135    Suc. Belenes    NA       0    NA    NA   NA    NA
## 5136    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5137    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5138    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5139    Suc. Belenes    NA      NA    NA    NA    1    NA
## 5140    Suc. Belenes    NA      NA    NA    NA    1     1
## 5141    Suc. Belenes     1       3     3     3    2     3
## 5142    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5143    Suc. Belenes    NA      NA    NA    NA   NA     2
## 5144    Suc. Belenes     8      NA    NA     3   NA    NA
## 5145    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5146    Suc. Belenes    NA       0    NA    NA   NA    NA
## 5147    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5148    Suc. Belenes    NA      NA    NA    NA   NA     2
## 5149    Suc. Belenes     3      NA     8     8    3     6
## 5150    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5151    Suc. Belenes    NA      NA     0    NA    0    NA
## 5152    Suc. Belenes     2       2    NA    NA    3     1
## 5153    Suc. Belenes     1       4     3     3    3     5
## 5154    Suc. Belenes    NA       0    NA    NA   NA    NA
## 5155    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5156    Suc. Belenes     4       4     1     3    6     3
## 5157    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5158    Suc. Belenes    NA      11     2     6    8     8
## 5159    Suc. Belenes    NA      10     3     6   10     6
## 5160    Suc. Belenes     3       3     3     3    3     3
## 5161    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5162    Suc. Belenes    NA       0     0    NA    0     0
## 5163    Suc. Belenes    NA       1    NA    NA   NA     1
## 5164    Suc. Belenes     4       3     1     3    4     4
## 5165    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5166    Suc. Belenes    NA       3     3     4    3     4
## 5167    Suc. Belenes     2      NA    NA    NA   NA    NA
## 5168    Suc. Belenes    NA       2     1    NA   NA    NA
## 5169    Suc. Belenes     3       3     3     8    8    NA
## 5170    Suc. Belenes     1       1     1     1    1     1
## 5171    Suc. Belenes    NA       0    NA    NA   NA    NA
## 5172    Suc. Belenes    NA      NA    NA     1    1    NA
## 5173    Suc. Belenes    NA       2    NA    NA   NA    NA
## 5174    Suc. Belenes    NA      NA     2    NA    2     4
## 5175    Suc. Belenes    NA       6    NA     2   NA     2
## 5176    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5177    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5178    Suc. Belenes    11      37    26    34   32    24
## 5179    Suc. Belenes    NA      NA    NA    NA   NA    16
## 5180    Suc. Belenes    10       3     3    13   13    19
## 5181    Suc. Belenes    NA       3     2     2    3     3
## 5182    Suc. Belenes     2      NA    NA    NA   NA    NA
## 5183    Suc. Belenes    NA       6    NA    NA   NA    NA
## 5184    Suc. Belenes    NA      NA    NA     3   NA     6
## 5185    Suc. Belenes     7      18     4    14    4    11
## 5186    Suc. Belenes    35      74    99    28   70   120
## 5187    Suc. Belenes    NA       2     2     4   NA     2
## 5188    Suc. Belenes     4      13     2     2    4     6
## 5189    Suc. Belenes    15      40    57    25   40    74
## 5190    Suc. Belenes    NA      NA     1     1    1     2
## 5191    Suc. Belenes    NA       2     3    NA    3    NA
## 5192    Suc. Belenes     2       2    NA     2    2     2
## 5193    Suc. Belenes    NA      NA     1    NA    1    NA
## 5194    Suc. Belenes    NA       1     1    NA   NA    NA
## 5195    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5196    Suc. Belenes     1      NA     1     1   NA     1
## 5197    Suc. Belenes    NA      NA     0    NA   NA    NA
## 5198    Suc. Belenes     2       3     2     2    1     4
## 5199    Suc. Belenes     0      NA    NA    NA   NA    NA
## 5200    Suc. Belenes    NA      NA     0    NA   NA    NA
## 5201    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5202    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5203    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5204    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5205    Suc. Belenes    NA       4     1     1    1     6
## 5206    Suc. Belenes    NA      NA    NA    NA   NA     1
## 5207    Suc. Belenes    NA       0     0    NA    0     0
## 5208    Suc. Belenes     0      NA    NA    NA    1     0
## 5209    Suc. Belenes     2      NA     2     2    3     3
## 5210    Suc. Belenes    NA      NA    NA     1   NA    NA
## 5211    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5212    Suc. Belenes    NA      NA    NA     0    0    NA
## 5213    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5214    Suc. Belenes    NA       4     1     1    1     3
## 5215    Suc. Belenes    NA      NA    NA    NA   NA     1
## 5216    Suc. Belenes    NA       0     0    NA    0     0
## 5217    Suc. Belenes    NA      NA    NA    NA    1     0
## 5218    Suc. Belenes    NA      NA    NA     2    1     1
## 5219    Suc. Belenes     5      NA    NA     1   NA    NA
## 5220    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5221    Suc. Belenes    NA      NA    NA     0    0    NA
## 5222    Suc. Belenes    NA       1     1     1    1    NA
## 5223    Suc. Belenes    NA      NA    NA    NA   NA     1
## 5224    Suc. Belenes    NA       0     0    NA    0     0
## 5225    Suc. Belenes    NA      NA    NA    NA    1     0
## 5226    Suc. Belenes    NA      NA    NA    NA    1     1
## 5227    Suc. Belenes     5      NA    NA    NA   NA    NA
## 5228    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5229    Suc. Belenes    NA      NA    NA    NA   NA     1
## 5230    Suc. Belenes    NA       3    NA    NA    3     3
## 5231    Suc. Belenes     2       2    NA     2    2    NA
## 5232    Suc. Belenes    NA      NA    NA     1   NA    NA
## 5233    Suc. Belenes    NA      NA    NA     0    0    NA
## 5234    Suc. Belenes     2      NA    NA    NA   NA    NA
## 5235    Suc. Belenes    NA       1     9     1    1     3
## 5236    Suc. Belenes    NA      NA    NA    NA   NA     4
## 5237    Suc. Belenes    NA       0     0    NA    0     0
## 5238    Suc. Belenes    NA      NA    NA    NA    1     0
## 5239    Suc. Belenes    NA       4     2     2    5     3
## 5240    Suc. Belenes    NA      NA    NA     1   NA     1
## 5241    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5242    Suc. Belenes    NA      NA    NA     0    0    NA
## 5243    Suc. Belenes     4       5     6     5    8    11
## 5244    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5245    Suc. Belenes     3       3     3     3    1     3
## 5246    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5247    Suc. Belenes    13      34     2    NA   NA     2
## 5248    Suc. Belenes    13       6     3    NA   10    10
## 5249    Suc. Belenes     4       4    NA    NA    4     7
## 5250    Suc. Belenes     8       8    NA    NA    3     5
## 5251    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5252    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5253    Suc. Belenes     1       1     0     1   NA     1
## 5254    Suc. Belenes    NA      NA     2    NA    1    NA
## 5255    Suc. Belenes    NA       1    NA     1   NA    NA
## 5256    Suc. Belenes    NA       2     2     1   NA    NA
## 5257    Suc. Belenes    NA      NA    11    NA   NA    NA
## 5258    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5259    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5260    Suc. Belenes    NA      NA    NA    NA   NA     1
## 5261    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5262    Suc. Belenes     2       6    NA     2   NA     2
## 5263    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5264    Suc. Belenes     6       2    NA    NA    2     2
## 5265    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5266    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5267    Suc. Belenes    NA      NA    NA    NA   NA     2
## 5268    Suc. Belenes    18      13    13    13   13    13
## 5269    Suc. Belenes    NA      NA    NA    NA   NA     3
## 5270    Suc. Belenes    54      70    29    41  190    48
## 5271    Suc. Belenes    12      17     9    11    9    14
## 5272    Suc. Belenes    NA      11    NA    NA   NA    NA
## 5273    Suc. Belenes    18      18    18    14   11    18
## 5274    Suc. Belenes    77     218    11    67  310   532
## 5275    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5276    Suc. Belenes    17      17    19    13   15    17
## 5277    Suc. Belenes    57      99    36    53   85    66
## 5278    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5279    Suc. Belenes     7       4     1     2    4     7
## 5280    Suc. Belenes     5       6     2     5    5     8
## 5281    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5282    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5283    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5284    Suc. Belenes     1       1    NA     1   NA    NA
## 5285    Suc. Belenes    NA      NA    NA     1   NA    NA
## 5286    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5287    Suc. Belenes     0       0    NA     0   NA    NA
## 5288    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5289    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5290    Suc. Belenes    NA      NA    NA    NA   NA     2
## 5291    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5292    Suc. Belenes    NA       0    NA     0   NA    NA
## 5293    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5294    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5295    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5296    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5297    Suc. Belenes     5       6    NA     6    6    NA
## 5298    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5299    Suc. Belenes     1       1     0     1   NA     1
## 5300    Suc. Belenes     0      NA    NA    NA    1    NA
## 5301    Suc. Belenes     1       1    NA    NA    1     1
## 5302    Suc. Belenes     4      NA     2     2    3     3
## 5303    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5304    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5305    Suc. Belenes     5       4    NA     3   14    NA
## 5306    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5307    Suc. Belenes     1       1     0     0   NA     0
## 5308    Suc. Belenes    NA      NA    NA    NA    1    NA
## 5309    Suc. Belenes     1       1    NA    NA    1     1
## 5310    Suc. Belenes     2       1     3     3    1     3
## 5311    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5312    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5313    Suc. Belenes     2       1    NA    NA    3    NA
## 5314    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5315    Suc. Belenes     1       1     0     1   NA     1
## 5316    Suc. Belenes     1       1    NA    NA    1     1
## 5317    Suc. Belenes     1       1     3     3    2     1
## 5318    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5319    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5320    Suc. Belenes     3       3     3    NA   11    NA
## 5321    Suc. Belenes    NA      NA    NA    NA    4    NA
## 5322    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5323    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5324    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5325    Suc. Belenes     8       9     8     8    6    NA
## 5326    Suc. Belenes    NA      NA    NA    NA    7    NA
## 5327    Suc. Belenes     1       1     0     1   NA     1
## 5328    Suc. Belenes    NA       0    NA    NA    1    NA
## 5329    Suc. Belenes     1       1    NA     4    5     3
## 5330    Suc. Belenes     8       4     3     4    5     3
## 5331    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5332    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5333    Suc. Belenes    NA      NA    NA    NA    4    NA
## 5334    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5335    Suc. Belenes    NA      NA     1     1   NA    NA
## 5336    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5337    Suc. Belenes    15      68     2     4   34    27
## 5338    Suc. Belenes    19      86     3     3   48    38
## 5339    Suc. Belenes    NA      NA     0    NA   NA    NA
## 5340    Suc. Belenes     4      NA    NA    NA    4    NA
## 5341    Suc. Belenes    13      18    NA    13   20    NA
## 5342    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5343    Suc. Belenes    NA      NA     1    NA    1     1
## 5344    Suc. Belenes    NA      NA    NA    NA    1     1
## 5345    Suc. Belenes     2       2     1     2    2     3
## 5346    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5347    Suc. Belenes     4       7     4     3    4     4
## 5348    Suc. Belenes    NA      NA    NA    NA   NA     1
## 5349    Suc. Belenes    NA       2     3     3    6     4
## 5350    Suc. Belenes     4      NA    NA    NA   NA    NA
## 5351    Suc. Belenes    NA       2     1     3    2     2
## 5352    Suc. Belenes    14       8     8    14   14    14
## 5353    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5354    Suc. Belenes    NA      NA     0    NA   NA    NA
## 5355    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5356    Suc. Belenes    NA       2    NA    NA   NA    NA
## 5357    Suc. Belenes     4       4     2     2    2    NA
## 5358    Suc. Belenes    13      13    13    13    6    11
## 5359    Suc. Belenes    NA      NA    NA    NA    2    NA
## 5360    Suc. Belenes    25       8    20     8   25     8
## 5361    Suc. Belenes    14       8    17     6   23    17
## 5362    Suc. Belenes    NA       4     7    NA   14    NA
## 5363    Suc. Belenes     2      NA    NA    NA   NA    NA
## 5364    Suc. Belenes    11      11     8     4   11     8
## 5365    Suc. Belenes     1       2     1     1    1     2
## 5366    Suc. Belenes     2       2     3    NA    2     3
## 5367    Suc. Belenes    NA      NA    NA    NA   NA     1
## 5368    Suc. Belenes     4       2     2    NA    4     4
## 5369    Suc. Belenes     3      NA    NA     3   NA    NA
## 5370    Suc. Belenes    NA      NA     2    NA    4    NA
## 5371    Suc. Belenes    57      51    53    46   42    51
## 5372    Suc. Belenes    32      32    29    18   32    11
## 5373    Suc. Belenes    29      29    29    19   25    38
## 5374    Suc. Belenes    25      19    29    19   32    32
## 5375    Suc. Belenes    NA      NA    NA     2   NA    NA
## 5376    Suc. Belenes     9      18     9     8    8    11
## 5377    Suc. Belenes     3       2    NA     2   NA     3
## 5378    Suc. Belenes    31      34    42    31   51    34
## 5379    Suc. Belenes     6       6    11     6   17    11
## 5380    Suc. Belenes    81      95    88    70   95    70
## 5381    Suc. Belenes   222     194   229   173  229   194
## 5382    Suc. Belenes     3      NA     3     3    2     2
## 5383    Suc. Belenes     2       4     2     4   NA     4
## 5384    Suc. Belenes    40      36    42    25   38    30
## 5385    Suc. Belenes    87      80    76    70  104    97
## 5386    Suc. Belenes     4       3     3     2    4     4
## 5387    Suc. Belenes     6       5    11    NA    5     3
## 5388    Suc. Belenes     2       2     6    NA    6     4
## 5389    Suc. Belenes     4       3     3     1    4     3
## 5390    Suc. Belenes    NA       1     1    NA   NA    NA
## 5391    Suc. Belenes     1       1     1     1    1     1
## 5392    Suc. Belenes     1      NA    NA    NA   NA    NA
## 5393    Suc. Belenes    NA       1     1     1    1     1
## 5394    Suc. Belenes     2       1     1     1    1     1
## 5395    Suc. Belenes     4       1     1     3    2     2
## 5396    Suc. Belenes     1       2     2     1    1     3
## 5397    Suc. Belenes     3       3     4     6    2     4
## 5398    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5399    Suc. Belenes     4       2    NA    NA    2    NA
## 5400    Suc. Belenes     0       1     0     0    0     0
## 5401    Suc. Belenes    NA      NA    NA    NA    2    NA
## 5402    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5403    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5404    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5405    Suc. Belenes     4       0     1     1    1     0
## 5406    Suc. Belenes    NA      NA    NA    NA    3    NA
## 5407    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5408    Suc. Belenes     4      NA     2    NA   11    NA
## 5409    Suc. Belenes     2       1     4     2    3     2
## 5410    Suc. Belenes    NA      NA    NA    NA   NA     3
## 5411    Suc. Belenes    NA      NA     3    NA    3     3
## 5412    Suc. Belenes     1       4     4    NA    7     4
## 5413    Suc. Belenes     0       1     0     1    1     1
## 5414    Suc. Belenes     0       2     0     1    1     0
## 5415    Suc. Belenes     1       3     1     2    4     5
## 5416    Suc. Belenes     1       2    NA    NA    1     1
## 5417    Suc. Belenes    NA       0     1     0   NA    NA
## 5418    Suc. Belenes    NA      NA    NA    NA    8     2
## 5419    Suc. Belenes     2       1     4     2    3     2
## 5420    Suc. Belenes    NA      NA    NA    NA   NA     3
## 5421    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5422    Suc. Belenes     1      NA    NA    NA   NA    NA
## 5423    Suc. Belenes     0       1     0     0    0     1
## 5424    Suc. Belenes     0       1    NA     0    1    NA
## 5425    Suc. Belenes     1       3     1     2    2     3
## 5426    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5427    Suc. Belenes    NA       0     1     0   NA    NA
## 5428    Suc. Belenes     2      NA     4     2   NA     2
## 5429    Suc. Belenes     2       4     4     2    3     2
## 5430    Suc. Belenes    NA      NA    NA    NA    3     3
## 5431    Suc. Belenes     1       4     4    NA    4     4
## 5432    Suc. Belenes     0       1     0     1    1     1
## 5433    Suc. Belenes    NA       1    NA     0   NA    NA
## 5434    Suc. Belenes     3       1     1     2    2     5
## 5435    Suc. Belenes    NA       1    NA    NA    1    NA
## 5436    Suc. Belenes    NA       2    NA    NA   NA    NA
## 5437    Suc. Belenes    NA      NA    NA    NA   NA     3
## 5438    Suc. Belenes    NA       6    NA     3    3     3
## 5439    Suc. Belenes     7       4     4    11    4     4
## 5440    Suc. Belenes     0       0    NA    NA    1    NA
## 5441    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5442    Suc. Belenes     1      NA    NA    NA   NA    NA
## 5443    Suc. Belenes    NA       0     1     0   NA    NA
## 5444    Suc. Belenes     2      NA     2     2    4     4
## 5445    Suc. Belenes     2       4     4     2    3     2
## 5446    Suc. Belenes    NA      NA    NA    NA   NA     3
## 5447    Suc. Belenes    NA      NA    NA     2   NA    NA
## 5448    Suc. Belenes     3      NA     6    NA    8     8
## 5449    Suc. Belenes    11       7     7     7   11     4
## 5450    Suc. Belenes     2       1     2     1    1     2
## 5451    Suc. Belenes     0       2    NA     1    1     1
## 5452    Suc. Belenes     1       1     3     2    2     3
## 5453    Suc. Belenes     1       3    NA     1    1    NA
## 5454    Suc. Belenes    NA       0     1     0   NA    NA
## 5455    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5456    Suc. Belenes     3       4     9     3    8     3
## 5457    Suc. Belenes    NA      NA    NA     3   NA    NA
## 5458    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5459    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5460    Suc. Belenes     2      15     6     6    4     8
## 5461    Suc. Belenes     3      10     6    13    3    25
## 5462    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5463    Suc. Belenes    NA       3     3    NA    3     3
## 5464    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5465    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5466    Suc. Belenes    NA      11    NA    NA   NA    NA
## 5467    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5468    Suc. Belenes     2       3     2     2    1     2
## 5469    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5470    Suc. Belenes     1      NA     1     1    1     1
## 5471    Suc. Belenes    NA       2     1     1    1     1
## 5472    Suc. Belenes    NA       8    NA     3   NA    NA
## 5473    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5474    Suc. Belenes    NA      NA     2    NA   NA     2
## 5475    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5476    Suc. Belenes    NA      NA    NA     2   NA    NA
## 5477    Suc. Belenes     2       2     2     2    2     2
## 5478    Suc. Belenes    NA      NA    NA    NA    1    NA
## 5479    Suc. Belenes     2      NA    NA    NA   NA    NA
## 5480    Suc. Belenes    NA      NA    NA    NA   NA     6
## 5481    Suc. Belenes    24      21    34    32   26    24
## 5482    Suc. Belenes    NA      NA    NA    NA   NA     3
## 5483    Suc. Belenes    76      38    89   162   16   114
## 5484    Suc. Belenes     9       8    12    11    5     8
## 5485    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5486    Suc. Belenes    NA      18     7    21   14    14
## 5487    Suc. Belenes   208     166   183   208  180   201
## 5488    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5489    Suc. Belenes    13       2    15     8   11    17
## 5490    Suc. Belenes    85      80   120   161   44   120
## 5491    Suc. Belenes     1       2     1     2    2     3
## 5492    Suc. Belenes    NA      NA     2     3    3     2
## 5493    Suc. Belenes    NA       1     2     2    2     2
## 5494    Suc. Belenes     1       1     1     1    2     1
## 5495    Suc. Belenes    NA      NA    NA     1   NA    NA
## 5496    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5497    Suc. Belenes     2       0     0     0    0     0
## 5498    Suc. Belenes     3       1    NA    NA    1    NA
## 5499    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5500    Suc. Belenes     0      NA    NA    NA   NA     0
## 5501    Suc. Belenes     0       0     0     0    0     0
## 5502    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5503    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5504    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5505    Suc. Belenes    NA      NA    NA    NA   NA     2
## 5506    Suc. Belenes     3       6    NA     6    3     6
## 5507    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5508    Suc. Belenes     0       0     0     1    0     1
## 5509    Suc. Belenes     2       1     2     3    3     2
## 5510    Suc. Belenes    NA      NA     1     1   NA     1
## 5511    Suc. Belenes    NA      NA    NA     0    0     0
## 5512    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5513    Suc. Belenes    NA      NA    NA    NA   NA     2
## 5514    Suc. Belenes    NA       6    NA    NA   NA    NA
## 5515    Suc. Belenes    NA       4    NA     7    4     4
## 5516    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5517    Suc. Belenes     0       0     0     1    0     1
## 5518    Suc. Belenes     2       1     2     5    1     4
## 5519    Suc. Belenes    NA      NA     1     1   NA     1
## 5520    Suc. Belenes    NA      NA    NA     0    0     0
## 5521    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5522    Suc. Belenes    NA       6    NA    NA   NA    NA
## 5523    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5524    Suc. Belenes     0       0     0     1    1     1
## 5525    Suc. Belenes     2       1     2     3    1     2
## 5526    Suc. Belenes    NA       3     1     1   NA     1
## 5527    Suc. Belenes    NA      NA    NA    NA   NA     2
## 5528    Suc. Belenes    NA      NA     3    NA    6    NA
## 5529    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5530    Suc. Belenes    NA      NA    NA     0    0     0
## 5531    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5532    Suc. Belenes    NA      NA    NA    NA   NA     2
## 5533    Suc. Belenes     3       6     3    NA   NA     3
## 5534    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5535    Suc. Belenes     1       1     0     1    0     1
## 5536    Suc. Belenes     2       1     2     7    1     2
## 5537    Suc. Belenes    NA      NA     1     1   NA     1
## 5538    Suc. Belenes    NA      NA    NA     0    0     0
## 5539    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5540    Suc. Belenes     1       1     1     1    2     3
## 5541    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5542    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5543    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5544    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5545    Suc. Belenes    11      13     8     2    4     8
## 5546    Suc. Belenes    13      13    13     3    6    13
## 5547    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5548    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5549    Suc. Belenes     5       8     5     3   NA     5
## 5550    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5551    Suc. Belenes     1       1     1    NA   NA     1
## 5552    Suc. Belenes     1       3     1    NA    1     1
## 5553    Suc. Belenes     3       3     3     1    2     3
## 5554    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5555    Suc. Belenes     4       2     2    NA    1    NA
## 5556    Suc. Belenes    NA      NA    NA     2   NA     2
## 5557    Suc. Belenes     2       2    NA     2    1     1
## 5558    Suc. Belenes     3       6     8     3    6    17
## 5559    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5560    Suc. Belenes    NA       0    NA    NA   NA    NA
## 5561    Suc. Belenes    NA      NA    NA     1   NA    NA
## 5562    Suc. Belenes    NA      NA    NA    NA    1     1
## 5563    Suc. Belenes     1       1    NA    NA   NA    NA
## 5564    Suc. Belenes     6       2     6    NA   NA     4
## 5565    Suc. Belenes    13      13    17    19   19    19
## 5566    Suc. Belenes     3       2     2     3    3     2
## 5567    Suc. Belenes    28      31    37    37   37    42
## 5568    Suc. Belenes     6      17    20    28   17    14
## 5569    Suc. Belenes    NA      NA    NA    NA    4    NA
## 5570    Suc. Belenes     5       3     2     3    5     2
## 5571    Suc. Belenes    13       8    11    21   15     6
## 5572    Suc. Belenes     1       4     7     4    6     5
## 5573    Suc. Belenes     3       2     3     3    3    NA
## 5574    Suc. Belenes     6       6     4     6    4     4
## 5575    Suc. Belenes    NA      NA     6    NA   NA    NA
## 5576    Suc. Belenes     4       4     4     6    2     4
## 5577    Suc. Belenes    NA      NA     1     1   NA    NA
## 5578    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5579    Suc. Belenes    37      58    74    69   61    18
## 5580    Suc. Belenes    NA      NA    NA    NA   NA    79
## 5581    Suc. Belenes    22      16    35    10   16    13
## 5582    Suc. Belenes     9      14     9    14   12    11
## 5583    Suc. Belenes     3       2     2     2    2     3
## 5584    Suc. Belenes    37      62    73    NA   99    37
## 5585    Suc. Belenes    14      14    17    37   54     6
## 5586    Suc. Belenes    21      49   120    42   63   109
## 5587    Suc. Belenes    60      77   106    42   42   113
## 5588    Suc. Belenes    NA       2    NA    NA   NA    NA
## 5589    Suc. Belenes    38      36    66    11   44    30
## 5590    Suc. Belenes   110      99   169   216    2   104
## 5591    Suc. Belenes     5       5    21    NA    8     9
## 5592    Suc. Belenes     6       3     5     6    8     9
## 5593    Suc. Belenes     6       4     6     4    4     8
## 5594    Suc. Belenes     3       3     2     3    6     2
## 5595    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5596    Suc. Belenes     1      NA    NA     1    1     1
## 5597    Suc. Belenes     1       1     1     1   NA    NA
## 5598    Suc. Belenes     4      NA    NA     4   NA    NA
## 5599    Suc. Belenes    NA       1     1    NA    1     1
## 5600    Suc. Belenes     1      NA    NA    NA   NA    NA
## 5601    Suc. Belenes     3       1     2     1    0     1
## 5602    Suc. Belenes    NA       0    NA    NA   NA    NA
## 5603    Suc. Belenes     6       5     7     2    6     2
## 5604    Suc. Belenes     2       2     2     4    2     2
## 5605    Suc. Belenes     0       1     1     1    0     1
## 5606    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5607    Suc. Belenes     0       0    NA    NA    0     0
## 5608    Suc. Belenes     1      NA     1     2    2     1
## 5609    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5610    Suc. Belenes    NA       6    11     6    3     3
## 5611    Suc. Belenes     1       1     1     1   NA     1
## 5612    Suc. Belenes     0      NA    NA    NA    3    NA
## 5613    Suc. Belenes    NA       1     4     2    5     3
## 5614    Suc. Belenes     3       4     3     3    1     1
## 5615    Suc. Belenes    NA       0     0     0   NA    NA
## 5616    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5617    Suc. Belenes    NA      NA     3    NA   NA    NA
## 5618    Suc. Belenes     0       0     0    NA   NA     0
## 5619    Suc. Belenes    NA      NA    NA    NA    1    NA
## 5620    Suc. Belenes    NA       1    NA    NA    1     1
## 5621    Suc. Belenes    NA       0     0     0   NA    NA
## 5622    Suc. Belenes    NA      NA    NA     3   NA    NA
## 5623    Suc. Belenes     1       1     1    NA   NA     1
## 5624    Suc. Belenes    NA      NA    NA    NA    3    NA
## 5625    Suc. Belenes    NA       1    NA    NA    1     1
## 5626    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5627    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5628    Suc. Belenes    NA       3    14     8    6     6
## 5629    Suc. Belenes    NA       0    NA    NA   NA    NA
## 5630    Suc. Belenes     2       2     2     6    8     4
## 5631    Suc. Belenes     1       3     5     4    1     4
## 5632    Suc. Belenes    NA       0     0     0   NA    NA
## 5633    Suc. Belenes     3       3    14    11    6     6
## 5634    Suc. Belenes     1       1     1    NA   NA     1
## 5635    Suc. Belenes    NA      NA     0    NA    3     0
## 5636    Suc. Belenes    NA       5     4    NA    9     5
## 5637    Suc. Belenes     4       5     2     1    1     3
## 5638    Suc. Belenes    NA       0     0     0   NA    NA
## 5639    Suc. Belenes    NA      NA    NA    NA    1    NA
## 5640    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5641    Suc. Belenes     1       6     5    NA    6    NA
## 5642    Suc. Belenes    NA      NA    NA    NA   NA     2
## 5643    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5644    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5645    Suc. Belenes     4       4     2     2    2     2
## 5646    Suc. Belenes     3       6     3     3    3     3
## 5647    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5648    Suc. Belenes     4      NA    NA    NA   NA    NA
## 5649    Suc. Belenes    NA       3    NA    NA   NA    NA
## 5650    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5651    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5652    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5653    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5654    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5655    Suc. Belenes     2      NA     1     6    7     3
## 5656    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5657    Suc. Belenes     2       2    NA     4    6     1
## 5658    Suc. Belenes    NA      NA     2    NA   NA    NA
## 5659    Suc. Belenes     3       1     2     1    1     1
## 5660    Suc. Belenes     8       6     8     6    8    NA
## 5661    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5662    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5663    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5664    Suc. Belenes     8       8     2     6    4     8
## 5665    Suc. Belenes    NA      NA    NA     5    2    NA
## 5666    Suc. Belenes    14      11     6     8    8    11
## 5667    Suc. Belenes    13       8    11    15    6    11
## 5668    Suc. Belenes    NA       2     2     2    2     2
## 5669    Suc. Belenes     4       6     2     4    8    11
## 5670    Suc. Belenes    NA       4     2     4    6     2
## 5671    Suc. Belenes    NA      NA    NA    NA   NA    11
## 5672    Suc. Belenes    85      63    66    79   71    74
## 5673    Suc. Belenes    NA      NA    NA    NA   NA    13
## 5674    Suc. Belenes    76      32    79    79   38    60
## 5675    Suc. Belenes     5       2     5    12   11    14
## 5676    Suc. Belenes    11      25    23    23   23    28
## 5677    Suc. Belenes   155     180   173   162  236   247
## 5678    Suc. Belenes   148     159   169   204  144   204
## 5679    Suc. Belenes    25      55    38    57   66    82
## 5680    Suc. Belenes    82     118   139   319  239   251
## 5681    Suc. Belenes     5       5     4     8    7     7
## 5682    Suc. Belenes     3       5     8     8    8    12
## 5683    Suc. Belenes     4       8     2     6    6     6
## 5684    Suc. Belenes     9       8    10     7    9    11
## 5685    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5686    Suc. Belenes     1       1     2     1    1     1
## 5687    Suc. Belenes    NA      NA    NA     1   NA    NA
## 5688    Suc. Belenes     1      NA    NA    NA   NA    NA
## 5689    Suc. Belenes    NA       2    NA    NA   NA    NA
## 5690    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5691    Suc. Belenes     1       0     0     0    0     0
## 5692    Suc. Belenes    NA      NA    NA    NA    2    NA
## 5693    Suc. Belenes     5       7    16     7   11    NA
## 5694    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5695    Suc. Belenes     4      NA     2    NA    4     2
## 5696    Suc. Belenes    NA       0     1    NA    1    NA
## 5697    Suc. Belenes     1      NA    NA    NA   NA    NA
## 5698    Suc. Belenes     0       0     0     0    0     0
## 5699    Suc. Belenes     2      NA     1     3    1     1
## 5700    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5701    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5702    Suc. Belenes    NA       3    NA     3    8     3
## 5703    Suc. Belenes     0      NA    NA    NA   12     0
## 5704    Suc. Belenes    NA       2    NA    10   15     3
## 5705    Suc. Belenes    13      NA     3     3   18     4
## 5706    Suc. Belenes    NA       1     1     1    1     1
## 5707    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5708    Suc. Belenes     3      NA    NA    NA    8    NA
## 5709    Suc. Belenes    NA       0    NA    NA    0    NA
## 5710    Suc. Belenes     2      NA    NA    10   19     1
## 5711    Suc. Belenes     3      NA     1     4   14     4
## 5712    Suc. Belenes    NA       1     1     1    1     1
## 5713    Suc. Belenes    NA      NA    NA    NA    6    NA
## 5714    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5715    Suc. Belenes    NA      NA    NA    NA    8    NA
## 5716    Suc. Belenes     4       4    NA    NA   NA    NA
## 5717    Suc. Belenes    NA      NA    NA    NA   12    NA
## 5718    Suc. Belenes    NA      NA    NA    10   17     3
## 5719    Suc. Belenes     3      NA     3     1   11     4
## 5720    Suc. Belenes     1       3    NA    NA    1    NA
## 5721    Suc. Belenes    NA       3    NA     6   NA    NA
## 5722    Suc. Belenes    NA      NA    NA    NA    3    NA
## 5723    Suc. Belenes    NA      NA     2    NA   13     2
## 5724    Suc. Belenes     4       3     3     3    3     3
## 5725    Suc. Belenes    NA       1     1     1    1     1
## 5726    Suc. Belenes    NA      NA    NA    NA    6    NA
## 5727    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5728    Suc. Belenes    NA       3     3     3    8    NA
## 5729    Suc. Belenes     4       7    NA    NA   NA    NA
## 5730    Suc. Belenes    NA      NA     0     0   24    NA
## 5731    Suc. Belenes    NA      NA    NA    10   11     1
## 5732    Suc. Belenes    15      10     5     4   37     4
## 5733    Suc. Belenes    NA       1     1     1    1     1
## 5734    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5735    Suc. Belenes    NA       8    NA     2    5     6
## 5736    Suc. Belenes    NA      NA     2    NA   NA     1
## 5737    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5738    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5739    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5740    Suc. Belenes     2      59    NA    NA   NA    NA
## 5741    Suc. Belenes     3      NA    NA    NA   NA    NA
## 5742    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5743    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5744    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5745    Suc. Belenes    NA       0    NA    NA   NA    NA
## 5746    Suc. Belenes     1      NA    NA    NA   NA    NA
## 5747    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5748    Suc. Belenes    NA      NA    NA    NA    0    NA
## 5749    Suc. Belenes     2      NA    NA     4   NA    NA
## 5750    Suc. Belenes    NA       2    NA     2   NA    NA
## 5751    Suc. Belenes    NA       6    NA    NA   NA    NA
## 5752    Suc. Belenes     2       4     2     6    4     2
## 5753    Suc. Belenes    NA      NA     2    NA   NA     1
## 5754    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5755    Suc. Belenes    NA      NA    NA    NA   NA     1
## 5756    Suc. Belenes     2       2    NA     2    4    NA
## 5757    Suc. Belenes     6       6     4     8   NA     2
## 5758    Suc. Belenes    NA       5     8     5   NA     3
## 5759    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5760    Suc. Belenes    82     146   403   269  314   913
## 5761    Suc. Belenes     9      30     2    26   17    20
## 5762    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5763    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5764    Suc. Belenes    NA       6    NA    NA   NA    NA
## 5765    Suc. Belenes    NA      21    11    14   77    35
## 5766    Suc. Belenes   176     384   613   574  659    NA
## 5767    Suc. Belenes     4       4     4     6   NA    NA
## 5768    Suc. Belenes    11       8    11    34   42    27
## 5769    Suc. Belenes   178     182   414   321  454   924
## 5770    Suc. Belenes     4       3     2     4   NA     1
## 5771    Suc. Belenes    NA       2     2     2   NA    NA
## 5772    Suc. Belenes    NA      NA     2     2   NA    NA
## 5773    Suc. Belenes     1      NA     2     2   NA     1
## 5774    Suc. Belenes     1      NA    NA    NA   NA    NA
## 5775    Suc. Belenes    NA      NA    NA     4   NA    NA
## 5776    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5777    Suc. Belenes     0       0    NA    NA   NA    NA
## 5778    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5779    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5780    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5781    Suc. Belenes     0       0    NA    NA    0    NA
## 5782    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5783    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5784    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5785    Suc. Belenes    NA      NA     8     6   NA    14
## 5786    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5787    Suc. Belenes    NA      NA    NA    NA    0    NA
## 5788    Suc. Belenes    NA       2     2    NA   NA     4
## 5789    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5790    Suc. Belenes    NA      NA     1    NA   NA     0
## 5791    Suc. Belenes    NA      NA    NA    NA   NA     3
## 5792    Suc. Belenes    NA       3    NA    NA   NA     3
## 5793    Suc. Belenes    NA      18    NA    NA   NA    NA
## 5794    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5795    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5796    Suc. Belenes    NA      NA    NA    NA   NA     4
## 5797    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5798    Suc. Belenes    NA      NA     1    NA   NA     0
## 5799    Suc. Belenes     3      NA    NA    NA   NA    NA
## 5800    Suc. Belenes    NA      18    NA    NA   NA    NA
## 5801    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5802    Suc. Belenes    NA       0    NA    NA   NA    NA
## 5803    Suc. Belenes    NA      NA    NA    NA   NA     4
## 5804    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5805    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5806    Suc. Belenes    NA      NA    NA    NA   NA    10
## 5807    Suc. Belenes    NA      NA    NA     3   NA     8
## 5808    Suc. Belenes    NA       2     4    NA   NA    NA
## 5809    Suc. Belenes    NA      NA     1    NA   NA     0
## 5810    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5811    Suc. Belenes    NA       3     6     6   NA    NA
## 5812    Suc. Belenes    NA      18    NA    NA   NA    NA
## 5813    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5814    Suc. Belenes     0      NA    NA    NA    0    NA
## 5815    Suc. Belenes     2       2     4    NA   NA     4
## 5816    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5817    Suc. Belenes    NA      NA     1    NA   NA     0
## 5818    Suc. Belenes    NA      NA    NA     1   NA    NA
## 5819    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5820    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5821    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5822    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5823    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5824    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5825    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5826    Suc. Belenes     4      19     4     4    2     2
## 5827    Suc. Belenes     6       6    10     6    6     3
## 5828    Suc. Belenes    NA       3    NA     3    3     3
## 5829    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5830    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5831    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5832    Suc. Belenes     3       1    NA    NA    5     3
## 5833    Suc. Belenes     2      NA    NA    NA    3    NA
## 5834    Suc. Belenes    NA      NA    NA    NA    3    NA
## 5835    Suc. Belenes    NA       0     0    NA   NA    NA
## 5836    Suc. Belenes     1      NA     1     2    1     2
## 5837    Suc. Belenes     4       7     1     5    5     7
## 5838    Suc. Belenes    NA       0    NA     0    1     0
## 5839    Suc. Belenes    NA       2     1     3    3     4
## 5840    Suc. Belenes     2      NA    NA    NA   NA    NA
## 5841    Suc. Belenes     0      NA    NA    NA   NA    NA
## 5842    Suc. Belenes     2       1     2     1    2     1
## 5843    Suc. Belenes     3      NA     6     8   11     8
## 5844    Suc. Belenes     0       0     0     0    0    NA
## 5845    Suc. Belenes     1       1     1     1    1    NA
## 5846    Suc. Belenes     1      NA     2     1    1     3
## 5847    Suc. Belenes    NA       2    NA    NA   NA    NA
## 5848    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5849    Suc. Belenes    NA       2     2     4    2    NA
## 5850    Suc. Belenes     2      NA     1    NA   NA    NA
## 5851    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5852    Suc. Belenes    11      11     8    11   13    11
## 5853    Suc. Belenes     3       3     6     6    8    11
## 5854    Suc. Belenes     6       3     3     6    6     6
## 5855    Suc. Belenes    NA       2     2     2    3     2
## 5856    Suc. Belenes    15      11     8    17   15    13
## 5857    Suc. Belenes     2       2     3     3    2     2
## 5858    Suc. Belenes    NA       3     2     3    2     2
## 5859    Suc. Belenes    NA      NA     1     1    4    NA
## 5860    Suc. Belenes     8       4     6     4    6     4
## 5861    Suc. Belenes     2      NA    NA    NA   NA     2
## 5862    Suc. Belenes    NA      NA    NA     6    6     6
## 5863    Suc. Belenes    NA      NA     2    NA   NA    NA
## 5864    Suc. Belenes     2       2     2     4    2     2
## 5865    Suc. Belenes    NA       2     1    NA    2    NA
## 5866    Suc. Belenes    NA       2     2     3    2     2
## 5867    Suc. Belenes     1      NA     2     2    2    NA
## 5868    Suc. Belenes     2       2    NA     2    6    27
## 5869    Suc. Belenes    95      66   135    13   87    NA
## 5870    Suc. Belenes    NA      NA    NA    NA    6    38
## 5871    Suc. Belenes    54      44    67    51   41    44
## 5872    Suc. Belenes    12      18    32    11   14    33
## 5873    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5874    Suc. Belenes    23      31    48    11   48    34
## 5875    Suc. Belenes    31      31    28    45   39    31
## 5876    Suc. Belenes     4      35    56    18   67    42
## 5877    Suc. Belenes   225     194   257   321  391   461
## 5878    Suc. Belenes    NA      NA    NA    NA   NA     3
## 5879    Suc. Belenes     4       4     4     4    2     4
## 5880    Suc. Belenes    21      23    40    13   25    46
## 5881    Suc. Belenes    78      74    72   108   95   148
## 5882    Suc. Belenes     9       6     9     9    6     6
## 5883    Suc. Belenes     5       7     4     6    6     5
## 5884    Suc. Belenes     6       3     5     5    9     5
## 5885    Suc. Belenes     2       6     4     4    8     2
## 5886    Suc. Belenes     3       3     3     4    3     3
## 5887    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5888    Suc. Belenes     1       1     1     2    3     3
## 5889    Suc. Belenes     2      NA     1     1    2     2
## 5890    Suc. Belenes     1      NA     1     3    3     3
## 5891    Suc. Belenes     1      NA    NA    NA   NA    NA
## 5892    Suc. Belenes     4       0     1     1    1     1
## 5893    Suc. Belenes    NA      NA    NA    NA    0    NA
## 5894    Suc. Belenes    10       4     5     6    7     6
## 5895    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5896    Suc. Belenes     4       2     2     6    4    NA
## 5897    Suc. Belenes     0       1    NA     1    0     2
## 5898    Suc. Belenes     3       3     1     4    4     3
## 5899    Suc. Belenes     1       4     1     3    1     2
## 5900    Suc. Belenes     2       1     1     1    1     1
## 5901    Suc. Belenes     2      NA    NA     2    1    NA
## 5902    Suc. Belenes     1       1     1     2    2     1
## 5903    Suc. Belenes     2       1     1     1    1     2
## 5904    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5905    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5906    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5907    Suc. Belenes     5       3     5     5    3     5
## 5908    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5909    Suc. Belenes     1       3     4     6   NA     9
## 5910    Suc. Belenes     7       4    NA     1   11     4
## 5911    Suc. Belenes    NA       0     0    NA   NA    NA
## 5912    Suc. Belenes    NA      NA    NA    NA    1     1
## 5913    Suc. Belenes     1      NA     3     1    3     2
## 5914    Suc. Belenes     1       2     2     1    3     1
## 5915    Suc. Belenes    NA       0     1    NA    0    NA
## 5916    Suc. Belenes     2       2     3     2    5     2
## 5917    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5918    Suc. Belenes     1      NA     4     4   NA     6
## 5919    Suc. Belenes     4      NA    NA     1    4     4
## 5920    Suc. Belenes    NA       0     0    NA   NA    NA
## 5921    Suc. Belenes    NA      NA    NA    NA    1     1
## 5922    Suc. Belenes     1      NA     1     1    3     2
## 5923    Suc. Belenes     1      NA     1     1    3     1
## 5924    Suc. Belenes    NA       0     1    NA    0    NA
## 5925    Suc. Belenes     5       2     3     2    5     2
## 5926    Suc. Belenes     1      NA     1     1   NA     1
## 5927    Suc. Belenes     4      NA    NA     1    4    NA
## 5928    Suc. Belenes    NA       0     0    NA   NA    NA
## 5929    Suc. Belenes    NA      NA    NA    NA    1     1
## 5930    Suc. Belenes     1       2     1     1    3     2
## 5931    Suc. Belenes     1       1     1     1    1     1
## 5932    Suc. Belenes     1       2     1     1    1     3
## 5933    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5934    Suc. Belenes    NA      NA     8     8    3    14
## 5935    Suc. Belenes     4       4     4    NA   11     4
## 5936    Suc. Belenes    NA      NA     0    NA    0    NA
## 5937    Suc. Belenes     2      NA     2    NA   NA    NA
## 5938    Suc. Belenes     1      NA     3     1    3    NA
## 5939    Suc. Belenes    NA       0     1    NA    0    NA
## 5940    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5941    Suc. Belenes     5       2     5     8   10     5
## 5942    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5943    Suc. Belenes     1       8    12     9    3    15
## 5944    Suc. Belenes    11       7    NA     1   11     4
## 5945    Suc. Belenes    NA       0     0    NA   NA    NA
## 5946    Suc. Belenes     0       0    NA     0    3     1
## 5947    Suc. Belenes     1      NA     3     1    3     2
## 5948    Suc. Belenes     3       3     2     3    3     2
## 5949    Suc. Belenes    NA       0     1    NA    0    NA
## 5950    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5951    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5952    Suc. Belenes     3       7     2     3   10     6
## 5953    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5954    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5955    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5956    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5957    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5958    Suc. Belenes     2       8     2    NA    2    NA
## 5959    Suc. Belenes     3       6     3    NA    3     3
## 5960    Suc. Belenes    NA       5    NA    NA   NA    NA
## 5961    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5962    Suc. Belenes     1      NA     1    NA   NA    NA
## 5963    Suc. Belenes    NA      NA    NA     1   NA    NA
## 5964    Suc. Belenes     1      NA     2    NA   NA    NA
## 5965    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5966    Suc. Belenes    NA       1     1    NA    1     1
## 5967    Suc. Belenes    NA       2     1    NA    1     1
## 5968    Suc. Belenes     6       6     6     6    6     6
## 5969    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5970    Suc. Belenes    NA      NA    NA    NA   NA     1
## 5971    Suc. Belenes    NA      NA     1    NA    1    NA
## 5972    Suc. Belenes    NA      NA    NA    NA   NA     1
## 5973    Suc. Belenes    NA       6    NA    NA   NA    NA
## 5974    Suc. Belenes     6       4     2     4    4     2
## 5975    Suc. Belenes    23      23    27    25   25    32
## 5976    Suc. Belenes    NA      NA    NA    NA   NA     2
## 5977    Suc. Belenes    17      14    14    23   14    14
## 5978    Suc. Belenes    31      39    45    34   45    25
## 5979    Suc. Belenes    NA      NA    NA    NA   NA     4
## 5980    Suc. Belenes    21      15    21    21   25    21
## 5981    Suc. Belenes     4       4     3     3    2     2
## 5982    Suc. Belenes     3       2     3     2    2    NA
## 5983    Suc. Belenes     8      13    NA     6    8    11
## 5984    Suc. Belenes     8       3     8     8    6     3
## 5985    Suc. Belenes     2       2     2     6    4     4
## 5986    Suc. Belenes     1       1     3     1    1     1
## 5987    Suc. Belenes     0      NA    NA    NA   NA    NA
## 5988    Suc. Belenes    40      38    44    36   55    42
## 5989    Suc. Belenes    26      29    29    24   29    21
## 5990    Suc. Belenes    NA      NA    NA    NA   NA    13
## 5991    Suc. Belenes    54      44    67    51   51    44
## 5992    Suc. Belenes    17      15    12     9   14     9
## 5993    Suc. Belenes     2      NA    NA    NA   NA    NA
## 5994    Suc. Belenes    25      28    17    28   14    17
## 5995    Suc. Belenes     8       3    17    NA   NA     3
## 5996    Suc. Belenes   162     127   159   113  151   137
## 5997    Suc. Belenes   190     173   208   176  190   204
## 5998    Suc. Belenes     4       8    11    13   15     6
## 5999    Suc. Belenes    38      30    38    34   40    30
## 6000    Suc. Belenes    91      89   116    68   70    78
## 6001    Suc. Belenes     7       7    10     9    9     6
## 6002    Suc. Belenes     3       3     4     6    6     3
## 6003    Suc. Belenes     4       2     4     2    4     2
## 6004    Suc. Belenes    NA      NA     1    NA   NA     1
## 6005    Suc. Belenes    NA      NA     1     1    1    NA
## 6006    Suc. Belenes    NA       1    NA    NA   NA    NA
## 6007    Suc. Belenes     1       2    NA     3    1    NA
## 6008    Suc. Belenes    NA      NA    NA     1   NA    NA
## 6009    Suc. Belenes     1      NA     0     0   NA    NA
## 6010    Suc. Belenes     1       1     2     1    2     1
## 6011    Suc. Belenes     3       0     3     2    2     3
## 6012    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6013    Suc. Belenes    NA       2     4    NA    2     2
## 6014    Suc. Belenes     1       0     1     1    1     0
## 6015    Suc. Belenes    NA      NA     0    NA    0    NA
## 6016    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6017    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6018    Suc. Belenes     2       2     6     2   NA     4
## 6019    Suc. Belenes    NA      NA     3    NA   NA    NA
## 6020    Suc. Belenes     7       7     4    NA    1     3
## 6021    Suc. Belenes     0      NA     2    NA   NA    NA
## 6022    Suc. Belenes    NA       1    NA    NA   NA    NA
## 6023    Suc. Belenes     1      NA    NA    NA   NA    NA
## 6024    Suc. Belenes    NA      NA     0    NA   NA    NA
## 6025    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6026    Suc. Belenes    NA      NA     4    NA    1     3
## 6027    Suc. Belenes    NA      NA    NA    NA    0    NA
## 6028    Suc. Belenes    NA       1     2    NA   NA    NA
## 6029    Suc. Belenes     1      NA    NA    NA   NA    NA
## 6030    Suc. Belenes    NA      NA     0    NA   NA    NA
## 6031    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6032    Suc. Belenes    NA      NA     4    NA    1     3
## 6033    Suc. Belenes    NA       1    NA    NA   NA    NA
## 6034    Suc. Belenes     1      NA    NA    NA   NA    NA
## 6035    Suc. Belenes    NA       3     6    NA   NA    NA
## 6036    Suc. Belenes     4       4    NA    NA   NA    NA
## 6037    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6038    Suc. Belenes     1      NA    NA    NA   NA    NA
## 6039    Suc. Belenes    NA      NA     0    NA   NA    NA
## 6040    Suc. Belenes     2       4     4    NA    4     4
## 6041    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6042    Suc. Belenes    NA      NA     8    NA   NA    NA
## 6043    Suc. Belenes    11       4     4    NA    4     3
## 6044    Suc. Belenes    NA       0    NA    NA   NA    NA
## 6045    Suc. Belenes    NA       1    NA    NA    2    NA
## 6046    Suc. Belenes     2      NA    NA    NA   NA    NA
## 6047    Suc. Belenes    NA      NA     0    NA   NA    NA
## 6048    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6049    Suc. Belenes     2       1     1     1    3     1
## 6050    Suc. Belenes     6       6     6     8    8     8
## 6051    Suc. Belenes     3      NA    NA     1   NA    NA
## 6052    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6053    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6054    Suc. Belenes     4      17     2     3    4     6
## 6055    Suc. Belenes     3      13     3     5    3     6
## 6056    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6057    Suc. Belenes    NA       5    NA     3    3     3
## 6058    Suc. Belenes     1       1    NA    NA   NA    NA
## 6059    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6060    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6061    Suc. Belenes    NA       1     1     1   NA    NA
## 6062    Suc. Belenes    NA       9    NA    NA    3     4
## 6063    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6064    Suc. Belenes    NA       2     2     2    2     2
## 6065    Suc. Belenes     2      NA     2    NA   NA    NA
## 6066    Suc. Belenes     2       2     2     1    2     1
## 6067    Suc. Belenes    11       8    14    14   14    11
## 6068    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6069    Suc. Belenes     2       2    NA     2   NA    NA
## 6070    Suc. Belenes     4       2    NA     2   NA     2
## 6071    Suc. Belenes    NA      NA    NA     1   NA    NA
## 6072    Suc. Belenes    25      21    19    30   19    19
## 6073    Suc. Belenes    17      14    20    23   17    25
## 6074    Suc. Belenes    17      11    11    14   17    20
## 6075    Suc. Belenes    NA       3     2    NA    2     2
## 6076    Suc. Belenes    21      21    19    19   17    21
## 6077    Suc. Belenes     2       1     2     2    2     3
## 6078    Suc. Belenes     2       3     2     5   NA     3
## 6079    Suc. Belenes     2       1     1     1    1     2
## 6080    Suc. Belenes     4       2     4     2    4     6
## 6081    Suc. Belenes    14      11     8    11    8    11
## 6082    Suc. Belenes     4       4     6     6    6     8
## 6083    Suc. Belenes    46      38    42    44   40    46
## 6084    Suc. Belenes    51      51    51    60   41    51
## 6085    Suc. Belenes    29      41    38    44   35    35
## 6086    Suc. Belenes    12       9     6     6    6     8
## 6087    Suc. Belenes    65      79    65    85   82    93
## 6088    Suc. Belenes     6       8    11    14   20    14
## 6089    Suc. Belenes   123     109   127   127  127   144
## 6090    Suc. Belenes   102      92    95   106  123   130
## 6091    Suc. Belenes     6       6     4     2    6     4
## 6092    Suc. Belenes    44      40    49    57   57    46
## 6093    Suc. Belenes    32      30    42    51   32    44
## 6094    Suc. Belenes    10       9     9    10   10    10
## 6095    Suc. Belenes    17      12    11    11   12    12
## 6096    Suc. Belenes     5       3     4     3    5     5
## 6097    Suc. Belenes     1       1     1     1    2     1
## 6098    Suc. Belenes     1      NA    NA     1   NA    NA
## 6099    Suc. Belenes     1       3     1    NA    3     4
## 6100    Suc. Belenes     5       2    NA    NA   NA    NA
## 6101    Suc. Belenes    NA       1    NA    NA   NA    NA
## 6102    Suc. Belenes     1       2     2     0    0     0
## 6103    Suc. Belenes    NA      NA    NA    NA    0    NA
## 6104    Suc. Belenes     3       3     5     4    4     6
## 6105    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6106    Suc. Belenes     2       4     6     8    4     8
## 6107    Suc. Belenes     1       1     1     1    1     0
## 6108    Suc. Belenes     1       1     2    NA    1    NA
## 6109    Suc. Belenes    NA       1     3    NA   NA    NA
## 6110    Suc. Belenes    NA       4     2     4    2     2
## 6111    Suc. Belenes    NA       1     1    NA    1    NA
## 6112    Suc. Belenes     0       0     0     1    0     0
## 6113    Suc. Belenes     5       3     4     3    3     5
## 6114    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6115    Suc. Belenes     4       1     2     3    2     2
## 6116    Suc. Belenes     3       3     3    NA    3    NA
## 6117    Suc. Belenes    NA       4     5     9    5    11
## 6118    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6119    Suc. Belenes    NA      NA     0     0   NA    NA
## 6120    Suc. Belenes     1       1     1     1    1     1
## 6121    Suc. Belenes     3       3     1     3    1     4
## 6122    Suc. Belenes    NA       0    NA     0   NA    NA
## 6123    Suc. Belenes     2       1     2     3    2     2
## 6124    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6125    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6126    Suc. Belenes     3       1     1     1    1     1
## 6127    Suc. Belenes    NA       0    NA     0   NA    NA
## 6128    Suc. Belenes     2       1     2     3    2     2
## 6129    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6130    Suc. Belenes     1       1     1     1    1     1
## 6131    Suc. Belenes    NA       6     3     1    4     2
## 6132    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6133    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6134    Suc. Belenes    NA       0    NA     0   NA    NA
## 6135    Suc. Belenes     4       4     2     3    2     2
## 6136    Suc. Belenes     3      NA    NA     3   NA     6
## 6137    Suc. Belenes     5       9     9    12    7    12
## 6138    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6139    Suc. Belenes     0       0    NA    NA    1     0
## 6140    Suc. Belenes     1       1     1     1    1     1
## 6141    Suc. Belenes     6       8     8     6    6     7
## 6142    Suc. Belenes    NA       0    NA     0   NA    NA
## 6143    Suc. Belenes     1       2     1    NA   NA    NA
## 6144    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6145    Suc. Belenes     4       6     8     7    6     9
## 6146    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6147    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6148    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6149    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6150    Suc. Belenes     6       8     2     2    2     4
## 6151    Suc. Belenes     6       3     3     3    3     6
## 6152    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6153    Suc. Belenes    NA      NA    NA    NA   NA     3
## 6154    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6155    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6156    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6157    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6158    Suc. Belenes     1      NA    NA    NA   NA     1
## 6159    Suc. Belenes     5       4     3     3    3     3
## 6160    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6161    Suc. Belenes     1       1     1     1    1     1
## 6162    Suc. Belenes     0      NA    NA    NA   NA    NA
## 6163    Suc. Belenes     2       1     1     1    1     1
## 6164    Suc. Belenes     3       3     6     6   NA     8
## 6165    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6166    Suc. Belenes    NA       4    NA    NA   NA    NA
## 6167    Suc. Belenes     2       4    NA    NA   NA    NA
## 6168    Suc. Belenes     1      NA    NA    NA   NA    NA
## 6169    Suc. Belenes     2       8    NA     4    4     6
## 6170    Suc. Belenes     6       6     6     8    8     8
## 6171    Suc. Belenes     2      NA     1    NA    1     1
## 6172    Suc. Belenes    NA       4    NA     2    4     4
## 6173    Suc. Belenes    NA      NA     4    NA   NA     2
## 6174    Suc. Belenes    NA      NA    NA     2   NA    NA
## 6175    Suc. Belenes    55      53    48    48   53    34
## 6176    Suc. Belenes    NA      NA    NA     3   NA    29
## 6177    Suc. Belenes    48      48    54    57   35    54
## 6178    Suc. Belenes     6       9     3    12    2    11
## 6179    Suc. Belenes    20      11    15    15   18     8
## 6180    Suc. Belenes    NA       3    11    11   NA    NA
## 6181    Suc. Belenes    56      56    42    42   49    53
## 6182    Suc. Belenes   180     222   187   236  162   440
## 6183    Suc. Belenes    NA      NA    NA     2   NA    NA
## 6184    Suc. Belenes     2       4    NA     4    4     6
## 6185    Suc. Belenes    19      19    21    25   17    23
## 6186    Suc. Belenes    70      68    72   110   49    74
## 6187    Suc. Belenes     3       3     2     2    2     1
## 6188    Suc. Belenes     2       3     2     3    2     6
## 6189    Suc. Belenes    NA       2    NA     2    4     2
## 6190    Suc. Belenes     3       2     1     1    1    NA
## 6191    Suc. Belenes    NA       1    NA    NA   NA    NA
## 6192    Suc. Belenes    NA       1     1     1    1     1
## 6193    Suc. Belenes    NA      NA    NA     1    1    NA
## 6194    Suc. Belenes     1      NA     1    NA   NA     1
## 6195    Suc. Belenes     2       0     0     0    1     0
## 6196    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6197    Suc. Belenes     3       2     1     3    2     1
## 6198    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6199    Suc. Belenes    NA      NA    NA    NA   NA     2
## 6200    Suc. Belenes     0       0     0     0    0     0
## 6201    Suc. Belenes     1       1     1     1    3     1
## 6202    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6203    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6204    Suc. Belenes     2       2    NA    NA   NA    NA
## 6205    Suc. Belenes    NA      NA    NA    NA   NA     2
## 6206    Suc. Belenes     0       2     0     2    1     1
## 6207    Suc. Belenes    NA       6     6    NA    8     3
## 6208    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6209    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6210    Suc. Belenes     1       1     2     1    2     2
## 6211    Suc. Belenes    NA      NA     1     3   NA    NA
## 6212    Suc. Belenes     1       1     1     1   NA     1
## 6213    Suc. Belenes    NA      NA    NA     0    0     0
## 6214    Suc. Belenes    NA       0     1     0    0     0
## 6215    Suc. Belenes     2       2    NA    NA   NA    NA
## 6216    Suc. Belenes    NA      NA    NA    NA   NA     2
## 6217    Suc. Belenes     0       2     0     2    1     1
## 6218    Suc. Belenes    NA       3    NA     3   NA    NA
## 6219    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6220    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6221    Suc. Belenes     1       0     1     1    1     2
## 6222    Suc. Belenes    NA      NA     1     3   NA    NA
## 6223    Suc. Belenes     1       1     1     1    1     1
## 6224    Suc. Belenes    NA      NA    NA     0    0     0
## 6225    Suc. Belenes    NA       0     1     0    0     0
## 6226    Suc. Belenes     2       2    NA    NA   NA    NA
## 6227    Suc. Belenes     0       2     0     2    1     1
## 6228    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6229    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6230    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6231    Suc. Belenes     1       0     2     1    1     1
## 6232    Suc. Belenes    NA      NA     1     3    2     2
## 6233    Suc. Belenes     1       1     1     1    1     1
## 6234    Suc. Belenes    NA      NA    NA     0    0     0
## 6235    Suc. Belenes    NA      NA    NA    NA   NA     2
## 6236    Suc. Belenes     3       3    NA    NA   NA    NA
## 6237    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6238    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6239    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6240    Suc. Belenes    NA       0     1     0    0     0
## 6241    Suc. Belenes     2       2    NA    NA   NA    NA
## 6242    Suc. Belenes    NA      NA    NA    NA   NA     2
## 6243    Suc. Belenes     0       2     0     2    1     1
## 6244    Suc. Belenes    NA       3     6     3    8    NA
## 6245    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6246    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6247    Suc. Belenes     1      NA     2     1    2     1
## 6248    Suc. Belenes     2       2     1     5    2    NA
## 6249    Suc. Belenes     3       2     2     2    3     2
## 6250    Suc. Belenes    NA      NA    NA     0    0     0
## 6251    Suc. Belenes    NA       0     1     0    0     0
## 6252    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6253    Suc. Belenes     2       4     1     1    6     6
## 6254    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6255    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6256    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6257    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6258    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6259    Suc. Belenes     4      11     2     6    6     6
## 6260    Suc. Belenes     6       6     3    10   13     6
## 6261    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6262    Suc. Belenes    NA       3    NA    NA   NA    NA
## 6263    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6264    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6265    Suc. Belenes    NA      NA    NA     1    1     2
## 6266    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6267    Suc. Belenes    NA      NA    NA     1    1     1
## 6268    Suc. Belenes     3       2     3     6    4     4
## 6269    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6270    Suc. Belenes    NA       1    NA     1    1     2
## 6271    Suc. Belenes     2      NA     2     4   NA    NA
## 6272    Suc. Belenes     0      NA    NA    NA   NA    NA
## 6273    Suc. Belenes     2      NA     1     1    1     1
## 6274    Suc. Belenes     8       3     8    14    6     6
## 6275    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6276    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6277    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6278    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6279    Suc. Belenes    NA       2     2     6   NA     4
## 6280    Suc. Belenes    15       8     4    13    4    11
## 6281    Suc. Belenes    NA       2    NA     2    2     2
## 6282    Suc. Belenes     8       3     6     8    3     6
## 6283    Suc. Belenes     8       8     6     8    6     8
## 6284    Suc. Belenes    NA       1     1     1    2     1
## 6285    Suc. Belenes    NA      NA     2    NA   NA    NA
## 6286    Suc. Belenes     2      NA     2     4    2     6
## 6287    Suc. Belenes     2       2    NA    NA    2     2
## 6288    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6289    Suc. Belenes    71      74    66    95   71    50
## 6290    Suc. Belenes    16      10    10    10    6    35
## 6291    Suc. Belenes    54      54    54    73   38    63
## 6292    Suc. Belenes    24      15    14    18   20    17
## 6293    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6294    Suc. Belenes    20      17    11    17   11    17
## 6295    Suc. Belenes    34      20    31    42   31    39
## 6296    Suc. Belenes    92      74    70    88   81    95
## 6297    Suc. Belenes   222     176   169   225  240   324
## 6298    Suc. Belenes    NA      NA     2     2   NA     2
## 6299    Suc. Belenes    27      27    25    30   30    27
## 6300    Suc. Belenes    66      72    78    72   72    82
## 6301    Suc. Belenes    13      11    11    16   15    17
## 6302    Suc. Belenes     5       3     3     3    8     8
## 6303    Suc. Belenes     2       6     2     4    4     8
## 6304    Suc. Belenes     2       4     2     5    3     3
## 6305    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6306    Suc. Belenes     1       1     1     1    3     1
## 6307    Suc. Belenes    NA      NA    NA     1   NA    NA
## 6308    Suc. Belenes     1      NA    NA    NA   NA     1
## 6309    Suc. Belenes     1      NA     0     0    0     0
## 6310    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6311    Suc. Belenes     3       1     2     3    3     2
## 6312    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6313    Suc. Belenes    NA       2    NA    NA   NA    NA
## 6314    Suc. Belenes     0       0    NA    NA   NA    NA
## 6315    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6316    Suc. Belenes     0       0     0     0    0     0
## 6317    Suc. Belenes     1       1    NA    NA   NA    NA
## 6318    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6319    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6320    Suc. Belenes     5       2    NA    NA   NA    NA
## 6321    Suc. Belenes     1       8     3     6    6     6
## 6322    Suc. Belenes    NA      NA    NA     0    1     0
## 6323    Suc. Belenes     1      NA    NA    NA    2     1
## 6324    Suc. Belenes     2       1     2     5    1     3
## 6325    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6326    Suc. Belenes    NA       0     0    NA   NA    NA
## 6327    Suc. Belenes     2       2    NA    NA   NA    NA
## 6328    Suc. Belenes     1      NA    NA     3    6    NA
## 6329    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6330    Suc. Belenes     1      NA    NA    NA   NA     1
## 6331    Suc. Belenes     1       1     1     4   NA     1
## 6332    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6333    Suc. Belenes    NA       0     0    NA   NA    NA
## 6334    Suc. Belenes     2       2    NA    NA   NA    NA
## 6335    Suc. Belenes     1      NA    NA    NA    3    NA
## 6336    Suc. Belenes    NA      NA    NA    NA    1    NA
## 6337    Suc. Belenes     1      NA    NA    NA   NA     1
## 6338    Suc. Belenes     1       1     1     1   NA    NA
## 6339    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6340    Suc. Belenes     1      NA    NA    NA   NA    NA
## 6341    Suc. Belenes    NA       3     8     3    3     3
## 6342    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6343    Suc. Belenes     3      NA    NA     4   NA     1
## 6344    Suc. Belenes    NA       0     0    NA   NA    NA
## 6345    Suc. Belenes     6       3    NA    NA   NA    NA
## 6346    Suc. Belenes     1       3     6     3    3     6
## 6347    Suc. Belenes     2      NA     2     0    1     1
## 6348    Suc. Belenes     1      NA     2     2    2     3
## 6349    Suc. Belenes     3       1     2     4   NA     4
## 6350    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6351    Suc. Belenes    NA       0     0    NA   NA    NA
## 6352    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6353    Suc. Belenes     4       3     1     4    9     3
## 6354    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6355    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6356    Suc. Belenes     2       4     6     2    2     2
## 6357    Suc. Belenes    NA      NA    10     3    3     3
## 6358    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6359    Suc. Belenes    NA      NA     3    NA   NA    NA
## 6360    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6361    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6362    Suc. Belenes    NA       1    NA    NA   NA    NA
## 6363    Suc. Belenes    NA      NA    NA     1   NA    NA
## 6364    Suc. Belenes     4       2     1     3    5     7
## 6365    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6366    Suc. Belenes     1       1    NA    NA   NA     1
## 6367    Suc. Belenes    NA      NA     2    NA   NA    NA
## 6368    Suc. Belenes    NA      NA     1    NA   NA     1
## 6369    Suc. Belenes    NA      NA    NA    NA    6     6
## 6370    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6371    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6372    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6373    Suc. Belenes     4       2     2     4    2     2
## 6374    Suc. Belenes    13       4     6    13   13     8
## 6375    Suc. Belenes    17      11    17    14   20    17
## 6376    Suc. Belenes    19      23    17    17   19    21
## 6377    Suc. Belenes     2       1    NA    NA    1     1
## 6378    Suc. Belenes    NA       2     2     3    3    NA
## 6379    Suc. Belenes     2       2     4     2    2     6
## 6380    Suc. Belenes    NA       8    11    NA    8     3
## 6381    Suc. Belenes     2       4     2     4    4     4
## 6382    Suc. Belenes    NA       2    NA    NA   NA    NA
## 6383    Suc. Belenes    61      50    42    71   50    66
## 6384    Suc. Belenes    NA      NA    NA    NA   NA     3
## 6385    Suc. Belenes    32      35    60    63   57    48
## 6386    Suc. Belenes    12      14    11    20   18    17
## 6387    Suc. Belenes    48      51    39    54   54    59
## 6388    Suc. Belenes    14      14     6    14   11    11
## 6389    Suc. Belenes    95      53    56    85  109    99
## 6390    Suc. Belenes   144     137   151   180  127   155
## 6391    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6392    Suc. Belenes    59      36    44    55   49    49
## 6393    Suc. Belenes    61      72    85    91   74    89
## 6394    Suc. Belenes     7       9     9     9   11    13
## 6395    Suc. Belenes     5       8     6     5    8    11
## 6396    Suc. Belenes     6       6     4     8    6     4
## 6397    Suc. Belenes     9       8     7     7    7     9
## 6398    Suc. Belenes    NA      NA     1    NA   NA     1
## 6399    Suc. Belenes    NA      NA    NA     1   NA    NA
## 6400    Suc. Belenes     1      NA     1     1    3     3
## 6401    Suc. Belenes     2      NA     0     0    0     0
## 6402    Suc. Belenes    NA      NA    NA    NA    0    NA
## 6403    Suc. Belenes     7       3     2     5    5     7
## 6404    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6405    Suc. Belenes     4       4     4     4    6     2
## 6406    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6407    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6408    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6409    Suc. Belenes     0       0     0    NA   NA     0
## 6410    Suc. Belenes     1       1     3     3    1     3
## 6411    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6412    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6413    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6414    Suc. Belenes     8       8    NA     8    8    14
## 6415    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6416    Suc. Belenes     2       1     1     1    4     3
## 6417    Suc. Belenes     3       1     1     3    1     1
## 6418    Suc. Belenes    NA       0    NA    NA   NA    NA
## 6419    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6420    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6421    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6422    Suc. Belenes     2       1     1     1   NA     1
## 6423    Suc. Belenes    NA      NA    NA    NA    1    NA
## 6424    Suc. Belenes    NA       0    NA    NA   NA    NA
## 6425    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6426    Suc. Belenes     2       1     1     1   NA     1
## 6427    Suc. Belenes    NA      NA    NA    NA    1    NA
## 6428    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6429    Suc. Belenes     3      NA     6    NA   NA     3
## 6430    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6431    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6432    Suc. Belenes    NA      NA    NA    NA    0    NA
## 6433    Suc. Belenes    NA      NA    NA    NA    2    NA
## 6434    Suc. Belenes     3       1     1     3    1     1
## 6435    Suc. Belenes    NA       0    NA    NA   NA    NA
## 6436    Suc. Belenes     6       2     4     4    6     2
## 6437    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6438    Suc. Belenes    14       8     8     8   20    11
## 6439    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6440    Suc. Belenes     0       0     1    NA   NA     1
## 6441    Suc. Belenes     2       1     1     1    4     5
## 6442    Suc. Belenes     3       2     3     3    1     3
## 6443    Suc. Belenes    NA       0    NA    NA   NA    NA
## 6444    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6445    Suc. Belenes     1      10     5     6    8     6
## 6446    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6447    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6448    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6449    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6450    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6451    Suc. Belenes     2       2     6     2    2     8
## 6452    Suc. Belenes     3       3    16     3    3    10
## 6453    Suc. Belenes    NA      NA    NA    NA   NA     5
## 6454    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6455    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6456    Suc. Belenes    NA      NA    NA     1    1    NA
## 6457    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6458    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6459    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6460    Suc. Belenes     1      NA    NA     0   NA    NA
## 6461    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6462    Suc. Belenes     1       1     1    NA   NA     1
## 6463    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6464    Suc. Belenes    NA       1     1    NA   NA     1
## 6465    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6466    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6467    Suc. Belenes    NA      NA    NA     1   NA    NA
## 6468    Suc. Belenes     3      NA    NA    NA   NA     1
## 6469    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6470    Suc. Belenes    11      11    17    19   11    11
## 6471    Suc. Belenes     2       3     3     2    3     2
## 6472    Suc. Belenes    17      17    17    20   11    14
## 6473    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6474    Suc. Belenes     3       2     3     2    3     5
## 6475    Suc. Belenes    13      15    17    17   15    17
## 6476    Suc. Belenes     2       2     3     3    1     4
## 6477    Suc. Belenes     2      NA    NA     3    2     2
## 6478    Suc. Belenes     2       4     2     6    2     4
## 6479    Suc. Belenes    NA       6     8    11    3     8
## 6480    Suc. Belenes     4       6     4     6    4     6
## 6481    Suc. Belenes    NA      NA     1    NA   NA    NA
## 6482    Suc. Belenes    27      46    76    49   38    72
## 6483    Suc. Belenes    NA      NA    NA    NA   32    NA
## 6484    Suc. Belenes    NA      NA    NA    NA   NA     6
## 6485    Suc. Belenes    38      44    60    38   35    76
## 6486    Suc. Belenes     9      20     8    11   11    15
## 6487    Suc. Belenes     5      NA    NA    NA   NA    NA
## 6488    Suc. Belenes    37      65    25    68   59    48
## 6489    Suc. Belenes    23      14    17    23   14    42
## 6490    Suc. Belenes    99     102   144   141   70   130
## 6491    Suc. Belenes    95     257    46   166   74   137
## 6492    Suc. Belenes    NA      NA    NA     2   NA    NA
## 6493    Suc. Belenes    NA      NA     4    NA   NA    NA
## 6494    Suc. Belenes    42      51    63    55   61   139
## 6495    Suc. Belenes   108     135    95   133  101   159
## 6496    Suc. Belenes    12       9     9    21   12    18
## 6497    Suc. Belenes    11       9    14    13   16    15
## 6498    Suc. Belenes    14       8    12    15   15    20
## 6499    Suc. Belenes     4       4     4    10    4    12
## 6500    Suc. Belenes     7       7     6     9    6    10
## 6501    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6502    Suc. Belenes    NA       1     1    NA   NA     1
## 6503    Suc. Belenes    NA      NA    NA     1   NA    NA
## 6504    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6505    Suc. Belenes     4       0     0     0    0     0
## 6506    Suc. Belenes    NA       1    NA    NA    1    NA
## 6507    Suc. Belenes     7      NA    NA     9    7     2
## 6508    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6509    Suc. Belenes     2      NA    NA    NA   NA    NA
## 6510    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6511    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6512    Suc. Belenes     0       0     0    NA   NA     0
## 6513    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6514    Suc. Belenes     4       2     6    NA    2     2
## 6515    Suc. Belenes     6      11     8     3    3    14
## 6516    Suc. Belenes     2       0     2     4    5     5
## 6517    Suc. Belenes     6       8    13    13    6     8
## 6518    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6519    Suc. Belenes    NA      NA    NA     2   NA     2
## 6520    Suc. Belenes    NA       0    NA    NA   NA    NA
## 6521    Suc. Belenes    NA       3    NA    NA    3     3
## 6522    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6523    Suc. Belenes    NA      NA    NA    NA    2     2
## 6524    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6525    Suc. Belenes    NA       0    NA    NA   NA    NA
## 6526    Suc. Belenes    NA      NA    NA    NA   NA     4
## 6527    Suc. Belenes    NA       3    NA    NA   NA     6
## 6528    Suc. Belenes     1       2    NA     1    2     2
## 6529    Suc. Belenes     6       4     8     2    4     6
## 6530    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6531    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6532    Suc. Belenes     3       8     6    NA   NA     3
## 6533    Suc. Belenes     1       1     1    NA    2     2
## 6534    Suc. Belenes     4       2     2    13   NA     8
## 6535    Suc. Belenes     1      NA    NA    NA   NA    NA
## 6536    Suc. Belenes    NA       0    NA    NA   NA    NA
## 6537    Suc. Belenes     4       6     4     4    4     2
## 6538    Suc. Belenes     8      11    14     6    3    17
## 6539    Suc. Belenes     2       2     1     5    5     8
## 6540    Suc. Belenes     6      13    11    17    4    13
## 6541    Suc. Belenes     2       1    NA    NA   NA    NA
## 6542    Suc. Belenes    NA      NA     2    NA    2     2
## 6543    Suc. Belenes    NA       0    NA    NA   NA    NA
## 6544    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6545    Suc. Belenes    NA      11    NA    NA   NA     3
## 6546    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6547    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6548    Suc. Belenes    NA      NA    NA    NA    1    NA
## 6549    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6550    Suc. Belenes     2       4     2     2    4     4
## 6551    Suc. Belenes     3       6     3     3    6     6
## 6552    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6553    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6554    Suc. Belenes    NA      NA     1    NA   NA     0
## 6555    Suc. Belenes     1       1     1    NA   NA    NA
## 6556    Suc. Belenes    NA       1    NA     2    1     3
## 6557    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6558    Suc. Belenes     1       1     1     1    1     2
## 6559    Suc. Belenes     2       2     1     1    2     1
## 6560    Suc. Belenes    NA      NA    NA    NA    3     3
## 6561    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6562    Suc. Belenes     1       1     1    NA   NA    NA
## 6563    Suc. Belenes    NA       2    NA    NA   NA    NA
## 6564    Suc. Belenes     2       4    NA    NA   NA     2
## 6565    Suc. Belenes     4       2     6     4   NA    NA
## 6566    Suc. Belenes    NA      NA     3    NA    5     8
## 6567    Suc. Belenes    10       6     6    NA   NA    10
## 6568    Suc. Belenes    54      60    73    60   41   111
## 6569    Suc. Belenes     5       3     6     5    3     3
## 6570    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6571    Suc. Belenes     4       4    14     7    4    25
## 6572    Suc. Belenes    77      92    95    60   53   137
## 6573    Suc. Belenes    NA      NA    NA    NA   NA     2
## 6574    Suc. Belenes     4       4    NA    NA   NA    NA
## 6575    Suc. Belenes     6       8     8     8    4     6
## 6576    Suc. Belenes    44      59    68    66   23    80
## 6577    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6578    Suc. Belenes     1       2    NA     1   NA     2
## 6579    Suc. Belenes     2       2     3    NA   NA     3
## 6580    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6581    Suc. Belenes     3       1     2     2    3     2
## 6582    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6583    Suc. Belenes     1       1     1     1    1     1
## 6584    Suc. Belenes    NA      NA    NA     1   NA    NA
## 6585    Suc. Belenes     1       1    NA     2   NA    NA
## 6586    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6587    Suc. Belenes     0       0     0     0    0     0
## 6588    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6589    Suc. Belenes    NA      NA    NA     2    1     2
## 6590    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6591    Suc. Belenes    NA      NA    NA    NA    0     0
## 6592    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6593    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6594    Suc. Belenes     0       0     0     0    0     1
## 6595    Suc. Belenes    NA       1    NA    NA   NA    NA
## 6596    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6597    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6598    Suc. Belenes     2       2    NA    NA   NA    NA
## 6599    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6600    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6601    Suc. Belenes     3      NA     3    NA   NA     6
## 6602    Suc. Belenes    NA      NA     1    NA   NA     0
## 6603    Suc. Belenes     0       0    NA     0   NA     0
## 6604    Suc. Belenes    NA       1     2     2    2     3
## 6605    Suc. Belenes     1       1     1     1    1     1
## 6606    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6607    Suc. Belenes    NA       0     0    NA   NA    NA
## 6608    Suc. Belenes     2       2    NA    NA   NA    NA
## 6609    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6610    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6611    Suc. Belenes    NA       3    NA    NA   NA    NA
## 6612    Suc. Belenes    NA      NA     0    NA   NA     0
## 6613    Suc. Belenes    NA      NA    NA    NA    0     2
## 6614    Suc. Belenes    NA       1     2     2    2     3
## 6615    Suc. Belenes     1      NA     1     1    1     1
## 6616    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6617    Suc. Belenes    NA       0     0    NA   NA    NA
## 6618    Suc. Belenes     2       2    NA    NA   NA    NA
## 6619    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6620    Suc. Belenes    NA      NA    NA     3   NA    NA
## 6621    Suc. Belenes    NA      NA     1    NA   NA     0
## 6622    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6623    Suc. Belenes    NA       1     2     2    2     3
## 6624    Suc. Belenes     1      NA     1     1    1     1
## 6625    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6626    Suc. Belenes    NA       1     1    NA   NA    NA
## 6627    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6628    Suc. Belenes    NA      NA    NA    NA    3    11
## 6629    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6630    Suc. Belenes    NA      NA     0    NA   NA     0
## 6631    Suc. Belenes     2      NA     4    NA   NA    NA
## 6632    Suc. Belenes    NA       0     0    NA   NA    NA
## 6633    Suc. Belenes     2       2    NA    NA   NA    NA
## 6634    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6635    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6636    Suc. Belenes    NA      NA     3     3    6    11
## 6637    Suc. Belenes    NA      NA     1    NA   NA     0
## 6638    Suc. Belenes    NA      NA    NA    NA   NA     2
## 6639    Suc. Belenes    NA       1     2     2    2     3
## 6640    Suc. Belenes     1      NA     1     1    1     1
## 6641    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6642    Suc. Belenes    NA       0     0    NA   NA    NA
## 6643    Suc. Belenes     1       2    NA     2    1     3
## 6644    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6645    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6646    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6647    Suc. Belenes     2       6     2     2    6     2
## 6648    Suc. Belenes     3       3     3     3   10     3
## 6649    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6650    Suc. Belenes     3       5    10     3   10     8
## 6651    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6652    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6653    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6654    Suc. Belenes    NA      NA    NA     2   NA     2
## 6655    Suc. Belenes     0       1     1     1    1     1
## 6656    Suc. Belenes     2       2     4     7    4     6
## 6657    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6658    Suc. Belenes     1       1     1    NA    1     1
## 6659    Suc. Belenes    NA       6    NA    NA   NA    NA
## 6660    Suc. Belenes     2       2     1    NA    1     1
## 6661    Suc. Belenes    NA       3     3     3   NA    NA
## 6662    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6663    Suc. Belenes    NA       0     0    NA   NA    NA
## 6664    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6665    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6666    Suc. Belenes    NA      NA     2    NA    2     2
## 6667    Suc. Belenes     1       1    NA    NA    1    NA
## 6668    Suc. Belenes     4       6     6     4   11     4
## 6669    Suc. Belenes    14       6     8    11   11     8
## 6670    Suc. Belenes     4       4     4     4    4     6
## 6671    Suc. Belenes     1      NA    NA     1    1     1
## 6672    Suc. Belenes     6       8     8     4    6    NA
## 6673    Suc. Belenes     5      NA     5     3   16     3
## 6674    Suc. Belenes    NA      NA    NA    NA   NA     6
## 6675    Suc. Belenes    44      16    29    44   16    70
## 6676    Suc. Belenes     5       6     8     6    9    11
## 6677    Suc. Belenes    18      14    21    11    7    NA
## 6678    Suc. Belenes   173      74   141   106  102   137
## 6679    Suc. Belenes    13      15    17    11   23    15
## 6680    Suc. Belenes    85      44    70    57   74    74
## 6681    Suc. Belenes     3       1     2     2    3     2
## 6682    Suc. Belenes     6       8     9    11   12     9
## 6683    Suc. Belenes    NA      NA     2    NA    4    NA
## 6684    Suc. Belenes     2       2     2     2    1    NA
## 6685    Suc. Belenes    NA       2     1    NA    1     1
## 6686    Suc. Belenes    NA      NA    NA    NA    2    NA
## 6687    Suc. Belenes     1      NA    NA    NA   NA    NA
## 6688    Suc. Belenes     3       0     0     0    0     0
## 6689    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6690    Suc. Belenes     4       1     3     2    2     3
## 6691    Suc. Belenes     4       1     2     2    1     1
## 6692    Suc. Belenes    NA       2     2    NA    2    NA
## 6693    Suc. Belenes    NA       0     1     1   NA    NA
## 6694    Suc. Belenes     0       0     0    NA    0     0
## 6695    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6696    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6697    Suc. Belenes     2      NA    NA    NA    2    NA
## 6698    Suc. Belenes    NA       1    NA    NA    1     1
## 6699    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6700    Suc. Belenes     1       4    NA     6    1    NA
## 6701    Suc. Belenes    NA      NA     1    NA   NA    NA
## 6702    Suc. Belenes     0       1     1     1    1     1
## 6703    Suc. Belenes     0      NA     0     1    0     4
## 6704    Suc. Belenes     2       2     2     1    3     1
## 6705    Suc. Belenes     1      NA    NA     1   NA    NA
## 6706    Suc. Belenes    NA       0    NA    NA   NA    NA
## 6707    Suc. Belenes    NA       1    NA    NA    1     1
## 6708    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6709    Suc. Belenes     1       1    NA     1    1    NA
## 6710    Suc. Belenes    NA      NA     1    NA   NA    NA
## 6711    Suc. Belenes     0       0     0     0    1     1
## 6712    Suc. Belenes     0      NA     0    NA    0     1
## 6713    Suc. Belenes    NA      NA     2     1    3     1
## 6714    Suc. Belenes     1      NA    NA    NA   NA    NA
## 6715    Suc. Belenes    NA       0    NA    NA   NA    NA
## 6716    Suc. Belenes    NA       1    NA    NA    1     1
## 6717    Suc. Belenes     1       1    NA     1    1    NA
## 6718    Suc. Belenes    NA      NA     1    NA   NA    NA
## 6719    Suc. Belenes     0       1     1     1    1     1
## 6720    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6721    Suc. Belenes    NA      NA     2     1    1     1
## 6722    Suc. Belenes     1      NA    NA    NA   NA    NA
## 6723    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6724    Suc. Belenes     3      NA    NA     3   NA     3
## 6725    Suc. Belenes     0      NA     0    NA    0     0
## 6726    Suc. Belenes     2      NA    NA    NA    4    NA
## 6727    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6728    Suc. Belenes    NA       0    NA    NA   NA    NA
## 6729    Suc. Belenes     2       2    NA     4   NA    NA
## 6730    Suc. Belenes    NA       1    NA    NA    1     1
## 6731    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6732    Suc. Belenes     1       4     3     6    1    NA
## 6733    Suc. Belenes    NA      NA     1    NA   NA    NA
## 6734    Suc. Belenes     2       1     1     1    1     1
## 6735    Suc. Belenes     0       0     0    NA    0     5
## 6736    Suc. Belenes    NA       2     2     1    3     1
## 6737    Suc. Belenes     1      NA    NA     1   NA    NA
## 6738    Suc. Belenes    NA       0    NA    NA   NA    NA
## 6739    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6740    Suc. Belenes     4       3     6     3    5     3
## 6741    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6742    Suc. Belenes    11       8     8     4    6     8
## 6743    Suc. Belenes     6      NA     3     6    3     6
## 6744    Suc. Belenes     3       5     3    NA    3     8
## 6745    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6746    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6747    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6748    Suc. Belenes     1       1    NA     1    0     0
## 6749    Suc. Belenes     9       5     4     1    3    NA
## 6750    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6751    Suc. Belenes    NA      NA     1     1    1     1
## 6752    Suc. Belenes    NA      NA     1     1    1     1
## 6753    Suc. Belenes     3      NA    NA     3   NA    NA
## 6754    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6755    Suc. Belenes     8       4     4     4    6     6
## 6756    Suc. Belenes     8       8     6     5    5     6
## 6757    Suc. Belenes     4       4     2    NA    6     4
## 6758    Suc. Belenes     3       3     2     3    3     3
## 6759    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6760    Suc. Belenes    16      16    11    13   16    11
## 6761    Suc. Belenes    NA      NA    NA    NA   NA    10
## 6762    Suc. Belenes    35      38    54    35   57    63
## 6763    Suc. Belenes     9       8     6     8    9    14
## 6764    Suc. Belenes     4       4    18     7   11    11
## 6765    Suc. Belenes    63      46    49    53   67    53
## 6766    Suc. Belenes     2       2     4     4    4     4
## 6767    Suc. Belenes     6      13    11     8    4    11
## 6768    Suc. Belenes    87      78    99    66  112   123
## 6769    Suc. Belenes     3       3     4     2    4     5
## 6770    Suc. Belenes     2       2     2     2    2     2
## 6771    Suc. Belenes     2      NA    NA     2    2     2
## 6772    Suc. Belenes     3       4     2     3    3     3
## 6773    Suc. Belenes     1      NA     1     1    1     3
## 6774    Suc. Belenes     2      NA     1     1    1     1
## 6775    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6776    Suc. Belenes     0       1     0     0    0     0
## 6777    Suc. Belenes    NA      NA    NA    NA    0    NA
## 6778    Suc. Belenes     7       3     2     2    5     3
## 6779    Suc. Belenes     2      NA    NA    NA    2    NA
## 6780    Suc. Belenes     1       1    NA    NA    1    NA
## 6781    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6782    Suc. Belenes    NA      NA     0     0    0     0
## 6783    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6784    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6785    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6786    Suc. Belenes     3      NA     3     3   NA     3
## 6787    Suc. Belenes     1       1    NA     1    0     0
## 6788    Suc. Belenes     0       1     1     1    1     0
## 6789    Suc. Belenes     1      NA     1     1    2     2
## 6790    Suc. Belenes    NA       1    NA     0   NA    NA
## 6791    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6792    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6793    Suc. Belenes     0       0    NA     0    0     0
## 6794    Suc. Belenes     0       1     0     0    0     1
## 6795    Suc. Belenes    NA       1    NA     0   NA    NA
## 6796    Suc. Belenes     1       1    NA     1    0     0
## 6797    Suc. Belenes    NA       0    NA     0    1     0
## 6798    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6799    Suc. Belenes     6       3     3    NA    6     3
## 6800    Suc. Belenes     4       4     6     2    2     6
## 6801    Suc. Belenes     1      NA    NA    NA   NA    NA
## 6802    Suc. Belenes    NA       1    NA     0   NA    NA
## 6803    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6804    Suc. Belenes     3      NA     3     6    6    NA
## 6805    Suc. Belenes     1       1     1     1    0     0
## 6806    Suc. Belenes    NA       1    NA     1    0     1
## 6807    Suc. Belenes    NA      NA    NA     4    2     2
## 6808    Suc. Belenes    NA      NA     1     1    1     1
## 6809    Suc. Belenes    NA       1    NA     0   NA    NA
## 6810    Suc. Belenes     3       4    NA     1    2     3
## 6811    Suc. Belenes    NA      NA    NA    11   NA    NA
## 6812    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6813    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6814    Suc. Belenes     4       2     4     2    2    11
## 6815    Suc. Belenes    13      13    16    13   10    13
## 6816    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6817    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6818    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6819    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6820    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6821    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6822    Suc. Belenes     4       1     4     5    5     3
## 6823    Suc. Belenes     6       8     5     4   10     7
## 6824    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6825    Suc. Belenes    NA       2     1     1   NA     2
## 6826    Suc. Belenes     4       2     2    NA    6     2
## 6827    Suc. Belenes     3       2     4     1    2     1
## 6828    Suc. Belenes    17      14    20     3    8     8
## 6829    Suc. Belenes    NA      NA    NA     0    0     1
## 6830    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6831    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6832    Suc. Belenes    NA      NA     2    NA   NA    NA
## 6833    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6834    Suc. Belenes     4       4     2     4    4     2
## 6835    Suc. Belenes    NA       1     1     1    3    NA
## 6836    Suc. Belenes    19      15    17    15   17    19
## 6837    Suc. Belenes     2       2     2    NA    3     3
## 6838    Suc. Belenes    17      14     6    17   14    17
## 6839    Suc. Belenes    11       8    20    20   11    17
## 6840    Suc. Belenes     4      17    11    17   15    11
## 6841    Suc. Belenes     2       1     6    NA    3    NA
## 6842    Suc. Belenes     2       3    NA     5    2     3
## 6843    Suc. Belenes     4       6     4     6    2     6
## 6844    Suc. Belenes     3      NA     3     3    6     3
## 6845    Suc. Belenes     4      NA     4     2    2     6
## 6846    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6847    Suc. Belenes    NA       6    42    NA   19    21
## 6848    Suc. Belenes    50      50   106     5   98    NA
## 6849    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6850    Suc. Belenes    73      79   149    54  124    86
## 6851    Suc. Belenes    14       8    14     9   23     8
## 6852    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6853    Suc. Belenes    20      17    54     6   23    25
## 6854    Suc. Belenes    23      17    14    17   14    14
## 6855    Suc. Belenes    67      39   137    18   88   106
## 6856    Suc. Belenes   254     176   313   197  254   197
## 6857    Suc. Belenes    21      23    66     6   46    44
## 6858    Suc. Belenes   110     114   154   156  135   133
## 6859    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6860    Suc. Belenes     5       9    16    NA   21    NA
## 6861    Suc. Belenes    NA       2    24    NA   NA     6
## 6862    Suc. Belenes     6       2     4     4    4     4
## 6863    Suc. Belenes     6       3    16    NA    3    17
## 6864    Suc. Belenes    NA      NA    NA     1   NA    NA
## 6865    Suc. Belenes     2       1     3     1    4     1
## 6866    Suc. Belenes    NA      NA     1     1   NA     1
## 6867    Suc. Belenes     1      NA    NA     4    1     1
## 6868    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6869    Suc. Belenes     1       0     0     0    0     0
## 6870    Suc. Belenes    NA       0    NA    NA    1    NA
## 6871    Suc. Belenes     9      10     8     5   14     7
## 6872    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6873    Suc. Belenes     6       4     6    11    8     4
## 6874    Suc. Belenes     1      NA    NA     1    1     1
## 6875    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6876    Suc. Belenes     0       0     0     0    0     0
## 6877    Suc. Belenes     5       8     3     5    5     6
## 6878    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6879    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6880    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6881    Suc. Belenes     6       6    15     3   11     6
## 6882    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6883    Suc. Belenes    NA       0     0    NA    0    NA
## 6884    Suc. Belenes     2       3     7     1    1     1
## 6885    Suc. Belenes     3       3     1     1    1     5
## 6886    Suc. Belenes    NA       0     0     0   NA    NA
## 6887    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6888    Suc. Belenes    NA       3     4     6    8     3
## 6889    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6890    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6891    Suc. Belenes     2       3     5     1    1     3
## 6892    Suc. Belenes     1      NA     2     3    4    NA
## 6893    Suc. Belenes    NA       0     0     0   NA    NA
## 6894    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6895    Suc. Belenes     3       3     1    NA   NA    NA
## 6896    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6897    Suc. Belenes    NA      NA     0    NA   NA    NA
## 6898    Suc. Belenes     2       3     7     3    1     3
## 6899    Suc. Belenes    NA      NA     1    NA    1    NA
## 6900    Suc. Belenes     3       5     3     4    3     3
## 6901    Suc. Belenes    NA      NA     8     3   14     6
## 6902    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6903    Suc. Belenes    NA      NA     4    NA   NA     4
## 6904    Suc. Belenes     1       5     4     4    4     4
## 6905    Suc. Belenes    NA       0     0     0   NA    NA
## 6906    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6907    Suc. Belenes     6      11    18    11   14    14
## 6908    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6909    Suc. Belenes     0      NA    NA     0   NA     0
## 6910    Suc. Belenes     2       3     7     5    3     1
## 6911    Suc. Belenes     6       3     3     5    8     4
## 6912    Suc. Belenes    NA       0     0     0   NA    NA
## 6913    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6914    Suc. Belenes     1       8    NA    NA    6     6
## 6915    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6916    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6917    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6918    Suc. Belenes     2      66     2     2    2     2
## 6919    Suc. Belenes     3      95     3     3    3     3
## 6920    Suc. Belenes    NA      NA     0    NA   NA    NA
## 6921    Suc. Belenes    NA      25    NA    NA   NA    NA
## 6922    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6923    Suc. Belenes    NA      NA    NA    NA    2     4
## 6924    Suc. Belenes     1       4     2     1    1     3
## 6925    Suc. Belenes     3       4     3     2    4     4
## 6926    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6927    Suc. Belenes     1      NA     1     1    1     1
## 6928    Suc. Belenes     2      NA     2     1    1     1
## 6929    Suc. Belenes    NA      NA     3     3    3     8
## 6930    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6931    Suc. Belenes    NA      NA     2    NA   NA    NA
## 6932    Suc. Belenes    NA      NA     1    NA    1    NA
## 6933    Suc. Belenes     2      NA     2     2   NA     2
## 6934    Suc. Belenes     1      NA     1    NA   NA    NA
## 6935    Suc. Belenes     6      11    NA     2    6     8
## 6936    Suc. Belenes     6       6     3     8   NA     3
## 6937    Suc. Belenes    14      14    20    20    6    17
## 6938    Suc. Belenes     4      15     8     6    4    15
## 6939    Suc. Belenes    NA       1     1     2    2     3
## 6940    Suc. Belenes    NA       2    NA    NA   NA     2
## 6941    Suc. Belenes     1       1     1    NA    1    NA
## 6942    Suc. Belenes     2      NA     2     2    2     4
## 6943    Suc. Belenes     2      NA     4    NA    2     2
## 6944    Suc. Belenes    NA      NA     2    NA   NA    NA
## 6945    Suc. Belenes    NA      NA     1    NA   NA    NA
## 6946    Suc. Belenes     6      21    13     8   17    15
## 6947    Suc. Belenes    24      29    40    45   34    21
## 6948    Suc. Belenes    NA      NA    NA    NA   NA    19
## 6949    Suc. Belenes     3       6     6    16   13    10
## 6950    Suc. Belenes    NA      NA    NA     2   NA    NA
## 6951    Suc. Belenes     8       3    11    17    5    12
## 6952    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6953    Suc. Belenes    17      11    25    23   20    20
## 6954    Suc. Belenes     6       8     6    NA    6     8
## 6955    Suc. Belenes    35      32    39    42   39    56
## 6956    Suc. Belenes    21      25    39    18   39    46
## 6957    Suc. Belenes     6      13     8     2   21     8
## 6958    Suc. Belenes    23      34    27    36   59    17
## 6959    Suc. Belenes    34      27    42    68   25    57
## 6960    Suc. Belenes    NA       6     6     6    9    NA
## 6961    Suc. Belenes     7       7     7     8    8    10
## 6962    Suc. Belenes     3       6    NA     5    5     6
## 6963    Suc. Belenes    NA       8     2     4    4     4
## 6964    Suc. Belenes     5       3     5     4    1     4
## 6965    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6966    Suc. Belenes     5       2     1     2    2     1
## 6967    Suc. Belenes    NA      NA    NA     1   NA    NA
## 6968    Suc. Belenes     1      NA     2     3    3     4
## 6969    Suc. Belenes     2      NA     0     0    0     0
## 6970    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6971    Suc. Belenes     3       2     5     7    3     5
## 6972    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6973    Suc. Belenes     4       2     2     2   NA     4
## 6974    Suc. Belenes     1       1     1     1    1     1
## 6975    Suc. Belenes     0      NA     0     0    0     0
## 6976    Suc. Belenes     1       4     3     1    4     1
## 6977    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6978    Suc. Belenes    NA      NA    NA    NA    4     2
## 6979    Suc. Belenes    NA      NA    NA    NA   NA     3
## 6980    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6981    Suc. Belenes     8      11     8     6    6     6
## 6982    Suc. Belenes    NA      NA    NA    NA   NA     4
## 6983    Suc. Belenes    NA      NA     0    NA   NA    NA
## 6984    Suc. Belenes    NA      NA    NA    NA    2    NA
## 6985    Suc. Belenes    NA      NA    NA     1    3    NA
## 6986    Suc. Belenes     4       4     4     1    3     1
## 6987    Suc. Belenes    NA       0     0     0   NA    NA
## 6988    Suc. Belenes    NA       6     3     6    3    NA
## 6989    Suc. Belenes    NA      NA    NA     1    1    NA
## 6990    Suc. Belenes     1       3     3     2    2    NA
## 6991    Suc. Belenes    NA       0     0     0   NA    NA
## 6992    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6993    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6994    Suc. Belenes    NA      NA    NA    NA    2    NA
## 6995    Suc. Belenes     2      NA    NA     1    1    NA
## 6996    Suc. Belenes     2      NA    NA    NA   NA    NA
## 6997    Suc. Belenes     1       1     1     2    1     2
## 6998    Suc. Belenes     3       6     3     3    6     3
## 6999    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7000    Suc. Belenes     1       4     4     3    5     3
## 7001    Suc. Belenes    NA       0     0     0   NA    NA
## 7002    Suc. Belenes     2       4     2    NA    4     2
## 7003    Suc. Belenes    NA      NA    NA    NA   NA     3
## 7004    Suc. Belenes    NA      NA    NA     2   NA    NA
## 7005    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7006    Suc. Belenes     6      NA     6     6    3     6
## 7007    Suc. Belenes     1       0    NA    NA    0     0
## 7008    Suc. Belenes    NA      NA    NA    NA    2    NA
## 7009    Suc. Belenes    NA      NA     2     1    3     2
## 7010    Suc. Belenes     5       5     6     4    4     3
## 7011    Suc. Belenes    NA       0     0     0   NA    NA
## 7012    Suc. Belenes    NA      NA     1    NA   NA    NA
## 7013    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7014    Suc. Belenes     4       3     8     6    7     5
## 7015    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7016    Suc. Belenes     6      NA    NA    NA   NA    NA
## 7017    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7018    Suc. Belenes   116     156   239   186  294   321
## 7019    Suc. Belenes   171     155   241   295  346   415
## 7020    Suc. Belenes   109     107   190   147  152   216
## 7021    Suc. Belenes    29      13    27    30   41    33
## 7022    Suc. Belenes    16      16    30    29   34    42
## 7023    Suc. Belenes    NA      NA     8     4    8     8
## 7024    Suc. Belenes   104      78   118    95   89   147
## 7025    Suc. Belenes     8       8    14    12    9    14
## 7026    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7027    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7028    Suc. Belenes     6      NA    NA    NA   NA    NA
## 7029    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7030    Suc. Belenes    57      19    32    57   38    74
## 7031    Suc. Belenes    12       4    15     6   11    20
## 7032    Suc. Belenes    20      NA    14     9    5    11
## 7033    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7034    Suc. Belenes    NA      NA    NA    NA    3    NA
## 7035    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7036    Suc. Belenes    NA      NA    NA     3    3     3
## 7037    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7038    Suc. Belenes     8      NA    NA    NA   NA    NA
## 7039    Suc. Belenes    NA      NA    NA    NA    4    NA
## 7040    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7041    Suc. Belenes    32       8    15    13    8    17
## 7042    Suc. Belenes   175     125   207   205  241   296
## 7043    Suc. Belenes    32      NA    NA    NA   25    NA
## 7044    Suc. Belenes    34      43    52    50   55    57
## 7045    Suc. Belenes    35      32    36    36   47    51
## 7046    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7047    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7048    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7049    Suc. Belenes     4      NA     5    32   41    40
## 7050    Suc. Belenes    34      25    29    NA   NA    NA
## 7051    Suc. Belenes    12       6    10     9    4    13
## 7052    Suc. Belenes    61      33    72    54   59    69
## 7053    Suc. Belenes    32      48    39    48   34    44
## 7054    Suc. Belenes    NA      NA    NA    NA    0    NA
## 7055    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7056    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7057    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7058    Suc. Belenes    NA      NA    NA    NA    0    NA
## 7059    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7060    Suc. Belenes    NA      NA    NA     4   11    18
## 7061    Suc. Belenes     5       6     6    NA    9     5
## 7062    Suc. Belenes     8      NA    NA    NA   NA    NA
## 7063    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7064    Suc. Belenes    NA      NA    NA     4   11    11
## 7065    Suc. Belenes     6       2     3     3    5     5
## 7066    Suc. Belenes    NA      NA    NA    NA    0    NA
## 7067    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7068    Suc. Belenes    NA      NA    NA     4   11    15
## 7069    Suc. Belenes     5       3     5     3    3     5
## 7070    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7071    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7072    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7073    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7074    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7075    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7076    Suc. Belenes    NA      NA    NA    NA    0    NA
## 7077    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7078    Suc. Belenes     1      NA    NA     4    8    15
## 7079    Suc. Belenes     5       5     6    11    5    11
## 7080    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7081    Suc. Belenes    37      30    47    30   34    42
## 7082    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7083    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7084    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7085    Suc. Belenes     2       2     2     2    6     6
## 7086    Suc. Belenes     6       6     3    19   16    13
## 7087    Suc. Belenes    NA      NA     0    NA   NA    NA
## 7088    Suc. Belenes    NA       3     3     5    3     3
## 7089    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7090    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7091    Suc. Belenes    NA       1    NA    NA   NA    NA
## 7092    Suc. Belenes    NA      NA     1     1    1     1
## 7093    Suc. Belenes     2       1     2     0    2     1
## 7094    Suc. Belenes     1      NA     1    NA    1    NA
## 7095    Suc. Belenes    NA      NA     1    NA   NA     1
## 7096    Suc. Belenes     1       1    NA     1    1     1
## 7097    Suc. Belenes     3       1     4     4    5     3
## 7098    Suc. Belenes     1       1     2     1    2     2
## 7099    Suc. Belenes     1       2     2     2    3     1
## 7100    Suc. Belenes    NA       3     1     1    2     1
## 7101    Suc. Belenes     3      NA     6    NA   NA    NA
## 7102    Suc. Belenes     0       0    NA    NA   NA    NA
## 7103    Suc. Belenes    NA      NA    NA     1   NA    NA
## 7104    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7105    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7106    Suc. Belenes    NA       2    NA    NA    2    NA
## 7107    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7108    Suc. Belenes     8       8     8    11   11     8
## 7109    Suc. Belenes    10      13    10    10   10     3
## 7110    Suc. Belenes    48      44    38    38   38    44
## 7111    Suc. Belenes     5       5     5     8    5     3
## 7112    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7113    Suc. Belenes     6       3    NA     3   NA    NA
## 7114    Suc. Belenes    14      14    11    14   14    21
## 7115    Suc. Belenes    67      77    74    92   92    85
## 7116    Suc. Belenes    NA      NA    NA    NA   NA     2
## 7117    Suc. Belenes     4       6     6    NA    4     4
## 7118    Suc. Belenes     8      11    13     8    8     8
## 7119    Suc. Belenes    32      44    30    49   46    51
## 7120    Suc. Belenes     1       1     3     3    3     2
## 7121    Suc. Belenes    NA      NA     3    NA    2     2
## 7122    Suc. Belenes    NA       2     2    NA    2     2
## 7123    Suc. Belenes     1       2     1     1    2     1
## 7124    Suc. Belenes    NA       1    NA    NA   NA    NA
## 7125    Suc. Belenes     2       2     2     2    3     1
## 7126    Suc. Belenes    NA       1    NA    NA    1    NA
## 7127    Suc. Belenes     1      NA    NA     3    2     1
## 7128    Suc. Belenes     1       0     0     0    0     0
## 7129    Suc. Belenes     1       1     2     0    3     0
## 7130    Suc. Belenes     2       2     4     2    2     3
## 7131    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7132    Suc. Belenes    NA      NA    NA    NA    2    NA
## 7133    Suc. Belenes     1       0     0    NA    0     1
## 7134    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7135    Suc. Belenes     0       0     0     0    0     0
## 7136    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7137    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7138    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7139    Suc. Belenes     1       2    NA     2   NA    NA
## 7140    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7141    Suc. Belenes    NA       1    NA    NA   NA     3
## 7142    Suc. Belenes    NA      NA     3    NA   NA    NA
## 7143    Suc. Belenes    NA      NA    NA     2    2     4
## 7144    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7145    Suc. Belenes    NA       1     1     2    2     1
## 7146    Suc. Belenes    NA       2     1     1    2    NA
## 7147    Suc. Belenes    NA      NA     1     2   NA     1
## 7148    Suc. Belenes    NA       0    NA     0   NA    NA
## 7149    Suc. Belenes     2       2     2     4   NA     2
## 7150    Suc. Belenes     1       2    NA     2   NA    NA
## 7151    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7152    Suc. Belenes    NA       1    NA     3    3    NA
## 7153    Suc. Belenes     6      NA    NA    NA   NA    NA
## 7154    Suc. Belenes    NA      NA    NA     4    4     2
## 7155    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7156    Suc. Belenes     0       1     1     2    1     0
## 7157    Suc. Belenes    NA      NA     1     1   NA    NA
## 7158    Suc. Belenes    NA      NA     1     1   NA     1
## 7159    Suc. Belenes    NA       0    NA     0   NA    NA
## 7160    Suc. Belenes    NA      NA    NA    NA    2    NA
## 7161    Suc. Belenes     1      NA    NA    NA    2    NA
## 7162    Suc. Belenes    NA       1     3    NA   NA    NA
## 7163    Suc. Belenes     3      NA    NA    NA   NA    NA
## 7164    Suc. Belenes     4       4    NA     5   NA    NA
## 7165    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7166    Suc. Belenes     0       0     1     1    2     2
## 7167    Suc. Belenes    NA       2     1     1   NA     2
## 7168    Suc. Belenes    NA       1     1     2    3    NA
## 7169    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7170    Suc. Belenes     1       0     1    NA    0     0
## 7171    Suc. Belenes    NA       1    NA    NA   NA    NA
## 7172    Suc. Belenes    NA       0    NA     0   NA    NA
## 7173    Suc. Belenes     2       2     2     2    2    NA
## 7174    Suc. Belenes     1      NA     2    NA    2    NA
## 7175    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7176    Suc. Belenes    NA       1    NA    NA   NA    NA
## 7177    Suc. Belenes    NA      NA    NA    NA    3    NA
## 7178    Suc. Belenes    NA       4    NA     5    4     5
## 7179    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7180    Suc. Belenes     2       2     2     2    3     3
## 7181    Suc. Belenes     4       2     3     5    2     4
## 7182    Suc. Belenes     2       4     6     4    6     3
## 7183    Suc. Belenes    NA       0    NA     0   NA    NA
## 7184    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7185    Suc. Belenes     1       1     1     1    1     2
## 7186    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7187    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7188    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7189    Suc. Belenes     6       6     8    NA   NA    NA
## 7190    Suc. Belenes    10      10     3    NA    3    NA
## 7191    Suc. Belenes    NA       3    NA    NA   NA    NA
## 7192    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7193    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7194    Suc. Belenes    NA       2    NA    NA   NA    NA
## 7195    Suc. Belenes    NA      NA     1    NA   NA    NA
## 7196    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7197    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7198    Suc. Belenes     2       2     3     3    2     2
## 7199    Suc. Belenes    NA      NA     2    NA   NA     2
## 7200    Suc. Belenes     2       1     1     1   NA     1
## 7201    Suc. Belenes     0      NA    NA    NA   NA    NA
## 7202    Suc. Belenes     2       1     2     1   NA     2
## 7203    Suc. Belenes     6      11     3     8   NA     8
## 7204    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7205    Suc. Belenes    NA       0    NA    NA   NA    NA
## 7206    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7207    Suc. Belenes     1      NA    NA    NA   NA    NA
## 7208    Suc. Belenes     4      15    13     8    2     8
## 7209    Suc. Belenes     3      11    11    11   NA    11
## 7210    Suc. Belenes     6      11     6     6    6    14
## 7211    Suc. Belenes     6      15     8    13    4     2
## 7212    Suc. Belenes     1       3     2     2    1     1
## 7213    Suc. Belenes    NA       2     2    NA   NA    NA
## 7214    Suc. Belenes     4       8    NA    NA    2     4
## 7215    Suc. Belenes     4       6     2     4    4     4
## 7216    Suc. Belenes     2      NA    NA     2   NA    NA
## 7217    Suc. Belenes    11      42    53    48    5    NA
## 7218    Suc. Belenes     3      NA    NA    NA   NA     6
## 7219    Suc. Belenes    16      19    10    16    3     3
## 7220    Suc. Belenes    11      12    14    11    3    NA
## 7221    Suc. Belenes    NA       2    NA    NA   NA    NA
## 7222    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7223    Suc. Belenes     6       6    11     3   NA     3
## 7224    Suc. Belenes    25      49    74    77    7    NA
## 7225    Suc. Belenes    21     109   120   134   25     4
## 7226    Suc. Belenes    13      27    32    32    6    NA
## 7227    Suc. Belenes    40     123   197   190   21     2
## 7228    Suc. Belenes     2       7     7     5    2    NA
## 7229    Suc. Belenes     2      11     3     3   NA    NA
## 7230    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7231    Suc. Belenes     2       4     4     3    2    NA
## 7232    Suc. Belenes     1       1     1     1   NA     1
## 7233    Suc. Belenes    NA      NA    NA     1   NA    NA
## 7234    Suc. Belenes    NA      NA     4    NA    2     2
## 7235    Suc. Belenes     2       0     0     2   NA     0
## 7236    Suc. Belenes    NA      NA    NA    NA    1    NA
## 7237    Suc. Belenes     2       5     6     5    3     4
## 7238    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7239    Suc. Belenes    NA      NA    NA    NA   NA     0
## 7240    Suc. Belenes     2       2     4     2   NA     4
## 7241    Suc. Belenes    NA       0     0    NA   NA    NA
## 7242    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7243    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7244    Suc. Belenes    NA       1     1    NA   NA    NA
## 7245    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7246    Suc. Belenes     1       0     0     0    0     0
## 7247    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7248    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7249    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7250    Suc. Belenes    NA      NA    NA    NA   NA     3
## 7251    Suc. Belenes    NA      NA     3    17   NA    NA
## 7252    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7253    Suc. Belenes    NA      NA     1    NA    0    NA
## 7254    Suc. Belenes     2       5    10    30    1    NA
## 7255    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7256    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7257    Suc. Belenes    NA       0     0     0   NA    NA
## 7258    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7259    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7260    Suc. Belenes    NA      NA     0     0    0    NA
## 7261    Suc. Belenes     2       5     8    15    1    NA
## 7262    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7263    Suc. Belenes    NA       0    NA    NA   NA    NA
## 7264    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7265    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7266    Suc. Belenes    NA      NA     0    NA    2    NA
## 7267    Suc. Belenes     2       3     8    15    1    NA
## 7268    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7269    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7270    Suc. Belenes    NA       3    NA    11   NA     6
## 7271    Suc. Belenes    NA       0    NA    NA   NA    NA
## 7272    Suc. Belenes    NA       2     4     4   NA    NA
## 7273    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7274    Suc. Belenes    NA       0     0     0   NA    NA
## 7275    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7276    Suc. Belenes    NA      NA    NA    NA   NA     3
## 7277    Suc. Belenes     3      NA     3    20    3     3
## 7278    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7279    Suc. Belenes     1      NA     1    NA    0    NA
## 7280    Suc. Belenes     4      10    10    30    1    NA
## 7281    Suc. Belenes    NA      10    NA    NA   NA    NA
## 7282    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7283    Suc. Belenes    NA       0     0     0   NA    NA
## 7284    Suc. Belenes    NA      NA    NA     1   NA    NA
## 7285    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7286    Suc. Belenes     9       9     6     4    6     1
## 7287    Suc. Belenes    NA      NA    NA    NA    2     6
## 7288    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7289    Suc. Belenes     4       2     2    NA    6     2
## 7290    Suc. Belenes     6       3     3    NA    3     3
## 7291    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7292    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7293    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7294    Suc. Belenes    NA       5    NA    NA   NA    NA
## 7295    Suc. Belenes    NA       2     0    NA    1     2
## 7296    Suc. Belenes    NA      NA    NA    NA   NA     0
## 7297    Suc. Belenes    NA      NA     1    NA    1     2
## 7298    Suc. Belenes     2      NA    NA    NA   NA    NA
## 7299    Suc. Belenes     2      NA     2    NA    1     1
## 7300    Suc. Belenes     3       3    NA    NA    3     6
## 7301    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7302    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7303    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7304    Suc. Belenes     3      NA    NA    NA   NA     1
## 7305    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7306    Suc. Belenes     1      NA    NA    NA   NA    NA
## 7307    Suc. Belenes     4       2    NA     4    2     2
## 7308    Suc. Belenes     3      NA    NA    NA   NA    NA
## 7309    Suc. Belenes     2      NA     2     2    2     4
## 7310    Suc. Belenes    NA      NA    NA    NA    0    NA
## 7311    Suc. Belenes    17      13    17     8   19    13
## 7312    Suc. Belenes    NA      NA    NA    NA   NA     3
## 7313    Suc. Belenes   136     146   120   168  152   178
## 7314    Suc. Belenes     8       9     9     9   11    11
## 7315    Suc. Belenes     7       7    11    14   11    18
## 7316    Suc. Belenes   183     232    99   236  222   215
## 7317    Suc. Belenes     6       8    11    11   13     8
## 7318    Suc. Belenes   101     152    55   127  112   131
## 7319    Suc. Belenes     4       4     5     5    6     6
## 7320    Suc. Belenes     3       3     3     2    5     3
## 7321    Suc. Belenes     4       6     4     7    5     5
## 7322    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7323    Suc. Belenes     1      NA     1     1    1     3
## 7324    Suc. Belenes    NA      NA    NA    NA    1    NA
## 7325    Suc. Belenes     1      NA    NA    NA   NA     1
## 7326    Suc. Belenes     1       0     0    NA    0     0
## 7327    Suc. Belenes     1       1     0     1    1     2
## 7328    Suc. Belenes     3       3     1     2    1     3
## 7329    Suc. Belenes    NA      NA    NA    NA   NA     0
## 7330    Suc. Belenes    NA      NA    NA    NA    1     1
## 7331    Suc. Belenes     0       0     0    NA    0     0
## 7332    Suc. Belenes     1      NA    NA    NA   NA    NA
## 7333    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7334    Suc. Belenes     2      NA     2     2    2     4
## 7335    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7336    Suc. Belenes    NA      NA    NA    NA   NA     3
## 7337    Suc. Belenes     4       4     7    11    5     3
## 7338    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7339    Suc. Belenes     0       0    NA    NA   NA    NA
## 7340    Suc. Belenes     1       1     4     3    2     2
## 7341    Suc. Belenes     1       3    NA     3    1     1
## 7342    Suc. Belenes    NA       0    NA     0   NA    NA
## 7343    Suc. Belenes     2       2     2    NA    4    NA
## 7344    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7345    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7346    Suc. Belenes     4       4     1     8    5     3
## 7347    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7348    Suc. Belenes    NA       0    NA    NA   NA    NA
## 7349    Suc. Belenes     1       3     4     3    2     2
## 7350    Suc. Belenes     2      NA     1     1    1     1
## 7351    Suc. Belenes    NA       0    NA     0   NA    NA
## 7352    Suc. Belenes     2       2    NA     2   NA    NA
## 7353    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7354    Suc. Belenes     1       1     1     2    5     3
## 7355    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7356    Suc. Belenes    NA       0    NA    NA   NA    NA
## 7357    Suc. Belenes     1       1     2     3    2     2
## 7358    Suc. Belenes     1      NA     1     1   NA     1
## 7359    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7360    Suc. Belenes    NA      NA     3    NA   NA    NA
## 7361    Suc. Belenes     0      NA    NA    NA   NA    NA
## 7362    Suc. Belenes    NA       0    NA     0   NA    NA
## 7363    Suc. Belenes     2       2     2     4   NA     2
## 7364    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7365    Suc. Belenes    NA      NA    NA    NA   NA     3
## 7366    Suc. Belenes     4       4    10    11    5     6
## 7367    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7368    Suc. Belenes     0       0     0    NA    2     0
## 7369    Suc. Belenes     1       1     4     5    2     2
## 7370    Suc. Belenes     1      NA     1     1   NA     1
## 7371    Suc. Belenes    NA       0    NA     0   NA    NA
## 7372    Suc. Belenes    NA      NA    NA    NA    3     1
## 7373    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7374    Suc. Belenes    NA      NA    NA    NA    1    NA
## 7375    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7376    Suc. Belenes     2       6     4     2    2    NA
## 7377    Suc. Belenes     3       3     3     3    6    NA
## 7378    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7379    Suc. Belenes     1      NA     0    NA   NA    NA
## 7380    Suc. Belenes     0       1    NA    NA   NA     1
## 7381    Suc. Belenes    NA       1    NA     1    1     1
## 7382    Suc. Belenes     5       1    14    NA   NA     2
## 7383    Suc. Belenes     0       0     0     0   NA     1
## 7384    Suc. Belenes     1       1     1     1    1    NA
## 7385    Suc. Belenes     2       2     2     1    1    NA
## 7386    Suc. Belenes     3       3     3    NA   NA    NA
## 7387    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7388    Suc. Belenes    NA      NA    NA    NA    0     0
## 7389    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7390    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7391    Suc. Belenes     2       4    NA    NA   NA    NA
## 7392    Suc. Belenes    NA       2    NA     2    2     4
## 7393    Suc. Belenes    NA       3    NA    NA   NA    NA
## 7394    Suc. Belenes     8       2     6    11    4     8
## 7395    Suc. Belenes    NA      NA    NA    NA    1     1
## 7396    Suc. Belenes     3      NA    NA    NA   NA    NA
## 7397    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7398    Suc. Belenes    NA       4    13     6   32     2
## 7399    Suc. Belenes     5       5    13    13    5     5
## 7400    Suc. Belenes     3      NA     3     3   10    13
## 7401    Suc. Belenes    63      86    92    89   82    70
## 7402    Suc. Belenes    11       8     9    14   17     5
## 7403    Suc. Belenes    NA      NA    NA     6    8    NA
## 7404    Suc. Belenes    NA      NA    NA     7   46    NA
## 7405    Suc. Belenes   190     215   204   201  254   162
## 7406    Suc. Belenes    NA      NA     4     2   21    NA
## 7407    Suc. Belenes     6      NA    NA     6   NA    NA
## 7408    Suc. Belenes    99     101   190   220  235   144
## 7409    Suc. Belenes     3       6     3     3    9     3
## 7410    Suc. Belenes     3       2     2     3    3     1
## 7411    Suc. Belenes    NA       2    NA    NA    3     2
## 7412    Suc. Belenes    NA      NA     2     2    2     6
## 7413    Suc. Belenes     3       4     3     3    3     5
## 7414    Suc. Belenes     1       1     1     1    1    NA
## 7415    Suc. Belenes     1      NA    NA    NA    1    NA
## 7416    Suc. Belenes     1      NA    NA     1   NA    NA
## 7417    Suc. Belenes    NA      NA    NA    NA    0     0
## 7418    Suc. Belenes    NA       2    NA    NA   NA    NA
## 7419    Suc. Belenes     3       2     0    NA    0    NA
## 7420    Suc. Belenes    NA       0    NA    NA    1    NA
## 7421    Suc. Belenes     3       3     9    NA    6     2
## 7422    Suc. Belenes    NA      NA    NA    NA   NA     0
## 7423    Suc. Belenes    NA      NA     2     2    6    NA
## 7424    Suc. Belenes     0      NA     0     1    1     1
## 7425    Suc. Belenes     0       0     1     0    0    NA
## 7426    Suc. Belenes    NA       1    NA     1    1     1
## 7427    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7428    Suc. Belenes     4       2     2     2   NA     2
## 7429    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7430    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7431    Suc. Belenes    NA      NA     6    NA    8    NA
## 7432    Suc. Belenes     0       1    NA    NA   NA     1
## 7433    Suc. Belenes     1       1     3     1    2     2
## 7434    Suc. Belenes     3       3     2     9    4     1
## 7435    Suc. Belenes     1       4     2     2    2     1
## 7436    Suc. Belenes    NA       1    NA     0    0     0
## 7437    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7438    Suc. Belenes    NA      NA    NA    NA    3     6
## 7439    Suc. Belenes     0       0    NA    NA   NA     0
## 7440    Suc. Belenes    NA       1     0    NA    1     2
## 7441    Suc. Belenes     1       1     2     9    4     1
## 7442    Suc. Belenes    NA      NA    NA    NA    1     1
## 7443    Suc. Belenes    NA       1    NA     0    0     0
## 7444    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7445    Suc. Belenes    NA      NA    NA    NA    8    NA
## 7446    Suc. Belenes     0       1    NA    NA   NA     1
## 7447    Suc. Belenes     1       1     1    NA    2     2
## 7448    Suc. Belenes     1       1     2     5   NA     1
## 7449    Suc. Belenes    NA      NA     1    NA    1    NA
## 7450    Suc. Belenes    NA      NA     1    NA    1     1
## 7451    Suc. Belenes    NA      NA    NA    NA   NA     3
## 7452    Suc. Belenes     3       3     3     3    6    NA
## 7453    Suc. Belenes     0       1     2    NA   NA     0
## 7454    Suc. Belenes    NA       2     2     2   NA     2
## 7455    Suc. Belenes    NA       1    NA     0    0     0
## 7456    Suc. Belenes     4      NA     4    NA   NA     2
## 7457    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7458    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7459    Suc. Belenes    NA       6     6     3    8    NA
## 7460    Suc. Belenes     0       1    NA    NA   NA     1
## 7461    Suc. Belenes     2       2     3     1    3     2
## 7462    Suc. Belenes     3       1     8     7    2     1
## 7463    Suc. Belenes    NA      NA     2     2    1     1
## 7464    Suc. Belenes    NA       1    NA     0    0     0
## 7465    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7466    Suc. Belenes     2       1    10     5    6     9
## 7467    Suc. Belenes    NA      NA    NA    NA   NA     0
## 7468    Suc. Belenes    NA      NA    NA    NA    0    NA
## 7469    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7470    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7471    Suc. Belenes    NA      25    13     2   NA     2
## 7472    Suc. Belenes    NA     111    25     3   NA    16
## 7473    Suc. Belenes    NA      NA    NA     0   NA    NA
## 7474    Suc. Belenes    NA      NA    11    NA   NA    NA
## 7475    Suc. Belenes    NA      10     3    NA   NA     3
## 7476    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7477    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7478    Suc. Belenes    NA      NA    NA     0    1     0
## 7479    Suc. Belenes     3      10     6     7    7     7
## 7480    Suc. Belenes     6       5     3     5    8     6
## 7481    Suc. Belenes     1       1     1     0    2     2
## 7482    Suc. Belenes     1       0     1     0    0     1
## 7483    Suc. Belenes     2       3     1     1    1     1
## 7484    Suc. Belenes     1       2     4     5    5     3
## 7485    Suc. Belenes     1       0     0     1    0    NA
## 7486    Suc. Belenes    NA       1     1     3    1     1
## 7487    Suc. Belenes     2      NA    NA    NA   NA    NA
## 7488    Suc. Belenes     2       2     2     1   NA     1
## 7489    Suc. Belenes     3       3    NA     6    3     3
## 7490    Suc. Belenes     0       0     0     1    1     0
## 7491    Suc. Belenes     1       1     1     2    1     3
## 7492    Suc. Belenes    NA      NA    NA    NA   NA     3
## 7493    Suc. Belenes     2      NA    NA    NA    2     2
## 7494    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7495    Suc. Belenes    11       6     6     6    6    11
## 7496    Suc. Belenes    NA      NA    NA    NA    1    NA
## 7497    Suc. Belenes    NA       2     2    NA   NA     2
## 7498    Suc. Belenes    NA      NA    NA    NA    2    NA
## 7499    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7500    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7501    Suc. Belenes    37      32    16    45   29    18
## 7502    Suc. Belenes    NA      NA    NA    NA   NA    13
## 7503    Suc. Belenes    19      10    13    10   16    16
## 7504    Suc. Belenes    14      14    14    12   11    18
## 7505    Suc. Belenes    NA      11    11    14    3    14
## 7506    Suc. Belenes    18      14    21    37   18    49
## 7507    Suc. Belenes    46      32    35    56   49    39
## 7508    Suc. Belenes    NA      NA    NA    NA    2     6
## 7509    Suc. Belenes    36      30    32    38   32    46
## 7510    Suc. Belenes    76      91    95    97   87    72
## 7511    Suc. Belenes     6       6     4     5    6     9
## 7512    Suc. Belenes     8       6     5     6    2    11
## 7513    Suc. Belenes     8       4    10    12   10    10
## 7514    Suc. Belenes     5       4     6     3    5     4
## 7515    Suc. Belenes    NA       1    NA    NA   NA    NA
## 7516    Suc. Belenes     1       1     1     1    3     2
## 7517    Suc. Belenes    NA      NA    NA     1    1     1
## 7518    Suc. Belenes    NA      NA     1     1    3     4
## 7519    Suc. Belenes    NA      NA    NA    NA    1    NA
## 7520    Suc. Belenes     2       0     0     1   NA     0
## 7521    Suc. Belenes    NA      NA    NA    NA    0    NA
## 7522    Suc. Belenes     2       3     4     4    4     5
## 7523    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7524    Suc. Belenes    NA      NA     4    NA    2    NA
## 7525    Suc. Belenes    NA      NA     0    NA   NA     0
## 7526    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7527    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7528    Suc. Belenes     0       0     0     0   NA     0
## 7529    Suc. Belenes     3       1     1     1   NA     1
## 7530    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7531    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7532    Suc. Belenes     4      NA    NA    NA    2     2
## 7533    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7534    Suc. Belenes    NA       3    NA     3    3    NA
## 7535    Suc. Belenes     1       0     1     0    0     1
## 7536    Suc. Belenes    NA       0    NA     0   NA     2
## 7537    Suc. Belenes     4       4     4     2    8     2
## 7538    Suc. Belenes     3       4     1    NA    4     4
## 7539    Suc. Belenes    NA       2     2    NA   NA     2
## 7540    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7541    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7542    Suc. Belenes     1       0     0     0    0     0
## 7543    Suc. Belenes    NA      NA    NA     0   NA    NA
## 7544    Suc. Belenes    NA      NA    NA     2    2     2
## 7545    Suc. Belenes     1       3    NA     3    3    NA
## 7546    Suc. Belenes     2       2    NA    NA    2    NA
## 7547    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7548    Suc. Belenes     3      NA    NA    NA   NA    NA
## 7549    Suc. Belenes     1       0     1     0    0     1
## 7550    Suc. Belenes    NA      NA    NA     0   NA    NA
## 7551    Suc. Belenes    NA      NA    NA     2    2     2
## 7552    Suc. Belenes     3       1     3    NA    4     1
## 7553    Suc. Belenes    NA       1    NA    NA   NA    NA
## 7554    Suc. Belenes    NA      NA     3    NA   NA     3
## 7555    Suc. Belenes     4       2     2    NA   NA     2
## 7556    Suc. Belenes     3       1    NA     3    3     4
## 7557    Suc. Belenes     6       2     4    NA    4     4
## 7558    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7559    Suc. Belenes    NA      NA     3     6    6     3
## 7560    Suc. Belenes     1       0     1     0    0     1
## 7561    Suc. Belenes     0      NA     0     0    2    NA
## 7562    Suc. Belenes     2       4     2     4    6     4
## 7563    Suc. Belenes     6       4     4     4    6     4
## 7564    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7565    Suc. Belenes     2      NA     4     4    4     5
## 7566    Suc. Belenes    NA      NA    NA    NA   NA     0
## 7567    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7568    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7569    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7570    Suc. Belenes     2       6     4    11   15    15
## 7571    Suc. Belenes    16       6     6    19   22    22
## 7572    Suc. Belenes    NA      NA    NA     0   NA    NA
## 7573    Suc. Belenes     5       3     5     5    8     8
## 7574    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7575    Suc. Belenes    NA      NA    NA     1   NA    NA
## 7576    Suc. Belenes    NA      NA    NA     2    2    NA
## 7577    Suc. Belenes     1       1     0     0    0     0
## 7578    Suc. Belenes     1      NA    NA    NA   NA     1
## 7579    Suc. Belenes     4       5     5     6    4     3
## 7580    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7581    Suc. Belenes    NA       1     1     2    3     4
## 7582    Suc. Belenes    NA       2     2     1    1     2
## 7583    Suc. Belenes     8       3     8    11   11     8
## 7584    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7585    Suc. Belenes     0       0     0     0    0     0
## 7586    Suc. Belenes     1       1     1     1    1    NA
## 7587    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7588    Suc. Belenes    NA       4    NA    NA    2    NA
## 7589    Suc. Belenes     1       1    NA     1    1     1
## 7590    Suc. Belenes     8      13     6     6    8     8
## 7591    Suc. Belenes    NA      NA    NA    NA   NA     8
## 7592    Suc. Belenes    14      18    11    21   21    14
## 7593    Suc. Belenes    19       4     8     6    8     6
## 7594    Suc. Belenes    NA       2    NA     1    1     2
## 7595    Suc. Belenes     2       2     3     2    2     2
## 7596    Suc. Belenes    NA       2     6    NA   NA     2
## 7597    Suc. Belenes    NA       2     2    NA    2     2
## 7598    Suc. Belenes     2      NA    NA    NA   NA    NA
## 7599    Suc. Belenes    95      48    61    66   50    29
## 7600    Suc. Belenes    NA      NA    NA    NA   NA    29
## 7601    Suc. Belenes    13      10    16    29   29    22
## 7602    Suc. Belenes    12       9     9    12    9    12
## 7603    Suc. Belenes    NA      11    NA     6   NA    NA
## 7604    Suc. Belenes   120     120    81   120  109   141
## 7605    Suc. Belenes    99     134    60    81   92    88
## 7606    Suc. Belenes    NA      NA     2    NA   NA    NA
## 7607    Suc. Belenes    21      15    17     8   11    11
## 7608    Suc. Belenes    42      36    36    40   44    46
## 7609    Suc. Belenes    99      95    85    99   78    74
## 7610    Suc. Belenes     5       3     4     5    4     4
## 7611    Suc. Belenes     8       6     3     5    6     3
## 7612    Suc. Belenes     4       4     6     4    6     4
## 7613    Suc. Belenes     4       3     2     3    4     1
## 7614    Suc. Belenes    NA      NA    NA    NA    1    NA
## 7615    Suc. Belenes     1       2     2     1    1     1
## 7616    Suc. Belenes    NA      NA    NA     1   NA    NA
## 7617    Suc. Belenes     3       1     4     1    5     4
## 7618    Suc. Belenes     1       0     1     1    1     0
## 7619    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7620    Suc. Belenes     6       5     8     7    5     4
## 7621    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7622    Suc. Belenes    NA       2     4    NA    4    NA
## 7623    Suc. Belenes     1       1     0     1    0     1
## 7624    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7625    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7626    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7627    Suc. Belenes     3       3     2     2    1     2
## 7628    Suc. Belenes    NA      NA     1     1    1     2
## 7629    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7630    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7631    Suc. Belenes     2       2     1     2    2     2
## 7632    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7633    Suc. Belenes     4       1     1     3    1     1
## 7634    Suc. Belenes     1       1     0     0    0     0
## 7635    Suc. Belenes     1       0     0     1    3     2
## 7636    Suc. Belenes     2       2     3     2    3     2
## 7637    Suc. Belenes     3       3     1     2    2     3
## 7638    Suc. Belenes     0      NA    NA     0    0     1
## 7639    Suc. Belenes    NA       0     0    NA   NA     0
## 7640    Suc. Belenes     2       2     1     2    2     2
## 7641    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7642    Suc. Belenes     4       1     1     3    1     1
## 7643    Suc. Belenes     0       0     0     0    0     0
## 7644    Suc. Belenes     2      NA     0     1    1     0
## 7645    Suc. Belenes     2       2     3     2    3     2
## 7646    Suc. Belenes     3       2     1     2    2     2
## 7647    Suc. Belenes     0      NA    NA     0    0     1
## 7648    Suc. Belenes    NA       0     0    NA   NA     0
## 7649    Suc. Belenes     2       2     1     2    2     2
## 7650    Suc. Belenes     4       1     1     3    1     1
## 7651    Suc. Belenes     1       1     0     0    0     0
## 7652    Suc. Belenes     2       0     1     1    1     1
## 7653    Suc. Belenes     2       2     3     2    3     2
## 7654    Suc. Belenes     3       2     1     2    1     3
## 7655    Suc. Belenes     0      NA    NA     0    0     1
## 7656    Suc. Belenes    NA      NA     1     1   NA     1
## 7657    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7658    Suc. Belenes    NA      NA     3    NA   NA    NA
## 7659    Suc. Belenes     1      NA    NA    NA   NA    NA
## 7660    Suc. Belenes    NA       0     0    NA   NA     0
## 7661    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7662    Suc. Belenes     2       2     1     2    2     2
## 7663    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7664    Suc. Belenes     4       4     9     3    4     1
## 7665    Suc. Belenes     1       1     0     0    0     0
## 7666    Suc. Belenes     1       0     1     1    1     2
## 7667    Suc. Belenes     2       2     3     2    3     2
## 7668    Suc. Belenes     3       4     1     1    3     3
## 7669    Suc. Belenes     0      NA    NA     0    0     1
## 7670    Suc. Belenes    NA       0     0    NA   NA     0
## 7671    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7672    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7673    Suc. Belenes     6       6     5     7    4     5
## 7674    Suc. Belenes    NA      NA    NA    NA   NA     0
## 7675    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7676    Suc. Belenes     8       4     6    17   17    11
## 7677    Suc. Belenes    10      10    10    29   44    29
## 7678    Suc. Belenes    NA      NA    NA     0    0     1
## 7679    Suc. Belenes     3       5     5     8   10     5
## 7680    Suc. Belenes     1       3     3     1    5     8
## 7681    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7682    Suc. Belenes     3       1     3     3    2     5
## 7683    Suc. Belenes     1       1    NA     1    1    NA
## 7684    Suc. Belenes    NA      NA     4    NA   NA     6
## 7685    Suc. Belenes     2       1     2     1    1     1
## 7686    Suc. Belenes    NA      NA    NA    NA    1     1
## 7687    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7688    Suc. Belenes    NA      NA     2    NA   NA    NA
## 7689    Suc. Belenes     1       1    NA     1    1     1
## 7690    Suc. Belenes     2       2     2    NA    2     4
## 7691    Suc. Belenes    NA      NA     1     1   NA    NA
## 7692    Suc. Belenes     6       8     8    13   11    13
## 7693    Suc. Belenes    20      14    25    37   23    25
## 7694    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7695    Suc. Belenes     4       6     6    13    6     4
## 7696    Suc. Belenes     1       1    NA     1    1     1
## 7697    Suc. Belenes     2       4     2     4    4     4
## 7698    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7699    Suc. Belenes    69      34    42    58   55    34
## 7700    Suc. Belenes    NA      NA    NA    NA   NA    25
## 7701    Suc. Belenes    25      32    38    44   51    48
## 7702    Suc. Belenes     2       2     2     2    2     2
## 7703    Suc. Belenes     6       6    11     6   11     8
## 7704    Suc. Belenes    17       8     6     6    6     6
## 7705    Suc. Belenes   109      39    85    99   95    67
## 7706    Suc. Belenes   201     159   201   204  218   187
## 7707    Suc. Belenes     7       7     7    10    7     3
## 7708    Suc. Belenes    15      11    21    19   17    23
## 7709    Suc. Belenes    30      17    27    34   32    30
## 7710    Suc. Belenes    82      87   110   142  110   101
## 7711    Suc. Belenes     5       4     6    10    9     8
## 7712    Suc. Belenes     2       3     3     5    3     3
## 7713    Suc. Belenes     6       6     6     8    8     8
## 7714    Suc. Belenes     6       3     5     5    6     3
## 7715    Suc. Belenes     1       1     2     1    1     4
## 7716    Suc. Belenes    NA      NA    NA     1   NA    NA
## 7717    Suc. Belenes    NA       1     1     1    2     6
## 7718    Suc. Belenes     1       0     0     0    0     0
## 7719    Suc. Belenes     2       1     1     1    2     3
## 7720    Suc. Belenes     3       3     6     1    2     7
## 7721    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7722    Suc. Belenes     2       2     6     2    2     6
## 7723    Suc. Belenes     1       1     3     1    0     1
## 7724    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7725    Suc. Belenes     0       0     0     0    0     0
## 7726    Suc. Belenes     1      NA    NA    NA   NA    NA
## 7727    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7728    Suc. Belenes     4       2     4     4    6     4
## 7729    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7730    Suc. Belenes    NA      NA    NA    NA   NA     3
## 7731    Suc. Belenes    NA       3     6     3   NA    NA
## 7732    Suc. Belenes    NA       0     1     0    2    NA
## 7733    Suc. Belenes    NA       1    NA     1    1    NA
## 7734    Suc. Belenes     2       2     3     6    4     2
## 7735    Suc. Belenes    NA       0     0    NA   NA    NA
## 7736    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7737    Suc. Belenes    NA      NA    NA     0   NA    NA
## 7738    Suc. Belenes    NA       1    NA     1    1    NA
## 7739    Suc. Belenes    NA       0     0    NA   NA    NA
## 7740    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7741    Suc. Belenes    NA      NA    NA     0   NA    NA
## 7742    Suc. Belenes    NA       1    NA     1    3    NA
## 7743    Suc. Belenes    NA      NA    NA    NA   NA     3
## 7744    Suc. Belenes    NA       3     3     6    3     3
## 7745    Suc. Belenes    NA      NA    NA     2    2    NA
## 7746    Suc. Belenes    NA       0     0    NA   NA    NA
## 7747    Suc. Belenes     4      NA     2     2    4     2
## 7748    Suc. Belenes     6       3     6    10   10     6
## 7749    Suc. Belenes    NA      NA    NA    NA   NA     3
## 7750    Suc. Belenes     6      NA    NA    NA    3     3
## 7751    Suc. Belenes     0      NA    NA     0   NA     2
## 7752    Suc. Belenes     2       1     2     3    3     4
## 7753    Suc. Belenes     2      10     4     5    3     4
## 7754    Suc. Belenes    NA       0     0    NA   NA    NA
## 7755    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7756    Suc. Belenes     2       6     6     4    8     7
## 7757    Suc. Belenes    NA      NA    NA    NA   NA     0
## 7758    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7759    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7760    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7761    Suc. Belenes     4      11     2     2    8     2
## 7762    Suc. Belenes     3      NA     3     3    3     3
## 7763    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7764    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7765    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7766    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7767    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7768    Suc. Belenes    NA      NA    NA    NA    1    NA
## 7769    Suc. Belenes    NA      NA     0    NA   NA    NA
## 7770    Suc. Belenes    NA      NA    NA     1   NA    NA
## 7771    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7772    Suc. Belenes     3       3     2    10    2     4
## 7773    Suc. Belenes    NA      NA    NA    NA   NA     0
## 7774    Suc. Belenes    NA       1     1     2   NA     1
## 7775    Suc. Belenes     2       2     2    NA    4    NA
## 7776    Suc. Belenes     2       3     1     3    2     1
## 7777    Suc. Belenes     3       6     6    14    6    NA
## 7778    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7779    Suc. Belenes     6       2     4     4    4     8
## 7780    Suc. Belenes     6       2     8     8    4     8
## 7781    Suc. Belenes    NA      NA     2     1    3     2
## 7782    Suc. Belenes     1       1     1     2    1     1
## 7783    Suc. Belenes    NA      NA     2     2    2    NA
## 7784    Suc. Belenes     3      NA    NA    NA    3    NA
## 7785    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7786    Suc. Belenes     8      16    37    21   24    18
## 7787    Suc. Belenes    NA      NA    NA    NA   NA    10
## 7788    Suc. Belenes     3       3     3     6    3     3
## 7789    Suc. Belenes     3       3     8     8    3     5
## 7790    Suc. Belenes    18      35    81    28   53    53
## 7791    Suc. Belenes    46      56    53    32   28    39
## 7792    Suc. Belenes     6       4    17     6   13     6
## 7793    Suc. Belenes    11      15    25    17   17    17
## 7794    Suc. Belenes    44      36    46    57   40    40
## 7795    Suc. Belenes     2       5     6     5    7     8
## 7796    Suc. Belenes    NA       2     5     3    3     3
## 7797    Suc. Belenes     2       6     2     2    2     2
## 7798    Suc. Belenes     4       2     2    NA    3     2
## 7799    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7800    Suc. Belenes    NA       1     1     2    2     1
## 7801    Suc. Belenes    NA       1    NA     1   NA    NA
## 7802    Suc. Belenes     3       3     3     8    3     8
## 7803    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7804    Suc. Belenes     1      NA    NA    NA   NA    NA
## 7805    Suc. Belenes     2       0     0     0    0     0
## 7806    Suc. Belenes    NA       1    NA    NA    1    NA
## 7807    Suc. Belenes     4       9     7     9    7     9
## 7808    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7809    Suc. Belenes    NA       2     2    NA    2    NA
## 7810    Suc. Belenes     0       0     1    NA    0    NA
## 7811    Suc. Belenes    NA      NA    NA     1   NA    NA
## 7812    Suc. Belenes     1      NA    NA    NA   NA    NA
## 7813    Suc. Belenes     1       3     1     1    1     1
## 7814    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7815    Suc. Belenes     3      NA    NA     3   NA    NA
## 7816    Suc. Belenes    NA      NA     0    NA   NA    NA
## 7817    Suc. Belenes     0       2     2     1   NA     2
## 7818    Suc. Belenes     1       3     3     3    1     4
## 7819    Suc. Belenes    NA       0     0     0    0     0
## 7820    Suc. Belenes    NA      NA     3    NA   NA    NA
## 7821    Suc. Belenes    NA      NA     0    NA   NA    NA
## 7822    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7823    Suc. Belenes     1       1     1     1    1     2
## 7824    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7825    Suc. Belenes    NA       0     0     0    0     0
## 7826    Suc. Belenes    NA      NA     0    NA   NA    NA
## 7827    Suc. Belenes    NA       0    NA    NA   NA    NA
## 7828    Suc. Belenes     1       1     1     1    1     2
## 7829    Suc. Belenes    NA      NA     1    NA   NA    NA
## 7830    Suc. Belenes     3       6     3    NA    6     3
## 7831    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7832    Suc. Belenes     4       1     3     1    4    NA
## 7833    Suc. Belenes    NA       0     0     0    0     0
## 7834    Suc. Belenes    NA       3     3     8   NA     6
## 7835    Suc. Belenes    NA      NA     0    NA   NA    NA
## 7836    Suc. Belenes    NA       2     3     2    1     2
## 7837    Suc. Belenes     1       1     1     1    3     2
## 7838    Suc. Belenes     4       1     3     4    4     3
## 7839    Suc. Belenes    NA       0     0     0    0     0
## 7840    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7841    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7842    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7843    Suc. Belenes     6      10     3     6    4     7
## 7844    Suc. Belenes    NA      NA    NA    NA   NA     0
## 7845    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7846    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7847    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7848    Suc. Belenes    13      27     4     2    6    19
## 7849    Suc. Belenes    10      16    19     6    6    22
## 7850    Suc. Belenes     5       3    NA     3    3     8
## 7851    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7852    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7853    Suc. Belenes    NA       1     1    NA   NA    NA
## 7854    Suc. Belenes     1      NA    NA    NA   NA     1
## 7855    Suc. Belenes     8      NA    NA    NA    7     8
## 7856    Suc. Belenes    NA      NA    NA    NA   NA     0
## 7857    Suc. Belenes     1       1     1     2    2     2
## 7858    Suc. Belenes     2       1     2     2    2     1
## 7859    Suc. Belenes     3       3     3     6    6     3
## 7860    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7861    Suc. Belenes    NA      NA    NA     1   NA    NA
## 7862    Suc. Belenes    NA      NA     1    NA   NA     1
## 7863    Suc. Belenes    NA       2    NA    NA   NA    NA
## 7864    Suc. Belenes     2       2     2     2    2     2
## 7865    Suc. Belenes     4       8     4     8    8     8
## 7866    Suc. Belenes     8       4     4     6    6     6
## 7867    Suc. Belenes     2       4     2     4    5     2
## 7868    Suc. Belenes    NA      NA    NA     3    3     2
## 7869    Suc. Belenes     4       4     2     2    2     4
## 7870    Suc. Belenes     2      NA     2     2    2     2
## 7871    Suc. Belenes    36      25    51    11   49     8
## 7872    Suc. Belenes     3      NA    NA    NA   NA    NA
## 7873    Suc. Belenes     3      NA    NA    NA   NA    NA
## 7874    Suc. Belenes    22      29    32    63  105    48
## 7875    Suc. Belenes     6      14     8    14   15     9
## 7876    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7877    Suc. Belenes     3      NA    NA     1   NA    NA
## 7878    Suc. Belenes    35      67    60    70   95    18
## 7879    Suc. Belenes   254     303   359   504  313   349
## 7880    Suc. Belenes    15      25    25    32   30    25
## 7881    Suc. Belenes    61      78   101   125  144    74
## 7882    Suc. Belenes     5       5     6     7    7     4
## 7883    Suc. Belenes     3       2     6     5    8     5
## 7884    Suc. Belenes     4       2     4     2    6     2
## 7885    Suc. Belenes     1       1     1     1   NA     1
## 7886    Suc. Belenes    NA       1     1    NA   NA     1
## 7887    Suc. Belenes     1       1     1     2    2     1
## 7888    Suc. Belenes    NA      NA    NA     1   NA    NA
## 7889    Suc. Belenes    NA       1     3     6    6    10
## 7890    Suc. Belenes     2      NA     1     0    2     0
## 7891    Suc. Belenes    NA       1    NA    NA   NA    NA
## 7892    Suc. Belenes     3       5     8     9    2    12
## 7893    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7894    Suc. Belenes    NA      NA    NA    NA   NA     2
## 7895    Suc. Belenes    NA       0    NA    NA    0    NA
## 7896    Suc. Belenes     0      NA     0     0    0     0
## 7897    Suc. Belenes    NA      NA    NA     1    1    NA
## 7898    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7899    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7900    Suc. Belenes     2       2     2    NA   NA    NA
## 7901    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7902    Suc. Belenes     1      NA     3     8    1     3
## 7903    Suc. Belenes    NA       4    NA    NA    4    NA
## 7904    Suc. Belenes    NA      NA    NA    NA    1     0
## 7905    Suc. Belenes     1      NA     4     5    1     5
## 7906    Suc. Belenes     1       1     1     1    1     1
## 7907    Suc. Belenes    NA       0    NA    NA   NA    NA
## 7908    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7909    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7910    Suc. Belenes     1      NA    NA     6    1    NA
## 7911    Suc. Belenes    NA      NA    NA    NA    4    NA
## 7912    Suc. Belenes    NA      NA    NA    NA    0     1
## 7913    Suc. Belenes     1      NA     2     1    1     1
## 7914    Suc. Belenes    NA       1     1    NA    1     1
## 7915    Suc. Belenes    NA       0    NA    NA   NA    NA
## 7916    Suc. Belenes     1      NA    NA    NA    1    NA
## 7917    Suc. Belenes    NA      NA    NA    NA    1     1
## 7918    Suc. Belenes     1      NA     2     1    1     1
## 7919    Suc. Belenes    NA      NA     1    NA    1     1
## 7920    Suc. Belenes    NA       1     1     1    1     1
## 7921    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7922    Suc. Belenes    NA      NA     6     6   NA    NA
## 7923    Suc. Belenes    NA       4    NA     4    4    NA
## 7924    Suc. Belenes     4       4    11    15    2     8
## 7925    Suc. Belenes    NA       3    NA     3    1     1
## 7926    Suc. Belenes    NA       0    NA    NA   NA    NA
## 7927    Suc. Belenes     2      NA     2    NA   NA    NA
## 7928    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7929    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7930    Suc. Belenes     1       8     3    11    4     3
## 7931    Suc. Belenes    NA       4    NA    NA   NA    NA
## 7932    Suc. Belenes     0      NA     0     0    1     1
## 7933    Suc. Belenes     1      NA     8     5    5     7
## 7934    Suc. Belenes     2       2     1     1    2     2
## 7935    Suc. Belenes    NA       0    NA    NA   NA    NA
## 7936    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7937    Suc. Belenes     2      10    14     5    7     8
## 7938    Suc. Belenes    NA      NA    NA    NA   NA     0
## 7939    Suc. Belenes    NA       0    NA    NA   NA    NA
## 7940    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7941    Suc. Belenes     1       2     1     1    3     1
## 7942    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7943    Suc. Belenes    13      17    19    19   17    23
## 7944    Suc. Belenes    13      16    19    29   19    22
## 7945    Suc. Belenes    NA      NA    NA     1   NA     1
## 7946    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7947    Suc. Belenes     4       7     4     4    7     7
## 7948    Suc. Belenes     5      10     5     8    8     8
## 7949    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7950    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7951    Suc. Belenes    NA      NA    NA     2   NA    NA
## 7952    Suc. Belenes    NA      NA    NA     4    3     1
## 7953    Suc. Belenes    NA      NA     2     2    3     2
## 7954    Suc. Belenes    NA      NA    NA     1    1    NA
## 7955    Suc. Belenes     0       0     1    NA    0     1
## 7956    Suc. Belenes     1       2     1    NA    1     2
## 7957    Suc. Belenes     5       2     3     5    2     8
## 7958    Suc. Belenes     1      NA     1     0    1     2
## 7959    Suc. Belenes     1       2     2    NA    4    NA
## 7960    Suc. Belenes    NA      NA    NA     2   NA     2
## 7961    Suc. Belenes    NA       3     5     2    1     2
## 7962    Suc. Belenes     3       6     8     8   NA     8
## 7963    Suc. Belenes     1       3     1     3    1     1
## 7964    Suc. Belenes    NA       0    NA    NA   NA    NA
## 7965    Suc. Belenes    NA      NA    NA    NA    1    NA
## 7966    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7967    Suc. Belenes     2       2    NA    NA   NA    NA
## 7968    Suc. Belenes    NA      NA    NA     1   NA    NA
## 7969    Suc. Belenes     4       2    NA     4    2    NA
## 7970    Suc. Belenes    13      13    13    17   17    15
## 7971    Suc. Belenes    NA       6     3    NA   NA    NA
## 7972    Suc. Belenes    14       8    11    17   17    17
## 7973    Suc. Belenes    11       4     4     7   11    11
## 7974    Suc. Belenes    13       8    11    15    8     8
## 7975    Suc. Belenes    NA       2     2     1    1     2
## 7976    Suc. Belenes    NA       2    NA    NA   NA     2
## 7977    Suc. Belenes    NA      NA     1    NA   NA    NA
## 7978    Suc. Belenes     4       4     2     4    2     4
## 7979    Suc. Belenes     2       2     2     2    2    NA
## 7980    Suc. Belenes     1       1     1     1   NA    NA
## 7981    Suc. Belenes    23      19    23    21   19    17
## 7982    Suc. Belenes    11      13     8    21   11     5
## 7983    Suc. Belenes    NA      NA    NA    NA   10    10
## 7984    Suc. Belenes    35      38    35    35   29    35
## 7985    Suc. Belenes    15      12    15    20   11     9
## 7986    Suc. Belenes     8      14    11    17   20     3
## 7987    Suc. Belenes    17      17    17    25   20    17
## 7988    Suc. Belenes    77      56    70    95   85    35
## 7989    Suc. Belenes   151     113   159   162  155   155
## 7990    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7991    Suc. Belenes    38      34    36    53   42    38
## 7992    Suc. Belenes    55      63    89    72   74    63
## 7993    Suc. Belenes     7       5     6    11    9    10
## 7994    Suc. Belenes     2       3     3     5    3     2
## 7995    Suc. Belenes     4       2     6     6    6     6
## 7996    Suc. Belenes     3       2     4     5    3     3
## 7997    Suc. Belenes     1       1     1     1    2     1
## 7998    Suc. Belenes     2      NA    NA     2    1    NA
## 7999    Suc. Belenes     2       3    NA     3    4     1
## 8000    Suc. Belenes     1      NA     1     1   NA     1
## 8001    Suc. Belenes    NA       1    NA    NA   NA    NA
## 8002    Suc. Belenes     2       2     0     2    1     0
## 8003    Suc. Belenes     2       1     1    NA    0     1
## 8004    Suc. Belenes     2       3     8     7    2     5
## 8005    Suc. Belenes    NA      NA     1     1   NA     1
## 8006    Suc. Belenes     2       2     6     4   NA    NA
## 8007    Suc. Belenes     0       1     1     2   NA    NA
## 8008    Suc. Belenes    NA      NA    NA    NA    1     1
## 8009    Suc. Belenes     1       1     1     1   NA     2
## 8010    Suc. Belenes     1      NA     2     1    1     1
## 8011    Suc. Belenes    NA       1     1     1    1     1
## 8012    Suc. Belenes     0       0     1     1    1     0
## 8013    Suc. Belenes     2       4     3     5    4     5
## 8014    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8015    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8016    Suc. Belenes     4       2     2     4    2     2
## 8017    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8018    Suc. Belenes    NA       3    NA    NA   NA    NA
## 8019    Suc. Belenes     7       7     4     7    7     4
## 8020    Suc. Belenes     0       2     1    NA    0     1
## 8021    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8022    Suc. Belenes     2      NA    NA     2    1     1
## 8023    Suc. Belenes     3       3     3     6    4     5
## 8024    Suc. Belenes    NA       1    NA    NA   NA    NA
## 8025    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8026    Suc. Belenes     4       4     7     4    7     7
## 8027    Suc. Belenes     0       0     0    NA    0     2
## 8028    Suc. Belenes    NA      NA    NA    NA    1     1
## 8029    Suc. Belenes     3       2     2     3    1     1
## 8030    Suc. Belenes    NA       1    NA    NA   NA    NA
## 8031    Suc. Belenes     0       0     1    NA    0     1
## 8032    Suc. Belenes    NA      NA    NA    NA    1     1
## 8033    Suc. Belenes     1       3     2     2    3     2
## 8034    Suc. Belenes     3       2     2     3    1     3
## 8035    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8036    Suc. Belenes    NA      NA     3    NA   NA    NA
## 8037    Suc. Belenes     7       4     4     7   11     7
## 8038    Suc. Belenes    NA      NA     2    NA   NA    NA
## 8039    Suc. Belenes    NA       1     1     1    3     3
## 8040    Suc. Belenes    NA       1    NA    NA   NA    NA
## 8041    Suc. Belenes     4       4     4     4    6     8
## 8042    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8043    Suc. Belenes    NA      NA    NA     3    3     3
## 8044    Suc. Belenes     7       7     7     4   14     4
## 8045    Suc. Belenes     0       0     1    NA    0     1
## 8046    Suc. Belenes    NA       0     0     0    0     0
## 8047    Suc. Belenes    NA       2    NA    NA    1     1
## 8048    Suc. Belenes     4       4     4     7    4     7
## 8049    Suc. Belenes    NA       1    NA    NA   NA    NA
## 8050    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8051    Suc. Belenes     3       4    NA     3    5     4
## 8052    Suc. Belenes    NA      NA    NA    NA   NA     0
## 8053    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8054    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8055    Suc. Belenes    NA      NA    NA    NA    1    NA
## 8056    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8057    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8058    Suc. Belenes     2       6    74     2    2     2
## 8059    Suc. Belenes     6      10   105     3    3     3
## 8060    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8061    Suc. Belenes    NA       3    28    NA   NA    NA
## 8062    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8063    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8064    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8065    Suc. Belenes    NA      NA     2     5    5    10
## 8066    Suc. Belenes    NA      NA     3     5    5     2
## 8067    Suc. Belenes    NA      NA     3     4   NA     1
## 8068    Suc. Belenes     1       1     0     0    2     1
## 8069    Suc. Belenes     0       1     0     1    1     1
## 8070    Suc. Belenes     1      NA     2    NA    1     1
## 8071    Suc. Belenes     2       1     2    NA    1     2
## 8072    Suc. Belenes    NA       1     1     1    1     1
## 8073    Suc. Belenes     2       1     1     1    1    NA
## 8074    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8075    Suc. Belenes    NA       2     1     1    1     1
## 8076    Suc. Belenes    NA       3     3     3    3    NA
## 8077    Suc. Belenes    NA       0    NA    NA   NA     0
## 8078    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8079    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8080    Suc. Belenes     2       2    NA    NA   NA    NA
## 8081    Suc. Belenes    NA      NA    NA    NA    1    NA
## 8082    Suc. Belenes     2       2    NA     6    2    NA
## 8083    Suc. Belenes    NA      NA     2     1    1     2
## 8084    Suc. Belenes     6       6     2     8    6     2
## 8085    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8086    Suc. Belenes    11      11     4    11    7     4
## 8087    Suc. Belenes    19      13    11    19   17    19
## 8088    Suc. Belenes     1      NA     1    NA    2     3
## 8089    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8090    Suc. Belenes     2      NA    NA    NA   NA    NA
## 8091    Suc. Belenes     4      NA     2     2    2     2
## 8092    Suc. Belenes     2       1     1     1    2    NA
## 8093    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8094    Suc. Belenes    NA      NA     1    NA   NA    NA
## 8095    Suc. Belenes    NA      NA    NA    NA   25    NA
## 8096    Suc. Belenes    32      32    45    48   18    16
## 8097    Suc. Belenes    NA      NA    NA    NA   NA    79
## 8098    Suc. Belenes    25      25    57    41   41    41
## 8099    Suc. Belenes    12      17    11    17   14    12
## 8100    Suc. Belenes     2       5    NA    NA    2    NA
## 8101    Suc. Belenes    NA      NA    NA     6   NA    NA
## 8102    Suc. Belenes     8       8     6     8   11    11
## 8103    Suc. Belenes    42      85    81    49   74    70
## 8104    Suc. Belenes    77     102   169    95  113   141
## 8105    Suc. Belenes    NA       4     2     8    6     4
## 8106    Suc. Belenes    11      46    36    61   59    61
## 8107    Suc. Belenes   116     101   112   190  213   133
## 8108    Suc. Belenes    NA      NA    NA    NA    1    NA
## 8109    Suc. Belenes     9       3     9     6    6     6
## 8110    Suc. Belenes     9       8     6    12   10    12
## 8111    Suc. Belenes     8       5     8     8    8     9
## 8112    Suc. Belenes     8       2     8     6    6    10
## 8113    Suc. Belenes     8       4     7     7    4     4
## 8114    Suc. Belenes     1       1     1     1    1     2
## 8115    Suc. Belenes     1      NA    NA     1    2    NA
## 8116    Suc. Belenes     1      NA    NA     1    1     3
## 8117    Suc. Belenes     2       0     1     0    0     0
## 8118    Suc. Belenes     1       1     1     1    1     1
## 8119    Suc. Belenes     1       0     4    NA    1     3
## 8120    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8121    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8122    Suc. Belenes     2      NA     6     6    2     4
## 8123    Suc. Belenes     0       0     0     1    1     0
## 8124    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8125    Suc. Belenes     0       0     1     0    2     1
## 8126    Suc. Belenes     1       3     3     3    1     2
## 8127    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8128    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8129    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8130    Suc. Belenes     2       2    NA     2    2     4
## 8131    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8132    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8133    Suc. Belenes     3       8     3     8    6     3
## 8134    Suc. Belenes     0       1     0     1    1     1
## 8135    Suc. Belenes     0       2     2     1    2     2
## 8136    Suc. Belenes     4       2     5     2    7     1
## 8137    Suc. Belenes     2       2     1     2    3     3
## 8138    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8139    Suc. Belenes    NA       0     0    NA   NA    NA
## 8140    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8141    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8142    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8143    Suc. Belenes    NA      NA    NA     3    6    NA
## 8144    Suc. Belenes     0       0     0     0    0     0
## 8145    Suc. Belenes    NA       1    NA     1    1     1
## 8146    Suc. Belenes     4      NA     1     4    1     3
## 8147    Suc. Belenes     1      NA     1     1    1     1
## 8148    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8149    Suc. Belenes    NA       0     0    NA   NA    NA
## 8150    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8151    Suc. Belenes     2      NA     2    NA   NA     2
## 8152    Suc. Belenes    NA      NA    NA    NA   NA     3
## 8153    Suc. Belenes     0       1     0     1    1     1
## 8154    Suc. Belenes    NA       1    NA     0    1    NA
## 8155    Suc. Belenes     6      NA     3     2    1     3
## 8156    Suc. Belenes     1       1     1     1    1     1
## 8157    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8158    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8159    Suc. Belenes     1       1     1     1   NA     2
## 8160    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8161    Suc. Belenes    NA       6     6     3    3     8
## 8162    Suc. Belenes    NA      NA    NA     0    0     1
## 8163    Suc. Belenes     2       2     2    NA    2     4
## 8164    Suc. Belenes     1       3    NA     1    1     1
## 8165    Suc. Belenes    NA       0     0    NA   NA    NA
## 8166    Suc. Belenes     2       2    NA     2    4     2
## 8167    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8168    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8169    Suc. Belenes    NA       8    NA     6   NA     3
## 8170    Suc. Belenes     0       1     0     1    1     1
## 8171    Suc. Belenes    NA       3     2     2    1     2
## 8172    Suc. Belenes     8      NA     3     2    5     3
## 8173    Suc. Belenes     2       5     2     3    3     3
## 8174    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8175    Suc. Belenes    NA       0     0    NA   NA    NA
## 8176    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8177    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8178    Suc. Belenes     3       4     3     5    3     4
## 8179    Suc. Belenes    NA      NA    NA    NA   NA     0
## 8180    Suc. Belenes    NA      NA    NA    NA   NA     0
## 8181    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8182    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8183    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8184    Suc. Belenes     6      15     2    19    8    17
## 8185    Suc. Belenes    10      10    10    22   10    13
## 8186    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8187    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8188    Suc. Belenes     8      13     8    13   13    15
## 8189    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8190    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8191    Suc. Belenes     0      NA     0     0    1     1
## 8192    Suc. Belenes     1       1    NA     1   NA    NA
## 8193    Suc. Belenes     5       3     2     7    4     6
## 8194    Suc. Belenes    NA      NA    NA    NA   NA     0
## 8195    Suc. Belenes    NA       1     1     1    1     2
## 8196    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8197    Suc. Belenes    NA       1     1     1    2     2
## 8198    Suc. Belenes    NA       3    NA     3   NA     3
## 8199    Suc. Belenes     1      NA    NA     2    2     1
## 8200    Suc. Belenes    NA      NA    NA     1   NA     1
## 8201    Suc. Belenes    NA       2    NA     2   NA     2
## 8202    Suc. Belenes     2       2     2     4    6     4
## 8203    Suc. Belenes     4       4    NA     4   NA    NA
## 8204    Suc. Belenes    NA      NA    NA     2   NA    NA
## 8205    Suc. Belenes    11       8     6    15    4    13
## 8206    Suc. Belenes     1       1    NA     2    1     1
## 8207    Suc. Belenes     4       2     4     4    8     8
## 8208    Suc. Belenes     1      NA    NA    NA   NA    NA
## 8209    Suc. Belenes    NA       2    NA     4    4     4
## 8210    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8211    Suc. Belenes     1       1     1     1    1     1
## 8212    Suc. Belenes    NA      NA    NA    NA    6    NA
## 8213    Suc. Belenes    21      16    16    24    5    13
## 8214    Suc. Belenes    NA      NA    NA    NA   NA    13
## 8215    Suc. Belenes    19      19    22    38   29    32
## 8216    Suc. Belenes    11       9     8     8    6     8
## 8217    Suc. Belenes    NA      NA    18    32   18    28
## 8218    Suc. Belenes   102      81    85   151  106   137
## 8219    Suc. Belenes     6       6     6     4    8     4
## 8220    Suc. Belenes    13      13    13    27   19    25
## 8221    Suc. Belenes    55      57    53    78   66    66
## 8222    Suc. Belenes     5       8     7    11    8     8
## 8223    Suc. Belenes     2       2     2     3    2     3
## 8224    Suc. Belenes     4       4     4     4    6     6
## 8225    Suc. Belenes     2       3     2     2    3     2
## 8226    Suc. Belenes    NA       1     1     2    1     3
## 8227    Suc. Belenes    NA      NA    NA     1    1    NA
## 8228    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8229    Suc. Belenes    NA       0     0     0    0     0
## 8230    Suc. Belenes    NA      NA     1    NA   NA    NA
## 8231    Suc. Belenes     2       2     2     2    1     2
## 8232    Suc. Belenes    NA       2    NA     2   NA     2
## 8233    Suc. Belenes     0      NA    NA     0   NA     0
## 8234    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8235    Suc. Belenes    NA      NA     1    NA   NA    NA
## 8236    Suc. Belenes    NA       2     2     4    1     2
## 8237    Suc. Belenes    NA       1     1     1   NA     1
## 8238    Suc. Belenes    NA       0     0     0    0     0
## 8239    Suc. Belenes    NA      NA    NA     1   NA     1
## 8240    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8241    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8242    Suc. Belenes    NA       3    NA     3    6     6
## 8243    Suc. Belenes     2      NA     2     0    1     1
## 8244    Suc. Belenes    NA       0    NA    NA    0    NA
## 8245    Suc. Belenes    NA      NA    NA     2   NA    NA
## 8246    Suc. Belenes     2       1     3     3    1     1
## 8247    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8248    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8249    Suc. Belenes    NA      NA    NA     6    3     6
## 8250    Suc. Belenes     0      NA     0     0    0     1
## 8251    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8252    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8253    Suc. Belenes     1       1     1     1    1     1
## 8254    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8255    Suc. Belenes    NA      NA     2    NA   NA    NA
## 8256    Suc. Belenes    NA      NA    NA     3    3    NA
## 8257    Suc. Belenes     0      NA     0     0    1     1
## 8258    Suc. Belenes    NA      NA    NA     0   NA    NA
## 8259    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8260    Suc. Belenes     2      NA     2     1    1     1
## 8261    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8262    Suc. Belenes    NA       3     6     6    3     3
## 8263    Suc. Belenes    NA       2     2    NA    2     2
## 8264    Suc. Belenes     1       1    NA     1   NA     1
## 8265    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8266    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8267    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8268    Suc. Belenes     2      NA     0     2    1     1
## 8269    Suc. Belenes    NA      NA     0    NA   NA     0
## 8270    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8271    Suc. Belenes     3       3     3     6    4     6
## 8272    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8273    Suc. Belenes     1       3     1     4    1     4
## 8274    Suc. Belenes    NA      NA    NA    NA   NA     0
## 8275    Suc. Belenes    NA       0    NA    NA   NA     0
## 8276    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8277    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8278    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8279    Suc. Belenes    NA      NA    NA     3   NA    NA
## 8280    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8281    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8282    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8283    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8284    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8285    Suc. Belenes    NA      NA    NA     1   NA    NA
## 8286    Suc. Belenes    11      11    11    15   15     8
## 8287    Suc. Belenes     6       8     8    11   11     6
## 8288    Suc. Belenes     2       3     3     2    1     2
## 8289    Suc. Belenes    15      21    23    30   25    19
## 8290    Suc. Belenes    NA      NA    NA     3   NA    NA
## 8291    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8292    Suc. Belenes    NA      NA     3     3    3     3
## 8293    Suc. Belenes    NA      NA     2    NA   NA    NA
## 8294    Suc. Belenes    42     175   147    99  161   161
## 8295    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8296    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8297    Suc. Belenes    NA      NA    NA     2   NA    NA
## 8298    Suc. Belenes    27      30    30    38   32    32
## 8299    Suc. Belenes    34      23    34    57   40    36
## 8300    Suc. Belenes     3       4     4     7    6     4
## 8301    Suc. Belenes     3       3     5     8   NA     5
## 8302    Suc. Belenes     3       2     3     4    1     2
## 8303    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8304    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8305    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8306    Suc. Belenes     5       6     4    10    5     4
## 8307    Suc. Belenes    NA       2     2    NA    2     3
## 8308    Suc. Belenes     2       1     1     2    0     1
## 8309    Suc. Belenes    NA       1     1    NA   NA     1
## 8310    Suc. Belenes     4       4     6     2    4     4
## 8311    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8312    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8313    Suc. Belenes     1       3     1     2    1     1
## 8314    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8315    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8316    Suc. Belenes    NA      NA    NA    NA    1    NA
## 8317    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8318    Suc. Belenes     2       4     3     6    3     3
## 8319    Suc. Belenes     1       0     0     1    0     0
## 8320    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8321    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8322    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8323    Suc. Belenes     1       0     0     1    0     0
## 8324    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8325    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8326    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8327    Suc. Belenes     2       1     2     3    2     1
## 8328    Suc. Belenes     1       0     0     1    0     0
## 8329    Suc. Belenes     1       3     1     2    1     3
## 8330    Suc. Belenes     3       1     3     1    4     3
## 8331    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8332    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8333    Suc. Belenes    NA      NA    NA    NA    2    NA
## 8334    Suc. Belenes    NA      NA    NA    NA   NA     3
## 8335    Suc. Belenes     3       3     5     8    4     8
## 8336    Suc. Belenes     1       0     0     1    0     0
## 8337    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8338    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8339    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8340    Suc. Belenes     4      19    NA    21   25    34
## 8341    Suc. Belenes    13      NA     3    25   38    29
## 8342    Suc. Belenes     3      NA    NA    NA   NA    NA
## 8343    Suc. Belenes    NA      NA    NA    NA    4    NA
## 8344    Suc. Belenes     8      NA    NA     8   18     5
## 8345    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8346    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8347    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8348    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8349    Suc. Belenes    NA      NA     1    NA    1     3
## 8350    Suc. Belenes     6       2     3     4    3     5
## 8351    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8352    Suc. Belenes     2      NA    NA     1   NA     1
## 8353    Suc. Belenes     2      NA     1     1    2    NA
## 8354    Suc. Belenes    NA      NA    NA     3   NA     6
## 8355    Suc. Belenes    NA       0    NA    NA   NA     0
## 8356    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8357    Suc. Belenes    NA      NA    NA    NA   NA     3
## 8358    Suc. Belenes    NA      NA     4     4    4     6
## 8359    Suc. Belenes    15      13    21    21   32    25
## 8360    Suc. Belenes    NA       2     6     3    5     2
## 8361    Suc. Belenes    17      25    17    25   20    25
## 8362    Suc. Belenes    NA      NA    14    25   34    31
## 8363    Suc. Belenes     4      NA    NA    NA   NA    NA
## 8364    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8365    Suc. Belenes    32      21    23    36   25    27
## 8366    Suc. Belenes     4       2     6     4    4     4
## 8367    Suc. Belenes     2      NA    NA    NA   NA     1
## 8368    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8369    Suc. Belenes     2       6    NA    NA   NA    NA
## 8370    Suc. Belenes     8       8     3    NA   NA    NA
## 8371    Suc. Belenes    NA      NA     2     2    4     6
## 8372    Suc. Belenes    NA      NA    23    27   42    32
## 8373    Suc. Belenes    29      26    18    24   16     5
## 8374    Suc. Belenes    NA      NA    NA    NA   NA     3
## 8375    Suc. Belenes    19      25    16    63   48    41
## 8376    Suc. Belenes    11      14    14    12   12    14
## 8377    Suc. Belenes    NA      NA    NA    NA    2     2
## 8378    Suc. Belenes    NA      NA     8    14   11    20
## 8379    Suc. Belenes    11       6     3    NA   NA    NA
## 8380    Suc. Belenes    35      63    53    99   77    77
## 8381    Suc. Belenes   102     120   109   148  144   109
## 8382    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8383    Suc. Belenes    32      25    23    30   34    34
## 8384    Suc. Belenes    49      40    46    61   49    25
## 8385    Suc. Belenes    NA      NA     8    15   NA    NA
## 8386    Suc. Belenes     9      15    NA    NA   NA    NA
## 8387    Suc. Belenes     5       5     8    12    7     8
## 8388    Suc. Belenes     3       3     3     3    8     9
## 8389    Suc. Belenes     2      NA    NA     2   NA    NA
## 8390    Suc. Belenes     3       2     4     5    4     6
## 8391    Suc. Belenes    NA       1     1    NA   NA    NA
## 8392    Suc. Belenes    NA       1    NA     1    2     1
## 8393    Suc. Belenes    NA       1    NA     1    1    NA
## 8394    Suc. Belenes     1      NA     1     5   NA     5
## 8395    Suc. Belenes     2      NA     0     1    0    NA
## 8396    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8397    Suc. Belenes     0       4    10    NA    3     8
## 8398    Suc. Belenes    NA       1    NA    NA   NA     1
## 8399    Suc. Belenes    NA       2    NA    NA   NA     2
## 8400    Suc. Belenes    NA      NA    NA    NA    0    NA
## 8401    Suc. Belenes     2      NA    NA     1    2     1
## 8402    Suc. Belenes     3       1     1     3    4     4
## 8403    Suc. Belenes     3       1     1     1   NA     1
## 8404    Suc. Belenes     2      NA    NA    NA   NA     1
## 8405    Suc. Belenes     1       0     1     0    1     0
## 8406    Suc. Belenes     3      NA     1     1    3     3
## 8407    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8408    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8409    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8410    Suc. Belenes     1      NA     4     6    6    NA
## 8411    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8412    Suc. Belenes    NA      NA     1     1    2     0
## 8413    Suc. Belenes     1      NA     1     1    2    NA
## 8414    Suc. Belenes     3      NA     1     2    3     1
## 8415    Suc. Belenes    NA       0     0    NA   NA    NA
## 8416    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8417    Suc. Belenes     1      NA     1     3    1     3
## 8418    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8419    Suc. Belenes    NA      NA     1     1    1     0
## 8420    Suc. Belenes     1      NA     1     1   NA    NA
## 8421    Suc. Belenes    NA      NA     1     1    3     1
## 8422    Suc. Belenes    NA       0     0    NA   NA    NA
## 8423    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8424    Suc. Belenes     1      NA     1     3    1     3
## 8425    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8426    Suc. Belenes    NA      NA     1     1    2     0
## 8427    Suc. Belenes     1      NA     1     1   NA    NA
## 8428    Suc. Belenes     3      NA     1     2    4     2
## 8429    Suc. Belenes    NA      NA     1    NA   NA     1
## 8430    Suc. Belenes    NA      NA    NA     6   NA    NA
## 8431    Suc. Belenes     0      NA    NA    NA   NA    NA
## 8432    Suc. Belenes    NA      NA    NA    NA    2    NA
## 8433    Suc. Belenes     3      NA    NA    NA   NA    NA
## 8434    Suc. Belenes    NA       0     0    NA   NA    NA
## 8435    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8436    Suc. Belenes     1       6     1    14    9     3
## 8437    Suc. Belenes    NA      NA     1    NA   NA    NA
## 8438    Suc. Belenes     1       0     1     1    0     1
## 8439    Suc. Belenes     1      NA     1     1    2     2
## 8440    Suc. Belenes     3       1     2     2    4     2
## 8441    Suc. Belenes    NA       0     0    NA   NA    NA
## 8442    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8443    Suc. Belenes     3       3     3     6    3     7
## 8444    Suc. Belenes    NA      NA    NA    NA   NA     0
## 8445    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8446    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8447    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8448    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8449    Suc. Belenes    17      36     6    19   27    34
## 8450    Suc. Belenes    48      16    29    44   44    48
## 8451    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8452    Suc. Belenes     8       5     8     8   13     3
## 8453    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8454    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8455    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8456    Suc. Belenes     2       3    NA     2    4    NA
## 8457    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8458    Suc. Belenes     1       1     1     1    1     4
## 8459    Suc. Belenes     8       6    14     8   13    12
## 8460    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8461    Suc. Belenes     1       4     1     3    4     1
## 8462    Suc. Belenes     2      NA     2    NA   NA    NA
## 8463    Suc. Belenes     2       1     2     1    2     2
## 8464    Suc. Belenes     3       6     3     8    6     6
## 8465    Suc. Belenes     3      NA    NA    NA   NA    NA
## 8466    Suc. Belenes    NA      NA     1     1    1     1
## 8467    Suc. Belenes     1       1     2     1    2     1
## 8468    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8469    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8470    Suc. Belenes     2      NA    NA     4   NA     2
## 8471    Suc. Belenes    11       6     8     6   11     6
## 8472    Suc. Belenes     3       2     5     2    3     9
## 8473    Suc. Belenes     6       3     8     8    6    11
## 8474    Suc. Belenes    21      11    NA    11   13    19
## 8475    Suc. Belenes     3       1     2     1    2     4
## 8476    Suc. Belenes     2      NA     2     2    3     6
## 8477    Suc. Belenes     2       4     2    NA    2     4
## 8478    Suc. Belenes     4       4    NA     4    2     2
## 8479    Suc. Belenes    17       8     8    13   11    15
## 8480    Suc. Belenes    55      45    13    50   74    21
## 8481    Suc. Belenes    NA      NA    NA    NA   NA   105
## 8482    Suc. Belenes    76      73   143    19  155    79
## 8483    Suc. Belenes    17      17    23    48   20     2
## 8484    Suc. Belenes     6       9    24     9   20    33
## 8485    Suc. Belenes    14       6    23    12   25    31
## 8486    Suc. Belenes    14      23    14    17   23    31
## 8487    Suc. Belenes    18      70    81    53  155    92
## 8488    Suc. Belenes   278     243   243   261  328   370
## 8489    Suc. Belenes    15      13    49    13   42    25
## 8490    Suc. Belenes    42      27    30    55   74    76
## 8491    Suc. Belenes   334     391   429   520  399   613
## 8492    Suc. Belenes    10       8    14     9   14    25
## 8493    Suc. Belenes     6       6     6     8    8     8
## 8494    Suc. Belenes     4       2     2    10    4     4
## 8495    Suc. Belenes     7       5     5     6    4     5
## 8496    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8497    Suc. Belenes     1       1     3     3    1     2
## 8498    Suc. Belenes    NA      NA    NA     2    1    NA
## 8499    Suc. Belenes     1       3     7     3    6     5
## 8500    Suc. Belenes     1      NA    NA    NA   NA    NA
## 8501    Suc. Belenes     4       3     7     7    7     5
## 8502    Suc. Belenes     1       1     3     2    2     1
## 8503    Suc. Belenes     9       9    28     5   19     7
## 8504    Suc. Belenes     1       1     1     1    2     1
## 8505    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8506    Suc. Belenes    NA      NA     2     2    2     2
## 8507    Suc. Belenes    NA       1     1     0    1     0
## 8508    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8509    Suc. Belenes     0       1     0     0    0     0
## 8510    Suc. Belenes     5      NA    NA    NA    3     3
## 8511    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8512    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8513    Suc. Belenes     2       2     2    NA   NA     6
## 8514    Suc. Belenes    NA       6     8     8   11     3
## 8515    Suc. Belenes    NA      NA    NA    NA    1    NA
## 8516    Suc. Belenes     0      NA     3     3    7     3
## 8517    Suc. Belenes     9       7    17    17   15    15
## 8518    Suc. Belenes     5       3    NA     8   NA     4
## 8519    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8520    Suc. Belenes    NA       2    NA    NA    2     2
## 8521    Suc. Belenes    NA       6     6     6    3    NA
## 8522    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8523    Suc. Belenes    NA      NA    NA    NA    4     2
## 8524    Suc. Belenes     1       7    NA     6    4     1
## 8525    Suc. Belenes     3       3    NA    NA   NA    NA
## 8526    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8527    Suc. Belenes    NA       2     2    NA    2     6
## 8528    Suc. Belenes    NA      NA     8    NA   20    NA
## 8529    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8530    Suc. Belenes     0      NA    NA     5    8     5
## 8531    Suc. Belenes     3       3    11     6   NA    11
## 8532    Suc. Belenes     5       3    NA    NA    3     1
## 8533    Suc. Belenes     1       1     1    NA    2     1
## 8534    Suc. Belenes    NA      11    11     8   20    NA
## 8535    Suc. Belenes     8      13     6    17   25    15
## 8536    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8537    Suc. Belenes     4       4     4     2    4    21
## 8538    Suc. Belenes     8      23    11     8   34     8
## 8539    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8540    Suc. Belenes     0       1    NA     2    9     5
## 8541    Suc. Belenes    20      15    27    30   42    15
## 8542    Suc. Belenes     3      13     3     5   10    NA
## 8543    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8544    Suc. Belenes    NA      NA     1     1    1    NA
## 8545    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8546    Suc. Belenes     4       6     6    14    8     9
## 8547    Suc. Belenes    NA      NA    NA    NA   NA     0
## 8548    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8549    Suc. Belenes    NA      NA     1    NA   NA    NA
## 8550    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8551    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8552    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8553    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8554    Suc. Belenes     2       6     2     2    8     2
## 8555    Suc. Belenes     3      13     6     3   10     3
## 8556    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8557    Suc. Belenes    NA       5     5    NA    8    NA
## 8558    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8559    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8560    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8561    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8562    Suc. Belenes    NA      NA    NA     1    1    NA
## 8563    Suc. Belenes     1       1    NA     1    1     1
## 8564    Suc. Belenes    NA      NA     1    NA   NA     1
## 8565    Suc. Belenes     6       4     4     5    1     4
## 8566    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8567    Suc. Belenes    NA       1     1     1   NA    NA
## 8568    Suc. Belenes     2      NA     2     2    2     4
## 8569    Suc. Belenes     2       2     2     1    2     2
## 8570    Suc. Belenes    NA       3     8     6    6    11
## 8571    Suc. Belenes     1      NA    NA    NA   NA    NA
## 8572    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8573    Suc. Belenes    NA      NA     1    NA    1    NA
## 8574    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8575    Suc. Belenes    NA      NA    NA    NA    2    NA
## 8576    Suc. Belenes    NA       2     2     2    6     2
## 8577    Suc. Belenes    NA      NA     1    NA   NA    NA
## 8578    Suc. Belenes     2      NA     4     8    4     2
## 8579    Suc. Belenes    NA      NA    NA    NA    8     3
## 8580    Suc. Belenes     6      11     6    11    4     8
## 8581    Suc. Belenes     6       6     7     6    4     5
## 8582    Suc. Belenes    NA      NA    NA     2    3    NA
## 8583    Suc. Belenes    NA      NA    NA     2    2     2
## 8584    Suc. Belenes     2       2     4     6    6     4
## 8585    Suc. Belenes     3       3     3     2    3     2
## 8586    Suc. Belenes    NA      NA    NA    NA    1    NA
## 8587    Suc. Belenes    NA      NA    NA    NA    2    NA
## 8588    Suc. Belenes    16      13    24    24   29    16
## 8589    Suc. Belenes    NA      NA    NA    NA   NA    19
## 8590    Suc. Belenes    25      41    79    63   57   108
## 8591    Suc. Belenes     8      11     6    20   20    23
## 8592    Suc. Belenes    NA      NA    NA    NA    6     3
## 8593    Suc. Belenes    11      18    18    28   14    70
## 8594    Suc. Belenes   134     187   208   187  317   289
## 8595    Suc. Belenes    NA       2     2    NA   NA    NA
## 8596    Suc. Belenes    25      13    17     2    4    15
## 8597    Suc. Belenes   139     120   199   129  218   194
## 8598    Suc. Belenes    NA       3    NA    NA   NA    NA
## 8599    Suc. Belenes     6       9     8     9    9    19
## 8600    Suc. Belenes     5       5     5     6    8     5
## 8601    Suc. Belenes     2       4     2     2    6     4
## 8602    Suc. Belenes     5       4     5     7    5     5
## 8603    Suc. Belenes    NA       1     1     1    2     1
## 8604    Suc. Belenes    NA       1    NA     1   NA    NA
## 8605    Suc. Belenes     1       1     1    NA    3     3
## 8606    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8607    Suc. Belenes     1      NA    NA    NA   NA    NA
## 8608    Suc. Belenes     2       0     0     0    0     0
## 8609    Suc. Belenes    NA       0    NA    NA    1    NA
## 8610    Suc. Belenes     3       5     9     1    5    10
## 8611    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8612    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8613    Suc. Belenes    NA      NA     2     2    2     4
## 8614    Suc. Belenes     1       0     0     1    1     1
## 8615    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8616    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8617    Suc. Belenes     0       1     0     0    0     1
## 8618    Suc. Belenes    NA      NA    NA     1    3     1
## 8619    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8620    Suc. Belenes    NA      NA    NA    17    8     3
## 8621    Suc. Belenes     1       1     1     1    1     1
## 8622    Suc. Belenes     0       0    NA     3    4     3
## 8623    Suc. Belenes     2       3     1     2   12     4
## 8624    Suc. Belenes     1       1     1     3    2     1
## 8625    Suc. Belenes    NA       0     0    NA   NA    NA
## 8626    Suc. Belenes    NA      NA     3    NA    8    11
## 8627    Suc. Belenes     0       0    NA     1    0     0
## 8628    Suc. Belenes    NA      NA    NA     2    3     1
## 8629    Suc. Belenes    NA       1     1     2    3     4
## 8630    Suc. Belenes     1       1     2     3    3     1
## 8631    Suc. Belenes    NA       0     0    NA   NA    NA
## 8632    Suc. Belenes    NA      NA    NA     3    6    NA
## 8633    Suc. Belenes     1       1    NA     1    1     1
## 8634    Suc. Belenes    NA      NA     0     2    3     3
## 8635    Suc. Belenes    NA       1     1     2    3     4
## 8636    Suc. Belenes     1       1     1     1    3     1
## 8637    Suc. Belenes    NA      NA     1     1   NA     1
## 8638    Suc. Belenes    NA      NA    NA    NA    6     3
## 8639    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8640    Suc. Belenes    NA      NA    NA     1    2    NA
## 8641    Suc. Belenes     2       2    NA     2   NA     2
## 8642    Suc. Belenes    NA      NA     1     3    3     1
## 8643    Suc. Belenes    NA       0     0    NA   NA    NA
## 8644    Suc. Belenes    NA       3    NA     3   28    11
## 8645    Suc. Belenes     1       1     3     1    1     1
## 8646    Suc. Belenes    NA      NA    NA     2    5     3
## 8647    Suc. Belenes     6       5     3     4   14    15
## 8648    Suc. Belenes     1      NA     3     2    4     1
## 8649    Suc. Belenes    NA       0     0    NA   NA    NA
## 8650    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8651    Suc. Belenes     1       3     4     1    4    12
## 8652    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8653    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8654    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8655    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8656    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8657    Suc. Belenes     2       2     2     2    6     2
## 8658    Suc. Belenes     3       3     3     3   13     6
## 8659    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8660    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8661    Suc. Belenes    NA      NA    NA     3    8     3
## 8662    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8663    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8664    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8665    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8666    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8667    Suc. Belenes    NA      NA     1    NA    1    NA
## 8668    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8669    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8670    Suc. Belenes     1      NA    NA    NA   NA    NA
## 8671    Suc. Belenes     2       2     4     1    5     5
## 8672    Suc. Belenes    NA      NA    NA    NA   NA     0
## 8673    Suc. Belenes     1       1     2     1    2     1
## 8674    Suc. Belenes     2       1     1     1    1     1
## 8675    Suc. Belenes     6      NA     3    NA    3     6
## 8676    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8677    Suc. Belenes    NA       1    NA    NA    1    NA
## 8678    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8679    Suc. Belenes     6       6     2     4    4     4
## 8680    Suc. Belenes    NA      NA    NA    NA    2    NA
## 8681    Suc. Belenes    23      31    11    31   28    11
## 8682    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8683    Suc. Belenes     6       2     4     6    4     6
## 8684    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8685    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8686    Suc. Belenes    NA      NA    NA    NA    1    NA
## 8687    Suc. Belenes    NA      NA     2     4    4    NA
## 8688    Suc. Belenes     5      21     8    11   13     8
## 8689    Suc. Belenes    NA      NA    NA    NA   NA     6
## 8690    Suc. Belenes    22      22    25    22   19    13
## 8691    Suc. Belenes    NA      NA    NA     2   NA    NA
## 8692    Suc. Belenes     3       5     3     5    3     5
## 8693    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8694    Suc. Belenes    17      45    20    31   31    25
## 8695    Suc. Belenes    23      17    23    20   20     6
## 8696    Suc. Belenes    85      70    67    88   92    95
## 8697    Suc. Belenes    70      95    67    95   81    77
## 8698    Suc. Belenes     2       4     2     6    6     4
## 8699    Suc. Belenes     8      17    13    15   19    17
## 8700    Suc. Belenes    70      70    72    70   70    66
## 8701    Suc. Belenes     4       2     2     2    3     1
## 8702    Suc. Belenes     3       2    NA     3    3     3
## 8703    Suc. Belenes    NA       2    NA     2    2     2
## 8704    Suc. Belenes    NA      NA    NA     1    1     1
## 8705    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8706    Suc. Belenes     1       1     1     1    3     3
## 8707    Suc. Belenes    NA      NA    NA     1    1    NA
## 8708    Suc. Belenes    NA      NA    NA    NA    4    NA
## 8709    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8710    Suc. Belenes     1       4     2     0    4     0
## 8711    Suc. Belenes     1       1     1     1    1    NA
## 8712    Suc. Belenes     4       2     2     1    4     3
## 8713    Suc. Belenes     2       2    NA     2    1    NA
## 8714    Suc. Belenes    NA      NA    NA    NA   NA     0
## 8715    Suc. Belenes     2       2     2     2    2     2
## 8716    Suc. Belenes     1      NA     1     0    1     0
## 8717    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8718    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8719    Suc. Belenes     0       0     0     0    0     0
## 8720    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8721    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8722    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8723    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8724    Suc. Belenes    NA      NA     3    NA    6     3
## 8725    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8726    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8727    Suc. Belenes    NA      NA     0    NA    0     0
## 8728    Suc. Belenes     2       2     4     6    4     3
## 8729    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8730    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8731    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8732    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8733    Suc. Belenes    NA      NA    NA    NA   NA     3
## 8734    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8735    Suc. Belenes     0      NA    NA    NA    0    NA
## 8736    Suc. Belenes    NA      NA    NA     2   NA     1
## 8737    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8738    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8739    Suc. Belenes    NA      NA    NA     3   NA    NA
## 8740    Suc. Belenes    NA      NA     3    NA    3     3
## 8741    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8742    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8743    Suc. Belenes    NA       2     2     6    4     5
## 8744    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8745    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8746    Suc. Belenes    NA      NA     3    NA   NA    NA
## 8747    Suc. Belenes     4      NA    NA    NA   NA    NA
## 8748    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8749    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8750    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8751    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8752    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8753    Suc. Belenes    NA      NA    NA     2   NA    NA
## 8754    Suc. Belenes     3      NA    NA     3   NA     3
## 8755    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8756    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8757    Suc. Belenes    NA      NA    NA     0    0    NA
## 8758    Suc. Belenes    NA       2     2     6    4     5
## 8759    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8760    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8761    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8762    Suc. Belenes     3      NA     4    NA    4     4
## 8763    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8764    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8765    Suc. Belenes    NA      NA    NA     1    5     1
## 8766    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8767    Suc. Belenes     8      23     2     6    8    15
## 8768    Suc. Belenes    13       3     6    10   13    19
## 8769    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8770    Suc. Belenes     5       5     3     8    5     8
## 8771    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8772    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8773    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8774    Suc. Belenes    NA      NA     1    NA    1    NA
## 8775    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8776    Suc. Belenes     2       1     1     1    2     2
## 8777    Suc. Belenes    12       6     8     8    8    10
## 8778    Suc. Belenes    NA       0     1    NA    1     1
## 8779    Suc. Belenes     2       2     4    NA    1     1
## 8780    Suc. Belenes    NA      NA    NA     4    4     2
## 8781    Suc. Belenes     2       2     2     1    5     5
## 8782    Suc. Belenes     6       8     8     6    6    11
## 8783    Suc. Belenes    NA       1    NA    NA    4     1
## 8784    Suc. Belenes     0       1     0     0    0     0
## 8785    Suc. Belenes     1       1     1     1    1     1
## 8786    Suc. Belenes     1      NA    NA     1   NA     1
## 8787    Suc. Belenes     1      NA    NA    NA   NA    NA
## 8788    Suc. Belenes     2       2     2     2    2     4
## 8789    Suc. Belenes     1       2     1    NA    1    NA
## 8790    Suc. Belenes     6       8     4     4    4     4
## 8791    Suc. Belenes    11       8    17    17   11    11
## 8792    Suc. Belenes    13      13     4     8    4     6
## 8793    Suc. Belenes     3       3     5     3    3     5
## 8794    Suc. Belenes    NA       2     1    NA    1    NA
## 8795    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8796    Suc. Belenes    NA      NA    NA    NA    1    NA
## 8797    Suc. Belenes     4       2     2    NA   NA    NA
## 8798    Suc. Belenes     8       6    NA     6    6     3
## 8799    Suc. Belenes     2       2    NA     4   NA    NA
## 8800    Suc. Belenes    NA      NA    NA    NA    1    NA
## 8801    Suc. Belenes    NA       6     4     6    8     4
## 8802    Suc. Belenes     5      37    34    NA   45    NA
## 8803    Suc. Belenes    10       6     3    10    3    10
## 8804    Suc. Belenes    38      70    98    41   54   105
## 8805    Suc. Belenes    11      14    11    48    2     8
## 8806    Suc. Belenes     2       3     5     5    5     6
## 8807    Suc. Belenes    11      11     8    17   17     8
## 8808    Suc. Belenes     3       8     6     6    3     3
## 8809    Suc. Belenes     7      25    67     4   25    25
## 8810    Suc. Belenes   173     232   120    88  250   148
## 8811    Suc. Belenes     8      11     8    13    8    19
## 8812    Suc. Belenes    23      19    11    19   27    49
## 8813    Suc. Belenes    97     131   186   137  108   125
## 8814    Suc. Belenes     3       3     3     9   NA    NA
## 8815    Suc. Belenes     7       3     5     5    4     4
## 8816    Suc. Belenes     2       2     5     3    5     3
## 8817    Suc. Belenes     2       4     2     6    4     4
## 8818    Suc. Belenes     6       6     4     5    4     3
## 8819    Suc. Belenes    NA       1    NA    NA   NA    NA
## 8820    Suc. Belenes     1       1     2     1    3     2
## 8821    Suc. Belenes     1       1    NA     2    1     1
## 8822    Suc. Belenes     4       1     2    NA   NA     3
## 8823    Suc. Belenes     1      NA    NA    NA   NA    NA
## 8824    Suc. Belenes     3       0     1     0    2     0
## 8825    Suc. Belenes     2       1    NA     2    2     1
## 8826    Suc. Belenes     8      29     3     9   11    15
## 8827    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8828    Suc. Belenes    NA      NA    NA    NA   NA     0
## 8829    Suc. Belenes     6       2     2     4    2     4
## 8830    Suc. Belenes     1       1     1     0    1     0
## 8831    Suc. Belenes     1       1     1     0    0     1
## 8832    Suc. Belenes    NA      NA    NA    NA    3     3
## 8833    Suc. Belenes     4       3    NA    NA    5     1
## 8834    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8835    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8836    Suc. Belenes    NA       2     2     2    4     2
## 8837    Suc. Belenes     3      NA     3    NA   NA     3
## 8838    Suc. Belenes    NA      NA    NA    NA   NA     6
## 8839    Suc. Belenes     3      11     6     9    6     3
## 8840    Suc. Belenes    NA       4    NA     7    4    NA
## 8841    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8842    Suc. Belenes    NA      NA    NA    NA    0    NA
## 8843    Suc. Belenes     6       1    13     3    4     2
## 8844    Suc. Belenes     4      NA    NA     4    3     2
## 8845    Suc. Belenes     0       1    NA    NA    0     0
## 8846    Suc. Belenes    NA       0    NA     0    0    NA
## 8847    Suc. Belenes     4      NA    NA     2    6     2
## 8848    Suc. Belenes     3      NA     3    NA   NA     3
## 8849    Suc. Belenes    NA       8     6     9    3     3
## 8850    Suc. Belenes    NA       4    NA     7    4    NA
## 8851    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8852    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8853    Suc. Belenes     6       1     3     1   NA     2
## 8854    Suc. Belenes     4      NA    NA    NA    3    NA
## 8855    Suc. Belenes     0       1    NA    NA    0     0
## 8856    Suc. Belenes    NA       0    NA     0    0    NA
## 8857    Suc. Belenes     2      NA     2    NA   NA     4
## 8858    Suc. Belenes     6      NA     3    NA   NA     3
## 8859    Suc. Belenes     3       3     8     9    6     8
## 8860    Suc. Belenes    NA       4    NA     4    4    NA
## 8861    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8862    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8863    Suc. Belenes     6       1     1     1   NA     2
## 8864    Suc. Belenes     4      NA    NA     1   NA     1
## 8865    Suc. Belenes     0       1    NA    NA    0     0
## 8866    Suc. Belenes     2       3    NA     1    1     1
## 8867    Suc. Belenes     3       8     8     6    8     6
## 8868    Suc. Belenes    NA      NA    NA     4    4    NA
## 8869    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8870    Suc. Belenes    11      NA     4    NA   NA    NA
## 8871    Suc. Belenes     3       3    NA    NA    4     3
## 8872    Suc. Belenes    NA       0    NA     0    0    NA
## 8873    Suc. Belenes     6       4     4     2    2     2
## 8874    Suc. Belenes     3       3     3     3    3     3
## 8875    Suc. Belenes    NA      NA    NA    NA   NA     6
## 8876    Suc. Belenes     6       3    23     6   17     6
## 8877    Suc. Belenes    NA       4    NA     7    7    NA
## 8878    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8879    Suc. Belenes     0       0     0     0   NA     1
## 8880    Suc. Belenes     6       1     9     1   NA     4
## 8881    Suc. Belenes     4       3     3     4    4     5
## 8882    Suc. Belenes     0       1    NA    NA    0     0
## 8883    Suc. Belenes    NA       0    NA     0    0    NA
## 8884    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8885    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8886    Suc. Belenes     6       8     5     4    2     8
## 8887    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8888    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8889    Suc. Belenes     3      NA     6     8    3     6
## 8890    Suc. Belenes     3      NA     8    NA    3     3
## 8891    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8892    Suc. Belenes    42      44     4     2   38    21
## 8893    Suc. Belenes    32      35    13    44   51    25
## 8894    Suc. Belenes   123     141    NA    NA   NA    42
## 8895    Suc. Belenes    13      NA    NA    NA    5     3
## 8896    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8897    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8898    Suc. Belenes     2       4     5     7    7     4
## 8899    Suc. Belenes     2       3     3     5    6     3
## 8900    Suc. Belenes     0      NA    NA    NA   NA    NA
## 8901    Suc. Belenes    NA      NA    NA     0    0    NA
## 8902    Suc. Belenes    NA      NA     2    NA   NA    NA
## 8903    Suc. Belenes     1      NA    NA     1    1     1
## 8904    Suc. Belenes     1       1     2     3    1     1
## 8905    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8906    Suc. Belenes     4       2     2     3    2    NA
## 8907    Suc. Belenes    NA      NA    NA    NA    6     2
## 8908    Suc. Belenes     2       1     1     1    1     1
## 8909    Suc. Belenes     3       3    NA     6    6     3
## 8910    Suc. Belenes    NA      NA     1    NA   NA    NA
## 8911    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8912    Suc. Belenes    NA       0    NA     0    0    NA
## 8913    Suc. Belenes     1      NA     1     1    1     1
## 8914    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8915    Suc. Belenes    NA       1    NA    NA   NA    NA
## 8916    Suc. Belenes     2       2     2     2    6     2
## 8917    Suc. Belenes     6       3     6     6   11     3
## 8918    Suc. Belenes     4       6     2     8    8     8
## 8919    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8920    Suc. Belenes    NA      NA    NA     1   NA    NA
## 8921    Suc. Belenes    NA       2    NA     2   NA     2
## 8922    Suc. Belenes     2      NA    NA     2   NA    NA
## 8923    Suc. Belenes    21      25    19    40   42    17
## 8924    Suc. Belenes    24      48    32    NA   26    24
## 8925    Suc. Belenes    16      19     6    16   32    57
## 8926    Suc. Belenes     3       3    10     6    6     6
## 8927    Suc. Belenes    NA      NA    NA     2   NA    NA
## 8928    Suc. Belenes     8       3    12    20    2     5
## 8929    Suc. Belenes     2      NA    NA     2   NA    NA
## 8930    Suc. Belenes    20      20    17    37   20    11
## 8931    Suc. Belenes    21     159    85    85  254    63
## 8932    Suc. Belenes     4       4    53     7   81     4
## 8933    Suc. Belenes    32      32    38    16    6    25
## 8934    Suc. Belenes    25      15     4     4   NA     6
## 8935    Suc. Belenes    51      76    91    76  114    78
## 8936    Suc. Belenes    76      87    59   171   87    95
## 8937    Suc. Belenes     8      10     5     5    3     3
## 8938    Suc. Belenes     6       6     6     3    3    NA
## 8939    Suc. Belenes     2       2    NA     1    3     1
## 8940    Suc. Belenes    NA       2     5     3    8     3
## 8941    Suc. Belenes     2       4     6     6   10     4
## 8942    Suc. Belenes     2       2     2     3    3     3
## 8943    Suc. Belenes    NA      NA     1    NA   NA    NA
## 8944    Suc. Belenes     1       1     1     2    2     1
## 8945    Suc. Belenes    NA       1    NA    NA   NA    NA
## 8946    Suc. Belenes    NA       1     3     3    3     1
## 8947    Suc. Belenes     5       0     0     0    0     0
## 8948    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8949    Suc. Belenes     3       7     7     8   12     3
## 8950    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8951    Suc. Belenes    NA       2     2    NA    2    NA
## 8952    Suc. Belenes     0      NA    NA     0   NA    NA
## 8953    Suc. Belenes     1       2     3     3    4     5
## 8954    Suc. Belenes     0       0     0     0    0     0
## 8955    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8956    Suc. Belenes     6      NA    NA     2   NA     2
## 8957    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8958    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8959    Suc. Belenes    NA       1    NA    NA   NA    NA
## 8960    Suc. Belenes     4      18    11    11   15     4
## 8961    Suc. Belenes    NA      NA    NA     0    0    NA
## 8962    Suc. Belenes    NA      NA    NA     1    1     0
## 8963    Suc. Belenes     2       1     1     1    2     2
## 8964    Suc. Belenes     3       3     3     3    3     3
## 8965    Suc. Belenes    NA      NA    NA     0    0     0
## 8966    Suc. Belenes    NA       0    NA    NA    0    NA
## 8967    Suc. Belenes     2       2    NA     2    4     4
## 8968    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8969    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8970    Suc. Belenes     3       1    NA    NA   NA     3
## 8971    Suc. Belenes     4       7    11     7    8    12
## 8972    Suc. Belenes    NA      NA    NA     0    0    NA
## 8973    Suc. Belenes    NA       0     0     0   NA     1
## 8974    Suc. Belenes     2       1     1     1    2     2
## 8975    Suc. Belenes     3       5     3     3    3    NA
## 8976    Suc. Belenes    NA      NA    NA     0    0     0
## 8977    Suc. Belenes    NA       0    NA    NA    0    NA
## 8978    Suc. Belenes     2      NA    NA    NA   NA     2
## 8979    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8980    Suc. Belenes    NA       1    NA    NA    3    NA
## 8981    Suc. Belenes     4      NA     4     7    8     4
## 8982    Suc. Belenes    NA      NA    NA     0    0    NA
## 8983    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8984    Suc. Belenes     2       1     1     1    2     2
## 8985    Suc. Belenes    NA      NA    NA     0    0     0
## 8986    Suc. Belenes     3      NA    NA     3    1     2
## 8987    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8988    Suc. Belenes    NA      NA    NA    NA    3    NA
## 8989    Suc. Belenes     4       4     4    NA    4    NA
## 8990    Suc. Belenes    NA       0     0     0    0     0
## 8991    Suc. Belenes     3       1     4     3    3     4
## 8992    Suc. Belenes    NA       0    NA    NA    0    NA
## 8993    Suc. Belenes     4       6     4     6    2     2
## 8994    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8995    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8996    Suc. Belenes    NA      NA    NA     2   NA    NA
## 8997    Suc. Belenes    NA       1     3     3   NA    NA
## 8998    Suc. Belenes     4       7     4    14   18     4
## 8999    Suc. Belenes    NA      NA    NA     0    0    NA
## 9000    Suc. Belenes     0       1     1     0   NA     0
## 9001    Suc. Belenes     2       1     1     1    2     2
## 9002    Suc. Belenes     5       8     3     8    5     5
## 9003    Suc. Belenes    NA      NA    NA     0    0     0
## 9004    Suc. Belenes    NA       0    NA    NA    0    NA
## 9005    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9006    Suc. Belenes    NA      NA     3     1    4     1
## 9007    Suc. Belenes    NA      NA    NA     0   NA    NA
## 9008    Suc. Belenes    14      11    14     8   17     8
## 9009    Suc. Belenes    76     152   110    NA  116    59
## 9010    Suc. Belenes    48      82    89    35   79    57
## 9011    Suc. Belenes     8      30    NA    NA    5    13
## 9012    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9013    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9014    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9015    Suc. Belenes     3       1     2     3    3     2
## 9016    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9017    Suc. Belenes     1      NA    NA    NA   NA    NA
## 9018    Suc. Belenes     2      NA    NA    NA   NA    NA
## 9019    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9020    Suc. Belenes    NA       5     3    NA    2     8
## 9021    Suc. Belenes     6       4     6     8    6     4
## 9022    Suc. Belenes     3       8     8    14   11    11
## 9023    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9024    Suc. Belenes     2       2    NA     3   NA     2
## 9025    Suc. Belenes    15       8    19    21   17    19
## 9026    Suc. Belenes    NA       2     3     2    4     3
## 9027    Suc. Belenes     2       2     3     3    3     3
## 9028    Suc. Belenes     2      NA     2     4    4     2
## 9029    Suc. Belenes     2      NA     4     4    4     4
## 9030    Suc. Belenes    44      30    27    36   32    36
## 9031    Suc. Belenes     3      NA    NA    NA   NA    NA
## 9032    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9033    Suc. Belenes    NA      10    NA     3    3    NA
## 9034    Suc. Belenes     3      NA    NA    NA   NA    NA
## 9035    Suc. Belenes    51      20    45    39   37    37
## 9036    Suc. Belenes    67      53    60    85   81    70
## 9037    Suc. Belenes    14      14    NA    NA   NA    NA
## 9038    Suc. Belenes    22      22    20    25   20    17
## 9039    Suc. Belenes   154     125   135   144  139   137
## 9040    Suc. Belenes    30      34    36    34   36    42
## 9041    Suc. Belenes    13      10    14    15   11    12
## 9042    Suc. Belenes    23      18    15    27   20    21
## 9043    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9044    Suc. Belenes    10      NA     5     7   15    10
## 9045    Suc. Belenes    23      12     5    16   12     8
## 9046    Suc. Belenes     6      NA    NA    NA   NA    NA
## 9047    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9048    Suc. Belenes    NA       2    NA    NA    2    NA
## 9049    Suc. Belenes    17      12    20    17   20    11
## 9050    Suc. Belenes    NA      NA    NA    NA   NA     2
## 9051    Suc. Belenes     8       8     6    15    8     6
## 9052    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9053    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9054    Suc. Belenes    NA      NA     2     2    2     4
## 9055    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9056    Suc. Belenes    NA       4     4     4    4     4
## 9057    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9058    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9059    Suc. Belenes     5       2     4     6    6     5
## 9060    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9061    Suc. Belenes     4       7     7     4    7     7
## 9062    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9063    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9064    Suc. Belenes     5       2     3     5    4     4
## 9065    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9066    Suc. Belenes    NA      NA     4     4    4    NA
## 9067    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9068    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9069    Suc. Belenes     4       3     3     4    6     6
## 9070    Suc. Belenes    NA       1    NA    NA   NA    NA
## 9071    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9072    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9073    Suc. Belenes     2       2     4     4    6     8
## 9074    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9075    Suc. Belenes     4       4    11     7    7    11
## 9076    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9077    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9078    Suc. Belenes     7       4     6     8    6     8
## 9079    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9080    Suc. Belenes    NA       6     3     9   10     5
## 9081    Suc. Belenes    NA      NA    NA    NA   NA     0
## 9082    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9083    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9084    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9085    Suc. Belenes    15       8    15    17   15    19
## 9086    Suc. Belenes    13      29    19    41   35    29
## 9087    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9088    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9089    Suc. Belenes    NA       8     8     8    5     8
## 9090    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9091    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9092    Suc. Belenes     1       2     0     1    2    NA
## 9093    Suc. Belenes    21      NA     4    NA    2     2
## 9094    Suc. Belenes    NA       3     3     2   NA    NA
## 9095    Suc. Belenes    NA      NA    NA    NA    1    NA
## 9096    Suc. Belenes    NA      NA     1     1    1     1
## 9097    Suc. Belenes     0       0     1    NA    1     0
## 9098    Suc. Belenes     2       1     1     3    1     1
## 9099    Suc. Belenes     6       5     5    10   12     6
## 9100    Suc. Belenes    NA      NA     1     0    0     0
## 9101    Suc. Belenes     2       1     1     2    3     1
## 9102    Suc. Belenes     0       2    NA    NA   NA    NA
## 9103    Suc. Belenes     2       1     2     1    1     1
## 9104    Suc. Belenes     3       6     8     6   11    NA
## 9105    Suc. Belenes     0       0     0     0   NA    NA
## 9106    Suc. Belenes     1      NA     1    NA    2     2
## 9107    Suc. Belenes     2      NA     1     1    1     1
## 9108    Suc. Belenes    NA       2     2     2    2    NA
## 9109    Suc. Belenes     2       2     2     4    2     2
## 9110    Suc. Belenes    NA      NA    NA     3   NA    NA
## 9111    Suc. Belenes    14      NA    NA     7    7     7
## 9112    Suc. Belenes    NA      NA     2    NA   NA    NA
## 9113    Suc. Belenes    11      11     4     8    6    11
## 9114    Suc. Belenes    NA       1     1     2    1     1
## 9115    Suc. Belenes     2       2     4     2    2     2
## 9116    Suc. Belenes     4       2     2     4    2     2
## 9117    Suc. Belenes    NA      NA    NA     1   NA     1
## 9118    Suc. Belenes     2      27    27    25    4    30
## 9119    Suc. Belenes    NA      29    26     3   18    37
## 9120    Suc. Belenes    NA      NA     3    NA   NA    10
## 9121    Suc. Belenes     3       3     6    19    3     3
## 9122    Suc. Belenes    NA      NA    NA     2   NA    NA
## 9123    Suc. Belenes     8      47    18    20   23    24
## 9124    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9125    Suc. Belenes    NA      NA    NA    NA    6    NA
## 9126    Suc. Belenes    63     155    70   176  123   102
## 9127    Suc. Belenes     4      46    28    42    4    85
## 9128    Suc. Belenes    13      59    23    25   30    36
## 9129    Suc. Belenes     8     139    80    76   59    70
## 9130    Suc. Belenes   108      89    57    61  323    93
## 9131    Suc. Belenes     6       4     6     7    6     4
## 9132    Suc. Belenes     9       6    11     9   11     5
## 9133    Suc. Belenes     6       8    12     8    8    12
## 9134    Suc. Belenes     6       6     8     4    6     7
## 9135    Suc. Belenes    NA       1    NA    NA   NA    NA
## 9136    Suc. Belenes     5       1     3     2    6     8
## 9137    Suc. Belenes     3      NA    NA     1    1    NA
## 9138    Suc. Belenes    15      NA     1     4    8     6
## 9139    Suc. Belenes    NA      NA    NA    NA    1    NA
## 9140    Suc. Belenes     2       1     4     2    0     1
## 9141    Suc. Belenes     2       3     2     2    3     3
## 9142    Suc. Belenes     3       5    10     4    8    11
## 9143    Suc. Belenes     1       1     2     1    1    NA
## 9144    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9145    Suc. Belenes    NA      NA     2     2    4    NA
## 9146    Suc. Belenes     0       3     1     0    1     1
## 9147    Suc. Belenes     1      NA    NA    NA   NA    NA
## 9148    Suc. Belenes     0       1     1     1    1     1
## 9149    Suc. Belenes     1       1    NA    NA   NA     1
## 9150    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9151    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9152    Suc. Belenes     2       4     4     6    2     4
## 9153    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9154    Suc. Belenes    NA       3    NA     8    6    NA
## 9155    Suc. Belenes     7      11     4     7    4     9
## 9156    Suc. Belenes     0       0     1    NA    1     0
## 9157    Suc. Belenes     3       4     7     3    3     2
## 9158    Suc. Belenes     3       2     8     5    5     1
## 9159    Suc. Belenes     4       4     8     5    4     3
## 9160    Suc. Belenes     0      NA    NA     0    1     0
## 9161    Suc. Belenes    NA       0    NA     0    1     0
## 9162    Suc. Belenes     6       4     6     6    4     6
## 9163    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9164    Suc. Belenes    NA      NA     3     8    3     3
## 9165    Suc. Belenes     4      11     4     4    4     5
## 9166    Suc. Belenes     0       0     0    NA    1     0
## 9167    Suc. Belenes     2       3     4     2    2     2
## 9168    Suc. Belenes     3       2     2     5    5     1
## 9169    Suc. Belenes     1       4     7     5    6     4
## 9170    Suc. Belenes     0      NA    NA     0    1     0
## 9171    Suc. Belenes    NA       0    NA     0    1     0
## 9172    Suc. Belenes     2       2     4     4    2     2
## 9173    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9174    Suc. Belenes    NA      NA    NA    NA    3    NA
## 9175    Suc. Belenes    NA       4    NA    NA   NA     5
## 9176    Suc. Belenes     0       0     1    NA    1     0
## 9177    Suc. Belenes     2       3     4     1    1     1
## 9178    Suc. Belenes     3       2     2     5    5     1
## 9179    Suc. Belenes     1       3     6     2    4     2
## 9180    Suc. Belenes     0      NA    NA     0    1     0
## 9181    Suc. Belenes     2       2     4     1   NA     1
## 9182    Suc. Belenes     3       6    NA     3    6    NA
## 9183    Suc. Belenes     4      11    NA    NA    4    NA
## 9184    Suc. Belenes    NA       2     1    NA    0    NA
## 9185    Suc. Belenes    NA      NA     6    NA   NA    NA
## 9186    Suc. Belenes     1       1    NA     4    3     1
## 9187    Suc. Belenes    NA       0    NA     0    1     0
## 9188    Suc. Belenes     4       8     4     6    6     8
## 9189    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9190    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9191    Suc. Belenes    NA      NA    NA     2   NA    NA
## 9192    Suc. Belenes    NA       3    NA     6   11    NA
## 9193    Suc. Belenes     7      11    11     4    4     9
## 9194    Suc. Belenes     0       0     1    NA    1     0
## 9195    Suc. Belenes     3       2     4     4   NA     2
## 9196    Suc. Belenes     3       2    18     7    5     1
## 9197    Suc. Belenes     4       9    13     6   10     5
## 9198    Suc. Belenes     0      NA    NA     0    1     0
## 9199    Suc. Belenes    NA       0    NA     0    1     0
## 9200    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9201    Suc. Belenes     1       7     3     4    3     5
## 9202    Suc. Belenes    NA      NA    NA    NA   NA     0
## 9203    Suc. Belenes    NA      NA    NA     0    0    NA
## 9204    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9205    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9206    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9207    Suc. Belenes     2      NA    NA    NA   NA     4
## 9208    Suc. Belenes    NA      NA    NA    NA   NA    13
## 9209    Suc. Belenes     4      NA    NA    NA   NA    NA
## 9210    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9211    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9212    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9213    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9214    Suc. Belenes    NA      NA    NA    NA   NA    10
## 9215    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9216    Suc. Belenes     0      NA    NA    NA    0     1
## 9217    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9218    Suc. Belenes     2      NA    NA    NA   NA    NA
## 9219    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9220    Suc. Belenes     2      NA    NA    NA   NA     4
## 9221    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9222    Suc. Belenes    NA      NA    NA    NA   NA     3
## 9223    Suc. Belenes     3      NA    NA    NA   NA    NA
## 9224    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9225    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9226    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9227    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9228    Suc. Belenes     6      NA    NA    NA   NA    19
## 9229    Suc. Belenes    NA      NA    NA    NA   NA    20
## 9230    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9231    Suc. Belenes    NA      NA    NA    NA   NA    19
## 9232    Suc. Belenes    NA      NA    NA    NA    1     2
## 9233    Suc. Belenes    NA      NA    NA    NA   NA     2
## 9234    Suc. Belenes     2      NA    NA    NA   NA     2
## 9235    Suc. Belenes    NA      NA    NA    NA   NA     6
## 9236    Suc. Belenes    NA      NA    NA    NA   NA     8
## 9237    Suc. Belenes     6      NA    NA    NA    6    59
## 9238    Suc. Belenes    NA      NA    NA    NA    5    11
## 9239    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9240    Suc. Belenes     3       3    10     3    3     3
## 9241    Suc. Belenes     2       2    NA    NA    2     2
## 9242    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9243    Suc. Belenes     6      NA    NA    NA   NA    82
## 9244    Suc. Belenes     7      NA    NA    NA   NA    99
## 9245    Suc. Belenes     4       4    14    NA   NA    46
## 9246    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9247    Suc. Belenes    NA       2     2    NA   NA    46
## 9248    Suc. Belenes     4       6     4    NA   NA    49
## 9249    Suc. Belenes    NA      NA    NA    NA    1     2
## 9250    Suc. Belenes     2      NA    NA    NA   NA     9
## 9251    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9252    Suc. Belenes    NA      NA    NA    NA   NA     3
## 9253    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9254    Suc. Belenes     1      NA    NA    NA   NA    NA
## 9255    Suc. Belenes     4      NA    NA    NA   NA     0
## 9256    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9257    Suc. Belenes     2      NA    NA    NA   NA    NA
## 9258    Suc. Belenes     2      NA    NA    NA   NA    NA
## 9259    Suc. Belenes     0      NA    NA    NA   NA    NA
## 9260    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9261    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9262    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9263    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9264    Suc. Belenes    NA      NA    NA    NA   NA     0
## 9265    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9266    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9267    Suc. Belenes    NA      NA    NA    NA   NA     3
## 9268    Suc. Belenes    11      NA    NA    NA   NA    NA
## 9269    Suc. Belenes     0      NA    NA    NA    0     1
## 9270    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9271    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9272    Suc. Belenes     3      NA    NA    NA   NA     2
## 9273    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9274    Suc. Belenes     4      NA    NA    NA   NA    NA
## 9275    Suc. Belenes     0      NA    NA    NA    0     1
## 9276    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9277    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9278    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9279    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9280    Suc. Belenes    11      NA    NA    NA   NA    NA
## 9281    Suc. Belenes     0      NA    NA    NA    0     1
## 9282    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9283    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9284    Suc. Belenes     3      NA    NA    NA   NA     1
## 9285    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9286    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9287    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9288    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9289    Suc. Belenes     1      NA    NA    NA   NA    NA
## 9290    Suc. Belenes     3      NA    NA    NA   NA     3
## 9291    Suc. Belenes    11      NA    NA    NA   NA    NA
## 9292    Suc. Belenes     0      NA    NA    NA    0     1
## 9293    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9294    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9295    Suc. Belenes     3      NA    NA    NA   NA     3
## 9296    Suc. Belenes     3      NA    NA    NA   NA    NA
## 9297    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9298    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9299    Suc. Belenes    15       6    13    15   13    11
## 9300    Suc. Belenes    16       3    19    13   13    13
## 9301    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9302    Suc. Belenes    15       5    15    13   13    10
## 9303    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9304    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9305    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9306    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9307    Suc. Belenes    NA      NA     1    NA   NA    NA
## 9308    Suc. Belenes     1       3     6     5    4     6
## 9309    Suc. Belenes    NA      NA    NA    NA   NA     0
## 9310    Suc. Belenes     1       1     1     1    1     1
## 9311    Suc. Belenes    NA      NA    NA    NA    2    NA
## 9312    Suc. Belenes     2       1     2     1    1     1
## 9313    Suc. Belenes     3       6    11     6   11     8
## 9314    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9315    Suc. Belenes    NA       0     0    NA   NA     0
## 9316    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9317    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9318    Suc. Belenes    NA       1    NA     1    1     1
## 9319    Suc. Belenes     4       2     2     2   NA     2
## 9320    Suc. Belenes     6       4    11    11    8    15
## 9321    Suc. Belenes    11      14    14    20   17    17
## 9322    Suc. Belenes    NA      NA     4    NA   NA    NA
## 9323    Suc. Belenes     8      13    15     8   11    11
## 9324    Suc. Belenes     4       1     4     5    4     3
## 9325    Suc. Belenes     6       4     6     2    6     6
## 9326    Suc. Belenes     4       6     6     4    6     6
## 9327    Suc. Belenes     1       2     2     1    1    NA
## 9328    Suc. Belenes    34      32    38    38   40    40
## 9329    Suc. Belenes    NA      NA    NA    NA   NA     3
## 9330    Suc. Belenes     3       3     6     3    3     3
## 9331    Suc. Belenes    17      15    11    21   17    12
## 9332    Suc. Belenes    NA      NA    NA     4   NA    NA
## 9333    Suc. Belenes    42      28    35    49   49    60
## 9334    Suc. Belenes   130     116   141   176  148   151
## 9335    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9336    Suc. Belenes    27      19    17    30   25    32
## 9337    Suc. Belenes    61      44    51    57   51    61
## 9338    Suc. Belenes     9      11     8     9   13    10
## 9339    Suc. Belenes     3       2     2    NA   NA     3
## 9340    Suc. Belenes    NA      NA    NA     4    4    NA
## 9341    Suc. Belenes    NA      NA     1     2   NA    NA
## 9342    Suc. Belenes     1       1     1     1    1     1
## 9343    Suc. Belenes    NA      NA    NA     1    1    NA
## 9344    Suc. Belenes    NA      NA    NA     1   NA     1
## 9345    Suc. Belenes     1      NA     4    NA   NA    NA
## 9346    Suc. Belenes     2       0     0     0    0     0
## 9347    Suc. Belenes    NA      NA    NA    NA    0    NA
## 9348    Suc. Belenes     4       6     4     5    6     9
## 9349    Suc. Belenes    NA      NA    NA    NA   NA     0
## 9350    Suc. Belenes    NA      NA    NA     1   NA    NA
## 9351    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9352    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9353    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9354    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9355    Suc. Belenes     0       0     0     1    0     1
## 9356    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9357    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9358    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9359    Suc. Belenes     4      NA     1     2    2     1
## 9360    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9361    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9362    Suc. Belenes     1       1     1     2    1     1
## 9363    Suc. Belenes     1      NA    NA    NA   NA    NA
## 9364    Suc. Belenes    NA       0    NA     1    0     0
## 9365    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9366    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9367    Suc. Belenes     1      NA     1     2    2     1
## 9368    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9369    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9370    Suc. Belenes     1       1     1     2    1     1
## 9371    Suc. Belenes     1      NA    NA    NA   NA    NA
## 9372    Suc. Belenes    NA       0    NA     1    0     0
## 9373    Suc. Belenes     1      NA     1     5    2     1
## 9374    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9375    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9376    Suc. Belenes     1       1     1     2    1     1
## 9377    Suc. Belenes     1      NA    NA    NA   NA    NA
## 9378    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9379    Suc. Belenes    11       8    11     8    6    14
## 9380    Suc. Belenes     2       2    NA    NA    2    NA
## 9381    Suc. Belenes    NA       0    NA     1    0     0
## 9382    Suc. Belenes    NA      NA    NA    NA   NA     3
## 9383    Suc. Belenes     1       3     4     2    2     4
## 9384    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9385    Suc. Belenes     1       0     0     0    0     0
## 9386    Suc. Belenes     1       1     1     2    3     1
## 9387    Suc. Belenes     1      10    NA    NA   NA    NA
## 9388    Suc. Belenes    NA       0    NA     1    0     0
## 9389    Suc. Belenes    NA      NA     1    NA   NA    NA
## 9390    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9391    Suc. Belenes     6       5    11     7    9    11
## 9392    Suc. Belenes    NA      NA    NA    NA   NA     0
## 9393    Suc. Belenes    NA      NA    NA    NA   NA     0
## 9394    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9395    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9396    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9397    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9398    Suc. Belenes    11       4     2     2   NA     4
## 9399    Suc. Belenes    13       6     3     3   NA     6
## 9400    Suc. Belenes    NA      NA    NA     1   NA    NA
## 9401    Suc. Belenes     0      NA    NA    NA   NA    NA
## 9402    Suc. Belenes    NA       2    NA    NA   NA    NA
## 9403    Suc. Belenes     3       3    NA    NA   NA     3
## 9404    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9405    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9406    Suc. Belenes    NA      NA    NA    NA   NA     2
## 9407    Suc. Belenes    NA      NA    NA    NA   NA     3
## 9408    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9409    Suc. Belenes     0      NA    NA    NA   NA    NA
## 9410    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9411    Suc. Belenes     1       3     1     1    3     3
## 9412    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9413    Suc. Belenes     1       2     1    NA   NA     1
## 9414    Suc. Belenes    NA      NA    NA     2   NA    NA
## 9415    Suc. Belenes    NA       2     2     1   NA     1
## 9416    Suc. Belenes     3      NA     3    NA   NA    NA
## 9417    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9418    Suc. Belenes    NA       0    NA    NA   NA     0
## 9419    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9420    Suc. Belenes    NA      NA    NA    NA   NA     3
## 9421    Suc. Belenes     1      NA    NA    NA   NA    NA
## 9422    Suc. Belenes    NA      NA     4     2    2    NA
## 9423    Suc. Belenes    NA      NA     1     1   NA    NA
## 9424    Suc. Belenes     8       4    11    13   11    11
## 9425    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9426    Suc. Belenes    NA       3    NA    NA   NA    NA
## 9427    Suc. Belenes     6       8    11    17   11    11
## 9428    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9429    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9430    Suc. Belenes     6       6     8    13   13    21
## 9431    Suc. Belenes     1      NA     1     2   NA    NA
## 9432    Suc. Belenes    NA       2    NA    NA   NA    NA
## 9433    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9434    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9435    Suc. Belenes     1      NA    NA     1    2    NA
## 9436    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9437    Suc. Belenes    34      34    40    79   55    34
## 9438    Suc. Belenes    NA      NA    NA    NA   NA    54
## 9439    Suc. Belenes    57      48    48    60   48   114
## 9440    Suc. Belenes     5       5    11     9   12     6
## 9441    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9442    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9443    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9444    Suc. Belenes    74      53    49   159  180   183
## 9445    Suc. Belenes   106      92    67   194  247   377
## 9446    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9447    Suc. Belenes    15      11    11    36   30    34
## 9448    Suc. Belenes    76      72    72   150  165   203
## 9449    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9450    Suc. Belenes     2       3     5     8    9     4
## 9451    Suc. Belenes     2       2     5    12    9     5
## 9452    Suc. Belenes    NA       4     4    14   16     8
## 9453    Suc. Belenes     3       3     5     3    7     5
## 9454    Suc. Belenes    NA       1    NA    NA   NA    NA
## 9455    Suc. Belenes    NA       1     1     1   NA     1
## 9456    Suc. Belenes    NA       1    NA    NA   NA    NA
## 9457    Suc. Belenes     1       1    NA    NA   NA    NA
## 9458    Suc. Belenes     0       0     1    NA   NA     0
## 9459    Suc. Belenes     2       2     1     1    1     3
## 9460    Suc. Belenes     2       3     4     3    3     8
## 9461    Suc. Belenes    NA      NA    NA    NA   NA     2
## 9462    Suc. Belenes     4      NA    NA     2   NA     4
## 9463    Suc. Belenes     1       0    NA     1   NA     1
## 9464    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9465    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9466    Suc. Belenes     1       1     0    NA   NA     1
## 9467    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9468    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9469    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9470    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9471    Suc. Belenes    NA      NA    NA    NA   NA     2
## 9472    Suc. Belenes    NA      NA     3    NA    5    12
## 9473    Suc. Belenes     0      NA    NA    NA   NA    NA
## 9474    Suc. Belenes    NA      NA    NA    NA   NA     4
## 9475    Suc. Belenes    NA      NA    NA     2   NA     4
## 9476    Suc. Belenes    NA       1    NA     0   NA    NA
## 9477    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9478    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9479    Suc. Belenes    NA      NA    NA    NA   NA     2
## 9480    Suc. Belenes    NA      NA    NA    NA    2    12
## 9481    Suc. Belenes    NA      NA    NA     4   NA    NA
## 9482    Suc. Belenes     0      NA    NA    NA   NA    NA
## 9483    Suc. Belenes    NA      NA    NA    NA   NA     3
## 9484    Suc. Belenes    NA      NA    NA     2   NA     6
## 9485    Suc. Belenes    NA       1    NA     0   NA    NA
## 9486    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9487    Suc. Belenes    NA      NA    NA    NA    2     9
## 9488    Suc. Belenes     0      NA    NA    NA   NA    NA
## 9489    Suc. Belenes    NA      NA     0    NA   NA     2
## 9490    Suc. Belenes    NA      NA    NA    NA   NA     4
## 9491    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9492    Suc. Belenes    NA      NA    NA    NA   NA     2
## 9493    Suc. Belenes    NA      NA     3    NA    3     3
## 9494    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9495    Suc. Belenes    NA      NA    NA     2    4    NA
## 9496    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9497    Suc. Belenes    NA       1    NA     0   NA    NA
## 9498    Suc. Belenes    NA       2    NA    NA   NA    NA
## 9499    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9500    Suc. Belenes    NA      NA    NA    NA   NA     2
## 9501    Suc. Belenes    NA      NA     3     3   11    15
## 9502    Suc. Belenes     0      NA    NA    NA   NA    NA
## 9503    Suc. Belenes    NA      NA    NA     0   NA     3
## 9504    Suc. Belenes    NA      NA     2     2   NA     8
## 9505    Suc. Belenes    NA       1    NA     0   NA    NA
## 9506    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9507    Suc. Belenes     2       1     2     1    1     1
## 9508    Suc. Belenes    NA      NA    NA    NA   NA     0
## 9509    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9510    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9511    Suc. Belenes     4       6     6     8    4     6
## 9512    Suc. Belenes     6       6     3    13    6    10
## 9513    Suc. Belenes     3      NA    NA     3    3     3
## 9514    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9515    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9516    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9517    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9518    Suc. Belenes     2       2     7     4    3     4
## 9519    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9520    Suc. Belenes     1       2     1     2    1     1
## 9521    Suc. Belenes     0      NA    NA    NA   NA    NA
## 9522    Suc. Belenes    NA       1     2     1    1     1
## 9523    Suc. Belenes    NA      NA     3     6   NA     3
## 9524    Suc. Belenes    NA      NA    NA     1   NA    NA
## 9525    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9526    Suc. Belenes    NA       1    NA     1   NA    NA
## 9527    Suc. Belenes     2       2     2     2    2    NA
## 9528    Suc. Belenes    11      19    19    21   17    17
## 9529    Suc. Belenes    14       8     6     6    8     6
## 9530    Suc. Belenes    NA       2     2    NA    2    NA
## 9531    Suc. Belenes    17       8    17    13   13    15
## 9532    Suc. Belenes     1      NA     3     3    1     2
## 9533    Suc. Belenes    NA       2     2    NA    2     2
## 9534    Suc. Belenes    NA      NA    NA     4    2    NA
## 9535    Suc. Belenes     3      NA     3    NA    6     3
## 9536    Suc. Belenes    NA      NA    NA    NA    2    NA
## 9537    Suc. Belenes    11      13     6    13   13    15
## 9538    Suc. Belenes    NA      NA     3    NA   NA    NA
## 9539    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9540    Suc. Belenes    16      29    22    19   22    25
## 9541    Suc. Belenes     6       8     8    11    8     6
## 9542    Suc. Belenes     6       8     3     8    6     6
## 9543    Suc. Belenes     6       3    NA     6    6     8
## 9544    Suc. Belenes    11      14    18    11   14    14
## 9545    Suc. Belenes   113      92   109   113   88    92
## 9546    Suc. Belenes     4       4     4     4    8     8
## 9547    Suc. Belenes    13       6     8    13   13    11
## 9548    Suc. Belenes    61      68    74    72   74    57
## 9549    Suc. Belenes     2       2     2     4    2     2
## 9550    Suc. Belenes     2       3     5     5    5     2
## 9551    Suc. Belenes     1       3     3     2    2     2
## 9552    Suc. Belenes    NA       1     1     1    1     1
## 9553    Suc. Belenes    NA      NA    NA     1    1     1
## 9554    Suc. Belenes    NA       1    NA     1   NA    NA
## 9555    Suc. Belenes     1       1    NA     2   NA     1
## 9556    Suc. Belenes     1      NA    NA     1    0     0
## 9557    Suc. Belenes     2      NA     1     1    1     1
## 9558    Suc. Belenes     2       0     2     0    1     0
## 9559    Suc. Belenes     1       0     1     1    2    NA
## 9560    Suc. Belenes     3       2    12     5    4     3
## 9561    Suc. Belenes    NA      NA    NA    NA   NA     0
## 9562    Suc. Belenes    NA      NA    NA     2   NA     2
## 9563    Suc. Belenes     0       0    NA     1    0    NA
## 9564    Suc. Belenes     1       1     1     1    1     1
## 9565    Suc. Belenes     1       1     1     2    1     2
## 9566    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9567    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9568    Suc. Belenes     2       3    NA     2    1     2
## 9569    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9570    Suc. Belenes    NA      NA     1    NA   NA    NA
## 9571    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9572    Suc. Belenes     1       1     1     1    1    NA
## 9573    Suc. Belenes     1       1     1     1    1     1
## 9574    Suc. Belenes     1       3     1     1    2     1
## 9575    Suc. Belenes    NA       0    NA    NA   NA    NA
## 9576    Suc. Belenes    NA      NA    NA    NA    1    NA
## 9577    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9578    Suc. Belenes    NA      NA     1    NA   NA    NA
## 9579    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9580    Suc. Belenes    NA       0    NA     0   NA     0
## 9581    Suc. Belenes     1       1     1     1    1     1
## 9582    Suc. Belenes    NA       0    NA    NA   NA    NA
## 9583    Suc. Belenes     2      NA    NA     2    1    NA
## 9584    Suc. Belenes    NA      NA     1    NA   NA    NA
## 9585    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9586    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9587    Suc. Belenes     1       1     1     1    1     1
## 9588    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9589    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9590    Suc. Belenes     3       6     3    NA   NA     3
## 9591    Suc. Belenes    NA       0    NA    NA   NA    NA
## 9592    Suc. Belenes    NA      NA     2    NA    1     2
## 9593    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9594    Suc. Belenes    NA       6     1     3    3     3
## 9595    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9596    Suc. Belenes     0       1     1     1    0     0
## 9597    Suc. Belenes     1       1     1     3    1     1
## 9598    Suc. Belenes     1       4     1     1    2     1
## 9599    Suc. Belenes    NA       0    NA    NA   NA    NA
## 9600    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9601    Suc. Belenes     2       3     2     4    4     2
## 9602    Suc. Belenes     0       0    NA     0   NA    NA
## 9603    Suc. Belenes    NA      NA    NA    NA   NA     0
## 9604    Suc. Belenes    38      21    21    32   63    19
## 9605    Suc. Belenes    98      89    76   111  139   101
## 9606    Suc. Belenes    NA      NA    NA    NA   NA     7
## 9607    Suc. Belenes    18      15    18    48   46    36
## 9608    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9609    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9610    Suc. Belenes     3       5     3     3    5    NA
## 9611    Suc. Belenes    NA      NA    NA    NA    1    NA
## 9612    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9613    Suc. Belenes    NA       3    NA    NA   NA    NA
## 9614    Suc. Belenes     2      NA    NA    NA   NA     2
## 9615    Suc. Belenes     2       2    NA    NA   NA    NA
## 9616    Suc. Belenes    51      36    27    42   46    55
## 9617    Suc. Belenes    38      38    44    57   38    42
## 9618    Suc. Belenes    NA      14     8     8    3     6
## 9619    Suc. Belenes    23      14    17    28   23    25
## 9620    Suc. Belenes     3       2     5     3    2     7
## 9621    Suc. Belenes    NA      NA    NA    38   21    91
## 9622    Suc. Belenes     8       6     3     3    3     7
## 9623    Suc. Belenes     8       8     6     8   23     8
## 9624    Suc. Belenes     4      NA    NA     6   NA    NA
## 9625    Suc. Belenes    53      59    42    49  106    74
## 9626    Suc. Belenes   159      66   124   122  108   106
## 9627    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9628    Suc. Belenes   444     460   396   491  380   254
## 9629    Suc. Belenes    60      68   120   122  105    53
## 9630    Suc. Belenes   188     167   189   293  390   360
## 9631    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9632    Suc. Belenes   113      68    28    28   56    85
## 9633    Suc. Belenes   106     247   106   282  387   159
## 9634    Suc. Belenes    NA      NA   704    NA   NA   704
## 9635    Suc. Belenes     2      NA    NA    NA   NA    NA
## 9636    Suc. Belenes   148     180   232   159  127    95
## 9637    Suc. Belenes    NA      NA    NA    NA   NA   146
## 9638    Suc. Belenes    NA      NA    NA    NA   NA   930
## 9639    Suc. Belenes     3       5     4     7    9     9
## 9640    Suc. Belenes     6      12     9    NA    6     6
## 9641    Suc. Belenes    60      50    38    65   60    90
## 9642    Suc. Belenes    32      NA    NA    NA   12    30
## 9643    Suc. Belenes    22      12    NA    26   18    20
## 9644    Suc. Belenes    23       5     5    11    9    15
## 9645    Suc. Belenes    NA      NA    NA     5    6    NA
## 9646    Suc. Belenes     7       9     3     9    9     5
## 9647    Suc. Belenes     6       2    NA     4    2     4
## 9648    Suc. Belenes     3      NA     3    NA    8     3
## 9649    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9650    Suc. Belenes     2       4     2     2   NA     2
## 9651    Suc. Belenes    23      15    20    33   39    41
## 9652    Suc. Belenes     6      NA    NA    NA   NA    NA
## 9653    Suc. Belenes     6       8    NA     6   NA    NA
## 9654    Suc. Belenes    14       7    14     7   14    11
## 9655    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9656    Suc. Belenes    12       2     4     5    7     3
## 9657    Suc. Belenes    74      53    55    42   57    40
## 9658    Suc. Belenes    41       5    54    NA    8    NA
## 9659    Suc. Belenes    NA      NA     2     2   NA    NA
## 9660    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9661    Suc. Belenes    NA       3     3     6   NA     6
## 9662    Suc. Belenes     4       4     7     7   18     4
## 9663    Suc. Belenes     2       2     2     2   NA     3
## 9664    Suc. Belenes    23      20    11    25   13    17
## 9665    Suc. Belenes    46      NA    28    NA    3     3
## 9666    Suc. Belenes    NA      NA    NA     2   NA    NA
## 9667    Suc. Belenes    15      11    20    35   35    38
## 9668    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9669    Suc. Belenes     8       3     3     6   NA    NA
## 9670    Suc. Belenes     7       7     4    21   18    11
## 9671    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9672    Suc. Belenes     3       2     3     2    2     2
## 9673    Suc. Belenes    53      47    42    40   30    40
## 9674    Suc. Belenes    46      NA    28    NA    3     3
## 9675    Suc. Belenes    NA       5     3    NA    3     5
## 9676    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9677    Suc. Belenes    13      NA    11    25   NA    NA
## 9678    Suc. Belenes    NA      NA    23    NA   NA    NA
## 9679    Suc. Belenes     4       2     4     4    2     2
## 9680    Suc. Belenes    24      18    23    35   36    42
## 9681    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9682    Suc. Belenes     8       6     6     6   NA    NA
## 9683    Suc. Belenes    14      11    11     7   21    18
## 9684    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9685    Suc. Belenes     5       5     5     3    5     3
## 9686    Suc. Belenes    76      55    61    74   49    40
## 9687    Suc. Belenes    46      NA    28     3    8     3
## 9688    Suc. Belenes    NA      NA    NA     2    4     3
## 9689    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9690    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9691    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9692    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9693    Suc. Belenes     4      11     4    13    2     4
## 9694    Suc. Belenes    10      13    10    22   10     6
## 9695    Suc. Belenes     5       5     3     5    3     3
## 9696    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9697    Suc. Belenes    NA      NA     1    NA   NA    NA
## 9698    Suc. Belenes    NA      NA    NA    NA    1    NA
## 9699    Suc. Belenes     1       0     1     0    1     0
## 9700    Suc. Belenes     1      NA    NA    NA   NA    NA
## 9701    Suc. Belenes     3       3     2     3    3     5
## 9702    Suc. Belenes     1      NA    NA     1    1     1
## 9703    Suc. Belenes     0      NA    NA    NA   NA    NA
## 9704    Suc. Belenes     2      NA     1     1    1     1
## 9705    Suc. Belenes    NA      NA    NA     2   NA    NA
## 9706    Suc. Belenes    NA      NA    NA     1   NA     1
## 9707    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9708    Suc. Belenes     1       1    NA    NA   NA    NA
## 9709    Suc. Belenes     4       4     2     2    4     2
## 9710    Suc. Belenes    13      13     6    11   15     8
## 9711    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9712    Suc. Belenes    NA       2    NA    NA   NA    NA
## 9713    Suc. Belenes    34      13    34    32   40    24
## 9714    Suc. Belenes    NA      NA    NA    NA   NA     3
## 9715    Suc. Belenes    44      41    54    51   44    38
## 9716    Suc. Belenes     8      11     8    14   15    11
## 9717    Suc. Belenes    NA      NA    NA     1   NA    NA
## 9718    Suc. Belenes    32      35    46    56   53    35
## 9719    Suc. Belenes   155     144   141   176  211   134
## 9720    Suc. Belenes    17      15    13    11   15    15
## 9721    Suc. Belenes    23      17    21    30   23    25
## 9722    Suc. Belenes    89      87    87   118   78    95
## 9723    Suc. Belenes     5       6     5     7    9     5
## 9724    Suc. Belenes     3       3     5     3    5     3
## 9725    Suc. Belenes    10       8    10    14   14    14
## 9726    Suc. Belenes    10       6     6     7    6     6
## 9727    Suc. Belenes     1       1    NA     1    1     1
## 9728    Suc. Belenes    NA      NA    NA     1   NA    NA
## 9729    Suc. Belenes    NA      NA    NA     2   NA    NA
## 9730    Suc. Belenes     1      NA     0     0    0     0
## 9731    Suc. Belenes     3       3     3     3    1     2
## 9732    Suc. Belenes    NA      NA    NA    NA   NA     0
## 9733    Suc. Belenes     0      NA     0     0    0     0
## 9734    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9735    Suc. Belenes    NA      NA    NA    NA   NA     3
## 9736    Suc. Belenes     3      NA    NA    NA   NA     1
## 9737    Suc. Belenes     2       0     1     0    1     0
## 9738    Suc. Belenes     1       1     2     2    0     2
## 9739    Suc. Belenes    NA      NA    NA     2   NA    NA
## 9740    Suc. Belenes     2       4     1     4    2     5
## 9741    Suc. Belenes    NA       0    NA    NA   NA    NA
## 9742    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9743    Suc. Belenes     0       0     1     0    0     0
## 9744    Suc. Belenes    NA       0    NA    NA   NA    NA
## 9745    Suc. Belenes    NA      NA     1    NA    4     1
## 9746    Suc. Belenes    NA       0    NA    NA   NA    NA
## 9747    Suc. Belenes    NA      NA    NA     3   NA     1
## 9748    Suc. Belenes     1       0     1     0    1     2
## 9749    Suc. Belenes     3       3     2     2    2     2
## 9750    Suc. Belenes     4       4     3     2    6     3
## 9751    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9752    Suc. Belenes    NA       0    NA    NA   NA    NA
## 9753    Suc. Belenes    NA      NA    NA    NA   NA     3
## 9754    Suc. Belenes    NA       3     3    NA    3     1
## 9755    Suc. Belenes     1       0     1     0    1     0
## 9756    Suc. Belenes     2       2     2     1    2     3
## 9757    Suc. Belenes     6       4     5     4    6     1
## 9758    Suc. Belenes    NA       5    NA    NA   NA    NA
## 9759    Suc. Belenes    NA       0    NA    NA   NA    NA
## 9760    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9761    Suc. Belenes     1      NA     1     1    3    NA
## 9762    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9763    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9764    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9765    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9766    Suc. Belenes     6      44     2     2    2     4
## 9767    Suc. Belenes    10     101     3     3    3     3
## 9768    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9769    Suc. Belenes     3      56    NA    NA   NA    NA
## 9770    Suc. Belenes     1       0     0     0    0     0
## 9771    Suc. Belenes    NA       2     3    NA    1    NA
## 9772    Suc. Belenes     0      NA    NA     3    4     2
## 9773    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9774    Suc. Belenes     1       3     1    NA    1     1
## 9775    Suc. Belenes    NA      NA    NA     4   NA    NA
## 9776    Suc. Belenes     2       2     1     1    1     1
## 9777    Suc. Belenes    NA      17    NA    NA    8    NA
## 9778    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9779    Suc. Belenes    NA      NA    NA     0   NA    NA
## 9780    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9781    Suc. Belenes     2       4    NA    NA   NA    NA
## 9782    Suc. Belenes    NA      NA    NA     2    2    NA
## 9783    Suc. Belenes     1       1     1    NA    1     1
## 9784    Suc. Belenes     8      11    11     8   15     4
## 9785    Suc. Belenes     6       3     3     6    6     8
## 9786    Suc. Belenes     8       3     8     8    6     6
## 9787    Suc. Belenes     8      NA    NA     6   NA     6
## 9788    Suc. Belenes     2       2     2     2    2     2
## 9789    Suc. Belenes    13      11     6    13   11    32
## 9790    Suc. Belenes     2       2     4     6    7    18
## 9791    Suc. Belenes     6       5     2     5    5     2
## 9792    Suc. Belenes    NA       2     4     2    4     2
## 9793    Suc. Belenes     3       3     6     6    3    NA
## 9794    Suc. Belenes     2      NA     2     4   NA     2
## 9795    Suc. Belenes    32      36    55     4   25    21
## 9796    Suc. Belenes    16      26    16    26   48     3
## 9797    Suc. Belenes    13      13    19    22   44   108
## 9798    Suc. Belenes   149       3   127    92   82    92
## 9799    Suc. Belenes    14      18     6    15   36     2
## 9800    Suc. Belenes    33      12     9    20   35    60
## 9801    Suc. Belenes    20      25    54     6   NA    87
## 9802    Suc. Belenes    25      51     6    28   85     6
## 9803    Suc. Belenes    99     151    81    39  211    49
## 9804    Suc. Belenes   232     278    74    35  416   426
## 9805    Suc. Belenes     2       3     3    NA    2    NA
## 9806    Suc. Belenes    15      17    11    13   13    15
## 9807    Suc. Belenes    11      21     2     6    4    46
## 9808    Suc. Belenes   188     256   108   526   23    13
## 9809    Suc. Belenes    NA      NA    NA     8    3     5
## 9810    Suc. Belenes    15       9     9     9    9     9
## 9811    Suc. Belenes    11      14    20     3   15    34
## 9812    Suc. Belenes     8       6     6     9    9     8
## 9813    Suc. Belenes     8      NA     8     8   10    12
## 9814    Suc. Belenes    11      11     9    10    9    19
## 9815    Suc. Belenes    NA       1    NA    NA   NA    NA
## 9816    Suc. Belenes     2       1     1     1    1     1
## 9817    Suc. Belenes    NA       1    NA     1   NA    NA
## 9818    Suc. Belenes     4       3    NA     3    3     3
## 9819    Suc. Belenes     1      NA    NA    NA   NA    NA
## 9820    Suc. Belenes     4       0     1     0    2     0
## 9821    Suc. Belenes     2       1     1    NA    0    NA
## 9822    Suc. Belenes     4       3    NA     1    4    NA
## 9823    Suc. Belenes    NA       1    NA    NA   NA    NA
## 9824    Suc. Belenes    NA       2     2     2    2     2
## 9825    Suc. Belenes     0       1     0     1    1     1
## 9826    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9827    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9828    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9829    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9830    Suc. Belenes     0       1     0     0    0     2
## 9831    Suc. Belenes     5       5     4     5    5     3
## 9832    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9833    Suc. Belenes     2      NA     4    NA    2     4
## 9834    Suc. Belenes    NA      14    17    NA   14    20
## 9835    Suc. Belenes     1       0     0     0    0     0
## 9836    Suc. Belenes     0       0    NA    NA    0     0
## 9837    Suc. Belenes     6       8     3    25    3     1
## 9838    Suc. Belenes     4       3     1     1    3     1
## 9839    Suc. Belenes    NA       1     0     0    0     0
## 9840    Suc. Belenes    NA      NA    NA     2    2    NA
## 9841    Suc. Belenes     6       8    NA     3    6    11
## 9842    Suc. Belenes     0       0     0     0    0     0
## 9843    Suc. Belenes    NA      NA    NA     0    0    NA
## 9844    Suc. Belenes     2       2     3    NA    1     1
## 9845    Suc. Belenes     2       1    NA     1    2     1
## 9846    Suc. Belenes    NA       1     0     0    0     0
## 9847    Suc. Belenes    NA      NA    NA     2   NA     2
## 9848    Suc. Belenes    11       3     3    NA    6     6
## 9849    Suc. Belenes     1       0     0     0    0     0
## 9850    Suc. Belenes    NA      NA    NA    NA    0    NA
## 9851    Suc. Belenes     6       4     1     8    1     1
## 9852    Suc. Belenes     1      NA     1     1   NA     1
## 9853    Suc. Belenes     1       2     1     2    1     3
## 9854    Suc. Belenes     8       8    11    NA    8    14
## 9855    Suc. Belenes    11       6    NA     2    2    NA
## 9856    Suc. Belenes     1       4     1     1    4     1
## 9857    Suc. Belenes    NA       1     0     0    0     0
## 9858    Suc. Belenes     2       2     2     4    2     4
## 9859    Suc. Belenes    NA      17    17    NA    8     6
## 9860    Suc. Belenes     1       0     0     0    0     0
## 9861    Suc. Belenes     0      NA     0    NA    0    NA
## 9862    Suc. Belenes     6       4     3    27    3     1
## 9863    Suc. Belenes     3      14     1     2    3     1
## 9864    Suc. Belenes    NA       1     0     0    0     0
## 9865    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9866    Suc. Belenes     6      10     6     4    7     4
## 9867    Suc. Belenes    NA      NA    NA    NA   NA     0
## 9868    Suc. Belenes    NA      NA    NA    10   NA    NA
## 9869    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9870    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9871    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9872    Suc. Belenes    NA      NA     4    NA   NA     2
## 9873    Suc. Belenes    NA      NA    NA    NA   NA     3
## 9874    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9875    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9876    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9877    Suc. Belenes    NA      12    NA    NA   NA    NA
## 9878    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9879    Suc. Belenes     1      NA    NA    NA   NA     1
## 9880    Suc. Belenes    NA      NA     2    NA   NA     1
## 9881    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9882    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9883    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9884    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9885    Suc. Belenes    NA      NA    NA    NA    4     4
## 9886    Suc. Belenes    NA      NA     2    NA    2    NA
## 9887    Suc. Belenes     3       3     6    NA   11     6
## 9888    Suc. Belenes    NA      NA    NA    NA    3    NA
## 9889    Suc. Belenes    NA      NA     8     2   30    38
## 9890    Suc. Belenes    NA      NA    NA    NA    2    NA
## 9891    Suc. Belenes    58      NA   185    32  114    NA
## 9892    Suc. Belenes    NA      NA    NA    NA   NA    35
## 9893    Suc. Belenes    NA     181   292   333  285   336
## 9894    Suc. Belenes    NA       2    17    41   48    33
## 9895    Suc. Belenes    50      83    14    NA   33    33
## 9896    Suc. Belenes    NA      NA    NA    60   NA    NA
## 9897    Suc. Belenes    39      NA    60    49  169   120
## 9898    Suc. Belenes   472     497   898   243   NA   838
## 9899    Suc. Belenes    42      NA    30    91  110   216
## 9900    Suc. Belenes   328     372   594   750  636   573
## 9901    Suc. Belenes     1      NA    NA    NA   NA    NA
## 9902    Suc. Belenes    11      NA    18    11   33    22
## 9903    Suc. Belenes    17      NA    NA    NA   17    17
## 9904    Suc. Belenes    12      12    NA    11   14    NA
## 9905    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9906    Suc. Belenes     0       0    NA    NA   NA     0
## 9907    Suc. Belenes    NA      NA    NA    NA    1    NA
## 9908    Suc. Belenes    NA      NA    10    NA    4     7
## 9909    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9910    Suc. Belenes    NA      NA    NA     4    2     2
## 9911    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9912    Suc. Belenes     0      NA    NA    NA   NA     0
## 9913    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9914    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9915    Suc. Belenes    NA      NA    11     4   NA     3
## 9916    Suc. Belenes    NA      NA    NA    NA    0    NA
## 9917    Suc. Belenes    NA       1    13     7   20    11
## 9918    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9919    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9920    Suc. Belenes    NA      NA     6     1   NA    NA
## 9921    Suc. Belenes    NA      NA    NA     4   NA    NA
## 9922    Suc. Belenes    NA      NA    NA    NA    0    NA
## 9923    Suc. Belenes    NA       1     9     3    1    NA
## 9924    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9925    Suc. Belenes    NA      NA     6     1   NA    NA
## 9926    Suc. Belenes    NA      NA    NA    NA    0     0
## 9927    Suc. Belenes    NA       1    11    11    3     6
## 9928    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9929    Suc. Belenes    NA       3     3    NA   NA    NA
## 9930    Suc. Belenes    NA      NA     2     4    2    NA
## 9931    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9932    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9933    Suc. Belenes    NA      NA    17    12   NA     8
## 9934    Suc. Belenes     0       1     0    NA    3    NA
## 9935    Suc. Belenes    NA       1    15    11   12    13
## 9936    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9937    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9938    Suc. Belenes    NA       6    NA    NA    1    NA
## 9939    Suc. Belenes    NA      NA     0    NA   NA    NA
## 9940    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9941    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9942    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9943    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9944    Suc. Belenes    13       4     8     2    4     6
## 9945    Suc. Belenes    19      10    10    22   29    19
## 9946    Suc. Belenes    NA      NA    NA    NA    7    14
## 9947    Suc. Belenes     5      NA    NA    NA   NA    NA
## 9948    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9949    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9950    Suc. Belenes     1      NA    NA    NA   NA    NA
## 9951    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9952    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9953    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9954    Suc. Belenes     2       1     1     3    3     5
## 9955    Suc. Belenes    NA      NA    NA    NA   NA     0
## 9956    Suc. Belenes     1       2     1     2    1     1
## 9957    Suc. Belenes    NA       1    NA    NA   NA    NA
## 9958    Suc. Belenes     2       2     1     1    1     1
## 9959    Suc. Belenes     8      11     8    11    8     8
## 9960    Suc. Belenes    NA      NA     1    NA   NA    NA
## 9961    Suc. Belenes    NA      NA    NA    NA    0     0
## 9962    Suc. Belenes    NA      NA    NA    NA    2    NA
## 9963    Suc. Belenes     1      NA     2    NA   NA     3
## 9964    Suc. Belenes     2      NA    NA     2    2     2
## 9965    Suc. Belenes     2       1     1     2    1     1
## 9966    Suc. Belenes     8       8     6    11    8     8
## 9967    Suc. Belenes     3       3     3     8    8     6
## 9968    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9969    Suc. Belenes     8       8     8     8    8    11
## 9970    Suc. Belenes     1      NA     1     2    2     4
## 9971    Suc. Belenes     2       2    NA     2    1     2
## 9972    Suc. Belenes     6       6     8     4    4     4
## 9973    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9974    Suc. Belenes    NA       4     2     2   NA     4
## 9975    Suc. Belenes     1       1    NA     2    1    NA
## 9976    Suc. Belenes    NA      NA    NA    NA    8     2
## 9977    Suc. Belenes    61      45    53    58   37    34
## 9978    Suc. Belenes    NA      NA    NA    NA   NA    32
## 9979    Suc. Belenes    32      29    22    38   44    60
## 9980    Suc. Belenes    12      12    12    12   12    11
## 9981    Suc. Belenes    28      23    20    34   31    28
## 9982    Suc. Belenes    39      39    34    37   42    45
## 9983    Suc. Belenes    35      53    46    60   56    53
## 9984    Suc. Belenes    99      92    99   130  187   173
## 9985    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9986    Suc. Belenes    21      17    17    25   23    27
## 9987    Suc. Belenes    46      44    63    51  108    44
## 9988    Suc. Belenes     5       5     5    13    8    13
## 9989    Suc. Belenes     5       3     4     4    5     6
## 9990    Suc. Belenes     5      NA     2     6    3     5
## 9991    Suc. Belenes    NA      NA    NA    NA   NA     2
## 9992    Suc. Belenes     6       6     3     4    5     5
## 9993    Suc. Belenes    NA       2    NA    NA   NA    NA
## 9994    Suc. Belenes     1       2     2     1    2     2
## 9995    Suc. Belenes    NA       1    NA     1   NA    NA
## 9996    Suc. Belenes    NA       1    NA     1    1     2
## 9997    Suc. Belenes    NA       1    NA     3    4     1
## 9998    Suc. Belenes     1      NA    NA    NA   NA    NA
## 9999    Suc. Belenes     6       0     2     1    2     2
## 10000   Suc. Belenes     1       2     1     3    2     1
## 10001   Suc. Belenes     3       4    20     5    6     4
## 10002   Suc. Belenes    NA      NA    NA    NA   NA     2
## 10003   Suc. Belenes    NA       1    NA    NA   NA    NA
## 10004   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10005   Suc. Belenes    NA      NA    NA    NA    1     1
## 10006   Suc. Belenes     1       2    NA     2    3     6
## 10007   Suc. Belenes     1      NA     2     2    3     4
## 10008   Suc. Belenes    NA       2     1     1    2     4
## 10009   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10010   Suc. Belenes     0       1     1     0    1     1
## 10011   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10012   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10013   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10014   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10015   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10016   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10017   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10018   Suc. Belenes    NA       1     3     6    6     3
## 10019   Suc. Belenes     1      NA    NA    NA   NA    NA
## 10020   Suc. Belenes     2       1    NA    NA    0     0
## 10021   Suc. Belenes     2      NA     2    NA    2     1
## 10022   Suc. Belenes    NA      10    NA    NA    1     2
## 10023   Suc. Belenes    NA       1     0     1    0     0
## 10024   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10025   Suc. Belenes    NA      NA    NA    NA   NA     3
## 10026   Suc. Belenes    NA       1    NA    NA    1    NA
## 10027   Suc. Belenes     1      NA    NA    NA   NA    NA
## 10028   Suc. Belenes     1       0    NA     0   NA     0
## 10029   Suc. Belenes     2      NA     2    NA    2     1
## 10030   Suc. Belenes    NA      NA    NA    NA    1     1
## 10031   Suc. Belenes    NA       1     0     1    0     0
## 10032   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10033   Suc. Belenes    NA       1    NA    NA    1    NA
## 10034   Suc. Belenes     1      NA    NA    NA   NA    NA
## 10035   Suc. Belenes     0       0    NA    NA   NA     1
## 10036   Suc. Belenes     2      NA     2    NA   NA     1
## 10037   Suc. Belenes    NA      NA    NA    NA    1     1
## 10038   Suc. Belenes    NA      NA    NA    NA    1     1
## 10039   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10040   Suc. Belenes     3       6     3    NA   NA     3
## 10041   Suc. Belenes    NA      NA    NA    NA    7    NA
## 10042   Suc. Belenes    NA      NA     0    NA   NA    NA
## 10043   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10044   Suc. Belenes    NA       1     0     1    0     0
## 10045   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10046   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10047   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10048   Suc. Belenes    11      12     8     3    4    NA
## 10049   Suc. Belenes     1      NA    NA    NA   NA    NA
## 10050   Suc. Belenes     1      NA    NA    NA   NA     2
## 10051   Suc. Belenes     4       2     2     2   NA     3
## 10052   Suc. Belenes     3      NA    NA    NA    1     1
## 10053   Suc. Belenes    NA       1     0     1    0     0
## 10054   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10055   Suc. Belenes     3       3     3     4    5     4
## 10056   Suc. Belenes    NA      NA    NA    NA   NA     0
## 10057   Suc. Belenes    NA      NA    NA     2    3     1
## 10058   Suc. Belenes     4       1     1    NA   NA    NA
## 10059   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10060   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10061   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10062   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10063   Suc. Belenes     4       6    11     4    4    11
## 10064   Suc. Belenes    10       3     3     3   10    10
## 10065   Suc. Belenes     3      NA    NA    NA    3     5
## 10066   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10067   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10068   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10069   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10070   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10071   Suc. Belenes    NA       1    NA    NA    1    NA
## 10072   Suc. Belenes     1       1     1     1    1     1
## 10073   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10074   Suc. Belenes    NA      NA    NA    NA    1     1
## 10075   Suc. Belenes     5       3     2     5    3     4
## 10076   Suc. Belenes     1       0     0     0   NA    NA
## 10077   Suc. Belenes     1       1     6     4    4     8
## 10078   Suc. Belenes     2       2    NA    NA   NA    NA
## 10079   Suc. Belenes     1      NA    NA    NA   NA    NA
## 10080   Suc. Belenes     3      NA     1     2    1     1
## 10081   Suc. Belenes     8       6     8     6    6     3
## 10082   Suc. Belenes     3      NA     1    NA    3     1
## 10083   Suc. Belenes    NA       0    NA    NA   NA    NA
## 10084   Suc. Belenes    NA      NA    NA    NA    1    NA
## 10085   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10086   Suc. Belenes    NA       2    NA    NA   NA    NA
## 10087   Suc. Belenes    NA      NA     4    NA   NA    NA
## 10088   Suc. Belenes    11       8     6    11   13    11
## 10089   Suc. Belenes     2       3     5     6    5     3
## 10090   Suc. Belenes     6       6    11    14    8    11
## 10091   Suc. Belenes     8       6     3    11    6     3
## 10092   Suc. Belenes    18       7    14    14   11    28
## 10093   Suc. Belenes    15      19    11    17   17    21
## 10094   Suc. Belenes     2      NA     2     2    2     2
## 10095   Suc. Belenes     2       2     2     2    2     3
## 10096   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10097   Suc. Belenes     2       2     4     8    4     4
## 10098   Suc. Belenes    17      14    11    14   11    14
## 10099   Suc. Belenes     2       6    NA     6    2     2
## 10100   Suc. Belenes    NA       1    NA    NA   NA    NA
## 10101   Suc. Belenes    34      32    42    49   32    40
## 10102   Suc. Belenes    NA      NA    NA     5   NA    NA
## 10103   Suc. Belenes    NA      NA    NA    NA   NA     3
## 10104   Suc. Belenes    73      70   143    35  101   105
## 10105   Suc. Belenes     9      11     8     8    6    11
## 10106   Suc. Belenes    NA       2     2     2   NA    NA
## 10107   Suc. Belenes    28      25    28    34   28    34
## 10108   Suc. Belenes    34      31    39    37   31    39
## 10109   Suc. Belenes    56      63    60    99   60    67
## 10110   Suc. Belenes   180     141   211   141  137   243
## 10111   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10112   Suc. Belenes    55      55    44    42   42    51
## 10113   Suc. Belenes   150     137   167   116  171   169
## 10114   Suc. Belenes     6       5     4     6    9     6
## 10115   Suc. Belenes     5       5     3     6    5     5
## 10116   Suc. Belenes     6       4     6     6    6     6
## 10117   Suc. Belenes     6       7     6     7    7     8
## 10118   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10119   Suc. Belenes     2      NA     1     1    2     2
## 10120   Suc. Belenes     1       1    NA     1    1     2
## 10121   Suc. Belenes     1      NA    NA     1    1     3
## 10122   Suc. Belenes     3      NA     0     0    0     0
## 10123   Suc. Belenes     1      NA    NA     0    1     1
## 10124   Suc. Belenes     4       3     3     5    4     6
## 10125   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10126   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10127   Suc. Belenes     4       6     2     8    4     4
## 10128   Suc. Belenes     2       1     1     2    1     0
## 10129   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10130   Suc. Belenes    NA       1    NA    NA   NA    NA
## 10131   Suc. Belenes     0       0     0     0    1     0
## 10132   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10133   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10134   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10135   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10136   Suc. Belenes     3      NA     3     6   NA    NA
## 10137   Suc. Belenes    NA      NA     2    NA   NA    NA
## 10138   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10139   Suc. Belenes    NA      NA     0     0    0     1
## 10140   Suc. Belenes     5       1     7     2    1     3
## 10141   Suc. Belenes     3      12     3     1    2     1
## 10142   Suc. Belenes    NA       1    NA     0   NA    NA
## 10143   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10144   Suc. Belenes    NA      NA    NA     3   NA    NA
## 10145   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10146   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10147   Suc. Belenes    NA      NA    NA    NA    0     1
## 10148   Suc. Belenes     5       1     1     2    1     3
## 10149   Suc. Belenes    NA       1     4     1    2     1
## 10150   Suc. Belenes    NA       1    NA     0   NA    NA
## 10151   Suc. Belenes    NA       4    NA    NA   NA     2
## 10152   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10153   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10154   Suc. Belenes    NA      NA    NA    NA    0     1
## 10155   Suc. Belenes    NA      NA    NA     2   NA    NA
## 10156   Suc. Belenes     3       1     1     2    1     3
## 10157   Suc. Belenes     1       1     1     1    2     1
## 10158   Suc. Belenes    NA       1     1     1   NA     1
## 10159   Suc. Belenes     3       3    14     6    6     3
## 10160   Suc. Belenes    NA      NA     0    NA   NA    NA
## 10161   Suc. Belenes     6       6    NA     8    4     6
## 10162   Suc. Belenes    NA      NA     1    NA   NA    NA
## 10163   Suc. Belenes    NA       1    NA     0   NA    NA
## 10164   Suc. Belenes     4      NA    NA    NA    4     2
## 10165   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10166   Suc. Belenes    NA       6    11     3   NA    NA
## 10167   Suc. Belenes    NA      NA    NA     4   NA    NA
## 10168   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10169   Suc. Belenes     1       0    NA    NA    0     2
## 10170   Suc. Belenes     5       1     1     2    7     5
## 10171   Suc. Belenes     2       3     1     1    2     1
## 10172   Suc. Belenes    NA       1    NA     0   NA    NA
## 10173   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10174   Suc. Belenes     3       2     3     4    6     4
## 10175   Suc. Belenes     0      NA    NA    NA   NA     0
## 10176   Suc. Belenes    NA      NA    NA     0    0    NA
## 10177   Suc. Belenes     1       1    NA     1   NA    NA
## 10178   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10179   Suc. Belenes     2      NA    NA    NA   NA     2
## 10180   Suc. Belenes     3      NA    NA    NA   NA     3
## 10181   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10182   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10183   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10184   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10185   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10186   Suc. Belenes    NA      NA    NA     0   NA    NA
## 10187   Suc. Belenes    NA      NA    NA     0   NA    NA
## 10188   Suc. Belenes    NA      NA    NA    NA    1    NA
## 10189   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10190   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10191   Suc. Belenes    NA      NA    NA    NA    2    NA
## 10192   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10193   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10194   Suc. Belenes    24      29    69    55   45    32
## 10195   Suc. Belenes    NA      NA    NA    NA   NA    38
## 10196   Suc. Belenes    NA      NA    NA     3    3     3
## 10197   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10198   Suc. Belenes    NA      NA    NA    59   NA    NA
## 10199   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10200   Suc. Belenes    67     208   211   144  106    95
## 10201   Suc. Belenes    NA      NA    NA    NA   NA     4
## 10202   Suc. Belenes    17     114    70    55   91    70
## 10203   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10204   Suc. Belenes   467     573    NA   666   NA    NA
## 10205   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10206   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10207   Suc. Belenes   106     152   142   118  134   184
## 10208   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10209   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10210   Suc. Belenes    NA      NA     0    NA   NA     0
## 10211   Suc. Belenes     9      14    NA    16   11     2
## 10212   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10213   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10214   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10215   Suc. Belenes    NA       0    NA     0   NA     0
## 10216   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10217   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10218   Suc. Belenes    NA      NA    NA    NA    1     3
## 10219   Suc. Belenes    NA       3     2     3   NA    NA
## 10220   Suc. Belenes    16      NA    29    27   25    23
## 10221   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10222   Suc. Belenes    NA      NA    NA    NA    1     3
## 10223   Suc. Belenes    NA       4    NA    NA   NA    NA
## 10224   Suc. Belenes    NA      NA     2    NA   NA    NA
## 10225   Suc. Belenes    16       8    26    27   23    23
## 10226   Suc. Belenes    NA      NA    NA    NA    1     3
## 10227   Suc. Belenes    NA       4    NA    NA   NA    NA
## 10228   Suc. Belenes    NA       3     2    NA   NA    NA
## 10229   Suc. Belenes    16      NA    26    27   23    23
## 10230   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10231   Suc. Belenes    NA      NA    NA    NA   NA     4
## 10232   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10233   Suc. Belenes    NA      NA    NA    NA   24     3
## 10234   Suc. Belenes    NA       4    NA    NA   NA    NA
## 10235   Suc. Belenes    NA       3     4     5   NA     0
## 10236   Suc. Belenes    16      15    26    27   27    27
## 10237   Suc. Belenes     6       3    NA    11    4    NA
## 10238   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10239   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10240   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10241   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10242   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10243   Suc. Belenes     4       6     8     8    6     4
## 10244   Suc. Belenes    22       3    13    19   10    25
## 10245   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10246   Suc. Belenes     4       7     7    NA    7     7
## 10247   Suc. Belenes    NA       3     3    NA   NA     3
## 10248   Suc. Belenes     0      NA     1    NA    1    NA
## 10249   Suc. Belenes    NA      NA     1     2   NA    NA
## 10250   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10251   Suc. Belenes    NA       0    NA    NA   NA    NA
## 10252   Suc. Belenes    NA       1    NA     1    1     1
## 10253   Suc. Belenes     4       3     3     2    3     4
## 10254   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10255   Suc. Belenes     1       1     2     1    2     3
## 10256   Suc. Belenes    NA      NA    NA     4   NA    NA
## 10257   Suc. Belenes     2       1     2     1    1     2
## 10258   Suc. Belenes    NA       3     8    17    8    11
## 10259   Suc. Belenes     1      NA     1     1    1     1
## 10260   Suc. Belenes     0      NA     0     1    0     0
## 10261   Suc. Belenes     1      NA     1    NA    1     1
## 10262   Suc. Belenes     1      NA     1    NA    2     1
## 10263   Suc. Belenes     2       2     2    NA   NA    NA
## 10264   Suc. Belenes    NA       4     2     2    2    NA
## 10265   Suc. Belenes    13      15    17    17   17    17
## 10266   Suc. Belenes    17      17    23    25   28    20
## 10267   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10268   Suc. Belenes     4       8    11     8   11     6
## 10269   Suc. Belenes     2       1     2     1    2     1
## 10270   Suc. Belenes    NA      NA     3     3    2     2
## 10271   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10272   Suc. Belenes     2       4     4     6    6     8
## 10273   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10274   Suc. Belenes     2      NA    NA    NA   NA     2
## 10275   Suc. Belenes    34      21    40    34   23    32
## 10276   Suc. Belenes    34      26    45    45   40    24
## 10277   Suc. Belenes    NA      NA    NA    NA   NA    19
## 10278   Suc. Belenes    10      10     6    13   10    10
## 10279   Suc. Belenes     6       6     6    11    6     6
## 10280   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10281   Suc. Belenes    17      11    17    11    8     8
## 10282   Suc. Belenes    NA      NA     6    NA    3    NA
## 10283   Suc. Belenes    74      74    92    92  102    88
## 10284   Suc. Belenes    49      70    56    67   63    70
## 10285   Suc. Belenes    NA       4     2    NA   NA    NA
## 10286   Suc. Belenes    21      21    23    36   36    36
## 10287   Suc. Belenes    42      38    44    51   55    46
## 10288   Suc. Belenes     5       7     5     6    7     6
## 10289   Suc. Belenes     3       3     5     6    6     5
## 10290   Suc. Belenes     2       2     4     4    4     6
## 10291   Suc. Belenes     4       4     5     2    3     4
## 10292   Suc. Belenes    NA      NA    NA     1   NA    NA
## 10293   Suc. Belenes     1       1     3     1    5     2
## 10294   Suc. Belenes    NA      NA    NA     1   NA    NA
## 10295   Suc. Belenes     1       3    NA     6    4     4
## 10296   Suc. Belenes     1       1     1     2    2     4
## 10297   Suc. Belenes     2       0     0     0    0     0
## 10298   Suc. Belenes    NA       1    NA    NA    0    NA
## 10299   Suc. Belenes     3       3     5     3    5     7
## 10300   Suc. Belenes    NA      NA    NA    NA   NA     0
## 10301   Suc. Belenes     2      NA    NA     4    6     2
## 10302   Suc. Belenes    NA       0     0     0    0     1
## 10303   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10304   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10305   Suc. Belenes     0       0     0     2    1     0
## 10306   Suc. Belenes     1       1     3     2    3     3
## 10307   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10308   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10309   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10310   Suc. Belenes     4       2     4     2    4     4
## 10311   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10312   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10313   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10314   Suc. Belenes     3      NA    NA    NA   NA     3
## 10315   Suc. Belenes     4       4     4     4   14     9
## 10316   Suc. Belenes    NA       0    NA    NA   NA    NA
## 10317   Suc. Belenes     2       2     1     2    2     1
## 10318   Suc. Belenes     1      NA     1     1    1    NA
## 10319   Suc. Belenes    NA       1     3     2    3     2
## 10320   Suc. Belenes    NA       0     1     1    0     0
## 10321   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10322   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10323   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10324   Suc. Belenes    NA      NA     4    NA   NA    NA
## 10325   Suc. Belenes    NA       0    NA    NA   NA    NA
## 10326   Suc. Belenes    NA       0     0     1    1    NA
## 10327   Suc. Belenes     1      NA     1     1    1    NA
## 10328   Suc. Belenes    NA       1     1     1   NA     1
## 10329   Suc. Belenes    NA       0     1     1    0     0
## 10330   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10331   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10332   Suc. Belenes    NA      NA    NA    NA   NA     4
## 10333   Suc. Belenes    NA       0    NA    NA   NA    NA
## 10334   Suc. Belenes    NA       0    NA    NA   NA    NA
## 10335   Suc. Belenes     1      NA     1     1    1    NA
## 10336   Suc. Belenes    NA       1     1     1    1    NA
## 10337   Suc. Belenes    NA       1     4     1    1     3
## 10338   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10339   Suc. Belenes    NA      NA    NA    NA    3    NA
## 10340   Suc. Belenes     7       4    NA     7    7     7
## 10341   Suc. Belenes     2       1     2     1    1     0
## 10342   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10343   Suc. Belenes    NA       3    NA     3   NA     1
## 10344   Suc. Belenes    NA       0     1     1    0     0
## 10345   Suc. Belenes    NA       4     4     4    6     6
## 10346   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10347   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10348   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10349   Suc. Belenes    NA      NA     3     3   NA     3
## 10350   Suc. Belenes    NA       4     7    11   11     5
## 10351   Suc. Belenes    NA       0    NA    NA   NA    NA
## 10352   Suc. Belenes     1       1     2     2    1     1
## 10353   Suc. Belenes     1       2     1     1    1    NA
## 10354   Suc. Belenes     1      NA     1     1    1     2
## 10355   Suc. Belenes    NA       0     1     1    0     0
## 10356   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10357   Suc. Belenes     3      10     6     6    3     6
## 10358   Suc. Belenes    NA      NA    NA    NA   NA     0
## 10359   Suc. Belenes    NA      NA    NA    NA   NA     2
## 10360   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10361   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10362   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10363   Suc. Belenes     6       4     4     6    4     8
## 10364   Suc. Belenes     6      13    13    16   13    19
## 10365   Suc. Belenes    NA      NA     0     1    0     0
## 10366   Suc. Belenes     3       5     5    NA    8     3
## 10367   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10368   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10369   Suc. Belenes     2       3     1     3    3     1
## 10370   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10371   Suc. Belenes     3       8     8     2   10     2
## 10372   Suc. Belenes    NA       2     1     3    1     1
## 10373   Suc. Belenes     2       3    NA     2    1     1
## 10374   Suc. Belenes     0       1     1     1    1     1
## 10375   Suc. Belenes    NA       1     1     1    1     2
## 10376   Suc. Belenes     2       1     1    NA    2     1
## 10377   Suc. Belenes     0      NA     0     0    1     1
## 10378   Suc. Belenes    NA       1     2     1    3     1
## 10379   Suc. Belenes     2      NA    NA    NA   NA     2
## 10380   Suc. Belenes     2       2     2     2    3     2
## 10381   Suc. Belenes     3       3     3     6    3     3
## 10382   Suc. Belenes     0       0     0     0    0     0
## 10383   Suc. Belenes     1       1    NA     1    1    NA
## 10384   Suc. Belenes    NA      NA    NA    NA   NA     2
## 10385   Suc. Belenes    NA      NA    NA     2    2     2
## 10386   Suc. Belenes     1      NA     2    NA   NA    NA
## 10387   Suc. Belenes     2       2     3     2    5     2
## 10388   Suc. Belenes     6       6     3     6    6     8
## 10389   Suc. Belenes     2       6     4     2    4    NA
## 10390   Suc. Belenes     2       1     1     1    1     2
## 10391   Suc. Belenes    NA       1    NA     1   NA    NA
## 10392   Suc. Belenes    NA      NA     2    NA    2     4
## 10393   Suc. Belenes     4      11    13     6    8     8
## 10394   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10395   Suc. Belenes    32      32    41    54   25    32
## 10396   Suc. Belenes     3       5     6     6    6     6
## 10397   Suc. Belenes     3       5     6     6    6     6
## 10398   Suc. Belenes    11      17    14    17   14    17
## 10399   Suc. Belenes    11      14    21    18   14    14
## 10400   Suc. Belenes    92      88   144   116  116   123
## 10401   Suc. Belenes    NA      NA    NA    NA    2    NA
## 10402   Suc. Belenes     8      11     6    13   21     8
## 10403   Suc. Belenes    78      72   108    99   76    80
## 10404   Suc. Belenes     3       3     3     6    3     3
## 10405   Suc. Belenes     2       2     4     7    4     4
## 10406   Suc. Belenes    NA      NA    NA     2   NA    NA
## 10407   Suc. Belenes     4       2     4    NA    4     2
## 10408   Suc. Belenes     2       2     3     2    2     4
## 10409   Suc. Belenes    NA       1    NA    NA   NA    NA
## 10410   Suc. Belenes    NA       1     1    NA    1     1
## 10411   Suc. Belenes    NA      NA    NA    NA    1    NA
## 10412   Suc. Belenes     1       1     2    NA    3     1
## 10413   Suc. Belenes     1       1     1    NA    1     1
## 10414   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10415   Suc. Belenes     0       2     1     2    2     1
## 10416   Suc. Belenes     1       1    NA     1    1    NA
## 10417   Suc. Belenes     3       6     7     6    7     6
## 10418   Suc. Belenes    NA       1     0     0    1    NA
## 10419   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10420   Suc. Belenes     2      NA    NA     2    2     2
## 10421   Suc. Belenes     0       0     0     1    1     1
## 10422   Suc. Belenes    NA      NA     1    NA   NA     1
## 10423   Suc. Belenes    NA      NA     1    NA   NA     1
## 10424   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10425   Suc. Belenes     0       1     1     1    1     1
## 10426   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10427   Suc. Belenes     1      NA     3     1    3     1
## 10428   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10429   Suc. Belenes     3       6    11    14    6    11
## 10430   Suc. Belenes     0       1     1     1    1     1
## 10431   Suc. Belenes     0      NA    NA     0   NA    NA
## 10432   Suc. Belenes     8       4     4     4    4     2
## 10433   Suc. Belenes     4       3     2     2    2     3
## 10434   Suc. Belenes    NA       0    NA     0    1     0
## 10435   Suc. Belenes     1      NA    NA    NA   NA    NA
## 10436   Suc. Belenes     3      NA     3     3   NA     3
## 10437   Suc. Belenes     0       0     0     0    1     0
## 10438   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10439   Suc. Belenes    NA      NA     2     2    4     2
## 10440   Suc. Belenes     1      NA     1     1    2     1
## 10441   Suc. Belenes    NA       0    NA     0    1     0
## 10442   Suc. Belenes     1      NA    NA    NA   NA    NA
## 10443   Suc. Belenes     0       1     1     1    1     1
## 10444   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10445   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10446   Suc. Belenes     1      NA    NA    NA   NA    NA
## 10447   Suc. Belenes     1       2     2     1    2     3
## 10448   Suc. Belenes     8       8    14    14   17     8
## 10449   Suc. Belenes     2       2     4     2    2    NA
## 10450   Suc. Belenes     1      NA     1     1    3    NA
## 10451   Suc. Belenes    NA       0    NA     0    1     0
## 10452   Suc. Belenes     8       6    11    14    8     8
## 10453   Suc. Belenes     3      NA    NA    NA   NA    NA
## 10454   Suc. Belenes     0       1     1     1    1     1
## 10455   Suc. Belenes    NA       0     0    NA    0     0
## 10456   Suc. Belenes     6       2     4     4    6     4
## 10457   Suc. Belenes     3       3     2     3    5     3
## 10458   Suc. Belenes    NA       0    NA     0    1     0
## 10459   Suc. Belenes     1      NA    NA    NA   NA    NA
## 10460   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10461   Suc. Belenes     1       3     1     2    6    NA
## 10462   Suc. Belenes    NA       0    NA    NA   NA     0
## 10463   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10464   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10465   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10466   Suc. Belenes     2       2    NA     4    2     4
## 10467   Suc. Belenes     3       3    NA     3    3    10
## 10468   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10469   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10470   Suc. Belenes    NA      NA    NA     0    0     0
## 10471   Suc. Belenes    NA      NA    NA    NA   NA     3
## 10472   Suc. Belenes     2       2     2     1    2     3
## 10473   Suc. Belenes    NA       1    NA    NA   NA    NA
## 10474   Suc. Belenes    NA      NA    NA     2   NA    NA
## 10475   Suc. Belenes    NA      NA     0    NA   NA    NA
## 10476   Suc. Belenes    NA       1     2    NA    2     1
## 10477   Suc. Belenes    NA      NA    NA     3    3    NA
## 10478   Suc. Belenes    NA      NA     1    NA    1     1
## 10479   Suc. Belenes    NA      NA    NA     0   NA     0
## 10480   Suc. Belenes    NA      NA    NA     2    1     2
## 10481   Suc. Belenes     2      NA    NA    NA    2    NA
## 10482   Suc. Belenes    NA       1    NA    NA   NA    NA
## 10483   Suc. Belenes     2       2     2     2    2     2
## 10484   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10485   Suc. Belenes    11       6     8     8    6     8
## 10486   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10487   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10488   Suc. Belenes     4       2     2     4    6     4
## 10489   Suc. Belenes    17      13    15    25   19    23
## 10490   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10491   Suc. Belenes   127     111   130   133  133   108
## 10492   Suc. Belenes    12       6     8     8    9    12
## 10493   Suc. Belenes     3       3    NA     2    2    NA
## 10494   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10495   Suc. Belenes    NA       3    NA    NA   NA    NA
## 10496   Suc. Belenes     7      18    11    21   21    14
## 10497   Suc. Belenes   296     285   299   299  324   335
## 10498   Suc. Belenes     6       6     8     8   13    23
## 10499   Suc. Belenes     4      13     6    13   11    15
## 10500   Suc. Belenes   142     108   142   152  156   184
## 10501   Suc. Belenes    NA      NA    NA    NA    6     6
## 10502   Suc. Belenes     1       1     2     1    2     4
## 10503   Suc. Belenes     2       2     2     2    2     3
## 10504   Suc. Belenes     6       4    NA     6    4     8
## 10505   Suc. Belenes     3       1     1     3    3     3
## 10506   Suc. Belenes    NA      NA    NA     1   NA    NA
## 10507   Suc. Belenes     1       1    NA    NA   NA    NA
## 10508   Suc. Belenes     1      NA    NA    NA   NA    NA
## 10509   Suc. Belenes     1      NA    NA     1    3     3
## 10510   Suc. Belenes    NA      NA     0     0    0     1
## 10511   Suc. Belenes     2       0     0     1   NA     0
## 10512   Suc. Belenes     1       1     1     2    1     1
## 10513   Suc. Belenes     4       2     3     3    5     4
## 10514   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10515   Suc. Belenes    NA      NA    NA     2   NA     2
## 10516   Suc. Belenes    NA       0    NA     0    0     0
## 10517   Suc. Belenes     0       0    NA    NA   NA    NA
## 10518   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10519   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10520   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10521   Suc. Belenes     1      NA     3     3   NA     3
## 10522   Suc. Belenes    NA      NA    NA     0    0     0
## 10523   Suc. Belenes     2      NA     0     0    2     3
## 10524   Suc. Belenes     4       2     6     4    2     2
## 10525   Suc. Belenes     1       1    NA    NA    1     1
## 10526   Suc. Belenes    NA       0    NA    NA    0     0
## 10527   Suc. Belenes     1      NA    NA     3   NA    NA
## 10528   Suc. Belenes    NA      NA    NA     0    0     0
## 10529   Suc. Belenes     1       0    NA     0    2     2
## 10530   Suc. Belenes    NA       2    NA     4    4     4
## 10531   Suc. Belenes    NA      NA    NA    NA    1     2
## 10532   Suc. Belenes    NA       0    NA    NA    0     0
## 10533   Suc. Belenes     1      NA    NA     3   NA    NA
## 10534   Suc. Belenes    NA      NA    NA     0    0     0
## 10535   Suc. Belenes     0       0    NA    NA    1     2
## 10536   Suc. Belenes    NA      NA     2     4   NA    NA
## 10537   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10538   Suc. Belenes    NA      NA    NA    NA    1     1
## 10539   Suc. Belenes    NA      NA     8    NA   NA     6
## 10540   Suc. Belenes     0      NA    NA     0   NA    NA
## 10541   Suc. Belenes     2       2    NA     2    6    NA
## 10542   Suc. Belenes     1      NA    NA    NA   NA    NA
## 10543   Suc. Belenes    NA       0    NA    NA    0     0
## 10544   Suc. Belenes     1       6    NA     3    3    NA
## 10545   Suc. Belenes    NA      NA    NA     0    0     0
## 10546   Suc. Belenes     0       0    NA     0    1     3
## 10547   Suc. Belenes     2       2     4     2    4    NA
## 10548   Suc. Belenes     1       1    NA    NA    1     1
## 10549   Suc. Belenes    NA       0    NA    NA    0     0
## 10550   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10551   Suc. Belenes     1       1    NA     1    8     3
## 10552   Suc. Belenes    NA      NA    NA    NA   NA     0
## 10553   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10554   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10555   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10556   Suc. Belenes     4      13    17     8   15     4
## 10557   Suc. Belenes    16      22    19    19   35    16
## 10558   Suc. Belenes    NA      NA    NA     7   11    NA
## 10559   Suc. Belenes     3       5     5    NA    5     5
## 10560   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10561   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10562   Suc. Belenes     0       0     0    NA   NA    NA
## 10563   Suc. Belenes     1       2     3     1    4     2
## 10564   Suc. Belenes     3       2     2     4    4     3
## 10565   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10566   Suc. Belenes    NA       1     2     2    4    NA
## 10567   Suc. Belenes     2      NA    NA    NA   NA    NA
## 10568   Suc. Belenes    NA       2     2     1    1    NA
## 10569   Suc. Belenes    11      11     8    14   14    17
## 10570   Suc. Belenes    NA      NA     3     3    3     3
## 10571   Suc. Belenes    NA      NA    NA     0   NA    NA
## 10572   Suc. Belenes     1      NA     1     1    1     1
## 10573   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10574   Suc. Belenes    NA      NA     2     4    4     2
## 10575   Suc. Belenes    27      25    30    21   25    32
## 10576   Suc. Belenes    39      31    39    34   31    39
## 10577   Suc. Belenes     3       3     3     2    2     3
## 10578   Suc. Belenes    17      13    15    17   11    15
## 10579   Suc. Belenes     5       5     5     5    6     5
## 10580   Suc. Belenes     6       4     4     8    6     6
## 10581   Suc. Belenes    NA      NA    NA     2   NA    NA
## 10582   Suc. Belenes    98      95    95    77  143    58
## 10583   Suc. Belenes    NA      NA    NA    NA   NA    19
## 10584   Suc. Belenes     3      NA     6     3    3     3
## 10585   Suc. Belenes    20      24    23    17   17    24
## 10586   Suc. Belenes    73      59    73    73   70    82
## 10587   Suc. Belenes    70      67   102    95   99    99
## 10588   Suc. Belenes    42      49    42    56   53    46
## 10589   Suc. Belenes    53      53    66    57   63    68
## 10590   Suc. Belenes    85      76    76    68   78    76
## 10591   Suc. Belenes     9       7     8    10   11    10
## 10592   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10593   Suc. Belenes    12      10    16     8   20    14
## 10594   Suc. Belenes    NA      NA    NA     1   NA    NA
## 10595   Suc. Belenes    NA      NA    NA     1   NA    NA
## 10596   Suc. Belenes     1      NA     2     4    2     1
## 10597   Suc. Belenes     1       0    NA     1    1     1
## 10598   Suc. Belenes    NA       0    NA    NA    0    NA
## 10599   Suc. Belenes     4       4     4     5    8     1
## 10600   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10601   Suc. Belenes     2       4     2     2    4     2
## 10602   Suc. Belenes    NA      NA     0     0   NA     0
## 10603   Suc. Belenes     4       3     5     7    8     4
## 10604   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10605   Suc. Belenes     3       3     3     8    6     8
## 10606   Suc. Belenes     0       0     0    NA   NA    NA
## 10607   Suc. Belenes     0      NA     0     1    1    NA
## 10608   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10609   Suc. Belenes     3       3     4     3    4     3
## 10610   Suc. Belenes     3       3     3     3    3    NA
## 10611   Suc. Belenes     0       0     0    NA   NA    NA
## 10612   Suc. Belenes    NA      NA     0    NA   NA    NA
## 10613   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10614   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10615   Suc. Belenes    NA      NA    NA     3   NA    NA
## 10616   Suc. Belenes     0       0     0    NA   NA    NA
## 10617   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10618   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10619   Suc. Belenes     8       8     8     6   11     8
## 10620   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10621   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10622   Suc. Belenes     1      NA     0     0   NA    NA
## 10623   Suc. Belenes    NA      NA    NA    NA    2    NA
## 10624   Suc. Belenes     4       4     6     4    5     4
## 10625   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10626   Suc. Belenes     6       3     8     8    8     8
## 10627   Suc. Belenes     0       0     0    NA   NA    NA
## 10628   Suc. Belenes     1      NA     1     0   NA    NA
## 10629   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10630   Suc. Belenes     5       6     8     4    8     6
## 10631   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10632   Suc. Belenes     1       4    10     5   13     4
## 10633   Suc. Belenes    NA      NA    NA    NA   NA     0
## 10634   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10635   Suc. Belenes    14      NA    NA    NA   NA    NA
## 10636   Suc. Belenes     1       1    NA     1    3     1
## 10637   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10638   Suc. Belenes    11      19     8    19   34    17
## 10639   Suc. Belenes    16      25    16    19   22    25
## 10640   Suc. Belenes     5      10     3     3    5     8
## 10641   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10642   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10643   Suc. Belenes    NA      NA     2     3   NA    NA
## 10644   Suc. Belenes    NA      NA     1    NA   NA    NA
## 10645   Suc. Belenes    NA       1     1     0    0     1
## 10646   Suc. Belenes     2       4     5     4    4     4
## 10647   Suc. Belenes     3       4     7     4    6     6
## 10648   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10649   Suc. Belenes     1       1     1     2    2     2
## 10650   Suc. Belenes    NA       2     2    NA   NA    NA
## 10651   Suc. Belenes     2       1     2     1    2     2
## 10652   Suc. Belenes     8      14    11    14   14     8
## 10653   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10654   Suc. Belenes    NA       0    NA    NA    1     0
## 10655   Suc. Belenes     1      NA    NA     1    1    NA
## 10656   Suc. Belenes     1       1    NA    NA    1     1
## 10657   Suc. Belenes     6       6     4    NA   NA    NA
## 10658   Suc. Belenes    NA       2     2     2   NA    NA
## 10659   Suc. Belenes    11      15    11    21   13    17
## 10660   Suc. Belenes    11      11    14    23   14    17
## 10661   Suc. Belenes     4      15    15    11   13    17
## 10662   Suc. Belenes    NA       2    NA     1    1    NA
## 10663   Suc. Belenes    NA       2    NA     2    2    NA
## 10664   Suc. Belenes     4       4     2     4    6     4
## 10665   Suc. Belenes     4       4     4     8   11     8
## 10666   Suc. Belenes    25      42    17    27   40    30
## 10667   Suc. Belenes    13      26    24    21    5    11
## 10668   Suc. Belenes    13      13    29    16   10    19
## 10669   Suc. Belenes    25      16    25    41   44    25
## 10670   Suc. Belenes     9      14     9    14   17     8
## 10671   Suc. Belenes    42      20    23    31   25    25
## 10672   Suc. Belenes   176     102    67   113  116   134
## 10673   Suc. Belenes   190     201   204   208  211   306
## 10674   Suc. Belenes     6      15     2     8    8    11
## 10675   Suc. Belenes    25      19    17    32   44    72
## 10676   Suc. Belenes    57      55    49    76   72    74
## 10677   Suc. Belenes     4       2     5     5    6    10
## 10678   Suc. Belenes     3       3     6     6    9     3
## 10679   Suc. Belenes     2       2     2     2    6     2
## 10680   Suc. Belenes     1       3    NA     1    2     1
## 10681   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10682   Suc. Belenes     1       1     1     1    1     1
## 10683   Suc. Belenes    NA      NA    NA    NA    3     3
## 10684   Suc. Belenes    11       8     6     6    5     8
## 10685   Suc. Belenes     4       2     2     2    2     4
## 10686   Suc. Belenes     1       1     1     1    2     1
## 10687   Suc. Belenes     3       4    10     4    5    10
## 10688   Suc. Belenes    NA      NA    NA    NA    1    NA
## 10689   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10690   Suc. Belenes    NA       2     2    NA    4    NA
## 10691   Suc. Belenes    NA       0     1     0    1    NA
## 10692   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10693   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10694   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10695   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10696   Suc. Belenes     3       2     4     3    4     4
## 10697   Suc. Belenes     2       3     1     1    1     1
## 10698   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10699   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10700   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10701   Suc. Belenes     2       4     4     2    4    NA
## 10702   Suc. Belenes     6       6     3    11    6    11
## 10703   Suc. Belenes    NA       1     1     0    0     1
## 10704   Suc. Belenes     0       1     2     1    1     1
## 10705   Suc. Belenes     1       1     1     1    2     3
## 10706   Suc. Belenes     2       3     4    NA    3     1
## 10707   Suc. Belenes    NA       0     0     0    0     0
## 10708   Suc. Belenes    NA       3     3     3    8     3
## 10709   Suc. Belenes    NA       0     0     0    0     0
## 10710   Suc. Belenes    NA       1     1    NA    1     1
## 10711   Suc. Belenes     1       1     1     1    2     5
## 10712   Suc. Belenes     1       1     3    NA    3     1
## 10713   Suc. Belenes    NA       0     0     0    0     0
## 10714   Suc. Belenes    NA       3     3    11    6     3
## 10715   Suc. Belenes    NA       1     1     0    0     1
## 10716   Suc. Belenes    NA       1     2     0    1     0
## 10717   Suc. Belenes     1       1     1     1    2     3
## 10718   Suc. Belenes     1       3     3    NA    3     1
## 10719   Suc. Belenes    NA       5     3     4    3     6
## 10720   Suc. Belenes     3       3     6     8    3     6
## 10721   Suc. Belenes    NA      NA    NA     0    0     0
## 10722   Suc. Belenes     1      NA    NA    NA    3    NA
## 10723   Suc. Belenes    NA       0     0     0    0     0
## 10724   Suc. Belenes     4       8     2     4    4     2
## 10725   Suc. Belenes    NA      NA     2    NA   NA    NA
## 10726   Suc. Belenes    NA       3     6     6   17    17
## 10727   Suc. Belenes    NA      NA     4    NA   NA    NA
## 10728   Suc. Belenes    NA       1     1     0    0     1
## 10729   Suc. Belenes    NA       2     3     1    1     2
## 10730   Suc. Belenes     1       1     1     1    2     3
## 10731   Suc. Belenes     4       7     5     3    4     3
## 10732   Suc. Belenes    NA       0     0     0    0     0
## 10733   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10734   Suc. Belenes    NA       6     6     3    3    16
## 10735   Suc. Belenes    NA      NA    NA    NA   NA     0
## 10736   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10737   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10738   Suc. Belenes    NA       4    11     6    4     4
## 10739   Suc. Belenes    NA      10    13     6    6    13
## 10740   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10741   Suc. Belenes    NA       3     3    NA    8     5
## 10742   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10743   Suc. Belenes    NA      NA    NA     2   NA    NA
## 10744   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10745   Suc. Belenes    NA      NA     1    NA   NA    NA
## 10746   Suc. Belenes     0       1     2     2    4     3
## 10747   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10748   Suc. Belenes    NA       2    NA    NA   NA    NA
## 10749   Suc. Belenes    NA      NA    NA    NA    2    NA
## 10750   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10751   Suc. Belenes    NA       3     6     3    6     8
## 10752   Suc. Belenes    NA      NA     1     4   NA    NA
## 10753   Suc. Belenes    NA      NA    NA    NA    1    NA
## 10754   Suc. Belenes    NA       2    NA    NA   NA    NA
## 10755   Suc. Belenes    NA      NA    NA    NA    2     2
## 10756   Suc. Belenes    NA       2     2     4   NA     4
## 10757   Suc. Belenes     8       8     6     6    3    14
## 10758   Suc. Belenes     6      NA     4     4    6     4
## 10759   Suc. Belenes    NA       1    NA     1   NA     1
## 10760   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10761   Suc. Belenes    NA      NA    NA     2   NA     6
## 10762   Suc. Belenes    NA      NA    NA     2    2    NA
## 10763   Suc. Belenes     1      NA    NA    NA   NA    NA
## 10764   Suc. Belenes    15      15    17    21   25    15
## 10765   Suc. Belenes    NA      NA    NA    NA   NA     3
## 10766   Suc. Belenes    NA      NA    NA    NA   NA     3
## 10767   Suc. Belenes     6      16     3     6   13    16
## 10768   Suc. Belenes     5       5     2     9    3     5
## 10769   Suc. Belenes    14      11    11    20   20    23
## 10770   Suc. Belenes    NA      NA    NA     3   NA    NA
## 10771   Suc. Belenes    35      60    81    99  134    70
## 10772   Suc. Belenes    21      99    14    42   46    39
## 10773   Suc. Belenes    19      19     8    21   27    27
## 10774   Suc. Belenes    30      34    34    53   32    27
## 10775   Suc. Belenes     4       3     1     6    4     1
## 10776   Suc. Belenes     3       2     5     3    3     3
## 10777   Suc. Belenes    NA      NA    NA     4    6     4
## 10778   Suc. Belenes     2       2     2     3    2     1
## 10779   Suc. Belenes    NA      NA    NA     1   NA    NA
## 10780   Suc. Belenes    NA      NA    NA     1    2    NA
## 10781   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10782   Suc. Belenes     3      NA     3     6   NA     6
## 10783   Suc. Belenes     1       1    NA     1    2    NA
## 10784   Suc. Belenes     1      NA    NA     1   NA     2
## 10785   Suc. Belenes    NA       1    NA    NA   NA    NA
## 10786   Suc. Belenes     3      NA     3     1    5     2
## 10787   Suc. Belenes     2      NA    NA     4   NA     2
## 10788   Suc. Belenes    NA      NA     0     1    1     0
## 10789   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10790   Suc. Belenes    NA       3    NA     2    1     5
## 10791   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10792   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10793   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10794   Suc. Belenes    NA       3     6     9    3     6
## 10795   Suc. Belenes     2       2     2    NA    0     2
## 10796   Suc. Belenes     2       1    NA     1   NA    NA
## 10797   Suc. Belenes    NA       3     3     3   NA     3
## 10798   Suc. Belenes    NA       0    NA     0    0    NA
## 10799   Suc. Belenes    NA      NA     3     1   NA    NA
## 10800   Suc. Belenes    NA       0    NA    NA   NA    NA
## 10801   Suc. Belenes    NA       3     2     7    2     2
## 10802   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10803   Suc. Belenes    NA       0    NA     0    0    NA
## 10804   Suc. Belenes    NA      NA     3     1    3     3
## 10805   Suc. Belenes    NA      NA    NA    NA    2    NA
## 10806   Suc. Belenes    NA       5     2     5    4    NA
## 10807   Suc. Belenes    NA      NA     3    NA    3    NA
## 10808   Suc. Belenes    NA      NA    NA     4   NA    NA
## 10809   Suc. Belenes    NA      NA    NA     3   NA    NA
## 10810   Suc. Belenes    NA       0    NA    NA   NA    NA
## 10811   Suc. Belenes    NA       0    NA     0    0    NA
## 10812   Suc. Belenes    NA       3     8    15    3     8
## 10813   Suc. Belenes     2       0     2    NA    3    NA
## 10814   Suc. Belenes     2       3     2     3    2     2
## 10815   Suc. Belenes    NA       5     3     3    3     5
## 10816   Suc. Belenes    NA       0    NA     0    0    NA
## 10817   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10818   Suc. Belenes     3       1     2     3    4     3
## 10819   Suc. Belenes    NA      NA    NA    NA   NA     0
## 10820   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10821   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10822   Suc. Belenes     2      NA     6     2    2     2
## 10823   Suc. Belenes     3      NA    10     3    3     3
## 10824   Suc. Belenes    NA      NA    NA    NA    0    NA
## 10825   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10826   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10827   Suc. Belenes     6       3     3     3    3     1
## 10828   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10829   Suc. Belenes    NA       1    NA     1    1     1
## 10830   Suc. Belenes    NA      NA    NA     1    1     1
## 10831   Suc. Belenes     3      NA     3     3   NA     3
## 10832   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10833   Suc. Belenes     1      NA    NA    NA   NA    NA
## 10834   Suc. Belenes    NA       4     6     2    2     4
## 10835   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10836   Suc. Belenes     6       4     6     8    8     4
## 10837   Suc. Belenes     1       2    NA     2    1     2
## 10838   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10839   Suc. Belenes    NA      NA    NA     2   NA    NA
## 10840   Suc. Belenes    24      21    29    21   26    13
## 10841   Suc. Belenes    NA      NA    NA    NA   NA    10
## 10842   Suc. Belenes     3       3     3     3    3     3
## 10843   Suc. Belenes     2       2    NA     2    2     2
## 10844   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10845   Suc. Belenes    11       8     8     8   11    11
## 10846   Suc. Belenes    39      25    39    46   46    32
## 10847   Suc. Belenes    42      25    42    42   49    42
## 10848   Suc. Belenes    34      32    25    44   49    42
## 10849   Suc. Belenes    59      42    53    61   53    70
## 10850   Suc. Belenes    17       9     9    12   11    11
## 10851   Suc. Belenes     3      NA     5     5    3     6
## 10852   Suc. Belenes     2      NA    NA     1    4     2
## 10853   Suc. Belenes    NA      NA    NA     1    1     1
## 10854   Suc. Belenes     3      NA    NA    NA   NA    NA
## 10855   Suc. Belenes     3      NA     0     0    0     0
## 10856   Suc. Belenes    NA       0    NA    NA    0    NA
## 10857   Suc. Belenes     3       4     5     4    2     2
## 10858   Suc. Belenes    NA      NA    NA    NA   NA     0
## 10859   Suc. Belenes     2      NA    NA    NA   NA    NA
## 10860   Suc. Belenes    NA      NA    NA     1   NA    NA
## 10861   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10862   Suc. Belenes    NA      NA    NA     0    0     0
## 10863   Suc. Belenes    NA       2     1     2    3     1
## 10864   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10865   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10866   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10867   Suc. Belenes     3       6     8     3    8     6
## 10868   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10869   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10870   Suc. Belenes     3       1     3     2   NA    NA
## 10871   Suc. Belenes    NA       0     0     0   NA    NA
## 10872   Suc. Belenes    NA      NA    NA    NA   NA     0
## 10873   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10874   Suc. Belenes    NA       0     0     0   NA    NA
## 10875   Suc. Belenes    NA      NA    NA    NA    0    NA
## 10876   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10877   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10878   Suc. Belenes     8       6     3     6    6     6
## 10879   Suc. Belenes     2       2     4     2    2     2
## 10880   Suc. Belenes    NA       0     0     0   NA    NA
## 10881   Suc. Belenes     4       2     6     4    8     6
## 10882   Suc. Belenes     6       6     3     3    6     8
## 10883   Suc. Belenes    NA      NA    NA     0   NA    NA
## 10884   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10885   Suc. Belenes     4       2     2     2    6     8
## 10886   Suc. Belenes     3       2     4     3   NA    NA
## 10887   Suc. Belenes    NA       0     0     0   NA    NA
## 10888   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10889   Suc. Belenes     3       3     4     7    2     1
## 10890   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10891   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10892   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10893   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10894   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10895   Suc. Belenes     2       2     2     2    2     2
## 10896   Suc. Belenes     6       3     3     3    3     3
## 10897   Suc. Belenes    NA      NA     1    NA   NA    NA
## 10898   Suc. Belenes    NA      NA    NA    NA    1    NA
## 10899   Suc. Belenes    NA       1     1     1    1    NA
## 10900   Suc. Belenes     0       1    NA     0   NA     1
## 10901   Suc. Belenes     1       1     1    NA    1     1
## 10902   Suc. Belenes    NA      NA    NA     2   NA    NA
## 10903   Suc. Belenes    NA       2     1     1    2     1
## 10904   Suc. Belenes    NA       3    NA     3    6     8
## 10905   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10906   Suc. Belenes    NA      NA    NA     0    0     0
## 10907   Suc. Belenes    NA      NA    NA    NA   NA     2
## 10908   Suc. Belenes    NA       1    NA    NA   NA    NA
## 10909   Suc. Belenes     8       2    NA     6    6     6
## 10910   Suc. Belenes     4       4     4     4    6     6
## 10911   Suc. Belenes     1      NA    NA     1   NA     1
## 10912   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10913   Suc. Belenes    26      21    24    32   18    13
## 10914   Suc. Belenes    NA      NA    NA    NA   NA    16
## 10915   Suc. Belenes    38      38    38    32   48    60
## 10916   Suc. Belenes    11      14     5    12   15     5
## 10917   Suc. Belenes     3       2     5     2    3     2
## 10918   Suc. Belenes    NA      NA    NA    NA    3    NA
## 10919   Suc. Belenes    20      17    17    14   11     8
## 10920   Suc. Belenes    14      18    28    25   32    32
## 10921   Suc. Belenes   148     113    81    99  106    92
## 10922   Suc. Belenes     4       6     4     6    8     6
## 10923   Suc. Belenes    15      13    11     6   11     8
## 10924   Suc. Belenes    80      68    70    93   89    85
## 10925   Suc. Belenes     3       3     2     4    2     6
## 10926   Suc. Belenes     3      NA     2     2    2    NA
## 10927   Suc. Belenes     4       4     8     6    6     8
## 10928   Suc. Belenes     6       6     6     3    3     3
## 10929   Suc. Belenes     1       1     2     1    2     3
## 10930   Suc. Belenes     1      NA     2     2    1     2
## 10931   Suc. Belenes    NA      NA     2     1    1     1
## 10932   Suc. Belenes    NA       0     0     0    0     0
## 10933   Suc. Belenes     1      NA     1     2    1     1
## 10934   Suc. Belenes     4       1     3     3    3    NA
## 10935   Suc. Belenes    NA      NA     2    NA   NA     2
## 10936   Suc. Belenes     0      NA    NA    NA   NA    NA
## 10937   Suc. Belenes     0       0     0     0    0     0
## 10938   Suc. Belenes    NA      NA     1    NA   NA    NA
## 10939   Suc. Belenes     0       1     0     1   NA     1
## 10940   Suc. Belenes     3       1     3     3    1     2
## 10941   Suc. Belenes     1       1     1     1    1     1
## 10942   Suc. Belenes    NA       0     0    NA   NA    NA
## 10943   Suc. Belenes    NA      NA     1    NA   NA    NA
## 10944   Suc. Belenes     0       0     0     0    0     0
## 10945   Suc. Belenes     1       1     1     1    1     2
## 10946   Suc. Belenes     1       1     1     1    1     1
## 10947   Suc. Belenes    NA       0     0    NA   NA    NA
## 10948   Suc. Belenes    NA      NA     1    NA   NA    NA
## 10949   Suc. Belenes     0      NA    NA     1   NA    NA
## 10950   Suc. Belenes     1       1     1     1    3     4
## 10951   Suc. Belenes     1      NA     1     1    1     1
## 10952   Suc. Belenes     1      NA     2    NA   NA     1
## 10953   Suc. Belenes     3       3    NA    NA   NA     3
## 10954   Suc. Belenes    NA      NA    NA     4   NA    NA
## 10955   Suc. Belenes    NA      NA     0    NA   NA    NA
## 10956   Suc. Belenes    NA       0     0    NA   NA    NA
## 10957   Suc. Belenes     3      NA     1     3    3     3
## 10958   Suc. Belenes     1       1     1     0   NA     1
## 10959   Suc. Belenes     1       3     1     1    1     4
## 10960   Suc. Belenes     1       2     1     1    1     2
## 10961   Suc. Belenes    NA       0     0    NA   NA    NA
## 10962   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10963   Suc. Belenes     1       4     1     1    4     4
## 10964   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10965   Suc. Belenes    NA      NA    NA     3    3    NA
## 10966   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10967   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10968   Suc. Belenes     6       2     4     8   11     4
## 10969   Suc. Belenes    10       3     3    10   16     6
## 10970   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10971   Suc. Belenes     4       4     4     4   NA     4
## 10972   Suc. Belenes     3      NA    NA     3    3     3
## 10973   Suc. Belenes     0      NA     0     0    0    NA
## 10974   Suc. Belenes     1       1    NA     1    1    NA
## 10975   Suc. Belenes     5       4     2     2    5     2
## 10976   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10977   Suc. Belenes     1       2     1     2    1     1
## 10978   Suc. Belenes     2       1     2     2    1     1
## 10979   Suc. Belenes     8       8     3     8    6     3
## 10980   Suc. Belenes    NA      NA    NA    NA    2    NA
## 10981   Suc. Belenes    NA      NA     1    NA   NA    NA
## 10982   Suc. Belenes    NA      NA     0    NA   NA    NA
## 10983   Suc. Belenes    NA      NA    NA    NA    1    NA
## 10984   Suc. Belenes    NA      NA    NA     2   NA     2
## 10985   Suc. Belenes     2      NA    NA     2   NA    NA
## 10986   Suc. Belenes     4       2     2     2    4     2
## 10987   Suc. Belenes    NA      NA    NA     2   NA     2
## 10988   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10989   Suc. Belenes    13       8    18     8   16     8
## 10990   Suc. Belenes    NA      NA    NA     3   NA     3
## 10991   Suc. Belenes    82      95   105   139  124    86
## 10992   Suc. Belenes     5       3     5     6    6     3
## 10993   Suc. Belenes    NA      NA    NA     6   NA    NA
## 10994   Suc. Belenes    14      11    14    11    4    11
## 10995   Suc. Belenes   229     208   215   257  268   173
## 10996   Suc. Belenes     2       4     2     4    2    NA
## 10997   Suc. Belenes    15       6     8     4    4     4
## 10998   Suc. Belenes    76      63    70    80   93    59
## 10999   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11000   Suc. Belenes     4       4     6     5    6     4
## 11001   Suc. Belenes    NA       2     3    NA    2     2
## 11002   Suc. Belenes    NA       2    NA     2    4    NA
## 11003   Suc. Belenes     3       2     1     1    2     1
## 11004   Suc. Belenes    NA       1    NA    NA   NA    NA
## 11005   Suc. Belenes     1       1     1     1    1     1
## 11006   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11007   Suc. Belenes     2      NA    NA     2    5    NA
## 11008   Suc. Belenes     2       0     1     0    0     0
## 11009   Suc. Belenes    NA       0    NA    NA    0    NA
## 11010   Suc. Belenes     3       2    NA     2    3     2
## 11011   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11012   Suc. Belenes     2      NA    NA    NA    2    NA
## 11013   Suc. Belenes     0      NA     0     0    1     0
## 11014   Suc. Belenes     2       2     3    NA   NA    NA
## 11015   Suc. Belenes    NA      NA     1    NA   NA    NA
## 11016   Suc. Belenes    NA       1     3    NA   NA    NA
## 11017   Suc. Belenes     1       0     0     0    0     0
## 11018   Suc. Belenes    NA      NA     2     3    5     2
## 11019   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11020   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11021   Suc. Belenes     3       6     6     8   17     6
## 11022   Suc. Belenes     0      NA     0     0    0    NA
## 11023   Suc. Belenes     1       0     1     0    1    NA
## 11024   Suc. Belenes     3       1     2     2    1     3
## 11025   Suc. Belenes     1       4     1     3    1     1
## 11026   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11027   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11028   Suc. Belenes    NA       3     3     3    8     6
## 11029   Suc. Belenes     0      NA     0     0    0    NA
## 11030   Suc. Belenes    NA       0    NA     0   NA    NA
## 11031   Suc. Belenes     3       1    NA    NA    1     1
## 11032   Suc. Belenes     1       1     1     1    1     1
## 11033   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11034   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11035   Suc. Belenes     0      NA     0     0    0    NA
## 11036   Suc. Belenes    NA       1    NA     0   NA    NA
## 11037   Suc. Belenes     3       1    NA    NA    1     1
## 11038   Suc. Belenes     1       1     1     1    1     1
## 11039   Suc. Belenes     1       1     1     3    1     1
## 11040   Suc. Belenes     8       6     3     8    8     8
## 11041   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11042   Suc. Belenes     2      NA    NA     2    2    NA
## 11043   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11044   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11045   Suc. Belenes    14       8    11    20   28    11
## 11046   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11047   Suc. Belenes     2       1     0     2    0     1
## 11048   Suc. Belenes     2       0     0     0    1     0
## 11049   Suc. Belenes     5       1     4     2    5     5
## 11050   Suc. Belenes     5      11     1     4    4     3
## 11051   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11052   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11053   Suc. Belenes     2       3    NA     4    7     1
## 11054   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11055   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11056   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11057   Suc. Belenes    11      11    11     6    8     8
## 11058   Suc. Belenes    19      13    10    13   13    13
## 11059   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11060   Suc. Belenes     8       5     5     5    8     8
## 11061   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11062   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11063   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11064   Suc. Belenes     1       6    NA     3    2     2
## 11065   Suc. Belenes     3      NA     2     5    6     2
## 11066   Suc. Belenes     2       2    NA     1   NA    NA
## 11067   Suc. Belenes     1       1    NA     1   NA    NA
## 11068   Suc. Belenes    NA       1     1     0   NA     1
## 11069   Suc. Belenes     1       1     1    NA   NA     1
## 11070   Suc. Belenes     1       1    NA    NA   NA     1
## 11071   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11072   Suc. Belenes     2       1    NA     1    2     1
## 11073   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11074   Suc. Belenes     2       2    NA     1    1     2
## 11075   Suc. Belenes     6      NA     3     6    3     6
## 11076   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11077   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11078   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11079   Suc. Belenes    NA       2    NA    NA   NA    NA
## 11080   Suc. Belenes    NA       2     2    NA   NA    NA
## 11081   Suc. Belenes     2       2     2     6   NA     4
## 11082   Suc. Belenes    NA      NA    NA    NA    2    NA
## 11083   Suc. Belenes     6       3     6     8   NA     6
## 11084   Suc. Belenes    NA      NA    NA    NA    3    NA
## 11085   Suc. Belenes     2       2     2     2    2     2
## 11086   Suc. Belenes     2      21     2     2   NA    NA
## 11087   Suc. Belenes    NA       1     1    NA   NA     1
## 11088   Suc. Belenes     2       2    NA    NA   NA    NA
## 11089   Suc. Belenes     2       6     4     4   NA     6
## 11090   Suc. Belenes     8      11    11    11   NA     6
## 11091   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11092   Suc. Belenes     8       4     8     8   NA     8
## 11093   Suc. Belenes     5       5     5    NA   NA    NA
## 11094   Suc. Belenes    NA      NA    NA    NA   NA    38
## 11095   Suc. Belenes    35      13    54    16    3     6
## 11096   Suc. Belenes     5       6    20     5    2     5
## 11097   Suc. Belenes    NA      NA    NA    NA    9    NA
## 11098   Suc. Belenes    14      34     8    11   NA     3
## 11099   Suc. Belenes    14       6    14    11   NA    11
## 11100   Suc. Belenes    14      11    18    14   NA    18
## 11101   Suc. Belenes    99      81    70    21    4    63
## 11102   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11103   Suc. Belenes    13      21    11     4   NA     2
## 11104   Suc. Belenes    55     159    44    44   19    32
## 11105   Suc. Belenes    NA      NA    NA    NA    2    NA
## 11106   Suc. Belenes     4       1     5     2   NA     1
## 11107   Suc. Belenes     3       3     5     5    2     3
## 11108   Suc. Belenes     2       6     4     4    4     4
## 11109   Suc. Belenes     2       3     4     2    1     1
## 11110   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11111   Suc. Belenes     1       1    NA     1    1     1
## 11112   Suc. Belenes    NA      NA    NA     1   NA    NA
## 11113   Suc. Belenes     1      NA    NA    NA   NA     2
## 11114   Suc. Belenes     1       0     1    NA    1     1
## 11115   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11116   Suc. Belenes     1       1    NA     0    1     1
## 11117   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11118   Suc. Belenes     3       3     3     2    3     4
## 11119   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11120   Suc. Belenes    NA       2    NA    NA    2     2
## 11121   Suc. Belenes     0       0     0     0    0     1
## 11122   Suc. Belenes    NA       1    NA    NA   NA    NA
## 11123   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11124   Suc. Belenes    NA      NA     2    NA   NA    NA
## 11125   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11126   Suc. Belenes     0       0     0     0    0     0
## 11127   Suc. Belenes    NA       1    NA     1    1     1
## 11128   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11129   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11130   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11131   Suc. Belenes    NA       4    NA     2    2     4
## 11132   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11133   Suc. Belenes    NA      NA    NA    NA    2    NA
## 11134   Suc. Belenes     6       3     4     6   NA     3
## 11135   Suc. Belenes    NA       4    NA    NA   NA    NA
## 11136   Suc. Belenes    NA       1    NA     0   NA     1
## 11137   Suc. Belenes     1      NA     0    NA   NA    NA
## 11138   Suc. Belenes    NA      NA     1    NA   NA    NA
## 11139   Suc. Belenes     1      NA     1     4    2     1
## 11140   Suc. Belenes     1       1    NA    NA   NA    NA
## 11141   Suc. Belenes     0      NA    NA    NA   NA    NA
## 11142   Suc. Belenes    NA       0     0     0    0    NA
## 11143   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11144   Suc. Belenes    NA      NA    NA    NA    2    NA
## 11145   Suc. Belenes     3      NA     4     6    3     3
## 11146   Suc. Belenes    NA       4    NA    NA   NA    NA
## 11147   Suc. Belenes    NA       0    NA     0   NA     1
## 11148   Suc. Belenes     0      NA    NA    NA   NA    NA
## 11149   Suc. Belenes    NA      NA     1    NA   NA    NA
## 11150   Suc. Belenes     1      NA     1    NA   NA     1
## 11151   Suc. Belenes    NA       1    NA    NA   NA    NA
## 11152   Suc. Belenes     0      NA    NA    NA   NA    NA
## 11153   Suc. Belenes    NA       0     0     0    0    NA
## 11154   Suc. Belenes    NA      NA    NA    NA    2    NA
## 11155   Suc. Belenes    NA      NA     1     6   NA    NA
## 11156   Suc. Belenes    NA       4    NA    NA   NA    NA
## 11157   Suc. Belenes    NA       1    NA     0    1     1
## 11158   Suc. Belenes    NA       0    NA     0    0     0
## 11159   Suc. Belenes    NA      NA     1    NA   NA    NA
## 11160   Suc. Belenes     1       2     1     2    2     1
## 11161   Suc. Belenes    NA       1    NA    NA   NA    NA
## 11162   Suc. Belenes     0      NA    NA    NA   NA    NA
## 11163   Suc. Belenes     3       1     3    NA    1     3
## 11164   Suc. Belenes     6       6     3     3   NA    NA
## 11165   Suc. Belenes    NA       4    NA    NA   NA    NA
## 11166   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11167   Suc. Belenes    NA      NA    NA     2    2    NA
## 11168   Suc. Belenes     1       3    NA    NA   NA    NA
## 11169   Suc. Belenes    NA       0     0     0    0    NA
## 11170   Suc. Belenes     2       4     2     2    2     4
## 11171   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11172   Suc. Belenes    NA      NA    NA    NA    2    NA
## 11173   Suc. Belenes    11       6     4    11    3     8
## 11174   Suc. Belenes    NA       4    NA    NA   NA    NA
## 11175   Suc. Belenes    NA       1    NA     0    3     1
## 11176   Suc. Belenes     3      NA     2     0   NA    NA
## 11177   Suc. Belenes    NA      NA     1    NA   NA    NA
## 11178   Suc. Belenes     1      NA     3     4   NA     1
## 11179   Suc. Belenes     1      11     3    NA    1    NA
## 11180   Suc. Belenes     0      NA    NA    NA   NA    NA
## 11181   Suc. Belenes    NA       0     0     0    0    NA
## 11182   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11183   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11184   Suc. Belenes     1       4    NA     1    8    NA
## 11185   Suc. Belenes    NA      NA    NA    NA   NA     0
## 11186   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11187   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11188   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11189   Suc. Belenes    15      13    11    13   13     8
## 11190   Suc. Belenes    19      13    16    19    6     6
## 11191   Suc. Belenes    NA      NA    NA    NA    0    NA
## 11192   Suc. Belenes    NA       4    NA    NA    7    NA
## 11193   Suc. Belenes     3       3    NA     3    3     3
## 11194   Suc. Belenes     1      NA     1    NA    1    NA
## 11195   Suc. Belenes     2       2     1     1    1     1
## 11196   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11197   Suc. Belenes     1      NA     1    NA   NA     2
## 11198   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11199   Suc. Belenes    NA      NA     2    NA   NA     1
## 11200   Suc. Belenes     6      NA     6     3    8     6
## 11201   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11202   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11203   Suc. Belenes     4       4     6     6    6     8
## 11204   Suc. Belenes     2       4     6    NA    6     6
## 11205   Suc. Belenes     1       2    NA     2    1     2
## 11206   Suc. Belenes    NA      NA     2     2   NA     2
## 11207   Suc. Belenes    11       4    32    19    4    15
## 11208   Suc. Belenes    18      16     8    18   13     8
## 11209   Suc. Belenes    NA      NA    NA    NA   NA     3
## 11210   Suc. Belenes    29      38    35    54   44    51
## 11211   Suc. Belenes    14      14    12     9   15    17
## 11212   Suc. Belenes     5      NA    NA    NA    2     3
## 11213   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11214   Suc. Belenes    42      35    39    56   49    53
## 11215   Suc. Belenes   162     134   123   197  162    92
## 11216   Suc. Belenes    32      21    21    36   15    23
## 11217   Suc. Belenes    82      78    80   112   61    76
## 11218   Suc. Belenes     6       3     3     3    3     3
## 11219   Suc. Belenes     5       5     7     3    4     8
## 11220   Suc. Belenes     3      NA     5     5    3     5
## 11221   Suc. Belenes    NA      NA    NA     1   NA    NA
## 11222   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11223   Suc. Belenes    NA       1    NA    NA   NA    NA
## 11224   Suc. Belenes    NA      NA    NA    NA    2    NA
## 11225   Suc. Belenes     0       0    NA    NA   NA     0
## 11226   Suc. Belenes     2       1    NA     2    0    NA
## 11227   Suc. Belenes     1       1    NA    NA    1    NA
## 11228   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11229   Suc. Belenes     0      NA    NA    NA   NA     0
## 11230   Suc. Belenes    NA      NA     1     1   NA     3
## 11231   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11232   Suc. Belenes    NA      NA    NA    NA   NA     3
## 11233   Suc. Belenes    NA      NA     8     3   NA     1
## 11234   Suc. Belenes     0       1     0    NA    0    NA
## 11235   Suc. Belenes     4       1     2     3    3     1
## 11236   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11237   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11238   Suc. Belenes    NA      NA    NA    NA   NA     4
## 11239   Suc. Belenes    NA       1    NA    NA    0     0
## 11240   Suc. Belenes     2       1     2     1    1     1
## 11241   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11242   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11243   Suc. Belenes    NA      NA    NA    NA    0    NA
## 11244   Suc. Belenes     2       1     2     1    1     1
## 11245   Suc. Belenes    NA      NA    NA     1   NA    NA
## 11246   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11247   Suc. Belenes     3       3    NA    NA    3    NA
## 11248   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11249   Suc. Belenes     2      NA    NA    NA   NA    NA
## 11250   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11251   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11252   Suc. Belenes    NA      NA    NA    NA   NA     3
## 11253   Suc. Belenes     2      NA     2    NA   NA    NA
## 11254   Suc. Belenes    NA       3     3     3    3     4
## 11255   Suc. Belenes    NA       1    NA    NA    0    NA
## 11256   Suc. Belenes     2       3     4     3    3     5
## 11257   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11258   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11259   Suc. Belenes    NA       1    NA     3    1    NA
## 11260   Suc. Belenes    NA      NA     3    NA   NA    NA
## 11261   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11262   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11263   Suc. Belenes    15      49    27    44   74    82
## 11264   Suc. Belenes    25      35    57    82   95   111
## 11265   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11266   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11267   Suc. Belenes    15      25    15    20   18    43
## 11268   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11269   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11270   Suc. Belenes     5      NA     5     3   16    25
## 11271   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11272   Suc. Belenes    NA       2    NA    NA    1    NA
## 11273   Suc. Belenes     1      NA     1    NA   NA     1
## 11274   Suc. Belenes     1       5     6     1    3     4
## 11275   Suc. Belenes     2       6     5     6    5     9
## 11276   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11277   Suc. Belenes     1       3     2     2    4     6
## 11278   Suc. Belenes    NA      NA    NA     6    2     2
## 11279   Suc. Belenes     2       1     2     3    4     1
## 11280   Suc. Belenes     3      NA    NA     6   NA    23
## 11281   Suc. Belenes     2      NA     1    NA   NA    NA
## 11282   Suc. Belenes     1       2     1     1    2     1
## 11283   Suc. Belenes     1       3     2     3    3     5
## 11284   Suc. Belenes    NA      NA     3    NA    3     3
## 11285   Suc. Belenes    NA       4    NA    NA   NA    NA
## 11286   Suc. Belenes     2      NA     2     6   NA     4
## 11287   Suc. Belenes    NA      NA    NA     1    1    NA
## 11288   Suc. Belenes    NA      NA    NA     1   NA    NA
## 11289   Suc. Belenes    17       6    11    11   11    15
## 11290   Suc. Belenes    11      14     6    17    8    17
## 11291   Suc. Belenes     7      11     7    14   11    11
## 11292   Suc. Belenes     3       3     3     3    2     5
## 11293   Suc. Belenes     2      21     4    15   40    NA
## 11294   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11295   Suc. Belenes     2       4    NA     2    4     2
## 11296   Suc. Belenes     3       3     2     5    3     3
## 11297   Suc. Belenes     2       2     1    NA    1     1
## 11298   Suc. Belenes    NA       4    NA     2    4     2
## 11299   Suc. Belenes     3      NA    NA    NA   NA     3
## 11300   Suc. Belenes     4       2     4     2    6     6
## 11301   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11302   Suc. Belenes     2       2    NA     2   NA     4
## 11303   Suc. Belenes     1       1     1    NA   NA    NA
## 11304   Suc. Belenes     6      NA    NA    NA   NA     2
## 11305   Suc. Belenes    45      32    42    42   66    11
## 11306   Suc. Belenes    NA      NA    NA    NA   NA    32
## 11307   Suc. Belenes     3       3    19    13   10    10
## 11308   Suc. Belenes    20      21    15    26   21    17
## 11309   Suc. Belenes    NA      NA     2    NA    2     6
## 11310   Suc. Belenes    34      34    25    54   23    39
## 11311   Suc. Belenes     8       3    11     3   NA     6
## 11312   Suc. Belenes    49      49    49    74   70   116
## 11313   Suc. Belenes    53      49    46    32   14    25
## 11314   Suc. Belenes    NA      NA    NA    NA   NA     7
## 11315   Suc. Belenes    32      21    30    15   27    32
## 11316   Suc. Belenes    51      61    59    66   66   125
## 11317   Suc. Belenes    76      95    87   110  110   118
## 11318   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11319   Suc. Belenes    12      15     3    12   12    15
## 11320   Suc. Belenes     7       9     5     9   16    11
## 11321   Suc. Belenes     9       6    12    10   14    14
## 11322   Suc. Belenes     6       8     6    12   12    12
## 11323   Suc. Belenes     8       9     4     4    5     7
## 11324   Suc. Belenes    NA       1     1    NA   NA    NA
## 11325   Suc. Belenes     2       1     1     1    5     8
## 11326   Suc. Belenes     4       3     3    NA   NA     5
## 11327   Suc. Belenes     3       4     3     1    3    NA
## 11328   Suc. Belenes    NA       1     0     1    2     1
## 11329   Suc. Belenes     4       2     4     4    0     8
## 11330   Suc. Belenes     4       3     3     2    4     3
## 11331   Suc. Belenes     9       7    24     1   NA    16
## 11332   Suc. Belenes    NA       1     1     1   NA     1
## 11333   Suc. Belenes     2       2     2     2   NA     4
## 11334   Suc. Belenes     0       1    NA    NA    1     3
## 11335   Suc. Belenes    NA       1     1     1   NA     2
## 11336   Suc. Belenes    NA       2     1     1    1     1
## 11337   Suc. Belenes    NA       2    NA     1   NA     2
## 11338   Suc. Belenes    NA       1     2     2   NA     2
## 11339   Suc. Belenes     1       3     2     1    2     1
## 11340   Suc. Belenes     3      NA     3     2    1     4
## 11341   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11342   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11343   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11344   Suc. Belenes     2       2     2     4    6     2
## 11345   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11346   Suc. Belenes     6       6     6     3    8    11
## 11347   Suc. Belenes    NA      NA     3    NA    3     3
## 11348   Suc. Belenes     1      NA     1    NA    4     2
## 11349   Suc. Belenes    NA       4     4     2    6     4
## 11350   Suc. Belenes    NA      NA     0     1    1     1
## 11351   Suc. Belenes    NA       0     1     1    1     1
## 11352   Suc. Belenes     2      NA     2     4    2     4
## 11353   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11354   Suc. Belenes     6       3    NA     3   NA    11
## 11355   Suc. Belenes     1       1     2     1    3     2
## 11356   Suc. Belenes     1       2     3     2   NA     4
## 11357   Suc. Belenes    NA       2     3     4   NA     1
## 11358   Suc. Belenes    NA      NA     0     1    1     1
## 11359   Suc. Belenes    NA       0     1     1    1     1
## 11360   Suc. Belenes     4      NA     2     4    4     2
## 11361   Suc. Belenes    NA      NA     2    NA   NA    NA
## 11362   Suc. Belenes     6       3     3     6    3     8
## 11363   Suc. Belenes     2      NA     2     1    3     3
## 11364   Suc. Belenes     1      NA     1    NA    2    NA
## 11365   Suc. Belenes     1       1     1     2    1     1
## 11366   Suc. Belenes    NA      NA     0     1    1     1
## 11367   Suc. Belenes     1      NA    NA     1   NA     3
## 11368   Suc. Belenes    NA       2    NA    NA   NA    NA
## 11369   Suc. Belenes     3       3     8    11    3     6
## 11370   Suc. Belenes     2       3     2     3    3     3
## 11371   Suc. Belenes    NA       2     2     2   NA     4
## 11372   Suc. Belenes    NA      NA     3     3    3     1
## 11373   Suc. Belenes    NA       0     1     1    1     1
## 11374   Suc. Belenes     6       4     2     6    6     6
## 11375   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11376   Suc. Belenes    NA       2    NA    NA   NA    NA
## 11377   Suc. Belenes     3       8     8    11    8    20
## 11378   Suc. Belenes     2       4     2     2    3     5
## 11379   Suc. Belenes     1       6     3     2    2     2
## 11380   Suc. Belenes     5       5     4     4    7     8
## 11381   Suc. Belenes    NA      NA     0     1    1     1
## 11382   Suc. Belenes    NA       0     1     1    1     1
## 11383   Suc. Belenes     1      NA     1    NA   NA    NA
## 11384   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11385   Suc. Belenes     4       8     5     4    6    11
## 11386   Suc. Belenes    NA      NA    NA    NA   NA     0
## 11387   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11388   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11389   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11390   Suc. Belenes     2      NA     2     2    2     2
## 11391   Suc. Belenes     3      NA    NA     3    3     3
## 11392   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11393   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11394   Suc. Belenes     2      NA    NA    NA   NA    NA
## 11395   Suc. Belenes     3       4     2     3    4     2
## 11396   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11397   Suc. Belenes     1      NA    NA     3    1     2
## 11398   Suc. Belenes     2      NA    NA    NA   NA    NA
## 11399   Suc. Belenes     2      NA     1     1    2     1
## 11400   Suc. Belenes    NA      NA    NA     3    6     3
## 11401   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11402   Suc. Belenes     1      NA    NA     1   NA     1
## 11403   Suc. Belenes     6       2    NA     2   NA     4
## 11404   Suc. Belenes     2      NA     4    NA   NA    NA
## 11405   Suc. Belenes    11       6    11    13   11     8
## 11406   Suc. Belenes    NA       5    NA    NA   NA    NA
## 11407   Suc. Belenes    10       3     6     6   10     3
## 11408   Suc. Belenes   105      89    98   149  127   108
## 11409   Suc. Belenes     2       5     8     3    5     5
## 11410   Suc. Belenes    NA      NA     2     3    2     3
## 11411   Suc. Belenes    NA      NA    NA     1   NA    NA
## 11412   Suc. Belenes     7      25    18    21   18    28
## 11413   Suc. Belenes   222     261   215   243  204   257
## 11414   Suc. Belenes     2       8    NA     2    4     4
## 11415   Suc. Belenes    11       8     4     8    6    13
## 11416   Suc. Belenes    93      91    72   125  114   146
## 11417   Suc. Belenes     3       3     3     3    3     3
## 11418   Suc. Belenes     4       3     2     6    7     8
## 11419   Suc. Belenes     2       2     2     2    2     3
## 11420   Suc. Belenes    NA      NA     2     2   NA     4
## 11421   Suc. Belenes     2       4     3     4    2     3
## 11422   Suc. Belenes     1      NA    NA     1    1     1
## 11423   Suc. Belenes     1      NA    NA    NA   NA    NA
## 11424   Suc. Belenes     1      NA    NA     3   NA    NA
## 11425   Suc. Belenes     3      NA    NA     2    2     0
## 11426   Suc. Belenes     2       1    NA     1    1     1
## 11427   Suc. Belenes     3       2     1     3    5     3
## 11428   Suc. Belenes     1       1    NA    NA    2    NA
## 11429   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11430   Suc. Belenes    NA       2    NA    NA   NA    NA
## 11431   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11432   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11433   Suc. Belenes     0      NA    NA     0    0     0
## 11434   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11435   Suc. Belenes    NA       2    NA    NA   NA     2
## 11436   Suc. Belenes    NA      NA    NA    NA   NA     2
## 11437   Suc. Belenes    NA       1     4     8   NA    NA
## 11438   Suc. Belenes    NA      NA     1    NA    3    NA
## 11439   Suc. Belenes    NA       2     1     1    3     4
## 11440   Suc. Belenes     3      NA    NA     1    1     2
## 11441   Suc. Belenes    NA       0     0     0   NA     0
## 11442   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11443   Suc. Belenes    NA      NA    NA    NA   NA     2
## 11444   Suc. Belenes    NA       1     1    NA   NA    NA
## 11445   Suc. Belenes    NA      NA     2    NA    4    NA
## 11446   Suc. Belenes    NA      NA    NA    NA    2    NA
## 11447   Suc. Belenes    NA       2     1     1    1     4
## 11448   Suc. Belenes     1      NA     1     1   NA     3
## 11449   Suc. Belenes    NA       0     0     0   NA     0
## 11450   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11451   Suc. Belenes    NA       1     1     3   NA    NA
## 11452   Suc. Belenes    NA      NA    NA    NA    1    NA
## 11453   Suc. Belenes    NA       2     1     1    1     2
## 11454   Suc. Belenes    NA      NA     1     1   NA     1
## 11455   Suc. Belenes    NA      NA    NA    NA   NA     2
## 11456   Suc. Belenes    NA      NA    NA     3   NA     3
## 11457   Suc. Belenes    NA      NA    NA    NA    8    NA
## 11458   Suc. Belenes     1      NA    NA    NA   NA    NA
## 11459   Suc. Belenes    NA       0     0     0   NA     0
## 11460   Suc. Belenes     2      NA    NA    NA    2    NA
## 11461   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11462   Suc. Belenes    NA      NA    NA    NA   NA     2
## 11463   Suc. Belenes     3       1     4    14   14    NA
## 11464   Suc. Belenes     0       0     0     0    3     2
## 11465   Suc. Belenes     2       2     1     1    5     4
## 11466   Suc. Belenes    NA      NA     1     1    1     3
## 11467   Suc. Belenes    NA       0     0     0   NA     0
## 11468   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11469   Suc. Belenes    NA       1    NA    NA    3    NA
## 11470   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11471   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11472   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11473   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11474   Suc. Belenes    34      15    17    23   27    21
## 11475   Suc. Belenes    19      16    19    38   32    22
## 11476   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11477   Suc. Belenes     5       5     8    13   18     8
## 11478   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11479   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11480   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11481   Suc. Belenes     1      NA     5     4    5     2
## 11482   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11483   Suc. Belenes     1      NA    NA    NA   NA    NA
## 11484   Suc. Belenes     1       4     1     3    1     3
## 11485   Suc. Belenes     7       7     5    15   10     8
## 11486   Suc. Belenes     1       1     1     1    0     2
## 11487   Suc. Belenes     1       4     3    NA    3    NA
## 11488   Suc. Belenes     4      NA     2     6   NA     4
## 11489   Suc. Belenes     3       2     2     2    2     2
## 11490   Suc. Belenes     6       8    14    11    8     6
## 11491   Suc. Belenes     1      NA    NA    NA   NA    NA
## 11492   Suc. Belenes     0       0     0     1    2     1
## 11493   Suc. Belenes     1      NA    NA    NA   NA    NA
## 11494   Suc. Belenes    NA      NA     1     1    1     1
## 11495   Suc. Belenes     2       4    NA     2    2     2
## 11496   Suc. Belenes    11      13     6    13    8    11
## 11497   Suc. Belenes    NA      NA    NA    NA    3    NA
## 11498   Suc. Belenes    14      17    20    14   14    20
## 11499   Suc. Belenes    13      13     6    11    8    13
## 11500   Suc. Belenes     1       1     1     1    3     2
## 11501   Suc. Belenes     4       4     4     6    4     8
## 11502   Suc. Belenes    NA      NA    NA     8    6    11
## 11503   Suc. Belenes     6       4     4     6    6     4
## 11504   Suc. Belenes     2       1    NA    NA    2    NA
## 11505   Suc. Belenes     2       4     2    NA    2    NA
## 11506   Suc. Belenes   108      98   116   153   82    55
## 11507   Suc. Belenes    NA      NA    NA    NA   NA    48
## 11508   Suc. Belenes    63      67    67    98   82    76
## 11509   Suc. Belenes    18      30    11    20   21    14
## 11510   Suc. Belenes     6      NA     3     8    3    NA
## 11511   Suc. Belenes    17      17    11    20   14    20
## 11512   Suc. Belenes    53      67    74   106   95    67
## 11513   Suc. Belenes   229     222   247   296  268   218
## 11514   Suc. Belenes    13      19    23    23   15    27
## 11515   Suc. Belenes    55      46    53    78   51    61
## 11516   Suc. Belenes    89      95    93   139  127    80
## 11517   Suc. Belenes     8       8     6     9    8     7
## 11518   Suc. Belenes     9       6     6     9    5     6
## 11519   Suc. Belenes     8       4     6     8   10    10
## 11520   Suc. Belenes     5       4     7     6    5     4
## 11521   Suc. Belenes    NA       1     1    NA   NA    NA
## 11522   Suc. Belenes     1       1     3     1    5     1
## 11523   Suc. Belenes     1       4     1     1    4     3
## 11524   Suc. Belenes     2       0     1     0    0     0
## 11525   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11526   Suc. Belenes     6       8    12    10   11     8
## 11527   Suc. Belenes    NA       2     2    NA    4     2
## 11528   Suc. Belenes     0       2     0     1    1     1
## 11529   Suc. Belenes     0       0     0     0    0     0
## 11530   Suc. Belenes     3      NA     2     2   NA     1
## 11531   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11532   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11533   Suc. Belenes     5       5     6     6    5     5
## 11534   Suc. Belenes     1       8     1     4    4     2
## 11535   Suc. Belenes     1      NA    NA    NA   NA    NA
## 11536   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11537   Suc. Belenes    NA      NA    NA    NA   NA     2
## 11538   Suc. Belenes     4       1     4     4    1     3
## 11539   Suc. Belenes    NA       0    NA     0   NA    NA
## 11540   Suc. Belenes     3       2     3     5    2     5
## 11541   Suc. Belenes     1      NA     1     1    1     2
## 11542   Suc. Belenes     1      NA    NA    NA   NA    NA
## 11543   Suc. Belenes    NA      NA    NA    NA    0    NA
## 11544   Suc. Belenes    NA      NA    NA    NA   NA     2
## 11545   Suc. Belenes     4       1     1     3    1     3
## 11546   Suc. Belenes    NA       0    NA     0   NA    NA
## 11547   Suc. Belenes     8       3     3     5    2     5
## 11548   Suc. Belenes     1      NA     1     1    1     2
## 11549   Suc. Belenes     1      NA    NA    NA   NA    NA
## 11550   Suc. Belenes    NA      NA    NA     0   NA     0
## 11551   Suc. Belenes    NA      NA    NA    NA   NA     2
## 11552   Suc. Belenes     3       2    NA     2    2     2
## 11553   Suc. Belenes    NA      NA     2     4   NA     2
## 11554   Suc. Belenes    14       8    11    11    6     8
## 11555   Suc. Belenes     2       4     4     6    4     4
## 11556   Suc. Belenes     3       1     1     4    3     1
## 11557   Suc. Belenes    NA       0    NA     0   NA    NA
## 11558   Suc. Belenes    11       6     6     6    5     5
## 11559   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11560   Suc. Belenes     6      NA     4     1    4     2
## 11561   Suc. Belenes     1      NA    NA    NA   NA    NA
## 11562   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11563   Suc. Belenes     2      NA     0    NA   NA    NA
## 11564   Suc. Belenes    NA      NA     2    NA   NA    NA
## 11565   Suc. Belenes    NA      NA    NA     2   NA     2
## 11566   Suc. Belenes     7      13     4     3    3     4
## 11567   Suc. Belenes    NA       0    NA     0   NA    NA
## 11568   Suc. Belenes    NA      NA     1    NA   NA    NA
## 11569   Suc. Belenes    NA       6     3     2    4     6
## 11570   Suc. Belenes    NA      NA    NA    NA   NA     0
## 11571   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11572   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11573   Suc. Belenes     6      11     2     2    2     6
## 11574   Suc. Belenes     3      10     3    13    3    16
## 11575   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11576   Suc. Belenes    NA       5     5    NA    3     8
## 11577   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11578   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11579   Suc. Belenes    NA      NA    NA     0   NA    NA
## 11580   Suc. Belenes    NA       1    NA    NA    1     1
## 11581   Suc. Belenes     2      NA     2    NA   NA    NA
## 11582   Suc. Belenes     2       1     2    NA    1     1
## 11583   Suc. Belenes    NA       3     6    NA   NA    NA
## 11584   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11585   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11586   Suc. Belenes    NA       4     2    NA    4    NA
## 11587   Suc. Belenes     2      NA     2     4   NA     2
## 11588   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11589   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11590   Suc. Belenes    16      34    18    61   NA    NA
## 11591   Suc. Belenes    NA      NA    NA    NA   NA    44
## 11592   Suc. Belenes   187     159   133   250  257   162
## 11593   Suc. Belenes    11      17     2    20    2     2
## 11594   Suc. Belenes    NA      NA    NA     3   NA    NA
## 11595   Suc. Belenes    11      21    14     7   53    NA
## 11596   Suc. Belenes   539     557   535   402  627   472
## 11597   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11598   Suc. Belenes    19      21    NA    NA   NA    NA
## 11599   Suc. Belenes   478     526   454   511  480   249
## 11600   Suc. Belenes    NA       2    NA     1    2     1
## 11601   Suc. Belenes    NA      NA    NA    NA    2    NA
## 11602   Suc. Belenes     2       2     4     2    4     2
## 11603   Suc. Belenes     4       3     1    NA    1     2
## 11604   Suc. Belenes     1      NA     1    NA    1     1
## 11605   Suc. Belenes     8      NA    NA    NA   NA    NA
## 11606   Suc. Belenes     3       0     0    NA    0     0
## 11607   Suc. Belenes    NA      NA    NA    NA    1    NA
## 11608   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11609   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11610   Suc. Belenes     0       0     0    NA    0     0
## 11611   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11612   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11613   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11614   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11615   Suc. Belenes    NA      NA    NA    NA   NA     3
## 11616   Suc. Belenes    NA       9     8     3   12    NA
## 11617   Suc. Belenes    NA       4    NA     7    2     3
## 11618   Suc. Belenes     1      NA    11    10   13    11
## 11619   Suc. Belenes     8      18    NA    NA   NA    NA
## 11620   Suc. Belenes    NA      NA    NA    NA    0    NA
## 11621   Suc. Belenes    NA       0     0     1    0    NA
## 11622   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11623   Suc. Belenes    NA       1     3     3   12    NA
## 11624   Suc. Belenes    NA       2    NA     5    2     3
## 11625   Suc. Belenes     1       2     2     2    4     3
## 11626   Suc. Belenes     3      NA    NA    NA   NA    NA
## 11627   Suc. Belenes    NA      NA    NA    NA    0    NA
## 11628   Suc. Belenes    NA       0     0     1    0    NA
## 11629   Suc. Belenes    NA       1     3     3    9    NA
## 11630   Suc. Belenes    NA       2     0     5    2     3
## 11631   Suc. Belenes     1      NA     2     2   NA     9
## 11632   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11633   Suc. Belenes    NA      NA    NA    NA    0    NA
## 11634   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11635   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11636   Suc. Belenes    NA       6     3     3    3     3
## 11637   Suc. Belenes    NA       2    NA     5    2     3
## 11638   Suc. Belenes    NA      NA     2    19    8     6
## 11639   Suc. Belenes     3      NA    NA    NA   NA    NA
## 11640   Suc. Belenes    NA       0     0     1    0    NA
## 11641   Suc. Belenes    NA      NA    NA    NA   NA    10
## 11642   Suc. Belenes     3      18    14     8   20     8
## 11643   Suc. Belenes     0       7    NA     7    2     7
## 11644   Suc. Belenes     1      NA    17     2    8     9
## 11645   Suc. Belenes     8      10    NA    NA   NA    NA
## 11646   Suc. Belenes    NA      NA    NA    NA    0    NA
## 11647   Suc. Belenes    NA       0     0     1    0    NA
## 11648   Suc. Belenes    NA      NA     1    NA   NA    NA
## 11649   Suc. Belenes    NA      NA     3    NA    3     1
## 11650   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11651   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11652   Suc. Belenes     4       6     8    11   13    17
## 11653   Suc. Belenes     3      16     3    13   22    29
## 11654   Suc. Belenes     3      NA    NA    NA   NA    NA
## 11655   Suc. Belenes     4      NA    NA    NA   NA    NA
## 11656   Suc. Belenes     5       3     3    10   10     8
## 11657   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11658   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11659   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11660   Suc. Belenes     2       1     1     4    4     2
## 11661   Suc. Belenes    NA      NA    NA    NA   NA     0
## 11662   Suc. Belenes     1       1     1     3    1     3
## 11663   Suc. Belenes    NA       2    NA     2   NA    NA
## 11664   Suc. Belenes     2       2     2     2    1     2
## 11665   Suc. Belenes     6      NA     3     8   11    NA
## 11666   Suc. Belenes    NA      NA    NA     0    0     0
## 11667   Suc. Belenes     1       1     1     1    1    NA
## 11668   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11669   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11670   Suc. Belenes    NA       1    NA    NA   NA    NA
## 11671   Suc. Belenes     4       2     6     8    2     6
## 11672   Suc. Belenes     3      NA     3     6    6     3
## 11673   Suc. Belenes     8       8    11    11   11    11
## 11674   Suc. Belenes     2       4    NA     2    4    NA
## 11675   Suc. Belenes     2       2    NA     2    4     2
## 11676   Suc. Belenes    NA      NA    NA    11   30    53
## 11677   Suc. Belenes    42      42    63    37   NA    NA
## 11678   Suc. Belenes    NA      NA    NA    NA   NA     3
## 11679   Suc. Belenes    57      54    60    57   79    82
## 11680   Suc. Belenes    14      15    15    15   21    21
## 11681   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11682   Suc. Belenes    NA      NA    NA     6   NA    NA
## 11683   Suc. Belenes   102     106   144   173  180   190
## 11684   Suc. Belenes   144      99   166   194  187   204
## 11685   Suc. Belenes    36      23    68    42   61    89
## 11686   Suc. Belenes    66      61   106   108  171   123
## 11687   Suc. Belenes     4       4     6     6    3     3
## 11688   Suc. Belenes     6      11     9     9   12    17
## 11689   Suc. Belenes     2       8     6     4    8    12
## 11690   Suc. Belenes     4       3     5     4    4     5
## 11691   Suc. Belenes    NA       1    NA    NA   NA    NA
## 11692   Suc. Belenes     1       2     2     3    1     4
## 11693   Suc. Belenes    NA       1    NA    NA   NA    NA
## 11694   Suc. Belenes     2       1     1     3    2     3
## 11695   Suc. Belenes     5      NA    NA     4    1     2
## 11696   Suc. Belenes     3       0     0     0    0     0
## 11697   Suc. Belenes    NA       1    NA    NA    0    NA
## 11698   Suc. Belenes     6       6     9     4    8     6
## 11699   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11700   Suc. Belenes     8      NA     4     4    4     4
## 11701   Suc. Belenes    NA      NA    NA     1    0     0
## 11702   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11703   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11704   Suc. Belenes     0       0     0     0    0     0
## 11705   Suc. Belenes    NA      NA     1     1    1     1
## 11706   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11707   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11708   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11709   Suc. Belenes     2      NA     2    NA    2    NA
## 11710   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11711   Suc. Belenes    NA       1     4     4    5    NA
## 11712   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11713   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11714   Suc. Belenes     1       0     1     0    3     2
## 11715   Suc. Belenes     2       1     4     4    6     5
## 11716   Suc. Belenes     2       3     3     3    3     1
## 11717   Suc. Belenes     0       1     0     0    0     0
## 11718   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11719   Suc. Belenes     2      NA    NA    NA   NA    NA
## 11720   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11721   Suc. Belenes    NA       4     4     4    2    NA
## 11722   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11723   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11724   Suc. Belenes     0       1     1    NA    3     2
## 11725   Suc. Belenes     2       1     2     2    8     3
## 11726   Suc. Belenes     3       1     2     2    2     2
## 11727   Suc. Belenes     0       1     0     0    0     0
## 11728   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11729   Suc. Belenes     2       2    NA     2    2    NA
## 11730   Suc. Belenes    NA       1     4     4    2    NA
## 11731   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11732   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11733   Suc. Belenes     0       0     1     0    1     2
## 11734   Suc. Belenes     2       1     4     2    8     1
## 11735   Suc. Belenes     1       1    NA     2    1     1
## 11736   Suc. Belenes     0       1     0     0    0     0
## 11737   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11738   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11739   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11740   Suc. Belenes    NA      NA     0    NA   NA    NA
## 11741   Suc. Belenes     2      NA    NA    NA    4    NA
## 11742   Suc. Belenes     1      NA     3     1    1     1
## 11743   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11744   Suc. Belenes     2       2     4     2    2    NA
## 11745   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11746   Suc. Belenes     3       4     4     6    8     3
## 11747   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11748   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11749   Suc. Belenes     2       1     2     0    3     2
## 11750   Suc. Belenes     2       5     4     4   27     7
## 11751   Suc. Belenes     4       2     4     3    4     3
## 11752   Suc. Belenes     0       1     0     0    0     0
## 11753   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11754   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11755   Suc. Belenes     3       3     3     4    6     3
## 11756   Suc. Belenes    NA      NA    NA    NA    0    NA
## 11757   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11758   Suc. Belenes     2       2    NA    NA    4     4
## 11759   Suc. Belenes     3       3    NA    NA    3     3
## 11760   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11761   Suc. Belenes     4       4     7     4    4    NA
## 11762   Suc. Belenes     3      NA     3     5    5     5
## 11763   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11764   Suc. Belenes     1       0    NA     1    0     0
## 11765   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11766   Suc. Belenes    NA      NA    NA    NA    1     1
## 11767   Suc. Belenes    NA      NA    NA    NA   NA     0
## 11768   Suc. Belenes     1       1    NA    NA    1    NA
## 11769   Suc. Belenes    NA       2    NA    NA   NA    NA
## 11770   Suc. Belenes     2       2     1    NA    1    NA
## 11771   Suc. Belenes    NA       6     6    NA    6     6
## 11772   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11773   Suc. Belenes     6      11     6     8    4     6
## 11774   Suc. Belenes    11       8    11     8   11     8
## 11775   Suc. Belenes    11       8    11    13   13    17
## 11776   Suc. Belenes    NA       3    NA    NA   NA    NA
## 11777   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11778   Suc. Belenes    44      44    73    79   51    44
## 11779   Suc. Belenes     5       3     5     8    5     9
## 11780   Suc. Belenes    18      28    28    18   28    25
## 11781   Suc. Belenes   144      88   109    88  102    99
## 11782   Suc. Belenes     6      11     6     8    6    11
## 11783   Suc. Belenes    72      61    72    59   55    66
## 11784   Suc. Belenes     2      NA     2     1    2     4
## 11785   Suc. Belenes    NA       3     2     2    2     2
## 11786   Suc. Belenes    NA      NA    NA     2    2     2
## 11787   Suc. Belenes     3       2     4     4    4     4
## 11788   Suc. Belenes     2       1    NA    NA    1    NA
## 11789   Suc. Belenes    NA       1    NA    NA    1    NA
## 11790   Suc. Belenes    NA       1    NA    NA   NA    NA
## 11791   Suc. Belenes    NA      NA     0    NA   NA    NA
## 11792   Suc. Belenes     3       0    NA    NA    0    NA
## 11793   Suc. Belenes    NA      NA    NA    NA    0    NA
## 11794   Suc. Belenes     2      NA    NA    NA    2    NA
## 11795   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11796   Suc. Belenes     0       0    NA    NA    0    NA
## 11797   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11798   Suc. Belenes     3       6     6     6    6    NA
## 11799   Suc. Belenes    NA      NA    NA    NA   NA     3
## 11800   Suc. Belenes    NA      NA    11     3    3     3
## 11801   Suc. Belenes    NA       4    NA     7    4     4
## 11802   Suc. Belenes     1       0    NA     1    0     0
## 11803   Suc. Belenes     1       1     1     1    2     1
## 11804   Suc. Belenes     4       2     4     2    3     4
## 11805   Suc. Belenes     1       2     1     1    2     1
## 11806   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11807   Suc. Belenes     6       3     3     3    6    NA
## 11808   Suc. Belenes    NA      NA    NA    NA   NA     3
## 11809   Suc. Belenes    NA      NA     3     6   NA    NA
## 11810   Suc. Belenes    NA      NA    NA    NA    5     4
## 11811   Suc. Belenes     0       0    NA     0    0     0
## 11812   Suc. Belenes     1       1     1     1    1     1
## 11813   Suc. Belenes    NA       4     2     4    3     2
## 11814   Suc. Belenes     1       1     1     1    1     3
## 11815   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11816   Suc. Belenes     6       6     6     6    3     6
## 11817   Suc. Belenes    NA      NA    NA     3   NA    NA
## 11818   Suc. Belenes    NA      NA     4     4    2     7
## 11819   Suc. Belenes     1       0    NA     1    0     0
## 11820   Suc. Belenes     0      NA     2     1    2     1
## 11821   Suc. Belenes    NA      NA    NA    NA    3    NA
## 11822   Suc. Belenes     1       2     1     1    3     1
## 11823   Suc. Belenes     1       1     1     1    1     1
## 11824   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11825   Suc. Belenes    NA      NA     6     3   NA    NA
## 11826   Suc. Belenes    NA       7     4    NA    4    NA
## 11827   Suc. Belenes    NA       0    NA     0   NA    NA
## 11828   Suc. Belenes     6       2     2     4   NA     2
## 11829   Suc. Belenes    NA       1    NA    NA   NA    NA
## 11830   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11831   Suc. Belenes     3      10    10    10    6     6
## 11832   Suc. Belenes    NA      NA    NA    NA   NA     3
## 11833   Suc. Belenes     3       3     6     3    3    NA
## 11834   Suc. Belenes    NA      NA     4     7    7     7
## 11835   Suc. Belenes     1       0    NA     1    0     0
## 11836   Suc. Belenes     0       1     2     1    1     2
## 11837   Suc. Belenes    NA       2     4     4    5     4
## 11838   Suc. Belenes     1       3     2     3    3     2
## 11839   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11840   Suc. Belenes    NA      NA    NA    NA    3    NA
## 11841   Suc. Belenes     2      NA     2     2    2     4
## 11842   Suc. Belenes     3      NA    NA    NA    3     6
## 11843   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11844   Suc. Belenes    NA      NA    NA    NA    3    NA
## 11845   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11846   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11847   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11848   Suc. Belenes     4       4     8     9    8     8
## 11849   Suc. Belenes    NA      NA    NA    NA   NA     0
## 11850   Suc. Belenes    NA      NA    NA    NA    1     1
## 11851   Suc. Belenes    NA      NA    NA    NA    1     1
## 11852   Suc. Belenes     4       2    NA    NA    2    NA
## 11853   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11854   Suc. Belenes     3       5    NA    NA   NA     3
## 11855   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11856   Suc. Belenes    73      57    76    67   73    79
## 11857   Suc. Belenes     2      NA     2     2    3     3
## 11858   Suc. Belenes    NA       6    NA    NA   NA    NA
## 11859   Suc. Belenes    NA      NA    NA     4    4    NA
## 11860   Suc. Belenes    81      85    88    99  116    70
## 11861   Suc. Belenes     4      NA     2     4    2     4
## 11862   Suc. Belenes    34      30    53    42   57    55
## 11863   Suc. Belenes    NA       1    NA    NA   NA     1
## 11864   Suc. Belenes     2       2    NA     2   NA     2
## 11865   Suc. Belenes     1       3     1     2   NA     1
## 11866   Suc. Belenes    NA       2     1    NA    2     1
## 11867   Suc. Belenes    NA       1     1    NA    1    NA
## 11868   Suc. Belenes    NA       1    NA    NA   NA    NA
## 11869   Suc. Belenes    NA      NA    NA     0    1     2
## 11870   Suc. Belenes    NA       0    NA    NA    0     0
## 11871   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11872   Suc. Belenes     3       1     7    NA    3     3
## 11873   Suc. Belenes    NA      NA    NA    NA   NA     0
## 11874   Suc. Belenes    NA       0    NA    NA    0     0
## 11875   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11876   Suc. Belenes    NA      NA     6    NA    1     3
## 11877   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11878   Suc. Belenes    NA      NA    NA    NA   NA     0
## 11879   Suc. Belenes     3       1    NA    NA    1    NA
## 11880   Suc. Belenes    NA      NA     1    NA    1     1
## 11881   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11882   Suc. Belenes    NA      NA    NA    NA    1    NA
## 11883   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11884   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11885   Suc. Belenes     1       1     2    NA    3     2
## 11886   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11887   Suc. Belenes    NA      NA    NA    NA    4    NA
## 11888   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11889   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11890   Suc. Belenes     1       1    NA    NA    1    NA
## 11891   Suc. Belenes     1      NA     1    NA    1     1
## 11892   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11893   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11894   Suc. Belenes    NA      NA     2    NA   NA    NA
## 11895   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11896   Suc. Belenes    NA      NA    NA    NA   NA     3
## 11897   Suc. Belenes     3      NA     3    NA    4    NA
## 11898   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11899   Suc. Belenes    NA      NA    NA    NA    0    NA
## 11900   Suc. Belenes     3       1     4    NA    1    NA
## 11901   Suc. Belenes     1       1     1    NA    1     1
## 11902   Suc. Belenes    NA      NA    NA     2   NA    NA
## 11903   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11904   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11905   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11906   Suc. Belenes    11       4    NA     2    8     6
## 11907   Suc. Belenes    16       3    NA     3    6    10
## 11908   Suc. Belenes     5       5    NA    NA   NA    NA
## 11909   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11910   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11911   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11912   Suc. Belenes    NA       1    NA    NA   NA    NA
## 11913   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11914   Suc. Belenes     3      NA    NA    NA   NA    NA
## 11915   Suc. Belenes     3       3     2     4    3     6
## 11916   Suc. Belenes    NA      NA    NA    NA   NA     0
## 11917   Suc. Belenes     1       2    NA     1    3     3
## 11918   Suc. Belenes     2       2    NA     1    2     2
## 11919   Suc. Belenes    NA      NA    NA     3    6     6
## 11920   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11921   Suc. Belenes    NA       0    NA    NA    0    NA
## 11922   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11923   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11924   Suc. Belenes     1      NA    NA    NA   NA    NA
## 11925   Suc. Belenes    NA       4    NA    NA   NA    NA
## 11926   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11927   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11928   Suc. Belenes     6      NA     2    NA    2    NA
## 11929   Suc. Belenes    NA       1    NA    NA   NA    NA
## 11930   Suc. Belenes     4       1     2     5    3     3
## 11931   Suc. Belenes     1      NA     1    NA   NA    NA
## 11932   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11933   Suc. Belenes    11       4     6    13   11    13
## 11934   Suc. Belenes    NA      NA    NA     3   NA    NA
## 11935   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11936   Suc. Belenes     6       3     6     3    3     3
## 11937   Suc. Belenes     8       5     6     9    9    11
## 11938   Suc. Belenes    23      20     8    20   20    23
## 11939   Suc. Belenes    NA       3    NA    NA   NA    NA
## 11940   Suc. Belenes    35      25    21    42   35    35
## 11941   Suc. Belenes     7       4     4     4    4     4
## 11942   Suc. Belenes     8      11     8     2   NA    NA
## 11943   Suc. Belenes    27      15    19    27   21    27
## 11944   Suc. Belenes    49      49    53    57   82    97
## 11945   Suc. Belenes     3       2     1     4    5     8
## 11946   Suc. Belenes     4       4     3     4    4     8
## 11947   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11948   Suc. Belenes     2       1     1     1   NA    NA
## 11949   Suc. Belenes    NA      NA    NA     1   NA    NA
## 11950   Suc. Belenes    NA       1    NA     1    1     2
## 11951   Suc. Belenes     1       1    NA    NA   NA    NA
## 11952   Suc. Belenes     1       1    NA     2    2     3
## 11953   Suc. Belenes     4       0     1     4    3     3
## 11954   Suc. Belenes    NA       0    NA    NA    1    NA
## 11955   Suc. Belenes    NA       3     1     3    3     3
## 11956   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11957   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11958   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11959   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11960   Suc. Belenes     0       0    NA     0    0     0
## 11961   Suc. Belenes     1       1     1     2    2     2
## 11962   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11963   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11964   Suc. Belenes     1       1    NA     3    3    NA
## 11965   Suc. Belenes     0       0     1     0    1     0
## 11966   Suc. Belenes     1      NA    NA    NA    1    NA
## 11967   Suc. Belenes     4       1     1     1    1     3
## 11968   Suc. Belenes    NA       0    NA    NA    1    NA
## 11969   Suc. Belenes     0      NA    NA    NA   NA    NA
## 11970   Suc. Belenes     1       1    NA    NA   NA    NA
## 11971   Suc. Belenes     0      NA     0    NA    1     0
## 11972   Suc. Belenes     1      NA    NA    NA    1    NA
## 11973   Suc. Belenes     3       1    NA     1    1     2
## 11974   Suc. Belenes    NA       0    NA    NA    1    NA
## 11975   Suc. Belenes     0      NA    NA    NA   NA    NA
## 11976   Suc. Belenes     1       1    NA    NA   NA    NA
## 11977   Suc. Belenes     0      NA     1    NA    0     0
## 11978   Suc. Belenes     1      NA    NA    NA    1    NA
## 11979   Suc. Belenes     4       1     1     1    1     3
## 11980   Suc. Belenes     0      NA    NA    NA   NA    NA
## 11981   Suc. Belenes     1      NA    NA    NA   NA     1
## 11982   Suc. Belenes    NA      NA    NA    NA   NA     3
## 11983   Suc. Belenes    NA      NA    NA    NA    0    NA
## 11984   Suc. Belenes     4      NA    NA    NA   NA    NA
## 11985   Suc. Belenes    NA       0    NA    NA    1    NA
## 11986   Suc. Belenes     1       1    NA    NA   NA    NA
## 11987   Suc. Belenes     0      NA     1     0    0     0
## 11988   Suc. Belenes     1       2    NA     2    1     2
## 11989   Suc. Belenes     3       2     2     3    2     3
## 11990   Suc. Belenes    NA       0    NA    NA    1    NA
## 11991   Suc. Belenes     0      NA    NA    NA   NA    NA
## 11992   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11993   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11994   Suc. Belenes    NA       1     1     4    3     4
## 11995   Suc. Belenes    11      11     6     8    8    11
## 11996   Suc. Belenes    10       3     3    10    6    10
## 11997   Suc. Belenes     3       8     3     8    5     8
## 11998   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11999   Suc. Belenes    NA       1    NA    NA   NA    NA
## 12000   Suc. Belenes     0      NA    NA     0   NA     0
## 12001   Suc. Belenes     4       4     3     3    2    11
## 12002   Suc. Belenes    NA      NA    NA    NA   NA     0
## 12003   Suc. Belenes    NA      NA    NA    NA    2     2
## 12004   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12005   Suc. Belenes    NA       1    NA    NA   NA    NA
## 12006   Suc. Belenes    NA      NA    NA     2    1     1
## 12007   Suc. Belenes     6      NA    NA     3    3     3
## 12008   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12009   Suc. Belenes    NA       0    NA    NA   NA    NA
## 12010   Suc. Belenes    NA      NA    NA    NA    1    NA
## 12011   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12012   Suc. Belenes     2       2    NA     2    4     4
## 12013   Suc. Belenes     3      NA     3    NA    6    NA
## 12014   Suc. Belenes     4       4     2     2    6     4
## 12015   Suc. Belenes    NA       1     1     1    1     1
## 12016   Suc. Belenes    NA       1    NA     2   NA    NA
## 12017   Suc. Belenes    NA       3    NA    NA   NA    NA
## 12018   Suc. Belenes     1      NA     1     1    1     1
## 12019   Suc. Belenes     6       8     8     6    4     8
## 12020   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12021   Suc. Belenes     6       6     3     6   10    13
## 12022   Suc. Belenes     2       5     2     5    3     3
## 12023   Suc. Belenes     2       2     3     5   NA    NA
## 12024   Suc. Belenes     6      NA    NA    NA   NA    NA
## 12025   Suc. Belenes    21      11    11     7   14    18
## 12026   Suc. Belenes    42      25    32    39   35    39
## 12027   Suc. Belenes     3       3     3     3    3    NA
## 12028   Suc. Belenes    NA      NA    NA    NA    2     4
## 12029   Suc. Belenes    13      13    15    15   15    19
## 12030   Suc. Belenes    38      30    36    42   36    36
## 12031   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12032   Suc. Belenes     4       5     4     2    5     5
## 12033   Suc. Belenes     3       2     2     2    3     3
## 12034   Suc. Belenes     2       2     1     1    2     1
## 12035   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12036   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12037   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12038   Suc. Belenes     1      NA    NA    NA    2     0
## 12039   Suc. Belenes    NA      NA    NA    NA    0    NA
## 12040   Suc. Belenes     3       1     3     4    3     9
## 12041   Suc. Belenes    NA       1    NA    NA   NA    NA
## 12042   Suc. Belenes     2      NA    NA    NA   NA     2
## 12043   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12044   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12045   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12046   Suc. Belenes    NA      NA    NA     0   NA     0
## 12047   Suc. Belenes    NA       1     1     1    3     1
## 12048   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12049   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12050   Suc. Belenes     4      NA     4     4    4     4
## 12051   Suc. Belenes     0      NA    NA     0   NA     0
## 12052   Suc. Belenes     1       3     1     0   NA     0
## 12053   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12054   Suc. Belenes     1       3     1     1    4     3
## 12055   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12056   Suc. Belenes     0      NA    NA     0   NA     0
## 12057   Suc. Belenes     1      NA     1    NA   NA    NA
## 12058   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12059   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12060   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12061   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12062   Suc. Belenes     0      NA    NA     0   NA     0
## 12063   Suc. Belenes     1      NA     1    NA   NA    NA
## 12064   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12065   Suc. Belenes    NA      NA    NA    NA    3     2
## 12066   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12067   Suc. Belenes     3       1     1     3    1    NA
## 12068   Suc. Belenes    NA       3    NA    NA   NA     3
## 12069   Suc. Belenes     7       4     4     4    4     4
## 12070   Suc. Belenes     0      NA    NA     0   NA     0
## 12071   Suc. Belenes     1      NA     1     0   NA    NA
## 12072   Suc. Belenes     4       4     4     2    6     4
## 12073   Suc. Belenes     3       5     3     4    3     3
## 12074   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12075   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12076   Suc. Belenes     3       3     1     2   NA     2
## 12077   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12078   Suc. Belenes     3       3     3     4    3     3
## 12079   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12080   Suc. Belenes    25     169     8    38   55    17
## 12081   Suc. Belenes     3     111    16    51  101    13
## 12082   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12083   Suc. Belenes    18      63    10    15   36    10
## 12084   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12085   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12086   Suc. Belenes     6       6     5    NA   NA     2
## 12087   Suc. Belenes     8       3     5    NA   NA    NA
## 12088   Suc. Belenes     5      NA    NA    NA   NA    NA
## 12089   Suc. Belenes     3       3     2     4    2     2
## 12090   Suc. Belenes    NA      NA     0    NA   NA    NA
## 12091   Suc. Belenes    NA      NA    NA     0   NA     1
## 12092   Suc. Belenes    10       8     5     5    5     6
## 12093   Suc. Belenes     4       4     1     6    7     4
## 12094   Suc. Belenes     3       3     3     5    1     2
## 12095   Suc. Belenes    NA       1     1    11    6     2
## 12096   Suc. Belenes     2       2    NA    NA   NA    NA
## 12097   Suc. Belenes     1      NA    NA    NA   NA    NA
## 12098   Suc. Belenes     3       2     1     5    1     2
## 12099   Suc. Belenes    NA       3     3    NA    3    NA
## 12100   Suc. Belenes     1      NA    NA     5   NA    NA
## 12101   Suc. Belenes     1       1     0     2    0     1
## 12102   Suc. Belenes     3       1     2     4    3     4
## 12103   Suc. Belenes     5      13     4     3    3     1
## 12104   Suc. Belenes     2      NA    NA    NA   NA    NA
## 12105   Suc. Belenes     4       4     2     4    6     2
## 12106   Suc. Belenes     4       2     1     1    1     1
## 12107   Suc. Belenes     8       6     6     8    6     8
## 12108   Suc. Belenes     8      11     6    11   14     8
## 12109   Suc. Belenes     7       3     3     3    7     2
## 12110   Suc. Belenes    25      19    23    27   27    25
## 12111   Suc. Belenes     3       2     2     4    3     3
## 12112   Suc. Belenes     5       3     3     5    5     2
## 12113   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12114   Suc. Belenes     4       6     2     4    4     4
## 12115   Suc. Belenes     3       2     3     3    3     3
## 12116   Suc. Belenes     6      NA    NA    NA    3    NA
## 12117   Suc. Belenes     6       2     6     6    6     4
## 12118   Suc. Belenes     1       1     1     1    2     1
## 12119   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12120   Suc. Belenes    42      34    25    30   30    23
## 12121   Suc. Belenes     3       3     3    13    3     3
## 12122   Suc. Belenes     6       3     3    NA   NA     6
## 12123   Suc. Belenes    13      13     6    16   16     6
## 12124   Suc. Belenes    41      38    41    42   35    42
## 12125   Suc. Belenes     2      NA    NA    NA    2    NA
## 12126   Suc. Belenes    11      17    17    17   20    20
## 12127   Suc. Belenes    70      67    46    63   70    81
## 12128   Suc. Belenes   134      92   106   127   99   162
## 12129   Suc. Belenes     2      NA    NA    NA   NA    NA
## 12130   Suc. Belenes     4       8     8     8   11     6
## 12131   Suc. Belenes   188     144   142   150  167   165
## 12132   Suc. Belenes   150     144   131   194  180   161
## 12133   Suc. Belenes    24      21    18    21   21    18
## 12134   Suc. Belenes    16      14    13    14   17    15
## 12135   Suc. Belenes    20      17    21    21   26    21
## 12136   Suc. Belenes    12      10    12    12   20    18
## 12137   Suc. Belenes    17      17    11    12   14    15
## 12138   Suc. Belenes    NA      NA     1     1   NA    NA
## 12139   Suc. Belenes     4       2     4     8    1     4
## 12140   Suc. Belenes    NA       1    NA     2   NA    NA
## 12141   Suc. Belenes     5       2     3     6    5     5
## 12142   Suc. Belenes     1      NA    NA    NA   NA     1
## 12143   Suc. Belenes    NA      NA     1    NA    1    NA
## 12144   Suc. Belenes     4       0     0     2    0     0
## 12145   Suc. Belenes    NA       1    NA    NA    2    NA
## 12146   Suc. Belenes    11      14    40    23   34    10
## 12147   Suc. Belenes    NA      NA    NA    NA    1    NA
## 12148   Suc. Belenes    NA      NA    NA     1   NA    NA
## 12149   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12150   Suc. Belenes     8       2     6    15    8    11
## 12151   Suc. Belenes     3       1     2     2    3     3
## 12152   Suc. Belenes    NA       1     1     2    1    NA
## 12153   Suc. Belenes     2       1     1     1    1    NA
## 12154   Suc. Belenes    NA      NA     1     1   NA    NA
## 12155   Suc. Belenes    NA      NA     1    NA    1    NA
## 12156   Suc. Belenes     1       1     1     2    1     1
## 12157   Suc. Belenes     5       3     5     5    6     5
## 12158   Suc. Belenes     2       2     2    NA    2     2
## 12159   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12160   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12161   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12162   Suc. Belenes     4       2    NA     4    4     4
## 12163   Suc. Belenes    14       6    NA     8    6     8
## 12164   Suc. Belenes    NA      NA    NA     0   NA     1
## 12165   Suc. Belenes     3       3     1     0    1     2
## 12166   Suc. Belenes     8       3     2     2    3     4
## 12167   Suc. Belenes    11      11    10    13   10    15
## 12168   Suc. Belenes     0       2     2     2    2    NA
## 12169   Suc. Belenes    NA       0     0     1    1     0
## 12170   Suc. Belenes     1       0    NA    NA   NA    NA
## 12171   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12172   Suc. Belenes     3       3    NA     3    3     3
## 12173   Suc. Belenes    NA      NA    NA     0   NA     0
## 12174   Suc. Belenes     3       2     1     1    1     0
## 12175   Suc. Belenes     2       3     2     2    3     4
## 12176   Suc. Belenes     3       5     3     3    8     5
## 12177   Suc. Belenes     0      NA    NA    NA   NA    NA
## 12178   Suc. Belenes    NA       0     0     1    1     0
## 12179   Suc. Belenes     1       0    NA    NA   NA    NA
## 12180   Suc. Belenes     3      NA    NA    NA   NA     3
## 12181   Suc. Belenes    NA      NA    NA     0   NA     1
## 12182   Suc. Belenes     2       2     1     1    1     3
## 12183   Suc. Belenes     2       3     2     2    3     4
## 12184   Suc. Belenes     8      NA     3     3    3     5
## 12185   Suc. Belenes     0      NA    NA    NA   NA    NA
## 12186   Suc. Belenes     1       0    NA    NA   NA    NA
## 12187   Suc. Belenes    12       8     5     8   10     8
## 12188   Suc. Belenes     3       3     6     8    3    NA
## 12189   Suc. Belenes    NA      NA    NA    NA    4    NA
## 12190   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12191   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12192   Suc. Belenes    13       8    10    10    9    13
## 12193   Suc. Belenes    NA       0     0     1    1     0
## 12194   Suc. Belenes     4       4     2     8    4     6
## 12195   Suc. Belenes     8       8     3    11   20    NA
## 12196   Suc. Belenes    NA      NA     4    NA   NA    NA
## 12197   Suc. Belenes    NA      NA    NA     0   NA     1
## 12198   Suc. Belenes     3       3     1     2    2     4
## 12199   Suc. Belenes     2       3     4     4    5     4
## 12200   Suc. Belenes    30      14    18    16   13    18
## 12201   Suc. Belenes     3       2     5     3    2     3
## 12202   Suc. Belenes    NA       0     0     1    1     0
## 12203   Suc. Belenes     1       0    NA    NA   NA    NA
## 12204   Suc. Belenes     3      NA     1     2    1    NA
## 12205   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12206   Suc. Belenes     7      15    13    13    7     8
## 12207   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12208   Suc. Belenes    NA      NA    NA    NA    1    NA
## 12209   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12210   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12211   Suc. Belenes     2      NA     2     4    2     2
## 12212   Suc. Belenes     3      NA     3     6    3     6
## 12213   Suc. Belenes    NA      NA    NA    NA    0    NA
## 12214   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12215   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12216   Suc. Belenes    NA       1    NA    NA   NA    NA
## 12217   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12218   Suc. Belenes     1       1     1    NA    1    NA
## 12219   Suc. Belenes     2       2     3     3    4     3
## 12220   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12221   Suc. Belenes    NA      NA     1     1    2     2
## 12222   Suc. Belenes    NA      NA     2     1    2     2
## 12223   Suc. Belenes     6       3     8     8    8     6
## 12224   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12225   Suc. Belenes    NA      NA     0    NA    0     0
## 12226   Suc. Belenes     1      NA    NA    NA    1    NA
## 12227   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12228   Suc. Belenes    NA       2    NA    NA   NA    NA
## 12229   Suc. Belenes    NA      NA    NA    NA    1    NA
## 12230   Suc. Belenes     4      NA     2     4    2     2
## 12231   Suc. Belenes     2       1     1     1    1    NA
## 12232   Suc. Belenes    17       8     6    15   19    13
## 12233   Suc. Belenes    NA       5     2     6    6     9
## 12234   Suc. Belenes    17      11     8    20   17    23
## 12235   Suc. Belenes    13      19     6    11   13    17
## 12236   Suc. Belenes     4       3     2     4    3     5
## 12237   Suc. Belenes     5      NA    NA     3    3     2
## 12238   Suc. Belenes     1       1     1     1    1     1
## 12239   Suc. Belenes    NA       2    NA     4    4     4
## 12240   Suc. Belenes     3      NA    NA    NA   NA    NA
## 12241   Suc. Belenes     2       2     2     2    4     4
## 12242   Suc. Belenes     1       1     1     1    2     1
## 12243   Suc. Belenes    NA      NA    NA    NA    1    NA
## 12244   Suc. Belenes    23      21    23    25   38    38
## 12245   Suc. Belenes    NA      NA    NA    NA   NA     6
## 12246   Suc. Belenes    22      13    13    22   32    29
## 12247   Suc. Belenes     9       6     6     5   11     9
## 12248   Suc. Belenes    54      54    48    60   73    70
## 12249   Suc. Belenes    42      32    28    25   46    46
## 12250   Suc. Belenes    74      77    53    77   85    95
## 12251   Suc. Belenes    NA       2     2     4   11    11
## 12252   Suc. Belenes    30      40    27    30   53    49
## 12253   Suc. Belenes    34      34    30    40   55    53
## 12254   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12255   Suc. Belenes    10       6     7     6   10    10
## 12256   Suc. Belenes     6       6     3     6    5     6
## 12257   Suc. Belenes     6       4     4    NA    4     8
## 12258   Suc. Belenes     2       1     1     2    2     1
## 12259   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12260   Suc. Belenes    NA      NA     1     1    3     3
## 12261   Suc. Belenes    NA      NA    NA     1   NA    NA
## 12262   Suc. Belenes     1       1     1     3    1     3
## 12263   Suc. Belenes    NA      NA     0    NA   NA    NA
## 12264   Suc. Belenes     3       0     2     0    0     0
## 12265   Suc. Belenes     1       1     1     1    1     1
## 12266   Suc. Belenes     3       3     3     3    5     4
## 12267   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12268   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12269   Suc. Belenes    NA      NA     1    NA   NA    NA
## 12270   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12271   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12272   Suc. Belenes     0       0     1     0    1     1
## 12273   Suc. Belenes     2       1     3     3    3     1
## 12274   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12275   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12276   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12277   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12278   Suc. Belenes     1       4    NA     6    3     3
## 12279   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12280   Suc. Belenes    NA      NA    NA     0   NA    NA
## 12281   Suc. Belenes     1      NA     1     1    1    NA
## 12282   Suc. Belenes     3       2     3     4    3     2
## 12283   Suc. Belenes    NA       0     0     0    0     0
## 12284   Suc. Belenes     0       0    NA    NA   NA    NA
## 12285   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12286   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12287   Suc. Belenes     1       1    NA    NA    3    NA
## 12288   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12289   Suc. Belenes    NA       0    NA    NA   NA    NA
## 12290   Suc. Belenes     1      NA     1     1    1    NA
## 12291   Suc. Belenes     1       1     1     3    3     1
## 12292   Suc. Belenes    NA       0     0     0    0     0
## 12293   Suc. Belenes     0       0    NA    NA   NA    NA
## 12294   Suc. Belenes     1       1    NA    NA    3    NA
## 12295   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12296   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12297   Suc. Belenes     1      NA     1     1    1    NA
## 12298   Suc. Belenes     3       2    NA     3    1     1
## 12299   Suc. Belenes     0       0    NA    NA   NA    NA
## 12300   Suc. Belenes     2       1     1     1    1    NA
## 12301   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12302   Suc. Belenes    NA      NA    NA    NA    3     3
## 12303   Suc. Belenes    NA      NA    NA    NA    2    NA
## 12304   Suc. Belenes    NA      NA     1    NA   NA     1
## 12305   Suc. Belenes    NA       0     0     0    0     0
## 12306   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12307   Suc. Belenes    NA      NA    NA    NA   NA    10
## 12308   Suc. Belenes     6       4     8     3    6     8
## 12309   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12310   Suc. Belenes     0      NA     0    NA    0     0
## 12311   Suc. Belenes     1      NA     1     1    1     2
## 12312   Suc. Belenes     4       3     3     3    3     2
## 12313   Suc. Belenes    NA       0     0     0    0     0
## 12314   Suc. Belenes     0       0    NA    NA   NA    NA
## 12315   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12316   Suc. Belenes     1       2    NA     3    5     4
## 12317   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12318   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12319   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12320   Suc. Belenes     2       2     2     2    2     4
## 12321   Suc. Belenes     6       3     6     3   10     3
## 12322   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12323   Suc. Belenes    NA      NA     0    NA   NA    NA
## 12324   Suc. Belenes    NA       3     3    NA   NA     3
## 12325   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12326   Suc. Belenes    NA       1    NA     0   NA    NA
## 12327   Suc. Belenes    NA      NA     0    NA    0     0
## 12328   Suc. Belenes     1      NA     1    NA    1     1
## 12329   Suc. Belenes     2       2     1     1    2     3
## 12330   Suc. Belenes    NA      NA    NA    NA   NA     0
## 12331   Suc. Belenes    NA      NA     1     1    1     1
## 12332   Suc. Belenes    NA      NA     1     1    1     1
## 12333   Suc. Belenes     3      NA    NA    NA   NA    NA
## 12334   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12335   Suc. Belenes    NA       1    NA    NA   NA    NA
## 12336   Suc. Belenes     1      NA    NA    NA   NA     1
## 12337   Suc. Belenes     2       4     2     6    4     2
## 12338   Suc. Belenes    NA      NA    NA     3   NA    NA
## 12339   Suc. Belenes     2       2     2     2   NA     2
## 12340   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12341   Suc. Belenes    NA       0     1    NA    0    NA
## 12342   Suc. Belenes     1      NA    NA    NA    0    NA
## 12343   Suc. Belenes    NA       2    NA    NA   NA    NA
## 12344   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12345   Suc. Belenes    13      13     8    24   18    21
## 12346   Suc. Belenes    NA      NA    NA    NA   NA     3
## 12347   Suc. Belenes    76      48    73    82   63    86
## 12348   Suc. Belenes     6       9     6     9    8     8
## 12349   Suc. Belenes    NA      NA    NA     6   NA    NA
## 12350   Suc. Belenes    18      NA     4    11   11     7
## 12351   Suc. Belenes   159     183   113   162  141    92
## 12352   Suc. Belenes     2       4     2     2    4     2
## 12353   Suc. Belenes     6      11     4    13    2     2
## 12354   Suc. Belenes    66      72    76    93   61    78
## 12355   Suc. Belenes     5       5     6     4    6     6
## 12356   Suc. Belenes     2       2     2     3    2    NA
## 12357   Suc. Belenes    NA       2    NA     4    2     2
## 12358   Suc. Belenes     3       2     2     1    2     2
## 12359   Suc. Belenes     1      NA     1     1    1     1
## 12360   Suc. Belenes     1      NA     1     1    1    NA
## 12361   Suc. Belenes     1      NA    NA    NA    1    NA
## 12362   Suc. Belenes    NA      NA     0     0    0     0
## 12363   Suc. Belenes     6       5     3     4    2     5
## 12364   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12365   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12366   Suc. Belenes    NA       0    NA     0    0    NA
## 12367   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12368   Suc. Belenes     0       0     0     0    0     0
## 12369   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12370   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12371   Suc. Belenes    NA       2     2    NA    2    NA
## 12372   Suc. Belenes    NA      NA    NA    NA   NA     3
## 12373   Suc. Belenes    NA       3     3    NA   NA     6
## 12374   Suc. Belenes    NA      NA     0    NA    0     0
## 12375   Suc. Belenes     1       1    NA     1    1     2
## 12376   Suc. Belenes    NA       1     2     3    4     3
## 12377   Suc. Belenes    NA       1     1     1   NA    NA
## 12378   Suc. Belenes    NA      NA    NA     0   NA    NA
## 12379   Suc. Belenes     2      NA    NA     2   NA    NA
## 12380   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12381   Suc. Belenes    NA      NA    NA    NA    3     3
## 12382   Suc. Belenes    NA      NA     0    NA    0     0
## 12383   Suc. Belenes    NA       1    NA     0    0     1
## 12384   Suc. Belenes    NA       3    NA     3    2     1
## 12385   Suc. Belenes    NA       1    NA     1    1     1
## 12386   Suc. Belenes    NA      NA    NA     0   NA    NA
## 12387   Suc. Belenes    NA      NA    NA     2    2    NA
## 12388   Suc. Belenes    NA      NA     0    NA    0     0
## 12389   Suc. Belenes    NA       0    NA    NA   NA     0
## 12390   Suc. Belenes    NA       1    NA     1    2     1
## 12391   Suc. Belenes    NA      NA    NA     1   NA    NA
## 12392   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12393   Suc. Belenes     3       3     3     6   NA     3
## 12394   Suc. Belenes     0       0    NA     0    0    NA
## 12395   Suc. Belenes     2      NA     2    NA   NA    NA
## 12396   Suc. Belenes    NA      NA    NA     0   NA    NA
## 12397   Suc. Belenes     2      NA     5     3   NA     3
## 12398   Suc. Belenes    NA      NA    NA    NA   NA     3
## 12399   Suc. Belenes    NA       3     8     6    3     3
## 12400   Suc. Belenes    NA      NA     4     4   NA    NA
## 12401   Suc. Belenes    NA      NA     0    NA    0     0
## 12402   Suc. Belenes     3       2     1     2    2     3
## 12403   Suc. Belenes     2       3     2     5    4     3
## 12404   Suc. Belenes     1       1     1     2    1     1
## 12405   Suc. Belenes    NA      NA    NA     0   NA    NA
## 12406   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12407   Suc. Belenes    NA      NA     1     1    2    NA
## 12408   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12409   Suc. Belenes     2       2     6     2    4     4
## 12410   Suc. Belenes     3      NA     3     6    3     6
## 12411   Suc. Belenes    NA      NA     3     5   NA    NA
## 12412   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12413   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12414   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12415   Suc. Belenes     1       1     1     1    1     1
## 12416   Suc. Belenes     2       2     2     1    2     3
## 12417   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12418   Suc. Belenes    NA       1     1    NA    2     1
## 12419   Suc. Belenes    NA       2     1    NA   NA     1
## 12420   Suc. Belenes     8       6     3     6    6     6
## 12421   Suc. Belenes     1      NA    NA    NA   NA    NA
## 12422   Suc. Belenes    NA      NA    NA     1   NA    NA
## 12423   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12424   Suc. Belenes     8       6     6     8    6     8
## 12425   Suc. Belenes     3       3     3     3    3     6
## 12426   Suc. Belenes     6       6     8    11    8     8
## 12427   Suc. Belenes     8       4     8     4    6     6
## 12428   Suc. Belenes     1       1    NA    NA   NA     1
## 12429   Suc. Belenes     1      NA     0     0   NA     0
## 12430   Suc. Belenes    NA       2     2     2    2    NA
## 12431   Suc. Belenes     2      NA    NA     2   NA     2
## 12432   Suc. Belenes     1      NA     2    NA    1    NA
## 12433   Suc. Belenes    11      13    11    11   13    17
## 12434   Suc. Belenes     5       5     5     3    5     8
## 12435   Suc. Belenes     6       6     6    10    3    10
## 12436   Suc. Belenes     3       6     6     6    6    10
## 12437   Suc. Belenes     3       3     3     5    5     5
## 12438   Suc. Belenes    14      17    17    17   20    17
## 12439   Suc. Belenes     8      NA     6     8    6     3
## 12440   Suc. Belenes    39      32    28    35   32    39
## 12441   Suc. Belenes    92      46    77    95   92   102
## 12442   Suc. Belenes     8      13    13    15   17    17
## 12443   Suc. Belenes    17      13    15    19   23    25
## 12444   Suc. Belenes     3       3     5     5    6     6
## 12445   Suc. Belenes     2       2     3     2    3     3
## 12446   Suc. Belenes     2       2     2     2    1     2
## 12447   Suc. Belenes    NA       1     1    NA   NA    NA
## 12448   Suc. Belenes    NA      NA     1     3    3     1
## 12449   Suc. Belenes     1       1     1     1    2     1
## 12450   Suc. Belenes     1       1     1     1    3     1
## 12451   Suc. Belenes     1       1     1     1    1     1
## 12452   Suc. Belenes     1       1     1     1    1     1
## 12453   Suc. Belenes     4       4     3     2    2     2
## 12454   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12455   Suc. Belenes    NA      NA    NA     1   NA    NA
## 12456   Suc. Belenes     0      NA    NA    NA   NA    NA
## 12457   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12458   Suc. Belenes    NA      NA     1    NA    1     1
## 12459   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12460   Suc. Belenes    NA      NA     0    NA   NA     1
## 12461   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12462   Suc. Belenes     1       1     2     1    1     1
## 12463   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12464   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12465   Suc. Belenes    NA      NA     0    NA    0    NA
## 12466   Suc. Belenes    NA      NA     2    NA   NA    NA
## 12467   Suc. Belenes     3       1     3     3    2     3
## 12468   Suc. Belenes    NA       0    NA    NA   NA    NA
## 12469   Suc. Belenes     1       1     2     1    1     1
## 12470   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12471   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12472   Suc. Belenes    NA      NA    NA    NA    0    NA
## 12473   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12474   Suc. Belenes    NA       0    NA    NA   NA    NA
## 12475   Suc. Belenes     1       1     2     1    1     1
## 12476   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12477   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12478   Suc. Belenes    NA      NA    NA    NA    0    NA
## 12479   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12480   Suc. Belenes     1       1     1     1    1     3
## 12481   Suc. Belenes     6       6    NA     8    6     6
## 12482   Suc. Belenes     0      NA    NA    NA   NA    NA
## 12483   Suc. Belenes     1      NA     1     1   NA     1
## 12484   Suc. Belenes    NA       0    NA    NA   NA    NA
## 12485   Suc. Belenes     2      NA    NA    NA   NA    NA
## 12486   Suc. Belenes     1       1     2     1    1     1
## 12487   Suc. Belenes    NA      NA     3     3    3     3
## 12488   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12489   Suc. Belenes    NA      NA    NA     0    0    NA
## 12490   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12491   Suc. Belenes     3       1     2     3    2     1
## 12492   Suc. Belenes    NA       0    NA    NA   NA    NA
## 12493   Suc. Belenes     6       2     2     2    4     4
## 12494   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12495   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12496   Suc. Belenes     2      11     4     2    2     2
## 12497   Suc. Belenes     3       3     3     3    3     6
## 12498   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12499   Suc. Belenes    NA      15    NA    NA   NA    NA
## 12500   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12501   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12502   Suc. Belenes     4       2     1     4    4     6
## 12503   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12504   Suc. Belenes     1       1     1     1    1     2
## 12505   Suc. Belenes    NA       1     2     1    1     1
## 12506   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12507   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12508   Suc. Belenes     1      NA    NA    NA   NA    NA
## 12509   Suc. Belenes     6       2     2     4    2     4
## 12510   Suc. Belenes     4      11    NA    NA    2    NA
## 12511   Suc. Belenes     1      NA    NA    NA   NA     1
## 12512   Suc. Belenes    NA      NA    NA    NA   NA     6
## 12513   Suc. Belenes    26      24    18    24   18    11
## 12514   Suc. Belenes    NA      NA    NA    NA   NA    10
## 12515   Suc. Belenes     3      10   111     6   10    44
## 12516   Suc. Belenes    NA      NA    NA     2   NA    NA
## 12517   Suc. Belenes    12      27     8    15   11    12
## 12518   Suc. Belenes    NA      NA    NA     2   NA    NA
## 12519   Suc. Belenes    NA      NA    NA    17   NA    NA
## 12520   Suc. Belenes    NA      14    21    18   21    NA
## 12521   Suc. Belenes    42     109   169    28  296    18
## 12522   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12523   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12524   Suc. Belenes    11      27    25    30   80    NA
## 12525   Suc. Belenes    70      87   120    49  182    30
## 12526   Suc. Belenes     7       5    11     6    9     6
## 12527   Suc. Belenes    10      10    10     4   14     8
## 12528   Suc. Belenes    NA       2     5     2    2    NA
## 12529   Suc. Belenes     1       1     1     1    1     2
## 12530   Suc. Belenes    NA      NA    NA     1   NA    NA
## 12531   Suc. Belenes    NA       0    NA    NA   NA    NA
## 12532   Suc. Belenes     1       2     0     0    0     0
## 12533   Suc. Belenes     2      NA     1     1    1    NA
## 12534   Suc. Belenes     2       2     2    NA   NA    NA
## 12535   Suc. Belenes     1      NA    NA    NA   NA    NA
## 12536   Suc. Belenes     0      NA     0     0    0     1
## 12537   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12538   Suc. Belenes     0       0     0     0    0     0
## 12539   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12540   Suc. Belenes    NA      NA    NA    NA   NA     3
## 12541   Suc. Belenes     3       6     3     3    6    NA
## 12542   Suc. Belenes     0       2     3     2    1     1
## 12543   Suc. Belenes     1       1     9    NA    1     1
## 12544   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12545   Suc. Belenes    NA      NA     0    NA   NA    NA
## 12546   Suc. Belenes    NA      NA    NA    NA   NA     3
## 12547   Suc. Belenes    NA       1    NA    NA    1    NA
## 12548   Suc. Belenes    NA      NA     0     0    0    NA
## 12549   Suc. Belenes     1       1     1    NA    1     1
## 12550   Suc. Belenes    NA       1    NA    NA    1    NA
## 12551   Suc. Belenes    NA      NA     0     0   NA    NA
## 12552   Suc. Belenes     1       1     1     2    1     1
## 12553   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12554   Suc. Belenes    NA      NA    NA    NA   NA     3
## 12555   Suc. Belenes    NA       6     3    NA    3    NA
## 12556   Suc. Belenes    NA      NA     4    NA    4    NA
## 12557   Suc. Belenes    NA      NA     0    NA   NA    NA
## 12558   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12559   Suc. Belenes    NA      NA    NA    NA   NA     3
## 12560   Suc. Belenes    NA      NA    NA     2   NA    NA
## 12561   Suc. Belenes    NA      12     3     3    6     3
## 12562   Suc. Belenes    NA       0     1     1    1     1
## 12563   Suc. Belenes     1       1     1    NA    5     1
## 12564   Suc. Belenes    NA       8    NA    NA   NA     1
## 12565   Suc. Belenes    NA      NA     0    NA   NA    NA
## 12566   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12567   Suc. Belenes     1       1     1     1    3     3
## 12568   Suc. Belenes    NA      NA    NA    NA   NA     0
## 12569   Suc. Belenes    NA      NA    NA    NA    1    NA
## 12570   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12571   Suc. Belenes    13      19    15    11   17    19
## 12572   Suc. Belenes    10      16    10    16   22    22
## 12573   Suc. Belenes     5       8     3     8    8    13
## 12574   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12575   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12576   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12577   Suc. Belenes     0      NA    NA     0   NA     1
## 12578   Suc. Belenes     1       3    NA    NA   NA    NA
## 12579   Suc. Belenes     1       2     1     1    1     2
## 12580   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12581   Suc. Belenes    NA       1     1    NA   NA    NA
## 12582   Suc. Belenes    NA      NA    NA     2   NA    NA
## 12583   Suc. Belenes    NA       2     1    NA   NA    NA
## 12584   Suc. Belenes     6      NA     3     3   NA     3
## 12585   Suc. Belenes    NA       2     2    NA   NA    NA
## 12586   Suc. Belenes    NA      NA    NA    NA    1     2
## 12587   Suc. Belenes     2       2     4     4    4     2
## 12588   Suc. Belenes     1      NA    NA    NA    1     1
## 12589   Suc. Belenes    32      38    32    38   30    42
## 12590   Suc. Belenes    37      37    45    45   42    37
## 12591   Suc. Belenes     8      11    14     6   11    14
## 12592   Suc. Belenes     7       8    14    14   10    10
## 12593   Suc. Belenes    30      27    30    32   30    32
## 12594   Suc. Belenes     3       3     4     4    3     4
## 12595   Suc. Belenes     3       3     5     3    3     6
## 12596   Suc. Belenes    NA       2     2     4    8    11
## 12597   Suc. Belenes    NA       6     6     6    8    11
## 12598   Suc. Belenes     2       6     6     6    8     6
## 12599   Suc. Belenes    NA       1    NA     1   NA     2
## 12600   Suc. Belenes    40      38    42    42   46    49
## 12601   Suc. Belenes     8       8     5    13   11     8
## 12602   Suc. Belenes    NA      NA    NA    NA   NA     3
## 12603   Suc. Belenes     3       3     3    NA    3     3
## 12604   Suc. Belenes     9       3     2    NA   NA    NA
## 12605   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12606   Suc. Belenes    25      31    37    45   39    48
## 12607   Suc. Belenes     8       3    17    11   23    23
## 12608   Suc. Belenes    42      53    49    67   56    56
## 12609   Suc. Belenes    32      35    46    49   39    49
## 12610   Suc. Belenes    15      17    25    32   24     5
## 12611   Suc. Belenes    NA      NA    NA    NA   NA    19
## 12612   Suc. Belenes    40      42    53    57   51    51
## 12613   Suc. Belenes   108      70    80    82   63    57
## 12614   Suc. Belenes    15      16    18    16   14    17
## 12615   Suc. Belenes     8       6     8     9    9     9
## 12616   Suc. Belenes     2       4     8     6    6     2
## 12617   Suc. Belenes     5       8     7     7    6     6
## 12618   Suc. Belenes    NA       1     1    NA   NA    NA
## 12619   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12620   Suc. Belenes     1      NA    NA    NA   NA    NA
## 12621   Suc. Belenes     4       1    NA     1   NA     1
## 12622   Suc. Belenes     2       1     1     1   NA    NA
## 12623   Suc. Belenes     1       2    NA     1   NA    NA
## 12624   Suc. Belenes     2       3    NA     2   NA     3
## 12625   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12626   Suc. Belenes    NA      NA     2     2   NA     2
## 12627   Suc. Belenes     1       0    NA    NA   NA     1
## 12628   Suc. Belenes     1       1    NA     1   NA    NA
## 12629   Suc. Belenes    NA       2     3     2    1    NA
## 12630   Suc. Belenes     1      NA    NA     3   NA    NA
## 12631   Suc. Belenes     2       3     2     2   NA    NA
## 12632   Suc. Belenes     0       0     0    NA   NA    NA
## 12633   Suc. Belenes     8       7     8     6    8     4
## 12634   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12635   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12636   Suc. Belenes     2       4     6     6    4     4
## 12637   Suc. Belenes    NA       3     3    NA   NA     3
## 12638   Suc. Belenes     0      NA    NA     0   NA     1
## 12639   Suc. Belenes    NA      NA    NA     1   NA    NA
## 12640   Suc. Belenes    NA      NA     2    NA   NA    NA
## 12641   Suc. Belenes     4       1     3     6    5     4
## 12642   Suc. Belenes     3      NA     3    NA   NA     3
## 12643   Suc. Belenes     0      NA    NA     0   NA     1
## 12644   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12645   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12646   Suc. Belenes    NA      NA    NA     1   NA    NA
## 12647   Suc. Belenes     2       4     2     4    6     4
## 12648   Suc. Belenes    NA       3     3     3    3     3
## 12649   Suc. Belenes     0      NA    NA     0   NA     1
## 12650   Suc. Belenes    NA      NA    NA     1   NA    NA
## 12651   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12652   Suc. Belenes     6       3     3     6    6     4
## 12653   Suc. Belenes     5       6     4     4    1     4
## 12654   Suc. Belenes    NA       6     3     3    3     3
## 12655   Suc. Belenes    NA       1    NA    NA   NA    NA
## 12656   Suc. Belenes     0      NA     0    NA    2    NA
## 12657   Suc. Belenes     2       4     2     4    2     2
## 12658   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12659   Suc. Belenes     8       6     6     8    8     8
## 12660   Suc. Belenes     3       3     6     6    6     6
## 12661   Suc. Belenes     0      NA    NA     0   NA     1
## 12662   Suc. Belenes    NA       0    NA     1   NA    NA
## 12663   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12664   Suc. Belenes     4       8     8     9    8     7
## 12665   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12666   Suc. Belenes     4       4     2     2   NA     2
## 12667   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12668   Suc. Belenes    NA      NA    NA    NA   NA     8
## 12669   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12670   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12671   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12672   Suc. Belenes    NA      NA    NA    NA   NA     4
## 12673   Suc. Belenes    NA      NA    NA    NA   NA     3
## 12674   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12675   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12676   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12677   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12678   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12679   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12680   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12681   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12682   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12683   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12684   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12685   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12686   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12687   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12688   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12689   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12690   Suc. Belenes    NA      NA    NA    NA   NA     4
## 12691   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12692   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12693   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12694   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12695   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12696   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12697   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12698   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12699   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12700   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12701   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12702   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12703   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12704   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12705   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12706   Suc. Belenes    NA      NA    NA    NA   NA     6
## 12707   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12708   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12709   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12710   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12711   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12712   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12713   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12714   Suc. Belenes     4       8    11     6    2     2
## 12715   Suc. Belenes     6      10     3    10    3     3
## 12716   Suc. Belenes     3       5     3     3   NA    NA
## 12717   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12718   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12719   Suc. Belenes     1       1    NA     1    1     1
## 12720   Suc. Belenes     1       1     0     0   NA    NA
## 12721   Suc. Belenes     1       1     1     2    2     2
## 12722   Suc. Belenes     2       2     1     2    2     2
## 12723   Suc. Belenes    NA       0     0     1    0     2
## 12724   Suc. Belenes    NA       1     1     1    2     1
## 12725   Suc. Belenes     2      NA    NA    NA   NA    NA
## 12726   Suc. Belenes     2       2     1     2    2     2
## 12727   Suc. Belenes    NA       3    NA     3    3     8
## 12728   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12729   Suc. Belenes    NA       1     1    NA    1    NA
## 12730   Suc. Belenes    NA      NA    NA    NA   NA     3
## 12731   Suc. Belenes     1      NA    NA    NA   NA    NA
## 12732   Suc. Belenes     4       6     6     8    2     6
## 12733   Suc. Belenes     2      NA     6     2    4     4
## 12734   Suc. Belenes     1      NA    NA    NA   NA    NA
## 12735   Suc. Belenes     8       8     6     8    8     8
## 12736   Suc. Belenes    17      17    11    17   14     8
## 12737   Suc. Belenes    NA      NA     2    NA    2     2
## 12738   Suc. Belenes    17      15    21    21   34    34
## 12739   Suc. Belenes    NA      NA    NA     6   NA    NA
## 12740   Suc. Belenes     3       3     3     3    3     3
## 12741   Suc. Belenes     3       9    12    12   11    12
## 12742   Suc. Belenes     3       2     3     3    5     5
## 12743   Suc. Belenes    NA      NA    NA     1    3    NA
## 12744   Suc. Belenes    11       8    17    14   25    23
## 12745   Suc. Belenes    14      21    32    35   32    28
## 12746   Suc. Belenes    18      14    14    32   32    28
## 12747   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12748   Suc. Belenes     4       6    17    19   15    11
## 12749   Suc. Belenes    21      21    34    49   78    89
## 12750   Suc. Belenes     3       3     3     3    6     6
## 12751   Suc. Belenes     6       6     8     9    9     9
## 12752   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12753   Suc. Belenes     3       4     3     3    5     4
## 12754   Suc. Belenes    NA       1     1    NA   NA    NA
## 12755   Suc. Belenes     2       1     1     1    2     4
## 12756   Suc. Belenes     2       1     1     2    1     2
## 12757   Suc. Belenes     1      NA     1     1    1     3
## 12758   Suc. Belenes     2       1     1     2    1     3
## 12759   Suc. Belenes     1      NA    NA    NA    0    NA
## 12760   Suc. Belenes     3       3     2     2    2     5
## 12761   Suc. Belenes     4       2     2     3    4     7
## 12762   Suc. Belenes    NA      NA    NA    NA   NA     0
## 12763   Suc. Belenes    NA       0     0    NA    1     1
## 12764   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12765   Suc. Belenes    NA       0     0     0    0     0
## 12766   Suc. Belenes     1       1    NA     1    1     1
## 12767   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12768   Suc. Belenes    NA       6     6     3    6     6
## 12769   Suc. Belenes     0      NA    NA    NA   NA    NA
## 12770   Suc. Belenes     2       2    NA    NA    1    NA
## 12771   Suc. Belenes     2       1     4     3    7     6
## 12772   Suc. Belenes    NA       0     0     0    0     0
## 12773   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12774   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12775   Suc. Belenes    NA      NA    NA    NA    1    NA
## 12776   Suc. Belenes    NA       0     0     0    0     0
## 12777   Suc. Belenes    NA      NA    NA     3   NA    NA
## 12778   Suc. Belenes    NA       0    NA    NA   NA    NA
## 12779   Suc. Belenes    NA      NA    NA    NA    1    NA
## 12780   Suc. Belenes     1       1     3     1    3     3
## 12781   Suc. Belenes     1      NA     1     1    1     4
## 12782   Suc. Belenes     6       8    11     8    8     8
## 12783   Suc. Belenes    NA      NA    NA     2   NA    NA
## 12784   Suc. Belenes    NA       0     0     0    0     0
## 12785   Suc. Belenes     3      NA     3    NA   NA     6
## 12786   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12787   Suc. Belenes    NA      NA     0     0    0     0
## 12788   Suc. Belenes    NA      NA     2    NA    1    NA
## 12789   Suc. Belenes     4       1     4     3    8     7
## 12790   Suc. Belenes    NA       0     0     0    0     0
## 12791   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12792   Suc. Belenes     2       1     4     1    3     7
## 12793   Suc. Belenes    NA      NA    NA    NA   NA     0
## 12794   Suc. Belenes    NA      NA    NA    NA   NA     0
## 12795   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12796   Suc. Belenes    NA       2    NA     2   11    17
## 12797   Suc. Belenes    NA       3    NA    10   16    19
## 12798   Suc. Belenes     7       4     7     7   11     7
## 12799   Suc. Belenes    NA      NA     3    NA   10     5
## 12800   Suc. Belenes     7       5     4    10    5     4
## 12801   Suc. Belenes     8      13     8    13   13    15
## 12802   Suc. Belenes     5       5     8     5   10     8
## 12803   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12804   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12805   Suc. Belenes     3       3    NA    NA    3    NA
## 12806   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12807   Suc. Belenes    46      51    34    53   46    59
## 12808   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12809   Suc. Belenes    34      31    42    14   51    39
## 12810   Suc. Belenes    14      14    14    25   22    14
## 12811   Suc. Belenes    NA      NA    NA    68  108    91
## 12812   Suc. Belenes    21      27    10    11   27    25
## 12813   Suc. Belenes     3       3     8     8   17     9
## 12814   Suc. Belenes     2       2     2     3    1     2
## 12815   Suc. Belenes    13      11    11    13   11    13
## 12816   Suc. Belenes    NA      NA    NA    NA   NA     6
## 12817   Suc. Belenes     8      21    21    30   34    30
## 12818   Suc. Belenes     4       4     4     7    6     5
## 12819   Suc. Belenes    97     110    91   114  137   106
## 12820   Suc. Belenes    71      69    32   103  132    95
## 12821   Suc. Belenes    NA      NA    NA    NA   NA    32
## 12822   Suc. Belenes   371     342   327   501  453   514
## 12823   Suc. Belenes   209     189   239   224  270   191
## 12824   Suc. Belenes    72      38    63    77  113   138
## 12825   Suc. Belenes    68     104   138   192  192   141
## 12826   Suc. Belenes    65      70    37   104   51   104
## 12827   Suc. Belenes   303     299   222   296  363   377
## 12828   Suc. Belenes    NA     898   775    NA   NA    NA
## 12829   Suc. Belenes    10      14    10    10    2    NA
## 12830   Suc. Belenes   275     264   224   256  427   423
## 12831   Suc. Belenes    NA      NA    NA    NA   42   169
## 12832   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12833   Suc. Belenes    NA      NA    NA     1   NA    NA
## 12834   Suc. Belenes    69      63    54    66   66    60
## 12835   Suc. Belenes   107     120   124   152  207   165
## 12836   Suc. Belenes    39      32    44    45   48    47
## 12837   Suc. Belenes    66      60    64    76  122    98
## 12838   Suc. Belenes    35      36     5    NA   NA    NA
## 12839   Suc. Belenes    NA       3    NA    NA   NA    NA
## 12840   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12841   Suc. Belenes     4       3    NA    NA   NA    NA
## 12842   Suc. Belenes     4       2     2     4    4     6
## 12843   Suc. Belenes    NA      NA    NA    NA    0     1
## 12844   Suc. Belenes    NA       5     8     5   10     5
## 12845   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12846   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12847   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12848   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12849   Suc. Belenes    NA      NA    NA    NA    8     2
## 12850   Suc. Belenes    23      34    28    23   39    34
## 12851   Suc. Belenes     9       3     4     8    8     9
## 12852   Suc. Belenes    30      25    22    36   44    34
## 12853   Suc. Belenes     6       4     4     8    6     4
## 12854   Suc. Belenes    59      70    53    74   72    72
## 12855   Suc. Belenes    10       8    30     3   10     8
## 12856   Suc. Belenes    NA       1     0     1    2    NA
## 12857   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12858   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12859   Suc. Belenes     3       3     3     3   NA    NA
## 12860   Suc. Belenes    NA      NA    NA    NA    1    NA
## 12861   Suc. Belenes     3       5     7     3    7     3
## 12862   Suc. Belenes    19      17    25    23   27    23
## 12863   Suc. Belenes    NA      NA    25    NA   NA    NA
## 12864   Suc. Belenes    NA       1    NA     1    2    NA
## 12865   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12866   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12867   Suc. Belenes    NA      NA    NA    NA    5     2
## 12868   Suc. Belenes    20      14    20     8   28    14
## 12869   Suc. Belenes     9       3     3     5    7     4
## 12870   Suc. Belenes    34      25    24    37   42    32
## 12871   Suc. Belenes     6       4     4     6    6     4
## 12872   Suc. Belenes    53      59    42    72   76    70
## 12873   Suc. Belenes     8      NA    30     5   10     3
## 12874   Suc. Belenes    NA      NA     3    NA   NA    NA
## 12875   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12876   Suc. Belenes     8      14     6     6    3    14
## 12877   Suc. Belenes    NA      NA    NA     2   NA    NA
## 12878   Suc. Belenes    19      23    17    23   23    27
## 12879   Suc. Belenes    NA      NA    25    NA   NA     3
## 12880   Suc. Belenes    NA       1     0     1    2    NA
## 12881   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12882   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12883   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12884   Suc. Belenes    NA      NA    NA    NA    8    NA
## 12885   Suc. Belenes    25      23    31    31   39    34
## 12886   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12887   Suc. Belenes    12       3     3     8   10     4
## 12888   Suc. Belenes    34      34    42    36   51    36
## 12889   Suc. Belenes     6       6     6     8   11    15
## 12890   Suc. Belenes    63      74    74    89   76    93
## 12891   Suc. Belenes    15       8    56     8   13    13
## 12892   Suc. Belenes    NA       1     0     1    2    NA
## 12893   Suc. Belenes     1       3    NA    NA   NA     1
## 12894   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12895   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12896   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12897   Suc. Belenes     2       6    NA     2    2     2
## 12898   Suc. Belenes     6       6    NA     3    3     3
## 12899   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12900   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12901   Suc. Belenes     0       0    NA     0   NA     0
## 12902   Suc. Belenes    NA       2     1    NA   NA    NA
## 12903   Suc. Belenes    NA      NA     0     1    3     1
## 12904   Suc. Belenes    NA      NA    NA    NA   NA     0
## 12905   Suc. Belenes     1       1    NA     1    1     1
## 12906   Suc. Belenes     2       4    NA    NA   NA    NA
## 12907   Suc. Belenes    NA       2    NA     1    1     1
## 12908   Suc. Belenes     3       3    NA     3    3    NA
## 12909   Suc. Belenes    NA       1    NA    NA    1     1
## 12910   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12911   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12912   Suc. Belenes     8       2     6     6    8    11
## 12913   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12914   Suc. Belenes     2      NA    NA    NA   NA    NA
## 12915   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12916   Suc. Belenes    16      18    29    13   21    13
## 12917   Suc. Belenes    NA      NA    NA    NA   NA     6
## 12918   Suc. Belenes    54      86    57   181   41   146
## 12919   Suc. Belenes     2       5     2     3    5     3
## 12920   Suc. Belenes    NA      NA     2    NA   NA    NA
## 12921   Suc. Belenes     3       3    NA     6   NA    NA
## 12922   Suc. Belenes    NA      NA    NA     4    7     4
## 12923   Suc. Belenes   151     197   183   116  299   271
## 12924   Suc. Belenes     4       2     2     2    4    NA
## 12925   Suc. Belenes     8       4     6     4    6     4
## 12926   Suc. Belenes    80      89    93   209   80   125
## 12927   Suc. Belenes     1       1     1     2    1     1
## 12928   Suc. Belenes     2       2    NA     3    3    NA
## 12929   Suc. Belenes     2      NA     2     4    4     2
## 12930   Suc. Belenes     2       1     1     2    2     1
## 12931   Suc. Belenes     1       1    NA     1    1     1
## 12932   Suc. Belenes    NA       1    NA    NA   NA    NA
## 12933   Suc. Belenes     1       1    NA    NA   NA    NA
## 12934   Suc. Belenes     1       0     0     0    0     0
## 12935   Suc. Belenes     2      NA     1     1    3     3
## 12936   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12937   Suc. Belenes    NA       1    NA     0    1     1
## 12938   Suc. Belenes    NA       1    NA    NA   NA    NA
## 12939   Suc. Belenes     0       0     0     0    0     0
## 12940   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12941   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12942   Suc. Belenes     2      NA    NA    NA    2     2
## 12943   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12944   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12945   Suc. Belenes     3       3     3    NA    3     1
## 12946   Suc. Belenes     0       0    NA     0   NA     0
## 12947   Suc. Belenes    NA       0     0     4    3     4
## 12948   Suc. Belenes    NA       1     4     1    1    NA
## 12949   Suc. Belenes    NA       1     1     1    1     1
## 12950   Suc. Belenes    NA       0     0    NA   NA    NA
## 12951   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12952   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12953   Suc. Belenes    NA      NA    NA    NA    3     4
## 12954   Suc. Belenes     0       0    NA     0   NA     0
## 12955   Suc. Belenes    NA       0     0     1    0     3
## 12956   Suc. Belenes    NA       1    NA     1    1     2
## 12957   Suc. Belenes    NA       1    NA     1    1     1
## 12958   Suc. Belenes    NA       0     0    NA   NA    NA
## 12959   Suc. Belenes    NA      NA    NA    NA    2     2
## 12960   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12961   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12962   Suc. Belenes     0       0    NA     0   NA     0
## 12963   Suc. Belenes    NA       0    NA     1    3     2
## 12964   Suc. Belenes    NA       1     2     1    1    NA
## 12965   Suc. Belenes    NA       1    NA     1    1     1
## 12966   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12967   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12968   Suc. Belenes    NA       6    NA    NA    3    NA
## 12969   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12970   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12971   Suc. Belenes    NA       0     0    NA   NA    NA
## 12972   Suc. Belenes    NA       2     4    NA    4     2
## 12973   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12974   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12975   Suc. Belenes    NA       3    NA     6    8     1
## 12976   Suc. Belenes     0       0    NA     0   NA     0
## 12977   Suc. Belenes     2       0     0     1    3     2
## 12978   Suc. Belenes     2       1    NA     1    1    NA
## 12979   Suc. Belenes    NA       2     1     1    1     1
## 12980   Suc. Belenes    NA       0     0    NA   NA    NA
## 12981   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12982   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12983   Suc. Belenes    NA      NA    NA    NA    2    NA
## 12984   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12985   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12986   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12987   Suc. Belenes    13      NA    NA    NA   NA    NA
## 12988   Suc. Belenes     3      NA    NA    NA   NA    NA
## 12989   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12990   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12991   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12992   Suc. Belenes     1       1     1     1    1     1
## 12993   Suc. Belenes     3       2     1     2    3     2
## 12994   Suc. Belenes    NA      NA    NA    NA   NA     0
## 12995   Suc. Belenes     2      NA    NA    NA   NA     1
## 12996   Suc. Belenes    NA      NA     2    NA   NA    NA
## 12997   Suc. Belenes    NA      NA     2     1   NA    NA
## 12998   Suc. Belenes    NA       3     3    NA    3     3
## 12999   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13000   Suc. Belenes    NA       0     0     0    0     0
## 13001   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13002   Suc. Belenes    NA      NA    NA     1    1    NA
## 13003   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13004   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13005   Suc. Belenes     6       2     4     4    6     6
## 13006   Suc. Belenes    14      15     8    15   17    12
## 13007   Suc. Belenes     6       6    11    14   11     3
## 13008   Suc. Belenes    NA       4    NA    NA   NA    NA
## 13009   Suc. Belenes     2      NA    NA     2    2    NA
## 13010   Suc. Belenes    11      19     8    15    8    11
## 13011   Suc. Belenes     1       5     2     3    4     5
## 13012   Suc. Belenes     2       2     2    NA    2     2
## 13013   Suc. Belenes    21      15    11    17   23    19
## 13014   Suc. Belenes     8       3     3     3    5     3
## 13015   Suc. Belenes     6      NA     3     3    3    10
## 13016   Suc. Belenes     3      NA     6     3    6     6
## 13017   Suc. Belenes     6       3     3     5    8    24
## 13018   Suc. Belenes     6       6     6     8   11     8
## 13019   Suc. Belenes    20      14     6    30   17    17
## 13020   Suc. Belenes    32      32    18    67   42    46
## 13021   Suc. Belenes    28      25    28    18    4     7
## 13022   Suc. Belenes     3       2     5     2    3    NA
## 13023   Suc. Belenes    40      85    23    32   34    51
## 13024   Suc. Belenes    76      85    72   129  110   169
## 13025   Suc. Belenes     3       3     3     3    9     3
## 13026   Suc. Belenes     7       5     4     4    5     3
## 13027   Suc. Belenes     9       9     3     6    6     5
## 13028   Suc. Belenes     6       2     6     6    6     6
## 13029   Suc. Belenes     4       2     2     3    5     3
## 13030   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13031   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13032   Suc. Belenes    NA      NA    NA    NA    1     1
## 13033   Suc. Belenes     1      NA    NA    NA    1     1
## 13034   Suc. Belenes     3       2    NA     4    1     3
## 13035   Suc. Belenes     2      NA    NA     2   NA    NA
## 13036   Suc. Belenes     1       1     1     1    1     1
## 13037   Suc. Belenes     3       3     1     3    2     3
## 13038   Suc. Belenes    NA      NA    NA    NA   NA     0
## 13039   Suc. Belenes    NA       2    NA    NA    4    NA
## 13040   Suc. Belenes     1       0     0     0    1    NA
## 13041   Suc. Belenes     1       1     2    NA   NA    NA
## 13042   Suc. Belenes     2       1     6    NA   NA    NA
## 13043   Suc. Belenes    NA       1     5    NA   NA    NA
## 13044   Suc. Belenes     3       2     6     2   NA    NA
## 13045   Suc. Belenes    NA       1     1     1    1    NA
## 13046   Suc. Belenes     1       1    NA    NA    1     1
## 13047   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13048   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13049   Suc. Belenes    NA      NA    NA     3    3    NA
## 13050   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13051   Suc. Belenes     4       4    NA     4    6     2
## 13052   Suc. Belenes     1       2     1     1    2     2
## 13053   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13054   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13055   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13056   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13057   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13058   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13059   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13060   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13061   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13062   Suc. Belenes    NA      NA    NA    NA   NA     3
## 13063   Suc. Belenes     3      NA    NA    NA   NA    NA
## 13064   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13065   Suc. Belenes     8       2    NA     6    6     4
## 13066   Suc. Belenes     3       1    NA     3    1    NA
## 13067   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13068   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13069   Suc. Belenes    NA      NA    NA    NA   NA     3
## 13070   Suc. Belenes    NA       3     6    NA   NA    NA
## 13071   Suc. Belenes     0      NA     2    NA    0    NA
## 13072   Suc. Belenes     8       4     2     6    8     4
## 13073   Suc. Belenes     2       3    10     3    4     3
## 13074   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13075   Suc. Belenes    NA       4     1     1    4    NA
## 13076   Suc. Belenes    NA      NA    NA    NA   NA     0
## 13077   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13078   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13079   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13080   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13081   Suc. Belenes     2       2    13     2    2     2
## 13082   Suc. Belenes    NA       3     6     3    3     3
## 13083   Suc. Belenes    NA       5    NA    NA   NA    NA
## 13084   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13085   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13086   Suc. Belenes     0       1    NA    NA   NA    NA
## 13087   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13088   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13089   Suc. Belenes    12      NA    10     4    7     7
## 13090   Suc. Belenes    NA      NA    NA    NA   NA     0
## 13091   Suc. Belenes     2       1     2     1    1    NA
## 13092   Suc. Belenes    NA      NA     2    NA    2     4
## 13093   Suc. Belenes    NA       2     1     2    2     1
## 13094   Suc. Belenes    NA      NA    11    34   NA    28
## 13095   Suc. Belenes    NA      NA     0    NA   NA    NA
## 13096   Suc. Belenes    NA      NA     1     2    2    NA
## 13097   Suc. Belenes    NA      NA    NA    NA    1     3
## 13098   Suc. Belenes     2       2    NA    NA   NA    NA
## 13099   Suc. Belenes    11      32    NA    NA   13    40
## 13100   Suc. Belenes    NA      NA    NA    NA    2     2
## 13101   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13102   Suc. Belenes    14      11    21    11   18    21
## 13103   Suc. Belenes    13      25    27    NA   38    25
## 13104   Suc. Belenes     1       2     3     2    5     2
## 13105   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13106   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13107   Suc. Belenes     2       4     4     6    2     6
## 13108   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13109   Suc. Belenes    NA       2    17    13   23    51
## 13110   Suc. Belenes    32      58    42    32   42     5
## 13111   Suc. Belenes    NA      NA    NA    NA   NA    41
## 13112   Suc. Belenes    10      13    13    10   16    19
## 13113   Suc. Belenes     6      41    21    29   39    44
## 13114   Suc. Belenes     6      NA    NA    NA    3     5
## 13115   Suc. Belenes    NA      NA    NA     6   NA    NA
## 13116   Suc. Belenes     8      11     8     6   11     6
## 13117   Suc. Belenes    32      77    95    42   85   116
## 13118   Suc. Belenes   240     208   356   151  254   257
## 13119   Suc. Belenes    15       2     8    NA   NA    NA
## 13120   Suc. Belenes     6      36    68    25   51    27
## 13121   Suc. Belenes   104     144   171   135  123   213
## 13122   Suc. Belenes     2      NA    NA    NA   NA    NA
## 13123   Suc. Belenes     8      19    NA    17   15    13
## 13124   Suc. Belenes     2       3     3     5    6     8
## 13125   Suc. Belenes    NA      NA     4     4    4     6
## 13126   Suc. Belenes     5      17    NA    NA    5     3
## 13127   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13128   Suc. Belenes     1       2     1     1    1     1
## 13129   Suc. Belenes    NA      NA    NA     1    1    NA
## 13130   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13131   Suc. Belenes     2       0     0     0    0     0
## 13132   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13133   Suc. Belenes    NA       0    23    NA   NA     4
## 13134   Suc. Belenes     3      NA     2     1    2     4
## 13135   Suc. Belenes    NA      NA    NA    NA    0     1
## 13136   Suc. Belenes     6      NA     4     4    6     6
## 13137   Suc. Belenes     0       2     3     2    2     2
## 13138   Suc. Belenes    NA       1     4    NA   NA     6
## 13139   Suc. Belenes    NA       1    13     4   NA     4
## 13140   Suc. Belenes     2       1     2     2   NA     6
## 13141   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13142   Suc. Belenes     0       0     0     0    0     1
## 13143   Suc. Belenes     3       3     2     3    4     4
## 13144   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13145   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13146   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13147   Suc. Belenes     0      NA    NA    NA   NA    NA
## 13148   Suc. Belenes     1       1    NA     3    3     3
## 13149   Suc. Belenes     2       3    NA    NA   NA    NA
## 13150   Suc. Belenes     0       1    NA    NA   NA    NA
## 13151   Suc. Belenes    NA       1     1     1    0     2
## 13152   Suc. Belenes     2       5    10    NA    6     2
## 13153   Suc. Belenes     1       1     1     1    1     1
## 13154   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13155   Suc. Belenes     0      NA    NA    NA   NA    NA
## 13156   Suc. Belenes     1       1    NA     3   NA    NA
## 13157   Suc. Belenes    NA       3    NA     2    2    NA
## 13158   Suc. Belenes     0       0    NA    NA   NA    NA
## 13159   Suc. Belenes    NA       0    NA     0   NA     2
## 13160   Suc. Belenes    NA       3     3     2   11    NA
## 13161   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13162   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13163   Suc. Belenes     0      NA    NA    NA   NA    NA
## 13164   Suc. Belenes     1       1    NA    NA   NA     3
## 13165   Suc. Belenes     2       3    NA     2    2    NA
## 13166   Suc. Belenes     0       1    NA    NA   NA    NA
## 13167   Suc. Belenes     0       0     1    NA    0     0
## 13168   Suc. Belenes    NA       3     3    NA   NA    NA
## 13169   Suc. Belenes    NA       1     1     1   NA    NA
## 13170   Suc. Belenes    NA       1     1    NA    1     3
## 13171   Suc. Belenes    NA       3     6     3    6     6
## 13172   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13173   Suc. Belenes    NA       1     3     2   NA     2
## 13174   Suc. Belenes    NA       2     8     2   11    NA
## 13175   Suc. Belenes     1       1     1    NA    1    NA
## 13176   Suc. Belenes     0      NA    NA    NA   NA    NA
## 13177   Suc. Belenes     1       1     3     3    3     8
## 13178   Suc. Belenes     2       3    NA    NA    2    NA
## 13179   Suc. Belenes     0       1    NA    NA   NA    NA
## 13180   Suc. Belenes     0      NA     2     2    0     2
## 13181   Suc. Belenes    NA       5     5     4    4    NA
## 13182   Suc. Belenes     2       1     1     1    3     1
## 13183   Suc. Belenes    NA      NA     1     1   NA    NA
## 13184   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13185   Suc. Belenes     1      NA     6     6    4     5
## 13186   Suc. Belenes    NA       0    NA     2    1    NA
## 13187   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13188   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13189   Suc. Belenes     2      NA    NA     2   NA    NA
## 13190   Suc. Belenes     3      NA    NA    25    3     3
## 13191   Suc. Belenes    NA      NA    NA     3   NA    NA
## 13192   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13193   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13194   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13195   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13196   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13197   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13198   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13199   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13200   Suc. Belenes     2      NA     2    NA   NA    NA
## 13201   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13202   Suc. Belenes    NA      NA     1    NA   NA    NA
## 13203   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13204   Suc. Belenes     4       2     2     4    6     2
## 13205   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13206   Suc. Belenes    21      13     4    25    6     4
## 13207   Suc. Belenes    NA      NA     3    NA   NA    NA
## 13208   Suc. Belenes    NA      NA    NA     1   NA    NA
## 13209   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13210   Suc. Belenes    NA      NA    NA    NA   32    NA
## 13211   Suc. Belenes    13      26    11    61   21    NA
## 13212   Suc. Belenes    NA      NA    NA    NA   NA    63
## 13213   Suc. Belenes     3      51    73   165  127   155
## 13214   Suc. Belenes    14      12    20    75   20     8
## 13215   Suc. Belenes    NA      NA    NA    17    3    NA
## 13216   Suc. Belenes    NA      NA    NA    NA    3    NA
## 13217   Suc. Belenes    NA      NA    85    28  292   313
## 13218   Suc. Belenes   218     268   162   472  623   289
## 13219   Suc. Belenes    NA      NA     2    NA   NA     8
## 13220   Suc. Belenes    NA      NA    NA    NA    2    NA
## 13221   Suc. Belenes    21      27     4    NA   30   137
## 13222   Suc. Belenes   182     201   258   450  446   412
## 13223   Suc. Belenes    NA      NA     5    NA   NA    NA
## 13224   Suc. Belenes     5       3     3    14   18    12
## 13225   Suc. Belenes     6       2     2     5    3     3
## 13226   Suc. Belenes     2       4     6     2    2    NA
## 13227   Suc. Belenes    NA       3     2     2    1    NA
## 13228   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13229   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13230   Suc. Belenes    NA      NA    NA     1   NA    NA
## 13231   Suc. Belenes     4       5    NA    NA   NA    NA
## 13232   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13233   Suc. Belenes     7      NA     2    NA   NA    NA
## 13234   Suc. Belenes    NA       0    NA    NA   NA     0
## 13235   Suc. Belenes     1       5    NA     4   NA     7
## 13236   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13237   Suc. Belenes    NA      NA    NA     4   NA    NA
## 13238   Suc. Belenes     0      NA    NA    NA   NA    NA
## 13239   Suc. Belenes    NA      NA    NA    NA    1     1
## 13240   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13241   Suc. Belenes    NA      NA    NA     2   NA    NA
## 13242   Suc. Belenes    NA      NA    NA    NA   NA    10
## 13243   Suc. Belenes    NA       6    NA     8    4     8
## 13244   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13245   Suc. Belenes     0       2    NA    NA    2     2
## 13246   Suc. Belenes    NA      NA    NA     2   NA    NA
## 13247   Suc. Belenes     1       6     6     5   19     3
## 13248   Suc. Belenes    NA       4    NA     1    1     1
## 13249   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13250   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13251   Suc. Belenes    NA      NA    NA    NA   NA     3
## 13252   Suc. Belenes    NA      NA    NA    14    1    NA
## 13253   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13254   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13255   Suc. Belenes     1       4     4     3    8     1
## 13256   Suc. Belenes    NA      NA    NA     3    3     1
## 13257   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13258   Suc. Belenes    NA      NA    NA     3   NA    NA
## 13259   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13260   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13261   Suc. Belenes    NA      NA    NA    NA   NA     4
## 13262   Suc. Belenes     1       2     2     1    8     1
## 13263   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13264   Suc. Belenes    NA      NA    NA     1    1    NA
## 13265   Suc. Belenes    NA      NA    NA    NA   NA    13
## 13266   Suc. Belenes    NA       3    NA     6    3     6
## 13267   Suc. Belenes    NA       2     2     4   11     2
## 13268   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13269   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13270   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13271   Suc. Belenes    NA      NA    NA    NA   NA    10
## 13272   Suc. Belenes    NA      NA    NA    NA    2    NA
## 13273   Suc. Belenes     3       6     3    51   46    23
## 13274   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13275   Suc. Belenes    NA       6    NA    NA    2     4
## 13276   Suc. Belenes     1       6     4     1   17     3
## 13277   Suc. Belenes    NA       1    NA     1    1     2
## 13278   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13279   Suc. Belenes    NA      NA     1    NA   NA    NA
## 13280   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13281   Suc. Belenes    NA       4     7     2    3     2
## 13282   Suc. Belenes    NA      NA    NA    NA   NA     0
## 13283   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13284   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13285   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13286   Suc. Belenes     4       2    NA    NA    2     4
## 13287   Suc. Belenes     3       3    NA    NA    3     3
## 13288   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13289   Suc. Belenes    NA      NA    NA    NA   NA     2
## 13290   Suc. Belenes    NA      NA    NA     1    1    NA
## 13291   Suc. Belenes     1       4     1     2    4     4
## 13292   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13293   Suc. Belenes    NA       1    NA    NA    1     1
## 13294   Suc. Belenes    NA       2    NA    NA    1     1
## 13295   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13296   Suc. Belenes    NA      NA    NA    NA   NA     0
## 13297   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13298   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13299   Suc. Belenes     2      NA     2     2    2    NA
## 13300   Suc. Belenes    NA      NA    NA     3   NA    NA
## 13301   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13302   Suc. Belenes     4       2    NA    NA    4     2
## 13303   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13304   Suc. Belenes     2      NA    NA    NA   NA    NA
## 13305   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13306   Suc. Belenes    18      18    13    16   18     8
## 13307   Suc. Belenes    NA      NA    NA    NA   NA     6
## 13308   Suc. Belenes    19      54    22    86   22    25
## 13309   Suc. Belenes     6       9     5     8    8     3
## 13310   Suc. Belenes     2      NA    NA    NA   NA     5
## 13311   Suc. Belenes    42      32    25    46   39    25
## 13312   Suc. Belenes   187      77   116   141   74    70
## 13313   Suc. Belenes     6       2     2    NA   NA    NA
## 13314   Suc. Belenes    13       8     8    11   11     8
## 13315   Suc. Belenes    66      78    68    97   49    63
## 13316   Suc. Belenes     3       4     4     6    3     4
## 13317   Suc. Belenes     2       5     3     5    3     2
## 13318   Suc. Belenes    NA       2    NA    NA    2     2
## 13319   Suc. Belenes    NA       1     1     2    1     2
## 13320   Suc. Belenes    NA       1    NA    NA    1     1
## 13321   Suc. Belenes    NA      NA    NA     1    1    NA
## 13322   Suc. Belenes     1      NA    NA     2   NA    NA
## 13323   Suc. Belenes     1       0    NA    NA    0     1
## 13324   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13325   Suc. Belenes     1       1     1     2    2     2
## 13326   Suc. Belenes    NA      NA    NA    NA   NA     2
## 13327   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13328   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13329   Suc. Belenes    NA       0    NA    NA    0     0
## 13330   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13331   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13332   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13333   Suc. Belenes     8       3    NA     6    3    NA
## 13334   Suc. Belenes     0      NA    NA    NA    0    NA
## 13335   Suc. Belenes     4       1     1    NA    5     3
## 13336   Suc. Belenes     1       1     1     1    1     1
## 13337   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13338   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13339   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13340   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13341   Suc. Belenes    NA      NA    NA    NA    1     0
## 13342   Suc. Belenes     2       1     1     2    3     1
## 13343   Suc. Belenes    NA      NA     1     1    1    NA
## 13344   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13345   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13346   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13347   Suc. Belenes    NA       0    NA    NA    0    NA
## 13348   Suc. Belenes     2       1     1    NA    3     3
## 13349   Suc. Belenes    NA      NA     1    NA   NA    NA
## 13350   Suc. Belenes    NA       1     1    NA   NA    NA
## 13351   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13352   Suc. Belenes     6       3    NA     6   NA     3
## 13353   Suc. Belenes    NA      NA    NA    NA   NA     0
## 13354   Suc. Belenes     2       2    NA    NA   NA    NA
## 13355   Suc. Belenes    NA      NA    NA     1    1     1
## 13356   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13357   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13358   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13359   Suc. Belenes     6       6    NA     6   NA    NA
## 13360   Suc. Belenes    NA      NA    NA    NA    0     1
## 13361   Suc. Belenes     2       1     1     2    3     5
## 13362   Suc. Belenes     1       1     3    NA    1     1
## 13363   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13364   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13365   Suc. Belenes    NA      NA    NA     2    1     1
## 13366   Suc. Belenes    NA      NA    NA    NA   NA     0
## 13367   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13368   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13369   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13370   Suc. Belenes     2      15    NA    NA    8    NA
## 13371   Suc. Belenes    29       6    NA    NA    6    NA
## 13372   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13373   Suc. Belenes    NA       0     0     1   NA     3
## 13374   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13375   Suc. Belenes    NA       2    NA    NA   NA     1
## 13376   Suc. Belenes     2       2    NA     2   NA    NA
## 13377   Suc. Belenes    NA       2    NA    NA   NA     1
## 13378   Suc. Belenes     3       3     3    NA   NA     3
## 13379   Suc. Belenes    NA       3     1    NA   NA    NA
## 13380   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13381   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13382   Suc. Belenes     2      NA    NA    NA   NA    NA
## 13383   Suc. Belenes     2      NA    NA    NA   NA    NA
## 13384   Suc. Belenes     2       2    NA    NA    2     2
## 13385   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13386   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13387   Suc. Belenes    13       5    40    37   63    NA
## 13388   Suc. Belenes    NA      NA    NA    NA   NA    38
## 13389   Suc. Belenes    10      25    44   130    3    98
## 13390   Suc. Belenes     3       6     2    NA   NA    NA
## 13391   Suc. Belenes     3       3    NA     4   NA    NA
## 13392   Suc. Belenes    21      25    56    92   85    85
## 13393   Suc. Belenes    21     173    95   169  169   218
## 13394   Suc. Belenes    11       4    15    25   25    25
## 13395   Suc. Belenes     6      NA    15    25   25    25
## 13396   Suc. Belenes    25     110    57   211  101    76
## 13397   Suc. Belenes     1      NA     2     1    1     2
## 13398   Suc. Belenes     2      NA     2    NA    2     5
## 13399   Suc. Belenes     2      NA     2     2    4     2
## 13400   Suc. Belenes     1       1    NA    NA    2     2
## 13401   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13402   Suc. Belenes     3      NA    NA     1   NA     2
## 13403   Suc. Belenes     1       1     4    NA    1    NA
## 13404   Suc. Belenes     3      NA     1     3    5    NA
## 13405   Suc. Belenes     0      NA     0    NA    2     1
## 13406   Suc. Belenes    NA       0    NA    NA    1    NA
## 13407   Suc. Belenes     7       7     3     2    4     4
## 13408   Suc. Belenes     1       1     1    NA   NA     0
## 13409   Suc. Belenes     2      NA    NA    NA    2    NA
## 13410   Suc. Belenes     0      NA     0     0   NA    NA
## 13411   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13412   Suc. Belenes     0      NA     0     0   NA    NA
## 13413   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13414   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13415   Suc. Belenes    NA      NA     3     6    3    10
## 13416   Suc. Belenes     3      NA     6    NA    3    NA
## 13417   Suc. Belenes     4       4     7    11    7    NA
## 13418   Suc. Belenes     2       1     2     4    5     5
## 13419   Suc. Belenes     2       1     2     4    2     2
## 13420   Suc. Belenes     3       3     2     2    4     3
## 13421   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13422   Suc. Belenes    NA       0    NA    NA    0     0
## 13423   Suc. Belenes    NA      NA     3     3    6     6
## 13424   Suc. Belenes    NA       3     6    NA    3    NA
## 13425   Suc. Belenes     4       4     4    NA    5    NA
## 13426   Suc. Belenes     0       1     2     4    6     3
## 13427   Suc. Belenes    NA       1     2     4    2     2
## 13428   Suc. Belenes     3       1     2     3    3     3
## 13429   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13430   Suc. Belenes    NA       0    NA    NA    0     0
## 13431   Suc. Belenes    NA      NA    NA     3   NA    NA
## 13432   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13433   Suc. Belenes    NA      NA    NA     4    2    NA
## 13434   Suc. Belenes     2       1     2     4    3     3
## 13435   Suc. Belenes     2       1     2     4    2     2
## 13436   Suc. Belenes     3       2     2     3    4     3
## 13437   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13438   Suc. Belenes    NA      NA     1    NA   NA     1
## 13439   Suc. Belenes    NA      NA    NA    NA   NA     3
## 13440   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13441   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13442   Suc. Belenes    NA      NA    NA     2   NA    NA
## 13443   Suc. Belenes    NA       0    NA    NA    0     0
## 13444   Suc. Belenes    NA      NA     3     6    6     6
## 13445   Suc. Belenes    NA      11     3    NA    3    NA
## 13446   Suc. Belenes     4       7     4    11   12     4
## 13447   Suc. Belenes     2       1     2     3    2     5
## 13448   Suc. Belenes     2       1     2     4    2     2
## 13449   Suc. Belenes     3       2     1     3    4     3
## 13450   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13451   Suc. Belenes    NA       0    NA    NA    0     0
## 13452   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13453   Suc. Belenes    NA      NA    NA    NA    1     3
## 13454   Suc. Belenes    NA      NA    NA    NA   NA     0
## 13455   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13456   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13457   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13458   Suc. Belenes    NA       4     6     4    6     6
## 13459   Suc. Belenes    NA       3    10    13   10    13
## 13460   Suc. Belenes     4       7    21    25   21    11
## 13461   Suc. Belenes     3       3     8     3    3     5
## 13462   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13463   Suc. Belenes    NA       1     1    NA   NA    NA
## 13464   Suc. Belenes    NA      NA    NA    NA    0    NA
## 13465   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13466   Suc. Belenes    NA      NA    NA     2    2    NA
## 13467   Suc. Belenes    NA      NA    NA     2    2     2
## 13468   Suc. Belenes     3      NA    NA     3    6     6
## 13469   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13470   Suc. Belenes    NA      NA    NA    NA   NA     2
## 13471   Suc. Belenes     4       4     8     4    6     8
## 13472   Suc. Belenes    11      11     8     6   14    11
## 13473   Suc. Belenes     2       6     6     6    6     8
## 13474   Suc. Belenes     1       1    NA     1    2    NA
## 13475   Suc. Belenes     3       2     1     2    2     2
## 13476   Suc. Belenes     6      11    13    13   13     4
## 13477   Suc. Belenes    11      16    18    16    8     8
## 13478   Suc. Belenes    NA      NA    NA    NA   NA    16
## 13479   Suc. Belenes     3      10     3    10   16    22
## 13480   Suc. Belenes     3       3     2     5    6     3
## 13481   Suc. Belenes    NA       6    NA    NA   NA    NA
## 13482   Suc. Belenes    20      17    20    23   28    31
## 13483   Suc. Belenes    32      32    32    32   56    49
## 13484   Suc. Belenes    35      25    25    21   25    28
## 13485   Suc. Belenes     6       6     4     4    6     6
## 13486   Suc. Belenes     6      17    15    19   23    23
## 13487   Suc. Belenes    44      36    30    30   34    30
## 13488   Suc. Belenes     2       1     1     2    2     4
## 13489   Suc. Belenes     2      NA     3     3    5     8
## 13490   Suc. Belenes     4       2     2     2    6     8
## 13491   Suc. Belenes     2       2     2     3    3     4
## 13492   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13493   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13494   Suc. Belenes     1       1     1    NA    2     1
## 13495   Suc. Belenes    NA      NA    NA    NA    0     1
## 13496   Suc. Belenes     2       1     2     2    2     2
## 13497   Suc. Belenes    NA      NA    NA    NA   NA     0
## 13498   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13499   Suc. Belenes     2      NA     1    NA   NA    NA
## 13500   Suc. Belenes    NA       2    NA    NA   NA    NA
## 13501   Suc. Belenes     0       0     0     1   NA     0
## 13502   Suc. Belenes     1      NA     1     1   NA    NA
## 13503   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13504   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13505   Suc. Belenes    NA       2    NA    NA   NA    NA
## 13506   Suc. Belenes    NA      NA    NA    NA    1     2
## 13507   Suc. Belenes     4       4    11     4    3     2
## 13508   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13509   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13510   Suc. Belenes     1       1     1    NA    1    NA
## 13511   Suc. Belenes    NA      NA     0     0    0     1
## 13512   Suc. Belenes    NA      NA     0    NA   NA    NA
## 13513   Suc. Belenes    NA       2    NA    NA   NA    NA
## 13514   Suc. Belenes    NA      NA    NA    NA    1     2
## 13515   Suc. Belenes    NA      NA    NA    NA    3     2
## 13516   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13517   Suc. Belenes    NA      NA     1    NA   NA    NA
## 13518   Suc. Belenes    NA      NA     0     0    0     1
## 13519   Suc. Belenes    NA      NA     0    NA   NA    NA
## 13520   Suc. Belenes    NA      NA    NA    NA    1     2
## 13521   Suc. Belenes     4       4     4     4    3     2
## 13522   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13523   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13524   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13525   Suc. Belenes    NA      NA     0     0    0     1
## 13526   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13527   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13528   Suc. Belenes    NA      NA     0    NA   NA    NA
## 13529   Suc. Belenes    NA       2    NA    NA   NA    NA
## 13530   Suc. Belenes    NA      NA    NA    NA    1     2
## 13531   Suc. Belenes     4       4    11    NA    3     2
## 13532   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13533   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13534   Suc. Belenes    NA       1     1    NA    1    NA
## 13535   Suc. Belenes    NA      NA     0     0    0     1
## 13536   Suc. Belenes    NA      NA     0    NA   NA    NA
## 13537   Suc. Belenes     1      NA    NA     1    1     2
## 13538   Suc. Belenes    NA      NA    NA    NA   NA     0
## 13539   Suc. Belenes    NA       6     2    NA    2    NA
## 13540   Suc. Belenes    NA      10     3     3    6    NA
## 13541   Suc. Belenes    NA       3     3    NA   NA    NA
## 13542   Suc. Belenes     1       2     3    NA   NA    NA
## 13543   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13544   Suc. Belenes    NA       1     1    NA   NA    NA
## 13545   Suc. Belenes    NA       1     1     1    1    NA
## 13546   Suc. Belenes    NA      NA    NA    NA    2    NA
## 13547   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13548   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13549   Suc. Belenes     3       3    NA     3    3    NA
## 13550   Suc. Belenes    NA      NA    NA     1   NA    NA
## 13551   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13552   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13553   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13554   Suc. Belenes     2       2    NA    NA   NA    NA
## 13555   Suc. Belenes    NA       3     3    NA   NA    NA
## 13556   Suc. Belenes     2       2     2    NA    4    NA
## 13557   Suc. Belenes    NA       2    NA    NA   NA    NA
## 13558   Suc. Belenes    NA      NA    NA     2   NA    NA
## 13559   Suc. Belenes     8       8     5     5    5    NA
## 13560   Suc. Belenes    NA      NA    NA     6    3     3
## 13561   Suc. Belenes     3       3     2    NA   NA     3
## 13562   Suc. Belenes    28      18    32    14   25     7
## 13563   Suc. Belenes    21      25    11    18   18     4
## 13564   Suc. Belenes    13       8     6    13    8     4
## 13565   Suc. Belenes    27      30    17    23   27     8
## 13566   Suc. Belenes     2       2    NA     1   NA    NA
## 13567   Suc. Belenes     5       3     3     2    2    NA
## 13568   Suc. Belenes     2       4     4    NA    4    NA
## 13569   Suc. Belenes    NA       2    NA    NA   NA    NA
## 13570   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13571   Suc. Belenes    NA      NA    NA     0   NA    NA
## 13572   Suc. Belenes     2       2     2     2    1    NA
## 13573   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13574   Suc. Belenes    NA       2     2     2    2    NA
## 13575   Suc. Belenes     0      NA     1     0    0    NA
## 13576   Suc. Belenes    NA       3    NA    NA   NA    NA
## 13577   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13578   Suc. Belenes     1      NA     0    NA   NA    NA
## 13579   Suc. Belenes     1       1     1    NA    1    NA
## 13580   Suc. Belenes    NA       1     1    NA   NA    NA
## 13581   Suc. Belenes     0      NA    NA    NA   NA    NA
## 13582   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13583   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13584   Suc. Belenes     1      NA     0    NA   NA    NA
## 13585   Suc. Belenes     1       1     1    NA    1    NA
## 13586   Suc. Belenes    NA       1     1    NA   NA    NA
## 13587   Suc. Belenes     0      NA    NA    NA   NA    NA
## 13588   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13589   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13590   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13591   Suc. Belenes     1       1     1    NA    1    NA
## 13592   Suc. Belenes    NA       1     1    NA   NA    NA
## 13593   Suc. Belenes     0      NA    NA    NA   NA    NA
## 13594   Suc. Belenes    NA       1     1    NA   NA    NA
## 13595   Suc. Belenes    NA       3    NA    NA   NA    NA
## 13596   Suc. Belenes     1      NA     0    NA   NA    NA
## 13597   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13598   Suc. Belenes    NA       3    NA    NA   NA    NA
## 13599   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13600   Suc. Belenes     1      NA     0    NA   NA    NA
## 13601   Suc. Belenes     1       1     1    NA    1    NA
## 13602   Suc. Belenes    NA       1     1    NA   NA    NA
## 13603   Suc. Belenes     0      NA    NA    NA   NA    NA
## 13604   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13605   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13606   Suc. Belenes     3       3    NA     3   NA    NA
## 13607   Suc. Belenes     2      NA    NA    NA   NA    NA
## 13608   Suc. Belenes    NA       4    NA    NA   NA    NA
## 13609   Suc. Belenes     4       4    NA    NA    4    NA
## 13610   Suc. Belenes     2       6    NA    NA    2    NA
## 13611   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13612   Suc. Belenes     3      NA    NA    NA   NA    NA
## 13613   Suc. Belenes     0      NA    NA    NA   NA    NA
## 13614   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13615   Suc. Belenes     3      NA    NA    NA   NA    NA
## 13616   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13617   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13618   Suc. Belenes     2      NA    NA    NA   NA    NA
## 13619   Suc. Belenes    NA       3    NA    NA   NA    NA
## 13620   Suc. Belenes     0      NA    NA    NA   NA    NA
## 13621   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13622   Suc. Belenes     2      53    NA    NA   NA    NA
## 13623   Suc. Belenes     3      63    NA    NA   NA    NA
## 13624   Suc. Belenes    NA      NA     0    NA   NA    NA
## 13625   Suc. Belenes    NA      38    NA    NA   NA    NA
## 13626   Suc. Belenes    NA      NA     3    NA    4    NA
## 13627   Suc. Belenes     1       1     1    NA    1    NA
## 13628   Suc. Belenes     2       2     1    NA   NA    NA
## 13629   Suc. Belenes     2      NA    NA    NA   NA    NA
## 13630   Suc. Belenes     2      NA    NA    NA   NA    NA
## 13631   Suc. Belenes    NA       3    NA    NA   NA    NA
## 13632   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13633   Suc. Belenes    NA      NA     1    NA   NA    NA
## 13634   Suc. Belenes    NA      NA    NA    NA    2    NA
## 13635   Suc. Belenes     3      NA    19     3    3    NA
## 13636   Suc. Belenes     2      NA    NA    NA   NA    NA
## 13637   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13638   Suc. Belenes     4      NA    11     4   NA    NA
## 13639   Suc. Belenes    NA      NA    NA    NA    2    NA
## 13640   Suc. Belenes     2       2     8    NA    2    NA
## 13641   Suc. Belenes    NA      NA    NA    NA    2    NA
## 13642   Suc. Belenes     1       1     1    NA    3    NA
## 13643   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13644   Suc. Belenes    NA      NA    NA    NA    4    NA
## 13645   Suc. Belenes     2       0     0    NA    0    NA
## 13646   Suc. Belenes    NA       1    NA    NA    1    NA
## 13647   Suc. Belenes    NA       7    NA    NA    1    NA
## 13648   Suc. Belenes    NA       1     1    NA   NA    NA
## 13649   Suc. Belenes    NA      NA     1    NA   NA    NA
## 13650   Suc. Belenes    NA       1     1    NA   NA    NA
## 13651   Suc. Belenes    NA      NA     1    NA   NA    NA
## 13652   Suc. Belenes     0       1     2    NA   NA    NA
## 13653   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13654   Suc. Belenes     0      NA     0    NA   NA    NA
## 13655   Suc. Belenes     1      NA     1    NA   NA    NA
## 13656   Suc. Belenes    NA      NA     1    NA   NA    NA
## 13657   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13658   Suc. Belenes     1      NA     1    NA   NA    NA
## 13659   Suc. Belenes    NA      NA     1    NA   NA    NA
## 13660   Suc. Belenes    NA      NA    NA    NA    0    NA
## 13661   Suc. Belenes     1      NA     1    NA   NA    NA
## 13662   Suc. Belenes    NA      NA     1    NA   NA    NA
## 13663   Suc. Belenes    NA      NA    NA    NA    3    NA
## 13664   Suc. Belenes    NA      NA     0    NA   NA    NA
## 13665   Suc. Belenes    NA      NA    NA    NA    2    NA
## 13666   Suc. Belenes     3      NA    NA    NA    3    NA
## 13667   Suc. Belenes    NA      NA    NA    NA    2    NA
## 13668   Suc. Belenes     1      NA     1    NA   NA    NA
## 13669   Suc. Belenes    NA      NA     1    NA   NA    NA
## 13670   Suc. Belenes    NA       3    NA    NA    1    NA
## 13671   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13672   Suc. Belenes    NA       1     1     1   NA    NA
## 13673   Suc. Belenes     2       6     4     2   NA    NA
## 13674   Suc. Belenes     3      13     3     6   NA    NA
## 13675   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13676   Suc. Belenes     3       3    NA     3   NA    NA
## 13677   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13678   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13679   Suc. Belenes    NA      NA     1    NA   NA    NA
## 13680   Suc. Belenes     2       4     3     3    0    NA
## 13681   Suc. Belenes    NA       1     1     1   NA    NA
## 13682   Suc. Belenes     0      NA    NA    NA   NA    NA
## 13683   Suc. Belenes    NA       1     1     2    1    NA
## 13684   Suc. Belenes    NA       3     3    NA   NA    NA
## 13685   Suc. Belenes    NA      NA     0     0   NA    NA
## 13686   Suc. Belenes     1      NA     1    NA   NA    NA
## 13687   Suc. Belenes     3      NA     3    NA   NA    NA
## 13688   Suc. Belenes    15       6     8    11   NA    NA
## 13689   Suc. Belenes     2       2     2     2   NA    NA
## 13690   Suc. Belenes    16      11     8    11   NA    NA
## 13691   Suc. Belenes    41      57    54    63    6    NA
## 13692   Suc. Belenes     6       6     6     6    2    NA
## 13693   Suc. Belenes     8       6     6     8   NA    NA
## 13694   Suc. Belenes    32      25    18    28    4    NA
## 13695   Suc. Belenes    85      70    70    99    7    NA
## 13696   Suc. Belenes     8       6     6     2   NA    NA
## 13697   Suc. Belenes    85      93    99   110   15    NA
## 13698   Suc. Belenes     3       2     2     2   NA    NA
## 13699   Suc. Belenes     3      NA    NA    NA   NA    NA
## 13700   Suc. Belenes    NA       2    NA     2   NA    NA
## 13701   Suc. Belenes     1       3     2     2   NA    NA
## 13702   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13703   Suc. Belenes    NA       1     1     1   NA    NA
## 13704   Suc. Belenes    NA      NA    NA     1   NA    NA
## 13705   Suc. Belenes    NA       1    NA     1   NA    NA
## 13706   Suc. Belenes     1       0     2     0    0    NA
## 13707   Suc. Belenes     1       2     3     0   NA    NA
## 13708   Suc. Belenes     2       3     3    NA   NA    NA
## 13709   Suc. Belenes    NA      NA     1     0   NA    NA
## 13710   Suc. Belenes     0      NA     1    NA   NA    NA
## 13711   Suc. Belenes     0       0     0     0   NA    NA
## 13712   Suc. Belenes     1       4     1     4   NA    NA
## 13713   Suc. Belenes     0       2     1     0    2    NA
## 13714   Suc. Belenes    NA       3     1     3    2    NA
## 13715   Suc. Belenes     1      NA     1     1   NA    NA
## 13716   Suc. Belenes    NA       0    NA     0   NA    NA
## 13717   Suc. Belenes     1       1     1     1   NA    NA
## 13718   Suc. Belenes    NA       1     1     3    2    NA
## 13719   Suc. Belenes     1       1    NA    NA   NA    NA
## 13720   Suc. Belenes    NA       0    NA     0   NA    NA
## 13721   Suc. Belenes    NA       1     1     1   NA    NA
## 13722   Suc. Belenes    NA       1     1     1   NA    NA
## 13723   Suc. Belenes     3       1     1    NA   NA    NA
## 13724   Suc. Belenes    NA       2     1    NA   NA    NA
## 13725   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13726   Suc. Belenes    NA      NA    NA    NA    2    NA
## 13727   Suc. Belenes    NA       0    NA     0   NA    NA
## 13728   Suc. Belenes     1       4     4     1   NA    NA
## 13729   Suc. Belenes     0       1    NA     1   NA    NA
## 13730   Suc. Belenes     2       3     1     3   NA    NA
## 13731   Suc. Belenes     1       1     1     1   NA    NA
## 13732   Suc. Belenes    NA       0    NA     0   NA    NA
## 13733   Suc. Belenes     1       3     5     2   NA    NA
## 13734 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13735 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13736 Suc. Huentitán     2      11     6    17   11    13
## 13737 Suc. Huentitán    10      10    16    25   22    22
## 13738 Suc. Huentitán    NA      NA     1    NA   NA    NA
## 13739 Suc. Huentitán    NA      NA    NA    NA    7    NA
## 13740 Suc. Huentitán     5       5     5     5    5     8
## 13741 Suc. Huentitán     1      NA    NA    NA    1    NA
## 13742 Suc. Huentitán     1      NA    NA    NA    1    NA
## 13743 Suc. Huentitán     0       0     0     0    1     1
## 13744 Suc. Huentitán     1       1    NA     1   NA     1
## 13745 Suc. Huentitán     4       3     2     5    3     4
## 13746 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13747 Suc. Huentitán     1      NA     2     1   NA     2
## 13748 Suc. Huentitán     2       2    NA     4    4    NA
## 13749 Suc. Huentitán     1       1     3     1    2     2
## 13750 Suc. Huentitán     6       8     3     8    8     3
## 13751 Suc. Huentitán    NA       0     0     0   NA    NA
## 13752 Suc. Huentitán     1      NA     1     1   NA    NA
## 13753 Suc. Huentitán    NA      NA    NA     2   NA    NA
## 13754 Suc. Huentitán     1       1     1    NA   NA    NA
## 13755 Suc. Huentitán     8      11     2    11    8    15
## 13756 Suc. Huentitán     8       8    14    14    8    14
## 13757 Suc. Huentitán    NA      NA    NA    NA    3    NA
## 13758 Suc. Huentitán    11       8     6     8   11     8
## 13759 Suc. Huentitán     1       1     1     2   NA     2
## 13760 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13761 Suc. Huentitán     2       4     4     2    2     6
## 13762 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13763 Suc. Huentitán    NA      NA    NA    NA    2    NA
## 13764 Suc. Huentitán    34      34    29    42   26    29
## 13765 Suc. Huentitán    NA      NA    NA    NA   NA     6
## 13766 Suc. Huentitán    25      35    32    38   41    48
## 13767 Suc. Huentitán    11       9     8    11    6     8
## 13768 Suc. Huentitán     5       2     2    NA   NA    NA
## 13769 Suc. Huentitán    NA      NA     3     6   NA    NA
## 13770 Suc. Huentitán    28      28    28    49   32    32
## 13771 Suc. Huentitán   159     116   183    99  180   183
## 13772 Suc. Huentitán    15      11    11    15   13     8
## 13773 Suc. Huentitán    21      17    21    27   19    19
## 13774 Suc. Huentitán   112      91   146    76  101   137
## 13775 Suc. Huentitán     4       4     6     6    5     7
## 13776 Suc. Huentitán     5       3     3     5    5     5
## 13777 Suc. Huentitán     2       4     2     6    4     6
## 13778 Suc. Huentitán     3       2     3     3    3     3
## 13779 Suc. Huentitán    NA       1    NA    NA    1     1
## 13780 Suc. Huentitán    NA       1     1     2    1     4
## 13781 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13782 Suc. Huentitán    NA       2     1     3    3     2
## 13783 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13784 Suc. Huentitán     1       1     1     2    0     1
## 13785 Suc. Huentitán    NA      NA     0    NA    0    NA
## 13786 Suc. Huentitán     5       3     4     5    3     3
## 13787 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13788 Suc. Huentitán     0      NA    NA    NA   NA     0
## 13789 Suc. Huentitán    NA      NA    NA     1   NA     1
## 13790 Suc. Huentitán    NA      NA     1     7    3    -1
## 13791 Suc. Huentitán     2       1     1     1    1     1
## 13792 Suc. Huentitán    NA       1     1     1    2     3
## 13793 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13794 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13795 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13796 Suc. Huentitán    NA      NA    NA    NA   NA     6
## 13797 Suc. Huentitán     2       4     3     7    4     4
## 13798 Suc. Huentitán     0       0     0     0    1     1
## 13799 Suc. Huentitán     2       2     1     3    3     2
## 13800 Suc. Huentitán     1      NA    NA    NA   NA    NA
## 13801 Suc. Huentitán     3       3     3     3    3     4
## 13802 Suc. Huentitán     1      NA    NA    NA   NA    NA
## 13803 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13804 Suc. Huentitán    NA      NA     0     0    0    NA
## 13805 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13806 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13807 Suc. Huentitán     2       1    NA     4    1     4
## 13808 Suc. Huentitán     0      NA    NA    NA   NA    NA
## 13809 Suc. Huentitán     2       0     0     1    2     1
## 13810 Suc. Huentitán     3       3     3     3    3     4
## 13811 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13812 Suc. Huentitán    NA      NA     0     0    0    NA
## 13813 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13814 Suc. Huentitán     2       1    NA     1    1     4
## 13815 Suc. Huentitán     0       0     0     0    1     1
## 13816 Suc. Huentitán     2       0     1     2    2     1
## 13817 Suc. Huentitán     3       3     3     3    3     4
## 13818 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13819 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13820 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13821 Suc. Huentitán    NA      NA    NA    NA    4     3
## 13822 Suc. Huentitán     2       1     0     0   NA     0
## 13823 Suc. Huentitán    NA      NA    NA    NA   NA     2
## 13824 Suc. Huentitán    NA      NA     0     0    0    NA
## 13825 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13826 Suc. Huentitán    NA      NA    NA    NA   NA     6
## 13827 Suc. Huentitán     2       9     6     7    4     4
## 13828 Suc. Huentitán     0       0     0     0    1     1
## 13829 Suc. Huentitán     3       1     1     2    2     1
## 13830 Suc. Huentitán     1      NA    NA    NA   NA    NA
## 13831 Suc. Huentitán     3       3     3     3    3     4
## 13832 Suc. Huentitán     1      NA    NA    NA   NA    NA
## 13833 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13834 Suc. Huentitán    NA      NA     0     0    0    NA
## 13835 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13836 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13837 Suc. Huentitán     2       3     3     7    5     2
## 13838 Suc. Huentitán    NA      NA    NA    NA    3    NA
## 13839 Suc. Huentitán    NA      NA     1    NA   NA     1
## 13840 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13841 Suc. Huentitán    NA      11    30    34   51    42
## 13842 Suc. Huentitán    NA      32    29    35   60    51
## 13843 Suc. Huentitán    NA      NA    NA    NA    4    NA
## 13844 Suc. Huentitán    NA      NA    18    15   36    28
## 13845 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13846 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13847 Suc. Huentitán     3       2     3     2    3     2
## 13848 Suc. Huentitán     4       3     3     4   12    NA
## 13849 Suc. Huentitán    NA      NA     3     1    4    NA
## 13850 Suc. Huentitán     1       1     2     2    3     1
## 13851 Suc. Huentitán     0      NA    NA     0   NA    NA
## 13852 Suc. Huentitán     1      NA     2     1    2     3
## 13853 Suc. Huentitán     8       7     8     7    8    10
## 13854 Suc. Huentitán     1       1     4     2    2     2
## 13855 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13856 Suc. Huentitán     4      NA     2     4    4     2
## 13857 Suc. Huentitán    NA      NA     2     1   NA     1
## 13858 Suc. Huentitán    14       3     6    11   11    11
## 13859 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13860 Suc. Huentitán    NA      NA     4     1    1    NA
## 13861 Suc. Huentitán    NA       0     0     1    0     0
## 13862 Suc. Huentitán    NA      NA    NA     1    1     1
## 13863 Suc. Huentitán     1      NA     1     1    1     1
## 13864 Suc. Huentitán    NA      NA     2    NA   NA    NA
## 13865 Suc. Huentitán    NA      NA     1    NA    1    NA
## 13866 Suc. Huentitán     2       2     4     2    2     2
## 13867 Suc. Huentitán    19      21    19    23   19    17
## 13868 Suc. Huentitán     3      NA     3    NA   NA     2
## 13869 Suc. Huentitán     8       6     8    11   11    14
## 13870 Suc. Huentitán    45      23    51    34   25    25
## 13871 Suc. Huentitán     2       3     5    NA    3     2
## 13872 Suc. Huentitán    17      13    13    15   11    17
## 13873 Suc. Huentitán     3       3     2     2    3     2
## 13874 Suc. Huentitán     2      NA     3     2    2     2
## 13875 Suc. Huentitán     8       4     8     6   NA     4
## 13876 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13877 Suc. Huentitán    NA       3     3     3   NA    NA
## 13878 Suc. Huentitán    NA      NA    NA     0    0    NA
## 13879 Suc. Huentitán     4       2     2     4    2     6
## 13880 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13881 Suc. Huentitán    NA       1     1    NA    1     1
## 13882 Suc. Huentitán    46      32    53    51   44    51
## 13883 Suc. Huentitán    NA      NA    NA    NA    3    NA
## 13884 Suc. Huentitán    38      29    29    25   32    38
## 13885 Suc. Huentitán    79      89   105   146   86   130
## 13886 Suc. Huentitán    12      11    21    20   11    14
## 13887 Suc. Huentitán     3       2     2     5    3     5
## 13888 Suc. Huentitán    11       6    14    25   17    20
## 13889 Suc. Huentitán    20       8     8    17   20    25
## 13890 Suc. Huentitán    85      92   137    92  137   141
## 13891 Suc. Huentitán   254     134   271   190  250   331
## 13892 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13893 Suc. Huentitán    38      30    44    51   61    66
## 13894 Suc. Huentitán    70      57    68    82   72    76
## 13895 Suc. Huentitán     7       8    11     8   12    15
## 13896 Suc. Huentitán     3       2     5     5    5     3
## 13897 Suc. Huentitán     2       4     2     2   10     4
## 13898 Suc. Huentitán    13      10    13     6    5     9
## 13899 Suc. Huentitán    NA       1    NA    NA   NA    NA
## 13900 Suc. Huentitán     3       2     2     1    5     3
## 13901 Suc. Huentitán     2       1     1     1    2    NA
## 13902 Suc. Huentitán     4      NA     1     1    5     1
## 13903 Suc. Huentitán     9       8     4    11    8     9
## 13904 Suc. Huentitán     4       4     4     4    8     5
## 13905 Suc. Huentitán     3       2     4     3    4     1
## 13906 Suc. Huentitán    12       8    10    12   11     7
## 13907 Suc. Huentitán     4       5     4     4    6     2
## 13908 Suc. Huentitán     4       5     2     2    3     4
## 13909 Suc. Huentitán     2       2     4     4    6     2
## 13910 Suc. Huentitán     0       2     1     1    1    NA
## 13911 Suc. Huentitán     1      NA     4     3    6     3
## 13912 Suc. Huentitán     4       5    NA    NA    4    NA
## 13913 Suc. Huentitán     3       2     5     4    8    NA
## 13914 Suc. Huentitán    NA      NA    NA     1    1    NA
## 13915 Suc. Huentitán     3       4     4     3    4     3
## 13916 Suc. Huentitán     1      NA     2     1    2     3
## 13917 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13918 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13919 Suc. Huentitán     8       3     3    NA   NA    NA
## 13920 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13921 Suc. Huentitán     3       8    12     8    6     6
## 13922 Suc. Huentitán    NA      NA    NA    NA    4    NA
## 13923 Suc. Huentitán     0      NA    NA     0   NA    NA
## 13924 Suc. Huentitán     0      NA     0     0    1     1
## 13925 Suc. Huentitán     3      NA     3     3    3     4
## 13926 Suc. Huentitán     1       3    NA     1    3     2
## 13927 Suc. Huentitán     0      NA    NA    NA   NA    NA
## 13928 Suc. Huentitán    NA       0     0     0    0     0
## 13929 Suc. Huentitán    NA       6    NA    NA   NA     3
## 13930 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13931 Suc. Huentitán     6       6     4     3    3    11
## 13932 Suc. Huentitán    NA      NA     0    NA    1     0
## 13933 Suc. Huentitán     1      NA     1     1    1    NA
## 13934 Suc. Huentitán     2      NA     3     1    1     3
## 13935 Suc. Huentitán     0      NA    NA    NA   NA    NA
## 13936 Suc. Huentitán    NA       0     0     0    0     0
## 13937 Suc. Huentitán    NA      NA     3     3   NA     3
## 13938 Suc. Huentitán    NA      NA    NA     3    1    NA
## 13939 Suc. Huentitán     0      NA    NA     0   NA    NA
## 13940 Suc. Huentitán    NA      NA     0     0   NA    NA
## 13941 Suc. Huentitán     1      NA     1     1    1    NA
## 13942 Suc. Huentitán     1       1     1     1    1     1
## 13943 Suc. Huentitán     0      NA    NA    NA   NA    NA
## 13944 Suc. Huentitán    NA       1     1     3    2     1
## 13945 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13946 Suc. Huentitán     8      14    23     8    5    14
## 13947 Suc. Huentitán    NA      NA    NA     0    1     1
## 13948 Suc. Huentitán    NA       2     2     2    4     4
## 13949 Suc. Huentitán     1       1     3    NA    5     3
## 13950 Suc. Huentitán    NA       0     0     0    0     0
## 13951 Suc. Huentitán    10      NA     5    NA   NA     3
## 13952 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13953 Suc. Huentitán    11       6     9    14    6    14
## 13954 Suc. Huentitán    NA      NA    NA    NA    4    NA
## 13955 Suc. Huentitán     0      NA    NA     0   NA    NA
## 13956 Suc. Huentitán    NA       0    NA    NA    1     0
## 13957 Suc. Huentitán     5       2     5     5    9     4
## 13958 Suc. Huentitán     2       1     4     3    3     6
## 13959 Suc. Huentitán     0      NA    NA    NA   NA    NA
## 13960 Suc. Huentitán    NA       0     0     0    0     0
## 13961 Suc. Huentitán     2       1     4    NA   NA    NA
## 13962 Suc. Huentitán     5       8    11     6   15    10
## 13963 Suc. Huentitán    NA      NA     1    NA   NA    NA
## 13964 Suc. Huentitán     1      NA     1    NA   NA    NA
## 13965 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13966 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13967 Suc. Huentitán     2       4     4     4    4     4
## 13968 Suc. Huentitán    13      10     3     3   10     6
## 13969 Suc. Huentitán    NA      NA     0    NA   NA    NA
## 13970 Suc. Huentitán    NA       3     5    NA   NA    NA
## 13971 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13972 Suc. Huentitán     2       2     2     1    3    NA
## 13973 Suc. Huentitán    NA      NA     2    NA    3    NA
## 13974 Suc. Huentitán    NA      NA     1    NA    1    NA
## 13975 Suc. Huentitán     0       1     1     1    1     1
## 13976 Suc. Huentitán    NA      NA     1     1   NA    NA
## 13977 Suc. Huentitán     4       5     5     5    6     2
## 13978 Suc. Huentitán     0       0    NA    NA    0     1
## 13979 Suc. Huentitán    NA      NA    NA    NA    1     1
## 13980 Suc. Huentitán    NA       2     2     4    2    NA
## 13981 Suc. Huentitán     3       1     1     1    1     1
## 13982 Suc. Huentitán     6       3     3     6    6    NA
## 13983 Suc. Huentitán    NA      NA    NA    NA    0    NA
## 13984 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13985 Suc. Huentitán    NA      NA     1    NA   NA     1
## 13986 Suc. Huentitán     4      NA    NA     4    2     2
## 13987 Suc. Huentitán    NA      NA     0    NA   NA    NA
## 13988 Suc. Huentitán     1      NA    NA    NA   NA    NA
## 13989 Suc. Huentitán     8       2     4     6    4     8
## 13990 Suc. Huentitán    11       6     6     8    8     8
## 13991 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13992 Suc. Huentitán    11      13     6     8   13    13
## 13993 Suc. Huentitán     1       1     1     1    1     2
## 13994 Suc. Huentitán     2       4     2     4    2     4
## 13995 Suc. Huentitán     6       8     8    11    3    11
## 13996 Suc. Huentitán     2      NA     2     2    2     4
## 13997 Suc. Huentitán     1       1     1     2    1     2
## 13998 Suc. Huentitán    NA      NA    NA    NA    1    NA
## 13999 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14000 Suc. Huentitán    29      29    42    45   37    26
## 14001 Suc. Huentitán    NA      NA    NA    NA   NA    19
## 14002 Suc. Huentitán    22      22    22    29   29    38
## 14003 Suc. Huentitán    12       9    12    20   12    12
## 14004 Suc. Huentitán     9      12     9    15    9    17
## 14005 Suc. Huentitán    NA       6     3    11    3     6
## 14006 Suc. Huentitán     6       6     6    11    6     6
## 14007 Suc. Huentitán    74      49    63    99   74    63
## 14008 Suc. Huentitán   113     113   229    74  137   106
## 14009 Suc. Huentitán    NA      -2    NA    NA   NA    NA
## 14010 Suc. Huentitán    NA      NA    NA    NA    2     2
## 14011 Suc. Huentitán    30      21    23    34   23    13
## 14012 Suc. Huentitán    63      70    74   116   40    76
## 14013 Suc. Huentitán     8       7     9    10   10     6
## 14014 Suc. Huentitán     2       3     3     5    5     3
## 14015 Suc. Huentitán     2       6     2     6    4     4
## 14016 Suc. Huentitán     2       4     3     4    2     2
## 14017 Suc. Huentitán    NA       1    NA    NA   NA    NA
## 14018 Suc. Huentitán     1       1     1     1    4     2
## 14019 Suc. Huentitán     1       1     1     2    2     2
## 14020 Suc. Huentitán     1      NA     1     2    3     3
## 14021 Suc. Huentitán     1      NA     2     1    1    NA
## 14022 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14023 Suc. Huentitán     3       2     1     3    5     0
## 14024 Suc. Huentitán     1      NA     1     0    1     1
## 14025 Suc. Huentitán     3       2     3     0    3     3
## 14026 Suc. Huentitán    NA       1    NA    NA   NA     1
## 14027 Suc. Huentitán    NA       2     2     2    6    NA
## 14028 Suc. Huentitán    NA      NA     0     0   NA     0
## 14029 Suc. Huentitán     2       2     1     2   NA     1
## 14030 Suc. Huentitán     2      NA     3     1   NA     3
## 14031 Suc. Huentitán     1       1     3     1    1     2
## 14032 Suc. Huentitán     1      NA     1    NA   NA    NA
## 14033 Suc. Huentitán     3       3     2     1    3     2
## 14034 Suc. Huentitán     1       1     2    NA    1     1
## 14035 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14036 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14037 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14038 Suc. Huentitán    NA      NA    NA    NA   NA     2
## 14039 Suc. Huentitán     5       5     5     6    5     6
## 14040 Suc. Huentitán     6       1     3     3   NA     3
## 14041 Suc. Huentitán     0       1     1     1    1     1
## 14042 Suc. Huentitán     0      NA     1     1    1     1
## 14043 Suc. Huentitán     5       2    NA     3   NA     3
## 14044 Suc. Huentitán     1       1     1    NA   NA    NA
## 14045 Suc. Huentitán    NA       0     1     0    0     0
## 14046 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14047 Suc. Huentitán    NA      NA    NA    NA   NA     2
## 14048 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14049 Suc. Huentitán     4       1     3    NA    3    NA
## 14050 Suc. Huentitán     0      NA     1     1    0    NA
## 14051 Suc. Huentitán     1       2    NA     3    2     1
## 14052 Suc. Huentitán     1      NA    NA    NA    1    NA
## 14053 Suc. Huentitán    NA       0     1     0    0     0
## 14054 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14055 Suc. Huentitán     1       1    31     3   NA    NA
## 14056 Suc. Huentitán     0       1     1     1    1     1
## 14057 Suc. Huentitán    NA       0     0     1   NA     0
## 14058 Suc. Huentitán     5       4     4     5   NA     1
## 14059 Suc. Huentitán     1      NA    NA     1   NA    NA
## 14060 Suc. Huentitán     1       1     1     1   NA    NA
## 14061 Suc. Huentitán    NA      NA    NA    NA   NA     2
## 14062 Suc. Huentitán     6       3     3    NA    6    NA
## 14063 Suc. Huentitán     0       0     1     0    0    NA
## 14064 Suc. Huentitán     6       6     4     4    2    NA
## 14065 Suc. Huentitán     1       1    NA    NA   NA    NA
## 14066 Suc. Huentitán    NA       0     1     0    0     0
## 14067 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14068 Suc. Huentitán    NA      NA    NA    NA   NA     2
## 14069 Suc. Huentitán     6       5     6     6    5     8
## 14070 Suc. Huentitán     4       1     3     8    6     6
## 14071 Suc. Huentitán    NA       4    NA    NA   NA    NA
## 14072 Suc. Huentitán     0       1     1     1    1     1
## 14073 Suc. Huentitán     0      NA     1     1    0     1
## 14074 Suc. Huentitán     7       2     2     3   NA     5
## 14075 Suc. Huentitán     1       1     1     1   NA    NA
## 14076 Suc. Huentitán    NA       0     1     0    0     0
## 14077 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14078 Suc. Huentitán     1       3     3     1    5     5
## 14079 Suc. Huentitán    NA      NA     0     0   NA    NA
## 14080 Suc. Huentitán    NA      NA    NA    NA    1    NA
## 14081 Suc. Huentitán     1      NA     1     1    1    NA
## 14082 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14083 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14084 Suc. Huentitán     2      11     4     8   17    13
## 14085 Suc. Huentitán    25       6    10    19   16    22
## 14086 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14087 Suc. Huentitán     5      NA    NA     5    3     5
## 14088 Suc. Huentitán     1       2     2    NA   NA     2
## 14089 Suc. Huentitán    NA       0     1     1    0     0
## 14090 Suc. Huentitán     0      NA     0    NA   NA    NA
## 14091 Suc. Huentitán    NA       1    NA     1   NA     1
## 14092 Suc. Huentitán     4       2     1     4    3     6
## 14093 Suc. Huentitán    NA       0     1     0   NA     1
## 14094 Suc. Huentitán    NA       1     2    11    1     2
## 14095 Suc. Huentitán    NA       1     1     8    1     1
## 14096 Suc. Huentitán    NA       3     3     3    3     3
## 14097 Suc. Huentitán    NA       1    NA    NA   NA    NA
## 14098 Suc. Huentitán    NA      NA    NA    NA   -2    NA
## 14099 Suc. Huentitán     1      NA     2    NA   NA    NA
## 14100 Suc. Huentitán     2       8     8     6    8     8
## 14101 Suc. Huentitán    NA       3     3     6   NA    NA
## 14102 Suc. Huentitán     6       3     6     8   NA     6
## 14103 Suc. Huentitán    11       8     8     4   11    11
## 14104 Suc. Huentitán     1       1     1     2   NA    NA
## 14105 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14106 Suc. Huentitán    NA       2    NA    NA   NA    NA
## 14107 Suc. Huentitán    NA       1    NA    NA   NA    NA
## 14108 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14109 Suc. Huentitán    21      29    37    29   29    18
## 14110 Suc. Huentitán    NA      NA    NA    NA   NA    16
## 14111 Suc. Huentitán    98     117   146   155  101   133
## 14112 Suc. Huentitán     5       9     9    15    6    11
## 14113 Suc. Huentitán    NA      NA    NA     6   NA    NA
## 14114 Suc. Huentitán    32      28    18    25   28    39
## 14115 Suc. Huentitán   232     232   264   232  190   215
## 14116 Suc. Huentitán     2      NA    NA     2   NA    NA
## 14117 Suc. Huentitán    13      15    13    17   15    17
## 14118 Suc. Huentitán   127     114   152   205  184   135
## 14119 Suc. Huentitán     2       2     1     5    4     4
## 14120 Suc. Huentitán     3      NA     3     5    3     2
## 14121 Suc. Huentitán     2       4     2     4    4     4
## 14122 Suc. Huentitán     5       1     4     3    2     3
## 14123 Suc. Huentitán    NA       1    NA    NA   NA    NA
## 14124 Suc. Huentitán     1       1     1    12    1     1
## 14125 Suc. Huentitán    NA      NA     1    NA   NA     1
## 14126 Suc. Huentitán     3       1     2     2    2     3
## 14127 Suc. Huentitán    NA      NA     1    NA   NA    NA
## 14128 Suc. Huentitán     4       2     4     2    2     3
## 14129 Suc. Huentitán     1       0     1     1    1     1
## 14130 Suc. Huentitán     3       3     3     3    4     4
## 14131 Suc. Huentitán    NA      NA    NA    NA   NA     0
## 14132 Suc. Huentitán    NA       2    NA    NA    2    NA
## 14133 Suc. Huentitán     0       0    NA     1    1    NA
## 14134 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14135 Suc. Huentitán     1       0     1     1    1     1
## 14136 Suc. Huentitán    NA       1     1     1    2     1
## 14137 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14138 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14139 Suc. Huentitán    NA      NA    NA    NA   NA     2
## 14140 Suc. Huentitán     6       3     4    NA    8     3
## 14141 Suc. Huentitán     0      NA     0    NA   NA    NA
## 14142 Suc. Huentitán     0      NA     0    NA    0    NA
## 14143 Suc. Huentitán     2       3     2     3    3     2
## 14144 Suc. Huentitán     1      NA     1     3    1     1
## 14145 Suc. Huentitán    NA       0     0     0   NA    NA
## 14146 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14147 Suc. Huentitán    NA      NA    NA    NA   NA     2
## 14148 Suc. Huentitán    NA      NA     1     3    3     3
## 14149 Suc. Huentitán    NA      NA    NA    NA   NA     0
## 14150 Suc. Huentitán     2       1     2     3    1     2
## 14151 Suc. Huentitán    NA      NA    NA    NA    1    NA
## 14152 Suc. Huentitán    NA       0     0     0   NA    NA
## 14153 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14154 Suc. Huentitán    NA      NA     1    NA    3     3
## 14155 Suc. Huentitán     0      NA     0    NA   NA    NA
## 14156 Suc. Huentitán    NA      NA    NA    NA   NA    -1
## 14157 Suc. Huentitán     2       1     2     3    1     2
## 14158 Suc. Huentitán     1      NA    NA     1    1     1
## 14159 Suc. Huentitán     1      NA    NA     1    2     1
## 14160 Suc. Huentitán    NA      NA    NA    NA   NA     2
## 14161 Suc. Huentitán     6      NA     3     3    3     3
## 14162 Suc. Huentitán    NA      NA     0    NA   NA     0
## 14163 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14164 Suc. Huentitán    NA       0     0     0   NA    NA
## 14165 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14166 Suc. Huentitán    NA      NA    NA    NA   NA     2
## 14167 Suc. Huentitán     3       3     1     3    3     3
## 14168 Suc. Huentitán     0      NA     0    NA   NA    NA
## 14169 Suc. Huentitán     0       1     1     0    0     1
## 14170 Suc. Huentitán     2       3     6     3    5     2
## 14171 Suc. Huentitán     2      NA     2     3    4     1
## 14172 Suc. Huentitán    NA       0     0     0   NA    NA
## 14173 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14174 Suc. Huentitán     1       3     5     4    3     8
## 14175 Suc. Huentitán    NA      NA    NA     2    0    NA
## 14176 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14177 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14178 Suc. Huentitán     2       2     6     2    2     4
## 14179 Suc. Huentitán    16       3     6     6    3     6
## 14180 Suc. Huentitán    NA      NA     0    NA   NA    NA
## 14181 Suc. Huentitán     3      NA     3     3    3     3
## 14182 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14183 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14184 Suc. Huentitán    NA       1     1     2    1     1
## 14185 Suc. Huentitán    NA      NA     1    NA   NA    NA
## 14186 Suc. Huentitán     2       1     1    NA   NA     1
## 14187 Suc. Huentitán     1       1     1     1    1     2
## 14188 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14189 Suc. Huentitán    NA       1    NA    NA    1    NA
## 14190 Suc. Huentitán     2      NA     6    NA   NA    NA
## 14191 Suc. Huentitán     3       2     4    NA    1    NA
## 14192 Suc. Huentitán     8       8     8    11    8     3
## 14193 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14194 Suc. Huentitán    NA      NA    NA     2    6     4
## 14195 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14196 Suc. Huentitán     0      NA     1     0   NA    NA
## 14197 Suc. Huentitán    NA      NA    NA     0   NA    NA
## 14198 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14199 Suc. Huentitán     5       3     8     5    3     8
## 14200 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14201 Suc. Huentitán    35      32    51    57   38    82
## 14202 Suc. Huentitán     2       3     3     8    2     2
## 14203 Suc. Huentitán     3       3     3     3    3    NA
## 14204 Suc. Huentitán     4      NA     7     4   NA    NA
## 14205 Suc. Huentitán   169     159   148   183  173   208
## 14206 Suc. Huentitán    NA       4     4     2    2    NA
## 14207 Suc. Huentitán     4       2     6     4    4     4
## 14208 Suc. Huentitán    80      78    80    74   89    87
## 14209 Suc. Huentitán     1      NA     1     1   NA     1
## 14210 Suc. Huentitán    NA       2     3     2    2    NA
## 14211 Suc. Huentitán    NA      NA    NA     2   NA    NA
## 14212 Suc. Huentitán     3       2     2     1    1     2
## 14213 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14214 Suc. Huentitán    NA       1     1    -1    1     1
## 14215 Suc. Huentitán     1      NA    NA    NA   NA     1
## 14216 Suc. Huentitán    NA      NA    NA    NA   NA     1
## 14217 Suc. Huentitán    NA       0     0    NA    2     3
## 14218 Suc. Huentitán    NA      NA     0    NA   NA     0
## 14219 Suc. Huentitán     2       3     3     2    3     3
## 14220 Suc. Huentitán     1       0     2     1    0     1
## 14221 Suc. Huentitán    NA       2     2    NA   NA    NA
## 14222 Suc. Huentitán    NA      NA    NA    NA   NA     0
## 14223 Suc. Huentitán    NA       0     0    NA    0    NA
## 14224 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14225 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14226 Suc. Huentitán     3       6     8     6    3     4
## 14227 Suc. Huentitán    NA      NA     1    NA   NA    NA
## 14228 Suc. Huentitán    NA       0    NA     0    0    NA
## 14229 Suc. Huentitán     2      NA    NA    -1   NA    NA
## 14230 Suc. Huentitán     2       2     5     6    2     5
## 14231 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14232 Suc. Huentitán     0       0     0     0   NA     0
## 14233 Suc. Huentitán    NA       0     0    NA    0     0
## 14234 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14235 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14236 Suc. Huentitán    NA      NA     3    NA    3     4
## 14237 Suc. Huentitán     2       2     3     4    2     1
## 14238 Suc. Huentitán    NA      NA     0    NA   NA     0
## 14239 Suc. Huentitán    NA       0     0    NA    0     0
## 14240 Suc. Huentitán     6       3    11     3   NA     6
## 14241 Suc. Huentitán    NA      NA     1    NA   NA    NA
## 14242 Suc. Huentitán     4       2     5     4    2     3
## 14243 Suc. Huentitán     3      NA    NA    NA   NA     1
## 14244 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14245 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14246 Suc. Huentitán    NA       0     0    NA    0     0
## 14247 Suc. Huentitán     6       6    14    NA    3     9
## 14248 Suc. Huentitán    NA      NA     1    NA   NA    NA
## 14249 Suc. Huentitán    NA      NA    NA     0    1     1
## 14250 Suc. Huentitán     2      NA    NA    -1   NA    NA
## 14251 Suc. Huentitán     2       4     7     6    2     7
## 14252 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14253 Suc. Huentitán    NA      NA     0    NA    1     2
## 14254 Suc. Huentitán    NA       0     0    NA    0     0
## 14255 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14256 Suc. Huentitán     1       1    NA     1    3    NA
## 14257 Suc. Huentitán    NA      NA     1    NA   NA     1
## 14258 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14259 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14260 Suc. Huentitán     4      NA     4     6    6     2
## 14261 Suc. Huentitán     6      16    13     6    3    25
## 14262 Suc. Huentitán    NA       0    NA     0    0    NA
## 14263 Suc. Huentitán     2       2     2     3    2     3
## 14264 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14265 Suc. Huentitán    NA      NA    NA    NA   NA     3
## 14266 Suc. Huentitán    NA       0    NA    NA    1    NA
## 14267 Suc. Huentitán    NA       2    NA     2    1     1
## 14268 Suc. Huentitán    NA       1    NA     1    1     1
## 14269 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14270 Suc. Huentitán     1       1     1     1   NA     1
## 14271 Suc. Huentitán     1       3     2     1    1     1
## 14272 Suc. Huentitán    10      17     3    19    9    16
## 14273 Suc. Huentitán    NA      NA    NA     1    1    NA
## 14274 Suc. Huentitán    NA      NA     1    NA   NA    NA
## 14275 Suc. Huentitán    NA      NA    NA     2   NA    NA
## 14276 Suc. Huentitán     5       2     3     2    2     2
## 14277 Suc. Huentitán     3       3    NA     3   NA    NA
## 14278 Suc. Huentitán     1      NA    NA    NA   NA    NA
## 14279 Suc. Huentitán    NA      NA     1     0   NA     0
## 14280 Suc. Huentitán     1      NA     1     1    1     1
## 14281 Suc. Huentitán    NA      NA    NA    NA   NA     1
## 14282 Suc. Huentitán     2      NA     4    NA    2     4
## 14283 Suc. Huentitán     5       5     6     6    2     8
## 14284 Suc. Huentitán    NA      NA    NA    NA    3    NA
## 14285 Suc. Huentitán     8      17    25    17   20    42
##  [ reached 'max' / getOption("max.print") -- omitted 452224 rows ]

Función filter

library(dplyr)
?filter
## Help on topic 'filter' was found in the following packages:
## 
##   Package               Library
##   stats                 /Library/Frameworks/R.framework/Versions/4.2/Resources/library
##   dplyr                 /Library/Frameworks/R.framework/Versions/4.2/Resources/library
## 
## 
## Using the first match ...
filter<-filter(base_de_datos, Tamaño.Cte.Industria=="Grande")
str(filter)
## 'data.frame':    41333 obs. of  25 variables:
##  $ ID                  : int  374960 374961 374962 374963 374964 374965 374966 374967 374968 374969 ...
##  $ Año                 : int  2019 2019 2019 2019 2019 2019 2019 2019 2019 2019 ...
##  $ Territorio          : chr  "Guadalajara" "Guadalajara" "Guadalajara" "Guadalajara" ...
##  $ Sub.Territorio      : chr  "Belenes" "Belenes" "Belenes" "Belenes" ...
##  $ CEDI                : chr  "Suc. Belenes" "Suc. Belenes" "Suc. Belenes" "Suc. Belenes" ...
##  $ Cliente             : int  7657 7657 7657 7657 7657 7657 7657 7657 7657 7657 ...
##  $ Nombre              : chr  "FROYL" "FROYL" "FROYL" "FROYL" ...
##  $ Tamaño.Cte.Industria: chr  "Grande" "Grande" "Grande" "Grande" ...
##  $ Segmento.Det        : chr  "Agua Mineral" "Agua Mineral" "Agua Mineral" "Agua Purificada" ...
##  $ Marca               : chr  "Ciel Mineralizada" "Topo Chico A.M." "Topo Chico A.M." "Ciel Agua Purificada" ...
##  $ Presentacion        : chr  "600 ml NR" "1.5 Lts. NR" "600 ml NR" "1 Ltro. N.R." ...
##  $ Tamaño              : chr  "Individual" "Familiar" "Individual" "Individual" ...
##  $ Retornable_NR       : chr  "No Retornable" "No Retornable" "No Retornable" "No Retornable" ...
##  $ Enero               : int  1 NA 1 8 13 4 NA 1 1 NA ...
##  $ Febrero             : int  NA 2 3 2 13 7 NA 1 1 NA ...
##  $ Marzo               : int  NA 5 3 23 25 14 3 NA NA NA ...
##  $ Abril               : int  1 2 3 13 22 14 5 1 1 NA ...
##  $ Mayo                : int  1 2 4 21 29 11 3 NA NA 1 ...
##  $ Junio               : int  NA 2 1 8 13 11 3 NA NA 1 ...
##  $ Julio               : int  NA NA 1 15 10 7 NA NA NA NA ...
##  $ Agosto              : int  NA 2 3 19 22 11 5 NA NA 1 ...
##  $ Septiembre          : int  NA NA NA NA NA NA NA NA NA NA ...
##  $ Octubre             : int  NA NA NA NA NA NA NA NA NA NA ...
##  $ Noviembre           : int  NA NA NA NA NA NA NA NA NA NA ...
##  $ Diciembre           : int  NA NA NA NA NA NA NA NA NA NA ...

Función arrange

library(dplyr)
?arrange
arrange<-arrange(base_de_datos, Enero)
head(arrange)
##       ID  Año  Territorio Sub.Territorio            CEDI Cliente Nombre
## 1 289053 2019 Guadalajara     Toluquilla Suc. Toluquilla    2661  SUPER
## 2 289051 2019 Guadalajara     Toluquilla Suc. Toluquilla    2661  SUPER
## 3  78930 2016 Guadalajara      Huentitán  Suc. Huentitán   31100  Claud
## 4  74735 2016 Guadalajara      Huentitán  Suc. Huentitán   42998  PANAD
## 5  91274 2017 Guadalajara      Huentitán  Suc. Huentitán    2713  MARIA
## 6 147493 2017 Guadalajara     Toluquilla Suc. Toluquilla    2069  JULIO
##   Tamaño.Cte.Industria  Segmento.Det     Marca Presentacion   Tamaño
## 1         Extra Grande Colas Regular Coca-Cola  1.5 Lts. NR Familiar
## 2         Extra Grande Colas Regular Coca-Cola 1 Ltro. N.R. Familiar
## 3                Micro Colas Regular Coca-Cola  2.5 Lts. NR Familiar
## 4                Micro Colas Regular Coca-Cola 1.5 Lts. Ret Familiar
## 5         Extra Grande Colas Regular Coca-Cola   2 Lts. Ret Familiar
## 6         Extra Grande Colas Regular Coca-Cola 1 Ltro. N.R. Familiar
##   Retornable_NR Enero Febrero Marzo Abril Mayo Junio Julio Agosto Septiembre
## 1 No Retornable   -19      NA    NA    NA   NA    NA    NA     NA         NA
## 2 No Retornable   -13      NA    NA    NA   NA    NA    NA     NA         NA
## 3 No Retornable    -7      NA    NA    NA   NA    NA    NA     NA         NA
## 4    Retornable    -6      NA    NA    NA   NA    NA    NA     NA         NA
## 5    Retornable    -6      NA    NA    NA   NA    NA    NA     NA         NA
## 6 No Retornable    -6      13    19    23   36    36    27     27         19
##   Octubre Noviembre Diciembre
## 1      NA        NA        NA
## 2      NA        NA        NA
## 3      NA        NA        NA
## 4      NA        NA        NA
## 5      NA        NA        NA
## 6      23        15        19

Con esta función se acomodo de menor a mayor, tomando en cuenta la columna Enero

Función rename

?rename
rename<-rename(base_de_datos, DICIEMBRE=Diciembre)
rename
##        ID  Año  Territorio Sub.Territorio         CEDI Cliente Nombre
## 1       1 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 2       2 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 3       3 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 4       4 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 5       5 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 6       6 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 7       7 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 8       8 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 9       9 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 10     10 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 11     11 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 12     12 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 13     13 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 14     14 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 15     15 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 16     16 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 17     17 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 18     18 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 19     19 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 20     20 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 21     21 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 22     22 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 23     23 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 24     24 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 25     25 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 26     26 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 27     27 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 28     28 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 29     29 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 30     30 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 31     31 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 32     32 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 33     33 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 34     34 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 35     35 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 36     36 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 37     37 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 38     38 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 39     39 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 40     40 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 41     41 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 42     42 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 43     43 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 44     44 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 45     45 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 46     46 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 47     47 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 48     48 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 49     49 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 50     50 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 51     51 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 52     52 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 53     53 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 54     54 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 55     55 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 56     56 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 57     57 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 58     58 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 59     59 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 60     60 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 61     61 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 62     62 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 63     63 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 64     64 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 65     65 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 66     66 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 67     67 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 68     68 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 69     69 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 70     70 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 71     71 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 72     72 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 73     73 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 74     74 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 75     75 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 76     76 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 77     77 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 78     78 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 79     79 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 80     80 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 81     81 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 82     82 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 83     83 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 84     84 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 85     85 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 86     86 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 87     87 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 88     88 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 89     89 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 90     90 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 91     91 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 92     92 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 93     93 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 94     94 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 95     95 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 96     96 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 97     97 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 98     98 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 99     99 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 100   100 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 101   101 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 102   102 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 103   103 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 104   104 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 105   105 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 106   106 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 107   107 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 108   108 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 109   109 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 110   110 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 111   111 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 112   112 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 113   113 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 114   114 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 115   115 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 116   116 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 117   117 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 118   118 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 119   119 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 120   120 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 121   121 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 122   122 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 123   123 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 124   124 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 125   125 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 126   126 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 127   127 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 128   128 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 129   129 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 130   130 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 131   131 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 132   132 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 133   133 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 134   134 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 135   135 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 136   136 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 137   137 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 138   138 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 139   139 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 140   140 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 141   141 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 142   142 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 143   143 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 144   144 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 145   145 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 146   146 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 147   147 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 148   148 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 149   149 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 150   150 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 151   151 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 152   152 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 153   153 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 154   154 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 155   155 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 156   156 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 157   157 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 158   158 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 159   159 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 160   160 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 161   161 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 162   162 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 163   163 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 164   164 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 165   165 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 166   166 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 167   167 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 168   168 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 169   169 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 170   170 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 171   171 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 172   172 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 173   173 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 174   174 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 175   175 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 176   176 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 177   177 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 178   178 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 179   179 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 180   180 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 181   181 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 182   182 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 183   183 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 184   184 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 185   185 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 186   186 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 187   187 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 188   188 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 189   189 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 190   190 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 191   191 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 192   192 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 193   193 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 194   194 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 195   195 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 196   196 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 197   197 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 198   198 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 199   199 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 200   200 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 201   201 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 202   202 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 203   203 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 204   204 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 205   205 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 206   206 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 207   207 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 208   208 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 209   209 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 210   210 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 211   211 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 212   212 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 213   213 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 214   214 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 215   215 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 216   216 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 217   217 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 218   218 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 219   219 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 220   220 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 221   221 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 222   222 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 223   223 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 224   224 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 225   225 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 226   226 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 227   227 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 228   228 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 229   229 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 230   230 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 231   231 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 232   232 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 233   233 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 234   234 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 235   235 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 236   236 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 237   237 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 238   238 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 239   239 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 240   240 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 241   241 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 242   242 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 243   243 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 244   244 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 245   245 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 246   246 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 247   247 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 248   248 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 249   249 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 250   250 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 251   251 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 252   252 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 253   253 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 254   254 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 255   255 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 256   256 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 257   257 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 258   258 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 259   259 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 260   260 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 261   261 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 262   262 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 263   263 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 264   264 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 265   265 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 266   266 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 267   267 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 268   268 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 269   269 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 270   270 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 271   271 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 272   272 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 273   273 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 274   274 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 275   275 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 276   276 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 277   277 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 278   278 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 279   279 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 280   280 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 281   281 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 282   282 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 283   283 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 284   284 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 285   285 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 286   286 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 287   287 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 288   288 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 289   289 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 290   290 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 291   291 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 292   292 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 293   293 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 294   294 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 295   295 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 296   296 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 297   297 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 298   298 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 299   299 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 300   300 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 301   301 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 302   302 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 303   303 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 304   304 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 305   305 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 306   306 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 307   307 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 308   308 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 309   309 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 310   310 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 311   311 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 312   312 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 313   313 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 314   314 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 315   315 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 316   316 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 317   317 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 318   318 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 319   319 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 320   320 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 321   321 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 322   322 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 323   323 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 324   324 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 325   325 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 326   326 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 327   327 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 328   328 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 329   329 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 330   330 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 331   331 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 332   332 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 333   333 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 334   334 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 335   335 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 336   336 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 337   337 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 338   338 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 339   339 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 340   340 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 341   341 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 342   342 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 343   343 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 344   344 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 345   345 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 346   346 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 347   347 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 348   348 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 349   349 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 350   350 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 351   351 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 352   352 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 353   353 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 354   354 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 355   355 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 356   356 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 357   357 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 358   358 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 359   359 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 360   360 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 361   361 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 362   362 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 363   363 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 364   364 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 365   365 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 366   366 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 367   367 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 368   368 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 369   369 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 370   370 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 371   371 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 372   372 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 373   373 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 374   374 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 375   375 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 376   376 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 377   377 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 378   378 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 379   379 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 380   380 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 381   381 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 382   382 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 383   383 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 384   384 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 385   385 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 386   386 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 387   387 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 388   388 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 389   389 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 390   390 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 391   391 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 392   392 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 393   393 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 394   394 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 395   395 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 396   396 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 397   397 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 398   398 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 399   399 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 400   400 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 401   401 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 402   402 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 403   403 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 404   404 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 405   405 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 406   406 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 407   407 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 408   408 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 409   409 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 410   410 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 411   411 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 412   412 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 413   413 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 414   414 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 415   415 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 416   416 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 417   417 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 418   418 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 419   419 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 420   420 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 421   421 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 422   422 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 423   423 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 424   424 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 425   425 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 426   426 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 427   427 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 428   428 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 429   429 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 430   430 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 431   431 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 432   432 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 433   433 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 434   434 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 435   435 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 436   436 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 437   437 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 438   438 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 439   439 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 440   440 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 441   441 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 442   442 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 443   443 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 444   444 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 445   445 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 446   446 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 447   447 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 448   448 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 449   449 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 450   450 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 451   451 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 452   452 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 453   453 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 454   454 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 455   455 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 456   456 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 457   457 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 458   458 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 459   459 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 460   460 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 461   461 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 462   462 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 463   463 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 464   464 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 465   465 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 466   466 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 467   467 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 468   468 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 469   469 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 470   470 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 471   471 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 472   472 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 473   473 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 474   474 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 475   475 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 476   476 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 477   477 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 478   478 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 479   479 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 480   480 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 481   481 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 482   482 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 483   483 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 484   484 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 485   485 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 486   486 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 487   487 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 488   488 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 489   489 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 490   490 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 491   491 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 492   492 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 493   493 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 494   494 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 495   495 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 496   496 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 497   497 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 498   498 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 499   499 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 500   500 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 501   501 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 502   502 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 503   503 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 504   504 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 505   505 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 506   506 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 507   507 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 508   508 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 509   509 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 510   510 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 511   511 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 512   512 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 513   513 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 514   514 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 515   515 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 516   516 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 517   517 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 518   518 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 519   519 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 520   520 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 521   521 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 522   522 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 523   523 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 524   524 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 525   525 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 526   526 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 527   527 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 528   528 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 529   529 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 530   530 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 531   531 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 532   532 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 533   533 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 534   534 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 535   535 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 536   536 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 537   537 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 538   538 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 539   539 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 540   540 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 541   541 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 542   542 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 543   543 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 544   544 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 545   545 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 546   546 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 547   547 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 548   548 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 549   549 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 550   550 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 551   551 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 552   552 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 553   553 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 554   554 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 555   555 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 556   556 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 557   557 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 558   558 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 559   559 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 560   560 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 561   561 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 562   562 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 563   563 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 564   564 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 565   565 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 566   566 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 567   567 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 568   568 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 569   569 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 570   570 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 571   571 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 572   572 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 573   573 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 574   574 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 575   575 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 576   576 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 577   577 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 578   578 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 579   579 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 580   580 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 581   581 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 582   582 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 583   583 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 584   584 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 585   585 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 586   586 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 587   587 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 588   588 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 589   589 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 590   590 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 591   591 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 592   592 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 593   593 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 594   594 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 595   595 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 596   596 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 597   597 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 598   598 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 599   599 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 600   600 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 601   601 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 602   602 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 603   603 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 604   604 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 605   605 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 606   606 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 607   607 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 608   608 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 609   609 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 610   610 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 611   611 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 612   612 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 613   613 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 614   614 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 615   615 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 616   616 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 617   617 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 618   618 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 619   619 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 620   620 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 621   621 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 622   622 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 623   623 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 624   624 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 625   625 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 626   626 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 627   627 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 628   628 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 629   629 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 630   630 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 631   631 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 632   632 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 633   633 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 634   634 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 635   635 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 636   636 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 637   637 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 638   638 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 639   639 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 640   640 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 641   641 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 642   642 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 643   643 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 644   644 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 645   645 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 646   646 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 647   647 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 648   648 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 649   649 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 650   650 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 651   651 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 652   652 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 653   653 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 654   654 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 655   655 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 656   656 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 657   657 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 658   658 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 659   659 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 660   660 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 661   661 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 662   662 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 663   663 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 664   664 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 665   665 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 666   666 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 667   667 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 668   668 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 669   669 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 670   670 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 671   671 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 672   672 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 673   673 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 674   674 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 675   675 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 676   676 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 677   677 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 678   678 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 679   679 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 680   680 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 681   681 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 682   682 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 683   683 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 684   684 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 685   685 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 686   686 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 687   687 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 688   688 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 689   689 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 690   690 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 691   691 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 692   692 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 693   693 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 694   694 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 695   695 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 696   696 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 697   697 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 698   698 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 699   699 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 700   700 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 701   701 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 702   702 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 703   703 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 704   704 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 705   705 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 706   706 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 707   707 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 708   708 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 709   709 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 710   710 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 711   711 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 712   712 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 713   713 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 714   714 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 715   715 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 716   716 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 717   717 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 718   718 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 719   719 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 720   720 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 721   721 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 722   722 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 723   723 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 724   724 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 725   725 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 726   726 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 727   727 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 728   728 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 729   729 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 730   730 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 731   731 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 732   732 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 733   733 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 734   734 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 735   735 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 736   736 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 737   737 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 738   738 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 739   739 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 740   740 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 741   741 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 742   742 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 743   743 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 744   744 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 745   745 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 746   746 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 747   747 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 748   748 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 749   749 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 750   750 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 751   751 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 752   752 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 753   753 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 754   754 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 755   755 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 756   756 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 757   757 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 758   758 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 759   759 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 760   760 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 761   761 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 762   762 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 763   763 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 764   764 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 765   765 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 766   766 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 767   767 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 768   768 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 769   769 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 770   770 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 771   771 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 772   772 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 773   773 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 774   774 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 775   775 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 776   776 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 777   777 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 778   778 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 779   779 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 780   780 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 781   781 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 782   782 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 783   783 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 784   784 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 785   785 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 786   786 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 787   787 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 788   788 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 789   789 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 790   790 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 791   791 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 792   792 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 793   793 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 794   794 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 795   795 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 796   796 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 797   797 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 798   798 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 799   799 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 800   800 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 801   801 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 802   802 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 803   803 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 804   804 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 805   805 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 806   806 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 807   807 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 808   808 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 809   809 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 810   810 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 811   811 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 812   812 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 813   813 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 814   814 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 815   815 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 816   816 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 817   817 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 818   818 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 819   819 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 820   820 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 821   821 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 822   822 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 823   823 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 824   824 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 825   825 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 826   826 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 827   827 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 828   828 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 829   829 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 830   830 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 831   831 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 832   832 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 833   833 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 834   834 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 835   835 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 836   836 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 837   837 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 838   838 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 839   839 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 840   840 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 841   841 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 842   842 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 843   843 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 844   844 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 845   845 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 846   846 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 847   847 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 848   848 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 849   849 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 850   850 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 851   851 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 852   852 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 853   853 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 854   854 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 855   855 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 856   856 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 857   857 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 858   858 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 859   859 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 860   860 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 861   861 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 862   862 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 863   863 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 864   864 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 865   865 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 866   866 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 867   867 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 868   868 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 869   869 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 870   870 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 871   871 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 872   872 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 873   873 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 874   874 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 875   875 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 876   876 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 877   877 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 878   878 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 879   879 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 880   880 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 881   881 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 882   882 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 883   883 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 884   884 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 885   885 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 886   886 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 887   887 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 888   888 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 889   889 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 890   890 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 891   891 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 892   892 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 893   893 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 894   894 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 895   895 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 896   896 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 897   897 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 898   898 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 899   899 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 900   900 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 901   901 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 902   902 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 903   903 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 904   904 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 905   905 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 906   906 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 907   907 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 908   908 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 909   909 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 910   910 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 911   911 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 912   912 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 913   913 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 914   914 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 915   915 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 916   916 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 917   917 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 918   918 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 919   919 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 920   920 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 921   921 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 922   922 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 923   923 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 924   924 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 925   925 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 926   926 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 927   927 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 928   928 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 929   929 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 930   930 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 931   931 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 932   932 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 933   933 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 934   934 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 935   935 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 936   936 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 937   937 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 938   938 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 939   939 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 940   940 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 941   941 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 942   942 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 943   943 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 944   944 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 945   945 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 946   946 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 947   947 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 948   948 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 949   949 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 950   950 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 951   951 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 952   952 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 953   953 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 954   954 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 955   955 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 956   956 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 957   957 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 958   958 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 959   959 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 960   960 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 961   961 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 962   962 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 963   963 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 964   964 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 965   965 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 966   966 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 967   967 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 968   968 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 969   969 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 970   970 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 971   971 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 972   972 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 973   973 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 974   974 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 975   975 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 976   976 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 977   977 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 978   978 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 979   979 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 980   980 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 981   981 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 982   982 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 983   983 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 984   984 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 985   985 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 986   986 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 987   987 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 988   988 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 989   989 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 990   990 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 991   991 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 992   992 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 993   993 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 994   994 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 995   995 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 996   996 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 997   997 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 998   998 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 999   999 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1000 1000 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1001 1001 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1002 1002 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1003 1003 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1004 1004 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1005 1005 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1006 1006 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1007 1007 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1008 1008 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1009 1009 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1010 1010 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1011 1011 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1012 1012 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1013 1013 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1014 1014 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1015 1015 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1016 1016 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1017 1017 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1018 1018 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1019 1019 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1020 1020 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1021 1021 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1022 1022 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1023 1023 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1024 1024 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1025 1025 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1026 1026 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1027 1027 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1028 1028 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1029 1029 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1030 1030 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1031 1031 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1032 1032 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1033 1033 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1034 1034 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1035 1035 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1036 1036 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1037 1037 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1038 1038 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1039 1039 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1040 1040 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1041 1041 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1042 1042 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1043 1043 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1044 1044 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1045 1045 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1046 1046 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1047 1047 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1048 1048 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1049 1049 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1050 1050 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1051 1051 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1052 1052 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1053 1053 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1054 1054 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1055 1055 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1056 1056 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1057 1057 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1058 1058 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1059 1059 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1060 1060 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1061 1061 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1062 1062 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1063 1063 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1064 1064 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1065 1065 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1066 1066 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1067 1067 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1068 1068 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1069 1069 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1070 1070 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1071 1071 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1072 1072 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1073 1073 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1074 1074 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1075 1075 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1076 1076 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1077 1077 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1078 1078 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1079 1079 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1080 1080 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1081 1081 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1082 1082 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1083 1083 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1084 1084 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1085 1085 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1086 1086 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1087 1087 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1088 1088 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1089 1089 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1090 1090 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1091 1091 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1092 1092 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1093 1093 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1094 1094 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1095 1095 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1096 1096 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1097 1097 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1098 1098 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1099 1099 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1100 1100 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1101 1101 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1102 1102 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1103 1103 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1104 1104 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1105 1105 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1106 1106 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1107 1107 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1108 1108 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1109 1109 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1110 1110 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1111 1111 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1112 1112 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1113 1113 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1114 1114 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1115 1115 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1116 1116 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1117 1117 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1118 1118 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1119 1119 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1120 1120 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1121 1121 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1122 1122 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1123 1123 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1124 1124 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1125 1125 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1126 1126 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1127 1127 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1128 1128 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1129 1129 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1130 1130 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1131 1131 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1132 1132 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1133 1133 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1134 1134 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1135 1135 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1136 1136 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1137 1137 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1138 1138 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1139 1139 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1140 1140 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1141 1141 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1142 1142 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1143 1143 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1144 1144 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1145 1145 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1146 1146 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1147 1147 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1148 1148 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1149 1149 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1150 1150 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1151 1151 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1152 1152 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1153 1153 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1154 1154 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1155 1155 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1156 1156 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1157 1157 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1158 1158 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1159 1159 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1160 1160 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1161 1161 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1162 1162 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1163 1163 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1164 1164 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1165 1165 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1166 1166 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1167 1167 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1168 1168 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1169 1169 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1170 1170 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1171 1171 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1172 1172 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1173 1173 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1174 1174 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1175 1175 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1176 1176 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1177 1177 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1178 1178 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1179 1179 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1180 1180 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1181 1181 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1182 1182 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1183 1183 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1184 1184 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1185 1185 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1186 1186 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1187 1187 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1188 1188 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1189 1189 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1190 1190 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1191 1191 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1192 1192 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1193 1193 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1194 1194 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1195 1195 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1196 1196 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1197 1197 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1198 1198 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1199 1199 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1200 1200 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1201 1201 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1202 1202 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1203 1203 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1204 1204 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1205 1205 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1206 1206 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1207 1207 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1208 1208 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1209 1209 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1210 1210 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1211 1211 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1212 1212 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1213 1213 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1214 1214 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1215 1215 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1216 1216 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1217 1217 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1218 1218 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1219 1219 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1220 1220 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1221 1221 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1222 1222 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1223 1223 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1224 1224 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1225 1225 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1226 1226 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1227 1227 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1228 1228 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1229 1229 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1230 1230 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1231 1231 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1232 1232 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1233 1233 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1234 1234 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1235 1235 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1236 1236 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1237 1237 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1238 1238 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1239 1239 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1240 1240 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1241 1241 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1242 1242 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1243 1243 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1244 1244 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1245 1245 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1246 1246 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1247 1247 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1248 1248 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1249 1249 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1250 1250 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1251 1251 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1252 1252 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1253 1253 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1254 1254 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1255 1255 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1256 1256 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1257 1257 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1258 1258 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1259 1259 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1260 1260 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1261 1261 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1262 1262 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1263 1263 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1264 1264 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1265 1265 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1266 1266 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1267 1267 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1268 1268 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1269 1269 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1270 1270 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1271 1271 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1272 1272 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1273 1273 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1274 1274 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1275 1275 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1276 1276 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1277 1277 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1278 1278 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1279 1279 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1280 1280 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1281 1281 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1282 1282 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1283 1283 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1284 1284 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1285 1285 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1286 1286 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1287 1287 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1288 1288 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1289 1289 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1290 1290 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1291 1291 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1292 1292 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1293 1293 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1294 1294 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1295 1295 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1296 1296 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1297 1297 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1298 1298 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1299 1299 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1300 1300 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1301 1301 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1302 1302 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1303 1303 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1304 1304 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1305 1305 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1306 1306 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1307 1307 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1308 1308 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1309 1309 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1310 1310 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1311 1311 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1312 1312 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1313 1313 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1314 1314 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1315 1315 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1316 1316 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1317 1317 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1318 1318 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1319 1319 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1320 1320 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1321 1321 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1322 1322 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1323 1323 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1324 1324 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1325 1325 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1326 1326 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1327 1327 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1328 1328 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1329 1329 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1330 1330 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1331 1331 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1332 1332 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1333 1333 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1334 1334 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1335 1335 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1336 1336 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1337 1337 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1338 1338 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1339 1339 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1340 1340 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1341 1341 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1342 1342 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1343 1343 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1344 1344 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1345 1345 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1346 1346 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1347 1347 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1348 1348 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1349 1349 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1350 1350 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1351 1351 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1352 1352 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1353 1353 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1354 1354 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1355 1355 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1356 1356 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1357 1357 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1358 1358 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1359 1359 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1360 1360 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1361 1361 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1362 1362 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1363 1363 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1364 1364 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1365 1365 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1366 1366 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1367 1367 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1368 1368 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1369 1369 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1370 1370 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1371 1371 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1372 1372 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1373 1373 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1374 1374 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1375 1375 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1376 1376 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1377 1377 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1378 1378 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1379 1379 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1380 1380 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1381 1381 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1382 1382 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1383 1383 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1384 1384 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1385 1385 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1386 1386 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1387 1387 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1388 1388 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1389 1389 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1390 1390 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1391 1391 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1392 1392 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1393 1393 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1394 1394 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1395 1395 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1396 1396 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1397 1397 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1398 1398 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1399 1399 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1400 1400 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1401 1401 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1402 1402 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1403 1403 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1404 1404 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1405 1405 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1406 1406 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1407 1407 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1408 1408 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1409 1409 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1410 1410 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1411 1411 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1412 1412 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1413 1413 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1414 1414 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1415 1415 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1416 1416 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1417 1417 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1418 1418 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1419 1419 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1420 1420 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1421 1421 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1422 1422 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1423 1423 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1424 1424 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1425 1425 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1426 1426 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1427 1427 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1428 1428 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1429 1429 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1430 1430 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1431 1431 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1432 1432 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1433 1433 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1434 1434 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1435 1435 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1436 1436 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1437 1437 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1438 1438 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1439 1439 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1440 1440 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1441 1441 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1442 1442 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1443 1443 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1444 1444 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1445 1445 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1446 1446 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1447 1447 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1448 1448 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1449 1449 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1450 1450 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1451 1451 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1452 1452 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1453 1453 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1454 1454 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1455 1455 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1456 1456 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1457 1457 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1458 1458 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1459 1459 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1460 1460 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1461 1461 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1462 1462 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1463 1463 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1464 1464 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1465 1465 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1466 1466 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1467 1467 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1468 1468 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1469 1469 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1470 1470 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1471 1471 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1472 1472 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1473 1473 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1474 1474 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1475 1475 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1476 1476 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1477 1477 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1478 1478 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1479 1479 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1480 1480 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1481 1481 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1482 1482 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1483 1483 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1484 1484 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1485 1485 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1486 1486 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1487 1487 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1488 1488 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1489 1489 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1490 1490 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1491 1491 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1492 1492 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1493 1493 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1494 1494 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1495 1495 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1496 1496 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1497 1497 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1498 1498 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1499 1499 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1500 1500 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1501 1501 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1502 1502 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1503 1503 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1504 1504 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1505 1505 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1506 1506 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1507 1507 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1508 1508 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1509 1509 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1510 1510 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1511 1511 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1512 1512 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1513 1513 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1514 1514 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1515 1515 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1516 1516 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1517 1517 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1518 1518 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1519 1519 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1520 1520 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1521 1521 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1522 1522 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1523 1523 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1524 1524 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1525 1525 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1526 1526 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1527 1527 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1528 1528 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1529 1529 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1530 1530 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1531 1531 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1532 1532 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1533 1533 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1534 1534 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1535 1535 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1536 1536 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1537 1537 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1538 1538 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1539 1539 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1540 1540 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1541 1541 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1542 1542 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1543 1543 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1544 1544 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1545 1545 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1546 1546 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1547 1547 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1548 1548 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1549 1549 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1550 1550 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1551 1551 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1552 1552 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1553 1553 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1554 1554 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1555 1555 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1556 1556 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1557 1557 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1558 1558 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1559 1559 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1560 1560 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1561 1561 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1562 1562 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1563 1563 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1564 1564 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1565 1565 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1566 1566 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1567 1567 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1568 1568 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1569 1569 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1570 1570 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1571 1571 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1572 1572 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1573 1573 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1574 1574 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1575 1575 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1576 1576 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1577 1577 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1578 1578 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1579 1579 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1580 1580 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1581 1581 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1582 1582 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1583 1583 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1584 1584 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1585 1585 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1586 1586 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1587 1587 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1588 1588 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1589 1589 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1590 1590 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1591 1591 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1592 1592 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1593 1593 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1594 1594 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1595 1595 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1596 1596 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1597 1597 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1598 1598 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1599 1599 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1600 1600 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1601 1601 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1602 1602 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1603 1603 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1604 1604 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1605 1605 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1606 1606 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1607 1607 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1608 1608 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1609 1609 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1610 1610 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1611 1611 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1612 1612 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1613 1613 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1614 1614 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1615 1615 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1616 1616 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1617 1617 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1618 1618 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1619 1619 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1620 1620 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1621 1621 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1622 1622 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1623 1623 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1624 1624 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1625 1625 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1626 1626 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1627 1627 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1628 1628 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1629 1629 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1630 1630 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1631 1631 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1632 1632 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1633 1633 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1634 1634 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1635 1635 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1636 1636 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1637 1637 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1638 1638 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1639 1639 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1640 1640 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1641 1641 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1642 1642 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1643 1643 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1644 1644 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1645 1645 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1646 1646 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1647 1647 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1648 1648 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1649 1649 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1650 1650 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1651 1651 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1652 1652 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1653 1653 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1654 1654 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1655 1655 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1656 1656 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1657 1657 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1658 1658 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1659 1659 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1660 1660 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1661 1661 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1662 1662 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1663 1663 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1664 1664 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1665 1665 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1666 1666 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1667 1667 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1668 1668 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1669 1669 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1670 1670 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1671 1671 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1672 1672 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1673 1673 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1674 1674 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1675 1675 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1676 1676 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1677 1677 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1678 1678 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1679 1679 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1680 1680 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1681 1681 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1682 1682 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1683 1683 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1684 1684 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1685 1685 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1686 1686 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1687 1687 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1688 1688 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1689 1689 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1690 1690 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1691 1691 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1692 1692 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1693 1693 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1694 1694 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1695 1695 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1696 1696 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1697 1697 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1698 1698 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1699 1699 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1700 1700 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1701 1701 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1702 1702 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1703 1703 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1704 1704 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1705 1705 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1706 1706 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1707 1707 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1708 1708 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1709 1709 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1710 1710 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1711 1711 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1712 1712 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1713 1713 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1714 1714 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1715 1715 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1716 1716 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1717 1717 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1718 1718 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1719 1719 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1720 1720 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1721 1721 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1722 1722 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1723 1723 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1724 1724 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1725 1725 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1726 1726 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1727 1727 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1728 1728 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1729 1729 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1730 1730 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1731 1731 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1732 1732 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1733 1733 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1734 1734 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1735 1735 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1736 1736 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1737 1737 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1738 1738 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1739 1739 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1740 1740 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1741 1741 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1742 1742 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1743 1743 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1744 1744 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1745 1745 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1746 1746 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1747 1747 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1748 1748 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1749 1749 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1750 1750 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1751 1751 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1752 1752 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1753 1753 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1754 1754 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1755 1755 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1756 1756 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1757 1757 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1758 1758 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1759 1759 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1760 1760 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1761 1761 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1762 1762 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1763 1763 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1764 1764 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1765 1765 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1766 1766 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1767 1767 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1768 1768 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1769 1769 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1770 1770 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1771 1771 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1772 1772 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1773 1773 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1774 1774 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1775 1775 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1776 1776 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1777 1777 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1778 1778 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1779 1779 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1780 1780 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1781 1781 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1782 1782 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1783 1783 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1784 1784 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1785 1785 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1786 1786 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1787 1787 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1788 1788 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1789 1789 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1790 1790 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1791 1791 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1792 1792 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1793 1793 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1794 1794 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1795 1795 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1796 1796 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1797 1797 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1798 1798 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1799 1799 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1800 1800 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1801 1801 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1802 1802 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1803 1803 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1804 1804 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1805 1805 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1806 1806 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1807 1807 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1808 1808 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1809 1809 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1810 1810 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1811 1811 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1812 1812 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1813 1813 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1814 1814 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1815 1815 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1816 1816 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1817 1817 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1818 1818 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1819 1819 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1820 1820 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1821 1821 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1822 1822 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1823 1823 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1824 1824 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1825 1825 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1826 1826 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1827 1827 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1828 1828 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1829 1829 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1830 1830 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1831 1831 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1832 1832 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1833 1833 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1834 1834 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1835 1835 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1836 1836 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1837 1837 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1838 1838 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1839 1839 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1840 1840 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1841 1841 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1842 1842 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1843 1843 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1844 1844 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1845 1845 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1846 1846 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1847 1847 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1848 1848 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1849 1849 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1850 1850 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1851 1851 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1852 1852 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1853 1853 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1854 1854 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1855 1855 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1856 1856 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1857 1857 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1858 1858 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1859 1859 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1860 1860 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1861 1861 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1862 1862 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1863 1863 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1864 1864 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1865 1865 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1866 1866 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1867 1867 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1868 1868 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1869 1869 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1870 1870 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1871 1871 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1872 1872 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1873 1873 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1874 1874 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1875 1875 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1876 1876 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1877 1877 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1878 1878 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1879 1879 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1880 1880 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1881 1881 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1882 1882 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1883 1883 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1884 1884 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1885 1885 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1886 1886 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1887 1887 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1888 1888 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1889 1889 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1890 1890 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1891 1891 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1892 1892 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1893 1893 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1894 1894 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1895 1895 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1896 1896 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1897 1897 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1898 1898 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1899 1899 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1900 1900 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1901 1901 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1902 1902 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1903 1903 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1904 1904 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1905 1905 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1906 1906 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1907 1907 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1908 1908 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1909 1909 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1910 1910 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1911 1911 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1912 1912 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1913 1913 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1914 1914 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1915 1915 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1916 1916 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1917 1917 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1918 1918 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1919 1919 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1920 1920 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1921 1921 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1922 1922 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1923 1923 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1924 1924 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1925 1925 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1926 1926 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1927 1927 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1928 1928 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1929 1929 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1930 1930 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1931 1931 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1932 1932 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1933 1933 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1934 1934 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1935 1935 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1936 1936 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1937 1937 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1938 1938 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1939 1939 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1940 1940 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1941 1941 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1942 1942 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1943 1943 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1944 1944 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1945 1945 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1946 1946 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1947 1947 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1948 1948 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1949 1949 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1950 1950 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1951 1951 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1952 1952 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1953 1953 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1954 1954 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1955 1955 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1956 1956 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1957 1957 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1958 1958 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1959 1959 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1960 1960 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1961 1961 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1962 1962 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1963 1963 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1964 1964 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1965 1965 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1966 1966 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1967 1967 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1968 1968 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1969 1969 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1970 1970 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1971 1971 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1972 1972 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1973 1973 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1974 1974 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1975 1975 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1976 1976 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1977 1977 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1978 1978 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1979 1979 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1980 1980 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1981 1981 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1982 1982 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1983 1983 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1984 1984 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1985 1985 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1986 1986 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1987 1987 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1988 1988 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1989 1989 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1990 1990 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1991 1991 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1992 1992 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1993 1993 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1994 1994 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1995 1995 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1996 1996 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1997 1997 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1998 1998 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1999 1999 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2000 2000 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2001 2001 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2002 2002 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2003 2003 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2004 2004 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2005 2005 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2006 2006 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2007 2007 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2008 2008 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2009 2009 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2010 2010 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2011 2011 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2012 2012 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2013 2013 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2014 2014 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2015 2015 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2016 2016 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2017 2017 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2018 2018 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2019 2019 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2020 2020 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2021 2021 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2022 2022 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2023 2023 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2024 2024 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2025 2025 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2026 2026 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2027 2027 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2028 2028 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2029 2029 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2030 2030 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2031 2031 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2032 2032 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2033 2033 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2034 2034 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2035 2035 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2036 2036 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2037 2037 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2038 2038 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2039 2039 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2040 2040 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2041 2041 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2042 2042 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2043 2043 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2044 2044 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2045 2045 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2046 2046 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2047 2047 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2048 2048 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2049 2049 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2050 2050 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2051 2051 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2052 2052 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2053 2053 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2054 2054 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2055 2055 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2056 2056 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2057 2057 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2058 2058 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2059 2059 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2060 2060 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2061 2061 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2062 2062 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2063 2063 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2064 2064 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2065 2065 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2066 2066 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2067 2067 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2068 2068 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2069 2069 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2070 2070 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2071 2071 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2072 2072 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2073 2073 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2074 2074 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2075 2075 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2076 2076 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2077 2077 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2078 2078 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2079 2079 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2080 2080 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2081 2081 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2082 2082 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2083 2083 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2084 2084 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2085 2085 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2086 2086 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2087 2087 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2088 2088 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2089 2089 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2090 2090 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2091 2091 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2092 2092 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2093 2093 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2094 2094 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2095 2095 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2096 2096 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2097 2097 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2098 2098 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2099 2099 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2100 2100 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2101 2101 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2102 2102 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2103 2103 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2104 2104 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2105 2105 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2106 2106 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2107 2107 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2108 2108 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2109 2109 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2110 2110 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2111 2111 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2112 2112 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2113 2113 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2114 2114 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2115 2115 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2116 2116 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2117 2117 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2118 2118 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2119 2119 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2120 2120 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2121 2121 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2122 2122 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2123 2123 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2124 2124 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2125 2125 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2126 2126 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2127 2127 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2128 2128 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2129 2129 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2130 2130 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2131 2131 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2132 2132 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2133 2133 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2134 2134 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2135 2135 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2136 2136 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2137 2137 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2138 2138 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2139 2139 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2140 2140 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2141 2141 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2142 2142 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2143 2143 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2144 2144 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2145 2145 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2146 2146 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2147 2147 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2148 2148 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2149 2149 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2150 2150 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2151 2151 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2152 2152 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2153 2153 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2154 2154 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2155 2155 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2156 2156 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2157 2157 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2158 2158 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2159 2159 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2160 2160 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2161 2161 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2162 2162 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2163 2163 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2164 2164 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2165 2165 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2166 2166 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2167 2167 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2168 2168 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2169 2169 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2170 2170 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2171 2171 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2172 2172 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2173 2173 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2174 2174 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2175 2175 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2176 2176 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2177 2177 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2178 2178 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2179 2179 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2180 2180 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2181 2181 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2182 2182 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2183 2183 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2184 2184 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2185 2185 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2186 2186 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2187 2187 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2188 2188 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2189 2189 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2190 2190 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2191 2191 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2192 2192 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2193 2193 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2194 2194 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2195 2195 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2196 2196 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2197 2197 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2198 2198 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2199 2199 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2200 2200 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2201 2201 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2202 2202 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2203 2203 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2204 2204 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2205 2205 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2206 2206 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2207 2207 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2208 2208 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2209 2209 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2210 2210 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2211 2211 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2212 2212 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2213 2213 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2214 2214 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2215 2215 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2216 2216 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2217 2217 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2218 2218 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2219 2219 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2220 2220 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2221 2221 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2222 2222 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2223 2223 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2224 2224 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2225 2225 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2226 2226 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2227 2227 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2228 2228 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2229 2229 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2230 2230 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2231 2231 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2232 2232 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2233 2233 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2234 2234 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2235 2235 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2236 2236 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2237 2237 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2238 2238 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2239 2239 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2240 2240 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2241 2241 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2242 2242 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2243 2243 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2244 2244 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2245 2245 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2246 2246 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2247 2247 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2248 2248 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2249 2249 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2250 2250 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2251 2251 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2252 2252 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2253 2253 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2254 2254 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2255 2255 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2256 2256 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2257 2257 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2258 2258 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2259 2259 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2260 2260 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2261 2261 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2262 2262 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2263 2263 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2264 2264 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2265 2265 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2266 2266 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2267 2267 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2268 2268 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2269 2269 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2270 2270 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2271 2271 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2272 2272 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2273 2273 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2274 2274 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2275 2275 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2276 2276 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2277 2277 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2278 2278 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2279 2279 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2280 2280 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2281 2281 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2282 2282 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2283 2283 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2284 2284 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2285 2285 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2286 2286 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2287 2287 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2288 2288 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2289 2289 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2290 2290 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2291 2291 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2292 2292 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2293 2293 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2294 2294 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2295 2295 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2296 2296 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2297 2297 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2298 2298 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2299 2299 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2300 2300 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2301 2301 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2302 2302 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2303 2303 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2304 2304 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2305 2305 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2306 2306 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2307 2307 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2308 2308 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2309 2309 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2310 2310 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2311 2311 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2312 2312 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2313 2313 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2314 2314 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2315 2315 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2316 2316 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2317 2317 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2318 2318 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2319 2319 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2320 2320 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2321 2321 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2322 2322 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2323 2323 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2324 2324 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2325 2325 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2326 2326 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2327 2327 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2328 2328 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2329 2329 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2330 2330 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2331 2331 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2332 2332 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2333 2333 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2334 2334 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2335 2335 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2336 2336 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2337 2337 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2338 2338 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2339 2339 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2340 2340 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2341 2341 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2342 2342 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2343 2343 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2344 2344 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2345 2345 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2346 2346 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2347 2347 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2348 2348 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2349 2349 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2350 2350 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2351 2351 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2352 2352 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2353 2353 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2354 2354 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2355 2355 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2356 2356 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2357 2357 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2358 2358 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2359 2359 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2360 2360 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2361 2361 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2362 2362 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2363 2363 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2364 2364 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2365 2365 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2366 2366 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2367 2367 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2368 2368 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2369 2369 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2370 2370 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2371 2371 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2372 2372 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2373 2373 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2374 2374 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2375 2375 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2376 2376 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2377 2377 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2378 2378 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2379 2379 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2380 2380 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2381 2381 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2382 2382 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2383 2383 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2384 2384 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2385 2385 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2386 2386 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2387 2387 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2388 2388 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2389 2389 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2390 2390 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2391 2391 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2392 2392 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2393 2393 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2394 2394 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2395 2395 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2396 2396 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2397 2397 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2398 2398 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2399 2399 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2400 2400 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2401 2401 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2402 2402 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2403 2403 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2404 2404 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2405 2405 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2406 2406 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2407 2407 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2408 2408 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2409 2409 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2410 2410 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2411 2411 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2412 2412 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2413 2413 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2414 2414 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2415 2415 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2416 2416 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2417 2417 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2418 2418 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2419 2419 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2420 2420 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2421 2421 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2422 2422 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2423 2423 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2424 2424 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2425 2425 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2426 2426 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2427 2427 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2428 2428 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2429 2429 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2430 2430 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2431 2431 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2432 2432 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2433 2433 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2434 2434 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2435 2435 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2436 2436 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2437 2437 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2438 2438 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2439 2439 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2440 2440 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2441 2441 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2442 2442 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2443 2443 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2444 2444 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2445 2445 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2446 2446 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2447 2447 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2448 2448 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2449 2449 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2450 2450 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2451 2451 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2452 2452 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2453 2453 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2454 2454 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2455 2455 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2456 2456 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2457 2457 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2458 2458 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2459 2459 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2460 2460 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2461 2461 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2462 2462 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2463 2463 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2464 2464 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2465 2465 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2466 2466 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2467 2467 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2468 2468 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2469 2469 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2470 2470 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2471 2471 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2472 2472 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2473 2473 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2474 2474 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2475 2475 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2476 2476 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2477 2477 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2478 2478 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2479 2479 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2480 2480 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2481 2481 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2482 2482 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2483 2483 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2484 2484 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2485 2485 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2486 2486 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2487 2487 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2488 2488 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2489 2489 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2490 2490 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2491 2491 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2492 2492 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2493 2493 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2494 2494 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2495 2495 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2496 2496 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2497 2497 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2498 2498 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2499 2499 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2500 2500 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2501 2501 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2502 2502 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2503 2503 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2504 2504 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2505 2505 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2506 2506 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2507 2507 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2508 2508 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2509 2509 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2510 2510 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2511 2511 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2512 2512 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2513 2513 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2514 2514 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2515 2515 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2516 2516 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2517 2517 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2518 2518 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2519 2519 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2520 2520 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2521 2521 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2522 2522 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2523 2523 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2524 2524 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2525 2525 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2526 2526 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2527 2527 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2528 2528 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2529 2529 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2530 2530 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2531 2531 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2532 2532 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2533 2533 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2534 2534 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2535 2535 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2536 2536 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2537 2537 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2538 2538 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2539 2539 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2540 2540 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2541 2541 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2542 2542 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2543 2543 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2544 2544 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2545 2545 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2546 2546 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2547 2547 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2548 2548 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2549 2549 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2550 2550 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2551 2551 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2552 2552 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2553 2553 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2554 2554 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2555 2555 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2556 2556 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2557 2557 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2558 2558 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2559 2559 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2560 2560 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2561 2561 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2562 2562 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2563 2563 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2564 2564 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2565 2565 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2566 2566 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2567 2567 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2568 2568 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2569 2569 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2570 2570 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2571 2571 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2572 2572 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2573 2573 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2574 2574 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2575 2575 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2576 2576 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2577 2577 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2578 2578 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2579 2579 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2580 2580 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2581 2581 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2582 2582 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2583 2583 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2584 2584 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2585 2585 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2586 2586 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2587 2587 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2588 2588 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2589 2589 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2590 2590 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2591 2591 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2592 2592 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2593 2593 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2594 2594 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2595 2595 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2596 2596 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2597 2597 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2598 2598 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2599 2599 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2600 2600 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2601 2601 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2602 2602 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2603 2603 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2604 2604 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2605 2605 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2606 2606 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2607 2607 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2608 2608 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2609 2609 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2610 2610 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2611 2611 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2612 2612 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2613 2613 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2614 2614 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2615 2615 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2616 2616 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2617 2617 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2618 2618 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2619 2619 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2620 2620 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2621 2621 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2622 2622 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2623 2623 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2624 2624 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2625 2625 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2626 2626 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2627 2627 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2628 2628 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2629 2629 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2630 2630 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2631 2631 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2632 2632 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2633 2633 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2634 2634 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2635 2635 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2636 2636 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2637 2637 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2638 2638 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2639 2639 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2640 2640 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2641 2641 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2642 2642 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2643 2643 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2644 2644 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2645 2645 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2646 2646 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2647 2647 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2648 2648 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2649 2649 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2650 2650 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2651 2651 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2652 2652 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2653 2653 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2654 2654 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2655 2655 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2656 2656 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2657 2657 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2658 2658 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2659 2659 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2660 2660 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2661 2661 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2662 2662 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2663 2663 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2664 2664 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2665 2665 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2666 2666 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2667 2667 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2668 2668 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2669 2669 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2670 2670 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2671 2671 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2672 2672 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2673 2673 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2674 2674 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2675 2675 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2676 2676 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2677 2677 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2678 2678 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2679 2679 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2680 2680 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2681 2681 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2682 2682 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2683 2683 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2684 2684 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2685 2685 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2686 2686 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2687 2687 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2688 2688 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2689 2689 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2690 2690 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2691 2691 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2692 2692 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2693 2693 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2694 2694 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2695 2695 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2696 2696 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2697 2697 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2698 2698 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2699 2699 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2700 2700 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2701 2701 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2702 2702 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2703 2703 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2704 2704 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2705 2705 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2706 2706 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2707 2707 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2708 2708 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2709 2709 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2710 2710 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2711 2711 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2712 2712 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2713 2713 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2714 2714 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2715 2715 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2716 2716 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2717 2717 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2718 2718 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2719 2719 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2720 2720 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2721 2721 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2722 2722 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2723 2723 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2724 2724 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2725 2725 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2726 2726 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2727 2727 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2728 2728 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2729 2729 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2730 2730 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2731 2731 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2732 2732 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2733 2733 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2734 2734 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2735 2735 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2736 2736 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2737 2737 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2738 2738 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2739 2739 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2740 2740 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2741 2741 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2742 2742 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2743 2743 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2744 2744 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2745 2745 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2746 2746 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2747 2747 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2748 2748 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2749 2749 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2750 2750 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2751 2751 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2752 2752 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2753 2753 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2754 2754 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2755 2755 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2756 2756 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2757 2757 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2758 2758 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2759 2759 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2760 2760 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2761 2761 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2762 2762 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2763 2763 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2764 2764 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2765 2765 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2766 2766 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2767 2767 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2768 2768 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2769 2769 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2770 2770 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2771 2771 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2772 2772 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2773 2773 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2774 2774 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2775 2775 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2776 2776 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2777 2777 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2778 2778 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2779 2779 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2780 2780 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2781 2781 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2782 2782 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2783 2783 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2784 2784 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2785 2785 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2786 2786 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2787 2787 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2788 2788 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2789 2789 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2790 2790 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2791 2791 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2792 2792 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2793 2793 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2794 2794 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2795 2795 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2796 2796 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2797 2797 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2798 2798 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2799 2799 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2800 2800 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2801 2801 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2802 2802 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2803 2803 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2804 2804 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2805 2805 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2806 2806 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2807 2807 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2808 2808 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2809 2809 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2810 2810 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2811 2811 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2812 2812 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2813 2813 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2814 2814 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2815 2815 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2816 2816 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2817 2817 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2818 2818 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2819 2819 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2820 2820 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2821 2821 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2822 2822 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2823 2823 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2824 2824 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2825 2825 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2826 2826 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2827 2827 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2828 2828 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2829 2829 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2830 2830 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2831 2831 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2832 2832 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2833 2833 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2834 2834 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2835 2835 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2836 2836 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2837 2837 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2838 2838 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2839 2839 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2840 2840 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2841 2841 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2842 2842 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2843 2843 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2844 2844 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2845 2845 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2846 2846 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2847 2847 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2848 2848 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2849 2849 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2850 2850 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2851 2851 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2852 2852 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2853 2853 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2854 2854 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2855 2855 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2856 2856 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2857 2857 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2858 2858 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2859 2859 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2860 2860 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2861 2861 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2862 2862 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2863 2863 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2864 2864 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2865 2865 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2866 2866 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2867 2867 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2868 2868 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2869 2869 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2870 2870 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2871 2871 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2872 2872 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2873 2873 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2874 2874 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2875 2875 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2876 2876 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2877 2877 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2878 2878 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2879 2879 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2880 2880 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2881 2881 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2882 2882 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2883 2883 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2884 2884 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2885 2885 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2886 2886 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2887 2887 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2888 2888 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2889 2889 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2890 2890 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2891 2891 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2892 2892 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2893 2893 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2894 2894 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2895 2895 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2896 2896 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2897 2897 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2898 2898 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2899 2899 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2900 2900 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2901 2901 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2902 2902 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2903 2903 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2904 2904 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2905 2905 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2906 2906 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2907 2907 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2908 2908 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2909 2909 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2910 2910 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2911 2911 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2912 2912 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2913 2913 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2914 2914 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2915 2915 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2916 2916 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2917 2917 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2918 2918 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2919 2919 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2920 2920 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2921 2921 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2922 2922 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2923 2923 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2924 2924 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2925 2925 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2926 2926 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2927 2927 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2928 2928 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2929 2929 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2930 2930 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2931 2931 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2932 2932 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2933 2933 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2934 2934 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2935 2935 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2936 2936 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2937 2937 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2938 2938 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2939 2939 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2940 2940 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2941 2941 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2942 2942 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2943 2943 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2944 2944 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2945 2945 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2946 2946 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2947 2947 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2948 2948 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2949 2949 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2950 2950 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2951 2951 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2952 2952 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2953 2953 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2954 2954 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2955 2955 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2956 2956 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2957 2957 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2958 2958 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2959 2959 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2960 2960 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2961 2961 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2962 2962 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2963 2963 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2964 2964 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2965 2965 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2966 2966 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2967 2967 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2968 2968 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2969 2969 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2970 2970 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2971 2971 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2972 2972 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2973 2973 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2974 2974 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2975 2975 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2976 2976 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2977 2977 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2978 2978 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2979 2979 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2980 2980 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2981 2981 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2982 2982 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2983 2983 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2984 2984 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2985 2985 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2986 2986 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2987 2987 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2988 2988 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2989 2989 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2990 2990 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2991 2991 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2992 2992 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2993 2993 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2994 2994 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2995 2995 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2996 2996 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2997 2997 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2998 2998 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2999 2999 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3000 3000 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3001 3001 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3002 3002 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3003 3003 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3004 3004 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3005 3005 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3006 3006 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3007 3007 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3008 3008 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3009 3009 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3010 3010 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3011 3011 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3012 3012 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3013 3013 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3014 3014 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3015 3015 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3016 3016 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3017 3017 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3018 3018 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3019 3019 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3020 3020 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3021 3021 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3022 3022 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3023 3023 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3024 3024 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3025 3025 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3026 3026 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3027 3027 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3028 3028 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3029 3029 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3030 3030 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3031 3031 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3032 3032 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3033 3033 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3034 3034 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3035 3035 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3036 3036 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3037 3037 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3038 3038 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3039 3039 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3040 3040 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3041 3041 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3042 3042 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3043 3043 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3044 3044 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3045 3045 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3046 3046 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3047 3047 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3048 3048 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3049 3049 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3050 3050 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3051 3051 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3052 3052 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3053 3053 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3054 3054 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3055 3055 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3056 3056 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3057 3057 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3058 3058 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3059 3059 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3060 3060 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3061 3061 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3062 3062 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3063 3063 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3064 3064 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3065 3065 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3066 3066 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3067 3067 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3068 3068 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3069 3069 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3070 3070 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3071 3071 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3072 3072 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3073 3073 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3074 3074 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3075 3075 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3076 3076 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3077 3077 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3078 3078 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3079 3079 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3080 3080 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3081 3081 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3082 3082 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3083 3083 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3084 3084 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3085 3085 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3086 3086 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3087 3087 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3088 3088 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3089 3089 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3090 3090 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3091 3091 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3092 3092 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3093 3093 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3094 3094 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3095 3095 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3096 3096 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3097 3097 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3098 3098 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3099 3099 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3100 3100 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3101 3101 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3102 3102 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3103 3103 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3104 3104 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3105 3105 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3106 3106 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3107 3107 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3108 3108 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3109 3109 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3110 3110 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3111 3111 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3112 3112 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3113 3113 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3114 3114 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3115 3115 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3116 3116 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3117 3117 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3118 3118 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3119 3119 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3120 3120 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3121 3121 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3122 3122 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3123 3123 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3124 3124 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3125 3125 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3126 3126 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3127 3127 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3128 3128 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3129 3129 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3130 3130 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3131 3131 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3132 3132 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3133 3133 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3134 3134 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3135 3135 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3136 3136 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3137 3137 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3138 3138 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3139 3139 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3140 3140 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3141 3141 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3142 3142 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3143 3143 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3144 3144 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3145 3145 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3146 3146 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3147 3147 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3148 3148 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3149 3149 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3150 3150 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3151 3151 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3152 3152 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3153 3153 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3154 3154 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3155 3155 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3156 3156 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3157 3157 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3158 3158 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3159 3159 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3160 3160 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3161 3161 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3162 3162 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3163 3163 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3164 3164 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3165 3165 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3166 3166 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3167 3167 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3168 3168 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3169 3169 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3170 3170 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3171 3171 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3172 3172 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3173 3173 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3174 3174 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3175 3175 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3176 3176 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3177 3177 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3178 3178 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3179 3179 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3180 3180 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3181 3181 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3182 3182 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3183 3183 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3184 3184 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3185 3185 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3186 3186 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3187 3187 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3188 3188 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3189 3189 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3190 3190 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3191 3191 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3192 3192 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3193 3193 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3194 3194 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3195 3195 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3196 3196 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3197 3197 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3198 3198 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3199 3199 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3200 3200 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3201 3201 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3202 3202 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3203 3203 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3204 3204 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3205 3205 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3206 3206 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3207 3207 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3208 3208 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3209 3209 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3210 3210 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3211 3211 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3212 3212 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3213 3213 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3214 3214 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3215 3215 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3216 3216 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3217 3217 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3218 3218 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3219 3219 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3220 3220 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3221 3221 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3222 3222 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3223 3223 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3224 3224 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3225 3225 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3226 3226 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3227 3227 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3228 3228 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3229 3229 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3230 3230 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3231 3231 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3232 3232 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3233 3233 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3234 3234 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3235 3235 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3236 3236 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3237 3237 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3238 3238 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3239 3239 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3240 3240 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3241 3241 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3242 3242 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3243 3243 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3244 3244 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3245 3245 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3246 3246 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3247 3247 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3248 3248 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3249 3249 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3250 3250 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3251 3251 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3252 3252 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3253 3253 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3254 3254 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3255 3255 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3256 3256 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3257 3257 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3258 3258 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3259 3259 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3260 3260 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3261 3261 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3262 3262 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3263 3263 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3264 3264 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3265 3265 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3266 3266 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3267 3267 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3268 3268 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3269 3269 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3270 3270 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3271 3271 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3272 3272 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3273 3273 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3274 3274 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3275 3275 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3276 3276 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3277 3277 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3278 3278 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3279 3279 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3280 3280 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3281 3281 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3282 3282 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3283 3283 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3284 3284 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3285 3285 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3286 3286 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3287 3287 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3288 3288 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3289 3289 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3290 3290 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3291 3291 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3292 3292 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3293 3293 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3294 3294 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3295 3295 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3296 3296 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3297 3297 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3298 3298 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3299 3299 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3300 3300 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3301 3301 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3302 3302 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3303 3303 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3304 3304 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3305 3305 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3306 3306 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3307 3307 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3308 3308 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3309 3309 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3310 3310 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3311 3311 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3312 3312 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3313 3313 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3314 3314 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3315 3315 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3316 3316 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3317 3317 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3318 3318 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3319 3319 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3320 3320 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3321 3321 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3322 3322 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3323 3323 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3324 3324 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3325 3325 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3326 3326 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3327 3327 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3328 3328 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3329 3329 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3330 3330 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3331 3331 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3332 3332 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3333 3333 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3334 3334 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3335 3335 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3336 3336 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3337 3337 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3338 3338 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3339 3339 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3340 3340 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3341 3341 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3342 3342 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3343 3343 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3344 3344 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3345 3345 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3346 3346 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3347 3347 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3348 3348 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3349 3349 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3350 3350 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3351 3351 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3352 3352 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3353 3353 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3354 3354 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3355 3355 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3356 3356 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3357 3357 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3358 3358 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3359 3359 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3360 3360 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3361 3361 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3362 3362 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3363 3363 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3364 3364 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3365 3365 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3366 3366 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3367 3367 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3368 3368 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3369 3369 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3370 3370 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3371 3371 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3372 3372 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3373 3373 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3374 3374 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3375 3375 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3376 3376 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3377 3377 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3378 3378 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3379 3379 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3380 3380 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3381 3381 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3382 3382 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3383 3383 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3384 3384 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3385 3385 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3386 3386 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3387 3387 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3388 3388 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3389 3389 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3390 3390 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3391 3391 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3392 3392 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3393 3393 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3394 3394 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3395 3395 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3396 3396 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3397 3397 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3398 3398 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3399 3399 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3400 3400 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3401 3401 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3402 3402 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3403 3403 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3404 3404 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3405 3405 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3406 3406 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3407 3407 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3408 3408 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3409 3409 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3410 3410 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3411 3411 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3412 3412 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3413 3413 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3414 3414 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3415 3415 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3416 3416 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3417 3417 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3418 3418 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3419 3419 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3420 3420 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3421 3421 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3422 3422 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3423 3423 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3424 3424 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3425 3425 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3426 3426 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3427 3427 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3428 3428 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3429 3429 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3430 3430 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3431 3431 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3432 3432 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3433 3433 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3434 3434 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3435 3435 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3436 3436 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3437 3437 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3438 3438 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3439 3439 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3440 3440 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3441 3441 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3442 3442 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3443 3443 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3444 3444 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3445 3445 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3446 3446 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3447 3447 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3448 3448 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3449 3449 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3450 3450 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3451 3451 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3452 3452 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3453 3453 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3454 3454 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3455 3455 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3456 3456 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3457 3457 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3458 3458 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3459 3459 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3460 3460 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3461 3461 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3462 3462 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3463 3463 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3464 3464 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3465 3465 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3466 3466 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3467 3467 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3468 3468 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3469 3469 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3470 3470 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3471 3471 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3472 3472 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3473 3473 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3474 3474 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3475 3475 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3476 3476 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3477 3477 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3478 3478 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3479 3479 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3480 3480 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3481 3481 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3482 3482 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3483 3483 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3484 3484 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3485 3485 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3486 3486 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3487 3487 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3488 3488 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3489 3489 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3490 3490 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3491 3491 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3492 3492 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3493 3493 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3494 3494 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3495 3495 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3496 3496 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3497 3497 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3498 3498 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3499 3499 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3500 3500 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3501 3501 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3502 3502 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3503 3503 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3504 3504 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3505 3505 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3506 3506 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3507 3507 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3508 3508 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3509 3509 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3510 3510 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3511 3511 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3512 3512 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3513 3513 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3514 3514 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3515 3515 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3516 3516 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3517 3517 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3518 3518 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3519 3519 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3520 3520 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3521 3521 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3522 3522 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3523 3523 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3524 3524 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3525 3525 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3526 3526 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3527 3527 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3528 3528 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3529 3529 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3530 3530 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3531 3531 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3532 3532 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3533 3533 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3534 3534 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3535 3535 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3536 3536 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3537 3537 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3538 3538 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3539 3539 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3540 3540 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3541 3541 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3542 3542 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3543 3543 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3544 3544 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3545 3545 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3546 3546 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3547 3547 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3548 3548 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3549 3549 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3550 3550 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3551 3551 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3552 3552 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3553 3553 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3554 3554 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3555 3555 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3556 3556 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3557 3557 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3558 3558 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3559 3559 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3560 3560 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3561 3561 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3562 3562 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3563 3563 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3564 3564 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3565 3565 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3566 3566 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3567 3567 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3568 3568 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3569 3569 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3570 3570 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3571 3571 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3572 3572 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3573 3573 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3574 3574 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3575 3575 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3576 3576 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3577 3577 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3578 3578 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3579 3579 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3580 3580 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3581 3581 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3582 3582 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3583 3583 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3584 3584 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3585 3585 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3586 3586 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3587 3587 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3588 3588 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3589 3589 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3590 3590 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3591 3591 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3592 3592 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3593 3593 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3594 3594 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3595 3595 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3596 3596 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3597 3597 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3598 3598 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3599 3599 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3600 3600 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3601 3601 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3602 3602 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3603 3603 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3604 3604 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3605 3605 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3606 3606 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3607 3607 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3608 3608 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3609 3609 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3610 3610 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3611 3611 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3612 3612 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3613 3613 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3614 3614 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3615 3615 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3616 3616 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3617 3617 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3618 3618 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3619 3619 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3620 3620 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3621 3621 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3622 3622 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3623 3623 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3624 3624 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3625 3625 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3626 3626 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3627 3627 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3628 3628 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3629 3629 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3630 3630 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3631 3631 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3632 3632 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3633 3633 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3634 3634 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3635 3635 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3636 3636 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3637 3637 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3638 3638 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3639 3639 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3640 3640 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3641 3641 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3642 3642 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3643 3643 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3644 3644 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3645 3645 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3646 3646 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3647 3647 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3648 3648 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3649 3649 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3650 3650 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3651 3651 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3652 3652 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3653 3653 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3654 3654 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3655 3655 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3656 3656 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3657 3657 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3658 3658 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3659 3659 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3660 3660 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3661 3661 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3662 3662 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3663 3663 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3664 3664 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3665 3665 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3666 3666 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3667 3667 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3668 3668 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3669 3669 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3670 3670 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3671 3671 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3672 3672 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3673 3673 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3674 3674 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3675 3675 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3676 3676 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3677 3677 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3678 3678 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3679 3679 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3680 3680 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3681 3681 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3682 3682 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3683 3683 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3684 3684 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3685 3685 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3686 3686 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3687 3687 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3688 3688 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3689 3689 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3690 3690 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3691 3691 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3692 3692 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3693 3693 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3694 3694 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3695 3695 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3696 3696 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3697 3697 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3698 3698 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3699 3699 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3700 3700 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3701 3701 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3702 3702 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3703 3703 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3704 3704 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3705 3705 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3706 3706 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3707 3707 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3708 3708 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3709 3709 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3710 3710 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3711 3711 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3712 3712 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3713 3713 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3714 3714 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3715 3715 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3716 3716 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3717 3717 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3718 3718 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3719 3719 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3720 3720 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3721 3721 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3722 3722 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3723 3723 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3724 3724 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3725 3725 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3726 3726 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3727 3727 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3728 3728 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3729 3729 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3730 3730 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3731 3731 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3732 3732 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3733 3733 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3734 3734 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3735 3735 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3736 3736 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3737 3737 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3738 3738 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3739 3739 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3740 3740 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3741 3741 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3742 3742 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3743 3743 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3744 3744 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3745 3745 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3746 3746 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3747 3747 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3748 3748 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3749 3749 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3750 3750 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3751 3751 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3752 3752 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3753 3753 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3754 3754 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3755 3755 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3756 3756 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3757 3757 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3758 3758 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3759 3759 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3760 3760 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3761 3761 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3762 3762 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3763 3763 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3764 3764 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3765 3765 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3766 3766 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3767 3767 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3768 3768 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3769 3769 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3770 3770 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3771 3771 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3772 3772 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3773 3773 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3774 3774 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3775 3775 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3776 3776 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3777 3777 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3778 3778 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3779 3779 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3780 3780 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3781 3781 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3782 3782 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3783 3783 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3784 3784 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3785 3785 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3786 3786 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3787 3787 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3788 3788 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3789 3789 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3790 3790 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3791 3791 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3792 3792 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3793 3793 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3794 3794 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3795 3795 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3796 3796 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3797 3797 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3798 3798 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3799 3799 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3800 3800 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3801 3801 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3802 3802 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3803 3803 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3804 3804 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3805 3805 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3806 3806 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3807 3807 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3808 3808 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3809 3809 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3810 3810 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3811 3811 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3812 3812 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3813 3813 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3814 3814 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3815 3815 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3816 3816 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3817 3817 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3818 3818 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3819 3819 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3820 3820 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3821 3821 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3822 3822 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3823 3823 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3824 3824 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3825 3825 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3826 3826 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3827 3827 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3828 3828 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3829 3829 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3830 3830 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3831 3831 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3832 3832 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3833 3833 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3834 3834 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3835 3835 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3836 3836 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3837 3837 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3838 3838 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3839 3839 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3840 3840 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3841 3841 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3842 3842 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3843 3843 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3844 3844 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3845 3845 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3846 3846 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3847 3847 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3848 3848 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3849 3849 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3850 3850 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3851 3851 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3852 3852 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3853 3853 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3854 3854 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3855 3855 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3856 3856 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3857 3857 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3858 3858 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3859 3859 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3860 3860 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3861 3861 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3862 3862 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3863 3863 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3864 3864 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3865 3865 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3866 3866 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3867 3867 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3868 3868 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3869 3869 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3870 3870 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3871 3871 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3872 3872 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3873 3873 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3874 3874 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3875 3875 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3876 3876 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3877 3877 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3878 3878 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3879 3879 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3880 3880 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3881 3881 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3882 3882 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3883 3883 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3884 3884 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3885 3885 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3886 3886 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3887 3887 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3888 3888 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3889 3889 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3890 3890 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3891 3891 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3892 3892 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3893 3893 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3894 3894 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3895 3895 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3896 3896 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3897 3897 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3898 3898 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3899 3899 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3900 3900 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3901 3901 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3902 3902 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3903 3903 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3904 3904 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3905 3905 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3906 3906 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3907 3907 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3908 3908 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3909 3909 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3910 3910 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3911 3911 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3912 3912 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3913 3913 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3914 3914 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3915 3915 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3916 3916 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3917 3917 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3918 3918 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3919 3919 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3920 3920 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3921 3921 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3922 3922 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3923 3923 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3924 3924 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3925 3925 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3926 3926 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3927 3927 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3928 3928 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3929 3929 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3930 3930 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3931 3931 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3932 3932 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3933 3933 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3934 3934 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3935 3935 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3936 3936 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3937 3937 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3938 3938 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3939 3939 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3940 3940 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3941 3941 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3942 3942 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3943 3943 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3944 3944 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3945 3945 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3946 3946 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3947 3947 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3948 3948 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3949 3949 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3950 3950 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3951 3951 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3952 3952 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3953 3953 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3954 3954 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3955 3955 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3956 3956 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3957 3957 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3958 3958 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3959 3959 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3960 3960 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3961 3961 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3962 3962 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3963 3963 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3964 3964 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3965 3965 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3966 3966 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3967 3967 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3968 3968 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3969 3969 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3970 3970 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3971 3971 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3972 3972 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3973 3973 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3974 3974 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3975 3975 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3976 3976 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3977 3977 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3978 3978 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3979 3979 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3980 3980 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3981 3981 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3982 3982 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3983 3983 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3984 3984 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3985 3985 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3986 3986 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3987 3987 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3988 3988 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3989 3989 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3990 3990 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3991 3991 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3992 3992 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3993 3993 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3994 3994 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3995 3995 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3996 3996 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3997 3997 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3998 3998 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3999 3999 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
##      Tamaño.Cte.Industria         Segmento.Det                Marca
## 1            Extra Grande         Agua Mineral      Topo Chico A.M.
## 2            Extra Grande      Agua Purificada Ciel Agua Purificada
## 3            Extra Grande      Agua Purificada Ciel Agua Purificada
## 4            Extra Grande      Agua Saborizada          Ciel Exprim
## 5            Extra Grande      Agua Saborizada            Ciel Mini
## 6            Extra Grande      Agua Saborizada      Ciel Saborizada
## 7            Extra Grande     Bebidas de Fruta       Delaware Punch
## 8            Extra Grande     Bebidas de Fruta       Delaware Punch
## 9            Extra Grande     Bebidas de Fruta               Frutsi
## 10           Extra Grande     Bebidas de Fruta                Pulpy
## 11           Extra Grande     Bebidas de Fruta           Valle Frut
## 12           Extra Grande     Bebidas de Fruta           Valle Frut
## 13           Extra Grande     Bebidas de Fruta           Valle Frut
## 14           Extra Grande     Bebidas de Fruta           Valle Frut
## 15           Extra Grande  Bebidas Energeticas                 Burn
## 16           Extra Grande          Colas Light      Coca-Cola Light
## 17           Extra Grande          Colas Light      Coca-Cola Light
## 18           Extra Grande          Colas Light      Coca-Cola Light
## 19           Extra Grande        Colas Regular            Coca-Cola
## 20           Extra Grande        Colas Regular            Coca-Cola
## 21           Extra Grande        Colas Regular            Coca-Cola
## 22           Extra Grande        Colas Regular            Coca-Cola
## 23           Extra Grande        Colas Regular            Coca-Cola
## 24           Extra Grande        Colas Regular            Coca-Cola
## 25           Extra Grande        Colas Regular            Coca-Cola
## 26           Extra Grande        Colas Regular            Coca-Cola
## 27           Extra Grande        Colas Regular            Coca-Cola
## 28           Extra Grande        Colas Regular            Coca-Cola
## 29           Extra Grande        Colas Regular            Coca-Cola
## 30           Extra Grande        Colas Regular            Coca-Cola
## 31           Extra Grande        Colas Regular            Coca-Cola
## 32           Extra Grande        Colas Regular            Coca-Cola
## 33           Extra Grande        Colas Regular            Coca-Cola
## 34           Extra Grande        Colas Regular            Coca-Cola
## 35           Extra Grande     Isotónicos Light        Powerade Zero
## 36           Extra Grande   Isotónicos Regular             Powerade
## 37           Extra Grande   Isotónicos Regular             Powerade
## 38           Extra Grande   Isotónicos Regular             Powerade
## 39           Extra Grande     Jugos y Néctares            Del Valle
## 40           Extra Grande     Jugos y Néctares            Del Valle
## 41           Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 42           Extra Grande     Jugos y Néctares    Del Valle Reserva
## 43           Extra Grande    Leche UHT Regular   Santa Clara Entera
## 44           Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 45           Extra Grande        Sabores Light          Sprite Zero
## 46           Extra Grande      Sabores Regular     Del Valle y Nada
## 47           Extra Grande      Sabores Regular                Fanta
## 48           Extra Grande      Sabores Regular                Fanta
## 49           Extra Grande      Sabores Regular                Fanta
## 50           Extra Grande      Sabores Regular                Fanta
## 51           Extra Grande      Sabores Regular                Fanta
## 52           Extra Grande      Sabores Regular                Fanta
## 53           Extra Grande      Sabores Regular                Fanta
## 54           Extra Grande      Sabores Regular                Fanta
## 55           Extra Grande      Sabores Regular               Fresca
## 56           Extra Grande      Sabores Regular               Fresca
## 57           Extra Grande      Sabores Regular               Fresca
## 58           Extra Grande      Sabores Regular               Fresca
## 59           Extra Grande      Sabores Regular               Fresca
## 60           Extra Grande      Sabores Regular               Fresca
## 61           Extra Grande      Sabores Regular               Fresca
## 62           Extra Grande      Sabores Regular         Manzana Lift
## 63           Extra Grande      Sabores Regular         Manzana Lift
## 64           Extra Grande      Sabores Regular         Manzana Lift
## 65           Extra Grande      Sabores Regular         Manzana Lift
## 66           Extra Grande      Sabores Regular         Manzana Lift
## 67           Extra Grande      Sabores Regular        Sidral Mundet
## 68           Extra Grande      Sabores Regular        Sidral Mundet
## 69           Extra Grande      Sabores Regular        Sidral Mundet
## 70           Extra Grande      Sabores Regular        Sidral Mundet
## 71           Extra Grande      Sabores Regular        Sidral Mundet
## 72           Extra Grande      Sabores Regular               Sprite
## 73           Extra Grande      Sabores Regular               Sprite
## 74           Extra Grande      Sabores Regular               Sprite
## 75           Extra Grande      Sabores Regular               Sprite
## 76           Extra Grande      Sabores Regular               Sprite
## 77           Extra Grande      Sabores Regular               Sprite
## 78           Extra Grande      Sabores Regular               Sprite
## 79           Extra Grande      Sabores Regular               Sprite
## 80           Extra Grande           Té Regular             Fuze Tea
## 81           Extra Grande           Té Regular             Fuze Tea
## 82           Extra Grande         Agua Mineral    Ciel Mineralizada
## 83           Extra Grande         Agua Mineral      Topo Chico A.M.
## 84           Extra Grande         Agua Mineral      Topo Chico A.M.
## 85           Extra Grande      Agua Purificada Ciel Agua Purificada
## 86           Extra Grande      Agua Purificada Ciel Agua Purificada
## 87           Extra Grande      Agua Purificada Ciel Agua Purificada
## 88           Extra Grande      Agua Purificada Ciel Agua Purificada
## 89           Extra Grande      Agua Saborizada          Ciel Exprim
## 90           Extra Grande      Agua Saborizada            Ciel Mini
## 91           Extra Grande     Bebidas de Fruta       Delaware Punch
## 92           Extra Grande     Bebidas de Fruta               Frutsi
## 93           Extra Grande     Bebidas de Fruta                Pulpy
## 94           Extra Grande     Bebidas de Fruta           Valle Frut
## 95           Extra Grande     Bebidas de Fruta           Valle Frut
## 96           Extra Grande     Bebidas de Fruta           Valle Frut
## 97           Extra Grande  Bebidas Energeticas                 Burn
## 98           Extra Grande  Bebidas Energeticas                 Burn
## 99           Extra Grande  Bebidas Energeticas              Glacéau
## 100          Extra Grande          Colas Light       Coca-Cola Life
## 101          Extra Grande          Colas Light       Coca-Cola Life
## 102          Extra Grande          Colas Light      Coca-Cola Light
## 103          Extra Grande          Colas Light      Coca-Cola Light
## 104          Extra Grande          Colas Light      Coca-Cola Light
## 105          Extra Grande          Colas Light      Coca-Cola Light
## 106          Extra Grande          Colas Light      Coca-Cola Light
## 107          Extra Grande          Colas Light      Coca-Cola Light
## 108          Extra Grande          Colas Light      Coca-Cola Light
## 109          Extra Grande          Colas Light       Coca-Cola Zero
## 110          Extra Grande          Colas Light       Coca-Cola Zero
## 111          Extra Grande        Colas Regular            Coca-Cola
## 112          Extra Grande        Colas Regular            Coca-Cola
## 113          Extra Grande        Colas Regular            Coca-Cola
## 114          Extra Grande        Colas Regular            Coca-Cola
## 115          Extra Grande        Colas Regular            Coca-Cola
## 116          Extra Grande        Colas Regular            Coca-Cola
## 117          Extra Grande        Colas Regular            Coca-Cola
## 118          Extra Grande        Colas Regular            Coca-Cola
## 119          Extra Grande        Colas Regular            Coca-Cola
## 120          Extra Grande        Colas Regular            Coca-Cola
## 121          Extra Grande        Colas Regular            Coca-Cola
## 122          Extra Grande        Colas Regular            Coca-Cola
## 123          Extra Grande        Colas Regular            Coca-Cola
## 124          Extra Grande        Colas Regular            Coca-Cola
## 125          Extra Grande        Colas Regular            Coca-Cola
## 126          Extra Grande   Isotónicos Regular             Powerade
## 127          Extra Grande   Isotónicos Regular             Powerade
## 128          Extra Grande   Isotónicos Regular             Powerade
## 129          Extra Grande     Jugos y Néctares            Del Valle
## 130          Extra Grande     Jugos y Néctares            Del Valle
## 131          Extra Grande     Jugos y Néctares            Del Valle
## 132          Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 133          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 134          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 135          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 136          Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 137          Extra Grande        Sabores Light          Sprite Zero
## 138          Extra Grande      Sabores Regular     Del Valle y Nada
## 139          Extra Grande      Sabores Regular                Fanta
## 140          Extra Grande      Sabores Regular                Fanta
## 141          Extra Grande      Sabores Regular                Fanta
## 142          Extra Grande      Sabores Regular                Fanta
## 143          Extra Grande      Sabores Regular                Fanta
## 144          Extra Grande      Sabores Regular                Fanta
## 145          Extra Grande      Sabores Regular                Fanta
## 146          Extra Grande      Sabores Regular               Fresca
## 147          Extra Grande      Sabores Regular               Fresca
## 148          Extra Grande      Sabores Regular               Fresca
## 149          Extra Grande      Sabores Regular               Fresca
## 150          Extra Grande      Sabores Regular               Fresca
## 151          Extra Grande      Sabores Regular               Fresca
## 152          Extra Grande      Sabores Regular         Manzana Lift
## 153          Extra Grande      Sabores Regular         Manzana Lift
## 154          Extra Grande      Sabores Regular         Manzana Lift
## 155          Extra Grande      Sabores Regular         Manzana Lift
## 156          Extra Grande      Sabores Regular         Manzana Lift
## 157          Extra Grande      Sabores Regular               Senzao
## 158          Extra Grande      Sabores Regular        Sidral Mundet
## 159          Extra Grande      Sabores Regular        Sidral Mundet
## 160          Extra Grande      Sabores Regular        Sidral Mundet
## 161          Extra Grande      Sabores Regular        Sidral Mundet
## 162          Extra Grande      Sabores Regular        Sidral Mundet
## 163          Extra Grande      Sabores Regular        Sidral Mundet
## 164          Extra Grande      Sabores Regular               Sprite
## 165          Extra Grande      Sabores Regular               Sprite
## 166          Extra Grande      Sabores Regular               Sprite
## 167          Extra Grande      Sabores Regular               Sprite
## 168          Extra Grande      Sabores Regular               Sprite
## 169          Extra Grande      Sabores Regular               Sprite
## 170          Extra Grande      Sabores Regular               Sprite
## 171          Extra Grande           Té Regular             Fuze Tea
## 172          Extra Grande           Té Regular             Fuze Tea
## 173          Extra Grande         Agua Mineral    Ciel Mineralizada
## 174          Extra Grande         Agua Mineral      Topo Chico A.M.
## 175          Extra Grande      Agua Purificada Ciel Agua Purificada
## 176          Extra Grande      Agua Purificada Ciel Agua Purificada
## 177          Extra Grande      Agua Purificada Ciel Agua Purificada
## 178          Extra Grande      Agua Purificada Ciel Agua Purificada
## 179          Extra Grande      Agua Purificada Ciel Agua Purificada
## 180          Extra Grande      Agua Saborizada          Ciel Exprim
## 181          Extra Grande      Agua Saborizada            Ciel Mini
## 182          Extra Grande      Agua Saborizada      Ciel Saborizada
## 183          Extra Grande      Agua Saborizada      Ciel Saborizada
## 184          Extra Grande     Bebidas de Fruta       Delaware Punch
## 185          Extra Grande     Bebidas de Fruta               Frutsi
## 186          Extra Grande     Bebidas de Fruta                Pulpy
## 187          Extra Grande     Bebidas de Fruta           Valle Frut
## 188          Extra Grande     Bebidas de Fruta           Valle Frut
## 189          Extra Grande     Bebidas de Fruta           Valle Frut
## 190          Extra Grande  Bebidas Energeticas                 Burn
## 191          Extra Grande  Bebidas Energeticas                 Burn
## 192          Extra Grande  Bebidas Energeticas              Glacéau
## 193          Extra Grande          Colas Light       Coca-Cola Life
## 194          Extra Grande          Colas Light       Coca-Cola Life
## 195          Extra Grande          Colas Light       Coca-Cola Life
## 196          Extra Grande          Colas Light       Coca-Cola Life
## 197          Extra Grande          Colas Light      Coca-Cola Light
## 198          Extra Grande          Colas Light      Coca-Cola Light
## 199          Extra Grande          Colas Light      Coca-Cola Light
## 200          Extra Grande          Colas Light      Coca-Cola Light
## 201          Extra Grande          Colas Light      Coca-Cola Light
## 202          Extra Grande          Colas Light      Coca-Cola Light
## 203          Extra Grande          Colas Light      Coca-Cola Light
## 204          Extra Grande          Colas Light      Coca-Cola Light
## 205          Extra Grande          Colas Light      Coca-Cola Light
## 206          Extra Grande          Colas Light      Coca-Cola Light
## 207          Extra Grande          Colas Light       Coca-Cola Zero
## 208          Extra Grande          Colas Light       Coca-Cola Zero
## 209          Extra Grande          Colas Light       Coca-Cola Zero
## 210          Extra Grande          Colas Light       Coca-Cola Zero
## 211          Extra Grande        Colas Regular            Coca-Cola
## 212          Extra Grande        Colas Regular            Coca-Cola
## 213          Extra Grande        Colas Regular            Coca-Cola
## 214          Extra Grande        Colas Regular            Coca-Cola
## 215          Extra Grande        Colas Regular            Coca-Cola
## 216          Extra Grande        Colas Regular            Coca-Cola
## 217          Extra Grande        Colas Regular            Coca-Cola
## 218          Extra Grande        Colas Regular            Coca-Cola
## 219          Extra Grande        Colas Regular            Coca-Cola
## 220          Extra Grande        Colas Regular            Coca-Cola
## 221          Extra Grande        Colas Regular            Coca-Cola
## 222          Extra Grande        Colas Regular            Coca-Cola
## 223          Extra Grande        Colas Regular            Coca-Cola
## 224          Extra Grande        Colas Regular            Coca-Cola
## 225          Extra Grande        Colas Regular            Coca-Cola
## 226          Extra Grande        Colas Regular            Coca-Cola
## 227          Extra Grande        Colas Regular            Coca-Cola
## 228          Extra Grande        Colas Regular            Coca-Cola
## 229          Extra Grande   Isotónicos Regular             Powerade
## 230          Extra Grande   Isotónicos Regular             Powerade
## 231          Extra Grande   Isotónicos Regular             Powerade
## 232          Extra Grande     Jugos y Néctares            Del Valle
## 233          Extra Grande     Jugos y Néctares            Del Valle
## 234          Extra Grande     Jugos y Néctares            Del Valle
## 235          Extra Grande     Jugos y Néctares            Del Valle
## 236          Extra Grande     Jugos y Néctares            Del Valle
## 237          Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 238          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 239          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 240          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 241          Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 242          Extra Grande        Sabores Light          Sprite Zero
## 243          Extra Grande      Sabores Regular     Del Valle y Nada
## 244          Extra Grande      Sabores Regular     Del Valle y Nada
## 245          Extra Grande      Sabores Regular                Fanta
## 246          Extra Grande      Sabores Regular                Fanta
## 247          Extra Grande      Sabores Regular                Fanta
## 248          Extra Grande      Sabores Regular                Fanta
## 249          Extra Grande      Sabores Regular                Fanta
## 250          Extra Grande      Sabores Regular                Fanta
## 251          Extra Grande      Sabores Regular                Fanta
## 252          Extra Grande      Sabores Regular               Fresca
## 253          Extra Grande      Sabores Regular               Fresca
## 254          Extra Grande      Sabores Regular               Fresca
## 255          Extra Grande      Sabores Regular               Fresca
## 256          Extra Grande      Sabores Regular               Fresca
## 257          Extra Grande      Sabores Regular               Fresca
## 258          Extra Grande      Sabores Regular         Manzana Lift
## 259          Extra Grande      Sabores Regular         Manzana Lift
## 260          Extra Grande      Sabores Regular         Manzana Lift
## 261          Extra Grande      Sabores Regular         Manzana Lift
## 262          Extra Grande      Sabores Regular         Manzana Lift
## 263          Extra Grande      Sabores Regular               Senzao
## 264          Extra Grande      Sabores Regular        Sidral Mundet
## 265          Extra Grande      Sabores Regular        Sidral Mundet
## 266          Extra Grande      Sabores Regular        Sidral Mundet
## 267          Extra Grande      Sabores Regular        Sidral Mundet
## 268          Extra Grande      Sabores Regular        Sidral Mundet
## 269          Extra Grande      Sabores Regular               Sprite
## 270          Extra Grande      Sabores Regular               Sprite
## 271          Extra Grande      Sabores Regular               Sprite
## 272          Extra Grande      Sabores Regular               Sprite
## 273          Extra Grande      Sabores Regular               Sprite
## 274          Extra Grande      Sabores Regular               Sprite
## 275          Extra Grande      Sabores Regular               Sprite
## 276          Extra Grande           Té Regular             Fuze Tea
## 277          Extra Grande           Té Regular             Fuze Tea
## 278          Extra Grande           Té Regular             Fuze Tea
## 279          Extra Grande         Agua Mineral    Ciel Mineralizada
## 280          Extra Grande         Agua Mineral    Ciel Mineralizada
## 281          Extra Grande         Agua Mineral      Topo Chico A.M.
## 282          Extra Grande         Agua Mineral      Topo Chico A.M.
## 283          Extra Grande      Agua Purificada Ciel Agua Purificada
## 284          Extra Grande      Agua Purificada Ciel Agua Purificada
## 285          Extra Grande      Agua Purificada Ciel Agua Purificada
## 286          Extra Grande      Agua Purificada Ciel Agua Purificada
## 287          Extra Grande      Agua Purificada Ciel Agua Purificada
## 288          Extra Grande      Agua Saborizada          Ciel Exprim
## 289          Extra Grande      Agua Saborizada          Ciel Exprim
## 290          Extra Grande      Agua Saborizada          Ciel Exprim
## 291          Extra Grande      Agua Saborizada            Ciel Mini
## 292          Extra Grande      Agua Saborizada      Ciel Saborizada
## 293          Extra Grande      Agua Saborizada      Ciel Saborizada
## 294          Extra Grande      Agua Saborizada      Ciel Saborizada
## 295          Extra Grande     Bebidas de Fruta       Delaware Punch
## 296          Extra Grande     Bebidas de Fruta       Delaware Punch
## 297          Extra Grande     Bebidas de Fruta               Frutsi
## 298          Extra Grande     Bebidas de Fruta                Pulpy
## 299          Extra Grande     Bebidas de Fruta           Valle Frut
## 300          Extra Grande     Bebidas de Fruta           Valle Frut
## 301          Extra Grande     Bebidas de Fruta           Valle Frut
## 302          Extra Grande     Bebidas de Fruta           Valle Frut
## 303          Extra Grande     Bebidas de Fruta           Valle Frut
## 304          Extra Grande  Bebidas Energeticas                 Burn
## 305          Extra Grande  Bebidas Energeticas                 Burn
## 306          Extra Grande  Bebidas Energeticas              Glacéau
## 307          Extra Grande          Colas Light       Coca-Cola Life
## 308          Extra Grande          Colas Light       Coca-Cola Life
## 309          Extra Grande          Colas Light       Coca-Cola Life
## 310          Extra Grande          Colas Light      Coca-Cola Light
## 311          Extra Grande          Colas Light      Coca-Cola Light
## 312          Extra Grande          Colas Light      Coca-Cola Light
## 313          Extra Grande          Colas Light      Coca-Cola Light
## 314          Extra Grande          Colas Light      Coca-Cola Light
## 315          Extra Grande          Colas Light      Coca-Cola Light
## 316          Extra Grande          Colas Light       Coca-Cola Zero
## 317          Extra Grande          Colas Light       Coca-Cola Zero
## 318          Extra Grande        Colas Regular            Coca-Cola
## 319          Extra Grande        Colas Regular            Coca-Cola
## 320          Extra Grande        Colas Regular            Coca-Cola
## 321          Extra Grande        Colas Regular            Coca-Cola
## 322          Extra Grande        Colas Regular            Coca-Cola
## 323          Extra Grande        Colas Regular            Coca-Cola
## 324          Extra Grande        Colas Regular            Coca-Cola
## 325          Extra Grande        Colas Regular            Coca-Cola
## 326          Extra Grande        Colas Regular            Coca-Cola
## 327          Extra Grande        Colas Regular            Coca-Cola
## 328          Extra Grande        Colas Regular            Coca-Cola
## 329          Extra Grande        Colas Regular            Coca-Cola
## 330          Extra Grande        Colas Regular            Coca-Cola
## 331          Extra Grande        Colas Regular            Coca-Cola
## 332          Extra Grande        Colas Regular            Coca-Cola
## 333          Extra Grande        Colas Regular            Coca-Cola
## 334          Extra Grande        Colas Regular            Coca-Cola
## 335          Extra Grande     Isotónicos Light        Powerade Zero
## 336          Extra Grande   Isotónicos Regular             Powerade
## 337          Extra Grande   Isotónicos Regular             Powerade
## 338          Extra Grande   Isotónicos Regular             Powerade
## 339          Extra Grande     Jugos y Néctares            Del Valle
## 340          Extra Grande     Jugos y Néctares            Del Valle
## 341          Extra Grande     Jugos y Néctares            Del Valle
## 342          Extra Grande     Jugos y Néctares            Del Valle
## 343          Extra Grande     Jugos y Néctares            Del Valle
## 344          Extra Grande     Jugos y Néctares            Del Valle
## 345          Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 346          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 347          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 348          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 349          Extra Grande    Leche UHT Regular   Santa Clara Entera
## 350          Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 351          Extra Grande        Sabores Light          Sprite Zero
## 352          Extra Grande      Sabores Regular     Del Valle y Nada
## 353          Extra Grande      Sabores Regular     Del Valle y Nada
## 354          Extra Grande      Sabores Regular     Del Valle y Nada
## 355          Extra Grande      Sabores Regular                Fanta
## 356          Extra Grande      Sabores Regular                Fanta
## 357          Extra Grande      Sabores Regular                Fanta
## 358          Extra Grande      Sabores Regular                Fanta
## 359          Extra Grande      Sabores Regular                Fanta
## 360          Extra Grande      Sabores Regular                Fanta
## 361          Extra Grande      Sabores Regular                Fanta
## 362          Extra Grande      Sabores Regular                Fanta
## 363          Extra Grande      Sabores Regular                Fanta
## 364          Extra Grande      Sabores Regular               Fresca
## 365          Extra Grande      Sabores Regular               Fresca
## 366          Extra Grande      Sabores Regular               Fresca
## 367          Extra Grande      Sabores Regular               Fresca
## 368          Extra Grande      Sabores Regular               Fresca
## 369          Extra Grande      Sabores Regular               Fresca
## 370          Extra Grande      Sabores Regular               Fresca
## 371          Extra Grande      Sabores Regular         Manzana Lift
## 372          Extra Grande      Sabores Regular         Manzana Lift
## 373          Extra Grande      Sabores Regular         Manzana Lift
## 374          Extra Grande      Sabores Regular         Manzana Lift
## 375          Extra Grande      Sabores Regular         Manzana Lift
## 376          Extra Grande      Sabores Regular         Manzana Lift
## 377          Extra Grande      Sabores Regular         Manzana Lift
## 378          Extra Grande      Sabores Regular         Manzana Lift
## 379          Extra Grande      Sabores Regular               Senzao
## 380          Extra Grande      Sabores Regular        Sidral Mundet
## 381          Extra Grande      Sabores Regular        Sidral Mundet
## 382          Extra Grande      Sabores Regular        Sidral Mundet
## 383          Extra Grande      Sabores Regular        Sidral Mundet
## 384          Extra Grande      Sabores Regular        Sidral Mundet
## 385          Extra Grande      Sabores Regular        Sidral Mundet
## 386          Extra Grande      Sabores Regular               Sprite
## 387          Extra Grande      Sabores Regular               Sprite
## 388          Extra Grande      Sabores Regular               Sprite
## 389          Extra Grande      Sabores Regular               Sprite
## 390          Extra Grande      Sabores Regular               Sprite
## 391          Extra Grande      Sabores Regular               Sprite
## 392          Extra Grande      Sabores Regular               Sprite
## 393          Extra Grande      Sabores Regular               Sprite
## 394          Extra Grande      Sabores Regular               Sprite
## 395          Extra Grande      Sabores Regular               Sprite
## 396          Extra Grande      Sabores Regular               Sprite
## 397          Extra Grande      Sabores Regular               Sprite
## 398          Extra Grande           Té Regular             Fuze Tea
## 399          Extra Grande           Té Regular             Fuze Tea
## 400          Extra Grande           Té Regular             Fuze Tea
## 401          Extra Grande           Té Regular             Fuze Tea
## 402          Extra Grande         Agua Mineral    Ciel Mineralizada
## 403          Extra Grande         Agua Mineral      Topo Chico A.M.
## 404          Extra Grande         Agua Mineral      Topo Chico A.M.
## 405          Extra Grande      Agua Purificada Ciel Agua Purificada
## 406          Extra Grande      Agua Purificada Ciel Agua Purificada
## 407          Extra Grande      Agua Purificada Ciel Agua Purificada
## 408          Extra Grande      Agua Saborizada          Ciel Exprim
## 409          Extra Grande      Agua Saborizada            Ciel Mini
## 410          Extra Grande      Agua Saborizada      Ciel Saborizada
## 411          Extra Grande     Bebidas de Fruta       Delaware Punch
## 412          Extra Grande     Bebidas de Fruta       Delaware Punch
## 413          Extra Grande     Bebidas de Fruta       Delaware Punch
## 414          Extra Grande     Bebidas de Fruta               Frutsi
## 415          Extra Grande     Bebidas de Fruta                Pulpy
## 416          Extra Grande     Bebidas de Fruta           Valle Frut
## 417          Extra Grande     Bebidas de Fruta           Valle Frut
## 418          Extra Grande     Bebidas de Fruta           Valle Frut
## 419          Extra Grande     Bebidas de Fruta           Valle Frut
## 420          Extra Grande     Bebidas de Fruta           Valle Frut
## 421          Extra Grande  Bebidas Energeticas                 Burn
## 422          Extra Grande  Bebidas Energeticas                 Burn
## 423          Extra Grande  Bebidas Energeticas                 Burn
## 424          Extra Grande  Bebidas Energeticas              Glacéau
## 425          Extra Grande          Colas Light       Coca-Cola Life
## 426          Extra Grande          Colas Light      Coca-Cola Light
## 427          Extra Grande          Colas Light      Coca-Cola Light
## 428          Extra Grande          Colas Light      Coca-Cola Light
## 429          Extra Grande          Colas Light      Coca-Cola Light
## 430          Extra Grande          Colas Light      Coca-Cola Light
## 431          Extra Grande          Colas Light      Coca-Cola Light
## 432          Extra Grande          Colas Light       Coca-Cola Zero
## 433          Extra Grande          Colas Light       Coca-Cola Zero
## 434          Extra Grande          Colas Light       Coca-Cola Zero
## 435          Extra Grande          Colas Light       Coca-Cola Zero
## 436          Extra Grande        Colas Regular            Coca-Cola
## 437          Extra Grande        Colas Regular            Coca-Cola
## 438          Extra Grande        Colas Regular            Coca-Cola
## 439          Extra Grande        Colas Regular            Coca-Cola
## 440          Extra Grande        Colas Regular            Coca-Cola
## 441          Extra Grande        Colas Regular            Coca-Cola
## 442          Extra Grande        Colas Regular            Coca-Cola
## 443          Extra Grande        Colas Regular            Coca-Cola
## 444          Extra Grande        Colas Regular            Coca-Cola
## 445          Extra Grande        Colas Regular            Coca-Cola
## 446          Extra Grande        Colas Regular            Coca-Cola
## 447          Extra Grande        Colas Regular            Coca-Cola
## 448          Extra Grande        Colas Regular            Coca-Cola
## 449          Extra Grande        Colas Regular            Coca-Cola
## 450          Extra Grande        Colas Regular            Coca-Cola
## 451          Extra Grande        Colas Regular            Coca-Cola
## 452          Extra Grande        Colas Regular            Coca-Cola
## 453          Extra Grande     Isotónicos Light        Powerade Zero
## 454          Extra Grande   Isotónicos Regular             Powerade
## 455          Extra Grande   Isotónicos Regular             Powerade
## 456          Extra Grande   Isotónicos Regular             Powerade
## 457          Extra Grande     Jugos y Néctares            Del Valle
## 458          Extra Grande     Jugos y Néctares            Del Valle
## 459          Extra Grande     Jugos y Néctares            Del Valle
## 460          Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 461          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 462          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 463          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 464          Extra Grande    Leche UHT Regular    Santa Clara Light
## 465          Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 466          Extra Grande        Sabores Light          Sprite Zero
## 467          Extra Grande      Sabores Regular     Del Valle y Nada
## 468          Extra Grande      Sabores Regular     Del Valle y Nada
## 469          Extra Grande      Sabores Regular                Fanta
## 470          Extra Grande      Sabores Regular                Fanta
## 471          Extra Grande      Sabores Regular                Fanta
## 472          Extra Grande      Sabores Regular                Fanta
## 473          Extra Grande      Sabores Regular                Fanta
## 474          Extra Grande      Sabores Regular                Fanta
## 475          Extra Grande      Sabores Regular                Fanta
## 476          Extra Grande      Sabores Regular                Fanta
## 477          Extra Grande      Sabores Regular                Fanta
## 478          Extra Grande      Sabores Regular               Fresca
## 479          Extra Grande      Sabores Regular               Fresca
## 480          Extra Grande      Sabores Regular               Fresca
## 481          Extra Grande      Sabores Regular               Fresca
## 482          Extra Grande      Sabores Regular               Fresca
## 483          Extra Grande      Sabores Regular               Fresca
## 484          Extra Grande      Sabores Regular               Fresca
## 485          Extra Grande      Sabores Regular               Fresca
## 486          Extra Grande      Sabores Regular               Fresca
## 487          Extra Grande      Sabores Regular         Manzana Lift
## 488          Extra Grande      Sabores Regular         Manzana Lift
## 489          Extra Grande      Sabores Regular         Manzana Lift
## 490          Extra Grande      Sabores Regular         Manzana Lift
## 491          Extra Grande      Sabores Regular         Manzana Lift
## 492          Extra Grande      Sabores Regular         Manzana Lift
## 493          Extra Grande      Sabores Regular         Manzana Lift
## 494          Extra Grande      Sabores Regular               Senzao
## 495          Extra Grande      Sabores Regular               Senzao
## 496          Extra Grande      Sabores Regular        Sidral Mundet
## 497          Extra Grande      Sabores Regular        Sidral Mundet
## 498          Extra Grande      Sabores Regular        Sidral Mundet
## 499          Extra Grande      Sabores Regular        Sidral Mundet
## 500          Extra Grande      Sabores Regular        Sidral Mundet
## 501          Extra Grande      Sabores Regular        Sidral Mundet
## 502          Extra Grande      Sabores Regular        Sidral Mundet
## 503          Extra Grande      Sabores Regular               Sprite
## 504          Extra Grande      Sabores Regular               Sprite
## 505          Extra Grande      Sabores Regular               Sprite
## 506          Extra Grande      Sabores Regular               Sprite
## 507          Extra Grande      Sabores Regular               Sprite
## 508          Extra Grande      Sabores Regular               Sprite
## 509          Extra Grande      Sabores Regular               Sprite
## 510          Extra Grande      Sabores Regular               Sprite
## 511          Extra Grande      Sabores Regular               Sprite
## 512          Extra Grande      Sabores Regular               Sprite
## 513          Extra Grande             Té Light       Fuze Tea Light
## 514          Extra Grande           Té Regular             Fuze Tea
## 515          Extra Grande         Agua Mineral    Ciel Mineralizada
## 516          Extra Grande         Agua Mineral    Ciel Mineralizada
## 517          Extra Grande         Agua Mineral      Topo Chico A.M.
## 518          Extra Grande      Agua Purificada Ciel Agua Purificada
## 519          Extra Grande      Agua Purificada Ciel Agua Purificada
## 520          Extra Grande      Agua Purificada Ciel Agua Purificada
## 521          Extra Grande      Agua Purificada Ciel Agua Purificada
## 522          Extra Grande      Agua Purificada Ciel Agua Purificada
## 523          Extra Grande      Agua Saborizada          Ciel Exprim
## 524          Extra Grande      Agua Saborizada            Ciel Mini
## 525          Extra Grande      Agua Saborizada      Ciel Saborizada
## 526          Extra Grande     Bebidas de Fruta       Delaware Punch
## 527          Extra Grande     Bebidas de Fruta       Delaware Punch
## 528          Extra Grande     Bebidas de Fruta               Frutsi
## 529          Extra Grande     Bebidas de Fruta                Pulpy
## 530          Extra Grande     Bebidas de Fruta           Valle Frut
## 531          Extra Grande     Bebidas de Fruta           Valle Frut
## 532          Extra Grande     Bebidas de Fruta           Valle Frut
## 533          Extra Grande     Bebidas de Fruta           Valle Frut
## 534          Extra Grande     Bebidas de Fruta           Valle Frut
## 535          Extra Grande  Bebidas Energeticas                 Burn
## 536          Extra Grande  Bebidas Energeticas                 Burn
## 537          Extra Grande  Bebidas Energeticas              Glacéau
## 538          Extra Grande          Colas Light       Coca-Cola Life
## 539          Extra Grande          Colas Light       Coca-Cola Life
## 540          Extra Grande          Colas Light       Coca-Cola Life
## 541          Extra Grande          Colas Light      Coca-Cola Light
## 542          Extra Grande          Colas Light      Coca-Cola Light
## 543          Extra Grande          Colas Light      Coca-Cola Light
## 544          Extra Grande          Colas Light      Coca-Cola Light
## 545          Extra Grande          Colas Light      Coca-Cola Light
## 546          Extra Grande          Colas Light      Coca-Cola Light
## 547          Extra Grande          Colas Light      Coca-Cola Light
## 548          Extra Grande          Colas Light      Coca-Cola Light
## 549          Extra Grande          Colas Light       Coca-Cola Zero
## 550          Extra Grande          Colas Light       Coca-Cola Zero
## 551          Extra Grande          Colas Light       Coca-Cola Zero
## 552          Extra Grande          Colas Light       Coca-Cola Zero
## 553          Extra Grande        Colas Regular            Coca-Cola
## 554          Extra Grande        Colas Regular            Coca-Cola
## 555          Extra Grande        Colas Regular            Coca-Cola
## 556          Extra Grande        Colas Regular            Coca-Cola
## 557          Extra Grande        Colas Regular            Coca-Cola
## 558          Extra Grande        Colas Regular            Coca-Cola
## 559          Extra Grande        Colas Regular            Coca-Cola
## 560          Extra Grande        Colas Regular            Coca-Cola
## 561          Extra Grande        Colas Regular            Coca-Cola
## 562          Extra Grande        Colas Regular            Coca-Cola
## 563          Extra Grande        Colas Regular            Coca-Cola
## 564          Extra Grande        Colas Regular            Coca-Cola
## 565          Extra Grande        Colas Regular            Coca-Cola
## 566          Extra Grande        Colas Regular            Coca-Cola
## 567          Extra Grande        Colas Regular            Coca-Cola
## 568          Extra Grande        Colas Regular            Coca-Cola
## 569          Extra Grande        Colas Regular            Coca-Cola
## 570          Extra Grande   Isotónicos Regular             Powerade
## 571          Extra Grande   Isotónicos Regular             Powerade
## 572          Extra Grande   Isotónicos Regular             Powerade
## 573          Extra Grande     Jugos y Néctares            Del Valle
## 574          Extra Grande     Jugos y Néctares            Del Valle
## 575          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 576          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 577          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 578          Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 579          Extra Grande        Sabores Light          Sprite Zero
## 580          Extra Grande      Sabores Regular     Del Valle y Nada
## 581          Extra Grande      Sabores Regular     Del Valle y Nada
## 582          Extra Grande      Sabores Regular                Fanta
## 583          Extra Grande      Sabores Regular                Fanta
## 584          Extra Grande      Sabores Regular                Fanta
## 585          Extra Grande      Sabores Regular                Fanta
## 586          Extra Grande      Sabores Regular                Fanta
## 587          Extra Grande      Sabores Regular                Fanta
## 588          Extra Grande      Sabores Regular                Fanta
## 589          Extra Grande      Sabores Regular                Fanta
## 590          Extra Grande      Sabores Regular                Fanta
## 591          Extra Grande      Sabores Regular               Fresca
## 592          Extra Grande      Sabores Regular               Fresca
## 593          Extra Grande      Sabores Regular               Fresca
## 594          Extra Grande      Sabores Regular               Fresca
## 595          Extra Grande      Sabores Regular               Fresca
## 596          Extra Grande      Sabores Regular               Fresca
## 597          Extra Grande      Sabores Regular               Fresca
## 598          Extra Grande      Sabores Regular         Manzana Lift
## 599          Extra Grande      Sabores Regular         Manzana Lift
## 600          Extra Grande      Sabores Regular         Manzana Lift
## 601          Extra Grande      Sabores Regular         Manzana Lift
## 602          Extra Grande      Sabores Regular         Manzana Lift
## 603          Extra Grande      Sabores Regular         Manzana Lift
## 604          Extra Grande      Sabores Regular               Senzao
## 605          Extra Grande      Sabores Regular        Sidral Mundet
## 606          Extra Grande      Sabores Regular        Sidral Mundet
## 607          Extra Grande      Sabores Regular        Sidral Mundet
## 608          Extra Grande      Sabores Regular        Sidral Mundet
## 609          Extra Grande      Sabores Regular        Sidral Mundet
## 610          Extra Grande      Sabores Regular        Sidral Mundet
## 611          Extra Grande      Sabores Regular               Sprite
## 612          Extra Grande      Sabores Regular               Sprite
## 613          Extra Grande      Sabores Regular               Sprite
## 614          Extra Grande      Sabores Regular               Sprite
## 615          Extra Grande      Sabores Regular               Sprite
## 616          Extra Grande      Sabores Regular               Sprite
## 617          Extra Grande      Sabores Regular               Sprite
## 618          Extra Grande      Sabores Regular               Sprite
## 619          Extra Grande      Sabores Regular               Sprite
## 620          Extra Grande           Té Regular             Fuze Tea
## 621          Extra Grande           Té Regular             Fuze Tea
## 622          Extra Grande           Té Regular             Fuze Tea
## 623          Extra Grande           Té Regular             Fuze Tea
## 624          Extra Grande         Agua Mineral    Ciel Mineralizada
## 625          Extra Grande         Agua Mineral      Topo Chico A.M.
## 626          Extra Grande      Agua Purificada Ciel Agua Purificada
## 627          Extra Grande      Agua Purificada Ciel Agua Purificada
## 628          Extra Grande      Agua Purificada Ciel Agua Purificada
## 629          Extra Grande      Agua Purificada Ciel Agua Purificada
## 630          Extra Grande      Agua Saborizada          Ciel Exprim
## 631          Extra Grande      Agua Saborizada            Ciel Mini
## 632          Extra Grande     Bebidas de Fruta       Delaware Punch
## 633          Extra Grande     Bebidas de Fruta               Frutsi
## 634          Extra Grande     Bebidas de Fruta                Pulpy
## 635          Extra Grande     Bebidas de Fruta           Valle Frut
## 636          Extra Grande     Bebidas de Fruta           Valle Frut
## 637          Extra Grande     Bebidas de Fruta           Valle Frut
## 638          Extra Grande     Bebidas de Fruta           Valle Frut
## 639          Extra Grande     Bebidas de Fruta           Valle Frut
## 640          Extra Grande  Bebidas Energeticas                 Burn
## 641          Extra Grande  Bebidas Energeticas                 Burn
## 642          Extra Grande  Bebidas Energeticas              Glacéau
## 643          Extra Grande          Colas Light       Coca-Cola Life
## 644          Extra Grande          Colas Light       Coca-Cola Life
## 645          Extra Grande          Colas Light       Coca-Cola Life
## 646          Extra Grande          Colas Light      Coca-Cola Light
## 647          Extra Grande          Colas Light      Coca-Cola Light
## 648          Extra Grande          Colas Light      Coca-Cola Light
## 649          Extra Grande          Colas Light      Coca-Cola Light
## 650          Extra Grande          Colas Light      Coca-Cola Light
## 651          Extra Grande          Colas Light      Coca-Cola Light
## 652          Extra Grande          Colas Light      Coca-Cola Light
## 653          Extra Grande          Colas Light      Coca-Cola Light
## 654          Extra Grande          Colas Light  Coca-Cola Light Sin
## 655          Extra Grande          Colas Light       Coca-Cola Zero
## 656          Extra Grande          Colas Light       Coca-Cola Zero
## 657          Extra Grande          Colas Light       Coca-Cola Zero
## 658          Extra Grande          Colas Light       Coca-Cola Zero
## 659          Extra Grande        Colas Regular            Coca-Cola
## 660          Extra Grande        Colas Regular            Coca-Cola
## 661          Extra Grande        Colas Regular            Coca-Cola
## 662          Extra Grande        Colas Regular            Coca-Cola
## 663          Extra Grande        Colas Regular            Coca-Cola
## 664          Extra Grande        Colas Regular            Coca-Cola
## 665          Extra Grande        Colas Regular            Coca-Cola
## 666          Extra Grande        Colas Regular            Coca-Cola
## 667          Extra Grande        Colas Regular            Coca-Cola
## 668          Extra Grande        Colas Regular            Coca-Cola
## 669          Extra Grande        Colas Regular            Coca-Cola
## 670          Extra Grande        Colas Regular            Coca-Cola
## 671          Extra Grande        Colas Regular            Coca-Cola
## 672          Extra Grande        Colas Regular            Coca-Cola
## 673          Extra Grande        Colas Regular            Coca-Cola
## 674          Extra Grande        Colas Regular            Coca-Cola
## 675          Extra Grande        Colas Regular            Coca-Cola
## 676          Extra Grande     Isotónicos Light        Powerade Zero
## 677          Extra Grande   Isotónicos Regular             Powerade
## 678          Extra Grande   Isotónicos Regular             Powerade
## 679          Extra Grande     Jugos y Néctares            Del Valle
## 680          Extra Grande     Jugos y Néctares            Del Valle
## 681          Extra Grande     Jugos y Néctares            Del Valle
## 682          Extra Grande     Jugos y Néctares            Del Valle
## 683          Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 684          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 685          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 686          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 687          Extra Grande    Leche UHT Regular   Santa Clara Entera
## 688          Extra Grande    Leche UHT Regular    Santa Clara Light
## 689          Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 690          Extra Grande        Sabores Light           Fanta Zero
## 691          Extra Grande        Sabores Light          Fresca Zero
## 692          Extra Grande        Sabores Light    Manzana Lift Zero
## 693          Extra Grande        Sabores Light          Sprite Zero
## 694          Extra Grande      Sabores Regular     Del Valle y Nada
## 695          Extra Grande      Sabores Regular                Fanta
## 696          Extra Grande      Sabores Regular                Fanta
## 697          Extra Grande      Sabores Regular                Fanta
## 698          Extra Grande      Sabores Regular                Fanta
## 699          Extra Grande      Sabores Regular                Fanta
## 700          Extra Grande      Sabores Regular                Fanta
## 701          Extra Grande      Sabores Regular                Fanta
## 702          Extra Grande      Sabores Regular               Fresca
## 703          Extra Grande      Sabores Regular               Fresca
## 704          Extra Grande      Sabores Regular               Fresca
## 705          Extra Grande      Sabores Regular               Fresca
## 706          Extra Grande      Sabores Regular               Fresca
## 707          Extra Grande      Sabores Regular         Manzana Lift
## 708          Extra Grande      Sabores Regular         Manzana Lift
## 709          Extra Grande      Sabores Regular         Manzana Lift
## 710          Extra Grande      Sabores Regular         Manzana Lift
## 711          Extra Grande      Sabores Regular               Senzao
## 712          Extra Grande      Sabores Regular        Sidral Mundet
## 713          Extra Grande      Sabores Regular        Sidral Mundet
## 714          Extra Grande      Sabores Regular        Sidral Mundet
## 715          Extra Grande      Sabores Regular        Sidral Mundet
## 716          Extra Grande      Sabores Regular        Sidral Mundet
## 717          Extra Grande      Sabores Regular               Sprite
## 718          Extra Grande      Sabores Regular               Sprite
## 719          Extra Grande      Sabores Regular               Sprite
## 720          Extra Grande      Sabores Regular               Sprite
## 721          Extra Grande      Sabores Regular               Sprite
## 722          Extra Grande      Sabores Regular               Sprite
## 723          Extra Grande      Sabores Regular               Sprite
## 724          Extra Grande             Té Light       Fuze Tea Light
## 725          Extra Grande           Té Regular             Fuze Tea
## 726          Extra Grande           Té Regular             Fuze Tea
## 727          Extra Grande         Agua Mineral    Ciel Mineralizada
## 728          Extra Grande         Agua Mineral      Topo Chico A.M.
## 729          Extra Grande      Agua Purificada Ciel Agua Purificada
## 730          Extra Grande      Agua Purificada Ciel Agua Purificada
## 731          Extra Grande      Agua Purificada Ciel Agua Purificada
## 732          Extra Grande      Agua Purificada Ciel Agua Purificada
## 733          Extra Grande      Agua Purificada Ciel Agua Purificada
## 734          Extra Grande      Agua Saborizada          Ciel Exprim
## 735          Extra Grande     Bebidas de Fruta               Bebere
## 736          Extra Grande     Bebidas de Fruta       Delaware Punch
## 737          Extra Grande     Bebidas de Fruta       Delaware Punch
## 738          Extra Grande     Bebidas de Fruta               Frutsi
## 739          Extra Grande     Bebidas de Fruta                Pulpy
## 740          Extra Grande     Bebidas de Fruta           Valle Frut
## 741          Extra Grande     Bebidas de Fruta           Valle Frut
## 742          Extra Grande     Bebidas de Fruta           Valle Frut
## 743          Extra Grande     Bebidas de Fruta           Valle Frut
## 744          Extra Grande     Bebidas de Fruta           Valle Frut
## 745          Extra Grande  Bebidas Energeticas                 Burn
## 746          Extra Grande  Bebidas Energeticas                 Burn
## 747          Extra Grande  Bebidas Energeticas              Glacéau
## 748          Extra Grande          Colas Light       Coca-Cola Life
## 749          Extra Grande          Colas Light       Coca-Cola Life
## 750          Extra Grande          Colas Light       Coca-Cola Life
## 751          Extra Grande          Colas Light       Coca-Cola Life
## 752          Extra Grande          Colas Light       Coca-Cola Life
## 753          Extra Grande          Colas Light      Coca-Cola Light
## 754          Extra Grande          Colas Light      Coca-Cola Light
## 755          Extra Grande          Colas Light      Coca-Cola Light
## 756          Extra Grande          Colas Light      Coca-Cola Light
## 757          Extra Grande          Colas Light      Coca-Cola Light
## 758          Extra Grande          Colas Light      Coca-Cola Light
## 759          Extra Grande          Colas Light  Coca-Cola Light Sin
## 760          Extra Grande          Colas Light  Coca-Cola Light Sin
## 761          Extra Grande          Colas Light       Coca-Cola Zero
## 762          Extra Grande          Colas Light       Coca-Cola Zero
## 763          Extra Grande          Colas Light       Coca-Cola Zero
## 764          Extra Grande          Colas Light       Coca-Cola Zero
## 765          Extra Grande          Colas Light       Coca-Cola Zero
## 766          Extra Grande          Colas Light       Coca-Cola Zero
## 767          Extra Grande        Colas Regular            Coca-Cola
## 768          Extra Grande        Colas Regular            Coca-Cola
## 769          Extra Grande        Colas Regular            Coca-Cola
## 770          Extra Grande        Colas Regular            Coca-Cola
## 771          Extra Grande        Colas Regular            Coca-Cola
## 772          Extra Grande        Colas Regular            Coca-Cola
## 773          Extra Grande        Colas Regular            Coca-Cola
## 774          Extra Grande        Colas Regular            Coca-Cola
## 775          Extra Grande        Colas Regular            Coca-Cola
## 776          Extra Grande        Colas Regular            Coca-Cola
## 777          Extra Grande        Colas Regular            Coca-Cola
## 778          Extra Grande        Colas Regular            Coca-Cola
## 779          Extra Grande        Colas Regular            Coca-Cola
## 780          Extra Grande        Colas Regular            Coca-Cola
## 781          Extra Grande        Colas Regular            Coca-Cola
## 782          Extra Grande        Colas Regular            Coca-Cola
## 783          Extra Grande        Colas Regular            Coca-Cola
## 784          Extra Grande     Isotónicos Light        Powerade Zero
## 785          Extra Grande   Isotónicos Regular             Powerade
## 786          Extra Grande   Isotónicos Regular             Powerade
## 787          Extra Grande   Isotónicos Regular             Powerade
## 788          Extra Grande     Jugos y Néctares            Del Valle
## 789          Extra Grande     Jugos y Néctares            Del Valle
## 790          Extra Grande     Jugos y Néctares            Del Valle
## 791          Extra Grande     Jugos y Néctares            Del Valle
## 792          Extra Grande     Jugos y Néctares            Del Valle
## 793          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 794          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 795          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 796          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 797          Extra Grande    Leche UHT Regular   Santa Clara Entera
## 798          Extra Grande    Leche UHT Regular    Santa Clara Light
## 799          Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 800          Extra Grande        Sabores Light           Fanta Zero
## 801          Extra Grande        Sabores Light    Manzana Lift Zero
## 802          Extra Grande        Sabores Light  Sidral Mundet Light
## 803          Extra Grande        Sabores Light          Sprite Zero
## 804          Extra Grande      Sabores Regular     Del Valle y Nada
## 805          Extra Grande      Sabores Regular                Fanta
## 806          Extra Grande      Sabores Regular                Fanta
## 807          Extra Grande      Sabores Regular                Fanta
## 808          Extra Grande      Sabores Regular                Fanta
## 809          Extra Grande      Sabores Regular               Fresca
## 810          Extra Grande      Sabores Regular               Fresca
## 811          Extra Grande      Sabores Regular               Fresca
## 812          Extra Grande      Sabores Regular               Fresca
## 813          Extra Grande      Sabores Regular         Manzana Lift
## 814          Extra Grande      Sabores Regular         Manzana Lift
## 815          Extra Grande      Sabores Regular         Manzana Lift
## 816          Extra Grande      Sabores Regular         Manzana Lift
## 817          Extra Grande      Sabores Regular               Senzao
## 818          Extra Grande      Sabores Regular        Sidral Mundet
## 819          Extra Grande      Sabores Regular        Sidral Mundet
## 820          Extra Grande      Sabores Regular        Sidral Mundet
## 821          Extra Grande      Sabores Regular        Sidral Mundet
## 822          Extra Grande      Sabores Regular        Sidral Mundet
## 823          Extra Grande      Sabores Regular               Sprite
## 824          Extra Grande      Sabores Regular               Sprite
## 825          Extra Grande      Sabores Regular               Sprite
## 826          Extra Grande      Sabores Regular               Sprite
## 827          Extra Grande      Sabores Regular               Sprite
## 828          Extra Grande      Sabores Regular               Sprite
## 829          Extra Grande      Sabores Regular               Sprite
## 830          Extra Grande             Té Light       Fuze Tea Light
## 831          Extra Grande           Té Regular             Fuze Tea
## 832          Extra Grande           Té Regular             Fuze Tea
## 833          Extra Grande           Té Regular             Fuze Tea
## 834          Extra Grande         Agua Mineral    Ciel Mineralizada
## 835          Extra Grande         Agua Mineral      Topo Chico A.M.
## 836          Extra Grande      Agua Purificada Ciel Agua Purificada
## 837          Extra Grande      Agua Purificada Ciel Agua Purificada
## 838          Extra Grande      Agua Purificada Ciel Agua Purificada
## 839          Extra Grande      Agua Saborizada          Ciel Exprim
## 840          Extra Grande      Agua Saborizada            Ciel Mini
## 841          Extra Grande     Bebidas de Fruta       Delaware Punch
## 842          Extra Grande     Bebidas de Fruta       Delaware Punch
## 843          Extra Grande     Bebidas de Fruta               Frutsi
## 844          Extra Grande     Bebidas de Fruta           Valle Frut
## 845          Extra Grande     Bebidas de Fruta           Valle Frut
## 846          Extra Grande     Bebidas de Fruta           Valle Frut
## 847          Extra Grande     Bebidas de Fruta           Valle Frut
## 848          Extra Grande     Bebidas de Fruta           Valle Frut
## 849          Extra Grande  Bebidas Energeticas                 Burn
## 850          Extra Grande  Bebidas Energeticas                 Burn
## 851          Extra Grande          Colas Light       Coca-Cola Life
## 852          Extra Grande          Colas Light       Coca-Cola Life
## 853          Extra Grande          Colas Light       Coca-Cola Life
## 854          Extra Grande          Colas Light       Coca-Cola Life
## 855          Extra Grande          Colas Light      Coca-Cola Light
## 856          Extra Grande          Colas Light      Coca-Cola Light
## 857          Extra Grande          Colas Light      Coca-Cola Light
## 858          Extra Grande          Colas Light      Coca-Cola Light
## 859          Extra Grande          Colas Light      Coca-Cola Light
## 860          Extra Grande          Colas Light      Coca-Cola Light
## 861          Extra Grande          Colas Light      Coca-Cola Light
## 862          Extra Grande          Colas Light      Coca-Cola Light
## 863          Extra Grande          Colas Light       Coca-Cola Zero
## 864          Extra Grande          Colas Light       Coca-Cola Zero
## 865          Extra Grande          Colas Light       Coca-Cola Zero
## 866          Extra Grande          Colas Light       Coca-Cola Zero
## 867          Extra Grande          Colas Light       Coca-Cola Zero
## 868          Extra Grande        Colas Regular            Coca-Cola
## 869          Extra Grande        Colas Regular            Coca-Cola
## 870          Extra Grande        Colas Regular            Coca-Cola
## 871          Extra Grande        Colas Regular            Coca-Cola
## 872          Extra Grande        Colas Regular            Coca-Cola
## 873          Extra Grande        Colas Regular            Coca-Cola
## 874          Extra Grande        Colas Regular            Coca-Cola
## 875          Extra Grande        Colas Regular            Coca-Cola
## 876          Extra Grande        Colas Regular            Coca-Cola
## 877          Extra Grande        Colas Regular            Coca-Cola
## 878          Extra Grande        Colas Regular            Coca-Cola
## 879          Extra Grande        Colas Regular            Coca-Cola
## 880          Extra Grande        Colas Regular            Coca-Cola
## 881          Extra Grande        Colas Regular            Coca-Cola
## 882          Extra Grande        Colas Regular            Coca-Cola
## 883          Extra Grande        Colas Regular            Coca-Cola
## 884          Extra Grande        Colas Regular            Coca-Cola
## 885          Extra Grande     Isotónicos Light        Powerade Zero
## 886          Extra Grande   Isotónicos Regular             Powerade
## 887          Extra Grande   Isotónicos Regular             Powerade
## 888          Extra Grande   Isotónicos Regular             Powerade
## 889          Extra Grande     Jugos y Néctares            Del Valle
## 890          Extra Grande     Jugos y Néctares            Del Valle
## 891          Extra Grande     Jugos y Néctares            Del Valle
## 892          Extra Grande     Jugos y Néctares            Del Valle
## 893          Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 894          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 895          Extra Grande    Leche UHT Regular   Santa Clara Entera
## 896          Extra Grande    Leche UHT Regular    Santa Clara Light
## 897          Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 898          Extra Grande        Sabores Light          Sprite Zero
## 899          Extra Grande      Sabores Regular     Del Valle y Nada
## 900          Extra Grande      Sabores Regular     Del Valle y Nada
## 901          Extra Grande      Sabores Regular                Fanta
## 902          Extra Grande      Sabores Regular                Fanta
## 903          Extra Grande      Sabores Regular                Fanta
## 904          Extra Grande      Sabores Regular                Fanta
## 905          Extra Grande      Sabores Regular                Fanta
## 906          Extra Grande      Sabores Regular                Fanta
## 907          Extra Grande      Sabores Regular                Fanta
## 908          Extra Grande      Sabores Regular               Fresca
## 909          Extra Grande      Sabores Regular               Fresca
## 910          Extra Grande      Sabores Regular               Fresca
## 911          Extra Grande      Sabores Regular               Fresca
## 912          Extra Grande      Sabores Regular               Fresca
## 913          Extra Grande      Sabores Regular               Fresca
## 914          Extra Grande      Sabores Regular         Manzana Lift
## 915          Extra Grande      Sabores Regular         Manzana Lift
## 916          Extra Grande      Sabores Regular         Manzana Lift
## 917          Extra Grande      Sabores Regular         Manzana Lift
## 918          Extra Grande      Sabores Regular         Manzana Lift
## 919          Extra Grande      Sabores Regular               Senzao
## 920          Extra Grande      Sabores Regular        Sidral Mundet
## 921          Extra Grande      Sabores Regular        Sidral Mundet
## 922          Extra Grande      Sabores Regular        Sidral Mundet
## 923          Extra Grande      Sabores Regular        Sidral Mundet
## 924          Extra Grande      Sabores Regular               Sprite
## 925          Extra Grande      Sabores Regular               Sprite
## 926          Extra Grande      Sabores Regular               Sprite
## 927          Extra Grande      Sabores Regular               Sprite
## 928          Extra Grande      Sabores Regular               Sprite
## 929          Extra Grande      Sabores Regular               Sprite
## 930          Extra Grande      Sabores Regular               Sprite
## 931          Extra Grande           Té Regular             Fuze Tea
## 932          Extra Grande           Té Regular             Fuze Tea
## 933          Extra Grande           Té Regular             Fuze Tea
## 934          Extra Grande         Agua Mineral    Ciel Mineralizada
## 935          Extra Grande         Agua Mineral      Topo Chico A.M.
## 936          Extra Grande         Agua Mineral      Topo Chico A.M.
## 937          Extra Grande      Agua Purificada Ciel Agua Purificada
## 938          Extra Grande      Agua Purificada Ciel Agua Purificada
## 939          Extra Grande      Agua Purificada Ciel Agua Purificada
## 940          Extra Grande      Agua Saborizada          Ciel Exprim
## 941          Extra Grande      Agua Saborizada            Ciel Mini
## 942          Extra Grande     Bebidas de Fruta       Delaware Punch
## 943          Extra Grande     Bebidas de Fruta       Delaware Punch
## 944          Extra Grande     Bebidas de Fruta               Frutsi
## 945          Extra Grande     Bebidas de Fruta                Pulpy
## 946          Extra Grande     Bebidas de Fruta           Valle Frut
## 947          Extra Grande     Bebidas de Fruta           Valle Frut
## 948          Extra Grande     Bebidas de Fruta           Valle Frut
## 949          Extra Grande     Bebidas de Fruta           Valle Frut
## 950          Extra Grande          Colas Light       Coca-Cola Life
## 951          Extra Grande          Colas Light       Coca-Cola Life
## 952          Extra Grande          Colas Light      Coca-Cola Light
## 953          Extra Grande          Colas Light      Coca-Cola Light
## 954          Extra Grande          Colas Light      Coca-Cola Light
## 955          Extra Grande          Colas Light      Coca-Cola Light
## 956          Extra Grande          Colas Light      Coca-Cola Light
## 957          Extra Grande          Colas Light      Coca-Cola Light
## 958          Extra Grande          Colas Light      Coca-Cola Light
## 959          Extra Grande          Colas Light      Coca-Cola Light
## 960          Extra Grande          Colas Light      Coca-Cola Light
## 961          Extra Grande          Colas Light       Coca-Cola Zero
## 962          Extra Grande          Colas Light       Coca-Cola Zero
## 963          Extra Grande          Colas Light       Coca-Cola Zero
## 964          Extra Grande          Colas Light       Coca-Cola Zero
## 965          Extra Grande          Colas Light       Coca-Cola Zero
## 966          Extra Grande        Colas Regular            Coca-Cola
## 967          Extra Grande        Colas Regular            Coca-Cola
## 968          Extra Grande        Colas Regular            Coca-Cola
## 969          Extra Grande        Colas Regular            Coca-Cola
## 970          Extra Grande        Colas Regular            Coca-Cola
## 971          Extra Grande        Colas Regular            Coca-Cola
## 972          Extra Grande        Colas Regular            Coca-Cola
## 973          Extra Grande        Colas Regular            Coca-Cola
## 974          Extra Grande        Colas Regular            Coca-Cola
## 975          Extra Grande        Colas Regular            Coca-Cola
## 976          Extra Grande        Colas Regular            Coca-Cola
## 977          Extra Grande        Colas Regular            Coca-Cola
## 978          Extra Grande        Colas Regular            Coca-Cola
## 979          Extra Grande        Colas Regular            Coca-Cola
## 980          Extra Grande        Colas Regular            Coca-Cola
## 981          Extra Grande        Colas Regular            Coca-Cola
## 982          Extra Grande        Colas Regular            Coca-Cola
## 983          Extra Grande        Colas Regular            Coca-Cola
## 984          Extra Grande        Colas Regular            Coca-Cola
## 985          Extra Grande        Colas Regular            Coca-Cola
## 986          Extra Grande     Isotónicos Light        Powerade Zero
## 987          Extra Grande   Isotónicos Regular             Powerade
## 988          Extra Grande   Isotónicos Regular             Powerade
## 989          Extra Grande   Isotónicos Regular             Powerade
## 990          Extra Grande     Jugos y Néctares            Del Valle
## 991          Extra Grande     Jugos y Néctares            Del Valle
## 992          Extra Grande     Jugos y Néctares            Del Valle
## 993          Extra Grande     Jugos y Néctares            Del Valle
## 994          Extra Grande     Jugos y Néctares            Del Valle
## 995          Extra Grande     Jugos y Néctares            Del Valle
## 996          Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 997          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 998          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 999          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1000         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 1001         Extra Grande    Leche UHT Regular    Santa Clara Light
## 1002         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1003         Extra Grande        Sabores Light          Sprite Zero
## 1004         Extra Grande      Sabores Regular     Del Valle y Nada
## 1005         Extra Grande      Sabores Regular     Del Valle y Nada
## 1006         Extra Grande      Sabores Regular     Del Valle y Nada
## 1007         Extra Grande      Sabores Regular                Fanta
## 1008         Extra Grande      Sabores Regular                Fanta
## 1009         Extra Grande      Sabores Regular                Fanta
## 1010         Extra Grande      Sabores Regular                Fanta
## 1011         Extra Grande      Sabores Regular                Fanta
## 1012         Extra Grande      Sabores Regular                Fanta
## 1013         Extra Grande      Sabores Regular                Fanta
## 1014         Extra Grande      Sabores Regular               Fresca
## 1015         Extra Grande      Sabores Regular               Fresca
## 1016         Extra Grande      Sabores Regular               Fresca
## 1017         Extra Grande      Sabores Regular               Fresca
## 1018         Extra Grande      Sabores Regular               Fresca
## 1019         Extra Grande      Sabores Regular               Fresca
## 1020         Extra Grande      Sabores Regular               Fresca
## 1021         Extra Grande      Sabores Regular               Fresca
## 1022         Extra Grande      Sabores Regular         Manzana Lift
## 1023         Extra Grande      Sabores Regular         Manzana Lift
## 1024         Extra Grande      Sabores Regular         Manzana Lift
## 1025         Extra Grande      Sabores Regular         Manzana Lift
## 1026         Extra Grande      Sabores Regular         Manzana Lift
## 1027         Extra Grande      Sabores Regular               Senzao
## 1028         Extra Grande      Sabores Regular        Sidral Mundet
## 1029         Extra Grande      Sabores Regular        Sidral Mundet
## 1030         Extra Grande      Sabores Regular        Sidral Mundet
## 1031         Extra Grande      Sabores Regular        Sidral Mundet
## 1032         Extra Grande      Sabores Regular        Sidral Mundet
## 1033         Extra Grande      Sabores Regular               Sprite
## 1034         Extra Grande      Sabores Regular               Sprite
## 1035         Extra Grande      Sabores Regular               Sprite
## 1036         Extra Grande      Sabores Regular               Sprite
## 1037         Extra Grande      Sabores Regular               Sprite
## 1038         Extra Grande      Sabores Regular               Sprite
## 1039         Extra Grande      Sabores Regular               Sprite
## 1040         Extra Grande           Té Regular             Fuze Tea
## 1041         Extra Grande           Té Regular             Fuze Tea
## 1042         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1043         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1044         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1045         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1046         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1047         Extra Grande      Agua Saborizada          Ciel Exprim
## 1048         Extra Grande      Agua Saborizada            Ciel Mini
## 1049         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1050         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1051         Extra Grande     Bebidas de Fruta               Frutsi
## 1052         Extra Grande     Bebidas de Fruta                Pulpy
## 1053         Extra Grande     Bebidas de Fruta           Valle Frut
## 1054         Extra Grande     Bebidas de Fruta           Valle Frut
## 1055         Extra Grande     Bebidas de Fruta           Valle Frut
## 1056         Extra Grande     Bebidas de Fruta           Valle Frut
## 1057         Extra Grande     Bebidas de Fruta           Valle Frut
## 1058         Extra Grande  Bebidas Energeticas                 Burn
## 1059         Extra Grande  Bebidas Energeticas              Glacéau
## 1060         Extra Grande          Colas Light       Coca-Cola Life
## 1061         Extra Grande          Colas Light       Coca-Cola Life
## 1062         Extra Grande          Colas Light      Coca-Cola Light
## 1063         Extra Grande          Colas Light      Coca-Cola Light
## 1064         Extra Grande          Colas Light      Coca-Cola Light
## 1065         Extra Grande          Colas Light      Coca-Cola Light
## 1066         Extra Grande          Colas Light      Coca-Cola Light
## 1067         Extra Grande          Colas Light      Coca-Cola Light
## 1068         Extra Grande          Colas Light       Coca-Cola Zero
## 1069         Extra Grande        Colas Regular            Coca-Cola
## 1070         Extra Grande        Colas Regular            Coca-Cola
## 1071         Extra Grande        Colas Regular            Coca-Cola
## 1072         Extra Grande        Colas Regular            Coca-Cola
## 1073         Extra Grande        Colas Regular            Coca-Cola
## 1074         Extra Grande        Colas Regular            Coca-Cola
## 1075         Extra Grande        Colas Regular            Coca-Cola
## 1076         Extra Grande        Colas Regular            Coca-Cola
## 1077         Extra Grande        Colas Regular            Coca-Cola
## 1078         Extra Grande        Colas Regular            Coca-Cola
## 1079         Extra Grande        Colas Regular            Coca-Cola
## 1080         Extra Grande        Colas Regular            Coca-Cola
## 1081         Extra Grande        Colas Regular            Coca-Cola
## 1082         Extra Grande        Colas Regular            Coca-Cola
## 1083         Extra Grande        Colas Regular            Coca-Cola
## 1084         Extra Grande   Isotónicos Regular             Powerade
## 1085         Extra Grande   Isotónicos Regular             Powerade
## 1086         Extra Grande   Isotónicos Regular             Powerade
## 1087         Extra Grande     Jugos y Néctares            Del Valle
## 1088         Extra Grande     Jugos y Néctares            Del Valle
## 1089         Extra Grande     Jugos y Néctares            Del Valle
## 1090         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 1091         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1092         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1093         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 1094         Extra Grande    Leche UHT Regular    Santa Clara Light
## 1095         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1096         Extra Grande        Sabores Light          Sprite Zero
## 1097         Extra Grande      Sabores Regular     Del Valle y Nada
## 1098         Extra Grande      Sabores Regular                Fanta
## 1099         Extra Grande      Sabores Regular                Fanta
## 1100         Extra Grande      Sabores Regular                Fanta
## 1101         Extra Grande      Sabores Regular                Fanta
## 1102         Extra Grande      Sabores Regular                Fanta
## 1103         Extra Grande      Sabores Regular                Fanta
## 1104         Extra Grande      Sabores Regular               Fresca
## 1105         Extra Grande      Sabores Regular               Fresca
## 1106         Extra Grande      Sabores Regular               Fresca
## 1107         Extra Grande      Sabores Regular               Fresca
## 1108         Extra Grande      Sabores Regular               Fresca
## 1109         Extra Grande      Sabores Regular               Fresca
## 1110         Extra Grande      Sabores Regular               Fresca
## 1111         Extra Grande      Sabores Regular         Manzana Lift
## 1112         Extra Grande      Sabores Regular         Manzana Lift
## 1113         Extra Grande      Sabores Regular         Manzana Lift
## 1114         Extra Grande      Sabores Regular         Manzana Lift
## 1115         Extra Grande      Sabores Regular         Manzana Lift
## 1116         Extra Grande      Sabores Regular               Senzao
## 1117         Extra Grande      Sabores Regular        Sidral Mundet
## 1118         Extra Grande      Sabores Regular        Sidral Mundet
## 1119         Extra Grande      Sabores Regular        Sidral Mundet
## 1120         Extra Grande      Sabores Regular        Sidral Mundet
## 1121         Extra Grande      Sabores Regular        Sidral Mundet
## 1122         Extra Grande      Sabores Regular               Sprite
## 1123         Extra Grande      Sabores Regular               Sprite
## 1124         Extra Grande      Sabores Regular               Sprite
## 1125         Extra Grande      Sabores Regular               Sprite
## 1126         Extra Grande      Sabores Regular               Sprite
## 1127         Extra Grande      Sabores Regular               Sprite
## 1128         Extra Grande             Té Light       Fuze Tea Light
## 1129         Extra Grande           Té Regular             Fuze Tea
## 1130         Extra Grande           Té Regular             Fuze Tea
## 1131         Extra Grande           Té Regular             Fuze Tea
## 1132         Extra Grande           Té Regular             Fuze Tea
## 1133         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1134         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1135         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1136         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1137         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1138         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1139         Extra Grande      Agua Saborizada          Ciel Exprim
## 1140         Extra Grande      Agua Saborizada            Ciel Mini
## 1141         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1142         Extra Grande     Bebidas de Fruta               Frutsi
## 1143         Extra Grande     Bebidas de Fruta                Pulpy
## 1144         Extra Grande     Bebidas de Fruta           Valle Frut
## 1145         Extra Grande     Bebidas de Fruta           Valle Frut
## 1146         Extra Grande     Bebidas de Fruta           Valle Frut
## 1147         Extra Grande     Bebidas de Fruta           Valle Frut
## 1148         Extra Grande  Bebidas Energeticas                 Burn
## 1149         Extra Grande  Bebidas Energeticas                 Burn
## 1150         Extra Grande  Bebidas Energeticas              Glacéau
## 1151         Extra Grande          Colas Light       Coca-Cola Life
## 1152         Extra Grande          Colas Light      Coca-Cola Light
## 1153         Extra Grande          Colas Light      Coca-Cola Light
## 1154         Extra Grande          Colas Light      Coca-Cola Light
## 1155         Extra Grande          Colas Light      Coca-Cola Light
## 1156         Extra Grande          Colas Light      Coca-Cola Light
## 1157         Extra Grande          Colas Light      Coca-Cola Light
## 1158         Extra Grande        Colas Regular            Coca-Cola
## 1159         Extra Grande        Colas Regular            Coca-Cola
## 1160         Extra Grande        Colas Regular            Coca-Cola
## 1161         Extra Grande        Colas Regular            Coca-Cola
## 1162         Extra Grande        Colas Regular            Coca-Cola
## 1163         Extra Grande        Colas Regular            Coca-Cola
## 1164         Extra Grande        Colas Regular            Coca-Cola
## 1165         Extra Grande        Colas Regular            Coca-Cola
## 1166         Extra Grande        Colas Regular            Coca-Cola
## 1167         Extra Grande        Colas Regular            Coca-Cola
## 1168         Extra Grande        Colas Regular            Coca-Cola
## 1169         Extra Grande        Colas Regular            Coca-Cola
## 1170         Extra Grande        Colas Regular            Coca-Cola
## 1171         Extra Grande        Colas Regular            Coca-Cola
## 1172         Extra Grande        Colas Regular            Coca-Cola
## 1173         Extra Grande   Isotónicos Regular             Powerade
## 1174         Extra Grande   Isotónicos Regular             Powerade
## 1175         Extra Grande   Isotónicos Regular             Powerade
## 1176         Extra Grande     Jugos y Néctares            Del Valle
## 1177         Extra Grande     Jugos y Néctares            Del Valle
## 1178         Extra Grande     Jugos y Néctares            Del Valle
## 1179         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 1180         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1181         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1182         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1183         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 1184         Extra Grande    Leche UHT Regular    Santa Clara Light
## 1185         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1186         Extra Grande        Sabores Light           Fanta Zero
## 1187         Extra Grande        Sabores Light          Fresca Zero
## 1188         Extra Grande        Sabores Light    Manzana Lift Zero
## 1189         Extra Grande        Sabores Light          Sprite Zero
## 1190         Extra Grande      Sabores Regular     Del Valle y Nada
## 1191         Extra Grande      Sabores Regular                Fanta
## 1192         Extra Grande      Sabores Regular                Fanta
## 1193         Extra Grande      Sabores Regular                Fanta
## 1194         Extra Grande      Sabores Regular                Fanta
## 1195         Extra Grande      Sabores Regular                Fanta
## 1196         Extra Grande      Sabores Regular                Fanta
## 1197         Extra Grande      Sabores Regular                Fanta
## 1198         Extra Grande      Sabores Regular               Fresca
## 1199         Extra Grande      Sabores Regular               Fresca
## 1200         Extra Grande      Sabores Regular               Fresca
## 1201         Extra Grande      Sabores Regular               Fresca
## 1202         Extra Grande      Sabores Regular               Fresca
## 1203         Extra Grande      Sabores Regular               Fresca
## 1204         Extra Grande      Sabores Regular               Fresca
## 1205         Extra Grande      Sabores Regular         Manzana Lift
## 1206         Extra Grande      Sabores Regular         Manzana Lift
## 1207         Extra Grande      Sabores Regular         Manzana Lift
## 1208         Extra Grande      Sabores Regular         Manzana Lift
## 1209         Extra Grande      Sabores Regular         Manzana Lift
## 1210         Extra Grande      Sabores Regular         Manzana Lift
## 1211         Extra Grande      Sabores Regular               Senzao
## 1212         Extra Grande      Sabores Regular        Sidral Mundet
## 1213         Extra Grande      Sabores Regular        Sidral Mundet
## 1214         Extra Grande      Sabores Regular               Sprite
## 1215         Extra Grande      Sabores Regular               Sprite
## 1216         Extra Grande      Sabores Regular               Sprite
## 1217         Extra Grande      Sabores Regular               Sprite
## 1218         Extra Grande      Sabores Regular               Sprite
## 1219         Extra Grande      Sabores Regular               Sprite
## 1220         Extra Grande      Sabores Regular               Sprite
## 1221         Extra Grande      Sabores Regular               Sprite
## 1222         Extra Grande             Té Light       Fuze Tea Light
## 1223         Extra Grande           Té Regular             Fuze Tea
## 1224         Extra Grande           Té Regular             Fuze Tea
## 1225         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1226         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1227         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1228         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1229         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1230         Extra Grande      Agua Saborizada          Ciel Exprim
## 1231         Extra Grande      Agua Saborizada            Ciel Mini
## 1232         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1233         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1234         Extra Grande     Bebidas de Fruta               Frutsi
## 1235         Extra Grande     Bebidas de Fruta                Pulpy
## 1236         Extra Grande     Bebidas de Fruta           Valle Frut
## 1237         Extra Grande     Bebidas de Fruta           Valle Frut
## 1238         Extra Grande          Colas Light      Coca-Cola Light
## 1239         Extra Grande          Colas Light      Coca-Cola Light
## 1240         Extra Grande          Colas Light      Coca-Cola Light
## 1241         Extra Grande          Colas Light      Coca-Cola Light
## 1242         Extra Grande          Colas Light      Coca-Cola Light
## 1243         Extra Grande        Colas Regular            Coca-Cola
## 1244         Extra Grande        Colas Regular            Coca-Cola
## 1245         Extra Grande        Colas Regular            Coca-Cola
## 1246         Extra Grande        Colas Regular            Coca-Cola
## 1247         Extra Grande        Colas Regular            Coca-Cola
## 1248         Extra Grande        Colas Regular            Coca-Cola
## 1249         Extra Grande        Colas Regular            Coca-Cola
## 1250         Extra Grande        Colas Regular            Coca-Cola
## 1251         Extra Grande        Colas Regular            Coca-Cola
## 1252         Extra Grande        Colas Regular            Coca-Cola
## 1253         Extra Grande        Colas Regular            Coca-Cola
## 1254         Extra Grande        Colas Regular            Coca-Cola
## 1255         Extra Grande   Isotónicos Regular             Powerade
## 1256         Extra Grande     Jugos y Néctares            Del Valle
## 1257         Extra Grande     Jugos y Néctares            Del Valle
## 1258         Extra Grande     Jugos y Néctares            Del Valle
## 1259         Extra Grande     Jugos y Néctares            Del Valle
## 1260         Extra Grande     Jugos y Néctares            Del Valle
## 1261         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1262         Extra Grande      Sabores Regular     Del Valle y Nada
## 1263         Extra Grande      Sabores Regular     Del Valle y Nada
## 1264         Extra Grande      Sabores Regular                Fanta
## 1265         Extra Grande      Sabores Regular                Fanta
## 1266         Extra Grande      Sabores Regular                Fanta
## 1267         Extra Grande      Sabores Regular                Fanta
## 1268         Extra Grande      Sabores Regular                Fanta
## 1269         Extra Grande      Sabores Regular                Fanta
## 1270         Extra Grande      Sabores Regular                Fanta
## 1271         Extra Grande      Sabores Regular               Fresca
## 1272         Extra Grande      Sabores Regular               Fresca
## 1273         Extra Grande      Sabores Regular               Fresca
## 1274         Extra Grande      Sabores Regular               Fresca
## 1275         Extra Grande      Sabores Regular               Fresca
## 1276         Extra Grande      Sabores Regular         Manzana Lift
## 1277         Extra Grande      Sabores Regular         Manzana Lift
## 1278         Extra Grande      Sabores Regular         Manzana Lift
## 1279         Extra Grande      Sabores Regular         Manzana Lift
## 1280         Extra Grande      Sabores Regular        Sidral Mundet
## 1281         Extra Grande      Sabores Regular        Sidral Mundet
## 1282         Extra Grande      Sabores Regular        Sidral Mundet
## 1283         Extra Grande      Sabores Regular               Sprite
## 1284         Extra Grande      Sabores Regular               Sprite
## 1285         Extra Grande      Sabores Regular               Sprite
## 1286         Extra Grande      Sabores Regular               Sprite
## 1287         Extra Grande      Sabores Regular               Sprite
## 1288         Extra Grande      Sabores Regular               Sprite
## 1289         Extra Grande      Sabores Regular               Sprite
## 1290         Extra Grande           Té Regular             Fuze Tea
## 1291         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1292         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1293         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1294         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1295         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1296         Extra Grande      Agua Saborizada          Ciel Exprim
## 1297         Extra Grande      Agua Saborizada            Ciel Mini
## 1298         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1299         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1300         Extra Grande     Bebidas de Fruta               Frutsi
## 1301         Extra Grande     Bebidas de Fruta                Pulpy
## 1302         Extra Grande     Bebidas de Fruta           Valle Frut
## 1303         Extra Grande     Bebidas de Fruta           Valle Frut
## 1304         Extra Grande  Bebidas Energeticas              Glacéau
## 1305         Extra Grande          Colas Light       Coca-Cola Life
## 1306         Extra Grande          Colas Light       Coca-Cola Life
## 1307         Extra Grande          Colas Light      Coca-Cola Light
## 1308         Extra Grande          Colas Light      Coca-Cola Light
## 1309         Extra Grande          Colas Light      Coca-Cola Light
## 1310         Extra Grande          Colas Light      Coca-Cola Light
## 1311         Extra Grande          Colas Light      Coca-Cola Light
## 1312         Extra Grande          Colas Light      Coca-Cola Light
## 1313         Extra Grande          Colas Light      Coca-Cola Light
## 1314         Extra Grande          Colas Light      Coca-Cola Light
## 1315         Extra Grande          Colas Light      Coca-Cola Light
## 1316         Extra Grande          Colas Light      Coca-Cola Light
## 1317         Extra Grande          Colas Light       Coca-Cola Zero
## 1318         Extra Grande          Colas Light       Coca-Cola Zero
## 1319         Extra Grande          Colas Light       Coca-Cola Zero
## 1320         Extra Grande        Colas Regular            Coca-Cola
## 1321         Extra Grande        Colas Regular            Coca-Cola
## 1322         Extra Grande        Colas Regular            Coca-Cola
## 1323         Extra Grande        Colas Regular            Coca-Cola
## 1324         Extra Grande        Colas Regular            Coca-Cola
## 1325         Extra Grande        Colas Regular            Coca-Cola
## 1326         Extra Grande        Colas Regular            Coca-Cola
## 1327         Extra Grande        Colas Regular            Coca-Cola
## 1328         Extra Grande        Colas Regular            Coca-Cola
## 1329         Extra Grande        Colas Regular            Coca-Cola
## 1330         Extra Grande        Colas Regular            Coca-Cola
## 1331         Extra Grande        Colas Regular            Coca-Cola
## 1332         Extra Grande        Colas Regular            Coca-Cola
## 1333         Extra Grande        Colas Regular            Coca-Cola
## 1334         Extra Grande   Isotónicos Regular             Powerade
## 1335         Extra Grande   Isotónicos Regular             Powerade
## 1336         Extra Grande   Isotónicos Regular             Powerade
## 1337         Extra Grande     Jugos y Néctares            Del Valle
## 1338         Extra Grande     Jugos y Néctares            Del Valle
## 1339         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1340         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1341         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1342         Extra Grande        Sabores Light          Sprite Zero
## 1343         Extra Grande      Sabores Regular     Del Valle y Nada
## 1344         Extra Grande      Sabores Regular                Fanta
## 1345         Extra Grande      Sabores Regular                Fanta
## 1346         Extra Grande      Sabores Regular                Fanta
## 1347         Extra Grande      Sabores Regular                Fanta
## 1348         Extra Grande      Sabores Regular                Fanta
## 1349         Extra Grande      Sabores Regular                Fanta
## 1350         Extra Grande      Sabores Regular                Fanta
## 1351         Extra Grande      Sabores Regular               Fresca
## 1352         Extra Grande      Sabores Regular               Fresca
## 1353         Extra Grande      Sabores Regular               Fresca
## 1354         Extra Grande      Sabores Regular               Fresca
## 1355         Extra Grande      Sabores Regular               Fresca
## 1356         Extra Grande      Sabores Regular               Fresca
## 1357         Extra Grande      Sabores Regular               Fresca
## 1358         Extra Grande      Sabores Regular         Manzana Lift
## 1359         Extra Grande      Sabores Regular         Manzana Lift
## 1360         Extra Grande      Sabores Regular         Manzana Lift
## 1361         Extra Grande      Sabores Regular         Manzana Lift
## 1362         Extra Grande      Sabores Regular               Senzao
## 1363         Extra Grande      Sabores Regular        Sidral Mundet
## 1364         Extra Grande      Sabores Regular        Sidral Mundet
## 1365         Extra Grande      Sabores Regular        Sidral Mundet
## 1366         Extra Grande      Sabores Regular        Sidral Mundet
## 1367         Extra Grande      Sabores Regular        Sidral Mundet
## 1368         Extra Grande      Sabores Regular               Sprite
## 1369         Extra Grande      Sabores Regular               Sprite
## 1370         Extra Grande      Sabores Regular               Sprite
## 1371         Extra Grande      Sabores Regular               Sprite
## 1372         Extra Grande      Sabores Regular               Sprite
## 1373         Extra Grande      Sabores Regular               Sprite
## 1374         Extra Grande      Sabores Regular               Sprite
## 1375         Extra Grande           Té Regular             Fuze Tea
## 1376         Extra Grande           Té Regular             Fuze Tea
## 1377         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1378         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1379         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1380         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1381         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1382         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1383         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1384         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1385         Extra Grande      Agua Saborizada          Ciel Exprim
## 1386         Extra Grande      Agua Saborizada            Ciel Mini
## 1387         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1388         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1389         Extra Grande     Bebidas de Fruta               Frutsi
## 1390         Extra Grande     Bebidas de Fruta                Pulpy
## 1391         Extra Grande     Bebidas de Fruta           Valle Frut
## 1392         Extra Grande     Bebidas de Fruta           Valle Frut
## 1393         Extra Grande     Bebidas de Fruta           Valle Frut
## 1394         Extra Grande     Bebidas de Fruta           Valle Frut
## 1395         Extra Grande  Bebidas Energeticas                 Burn
## 1396         Extra Grande  Bebidas Energeticas              Glacéau
## 1397         Extra Grande          Colas Light       Coca-Cola Life
## 1398         Extra Grande          Colas Light      Coca-Cola Light
## 1399         Extra Grande          Colas Light      Coca-Cola Light
## 1400         Extra Grande          Colas Light      Coca-Cola Light
## 1401         Extra Grande          Colas Light      Coca-Cola Light
## 1402         Extra Grande          Colas Light      Coca-Cola Light
## 1403         Extra Grande          Colas Light      Coca-Cola Light
## 1404         Extra Grande          Colas Light      Coca-Cola Light
## 1405         Extra Grande          Colas Light      Coca-Cola Light
## 1406         Extra Grande          Colas Light       Coca-Cola Zero
## 1407         Extra Grande          Colas Light       Coca-Cola Zero
## 1408         Extra Grande          Colas Light       Coca-Cola Zero
## 1409         Extra Grande          Colas Light       Coca-Cola Zero
## 1410         Extra Grande          Colas Light       Coca-Cola Zero
## 1411         Extra Grande        Colas Regular            Coca-Cola
## 1412         Extra Grande        Colas Regular            Coca-Cola
## 1413         Extra Grande        Colas Regular            Coca-Cola
## 1414         Extra Grande        Colas Regular            Coca-Cola
## 1415         Extra Grande        Colas Regular            Coca-Cola
## 1416         Extra Grande        Colas Regular            Coca-Cola
## 1417         Extra Grande        Colas Regular            Coca-Cola
## 1418         Extra Grande        Colas Regular            Coca-Cola
## 1419         Extra Grande        Colas Regular            Coca-Cola
## 1420         Extra Grande        Colas Regular            Coca-Cola
## 1421         Extra Grande        Colas Regular            Coca-Cola
## 1422         Extra Grande        Colas Regular            Coca-Cola
## 1423         Extra Grande        Colas Regular            Coca-Cola
## 1424         Extra Grande        Colas Regular            Coca-Cola
## 1425         Extra Grande        Colas Regular            Coca-Cola
## 1426         Extra Grande        Colas Regular            Coca-Cola
## 1427         Extra Grande        Colas Regular            Coca-Cola
## 1428         Extra Grande   Isotónicos Regular             Powerade
## 1429         Extra Grande   Isotónicos Regular             Powerade
## 1430         Extra Grande   Isotónicos Regular             Powerade
## 1431         Extra Grande     Jugos y Néctares            Del Valle
## 1432         Extra Grande     Jugos y Néctares            Del Valle
## 1433         Extra Grande     Jugos y Néctares            Del Valle
## 1434         Extra Grande     Jugos y Néctares            Del Valle
## 1435         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 1436         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1437         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1438         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 1439         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1440         Extra Grande        Sabores Light          Sprite Zero
## 1441         Extra Grande      Sabores Regular     Del Valle y Nada
## 1442         Extra Grande      Sabores Regular                Fanta
## 1443         Extra Grande      Sabores Regular                Fanta
## 1444         Extra Grande      Sabores Regular                Fanta
## 1445         Extra Grande      Sabores Regular                Fanta
## 1446         Extra Grande      Sabores Regular                Fanta
## 1447         Extra Grande      Sabores Regular                Fanta
## 1448         Extra Grande      Sabores Regular                Fanta
## 1449         Extra Grande      Sabores Regular               Fresca
## 1450         Extra Grande      Sabores Regular               Fresca
## 1451         Extra Grande      Sabores Regular               Fresca
## 1452         Extra Grande      Sabores Regular               Fresca
## 1453         Extra Grande      Sabores Regular               Fresca
## 1454         Extra Grande      Sabores Regular               Fresca
## 1455         Extra Grande      Sabores Regular               Fresca
## 1456         Extra Grande      Sabores Regular         Manzana Lift
## 1457         Extra Grande      Sabores Regular         Manzana Lift
## 1458         Extra Grande      Sabores Regular         Manzana Lift
## 1459         Extra Grande      Sabores Regular         Manzana Lift
## 1460         Extra Grande      Sabores Regular         Manzana Lift
## 1461         Extra Grande      Sabores Regular         Manzana Lift
## 1462         Extra Grande      Sabores Regular               Senzao
## 1463         Extra Grande      Sabores Regular        Sidral Mundet
## 1464         Extra Grande      Sabores Regular        Sidral Mundet
## 1465         Extra Grande      Sabores Regular        Sidral Mundet
## 1466         Extra Grande      Sabores Regular        Sidral Mundet
## 1467         Extra Grande      Sabores Regular        Sidral Mundet
## 1468         Extra Grande      Sabores Regular        Sidral Mundet
## 1469         Extra Grande      Sabores Regular        Sidral Mundet
## 1470         Extra Grande      Sabores Regular               Sprite
## 1471         Extra Grande      Sabores Regular               Sprite
## 1472         Extra Grande      Sabores Regular               Sprite
## 1473         Extra Grande      Sabores Regular               Sprite
## 1474         Extra Grande      Sabores Regular               Sprite
## 1475         Extra Grande      Sabores Regular               Sprite
## 1476         Extra Grande      Sabores Regular               Sprite
## 1477         Extra Grande      Sabores Regular               Sprite
## 1478         Extra Grande             Té Light       Fuze Tea Light
## 1479         Extra Grande           Té Regular             Fuze Tea
## 1480         Extra Grande           Té Regular             Fuze Tea
## 1481         Extra Grande           Té Regular             Fuze Tea
## 1482         Extra Grande           Té Regular             Fuze Tea
## 1483         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1484         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1485         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1486         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1487         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1488         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1489         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1490         Extra Grande      Agua Saborizada          Ciel Exprim
## 1491         Extra Grande      Agua Saborizada      Ciel Saborizada
## 1492         Extra Grande     Bebidas de Fruta               Bebere
## 1493         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1494         Extra Grande     Bebidas de Fruta               Frutsi
## 1495         Extra Grande     Bebidas de Fruta                Pulpy
## 1496         Extra Grande     Bebidas de Fruta           Valle Frut
## 1497         Extra Grande     Bebidas de Fruta           Valle Frut
## 1498         Extra Grande     Bebidas de Fruta           Valle Frut
## 1499         Extra Grande     Bebidas de Fruta           Valle Frut
## 1500         Extra Grande  Bebidas Energeticas                 Burn
## 1501         Extra Grande  Bebidas Energeticas                 Burn
## 1502         Extra Grande  Bebidas Energeticas              Glacéau
## 1503         Extra Grande          Colas Light      Coca-Cola Light
## 1504         Extra Grande          Colas Light      Coca-Cola Light
## 1505         Extra Grande          Colas Light      Coca-Cola Light
## 1506         Extra Grande          Colas Light      Coca-Cola Light
## 1507         Extra Grande          Colas Light      Coca-Cola Light
## 1508         Extra Grande          Colas Light      Coca-Cola Light
## 1509         Extra Grande          Colas Light      Coca-Cola Light
## 1510         Extra Grande          Colas Light       Coca-Cola Zero
## 1511         Extra Grande          Colas Light       Coca-Cola Zero
## 1512         Extra Grande          Colas Light       Coca-Cola Zero
## 1513         Extra Grande        Colas Regular            Coca-Cola
## 1514         Extra Grande        Colas Regular            Coca-Cola
## 1515         Extra Grande        Colas Regular            Coca-Cola
## 1516         Extra Grande        Colas Regular            Coca-Cola
## 1517         Extra Grande        Colas Regular            Coca-Cola
## 1518         Extra Grande        Colas Regular            Coca-Cola
## 1519         Extra Grande        Colas Regular            Coca-Cola
## 1520         Extra Grande        Colas Regular            Coca-Cola
## 1521         Extra Grande        Colas Regular            Coca-Cola
## 1522         Extra Grande        Colas Regular            Coca-Cola
## 1523         Extra Grande        Colas Regular            Coca-Cola
## 1524         Extra Grande        Colas Regular            Coca-Cola
## 1525         Extra Grande        Colas Regular            Coca-Cola
## 1526         Extra Grande        Colas Regular            Coca-Cola
## 1527         Extra Grande        Colas Regular            Coca-Cola
## 1528         Extra Grande     Isotónicos Light        Powerade Zero
## 1529         Extra Grande   Isotónicos Regular             Powerade
## 1530         Extra Grande   Isotónicos Regular             Powerade
## 1531         Extra Grande   Isotónicos Regular             Powerade
## 1532         Extra Grande     Jugos y Néctares            Del Valle
## 1533         Extra Grande     Jugos y Néctares            Del Valle
## 1534         Extra Grande     Jugos y Néctares            Del Valle
## 1535         Extra Grande     Jugos y Néctares            Del Valle
## 1536         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 1537         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1538         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1539         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1540         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1541         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 1542         Extra Grande    Leche UHT Regular    Santa Clara Light
## 1543         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1544         Extra Grande        Sabores Light          Sprite Zero
## 1545         Extra Grande      Sabores Regular     Del Valle y Nada
## 1546         Extra Grande      Sabores Regular                Fanta
## 1547         Extra Grande      Sabores Regular                Fanta
## 1548         Extra Grande      Sabores Regular                Fanta
## 1549         Extra Grande      Sabores Regular                Fanta
## 1550         Extra Grande      Sabores Regular                Fanta
## 1551         Extra Grande      Sabores Regular                Fanta
## 1552         Extra Grande      Sabores Regular               Fresca
## 1553         Extra Grande      Sabores Regular               Fresca
## 1554         Extra Grande      Sabores Regular               Fresca
## 1555         Extra Grande      Sabores Regular               Fresca
## 1556         Extra Grande      Sabores Regular               Fresca
## 1557         Extra Grande      Sabores Regular               Fresca
## 1558         Extra Grande      Sabores Regular         Manzana Lift
## 1559         Extra Grande      Sabores Regular         Manzana Lift
## 1560         Extra Grande      Sabores Regular         Manzana Lift
## 1561         Extra Grande      Sabores Regular         Manzana Lift
## 1562         Extra Grande      Sabores Regular         Manzana Lift
## 1563         Extra Grande      Sabores Regular               Senzao
## 1564         Extra Grande      Sabores Regular        Sidral Mundet
## 1565         Extra Grande      Sabores Regular        Sidral Mundet
## 1566         Extra Grande      Sabores Regular        Sidral Mundet
## 1567         Extra Grande      Sabores Regular        Sidral Mundet
## 1568         Extra Grande      Sabores Regular        Sidral Mundet
## 1569         Extra Grande      Sabores Regular        Sidral Mundet
## 1570         Extra Grande      Sabores Regular               Sprite
## 1571         Extra Grande      Sabores Regular               Sprite
## 1572         Extra Grande      Sabores Regular               Sprite
## 1573         Extra Grande      Sabores Regular               Sprite
## 1574         Extra Grande      Sabores Regular               Sprite
## 1575         Extra Grande      Sabores Regular               Sprite
## 1576         Extra Grande           Té Regular             Fuze Tea
## 1577         Extra Grande           Té Regular             Fuze Tea
## 1578         Extra Grande           Té Regular             Fuze Tea
## 1579         Extra Grande           Té Regular             Fuze Tea
## 1580         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1581         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1582         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1583         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1584         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1585         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1586         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1587         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1588         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1589         Extra Grande      Agua Saborizada          Ciel Exprim
## 1590         Extra Grande      Agua Saborizada            Ciel Mini
## 1591         Extra Grande      Agua Saborizada      Ciel Saborizada
## 1592         Extra Grande     Bebidas de Fruta               Bebere
## 1593         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1594         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1595         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1596         Extra Grande     Bebidas de Fruta               Frutsi
## 1597         Extra Grande     Bebidas de Fruta                Pulpy
## 1598         Extra Grande     Bebidas de Fruta           Valle Frut
## 1599         Extra Grande     Bebidas de Fruta           Valle Frut
## 1600         Extra Grande     Bebidas de Fruta           Valle Frut
## 1601         Extra Grande     Bebidas de Fruta           Valle Frut
## 1602         Extra Grande     Bebidas de Fruta           Valle Frut
## 1603         Extra Grande  Bebidas Energeticas                 Burn
## 1604         Extra Grande  Bebidas Energeticas                 Burn
## 1605         Extra Grande  Bebidas Energeticas              Glacéau
## 1606         Extra Grande          Colas Light       Coca-Cola Life
## 1607         Extra Grande          Colas Light      Coca-Cola Light
## 1608         Extra Grande          Colas Light      Coca-Cola Light
## 1609         Extra Grande          Colas Light       Coca-Cola Zero
## 1610         Extra Grande        Colas Regular            Coca-Cola
## 1611         Extra Grande        Colas Regular            Coca-Cola
## 1612         Extra Grande        Colas Regular            Coca-Cola
## 1613         Extra Grande        Colas Regular            Coca-Cola
## 1614         Extra Grande        Colas Regular            Coca-Cola
## 1615         Extra Grande        Colas Regular            Coca-Cola
## 1616         Extra Grande        Colas Regular            Coca-Cola
## 1617         Extra Grande        Colas Regular            Coca-Cola
## 1618         Extra Grande        Colas Regular            Coca-Cola
## 1619         Extra Grande        Colas Regular            Coca-Cola
## 1620         Extra Grande        Colas Regular            Coca-Cola
## 1621         Extra Grande        Colas Regular            Coca-Cola
## 1622         Extra Grande        Colas Regular            Coca-Cola
## 1623         Extra Grande        Colas Regular            Coca-Cola
## 1624         Extra Grande        Colas Regular            Coca-Cola
## 1625         Extra Grande        Colas Regular            Coca-Cola
## 1626         Extra Grande        Colas Regular            Coca-Cola
## 1627         Extra Grande        Colas Regular            Coca-Cola
## 1628         Extra Grande     Isotónicos Light        Powerade Zero
## 1629         Extra Grande   Isotónicos Regular             Powerade
## 1630         Extra Grande   Isotónicos Regular             Powerade
## 1631         Extra Grande   Isotónicos Regular             Powerade
## 1632         Extra Grande     Jugos y Néctares            Del Valle
## 1633         Extra Grande     Jugos y Néctares            Del Valle
## 1634         Extra Grande     Jugos y Néctares            Del Valle
## 1635         Extra Grande     Jugos y Néctares            Del Valle
## 1636         Extra Grande     Jugos y Néctares            Del Valle
## 1637         Extra Grande     Jugos y Néctares            Del Valle
## 1638         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 1639         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1640         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1641         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1642         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 1643         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1644         Extra Grande      Sabores Regular     Del Valle y Nada
## 1645         Extra Grande      Sabores Regular     Del Valle y Nada
## 1646         Extra Grande      Sabores Regular                Fanta
## 1647         Extra Grande      Sabores Regular                Fanta
## 1648         Extra Grande      Sabores Regular                Fanta
## 1649         Extra Grande      Sabores Regular                Fanta
## 1650         Extra Grande      Sabores Regular                Fanta
## 1651         Extra Grande      Sabores Regular                Fanta
## 1652         Extra Grande      Sabores Regular                Fanta
## 1653         Extra Grande      Sabores Regular                Fanta
## 1654         Extra Grande      Sabores Regular                Fanta
## 1655         Extra Grande      Sabores Regular                Fanta
## 1656         Extra Grande      Sabores Regular               Fresca
## 1657         Extra Grande      Sabores Regular               Fresca
## 1658         Extra Grande      Sabores Regular               Fresca
## 1659         Extra Grande      Sabores Regular               Fresca
## 1660         Extra Grande      Sabores Regular               Fresca
## 1661         Extra Grande      Sabores Regular               Fresca
## 1662         Extra Grande      Sabores Regular               Fresca
## 1663         Extra Grande      Sabores Regular               Fresca
## 1664         Extra Grande      Sabores Regular               Fresca
## 1665         Extra Grande      Sabores Regular               Fresca
## 1666         Extra Grande      Sabores Regular               Fresca
## 1667         Extra Grande      Sabores Regular         Manzana Lift
## 1668         Extra Grande      Sabores Regular         Manzana Lift
## 1669         Extra Grande      Sabores Regular         Manzana Lift
## 1670         Extra Grande      Sabores Regular         Manzana Lift
## 1671         Extra Grande      Sabores Regular         Manzana Lift
## 1672         Extra Grande      Sabores Regular         Manzana Lift
## 1673         Extra Grande      Sabores Regular         Manzana Lift
## 1674         Extra Grande      Sabores Regular         Manzana Lift
## 1675         Extra Grande      Sabores Regular               Senzao
## 1676         Extra Grande      Sabores Regular        Sidral Mundet
## 1677         Extra Grande      Sabores Regular        Sidral Mundet
## 1678         Extra Grande      Sabores Regular        Sidral Mundet
## 1679         Extra Grande      Sabores Regular        Sidral Mundet
## 1680         Extra Grande      Sabores Regular        Sidral Mundet
## 1681         Extra Grande      Sabores Regular        Sidral Mundet
## 1682         Extra Grande      Sabores Regular        Sidral Mundet
## 1683         Extra Grande      Sabores Regular               Sprite
## 1684         Extra Grande      Sabores Regular               Sprite
## 1685         Extra Grande      Sabores Regular               Sprite
## 1686         Extra Grande      Sabores Regular               Sprite
## 1687         Extra Grande      Sabores Regular               Sprite
## 1688         Extra Grande      Sabores Regular               Sprite
## 1689         Extra Grande      Sabores Regular               Sprite
## 1690         Extra Grande      Sabores Regular               Sprite
## 1691         Extra Grande      Sabores Regular               Sprite
## 1692         Extra Grande      Sabores Regular               Sprite
## 1693         Extra Grande      Sabores Regular               Sprite
## 1694         Extra Grande           Té Regular             Fuze Tea
## 1695         Extra Grande           Té Regular             Fuze Tea
## 1696         Extra Grande           Té Regular             Fuze Tea
## 1697         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1698         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1699         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1700         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1701         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1702         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1703         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1704         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1705         Extra Grande      Agua Saborizada          Ciel Exprim
## 1706         Extra Grande      Agua Saborizada            Ciel Mini
## 1707         Extra Grande      Agua Saborizada      Ciel Saborizada
## 1708         Extra Grande     Bebidas de Fruta               Bebere
## 1709         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1710         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1711         Extra Grande     Bebidas de Fruta               Frutsi
## 1712         Extra Grande     Bebidas de Fruta                Pulpy
## 1713         Extra Grande     Bebidas de Fruta           Valle Frut
## 1714         Extra Grande     Bebidas de Fruta           Valle Frut
## 1715         Extra Grande     Bebidas de Fruta           Valle Frut
## 1716         Extra Grande     Bebidas de Fruta           Valle Frut
## 1717         Extra Grande     Bebidas de Fruta           Valle Frut
## 1718         Extra Grande     Bebidas de Fruta           Valle Frut
## 1719         Extra Grande  Bebidas Energeticas                 Burn
## 1720         Extra Grande  Bebidas Energeticas                 Burn
## 1721         Extra Grande  Bebidas Energeticas              Glacéau
## 1722         Extra Grande          Colas Light       Coca-Cola Life
## 1723         Extra Grande          Colas Light       Coca-Cola Life
## 1724         Extra Grande          Colas Light       Coca-Cola Life
## 1725         Extra Grande          Colas Light       Coca-Cola Life
## 1726         Extra Grande          Colas Light      Coca-Cola Light
## 1727         Extra Grande          Colas Light      Coca-Cola Light
## 1728         Extra Grande          Colas Light      Coca-Cola Light
## 1729         Extra Grande          Colas Light      Coca-Cola Light
## 1730         Extra Grande          Colas Light      Coca-Cola Light
## 1731         Extra Grande          Colas Light      Coca-Cola Light
## 1732         Extra Grande          Colas Light      Coca-Cola Light
## 1733         Extra Grande          Colas Light      Coca-Cola Light
## 1734         Extra Grande          Colas Light      Coca-Cola Light
## 1735         Extra Grande          Colas Light       Coca-Cola Zero
## 1736         Extra Grande          Colas Light       Coca-Cola Zero
## 1737         Extra Grande          Colas Light       Coca-Cola Zero
## 1738         Extra Grande          Colas Light       Coca-Cola Zero
## 1739         Extra Grande          Colas Light       Coca-Cola Zero
## 1740         Extra Grande        Colas Regular            Coca-Cola
## 1741         Extra Grande        Colas Regular            Coca-Cola
## 1742         Extra Grande        Colas Regular            Coca-Cola
## 1743         Extra Grande        Colas Regular            Coca-Cola
## 1744         Extra Grande        Colas Regular            Coca-Cola
## 1745         Extra Grande        Colas Regular            Coca-Cola
## 1746         Extra Grande        Colas Regular            Coca-Cola
## 1747         Extra Grande        Colas Regular            Coca-Cola
## 1748         Extra Grande        Colas Regular            Coca-Cola
## 1749         Extra Grande        Colas Regular            Coca-Cola
## 1750         Extra Grande        Colas Regular            Coca-Cola
## 1751         Extra Grande        Colas Regular            Coca-Cola
## 1752         Extra Grande        Colas Regular            Coca-Cola
## 1753         Extra Grande        Colas Regular            Coca-Cola
## 1754         Extra Grande        Colas Regular            Coca-Cola
## 1755         Extra Grande        Colas Regular            Coca-Cola
## 1756         Extra Grande        Colas Regular            Coca-Cola
## 1757         Extra Grande        Colas Regular            Coca-Cola
## 1758         Extra Grande        Colas Regular            Coca-Cola
## 1759         Extra Grande        Colas Regular            Coca-Cola
## 1760         Extra Grande     Isotónicos Light        Powerade Zero
## 1761         Extra Grande   Isotónicos Regular             Powerade
## 1762         Extra Grande   Isotónicos Regular             Powerade
## 1763         Extra Grande   Isotónicos Regular             Powerade
## 1764         Extra Grande     Jugos y Néctares            Del Valle
## 1765         Extra Grande     Jugos y Néctares            Del Valle
## 1766         Extra Grande     Jugos y Néctares            Del Valle
## 1767         Extra Grande     Jugos y Néctares            Del Valle
## 1768         Extra Grande     Jugos y Néctares            Del Valle
## 1769         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 1770         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1771         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1772         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1773         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1774         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 1775         Extra Grande    Leche UHT Regular    Santa Clara Light
## 1776         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1777         Extra Grande        Sabores Light          Sprite Zero
## 1778         Extra Grande      Sabores Regular     Del Valle y Nada
## 1779         Extra Grande      Sabores Regular     Del Valle y Nada
## 1780         Extra Grande      Sabores Regular                Fanta
## 1781         Extra Grande      Sabores Regular                Fanta
## 1782         Extra Grande      Sabores Regular                Fanta
## 1783         Extra Grande      Sabores Regular                Fanta
## 1784         Extra Grande      Sabores Regular                Fanta
## 1785         Extra Grande      Sabores Regular                Fanta
## 1786         Extra Grande      Sabores Regular                Fanta
## 1787         Extra Grande      Sabores Regular                Fanta
## 1788         Extra Grande      Sabores Regular               Fresca
## 1789         Extra Grande      Sabores Regular               Fresca
## 1790         Extra Grande      Sabores Regular               Fresca
## 1791         Extra Grande      Sabores Regular               Fresca
## 1792         Extra Grande      Sabores Regular               Fresca
## 1793         Extra Grande      Sabores Regular               Fresca
## 1794         Extra Grande      Sabores Regular         Manzana Lift
## 1795         Extra Grande      Sabores Regular         Manzana Lift
## 1796         Extra Grande      Sabores Regular         Manzana Lift
## 1797         Extra Grande      Sabores Regular         Manzana Lift
## 1798         Extra Grande      Sabores Regular         Manzana Lift
## 1799         Extra Grande      Sabores Regular         Manzana Lift
## 1800         Extra Grande      Sabores Regular         Manzana Lift
## 1801         Extra Grande      Sabores Regular               Senzao
## 1802         Extra Grande      Sabores Regular        Sidral Mundet
## 1803         Extra Grande      Sabores Regular        Sidral Mundet
## 1804         Extra Grande      Sabores Regular        Sidral Mundet
## 1805         Extra Grande      Sabores Regular        Sidral Mundet
## 1806         Extra Grande      Sabores Regular        Sidral Mundet
## 1807         Extra Grande      Sabores Regular        Sidral Mundet
## 1808         Extra Grande      Sabores Regular               Sprite
## 1809         Extra Grande      Sabores Regular               Sprite
## 1810         Extra Grande      Sabores Regular               Sprite
## 1811         Extra Grande      Sabores Regular               Sprite
## 1812         Extra Grande      Sabores Regular               Sprite
## 1813         Extra Grande      Sabores Regular               Sprite
## 1814         Extra Grande      Sabores Regular               Sprite
## 1815         Extra Grande      Sabores Regular               Sprite
## 1816         Extra Grande      Sabores Regular               Sprite
## 1817         Extra Grande      Sabores Regular               Sprite
## 1818         Extra Grande      Sabores Regular               Sprite
## 1819         Extra Grande             Té Light       Fuze Tea Light
## 1820         Extra Grande           Té Regular             Fuze Tea
## 1821         Extra Grande           Té Regular             Fuze Tea
## 1822         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1823         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1824         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1825         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1826         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1827         Extra Grande      Agua Saborizada            Ciel Mini
## 1828         Extra Grande      Agua Saborizada      Ciel Saborizada
## 1829         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1830         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1831         Extra Grande     Bebidas de Fruta               Frutsi
## 1832         Extra Grande     Bebidas de Fruta                Pulpy
## 1833         Extra Grande     Bebidas de Fruta           Valle Frut
## 1834         Extra Grande     Bebidas de Fruta           Valle Frut
## 1835         Extra Grande     Bebidas de Fruta           Valle Frut
## 1836         Extra Grande     Bebidas de Fruta           Valle Frut
## 1837         Extra Grande          Colas Light       Coca-Cola Life
## 1838         Extra Grande          Colas Light       Coca-Cola Life
## 1839         Extra Grande          Colas Light      Coca-Cola Light
## 1840         Extra Grande          Colas Light      Coca-Cola Light
## 1841         Extra Grande          Colas Light      Coca-Cola Light
## 1842         Extra Grande          Colas Light      Coca-Cola Light
## 1843         Extra Grande          Colas Light      Coca-Cola Light
## 1844         Extra Grande          Colas Light      Coca-Cola Light
## 1845         Extra Grande          Colas Light      Coca-Cola Light
## 1846         Extra Grande          Colas Light      Coca-Cola Light
## 1847         Extra Grande          Colas Light      Coca-Cola Light
## 1848         Extra Grande          Colas Light      Coca-Cola Light
## 1849         Extra Grande          Colas Light       Coca-Cola Zero
## 1850         Extra Grande          Colas Light       Coca-Cola Zero
## 1851         Extra Grande          Colas Light       Coca-Cola Zero
## 1852         Extra Grande          Colas Light       Coca-Cola Zero
## 1853         Extra Grande        Colas Regular            Coca-Cola
## 1854         Extra Grande        Colas Regular            Coca-Cola
## 1855         Extra Grande        Colas Regular            Coca-Cola
## 1856         Extra Grande        Colas Regular            Coca-Cola
## 1857         Extra Grande        Colas Regular            Coca-Cola
## 1858         Extra Grande        Colas Regular            Coca-Cola
## 1859         Extra Grande        Colas Regular            Coca-Cola
## 1860         Extra Grande        Colas Regular            Coca-Cola
## 1861         Extra Grande        Colas Regular            Coca-Cola
## 1862         Extra Grande        Colas Regular            Coca-Cola
## 1863         Extra Grande        Colas Regular            Coca-Cola
## 1864         Extra Grande        Colas Regular            Coca-Cola
## 1865         Extra Grande        Colas Regular            Coca-Cola
## 1866         Extra Grande        Colas Regular            Coca-Cola
## 1867         Extra Grande        Colas Regular            Coca-Cola
## 1868         Extra Grande        Colas Regular            Coca-Cola
## 1869         Extra Grande   Isotónicos Regular             Powerade
## 1870         Extra Grande   Isotónicos Regular             Powerade
## 1871         Extra Grande   Isotónicos Regular             Powerade
## 1872         Extra Grande     Jugos y Néctares            Del Valle
## 1873         Extra Grande     Jugos y Néctares            Del Valle
## 1874         Extra Grande     Jugos y Néctares            Del Valle
## 1875         Extra Grande     Jugos y Néctares            Del Valle
## 1876         Extra Grande     Jugos y Néctares            Del Valle
## 1877         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1878         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1879         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1880         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1881         Extra Grande        Sabores Light          Sprite Zero
## 1882         Extra Grande      Sabores Regular     Del Valle y Nada
## 1883         Extra Grande      Sabores Regular     Del Valle y Nada
## 1884         Extra Grande      Sabores Regular                Fanta
## 1885         Extra Grande      Sabores Regular                Fanta
## 1886         Extra Grande      Sabores Regular                Fanta
## 1887         Extra Grande      Sabores Regular                Fanta
## 1888         Extra Grande      Sabores Regular                Fanta
## 1889         Extra Grande      Sabores Regular                Fanta
## 1890         Extra Grande      Sabores Regular                Fanta
## 1891         Extra Grande      Sabores Regular                Fanta
## 1892         Extra Grande      Sabores Regular               Fresca
## 1893         Extra Grande      Sabores Regular               Fresca
## 1894         Extra Grande      Sabores Regular               Fresca
## 1895         Extra Grande      Sabores Regular               Fresca
## 1896         Extra Grande      Sabores Regular               Fresca
## 1897         Extra Grande      Sabores Regular               Fresca
## 1898         Extra Grande      Sabores Regular               Fresca
## 1899         Extra Grande      Sabores Regular         Manzana Lift
## 1900         Extra Grande      Sabores Regular         Manzana Lift
## 1901         Extra Grande      Sabores Regular         Manzana Lift
## 1902         Extra Grande      Sabores Regular         Manzana Lift
## 1903         Extra Grande      Sabores Regular         Manzana Lift
## 1904         Extra Grande      Sabores Regular               Senzao
## 1905         Extra Grande      Sabores Regular        Sidral Mundet
## 1906         Extra Grande      Sabores Regular        Sidral Mundet
## 1907         Extra Grande      Sabores Regular        Sidral Mundet
## 1908         Extra Grande      Sabores Regular        Sidral Mundet
## 1909         Extra Grande      Sabores Regular        Sidral Mundet
## 1910         Extra Grande      Sabores Regular        Sidral Mundet
## 1911         Extra Grande      Sabores Regular        Sidral Mundet
## 1912         Extra Grande      Sabores Regular               Sprite
## 1913         Extra Grande      Sabores Regular               Sprite
## 1914         Extra Grande      Sabores Regular               Sprite
## 1915         Extra Grande      Sabores Regular               Sprite
## 1916         Extra Grande      Sabores Regular               Sprite
## 1917         Extra Grande      Sabores Regular               Sprite
## 1918         Extra Grande      Sabores Regular               Sprite
## 1919         Extra Grande      Sabores Regular               Sprite
## 1920         Extra Grande      Sabores Regular               Sprite
## 1921         Extra Grande           Té Regular             Fuze Tea
## 1922         Extra Grande           Té Regular             Fuze Tea
## 1923         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1924         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1925         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1926         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1927         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1928         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1929         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1930         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1931         Extra Grande      Agua Saborizada            Ciel Mini
## 1932         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1933         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1934         Extra Grande     Bebidas de Fruta               Frutsi
## 1935         Extra Grande     Bebidas de Fruta                Pulpy
## 1936         Extra Grande     Bebidas de Fruta           Valle Frut
## 1937         Extra Grande     Bebidas de Fruta           Valle Frut
## 1938         Extra Grande     Bebidas de Fruta           Valle Frut
## 1939         Extra Grande     Bebidas de Fruta           Valle Frut
## 1940         Extra Grande     Bebidas de Fruta           Valle Frut
## 1941         Extra Grande  Bebidas Energeticas                 Burn
## 1942         Extra Grande  Bebidas Energeticas                 Burn
## 1943         Extra Grande  Bebidas Energeticas              Glacéau
## 1944         Extra Grande          Colas Light      Coca-Cola Light
## 1945         Extra Grande          Colas Light      Coca-Cola Light
## 1946         Extra Grande          Colas Light      Coca-Cola Light
## 1947         Extra Grande        Colas Regular            Coca-Cola
## 1948         Extra Grande        Colas Regular            Coca-Cola
## 1949         Extra Grande        Colas Regular            Coca-Cola
## 1950         Extra Grande        Colas Regular            Coca-Cola
## 1951         Extra Grande        Colas Regular            Coca-Cola
## 1952         Extra Grande        Colas Regular            Coca-Cola
## 1953         Extra Grande        Colas Regular            Coca-Cola
## 1954         Extra Grande        Colas Regular            Coca-Cola
## 1955         Extra Grande        Colas Regular            Coca-Cola
## 1956         Extra Grande        Colas Regular            Coca-Cola
## 1957         Extra Grande        Colas Regular            Coca-Cola
## 1958         Extra Grande        Colas Regular            Coca-Cola
## 1959         Extra Grande        Colas Regular            Coca-Cola
## 1960         Extra Grande        Colas Regular            Coca-Cola
## 1961         Extra Grande        Colas Regular            Coca-Cola
## 1962         Extra Grande     Isotónicos Light        Powerade Zero
## 1963         Extra Grande   Isotónicos Regular             Powerade
## 1964         Extra Grande   Isotónicos Regular             Powerade
## 1965         Extra Grande   Isotónicos Regular             Powerade
## 1966         Extra Grande     Jugos y Néctares            Del Valle
## 1967         Extra Grande     Jugos y Néctares            Del Valle
## 1968         Extra Grande     Jugos y Néctares            Del Valle
## 1969         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 1970         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1971         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1972         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1973         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 1974         Extra Grande    Leche UHT Regular    Santa Clara Light
## 1975         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1976         Extra Grande        Sabores Light    Manzana Lift Zero
## 1977         Extra Grande      Sabores Regular     Del Valle y Nada
## 1978         Extra Grande      Sabores Regular                Fanta
## 1979         Extra Grande      Sabores Regular                Fanta
## 1980         Extra Grande      Sabores Regular                Fanta
## 1981         Extra Grande      Sabores Regular                Fanta
## 1982         Extra Grande      Sabores Regular                Fanta
## 1983         Extra Grande      Sabores Regular                Fanta
## 1984         Extra Grande      Sabores Regular                Fanta
## 1985         Extra Grande      Sabores Regular                Fanta
## 1986         Extra Grande      Sabores Regular                Fanta
## 1987         Extra Grande      Sabores Regular                Fanta
## 1988         Extra Grande      Sabores Regular               Fresca
## 1989         Extra Grande      Sabores Regular               Fresca
## 1990         Extra Grande      Sabores Regular               Fresca
## 1991         Extra Grande      Sabores Regular               Fresca
## 1992         Extra Grande      Sabores Regular               Fresca
## 1993         Extra Grande      Sabores Regular               Fresca
## 1994         Extra Grande      Sabores Regular               Fresca
## 1995         Extra Grande      Sabores Regular               Fresca
## 1996         Extra Grande      Sabores Regular               Fresca
## 1997         Extra Grande      Sabores Regular               Fresca
## 1998         Extra Grande      Sabores Regular         Manzana Lift
## 1999         Extra Grande      Sabores Regular         Manzana Lift
## 2000         Extra Grande      Sabores Regular         Manzana Lift
## 2001         Extra Grande      Sabores Regular         Manzana Lift
## 2002         Extra Grande      Sabores Regular         Manzana Lift
## 2003         Extra Grande      Sabores Regular         Manzana Lift
## 2004         Extra Grande      Sabores Regular         Manzana Lift
## 2005         Extra Grande      Sabores Regular         Manzana Lift
## 2006         Extra Grande      Sabores Regular               Senzao
## 2007         Extra Grande      Sabores Regular        Sidral Mundet
## 2008         Extra Grande      Sabores Regular        Sidral Mundet
## 2009         Extra Grande      Sabores Regular        Sidral Mundet
## 2010         Extra Grande      Sabores Regular        Sidral Mundet
## 2011         Extra Grande      Sabores Regular               Sprite
## 2012         Extra Grande      Sabores Regular               Sprite
## 2013         Extra Grande      Sabores Regular               Sprite
## 2014         Extra Grande      Sabores Regular               Sprite
## 2015         Extra Grande      Sabores Regular               Sprite
## 2016         Extra Grande      Sabores Regular               Sprite
## 2017         Extra Grande      Sabores Regular               Sprite
## 2018         Extra Grande      Sabores Regular               Sprite
## 2019         Extra Grande      Sabores Regular               Sprite
## 2020         Extra Grande      Sabores Regular               Sprite
## 2021         Extra Grande           Té Regular             Fuze Tea
## 2022         Extra Grande           Té Regular             Fuze Tea
## 2023         Extra Grande           Té Regular             Fuze Tea
## 2024         Extra Grande           Té Regular             Fuze Tea
## 2025         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2026         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2027         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2028         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2029         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2030         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2031         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2032         Extra Grande      Agua Saborizada          Ciel Exprim
## 2033         Extra Grande      Agua Saborizada            Ciel Mini
## 2034         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2035         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2036         Extra Grande     Bebidas de Fruta               Bebere
## 2037         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2038         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2039         Extra Grande     Bebidas de Fruta               Frutsi
## 2040         Extra Grande     Bebidas de Fruta                Pulpy
## 2041         Extra Grande     Bebidas de Fruta           Valle Frut
## 2042         Extra Grande     Bebidas de Fruta           Valle Frut
## 2043         Extra Grande     Bebidas de Fruta           Valle Frut
## 2044         Extra Grande     Bebidas de Fruta           Valle Frut
## 2045         Extra Grande     Bebidas de Fruta           Valle Frut
## 2046         Extra Grande  Bebidas Energeticas                 Burn
## 2047         Extra Grande  Bebidas Energeticas                 Burn
## 2048         Extra Grande  Bebidas Energeticas              Glacéau
## 2049         Extra Grande          Colas Light       Coca-Cola Life
## 2050         Extra Grande          Colas Light       Coca-Cola Life
## 2051         Extra Grande          Colas Light       Coca-Cola Life
## 2052         Extra Grande          Colas Light      Coca-Cola Light
## 2053         Extra Grande          Colas Light      Coca-Cola Light
## 2054         Extra Grande          Colas Light      Coca-Cola Light
## 2055         Extra Grande          Colas Light      Coca-Cola Light
## 2056         Extra Grande          Colas Light      Coca-Cola Light
## 2057         Extra Grande          Colas Light      Coca-Cola Light
## 2058         Extra Grande          Colas Light      Coca-Cola Light
## 2059         Extra Grande          Colas Light      Coca-Cola Light
## 2060         Extra Grande          Colas Light       Coca-Cola Zero
## 2061         Extra Grande          Colas Light       Coca-Cola Zero
## 2062         Extra Grande          Colas Light       Coca-Cola Zero
## 2063         Extra Grande          Colas Light       Coca-Cola Zero
## 2064         Extra Grande        Colas Regular            Coca-Cola
## 2065         Extra Grande        Colas Regular            Coca-Cola
## 2066         Extra Grande        Colas Regular            Coca-Cola
## 2067         Extra Grande        Colas Regular            Coca-Cola
## 2068         Extra Grande        Colas Regular            Coca-Cola
## 2069         Extra Grande        Colas Regular            Coca-Cola
## 2070         Extra Grande        Colas Regular            Coca-Cola
## 2071         Extra Grande        Colas Regular            Coca-Cola
## 2072         Extra Grande        Colas Regular            Coca-Cola
## 2073         Extra Grande        Colas Regular            Coca-Cola
## 2074         Extra Grande        Colas Regular            Coca-Cola
## 2075         Extra Grande        Colas Regular            Coca-Cola
## 2076         Extra Grande        Colas Regular            Coca-Cola
## 2077         Extra Grande        Colas Regular            Coca-Cola
## 2078         Extra Grande        Colas Regular            Coca-Cola
## 2079         Extra Grande        Colas Regular            Coca-Cola
## 2080         Extra Grande        Colas Regular            Coca-Cola
## 2081         Extra Grande     Isotónicos Light        Powerade Zero
## 2082         Extra Grande   Isotónicos Regular             Powerade
## 2083         Extra Grande   Isotónicos Regular             Powerade
## 2084         Extra Grande   Isotónicos Regular             Powerade
## 2085         Extra Grande     Jugos y Néctares            Del Valle
## 2086         Extra Grande     Jugos y Néctares            Del Valle
## 2087         Extra Grande     Jugos y Néctares            Del Valle
## 2088         Extra Grande     Jugos y Néctares            Del Valle
## 2089         Extra Grande     Jugos y Néctares            Del Valle
## 2090         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 2091         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2092         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2093         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 2094         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 2095         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 2096         Extra Grande    Leche UHT Regular    Santa Clara Light
## 2097         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2098         Extra Grande        Sabores Light          Sprite Zero
## 2099         Extra Grande      Sabores Regular     Del Valle y Nada
## 2100         Extra Grande      Sabores Regular     Del Valle y Nada
## 2101         Extra Grande      Sabores Regular     Del Valle y Nada
## 2102         Extra Grande      Sabores Regular                Fanta
## 2103         Extra Grande      Sabores Regular                Fanta
## 2104         Extra Grande      Sabores Regular                Fanta
## 2105         Extra Grande      Sabores Regular                Fanta
## 2106         Extra Grande      Sabores Regular                Fanta
## 2107         Extra Grande      Sabores Regular                Fanta
## 2108         Extra Grande      Sabores Regular                Fanta
## 2109         Extra Grande      Sabores Regular                Fanta
## 2110         Extra Grande      Sabores Regular                Fanta
## 2111         Extra Grande      Sabores Regular                Fanta
## 2112         Extra Grande      Sabores Regular               Fresca
## 2113         Extra Grande      Sabores Regular               Fresca
## 2114         Extra Grande      Sabores Regular               Fresca
## 2115         Extra Grande      Sabores Regular               Fresca
## 2116         Extra Grande      Sabores Regular               Fresca
## 2117         Extra Grande      Sabores Regular               Fresca
## 2118         Extra Grande      Sabores Regular               Fresca
## 2119         Extra Grande      Sabores Regular               Fresca
## 2120         Extra Grande      Sabores Regular               Fresca
## 2121         Extra Grande      Sabores Regular               Fresca
## 2122         Extra Grande      Sabores Regular         Manzana Lift
## 2123         Extra Grande      Sabores Regular         Manzana Lift
## 2124         Extra Grande      Sabores Regular         Manzana Lift
## 2125         Extra Grande      Sabores Regular         Manzana Lift
## 2126         Extra Grande      Sabores Regular         Manzana Lift
## 2127         Extra Grande      Sabores Regular         Manzana Lift
## 2128         Extra Grande      Sabores Regular         Manzana Lift
## 2129         Extra Grande      Sabores Regular         Manzana Lift
## 2130         Extra Grande      Sabores Regular               Senzao
## 2131         Extra Grande      Sabores Regular        Sidral Mundet
## 2132         Extra Grande      Sabores Regular        Sidral Mundet
## 2133         Extra Grande      Sabores Regular        Sidral Mundet
## 2134         Extra Grande      Sabores Regular        Sidral Mundet
## 2135         Extra Grande      Sabores Regular        Sidral Mundet
## 2136         Extra Grande      Sabores Regular        Sidral Mundet
## 2137         Extra Grande      Sabores Regular        Sidral Mundet
## 2138         Extra Grande      Sabores Regular               Sprite
## 2139         Extra Grande      Sabores Regular               Sprite
## 2140         Extra Grande      Sabores Regular               Sprite
## 2141         Extra Grande      Sabores Regular               Sprite
## 2142         Extra Grande      Sabores Regular               Sprite
## 2143         Extra Grande      Sabores Regular               Sprite
## 2144         Extra Grande      Sabores Regular               Sprite
## 2145         Extra Grande      Sabores Regular               Sprite
## 2146         Extra Grande      Sabores Regular               Sprite
## 2147         Extra Grande      Sabores Regular               Sprite
## 2148         Extra Grande      Sabores Regular               Sprite
## 2149         Extra Grande           Té Regular             Fuze Tea
## 2150         Extra Grande           Té Regular             Fuze Tea
## 2151         Extra Grande           Té Regular             Fuze Tea
## 2152         Extra Grande           Té Regular             Fuze Tea
## 2153         Extra Grande           Té Regular             Fuze Tea
## 2154         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2155         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2156         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2157         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2158         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2159         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2160         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2161         Extra Grande      Agua Saborizada            Ciel Mini
## 2162         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2163         Extra Grande     Bebidas de Fruta               Frutsi
## 2164         Extra Grande     Bebidas de Fruta           Valle Frut
## 2165         Extra Grande     Bebidas de Fruta           Valle Frut
## 2166         Extra Grande     Bebidas de Fruta           Valle Frut
## 2167         Extra Grande  Bebidas Energeticas                 Burn
## 2168         Extra Grande          Colas Light      Coca-Cola Light
## 2169         Extra Grande          Colas Light      Coca-Cola Light
## 2170         Extra Grande          Colas Light      Coca-Cola Light
## 2171         Extra Grande          Colas Light      Coca-Cola Light
## 2172         Extra Grande        Colas Regular            Coca-Cola
## 2173         Extra Grande        Colas Regular            Coca-Cola
## 2174         Extra Grande        Colas Regular            Coca-Cola
## 2175         Extra Grande        Colas Regular            Coca-Cola
## 2176         Extra Grande        Colas Regular            Coca-Cola
## 2177         Extra Grande        Colas Regular            Coca-Cola
## 2178         Extra Grande        Colas Regular            Coca-Cola
## 2179         Extra Grande        Colas Regular            Coca-Cola
## 2180         Extra Grande        Colas Regular            Coca-Cola
## 2181         Extra Grande        Colas Regular            Coca-Cola
## 2182         Extra Grande        Colas Regular            Coca-Cola
## 2183         Extra Grande        Colas Regular            Coca-Cola
## 2184         Extra Grande        Colas Regular            Coca-Cola
## 2185         Extra Grande        Colas Regular            Coca-Cola
## 2186         Extra Grande        Colas Regular            Coca-Cola
## 2187         Extra Grande        Colas Regular            Coca-Cola
## 2188         Extra Grande        Colas Regular            Coca-Cola
## 2189         Extra Grande        Colas Regular            Coca-Cola
## 2190         Extra Grande   Isotónicos Regular             Powerade
## 2191         Extra Grande   Isotónicos Regular             Powerade
## 2192         Extra Grande   Isotónicos Regular             Powerade
## 2193         Extra Grande     Jugos y Néctares            Del Valle
## 2194         Extra Grande     Jugos y Néctares            Del Valle
## 2195         Extra Grande     Jugos y Néctares            Del Valle
## 2196         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 2197         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2198         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2199         Extra Grande      Sabores Regular     Del Valle y Nada
## 2200         Extra Grande      Sabores Regular     Del Valle y Nada
## 2201         Extra Grande      Sabores Regular                Fanta
## 2202         Extra Grande      Sabores Regular                Fanta
## 2203         Extra Grande      Sabores Regular                Fanta
## 2204         Extra Grande      Sabores Regular                Fanta
## 2205         Extra Grande      Sabores Regular                Fanta
## 2206         Extra Grande      Sabores Regular                Fanta
## 2207         Extra Grande      Sabores Regular                Fanta
## 2208         Extra Grande      Sabores Regular                Fanta
## 2209         Extra Grande      Sabores Regular                Fanta
## 2210         Extra Grande      Sabores Regular               Fresca
## 2211         Extra Grande      Sabores Regular               Fresca
## 2212         Extra Grande      Sabores Regular               Fresca
## 2213         Extra Grande      Sabores Regular               Fresca
## 2214         Extra Grande      Sabores Regular               Fresca
## 2215         Extra Grande      Sabores Regular               Fresca
## 2216         Extra Grande      Sabores Regular               Fresca
## 2217         Extra Grande      Sabores Regular         Manzana Lift
## 2218         Extra Grande      Sabores Regular         Manzana Lift
## 2219         Extra Grande      Sabores Regular         Manzana Lift
## 2220         Extra Grande      Sabores Regular         Manzana Lift
## 2221         Extra Grande      Sabores Regular         Manzana Lift
## 2222         Extra Grande      Sabores Regular         Manzana Lift
## 2223         Extra Grande      Sabores Regular        Sidral Mundet
## 2224         Extra Grande      Sabores Regular        Sidral Mundet
## 2225         Extra Grande      Sabores Regular        Sidral Mundet
## 2226         Extra Grande      Sabores Regular               Sprite
## 2227         Extra Grande      Sabores Regular               Sprite
## 2228         Extra Grande      Sabores Regular               Sprite
## 2229         Extra Grande      Sabores Regular               Sprite
## 2230         Extra Grande      Sabores Regular               Sprite
## 2231         Extra Grande      Sabores Regular               Sprite
## 2232         Extra Grande      Sabores Regular               Sprite
## 2233         Extra Grande      Sabores Regular               Sprite
## 2234         Extra Grande           Té Regular             Fuze Tea
## 2235         Extra Grande           Té Regular             Fuze Tea
## 2236         Extra Grande           Té Regular             Fuze Tea
## 2237         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2238         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2239         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2240         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2241         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2242         Extra Grande      Agua Saborizada            Ciel Mini
## 2243         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2244         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2245         Extra Grande     Bebidas de Fruta               Frutsi
## 2246         Extra Grande     Bebidas de Fruta                Pulpy
## 2247         Extra Grande     Bebidas de Fruta           Valle Frut
## 2248         Extra Grande     Bebidas de Fruta           Valle Frut
## 2249         Extra Grande     Bebidas de Fruta           Valle Frut
## 2250         Extra Grande          Colas Light      Coca-Cola Light
## 2251         Extra Grande          Colas Light      Coca-Cola Light
## 2252         Extra Grande          Colas Light      Coca-Cola Light
## 2253         Extra Grande        Colas Regular            Coca-Cola
## 2254         Extra Grande        Colas Regular            Coca-Cola
## 2255         Extra Grande        Colas Regular            Coca-Cola
## 2256         Extra Grande        Colas Regular            Coca-Cola
## 2257         Extra Grande        Colas Regular            Coca-Cola
## 2258         Extra Grande        Colas Regular            Coca-Cola
## 2259         Extra Grande        Colas Regular            Coca-Cola
## 2260         Extra Grande        Colas Regular            Coca-Cola
## 2261         Extra Grande        Colas Regular            Coca-Cola
## 2262         Extra Grande        Colas Regular            Coca-Cola
## 2263         Extra Grande        Colas Regular            Coca-Cola
## 2264         Extra Grande        Colas Regular            Coca-Cola
## 2265         Extra Grande        Colas Regular            Coca-Cola
## 2266         Extra Grande        Colas Regular            Coca-Cola
## 2267         Extra Grande   Isotónicos Regular             Powerade
## 2268         Extra Grande   Isotónicos Regular             Powerade
## 2269         Extra Grande   Isotónicos Regular             Powerade
## 2270         Extra Grande     Jugos y Néctares            Del Valle
## 2271         Extra Grande     Jugos y Néctares            Del Valle
## 2272         Extra Grande     Jugos y Néctares            Del Valle
## 2273         Extra Grande     Jugos y Néctares            Del Valle
## 2274         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2275         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 2276         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2277         Extra Grande      Sabores Regular     Del Valle y Nada
## 2278         Extra Grande      Sabores Regular                Fanta
## 2279         Extra Grande      Sabores Regular                Fanta
## 2280         Extra Grande      Sabores Regular                Fanta
## 2281         Extra Grande      Sabores Regular                Fanta
## 2282         Extra Grande      Sabores Regular                Fanta
## 2283         Extra Grande      Sabores Regular               Fresca
## 2284         Extra Grande      Sabores Regular               Fresca
## 2285         Extra Grande      Sabores Regular               Fresca
## 2286         Extra Grande      Sabores Regular               Fresca
## 2287         Extra Grande      Sabores Regular         Manzana Lift
## 2288         Extra Grande      Sabores Regular         Manzana Lift
## 2289         Extra Grande      Sabores Regular         Manzana Lift
## 2290         Extra Grande      Sabores Regular               Senzao
## 2291         Extra Grande      Sabores Regular        Sidral Mundet
## 2292         Extra Grande      Sabores Regular        Sidral Mundet
## 2293         Extra Grande      Sabores Regular        Sidral Mundet
## 2294         Extra Grande      Sabores Regular        Sidral Mundet
## 2295         Extra Grande      Sabores Regular        Sidral Mundet
## 2296         Extra Grande      Sabores Regular               Sprite
## 2297         Extra Grande      Sabores Regular               Sprite
## 2298         Extra Grande      Sabores Regular               Sprite
## 2299         Extra Grande      Sabores Regular               Sprite
## 2300         Extra Grande      Sabores Regular               Sprite
## 2301         Extra Grande      Sabores Regular               Sprite
## 2302         Extra Grande           Té Regular             Fuze Tea
## 2303         Extra Grande           Té Regular             Fuze Tea
## 2304         Extra Grande           Té Regular             Fuze Tea
## 2305         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2306         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2307         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2308         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2309         Extra Grande      Agua Saborizada          Ciel Exprim
## 2310         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2311         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2312         Extra Grande     Bebidas de Fruta               Bebere
## 2313         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2314         Extra Grande     Bebidas de Fruta               Frutsi
## 2315         Extra Grande     Bebidas de Fruta                Pulpy
## 2316         Extra Grande     Bebidas de Fruta           Valle Frut
## 2317         Extra Grande     Bebidas de Fruta           Valle Frut
## 2318         Extra Grande     Bebidas de Fruta           Valle Frut
## 2319         Extra Grande     Bebidas de Fruta           Valle Frut
## 2320         Extra Grande  Bebidas Energeticas              Glacéau
## 2321         Extra Grande          Colas Light       Coca-Cola Life
## 2322         Extra Grande          Colas Light      Coca-Cola Light
## 2323         Extra Grande          Colas Light      Coca-Cola Light
## 2324         Extra Grande          Colas Light      Coca-Cola Light
## 2325         Extra Grande          Colas Light      Coca-Cola Light
## 2326         Extra Grande          Colas Light      Coca-Cola Light
## 2327         Extra Grande          Colas Light      Coca-Cola Light
## 2328         Extra Grande          Colas Light       Coca-Cola Zero
## 2329         Extra Grande          Colas Light       Coca-Cola Zero
## 2330         Extra Grande          Colas Light       Coca-Cola Zero
## 2331         Extra Grande          Colas Light       Coca-Cola Zero
## 2332         Extra Grande        Colas Regular            Coca-Cola
## 2333         Extra Grande        Colas Regular            Coca-Cola
## 2334         Extra Grande        Colas Regular            Coca-Cola
## 2335         Extra Grande        Colas Regular            Coca-Cola
## 2336         Extra Grande        Colas Regular            Coca-Cola
## 2337         Extra Grande        Colas Regular            Coca-Cola
## 2338         Extra Grande        Colas Regular            Coca-Cola
## 2339         Extra Grande        Colas Regular            Coca-Cola
## 2340         Extra Grande        Colas Regular            Coca-Cola
## 2341         Extra Grande        Colas Regular            Coca-Cola
## 2342         Extra Grande        Colas Regular            Coca-Cola
## 2343         Extra Grande        Colas Regular            Coca-Cola
## 2344         Extra Grande        Colas Regular            Coca-Cola
## 2345         Extra Grande        Colas Regular            Coca-Cola
## 2346         Extra Grande   Isotónicos Regular             Powerade
## 2347         Extra Grande   Isotónicos Regular             Powerade
## 2348         Extra Grande     Jugos y Néctares            Del Valle
## 2349         Extra Grande     Jugos y Néctares            Del Valle
## 2350         Extra Grande     Jugos y Néctares            Del Valle
## 2351         Extra Grande     Jugos y Néctares            Del Valle
## 2352         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 2353         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2354         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2355         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2356         Extra Grande        Sabores Light          Sprite Zero
## 2357         Extra Grande      Sabores Regular     Del Valle y Nada
## 2358         Extra Grande      Sabores Regular     Del Valle y Nada
## 2359         Extra Grande      Sabores Regular                Fanta
## 2360         Extra Grande      Sabores Regular                Fanta
## 2361         Extra Grande      Sabores Regular                Fanta
## 2362         Extra Grande      Sabores Regular                Fanta
## 2363         Extra Grande      Sabores Regular                Fanta
## 2364         Extra Grande      Sabores Regular                Fanta
## 2365         Extra Grande      Sabores Regular               Fresca
## 2366         Extra Grande      Sabores Regular               Fresca
## 2367         Extra Grande      Sabores Regular               Fresca
## 2368         Extra Grande      Sabores Regular               Fresca
## 2369         Extra Grande      Sabores Regular               Fresca
## 2370         Extra Grande      Sabores Regular         Manzana Lift
## 2371         Extra Grande      Sabores Regular         Manzana Lift
## 2372         Extra Grande      Sabores Regular         Manzana Lift
## 2373         Extra Grande      Sabores Regular         Manzana Lift
## 2374         Extra Grande      Sabores Regular        Sidral Mundet
## 2375         Extra Grande      Sabores Regular        Sidral Mundet
## 2376         Extra Grande      Sabores Regular        Sidral Mundet
## 2377         Extra Grande      Sabores Regular               Sprite
## 2378         Extra Grande      Sabores Regular               Sprite
## 2379         Extra Grande      Sabores Regular               Sprite
## 2380         Extra Grande      Sabores Regular               Sprite
## 2381         Extra Grande      Sabores Regular               Sprite
## 2382         Extra Grande      Sabores Regular               Sprite
## 2383         Extra Grande      Sabores Regular               Sprite
## 2384         Extra Grande      Sabores Regular               Sprite
## 2385         Extra Grande           Té Regular             Fuze Tea
## 2386         Extra Grande           Té Regular             Fuze Tea
## 2387         Extra Grande           Té Regular             Fuze Tea
## 2388         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2389         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2390         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2391         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2392         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2393         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2394         Extra Grande      Agua Saborizada          Ciel Exprim
## 2395         Extra Grande      Agua Saborizada            Ciel Mini
## 2396         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2397         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2398         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2399         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2400         Extra Grande     Bebidas de Fruta               Frutsi
## 2401         Extra Grande     Bebidas de Fruta                Pulpy
## 2402         Extra Grande     Bebidas de Fruta           Valle Frut
## 2403         Extra Grande     Bebidas de Fruta           Valle Frut
## 2404         Extra Grande     Bebidas de Fruta           Valle Frut
## 2405         Extra Grande     Bebidas de Fruta           Valle Frut
## 2406         Extra Grande     Bebidas de Fruta           Valle Frut
## 2407         Extra Grande  Bebidas Energeticas                 Burn
## 2408         Extra Grande  Bebidas Energeticas                 Burn
## 2409         Extra Grande  Bebidas Energeticas              Glacéau
## 2410         Extra Grande          Colas Light       Coca-Cola Life
## 2411         Extra Grande          Colas Light       Coca-Cola Life
## 2412         Extra Grande          Colas Light       Coca-Cola Life
## 2413         Extra Grande          Colas Light      Coca-Cola Light
## 2414         Extra Grande          Colas Light      Coca-Cola Light
## 2415         Extra Grande          Colas Light      Coca-Cola Light
## 2416         Extra Grande          Colas Light      Coca-Cola Light
## 2417         Extra Grande          Colas Light      Coca-Cola Light
## 2418         Extra Grande          Colas Light      Coca-Cola Light
## 2419         Extra Grande          Colas Light       Coca-Cola Zero
## 2420         Extra Grande          Colas Light       Coca-Cola Zero
## 2421         Extra Grande          Colas Light       Coca-Cola Zero
## 2422         Extra Grande          Colas Light       Coca-Cola Zero
## 2423         Extra Grande        Colas Regular            Coca-Cola
## 2424         Extra Grande        Colas Regular            Coca-Cola
## 2425         Extra Grande        Colas Regular            Coca-Cola
## 2426         Extra Grande        Colas Regular            Coca-Cola
## 2427         Extra Grande        Colas Regular            Coca-Cola
## 2428         Extra Grande        Colas Regular            Coca-Cola
## 2429         Extra Grande        Colas Regular            Coca-Cola
## 2430         Extra Grande        Colas Regular            Coca-Cola
## 2431         Extra Grande        Colas Regular            Coca-Cola
## 2432         Extra Grande        Colas Regular            Coca-Cola
## 2433         Extra Grande        Colas Regular            Coca-Cola
## 2434         Extra Grande        Colas Regular            Coca-Cola
## 2435         Extra Grande        Colas Regular            Coca-Cola
## 2436         Extra Grande        Colas Regular            Coca-Cola
## 2437         Extra Grande        Colas Regular            Coca-Cola
## 2438         Extra Grande     Isotónicos Light        Powerade Zero
## 2439         Extra Grande   Isotónicos Regular             Powerade
## 2440         Extra Grande   Isotónicos Regular             Powerade
## 2441         Extra Grande   Isotónicos Regular             Powerade
## 2442         Extra Grande     Jugos y Néctares            Del Valle
## 2443         Extra Grande     Jugos y Néctares            Del Valle
## 2444         Extra Grande     Jugos y Néctares            Del Valle
## 2445         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 2446         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2447         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2448         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 2449         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 2450         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 2451         Extra Grande    Leche UHT Regular    Santa Clara Light
## 2452         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2453         Extra Grande        Sabores Light          Sprite Zero
## 2454         Extra Grande      Sabores Regular     Del Valle y Nada
## 2455         Extra Grande      Sabores Regular     Del Valle y Nada
## 2456         Extra Grande      Sabores Regular                Fanta
## 2457         Extra Grande      Sabores Regular                Fanta
## 2458         Extra Grande      Sabores Regular                Fanta
## 2459         Extra Grande      Sabores Regular                Fanta
## 2460         Extra Grande      Sabores Regular                Fanta
## 2461         Extra Grande      Sabores Regular                Fanta
## 2462         Extra Grande      Sabores Regular                Fanta
## 2463         Extra Grande      Sabores Regular                Fanta
## 2464         Extra Grande      Sabores Regular                Fanta
## 2465         Extra Grande      Sabores Regular               Fresca
## 2466         Extra Grande      Sabores Regular               Fresca
## 2467         Extra Grande      Sabores Regular               Fresca
## 2468         Extra Grande      Sabores Regular               Fresca
## 2469         Extra Grande      Sabores Regular               Fresca
## 2470         Extra Grande      Sabores Regular               Fresca
## 2471         Extra Grande      Sabores Regular               Fresca
## 2472         Extra Grande      Sabores Regular               Fresca
## 2473         Extra Grande      Sabores Regular               Fresca
## 2474         Extra Grande      Sabores Regular         Manzana Lift
## 2475         Extra Grande      Sabores Regular         Manzana Lift
## 2476         Extra Grande      Sabores Regular         Manzana Lift
## 2477         Extra Grande      Sabores Regular         Manzana Lift
## 2478         Extra Grande      Sabores Regular         Manzana Lift
## 2479         Extra Grande      Sabores Regular         Manzana Lift
## 2480         Extra Grande      Sabores Regular               Senzao
## 2481         Extra Grande      Sabores Regular        Sidral Mundet
## 2482         Extra Grande      Sabores Regular        Sidral Mundet
## 2483         Extra Grande      Sabores Regular        Sidral Mundet
## 2484         Extra Grande      Sabores Regular        Sidral Mundet
## 2485         Extra Grande      Sabores Regular        Sidral Mundet
## 2486         Extra Grande      Sabores Regular        Sidral Mundet
## 2487         Extra Grande      Sabores Regular               Sprite
## 2488         Extra Grande      Sabores Regular               Sprite
## 2489         Extra Grande      Sabores Regular               Sprite
## 2490         Extra Grande      Sabores Regular               Sprite
## 2491         Extra Grande      Sabores Regular               Sprite
## 2492         Extra Grande      Sabores Regular               Sprite
## 2493         Extra Grande      Sabores Regular               Sprite
## 2494         Extra Grande      Sabores Regular               Sprite
## 2495         Extra Grande      Sabores Regular               Sprite
## 2496         Extra Grande      Sabores Regular               Sprite
## 2497         Extra Grande           Té Regular             Fuze Tea
## 2498         Extra Grande           Té Regular             Fuze Tea
## 2499         Extra Grande           Té Regular             Fuze Tea
## 2500         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2501         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2502         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2503         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2504         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2505         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2506         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2507         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2508         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2509         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2510         Extra Grande      Agua Saborizada          Ciel Exprim
## 2511         Extra Grande      Agua Saborizada          Ciel Exprim
## 2512         Extra Grande      Agua Saborizada            Ciel Mini
## 2513         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2514         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2515         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2516         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2517         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2518         Extra Grande     Bebidas de Fruta               Frutsi
## 2519         Extra Grande     Bebidas de Fruta                Pulpy
## 2520         Extra Grande     Bebidas de Fruta           Valle Frut
## 2521         Extra Grande     Bebidas de Fruta           Valle Frut
## 2522         Extra Grande     Bebidas de Fruta           Valle Frut
## 2523         Extra Grande     Bebidas de Fruta           Valle Frut
## 2524         Extra Grande     Bebidas de Fruta           Valle Frut
## 2525         Extra Grande  Bebidas Energeticas                 Burn
## 2526         Extra Grande  Bebidas Energeticas                 Burn
## 2527         Extra Grande  Bebidas Energeticas              Glacéau
## 2528         Extra Grande          Colas Light       Coca-Cola Life
## 2529         Extra Grande          Colas Light       Coca-Cola Life
## 2530         Extra Grande          Colas Light      Coca-Cola Light
## 2531         Extra Grande          Colas Light      Coca-Cola Light
## 2532         Extra Grande          Colas Light      Coca-Cola Light
## 2533         Extra Grande          Colas Light      Coca-Cola Light
## 2534         Extra Grande          Colas Light      Coca-Cola Light
## 2535         Extra Grande          Colas Light      Coca-Cola Light
## 2536         Extra Grande          Colas Light       Coca-Cola Zero
## 2537         Extra Grande          Colas Light       Coca-Cola Zero
## 2538         Extra Grande          Colas Light       Coca-Cola Zero
## 2539         Extra Grande          Colas Light       Coca-Cola Zero
## 2540         Extra Grande          Colas Light       Coca-Cola Zero
## 2541         Extra Grande        Colas Regular            Coca-Cola
## 2542         Extra Grande        Colas Regular            Coca-Cola
## 2543         Extra Grande        Colas Regular            Coca-Cola
## 2544         Extra Grande        Colas Regular            Coca-Cola
## 2545         Extra Grande        Colas Regular            Coca-Cola
## 2546         Extra Grande        Colas Regular            Coca-Cola
## 2547         Extra Grande        Colas Regular            Coca-Cola
## 2548         Extra Grande        Colas Regular            Coca-Cola
## 2549         Extra Grande        Colas Regular            Coca-Cola
## 2550         Extra Grande        Colas Regular            Coca-Cola
## 2551         Extra Grande        Colas Regular            Coca-Cola
## 2552         Extra Grande        Colas Regular            Coca-Cola
## 2553         Extra Grande        Colas Regular            Coca-Cola
## 2554         Extra Grande        Colas Regular            Coca-Cola
## 2555         Extra Grande        Colas Regular            Coca-Cola
## 2556         Extra Grande        Colas Regular            Coca-Cola
## 2557         Extra Grande        Colas Regular            Coca-Cola
## 2558         Extra Grande        Colas Regular            Coca-Cola
## 2559         Extra Grande        Colas Regular            Coca-Cola
## 2560         Extra Grande     Isotónicos Light        Powerade Zero
## 2561         Extra Grande   Isotónicos Regular             Powerade
## 2562         Extra Grande   Isotónicos Regular             Powerade
## 2563         Extra Grande   Isotónicos Regular             Powerade
## 2564         Extra Grande     Jugos y Néctares            Del Valle
## 2565         Extra Grande     Jugos y Néctares            Del Valle
## 2566         Extra Grande     Jugos y Néctares            Del Valle
## 2567         Extra Grande     Jugos y Néctares            Del Valle
## 2568         Extra Grande     Jugos y Néctares            Del Valle
## 2569         Extra Grande     Jugos y Néctares            Del Valle
## 2570         Extra Grande     Jugos y Néctares            Del Valle
## 2571         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 2572         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2573         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2574         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 2575         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2576         Extra Grande        Sabores Light    Manzana Lift Zero
## 2577         Extra Grande        Sabores Light          Sprite Zero
## 2578         Extra Grande      Sabores Regular     Del Valle y Nada
## 2579         Extra Grande      Sabores Regular     Del Valle y Nada
## 2580         Extra Grande      Sabores Regular     Del Valle y Nada
## 2581         Extra Grande      Sabores Regular                Fanta
## 2582         Extra Grande      Sabores Regular                Fanta
## 2583         Extra Grande      Sabores Regular                Fanta
## 2584         Extra Grande      Sabores Regular                Fanta
## 2585         Extra Grande      Sabores Regular                Fanta
## 2586         Extra Grande      Sabores Regular                Fanta
## 2587         Extra Grande      Sabores Regular                Fanta
## 2588         Extra Grande      Sabores Regular                Fanta
## 2589         Extra Grande      Sabores Regular                Fanta
## 2590         Extra Grande      Sabores Regular                Fanta
## 2591         Extra Grande      Sabores Regular                Fanta
## 2592         Extra Grande      Sabores Regular               Fresca
## 2593         Extra Grande      Sabores Regular               Fresca
## 2594         Extra Grande      Sabores Regular               Fresca
## 2595         Extra Grande      Sabores Regular               Fresca
## 2596         Extra Grande      Sabores Regular               Fresca
## 2597         Extra Grande      Sabores Regular               Fresca
## 2598         Extra Grande      Sabores Regular               Fresca
## 2599         Extra Grande      Sabores Regular               Fresca
## 2600         Extra Grande      Sabores Regular               Fresca
## 2601         Extra Grande      Sabores Regular               Fresca
## 2602         Extra Grande      Sabores Regular               Fresca
## 2603         Extra Grande      Sabores Regular         Manzana Lift
## 2604         Extra Grande      Sabores Regular         Manzana Lift
## 2605         Extra Grande      Sabores Regular         Manzana Lift
## 2606         Extra Grande      Sabores Regular         Manzana Lift
## 2607         Extra Grande      Sabores Regular         Manzana Lift
## 2608         Extra Grande      Sabores Regular         Manzana Lift
## 2609         Extra Grande      Sabores Regular         Manzana Lift
## 2610         Extra Grande      Sabores Regular         Manzana Lift
## 2611         Extra Grande      Sabores Regular         Manzana Lift
## 2612         Extra Grande      Sabores Regular               Senzao
## 2613         Extra Grande      Sabores Regular        Sidral Mundet
## 2614         Extra Grande      Sabores Regular        Sidral Mundet
## 2615         Extra Grande      Sabores Regular        Sidral Mundet
## 2616         Extra Grande      Sabores Regular        Sidral Mundet
## 2617         Extra Grande      Sabores Regular        Sidral Mundet
## 2618         Extra Grande      Sabores Regular        Sidral Mundet
## 2619         Extra Grande      Sabores Regular        Sidral Mundet
## 2620         Extra Grande      Sabores Regular               Sprite
## 2621         Extra Grande      Sabores Regular               Sprite
## 2622         Extra Grande      Sabores Regular               Sprite
## 2623         Extra Grande      Sabores Regular               Sprite
## 2624         Extra Grande      Sabores Regular               Sprite
## 2625         Extra Grande      Sabores Regular               Sprite
## 2626         Extra Grande      Sabores Regular               Sprite
## 2627         Extra Grande      Sabores Regular               Sprite
## 2628         Extra Grande      Sabores Regular               Sprite
## 2629         Extra Grande      Sabores Regular               Sprite
## 2630         Extra Grande      Sabores Regular               Sprite
## 2631         Extra Grande           Té Regular             Fuze Tea
## 2632         Extra Grande           Té Regular             Fuze Tea
## 2633         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2634         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2635         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2636         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2637         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2638         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2639         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2640         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2641         Extra Grande      Agua Saborizada          Ciel Exprim
## 2642         Extra Grande      Agua Saborizada          Ciel Exprim
## 2643         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2644         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2645         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2646         Extra Grande     Bebidas de Fruta               Frutsi
## 2647         Extra Grande     Bebidas de Fruta                Pulpy
## 2648         Extra Grande     Bebidas de Fruta           Valle Frut
## 2649         Extra Grande     Bebidas de Fruta           Valle Frut
## 2650         Extra Grande     Bebidas de Fruta           Valle Frut
## 2651         Extra Grande     Bebidas de Fruta           Valle Frut
## 2652         Extra Grande     Bebidas de Fruta           Valle Frut
## 2653         Extra Grande  Bebidas Energeticas                 Burn
## 2654         Extra Grande          Colas Light       Coca-Cola Life
## 2655         Extra Grande          Colas Light       Coca-Cola Life
## 2656         Extra Grande          Colas Light       Coca-Cola Life
## 2657         Extra Grande          Colas Light       Coca-Cola Life
## 2658         Extra Grande          Colas Light       Coca-Cola Life
## 2659         Extra Grande          Colas Light      Coca-Cola Light
## 2660         Extra Grande          Colas Light      Coca-Cola Light
## 2661         Extra Grande          Colas Light      Coca-Cola Light
## 2662         Extra Grande          Colas Light      Coca-Cola Light
## 2663         Extra Grande          Colas Light      Coca-Cola Light
## 2664         Extra Grande          Colas Light      Coca-Cola Light
## 2665         Extra Grande          Colas Light       Coca-Cola Zero
## 2666         Extra Grande          Colas Light       Coca-Cola Zero
## 2667         Extra Grande          Colas Light       Coca-Cola Zero
## 2668         Extra Grande          Colas Light       Coca-Cola Zero
## 2669         Extra Grande        Colas Regular            Coca-Cola
## 2670         Extra Grande        Colas Regular            Coca-Cola
## 2671         Extra Grande        Colas Regular            Coca-Cola
## 2672         Extra Grande        Colas Regular            Coca-Cola
## 2673         Extra Grande        Colas Regular            Coca-Cola
## 2674         Extra Grande        Colas Regular            Coca-Cola
## 2675         Extra Grande        Colas Regular            Coca-Cola
## 2676         Extra Grande        Colas Regular            Coca-Cola
## 2677         Extra Grande        Colas Regular            Coca-Cola
## 2678         Extra Grande        Colas Regular            Coca-Cola
## 2679         Extra Grande        Colas Regular            Coca-Cola
## 2680         Extra Grande        Colas Regular            Coca-Cola
## 2681         Extra Grande        Colas Regular            Coca-Cola
## 2682         Extra Grande        Colas Regular            Coca-Cola
## 2683         Extra Grande        Colas Regular            Coca-Cola
## 2684         Extra Grande        Colas Regular            Coca-Cola
## 2685         Extra Grande        Colas Regular            Coca-Cola
## 2686         Extra Grande     Isotónicos Light        Powerade Zero
## 2687         Extra Grande   Isotónicos Regular             Powerade
## 2688         Extra Grande   Isotónicos Regular             Powerade
## 2689         Extra Grande   Isotónicos Regular             Powerade
## 2690         Extra Grande     Jugos y Néctares            Del Valle
## 2691         Extra Grande     Jugos y Néctares            Del Valle
## 2692         Extra Grande     Jugos y Néctares            Del Valle
## 2693         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 2694         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2695         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2696         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 2697         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2698         Extra Grande        Sabores Light          Sprite Zero
## 2699         Extra Grande      Sabores Regular     Del Valle y Nada
## 2700         Extra Grande      Sabores Regular     Del Valle y Nada
## 2701         Extra Grande      Sabores Regular     Del Valle y Nada
## 2702         Extra Grande      Sabores Regular                Fanta
## 2703         Extra Grande      Sabores Regular                Fanta
## 2704         Extra Grande      Sabores Regular                Fanta
## 2705         Extra Grande      Sabores Regular                Fanta
## 2706         Extra Grande      Sabores Regular                Fanta
## 2707         Extra Grande      Sabores Regular                Fanta
## 2708         Extra Grande      Sabores Regular                Fanta
## 2709         Extra Grande      Sabores Regular                Fanta
## 2710         Extra Grande      Sabores Regular                Fanta
## 2711         Extra Grande      Sabores Regular                Fanta
## 2712         Extra Grande      Sabores Regular               Fresca
## 2713         Extra Grande      Sabores Regular               Fresca
## 2714         Extra Grande      Sabores Regular               Fresca
## 2715         Extra Grande      Sabores Regular               Fresca
## 2716         Extra Grande      Sabores Regular               Fresca
## 2717         Extra Grande      Sabores Regular               Fresca
## 2718         Extra Grande      Sabores Regular               Fresca
## 2719         Extra Grande      Sabores Regular               Fresca
## 2720         Extra Grande      Sabores Regular         Manzana Lift
## 2721         Extra Grande      Sabores Regular         Manzana Lift
## 2722         Extra Grande      Sabores Regular         Manzana Lift
## 2723         Extra Grande      Sabores Regular         Manzana Lift
## 2724         Extra Grande      Sabores Regular         Manzana Lift
## 2725         Extra Grande      Sabores Regular         Manzana Lift
## 2726         Extra Grande      Sabores Regular         Manzana Lift
## 2727         Extra Grande      Sabores Regular         Manzana Lift
## 2728         Extra Grande      Sabores Regular         Manzana Lift
## 2729         Extra Grande      Sabores Regular               Senzao
## 2730         Extra Grande      Sabores Regular        Sidral Mundet
## 2731         Extra Grande      Sabores Regular        Sidral Mundet
## 2732         Extra Grande      Sabores Regular        Sidral Mundet
## 2733         Extra Grande      Sabores Regular        Sidral Mundet
## 2734         Extra Grande      Sabores Regular        Sidral Mundet
## 2735         Extra Grande      Sabores Regular        Sidral Mundet
## 2736         Extra Grande      Sabores Regular               Sprite
## 2737         Extra Grande      Sabores Regular               Sprite
## 2738         Extra Grande      Sabores Regular               Sprite
## 2739         Extra Grande      Sabores Regular               Sprite
## 2740         Extra Grande      Sabores Regular               Sprite
## 2741         Extra Grande      Sabores Regular               Sprite
## 2742         Extra Grande      Sabores Regular               Sprite
## 2743         Extra Grande      Sabores Regular               Sprite
## 2744         Extra Grande      Sabores Regular               Sprite
## 2745         Extra Grande      Sabores Regular               Sprite
## 2746         Extra Grande           Té Regular             Fuze Tea
## 2747         Extra Grande           Té Regular             Fuze Tea
## 2748         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2749         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2750         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2751         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2752         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2753         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2754         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2755         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2756         Extra Grande      Agua Saborizada          Ciel Exprim
## 2757         Extra Grande      Agua Saborizada            Ciel Mini
## 2758         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2759         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2760         Extra Grande     Bebidas de Fruta               Frutsi
## 2761         Extra Grande     Bebidas de Fruta                Pulpy
## 2762         Extra Grande     Bebidas de Fruta           Valle Frut
## 2763         Extra Grande     Bebidas de Fruta           Valle Frut
## 2764         Extra Grande     Bebidas de Fruta           Valle Frut
## 2765         Extra Grande  Bebidas Energeticas                 Burn
## 2766         Extra Grande  Bebidas Energeticas                 Burn
## 2767         Extra Grande  Bebidas Energeticas              Glacéau
## 2768         Extra Grande          Colas Light      Coca-Cola Light
## 2769         Extra Grande          Colas Light      Coca-Cola Light
## 2770         Extra Grande        Colas Regular            Coca-Cola
## 2771         Extra Grande        Colas Regular            Coca-Cola
## 2772         Extra Grande        Colas Regular            Coca-Cola
## 2773         Extra Grande        Colas Regular            Coca-Cola
## 2774         Extra Grande        Colas Regular            Coca-Cola
## 2775         Extra Grande        Colas Regular            Coca-Cola
## 2776         Extra Grande        Colas Regular            Coca-Cola
## 2777         Extra Grande        Colas Regular            Coca-Cola
## 2778         Extra Grande        Colas Regular            Coca-Cola
## 2779         Extra Grande        Colas Regular            Coca-Cola
## 2780         Extra Grande        Colas Regular            Coca-Cola
## 2781         Extra Grande        Colas Regular            Coca-Cola
## 2782         Extra Grande        Colas Regular            Coca-Cola
## 2783         Extra Grande   Isotónicos Regular             Powerade
## 2784         Extra Grande   Isotónicos Regular             Powerade
## 2785         Extra Grande   Isotónicos Regular             Powerade
## 2786         Extra Grande     Jugos y Néctares            Del Valle
## 2787         Extra Grande     Jugos y Néctares            Del Valle
## 2788         Extra Grande     Jugos y Néctares            Del Valle
## 2789         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 2790         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2791         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2792         Extra Grande        Sabores Light          Sprite Zero
## 2793         Extra Grande      Sabores Regular     Del Valle y Nada
## 2794         Extra Grande      Sabores Regular     Del Valle y Nada
## 2795         Extra Grande      Sabores Regular                Fanta
## 2796         Extra Grande      Sabores Regular                Fanta
## 2797         Extra Grande      Sabores Regular                Fanta
## 2798         Extra Grande      Sabores Regular                Fanta
## 2799         Extra Grande      Sabores Regular                Fanta
## 2800         Extra Grande      Sabores Regular                Fanta
## 2801         Extra Grande      Sabores Regular                Fanta
## 2802         Extra Grande      Sabores Regular               Fresca
## 2803         Extra Grande      Sabores Regular               Fresca
## 2804         Extra Grande      Sabores Regular               Fresca
## 2805         Extra Grande      Sabores Regular               Fresca
## 2806         Extra Grande      Sabores Regular               Fresca
## 2807         Extra Grande      Sabores Regular               Fresca
## 2808         Extra Grande      Sabores Regular               Fresca
## 2809         Extra Grande      Sabores Regular         Manzana Lift
## 2810         Extra Grande      Sabores Regular         Manzana Lift
## 2811         Extra Grande      Sabores Regular         Manzana Lift
## 2812         Extra Grande      Sabores Regular         Manzana Lift
## 2813         Extra Grande      Sabores Regular         Manzana Lift
## 2814         Extra Grande      Sabores Regular               Senzao
## 2815         Extra Grande      Sabores Regular        Sidral Mundet
## 2816         Extra Grande      Sabores Regular        Sidral Mundet
## 2817         Extra Grande      Sabores Regular        Sidral Mundet
## 2818         Extra Grande      Sabores Regular        Sidral Mundet
## 2819         Extra Grande      Sabores Regular               Sprite
## 2820         Extra Grande      Sabores Regular               Sprite
## 2821         Extra Grande      Sabores Regular               Sprite
## 2822         Extra Grande      Sabores Regular               Sprite
## 2823         Extra Grande      Sabores Regular               Sprite
## 2824         Extra Grande      Sabores Regular               Sprite
## 2825         Extra Grande      Sabores Regular               Sprite
## 2826         Extra Grande           Té Regular             Fuze Tea
## 2827         Extra Grande           Té Regular             Fuze Tea
## 2828         Extra Grande           Té Regular             Fuze Tea
## 2829         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2830         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2831         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2832         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2833         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2834         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2835         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2836         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2837         Extra Grande      Agua Saborizada            Ciel Mini
## 2838         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2839         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2840         Extra Grande     Bebidas de Fruta               Frutsi
## 2841         Extra Grande     Bebidas de Fruta                Pulpy
## 2842         Extra Grande     Bebidas de Fruta           Valle Frut
## 2843         Extra Grande     Bebidas de Fruta           Valle Frut
## 2844         Extra Grande     Bebidas de Fruta           Valle Frut
## 2845         Extra Grande     Bebidas de Fruta           Valle Frut
## 2846         Extra Grande  Bebidas Energeticas                 Burn
## 2847         Extra Grande  Bebidas Energeticas                 Burn
## 2848         Extra Grande  Bebidas Energeticas              Glacéau
## 2849         Extra Grande          Colas Light       Coca-Cola Life
## 2850         Extra Grande          Colas Light      Coca-Cola Light
## 2851         Extra Grande          Colas Light      Coca-Cola Light
## 2852         Extra Grande          Colas Light      Coca-Cola Light
## 2853         Extra Grande          Colas Light      Coca-Cola Light
## 2854         Extra Grande          Colas Light      Coca-Cola Light
## 2855         Extra Grande          Colas Light      Coca-Cola Light
## 2856         Extra Grande          Colas Light       Coca-Cola Zero
## 2857         Extra Grande          Colas Light       Coca-Cola Zero
## 2858         Extra Grande          Colas Light       Coca-Cola Zero
## 2859         Extra Grande          Colas Light       Coca-Cola Zero
## 2860         Extra Grande          Colas Light       Coca-Cola Zero
## 2861         Extra Grande        Colas Regular            Coca-Cola
## 2862         Extra Grande        Colas Regular            Coca-Cola
## 2863         Extra Grande        Colas Regular            Coca-Cola
## 2864         Extra Grande        Colas Regular            Coca-Cola
## 2865         Extra Grande        Colas Regular            Coca-Cola
## 2866         Extra Grande        Colas Regular            Coca-Cola
## 2867         Extra Grande        Colas Regular            Coca-Cola
## 2868         Extra Grande        Colas Regular            Coca-Cola
## 2869         Extra Grande        Colas Regular            Coca-Cola
## 2870         Extra Grande        Colas Regular            Coca-Cola
## 2871         Extra Grande        Colas Regular            Coca-Cola
## 2872         Extra Grande        Colas Regular            Coca-Cola
## 2873         Extra Grande        Colas Regular            Coca-Cola
## 2874         Extra Grande        Colas Regular            Coca-Cola
## 2875         Extra Grande        Colas Regular            Coca-Cola
## 2876         Extra Grande        Colas Regular            Coca-Cola
## 2877         Extra Grande     Isotónicos Light        Powerade Zero
## 2878         Extra Grande   Isotónicos Regular             Powerade
## 2879         Extra Grande   Isotónicos Regular             Powerade
## 2880         Extra Grande   Isotónicos Regular             Powerade
## 2881         Extra Grande     Jugos y Néctares            Del Valle
## 2882         Extra Grande     Jugos y Néctares            Del Valle
## 2883         Extra Grande     Jugos y Néctares            Del Valle
## 2884         Extra Grande     Jugos y Néctares            Del Valle
## 2885         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2886         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2887         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 2888         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2889         Extra Grande        Sabores Light  Sidral Mundet Light
## 2890         Extra Grande      Sabores Regular     Del Valle y Nada
## 2891         Extra Grande      Sabores Regular     Del Valle y Nada
## 2892         Extra Grande      Sabores Regular                Fanta
## 2893         Extra Grande      Sabores Regular                Fanta
## 2894         Extra Grande      Sabores Regular                Fanta
## 2895         Extra Grande      Sabores Regular                Fanta
## 2896         Extra Grande      Sabores Regular                Fanta
## 2897         Extra Grande      Sabores Regular                Fanta
## 2898         Extra Grande      Sabores Regular                Fanta
## 2899         Extra Grande      Sabores Regular                Fanta
## 2900         Extra Grande      Sabores Regular                Fanta
## 2901         Extra Grande      Sabores Regular               Fresca
## 2902         Extra Grande      Sabores Regular               Fresca
## 2903         Extra Grande      Sabores Regular               Fresca
## 2904         Extra Grande      Sabores Regular               Fresca
## 2905         Extra Grande      Sabores Regular               Fresca
## 2906         Extra Grande      Sabores Regular               Fresca
## 2907         Extra Grande      Sabores Regular               Fresca
## 2908         Extra Grande      Sabores Regular               Fresca
## 2909         Extra Grande      Sabores Regular               Fresca
## 2910         Extra Grande      Sabores Regular         Manzana Lift
## 2911         Extra Grande      Sabores Regular         Manzana Lift
## 2912         Extra Grande      Sabores Regular         Manzana Lift
## 2913         Extra Grande      Sabores Regular         Manzana Lift
## 2914         Extra Grande      Sabores Regular         Manzana Lift
## 2915         Extra Grande      Sabores Regular         Manzana Lift
## 2916         Extra Grande      Sabores Regular               Senzao
## 2917         Extra Grande      Sabores Regular        Sidral Mundet
## 2918         Extra Grande      Sabores Regular        Sidral Mundet
## 2919         Extra Grande      Sabores Regular        Sidral Mundet
## 2920         Extra Grande      Sabores Regular        Sidral Mundet
## 2921         Extra Grande      Sabores Regular        Sidral Mundet
## 2922         Extra Grande      Sabores Regular               Sprite
## 2923         Extra Grande      Sabores Regular               Sprite
## 2924         Extra Grande      Sabores Regular               Sprite
## 2925         Extra Grande      Sabores Regular               Sprite
## 2926         Extra Grande      Sabores Regular               Sprite
## 2927         Extra Grande      Sabores Regular               Sprite
## 2928         Extra Grande      Sabores Regular               Sprite
## 2929         Extra Grande      Sabores Regular               Sprite
## 2930         Extra Grande      Sabores Regular               Sprite
## 2931         Extra Grande           Té Regular             Fuze Tea
## 2932         Extra Grande           Té Regular             Fuze Tea
## 2933         Extra Grande           Té Regular             Fuze Tea
## 2934         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2935         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2936         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2937         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2938         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2939         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2940         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2941         Extra Grande      Agua Saborizada          Ciel Exprim
## 2942         Extra Grande      Agua Saborizada          Ciel Exprim
## 2943         Extra Grande      Agua Saborizada          Ciel Exprim
## 2944         Extra Grande      Agua Saborizada            Ciel Mini
## 2945         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2946         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2947         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2948         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2949         Extra Grande     Bebidas de Fruta               Frutsi
## 2950         Extra Grande     Bebidas de Fruta                Pulpy
## 2951         Extra Grande     Bebidas de Fruta           Valle Frut
## 2952         Extra Grande     Bebidas de Fruta           Valle Frut
## 2953         Extra Grande     Bebidas de Fruta           Valle Frut
## 2954         Extra Grande     Bebidas de Fruta           Valle Frut
## 2955         Extra Grande     Bebidas de Fruta           Valle Frut
## 2956         Extra Grande  Bebidas Energeticas                 Burn
## 2957         Extra Grande  Bebidas Energeticas                 Burn
## 2958         Extra Grande  Bebidas Energeticas              Glacéau
## 2959         Extra Grande          Colas Light       Coca-Cola Life
## 2960         Extra Grande          Colas Light      Coca-Cola Light
## 2961         Extra Grande          Colas Light      Coca-Cola Light
## 2962         Extra Grande          Colas Light      Coca-Cola Light
## 2963         Extra Grande          Colas Light      Coca-Cola Light
## 2964         Extra Grande          Colas Light      Coca-Cola Light
## 2965         Extra Grande          Colas Light      Coca-Cola Light
## 2966         Extra Grande          Colas Light      Coca-Cola Light
## 2967         Extra Grande          Colas Light      Coca-Cola Light
## 2968         Extra Grande          Colas Light      Coca-Cola Light
## 2969         Extra Grande          Colas Light       Coca-Cola Zero
## 2970         Extra Grande          Colas Light       Coca-Cola Zero
## 2971         Extra Grande          Colas Light       Coca-Cola Zero
## 2972         Extra Grande          Colas Light       Coca-Cola Zero
## 2973         Extra Grande        Colas Regular            Coca-Cola
## 2974         Extra Grande        Colas Regular            Coca-Cola
## 2975         Extra Grande        Colas Regular            Coca-Cola
## 2976         Extra Grande        Colas Regular            Coca-Cola
## 2977         Extra Grande        Colas Regular            Coca-Cola
## 2978         Extra Grande        Colas Regular            Coca-Cola
## 2979         Extra Grande        Colas Regular            Coca-Cola
## 2980         Extra Grande        Colas Regular            Coca-Cola
## 2981         Extra Grande        Colas Regular            Coca-Cola
## 2982         Extra Grande        Colas Regular            Coca-Cola
## 2983         Extra Grande        Colas Regular            Coca-Cola
## 2984         Extra Grande        Colas Regular            Coca-Cola
## 2985         Extra Grande        Colas Regular            Coca-Cola
## 2986         Extra Grande        Colas Regular            Coca-Cola
## 2987         Extra Grande        Colas Regular            Coca-Cola
## 2988         Extra Grande        Colas Regular            Coca-Cola
## 2989         Extra Grande        Colas Regular            Coca-Cola
## 2990         Extra Grande     Isotónicos Light        Powerade Zero
## 2991         Extra Grande   Isotónicos Regular             Powerade
## 2992         Extra Grande   Isotónicos Regular             Powerade
## 2993         Extra Grande   Isotónicos Regular             Powerade
## 2994         Extra Grande     Jugos y Néctares            Del Valle
## 2995         Extra Grande     Jugos y Néctares            Del Valle
## 2996         Extra Grande     Jugos y Néctares            Del Valle
## 2997         Extra Grande     Jugos y Néctares            Del Valle
## 2998         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 2999         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3000         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3001         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 3002         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 3003         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3004         Extra Grande        Sabores Light          Sprite Zero
## 3005         Extra Grande      Sabores Regular     Del Valle y Nada
## 3006         Extra Grande      Sabores Regular                Fanta
## 3007         Extra Grande      Sabores Regular                Fanta
## 3008         Extra Grande      Sabores Regular                Fanta
## 3009         Extra Grande      Sabores Regular                Fanta
## 3010         Extra Grande      Sabores Regular                Fanta
## 3011         Extra Grande      Sabores Regular                Fanta
## 3012         Extra Grande      Sabores Regular                Fanta
## 3013         Extra Grande      Sabores Regular                Fanta
## 3014         Extra Grande      Sabores Regular               Fresca
## 3015         Extra Grande      Sabores Regular               Fresca
## 3016         Extra Grande      Sabores Regular               Fresca
## 3017         Extra Grande      Sabores Regular               Fresca
## 3018         Extra Grande      Sabores Regular               Fresca
## 3019         Extra Grande      Sabores Regular               Fresca
## 3020         Extra Grande      Sabores Regular               Fresca
## 3021         Extra Grande      Sabores Regular               Fresca
## 3022         Extra Grande      Sabores Regular               Fresca
## 3023         Extra Grande      Sabores Regular         Manzana Lift
## 3024         Extra Grande      Sabores Regular         Manzana Lift
## 3025         Extra Grande      Sabores Regular         Manzana Lift
## 3026         Extra Grande      Sabores Regular         Manzana Lift
## 3027         Extra Grande      Sabores Regular         Manzana Lift
## 3028         Extra Grande      Sabores Regular               Senzao
## 3029         Extra Grande      Sabores Regular        Sidral Mundet
## 3030         Extra Grande      Sabores Regular        Sidral Mundet
## 3031         Extra Grande      Sabores Regular        Sidral Mundet
## 3032         Extra Grande      Sabores Regular        Sidral Mundet
## 3033         Extra Grande      Sabores Regular        Sidral Mundet
## 3034         Extra Grande      Sabores Regular        Sidral Mundet
## 3035         Extra Grande      Sabores Regular        Sidral Mundet
## 3036         Extra Grande      Sabores Regular        Sidral Mundet
## 3037         Extra Grande      Sabores Regular               Sprite
## 3038         Extra Grande      Sabores Regular               Sprite
## 3039         Extra Grande      Sabores Regular               Sprite
## 3040         Extra Grande      Sabores Regular               Sprite
## 3041         Extra Grande      Sabores Regular               Sprite
## 3042         Extra Grande      Sabores Regular               Sprite
## 3043         Extra Grande      Sabores Regular               Sprite
## 3044         Extra Grande      Sabores Regular               Sprite
## 3045         Extra Grande             Té Light       Fuze Tea Light
## 3046         Extra Grande           Té Regular             Fuze Tea
## 3047         Extra Grande           Té Regular             Fuze Tea
## 3048         Extra Grande           Té Regular             Fuze Tea
## 3049         Extra Grande           Té Regular             Fuze Tea
## 3050         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3051         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3052         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3053         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3054         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3055         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3056         Extra Grande     Bebidas de Fruta               Frutsi
## 3057         Extra Grande     Bebidas de Fruta                Pulpy
## 3058         Extra Grande     Bebidas de Fruta           Valle Frut
## 3059         Extra Grande     Bebidas de Fruta           Valle Frut
## 3060         Extra Grande  Bebidas Energeticas                 Burn
## 3061         Extra Grande          Colas Light       Coca-Cola Life
## 3062         Extra Grande          Colas Light       Coca-Cola Life
## 3063         Extra Grande          Colas Light      Coca-Cola Light
## 3064         Extra Grande          Colas Light      Coca-Cola Light
## 3065         Extra Grande          Colas Light      Coca-Cola Light
## 3066         Extra Grande          Colas Light      Coca-Cola Light
## 3067         Extra Grande          Colas Light      Coca-Cola Light
## 3068         Extra Grande          Colas Light       Coca-Cola Zero
## 3069         Extra Grande        Colas Regular            Coca-Cola
## 3070         Extra Grande        Colas Regular            Coca-Cola
## 3071         Extra Grande        Colas Regular            Coca-Cola
## 3072         Extra Grande        Colas Regular            Coca-Cola
## 3073         Extra Grande        Colas Regular            Coca-Cola
## 3074         Extra Grande        Colas Regular            Coca-Cola
## 3075         Extra Grande        Colas Regular            Coca-Cola
## 3076         Extra Grande        Colas Regular            Coca-Cola
## 3077         Extra Grande        Colas Regular            Coca-Cola
## 3078         Extra Grande        Colas Regular            Coca-Cola
## 3079         Extra Grande        Colas Regular            Coca-Cola
## 3080         Extra Grande        Colas Regular            Coca-Cola
## 3081         Extra Grande        Colas Regular            Coca-Cola
## 3082         Extra Grande        Colas Regular            Coca-Cola
## 3083         Extra Grande        Colas Regular            Coca-Cola
## 3084         Extra Grande        Colas Regular            Coca-Cola
## 3085         Extra Grande   Isotónicos Regular             Powerade
## 3086         Extra Grande   Isotónicos Regular             Powerade
## 3087         Extra Grande     Jugos y Néctares            Del Valle
## 3088         Extra Grande     Jugos y Néctares            Del Valle
## 3089         Extra Grande     Jugos y Néctares            Del Valle
## 3090         Extra Grande     Jugos y Néctares            Del Valle
## 3091         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3092         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 3093         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3094         Extra Grande        Sabores Light          Sprite Zero
## 3095         Extra Grande      Sabores Regular     Del Valle y Nada
## 3096         Extra Grande      Sabores Regular                Fanta
## 3097         Extra Grande      Sabores Regular                Fanta
## 3098         Extra Grande      Sabores Regular                Fanta
## 3099         Extra Grande      Sabores Regular                Fanta
## 3100         Extra Grande      Sabores Regular                Fanta
## 3101         Extra Grande      Sabores Regular                Fanta
## 3102         Extra Grande      Sabores Regular                Fanta
## 3103         Extra Grande      Sabores Regular               Fresca
## 3104         Extra Grande      Sabores Regular               Fresca
## 3105         Extra Grande      Sabores Regular               Fresca
## 3106         Extra Grande      Sabores Regular               Fresca
## 3107         Extra Grande      Sabores Regular         Manzana Lift
## 3108         Extra Grande      Sabores Regular         Manzana Lift
## 3109         Extra Grande      Sabores Regular         Manzana Lift
## 3110         Extra Grande      Sabores Regular         Manzana Lift
## 3111         Extra Grande      Sabores Regular        Sidral Mundet
## 3112         Extra Grande      Sabores Regular        Sidral Mundet
## 3113         Extra Grande      Sabores Regular        Sidral Mundet
## 3114         Extra Grande      Sabores Regular        Sidral Mundet
## 3115         Extra Grande      Sabores Regular        Sidral Mundet
## 3116         Extra Grande      Sabores Regular               Sprite
## 3117         Extra Grande      Sabores Regular               Sprite
## 3118         Extra Grande      Sabores Regular               Sprite
## 3119         Extra Grande      Sabores Regular               Sprite
## 3120         Extra Grande      Sabores Regular               Sprite
## 3121         Extra Grande      Sabores Regular               Sprite
## 3122         Extra Grande      Sabores Regular               Sprite
## 3123         Extra Grande           Té Regular             Fuze Tea
## 3124         Extra Grande           Té Regular             Fuze Tea
## 3125         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3126         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3127         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3128         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3129         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3130         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3131         Extra Grande      Agua Saborizada          Ciel Exprim
## 3132         Extra Grande      Agua Saborizada            Ciel Mini
## 3133         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3134         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3135         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3136         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3137         Extra Grande     Bebidas de Fruta               Frutsi
## 3138         Extra Grande     Bebidas de Fruta                Pulpy
## 3139         Extra Grande     Bebidas de Fruta           Valle Frut
## 3140         Extra Grande     Bebidas de Fruta           Valle Frut
## 3141         Extra Grande     Bebidas de Fruta           Valle Frut
## 3142         Extra Grande     Bebidas de Fruta           Valle Frut
## 3143         Extra Grande     Bebidas de Fruta           Valle Frut
## 3144         Extra Grande          Colas Light       Coca-Cola Life
## 3145         Extra Grande          Colas Light       Coca-Cola Life
## 3146         Extra Grande          Colas Light      Coca-Cola Light
## 3147         Extra Grande          Colas Light      Coca-Cola Light
## 3148         Extra Grande          Colas Light      Coca-Cola Light
## 3149         Extra Grande          Colas Light      Coca-Cola Light
## 3150         Extra Grande          Colas Light      Coca-Cola Light
## 3151         Extra Grande          Colas Light      Coca-Cola Light
## 3152         Extra Grande          Colas Light       Coca-Cola Zero
## 3153         Extra Grande          Colas Light       Coca-Cola Zero
## 3154         Extra Grande          Colas Light       Coca-Cola Zero
## 3155         Extra Grande          Colas Light       Coca-Cola Zero
## 3156         Extra Grande        Colas Regular            Coca-Cola
## 3157         Extra Grande        Colas Regular            Coca-Cola
## 3158         Extra Grande        Colas Regular            Coca-Cola
## 3159         Extra Grande        Colas Regular            Coca-Cola
## 3160         Extra Grande        Colas Regular            Coca-Cola
## 3161         Extra Grande        Colas Regular            Coca-Cola
## 3162         Extra Grande        Colas Regular            Coca-Cola
## 3163         Extra Grande        Colas Regular            Coca-Cola
## 3164         Extra Grande        Colas Regular            Coca-Cola
## 3165         Extra Grande        Colas Regular            Coca-Cola
## 3166         Extra Grande        Colas Regular            Coca-Cola
## 3167         Extra Grande        Colas Regular            Coca-Cola
## 3168         Extra Grande        Colas Regular            Coca-Cola
## 3169         Extra Grande        Colas Regular            Coca-Cola
## 3170         Extra Grande        Colas Regular            Coca-Cola
## 3171         Extra Grande        Colas Regular            Coca-Cola
## 3172         Extra Grande        Colas Regular            Coca-Cola
## 3173         Extra Grande     Isotónicos Light        Powerade Zero
## 3174         Extra Grande   Isotónicos Regular             Powerade
## 3175         Extra Grande   Isotónicos Regular             Powerade
## 3176         Extra Grande   Isotónicos Regular             Powerade
## 3177         Extra Grande     Jugos y Néctares            Del Valle
## 3178         Extra Grande     Jugos y Néctares            Del Valle
## 3179         Extra Grande     Jugos y Néctares            Del Valle
## 3180         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3181         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3182         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3183         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3184         Extra Grande        Sabores Light          Sprite Zero
## 3185         Extra Grande      Sabores Regular     Del Valle y Nada
## 3186         Extra Grande      Sabores Regular                Fanta
## 3187         Extra Grande      Sabores Regular                Fanta
## 3188         Extra Grande      Sabores Regular                Fanta
## 3189         Extra Grande      Sabores Regular                Fanta
## 3190         Extra Grande      Sabores Regular                Fanta
## 3191         Extra Grande      Sabores Regular                Fanta
## 3192         Extra Grande      Sabores Regular                Fanta
## 3193         Extra Grande      Sabores Regular                Fanta
## 3194         Extra Grande      Sabores Regular                Fanta
## 3195         Extra Grande      Sabores Regular               Fresca
## 3196         Extra Grande      Sabores Regular               Fresca
## 3197         Extra Grande      Sabores Regular               Fresca
## 3198         Extra Grande      Sabores Regular               Fresca
## 3199         Extra Grande      Sabores Regular               Fresca
## 3200         Extra Grande      Sabores Regular               Fresca
## 3201         Extra Grande      Sabores Regular               Fresca
## 3202         Extra Grande      Sabores Regular         Manzana Lift
## 3203         Extra Grande      Sabores Regular         Manzana Lift
## 3204         Extra Grande      Sabores Regular         Manzana Lift
## 3205         Extra Grande      Sabores Regular         Manzana Lift
## 3206         Extra Grande      Sabores Regular         Manzana Lift
## 3207         Extra Grande      Sabores Regular         Manzana Lift
## 3208         Extra Grande      Sabores Regular               Senzao
## 3209         Extra Grande      Sabores Regular        Sidral Mundet
## 3210         Extra Grande      Sabores Regular        Sidral Mundet
## 3211         Extra Grande      Sabores Regular        Sidral Mundet
## 3212         Extra Grande      Sabores Regular        Sidral Mundet
## 3213         Extra Grande      Sabores Regular               Sprite
## 3214         Extra Grande      Sabores Regular               Sprite
## 3215         Extra Grande      Sabores Regular               Sprite
## 3216         Extra Grande      Sabores Regular               Sprite
## 3217         Extra Grande      Sabores Regular               Sprite
## 3218         Extra Grande      Sabores Regular               Sprite
## 3219         Extra Grande      Sabores Regular               Sprite
## 3220         Extra Grande      Sabores Regular               Sprite
## 3221         Extra Grande      Sabores Regular               Sprite
## 3222         Extra Grande           Té Regular             Fuze Tea
## 3223         Extra Grande           Té Regular             Fuze Tea
## 3224         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3225         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3226         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3227         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3228         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3229         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3230         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3231         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3232         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3233         Extra Grande      Agua Saborizada          Ciel Exprim
## 3234         Extra Grande      Agua Saborizada          Ciel Exprim
## 3235         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3236         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3237         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3238         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3239         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3240         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3241         Extra Grande     Bebidas de Fruta               Frutsi
## 3242         Extra Grande     Bebidas de Fruta                Pulpy
## 3243         Extra Grande     Bebidas de Fruta           Valle Frut
## 3244         Extra Grande     Bebidas de Fruta           Valle Frut
## 3245         Extra Grande     Bebidas de Fruta           Valle Frut
## 3246         Extra Grande     Bebidas de Fruta           Valle Frut
## 3247         Extra Grande  Bebidas Energeticas                 Burn
## 3248         Extra Grande  Bebidas Energeticas                 Burn
## 3249         Extra Grande  Bebidas Energeticas              Glacéau
## 3250         Extra Grande          Colas Light       Coca-Cola Life
## 3251         Extra Grande          Colas Light       Coca-Cola Life
## 3252         Extra Grande          Colas Light      Coca-Cola Light
## 3253         Extra Grande          Colas Light      Coca-Cola Light
## 3254         Extra Grande          Colas Light      Coca-Cola Light
## 3255         Extra Grande          Colas Light      Coca-Cola Light
## 3256         Extra Grande          Colas Light      Coca-Cola Light
## 3257         Extra Grande          Colas Light      Coca-Cola Light
## 3258         Extra Grande          Colas Light      Coca-Cola Light
## 3259         Extra Grande          Colas Light      Coca-Cola Light
## 3260         Extra Grande          Colas Light       Coca-Cola Zero
## 3261         Extra Grande          Colas Light       Coca-Cola Zero
## 3262         Extra Grande          Colas Light       Coca-Cola Zero
## 3263         Extra Grande        Colas Regular            Coca-Cola
## 3264         Extra Grande        Colas Regular            Coca-Cola
## 3265         Extra Grande        Colas Regular            Coca-Cola
## 3266         Extra Grande        Colas Regular            Coca-Cola
## 3267         Extra Grande        Colas Regular            Coca-Cola
## 3268         Extra Grande        Colas Regular            Coca-Cola
## 3269         Extra Grande        Colas Regular            Coca-Cola
## 3270         Extra Grande        Colas Regular            Coca-Cola
## 3271         Extra Grande        Colas Regular            Coca-Cola
## 3272         Extra Grande        Colas Regular            Coca-Cola
## 3273         Extra Grande        Colas Regular            Coca-Cola
## 3274         Extra Grande        Colas Regular            Coca-Cola
## 3275         Extra Grande        Colas Regular            Coca-Cola
## 3276         Extra Grande        Colas Regular            Coca-Cola
## 3277         Extra Grande        Colas Regular            Coca-Cola
## 3278         Extra Grande        Colas Regular            Coca-Cola
## 3279         Extra Grande        Colas Regular            Coca-Cola
## 3280         Extra Grande        Colas Regular            Coca-Cola
## 3281         Extra Grande   Isotónicos Regular             Powerade
## 3282         Extra Grande   Isotónicos Regular             Powerade
## 3283         Extra Grande   Isotónicos Regular             Powerade
## 3284         Extra Grande     Jugos y Néctares            Del Valle
## 3285         Extra Grande     Jugos y Néctares            Del Valle
## 3286         Extra Grande     Jugos y Néctares            Del Valle
## 3287         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3288         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3289         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3290         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 3291         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 3292         Extra Grande    Leche UHT Regular    Santa Clara Light
## 3293         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3294         Extra Grande        Sabores Light          Sprite Zero
## 3295         Extra Grande      Sabores Regular     Del Valle y Nada
## 3296         Extra Grande      Sabores Regular                Fanta
## 3297         Extra Grande      Sabores Regular                Fanta
## 3298         Extra Grande      Sabores Regular                Fanta
## 3299         Extra Grande      Sabores Regular                Fanta
## 3300         Extra Grande      Sabores Regular                Fanta
## 3301         Extra Grande      Sabores Regular                Fanta
## 3302         Extra Grande      Sabores Regular                Fanta
## 3303         Extra Grande      Sabores Regular                Fanta
## 3304         Extra Grande      Sabores Regular                Fanta
## 3305         Extra Grande      Sabores Regular                Fanta
## 3306         Extra Grande      Sabores Regular                Fanta
## 3307         Extra Grande      Sabores Regular                Fanta
## 3308         Extra Grande      Sabores Regular               Fresca
## 3309         Extra Grande      Sabores Regular               Fresca
## 3310         Extra Grande      Sabores Regular               Fresca
## 3311         Extra Grande      Sabores Regular               Fresca
## 3312         Extra Grande      Sabores Regular               Fresca
## 3313         Extra Grande      Sabores Regular               Fresca
## 3314         Extra Grande      Sabores Regular               Fresca
## 3315         Extra Grande      Sabores Regular               Fresca
## 3316         Extra Grande      Sabores Regular               Fresca
## 3317         Extra Grande      Sabores Regular         Manzana Lift
## 3318         Extra Grande      Sabores Regular         Manzana Lift
## 3319         Extra Grande      Sabores Regular         Manzana Lift
## 3320         Extra Grande      Sabores Regular         Manzana Lift
## 3321         Extra Grande      Sabores Regular         Manzana Lift
## 3322         Extra Grande      Sabores Regular         Manzana Lift
## 3323         Extra Grande      Sabores Regular         Manzana Lift
## 3324         Extra Grande      Sabores Regular               Senzao
## 3325         Extra Grande      Sabores Regular        Sidral Mundet
## 3326         Extra Grande      Sabores Regular        Sidral Mundet
## 3327         Extra Grande      Sabores Regular        Sidral Mundet
## 3328         Extra Grande      Sabores Regular        Sidral Mundet
## 3329         Extra Grande      Sabores Regular        Sidral Mundet
## 3330         Extra Grande      Sabores Regular        Sidral Mundet
## 3331         Extra Grande      Sabores Regular               Sprite
## 3332         Extra Grande      Sabores Regular               Sprite
## 3333         Extra Grande      Sabores Regular               Sprite
## 3334         Extra Grande      Sabores Regular               Sprite
## 3335         Extra Grande      Sabores Regular               Sprite
## 3336         Extra Grande      Sabores Regular               Sprite
## 3337         Extra Grande      Sabores Regular               Sprite
## 3338         Extra Grande      Sabores Regular               Sprite
## 3339         Extra Grande      Sabores Regular               Sprite
## 3340         Extra Grande      Sabores Regular               Sprite
## 3341         Extra Grande           Té Regular             Fuze Tea
## 3342         Extra Grande           Té Regular             Fuze Tea
## 3343         Extra Grande           Té Regular             Fuze Tea
## 3344         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3345         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3346         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3347         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3348         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3349         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3350         Extra Grande     Bebidas de Fruta               Frutsi
## 3351         Extra Grande     Bebidas de Fruta                Pulpy
## 3352         Extra Grande     Bebidas de Fruta           Valle Frut
## 3353         Extra Grande     Bebidas de Fruta           Valle Frut
## 3354         Extra Grande     Bebidas de Fruta           Valle Frut
## 3355         Extra Grande     Bebidas de Fruta           Valle Frut
## 3356         Extra Grande  Bebidas Energeticas                 Burn
## 3357         Extra Grande  Bebidas Energeticas                 Burn
## 3358         Extra Grande          Colas Light       Coca-Cola Life
## 3359         Extra Grande          Colas Light      Coca-Cola Light
## 3360         Extra Grande          Colas Light      Coca-Cola Light
## 3361         Extra Grande        Colas Regular            Coca-Cola
## 3362         Extra Grande        Colas Regular            Coca-Cola
## 3363         Extra Grande        Colas Regular            Coca-Cola
## 3364         Extra Grande        Colas Regular            Coca-Cola
## 3365         Extra Grande        Colas Regular            Coca-Cola
## 3366         Extra Grande        Colas Regular            Coca-Cola
## 3367         Extra Grande        Colas Regular            Coca-Cola
## 3368         Extra Grande        Colas Regular            Coca-Cola
## 3369         Extra Grande        Colas Regular            Coca-Cola
## 3370         Extra Grande        Colas Regular            Coca-Cola
## 3371         Extra Grande     Isotónicos Light        Powerade Zero
## 3372         Extra Grande   Isotónicos Regular             Powerade
## 3373         Extra Grande   Isotónicos Regular             Powerade
## 3374         Extra Grande   Isotónicos Regular             Powerade
## 3375         Extra Grande     Jugos y Néctares            Del Valle
## 3376         Extra Grande     Jugos y Néctares            Del Valle
## 3377         Extra Grande     Jugos y Néctares            Del Valle
## 3378         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3379         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3380         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3381         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3382         Extra Grande      Sabores Regular                Fanta
## 3383         Extra Grande      Sabores Regular                Fanta
## 3384         Extra Grande      Sabores Regular                Fanta
## 3385         Extra Grande      Sabores Regular                Fanta
## 3386         Extra Grande      Sabores Regular                Fanta
## 3387         Extra Grande      Sabores Regular                Fanta
## 3388         Extra Grande      Sabores Regular               Fresca
## 3389         Extra Grande      Sabores Regular               Fresca
## 3390         Extra Grande      Sabores Regular               Fresca
## 3391         Extra Grande      Sabores Regular               Fresca
## 3392         Extra Grande      Sabores Regular               Fresca
## 3393         Extra Grande      Sabores Regular         Manzana Lift
## 3394         Extra Grande      Sabores Regular         Manzana Lift
## 3395         Extra Grande      Sabores Regular         Manzana Lift
## 3396         Extra Grande      Sabores Regular         Manzana Lift
## 3397         Extra Grande      Sabores Regular        Sidral Mundet
## 3398         Extra Grande      Sabores Regular        Sidral Mundet
## 3399         Extra Grande      Sabores Regular        Sidral Mundet
## 3400         Extra Grande      Sabores Regular               Sprite
## 3401         Extra Grande      Sabores Regular               Sprite
## 3402         Extra Grande      Sabores Regular               Sprite
## 3403         Extra Grande      Sabores Regular               Sprite
## 3404         Extra Grande      Sabores Regular               Sprite
## 3405         Extra Grande      Sabores Regular               Sprite
## 3406         Extra Grande           Té Regular             Fuze Tea
## 3407         Extra Grande           Té Regular             Fuze Tea
## 3408         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3409         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3410         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3411         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3412         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3413         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3414         Extra Grande      Agua Saborizada          Ciel Exprim
## 3415         Extra Grande      Agua Saborizada          Ciel Exprim
## 3416         Extra Grande      Agua Saborizada            Ciel Mini
## 3417         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3418         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3419         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3420         Extra Grande     Bebidas de Fruta               Frutsi
## 3421         Extra Grande     Bebidas de Fruta                Pulpy
## 3422         Extra Grande     Bebidas de Fruta           Valle Frut
## 3423         Extra Grande     Bebidas de Fruta           Valle Frut
## 3424         Extra Grande     Bebidas de Fruta           Valle Frut
## 3425         Extra Grande     Bebidas de Fruta           Valle Frut
## 3426         Extra Grande     Bebidas de Fruta           Valle Frut
## 3427         Extra Grande     Bebidas de Fruta           Valle Frut
## 3428         Extra Grande  Bebidas Energeticas                 Burn
## 3429         Extra Grande  Bebidas Energeticas                 Burn
## 3430         Extra Grande  Bebidas Energeticas              Glacéau
## 3431         Extra Grande          Colas Light       Coca-Cola Life
## 3432         Extra Grande          Colas Light       Coca-Cola Life
## 3433         Extra Grande          Colas Light       Coca-Cola Life
## 3434         Extra Grande          Colas Light       Coca-Cola Life
## 3435         Extra Grande          Colas Light      Coca-Cola Light
## 3436         Extra Grande          Colas Light      Coca-Cola Light
## 3437         Extra Grande          Colas Light      Coca-Cola Light
## 3438         Extra Grande          Colas Light      Coca-Cola Light
## 3439         Extra Grande          Colas Light      Coca-Cola Light
## 3440         Extra Grande          Colas Light       Coca-Cola Zero
## 3441         Extra Grande          Colas Light       Coca-Cola Zero
## 3442         Extra Grande          Colas Light       Coca-Cola Zero
## 3443         Extra Grande          Colas Light       Coca-Cola Zero
## 3444         Extra Grande        Colas Regular            Coca-Cola
## 3445         Extra Grande        Colas Regular            Coca-Cola
## 3446         Extra Grande        Colas Regular            Coca-Cola
## 3447         Extra Grande        Colas Regular            Coca-Cola
## 3448         Extra Grande        Colas Regular            Coca-Cola
## 3449         Extra Grande        Colas Regular            Coca-Cola
## 3450         Extra Grande        Colas Regular            Coca-Cola
## 3451         Extra Grande        Colas Regular            Coca-Cola
## 3452         Extra Grande        Colas Regular            Coca-Cola
## 3453         Extra Grande        Colas Regular            Coca-Cola
## 3454         Extra Grande        Colas Regular            Coca-Cola
## 3455         Extra Grande        Colas Regular            Coca-Cola
## 3456         Extra Grande        Colas Regular            Coca-Cola
## 3457         Extra Grande        Colas Regular            Coca-Cola
## 3458         Extra Grande        Colas Regular            Coca-Cola
## 3459         Extra Grande        Colas Regular            Coca-Cola
## 3460         Extra Grande        Colas Regular            Coca-Cola
## 3461         Extra Grande        Colas Regular            Coca-Cola
## 3462         Extra Grande     Isotónicos Light        Powerade Zero
## 3463         Extra Grande   Isotónicos Regular             Powerade
## 3464         Extra Grande   Isotónicos Regular             Powerade
## 3465         Extra Grande   Isotónicos Regular             Powerade
## 3466         Extra Grande     Jugos y Néctares            Del Valle
## 3467         Extra Grande     Jugos y Néctares            Del Valle
## 3468         Extra Grande     Jugos y Néctares            Del Valle
## 3469         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3470         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3471         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3472         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 3473         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 3474         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 3475         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3476         Extra Grande        Sabores Light          Sprite Zero
## 3477         Extra Grande      Sabores Regular     Del Valle y Nada
## 3478         Extra Grande      Sabores Regular     Del Valle y Nada
## 3479         Extra Grande      Sabores Regular     Del Valle y Nada
## 3480         Extra Grande      Sabores Regular                Fanta
## 3481         Extra Grande      Sabores Regular                Fanta
## 3482         Extra Grande      Sabores Regular                Fanta
## 3483         Extra Grande      Sabores Regular                Fanta
## 3484         Extra Grande      Sabores Regular                Fanta
## 3485         Extra Grande      Sabores Regular                Fanta
## 3486         Extra Grande      Sabores Regular                Fanta
## 3487         Extra Grande      Sabores Regular                Fanta
## 3488         Extra Grande      Sabores Regular                Fanta
## 3489         Extra Grande      Sabores Regular               Fresca
## 3490         Extra Grande      Sabores Regular               Fresca
## 3491         Extra Grande      Sabores Regular               Fresca
## 3492         Extra Grande      Sabores Regular               Fresca
## 3493         Extra Grande      Sabores Regular               Fresca
## 3494         Extra Grande      Sabores Regular               Fresca
## 3495         Extra Grande      Sabores Regular               Fresca
## 3496         Extra Grande      Sabores Regular               Fresca
## 3497         Extra Grande      Sabores Regular               Fresca
## 3498         Extra Grande      Sabores Regular         Manzana Lift
## 3499         Extra Grande      Sabores Regular         Manzana Lift
## 3500         Extra Grande      Sabores Regular         Manzana Lift
## 3501         Extra Grande      Sabores Regular         Manzana Lift
## 3502         Extra Grande      Sabores Regular         Manzana Lift
## 3503         Extra Grande      Sabores Regular         Manzana Lift
## 3504         Extra Grande      Sabores Regular         Manzana Lift
## 3505         Extra Grande      Sabores Regular               Senzao
## 3506         Extra Grande      Sabores Regular        Sidral Mundet
## 3507         Extra Grande      Sabores Regular        Sidral Mundet
## 3508         Extra Grande      Sabores Regular        Sidral Mundet
## 3509         Extra Grande      Sabores Regular        Sidral Mundet
## 3510         Extra Grande      Sabores Regular        Sidral Mundet
## 3511         Extra Grande      Sabores Regular               Sprite
## 3512         Extra Grande      Sabores Regular               Sprite
## 3513         Extra Grande      Sabores Regular               Sprite
## 3514         Extra Grande      Sabores Regular               Sprite
## 3515         Extra Grande      Sabores Regular               Sprite
## 3516         Extra Grande      Sabores Regular               Sprite
## 3517         Extra Grande      Sabores Regular               Sprite
## 3518         Extra Grande      Sabores Regular               Sprite
## 3519         Extra Grande      Sabores Regular               Sprite
## 3520         Extra Grande             Té Light       Fuze Tea Light
## 3521         Extra Grande           Té Regular             Fuze Tea
## 3522         Extra Grande           Té Regular             Fuze Tea
## 3523         Extra Grande           Té Regular             Fuze Tea
## 3524         Extra Grande           Té Regular             Fuze Tea
## 3525         Extra Grande           Té Regular             Fuze Tea
## 3526         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3527         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3528         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3529         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3530         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3531         Extra Grande      Agua Saborizada            Ciel Mini
## 3532         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3533         Extra Grande     Bebidas de Fruta               Frutsi
## 3534         Extra Grande     Bebidas de Fruta           Valle Frut
## 3535         Extra Grande     Bebidas de Fruta           Valle Frut
## 3536         Extra Grande     Bebidas de Fruta           Valle Frut
## 3537         Extra Grande          Colas Light       Coca-Cola Life
## 3538         Extra Grande          Colas Light      Coca-Cola Light
## 3539         Extra Grande          Colas Light      Coca-Cola Light
## 3540         Extra Grande          Colas Light      Coca-Cola Light
## 3541         Extra Grande          Colas Light      Coca-Cola Light
## 3542         Extra Grande          Colas Light      Coca-Cola Light
## 3543         Extra Grande          Colas Light      Coca-Cola Light
## 3544         Extra Grande          Colas Light      Coca-Cola Light
## 3545         Extra Grande          Colas Light       Coca-Cola Zero
## 3546         Extra Grande        Colas Regular            Coca-Cola
## 3547         Extra Grande        Colas Regular            Coca-Cola
## 3548         Extra Grande        Colas Regular            Coca-Cola
## 3549         Extra Grande        Colas Regular            Coca-Cola
## 3550         Extra Grande        Colas Regular            Coca-Cola
## 3551         Extra Grande        Colas Regular            Coca-Cola
## 3552         Extra Grande        Colas Regular            Coca-Cola
## 3553         Extra Grande        Colas Regular            Coca-Cola
## 3554         Extra Grande        Colas Regular            Coca-Cola
## 3555         Extra Grande        Colas Regular            Coca-Cola
## 3556         Extra Grande        Colas Regular            Coca-Cola
## 3557         Extra Grande        Colas Regular            Coca-Cola
## 3558         Extra Grande        Colas Regular            Coca-Cola
## 3559         Extra Grande        Colas Regular            Coca-Cola
## 3560         Extra Grande        Colas Regular            Coca-Cola
## 3561         Extra Grande     Isotónicos Light        Powerade Zero
## 3562         Extra Grande   Isotónicos Regular             Powerade
## 3563         Extra Grande   Isotónicos Regular             Powerade
## 3564         Extra Grande   Isotónicos Regular             Powerade
## 3565         Extra Grande     Jugos y Néctares            Del Valle
## 3566         Extra Grande     Jugos y Néctares            Del Valle
## 3567         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3568         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3569         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3570         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3571         Extra Grande      Sabores Regular     Del Valle y Nada
## 3572         Extra Grande      Sabores Regular     Del Valle y Nada
## 3573         Extra Grande      Sabores Regular                Fanta
## 3574         Extra Grande      Sabores Regular                Fanta
## 3575         Extra Grande      Sabores Regular                Fanta
## 3576         Extra Grande      Sabores Regular                Fanta
## 3577         Extra Grande      Sabores Regular                Fanta
## 3578         Extra Grande      Sabores Regular                Fanta
## 3579         Extra Grande      Sabores Regular               Fresca
## 3580         Extra Grande      Sabores Regular               Fresca
## 3581         Extra Grande      Sabores Regular               Fresca
## 3582         Extra Grande      Sabores Regular               Fresca
## 3583         Extra Grande      Sabores Regular               Fresca
## 3584         Extra Grande      Sabores Regular               Fresca
## 3585         Extra Grande      Sabores Regular               Fresca
## 3586         Extra Grande      Sabores Regular         Manzana Lift
## 3587         Extra Grande      Sabores Regular         Manzana Lift
## 3588         Extra Grande      Sabores Regular         Manzana Lift
## 3589         Extra Grande      Sabores Regular         Manzana Lift
## 3590         Extra Grande      Sabores Regular        Sidral Mundet
## 3591         Extra Grande      Sabores Regular        Sidral Mundet
## 3592         Extra Grande      Sabores Regular        Sidral Mundet
## 3593         Extra Grande      Sabores Regular        Sidral Mundet
## 3594         Extra Grande      Sabores Regular        Sidral Mundet
## 3595         Extra Grande      Sabores Regular               Sprite
## 3596         Extra Grande      Sabores Regular               Sprite
## 3597         Extra Grande      Sabores Regular               Sprite
## 3598         Extra Grande      Sabores Regular               Sprite
## 3599         Extra Grande      Sabores Regular               Sprite
## 3600         Extra Grande      Sabores Regular               Sprite
## 3601         Extra Grande           Té Regular             Fuze Tea
## 3602         Extra Grande           Té Regular             Fuze Tea
## 3603         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3604         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3605         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3606         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3607         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3608         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3609         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3610         Extra Grande      Agua Saborizada          Ciel Exprim
## 3611         Extra Grande      Agua Saborizada            Ciel Mini
## 3612         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3613         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3614         Extra Grande     Bebidas de Fruta               Frutsi
## 3615         Extra Grande     Bebidas de Fruta                Pulpy
## 3616         Extra Grande     Bebidas de Fruta           Valle Frut
## 3617         Extra Grande     Bebidas de Fruta           Valle Frut
## 3618         Extra Grande     Bebidas de Fruta           Valle Frut
## 3619         Extra Grande     Bebidas de Fruta           Valle Frut
## 3620         Extra Grande  Bebidas Energeticas                 Burn
## 3621         Extra Grande  Bebidas Energeticas                 Burn
## 3622         Extra Grande  Bebidas Energeticas              Glacéau
## 3623         Extra Grande          Colas Light       Coca-Cola Life
## 3624         Extra Grande          Colas Light       Coca-Cola Life
## 3625         Extra Grande          Colas Light      Coca-Cola Light
## 3626         Extra Grande          Colas Light      Coca-Cola Light
## 3627         Extra Grande          Colas Light      Coca-Cola Light
## 3628         Extra Grande          Colas Light      Coca-Cola Light
## 3629         Extra Grande          Colas Light      Coca-Cola Light
## 3630         Extra Grande          Colas Light       Coca-Cola Zero
## 3631         Extra Grande          Colas Light       Coca-Cola Zero
## 3632         Extra Grande          Colas Light       Coca-Cola Zero
## 3633         Extra Grande        Colas Regular            Coca-Cola
## 3634         Extra Grande        Colas Regular            Coca-Cola
## 3635         Extra Grande        Colas Regular            Coca-Cola
## 3636         Extra Grande        Colas Regular            Coca-Cola
## 3637         Extra Grande        Colas Regular            Coca-Cola
## 3638         Extra Grande        Colas Regular            Coca-Cola
## 3639         Extra Grande        Colas Regular            Coca-Cola
## 3640         Extra Grande        Colas Regular            Coca-Cola
## 3641         Extra Grande        Colas Regular            Coca-Cola
## 3642         Extra Grande        Colas Regular            Coca-Cola
## 3643         Extra Grande        Colas Regular            Coca-Cola
## 3644         Extra Grande        Colas Regular            Coca-Cola
## 3645         Extra Grande        Colas Regular            Coca-Cola
## 3646         Extra Grande        Colas Regular            Coca-Cola
## 3647         Extra Grande        Colas Regular            Coca-Cola
## 3648         Extra Grande        Colas Regular            Coca-Cola
## 3649         Extra Grande     Isotónicos Light        Powerade Zero
## 3650         Extra Grande   Isotónicos Regular             Powerade
## 3651         Extra Grande   Isotónicos Regular             Powerade
## 3652         Extra Grande   Isotónicos Regular             Powerade
## 3653         Extra Grande     Jugos y Néctares            Del Valle
## 3654         Extra Grande     Jugos y Néctares            Del Valle
## 3655         Extra Grande     Jugos y Néctares            Del Valle
## 3656         Extra Grande     Jugos y Néctares            Del Valle
## 3657         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3658         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3659         Extra Grande        Sabores Light          Sprite Zero
## 3660         Extra Grande      Sabores Regular     Del Valle y Nada
## 3661         Extra Grande      Sabores Regular     Del Valle y Nada
## 3662         Extra Grande      Sabores Regular                Fanta
## 3663         Extra Grande      Sabores Regular                Fanta
## 3664         Extra Grande      Sabores Regular                Fanta
## 3665         Extra Grande      Sabores Regular                Fanta
## 3666         Extra Grande      Sabores Regular                Fanta
## 3667         Extra Grande      Sabores Regular                Fanta
## 3668         Extra Grande      Sabores Regular                Fanta
## 3669         Extra Grande      Sabores Regular               Fresca
## 3670         Extra Grande      Sabores Regular               Fresca
## 3671         Extra Grande      Sabores Regular               Fresca
## 3672         Extra Grande      Sabores Regular               Fresca
## 3673         Extra Grande      Sabores Regular               Fresca
## 3674         Extra Grande      Sabores Regular               Fresca
## 3675         Extra Grande      Sabores Regular               Fresca
## 3676         Extra Grande      Sabores Regular         Manzana Lift
## 3677         Extra Grande      Sabores Regular         Manzana Lift
## 3678         Extra Grande      Sabores Regular         Manzana Lift
## 3679         Extra Grande      Sabores Regular         Manzana Lift
## 3680         Extra Grande      Sabores Regular         Manzana Lift
## 3681         Extra Grande      Sabores Regular               Senzao
## 3682         Extra Grande      Sabores Regular        Sidral Mundet
## 3683         Extra Grande      Sabores Regular        Sidral Mundet
## 3684         Extra Grande      Sabores Regular        Sidral Mundet
## 3685         Extra Grande      Sabores Regular        Sidral Mundet
## 3686         Extra Grande      Sabores Regular        Sidral Mundet
## 3687         Extra Grande      Sabores Regular               Sprite
## 3688         Extra Grande      Sabores Regular               Sprite
## 3689         Extra Grande      Sabores Regular               Sprite
## 3690         Extra Grande      Sabores Regular               Sprite
## 3691         Extra Grande      Sabores Regular               Sprite
## 3692         Extra Grande      Sabores Regular               Sprite
## 3693         Extra Grande      Sabores Regular               Sprite
## 3694         Extra Grande           Té Regular             Fuze Tea
## 3695         Extra Grande           Té Regular             Fuze Tea
## 3696         Extra Grande           Té Regular             Fuze Tea
## 3697         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3698         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3699         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3700         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3701         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3702         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3703         Extra Grande      Agua Saborizada          Ciel Exprim
## 3704         Extra Grande      Agua Saborizada            Ciel Mini
## 3705         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3706         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3707         Extra Grande     Bebidas de Fruta               Frutsi
## 3708         Extra Grande     Bebidas de Fruta                Pulpy
## 3709         Extra Grande     Bebidas de Fruta           Valle Frut
## 3710         Extra Grande     Bebidas de Fruta           Valle Frut
## 3711         Extra Grande     Bebidas de Fruta           Valle Frut
## 3712         Extra Grande     Bebidas de Fruta           Valle Frut
## 3713         Extra Grande     Bebidas de Fruta           Valle Frut
## 3714         Extra Grande  Bebidas Energeticas                 Burn
## 3715         Extra Grande  Bebidas Energeticas                 Burn
## 3716         Extra Grande  Bebidas Energeticas              Glacéau
## 3717         Extra Grande          Colas Light       Coca-Cola Life
## 3718         Extra Grande          Colas Light       Coca-Cola Life
## 3719         Extra Grande          Colas Light       Coca-Cola Life
## 3720         Extra Grande          Colas Light      Coca-Cola Light
## 3721         Extra Grande          Colas Light      Coca-Cola Light
## 3722         Extra Grande          Colas Light      Coca-Cola Light
## 3723         Extra Grande          Colas Light      Coca-Cola Light
## 3724         Extra Grande          Colas Light       Coca-Cola Zero
## 3725         Extra Grande          Colas Light       Coca-Cola Zero
## 3726         Extra Grande        Colas Regular            Coca-Cola
## 3727         Extra Grande        Colas Regular            Coca-Cola
## 3728         Extra Grande        Colas Regular            Coca-Cola
## 3729         Extra Grande        Colas Regular            Coca-Cola
## 3730         Extra Grande        Colas Regular            Coca-Cola
## 3731         Extra Grande        Colas Regular            Coca-Cola
## 3732         Extra Grande        Colas Regular            Coca-Cola
## 3733         Extra Grande        Colas Regular            Coca-Cola
## 3734         Extra Grande        Colas Regular            Coca-Cola
## 3735         Extra Grande        Colas Regular            Coca-Cola
## 3736         Extra Grande        Colas Regular            Coca-Cola
## 3737         Extra Grande        Colas Regular            Coca-Cola
## 3738         Extra Grande        Colas Regular            Coca-Cola
## 3739         Extra Grande        Colas Regular            Coca-Cola
## 3740         Extra Grande        Colas Regular            Coca-Cola
## 3741         Extra Grande        Colas Regular            Coca-Cola
## 3742         Extra Grande   Isotónicos Regular             Powerade
## 3743         Extra Grande   Isotónicos Regular             Powerade
## 3744         Extra Grande     Jugos y Néctares            Del Valle
## 3745         Extra Grande     Jugos y Néctares            Del Valle
## 3746         Extra Grande     Jugos y Néctares            Del Valle
## 3747         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3748         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3749         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3750         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3751         Extra Grande        Sabores Light  Sidral Mundet Light
## 3752         Extra Grande      Sabores Regular     Del Valle y Nada
## 3753         Extra Grande      Sabores Regular                Fanta
## 3754         Extra Grande      Sabores Regular                Fanta
## 3755         Extra Grande      Sabores Regular                Fanta
## 3756         Extra Grande      Sabores Regular                Fanta
## 3757         Extra Grande      Sabores Regular                Fanta
## 3758         Extra Grande      Sabores Regular                Fanta
## 3759         Extra Grande      Sabores Regular                Fanta
## 3760         Extra Grande      Sabores Regular                Fanta
## 3761         Extra Grande      Sabores Regular               Fresca
## 3762         Extra Grande      Sabores Regular               Fresca
## 3763         Extra Grande      Sabores Regular               Fresca
## 3764         Extra Grande      Sabores Regular               Fresca
## 3765         Extra Grande      Sabores Regular               Fresca
## 3766         Extra Grande      Sabores Regular               Fresca
## 3767         Extra Grande      Sabores Regular               Fresca
## 3768         Extra Grande      Sabores Regular               Fresca
## 3769         Extra Grande      Sabores Regular         Manzana Lift
## 3770         Extra Grande      Sabores Regular         Manzana Lift
## 3771         Extra Grande      Sabores Regular         Manzana Lift
## 3772         Extra Grande      Sabores Regular         Manzana Lift
## 3773         Extra Grande      Sabores Regular         Manzana Lift
## 3774         Extra Grande      Sabores Regular         Manzana Lift
## 3775         Extra Grande      Sabores Regular        Sidral Mundet
## 3776         Extra Grande      Sabores Regular        Sidral Mundet
## 3777         Extra Grande      Sabores Regular        Sidral Mundet
## 3778         Extra Grande      Sabores Regular        Sidral Mundet
## 3779         Extra Grande      Sabores Regular        Sidral Mundet
## 3780         Extra Grande      Sabores Regular        Sidral Mundet
## 3781         Extra Grande      Sabores Regular               Sprite
## 3782         Extra Grande      Sabores Regular               Sprite
## 3783         Extra Grande      Sabores Regular               Sprite
## 3784         Extra Grande      Sabores Regular               Sprite
## 3785         Extra Grande      Sabores Regular               Sprite
## 3786         Extra Grande      Sabores Regular               Sprite
## 3787         Extra Grande      Sabores Regular               Sprite
## 3788         Extra Grande      Sabores Regular               Sprite
## 3789         Extra Grande           Té Regular             Fuze Tea
## 3790         Extra Grande           Té Regular             Fuze Tea
## 3791         Extra Grande           Té Regular             Fuze Tea
## 3792         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3793         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3794         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3795         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3796         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3797         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3798         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3799         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3800         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3801         Extra Grande      Agua Saborizada          Ciel Exprim
## 3802         Extra Grande      Agua Saborizada            Ciel Mini
## 3803         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3804         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3805         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3806         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3807         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3808         Extra Grande     Bebidas de Fruta               Frutsi
## 3809         Extra Grande     Bebidas de Fruta                Pulpy
## 3810         Extra Grande     Bebidas de Fruta           Valle Frut
## 3811         Extra Grande     Bebidas de Fruta           Valle Frut
## 3812         Extra Grande     Bebidas de Fruta           Valle Frut
## 3813         Extra Grande     Bebidas de Fruta           Valle Frut
## 3814         Extra Grande     Bebidas de Fruta           Valle Frut
## 3815         Extra Grande  Bebidas Energeticas                 Burn
## 3816         Extra Grande  Bebidas Energeticas                 Burn
## 3817         Extra Grande  Bebidas Energeticas              Glacéau
## 3818         Extra Grande          Colas Light       Coca-Cola Life
## 3819         Extra Grande          Colas Light      Coca-Cola Light
## 3820         Extra Grande          Colas Light      Coca-Cola Light
## 3821         Extra Grande          Colas Light      Coca-Cola Light
## 3822         Extra Grande        Colas Regular            Coca-Cola
## 3823         Extra Grande        Colas Regular            Coca-Cola
## 3824         Extra Grande        Colas Regular            Coca-Cola
## 3825         Extra Grande        Colas Regular            Coca-Cola
## 3826         Extra Grande        Colas Regular            Coca-Cola
## 3827         Extra Grande        Colas Regular            Coca-Cola
## 3828         Extra Grande        Colas Regular            Coca-Cola
## 3829         Extra Grande        Colas Regular            Coca-Cola
## 3830         Extra Grande        Colas Regular            Coca-Cola
## 3831         Extra Grande        Colas Regular            Coca-Cola
## 3832         Extra Grande        Colas Regular            Coca-Cola
## 3833         Extra Grande        Colas Regular            Coca-Cola
## 3834         Extra Grande        Colas Regular            Coca-Cola
## 3835         Extra Grande        Colas Regular            Coca-Cola
## 3836         Extra Grande     Isotónicos Light        Powerade Zero
## 3837         Extra Grande   Isotónicos Regular             Powerade
## 3838         Extra Grande   Isotónicos Regular             Powerade
## 3839         Extra Grande   Isotónicos Regular             Powerade
## 3840         Extra Grande     Jugos y Néctares            Del Valle
## 3841         Extra Grande     Jugos y Néctares            Del Valle
## 3842         Extra Grande     Jugos y Néctares            Del Valle
## 3843         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3844         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3845         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3846         Extra Grande    Leche UHT Regular    Santa Clara Light
## 3847         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3848         Extra Grande        Sabores Light  Sidral Mundet Light
## 3849         Extra Grande      Sabores Regular     Del Valle y Nada
## 3850         Extra Grande      Sabores Regular                Fanta
## 3851         Extra Grande      Sabores Regular                Fanta
## 3852         Extra Grande      Sabores Regular                Fanta
## 3853         Extra Grande      Sabores Regular                Fanta
## 3854         Extra Grande      Sabores Regular                Fanta
## 3855         Extra Grande      Sabores Regular                Fanta
## 3856         Extra Grande      Sabores Regular                Fanta
## 3857         Extra Grande      Sabores Regular                Fanta
## 3858         Extra Grande      Sabores Regular                Fanta
## 3859         Extra Grande      Sabores Regular                Fanta
## 3860         Extra Grande      Sabores Regular               Fresca
## 3861         Extra Grande      Sabores Regular               Fresca
## 3862         Extra Grande      Sabores Regular               Fresca
## 3863         Extra Grande      Sabores Regular               Fresca
## 3864         Extra Grande      Sabores Regular               Fresca
## 3865         Extra Grande      Sabores Regular               Fresca
## 3866         Extra Grande      Sabores Regular               Fresca
## 3867         Extra Grande      Sabores Regular               Fresca
## 3868         Extra Grande      Sabores Regular               Fresca
## 3869         Extra Grande      Sabores Regular               Fresca
## 3870         Extra Grande      Sabores Regular         Manzana Lift
## 3871         Extra Grande      Sabores Regular         Manzana Lift
## 3872         Extra Grande      Sabores Regular         Manzana Lift
## 3873         Extra Grande      Sabores Regular         Manzana Lift
## 3874         Extra Grande      Sabores Regular         Manzana Lift
## 3875         Extra Grande      Sabores Regular         Manzana Lift
## 3876         Extra Grande      Sabores Regular         Manzana Lift
## 3877         Extra Grande      Sabores Regular        Sidral Mundet
## 3878         Extra Grande      Sabores Regular        Sidral Mundet
## 3879         Extra Grande      Sabores Regular        Sidral Mundet
## 3880         Extra Grande      Sabores Regular        Sidral Mundet
## 3881         Extra Grande      Sabores Regular        Sidral Mundet
## 3882         Extra Grande      Sabores Regular        Sidral Mundet
## 3883         Extra Grande      Sabores Regular               Sprite
## 3884         Extra Grande      Sabores Regular               Sprite
## 3885         Extra Grande      Sabores Regular               Sprite
## 3886         Extra Grande      Sabores Regular               Sprite
## 3887         Extra Grande      Sabores Regular               Sprite
## 3888         Extra Grande      Sabores Regular               Sprite
## 3889         Extra Grande      Sabores Regular               Sprite
## 3890         Extra Grande      Sabores Regular               Sprite
## 3891         Extra Grande      Sabores Regular               Sprite
## 3892         Extra Grande      Sabores Regular               Sprite
## 3893         Extra Grande           Té Regular             Fuze Tea
## 3894         Extra Grande           Té Regular             Fuze Tea
## 3895         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3896         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3897         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3898         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3899         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3900         Extra Grande      Agua Saborizada            Ciel Mini
## 3901         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3902         Extra Grande     Bebidas de Fruta               Bebere
## 3903         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3904         Extra Grande     Bebidas de Fruta               Frutsi
## 3905         Extra Grande     Bebidas de Fruta                Pulpy
## 3906         Extra Grande     Bebidas de Fruta           Valle Frut
## 3907         Extra Grande     Bebidas de Fruta           Valle Frut
## 3908         Extra Grande     Bebidas de Fruta           Valle Frut
## 3909         Extra Grande     Bebidas de Fruta           Valle Frut
## 3910         Extra Grande     Bebidas de Fruta           Valle Frut
## 3911         Extra Grande     Bebidas de Fruta           Valle Frut
## 3912         Extra Grande  Bebidas Energeticas                 Burn
## 3913         Extra Grande  Bebidas Energeticas                 Burn
## 3914         Extra Grande  Bebidas Energeticas              Glacéau
## 3915         Extra Grande          Colas Light       Coca-Cola Life
## 3916         Extra Grande          Colas Light       Coca-Cola Life
## 3917         Extra Grande          Colas Light      Coca-Cola Light
## 3918         Extra Grande          Colas Light      Coca-Cola Light
## 3919         Extra Grande          Colas Light      Coca-Cola Light
## 3920         Extra Grande          Colas Light      Coca-Cola Light
## 3921         Extra Grande          Colas Light      Coca-Cola Light
## 3922         Extra Grande          Colas Light       Coca-Cola Zero
## 3923         Extra Grande        Colas Regular            Coca-Cola
## 3924         Extra Grande        Colas Regular            Coca-Cola
## 3925         Extra Grande        Colas Regular            Coca-Cola
## 3926         Extra Grande        Colas Regular            Coca-Cola
## 3927         Extra Grande        Colas Regular            Coca-Cola
## 3928         Extra Grande        Colas Regular            Coca-Cola
## 3929         Extra Grande        Colas Regular            Coca-Cola
## 3930         Extra Grande        Colas Regular            Coca-Cola
## 3931         Extra Grande        Colas Regular            Coca-Cola
## 3932         Extra Grande        Colas Regular            Coca-Cola
## 3933         Extra Grande        Colas Regular            Coca-Cola
## 3934         Extra Grande        Colas Regular            Coca-Cola
## 3935         Extra Grande        Colas Regular            Coca-Cola
## 3936         Extra Grande        Colas Regular            Coca-Cola
## 3937         Extra Grande   Isotónicos Regular             Powerade
## 3938         Extra Grande   Isotónicos Regular             Powerade
## 3939         Extra Grande   Isotónicos Regular             Powerade
## 3940         Extra Grande     Jugos y Néctares            Del Valle
## 3941         Extra Grande     Jugos y Néctares            Del Valle
## 3942         Extra Grande     Jugos y Néctares            Del Valle
## 3943         Extra Grande     Jugos y Néctares            Del Valle
## 3944         Extra Grande     Jugos y Néctares            Del Valle
## 3945         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3946         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3947         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3948         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3949         Extra Grande      Sabores Regular     Del Valle y Nada
## 3950         Extra Grande      Sabores Regular                Fanta
## 3951         Extra Grande      Sabores Regular                Fanta
## 3952         Extra Grande      Sabores Regular                Fanta
## 3953         Extra Grande      Sabores Regular                Fanta
## 3954         Extra Grande      Sabores Regular                Fanta
## 3955         Extra Grande      Sabores Regular                Fanta
## 3956         Extra Grande      Sabores Regular                Fanta
## 3957         Extra Grande      Sabores Regular                Fanta
## 3958         Extra Grande      Sabores Regular               Fresca
## 3959         Extra Grande      Sabores Regular               Fresca
## 3960         Extra Grande      Sabores Regular               Fresca
## 3961         Extra Grande      Sabores Regular               Fresca
## 3962         Extra Grande      Sabores Regular               Fresca
## 3963         Extra Grande      Sabores Regular               Fresca
## 3964         Extra Grande      Sabores Regular               Fresca
## 3965         Extra Grande      Sabores Regular               Fresca
## 3966         Extra Grande      Sabores Regular         Manzana Lift
## 3967         Extra Grande      Sabores Regular         Manzana Lift
## 3968         Extra Grande      Sabores Regular         Manzana Lift
## 3969         Extra Grande      Sabores Regular         Manzana Lift
## 3970         Extra Grande      Sabores Regular         Manzana Lift
## 3971         Extra Grande      Sabores Regular         Manzana Lift
## 3972         Extra Grande      Sabores Regular        Sidral Mundet
## 3973         Extra Grande      Sabores Regular        Sidral Mundet
## 3974         Extra Grande      Sabores Regular        Sidral Mundet
## 3975         Extra Grande      Sabores Regular        Sidral Mundet
## 3976         Extra Grande      Sabores Regular        Sidral Mundet
## 3977         Extra Grande      Sabores Regular        Sidral Mundet
## 3978         Extra Grande      Sabores Regular               Sprite
## 3979         Extra Grande      Sabores Regular               Sprite
## 3980         Extra Grande      Sabores Regular               Sprite
## 3981         Extra Grande      Sabores Regular               Sprite
## 3982         Extra Grande      Sabores Regular               Sprite
## 3983         Extra Grande      Sabores Regular               Sprite
## 3984         Extra Grande      Sabores Regular               Sprite
## 3985         Extra Grande      Sabores Regular               Sprite
## 3986         Extra Grande           Té Regular             Fuze Tea
## 3987         Extra Grande           Té Regular             Fuze Tea
## 3988         Extra Grande           Té Regular             Fuze Tea
## 3989         Extra Grande           Té Regular             Fuze Tea
## 3990         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3991         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3992         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3993         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3994         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3995         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3996         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3997         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3998         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3999         Extra Grande      Agua Purificada Ciel Agua Purificada
##          Presentacion     Tamaño Retornable_NR Enero Febrero Marzo Abril Mayo
## 1           600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2        1 Ltro. N.R. Individual No Retornable    NA       2     8     4    4
## 3         1.5 Lts. NR Individual No Retornable    NA      NA     3     6    3
## 4           600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 5      300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 6        1 Ltro. N.R. Individual No Retornable    NA      NA     1    NA   NA
## 7      250 ml. NR PET Individual No Retornable     1      NA    NA    NA    0
## 8           600 ml NR Individual No Retornable    NA       1    NA     1   NA
## 9      250 ml. NR PET Individual No Retornable     3       3     4     4    4
## 10          400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 11       1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 12    100 ml NR Tetra Individual No Retornable     0      NA    NA    NA   NA
## 13      12 Oz. NR Pet Individual No Retornable    NA       2     1     2    1
## 14          2 Lts. NR   Familiar No Retornable     3       3     3     3    3
## 15        Lata 450 ml Individual No Retornable    NA      NA    NA    NA   NA
## 16       1 Ltro. N.R.   Familiar No Retornable     4      NA    NA     2   NA
## 17         2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 18   500 ml NR Vidrio Individual No Retornable     6      NA    NA     4   NA
## 19       1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 20       1.250 Lts NR   Familiar No Retornable    13      13     8    21   29
## 21        1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 22       1.5 Lts. Ret   Familiar    Retornable    41      38    44    76   57
## 23      12 Oz. NR Pet Individual No Retornable    15      11     9    18   17
## 24         12 Oz. Ret Individual    Retornable     5       2     2     3    3
## 25          2 Lts. NR   Familiar No Retornable    NA      NA    NA     6   NA
## 26         2 Lts. Ret   Familiar    Retornable    14       6     8    14    3
## 27        2.5 Lts. NR   Familiar No Retornable    14      21    28    32   14
## 28   2.5 Lts. Ret Pet   Familiar    Retornable    99      81    81   109   81
## 29   500 ml NR Vidrio Individual No Retornable    25       6    11    27   27
## 30         500 ml Ret Individual    Retornable    95      74    80   129  106
## 31           8 Oz. NR Individual No Retornable     3       2     1     3    4
## 32               Lata Individual No Retornable     2       3     2     3    5
## 33        Lata 16 Oz. Individual No Retornable     6      NA     4     2    4
## 34        Lata 235 ml Individual No Retornable     3       1    NA     1    1
## 35          600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 36       1 Ltro. N.R. Individual No Retornable    NA      NA     1     1    1
## 37      500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 38          600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 39       250 ml Tetra Individual No Retornable     2       0     0     0    0
## 40      413 ml NR VId Individual No Retornable     1       1     1     0    1
## 41     250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 42     300 ML. NR PET Individual No Retornable     0      NA    NA     0   NA
## 43      1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 44       200 ml Tetra Individual No Retornable    NA      NA     0     0    0
## 45          600 ml NR Individual No Retornable     1       1    NA     1    1
## 46        Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 47       1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 48          2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 49     250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 50          400 ml NR Individual No Retornable    NA      NA     0    NA    1
## 51         500 ml Ret Individual    Retornable     1      NA     1     2    2
## 52          600 ml NR Individual No Retornable     2      NA     1     2    1
## 53               Lata Individual No Retornable     0      NA    NA     0   NA
## 54        Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 55       1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 56     250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 57          400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 58         500 ml Ret Individual    Retornable     1      NA     1     2    2
## 59          600 ml NR Individual No Retornable    NA       1    NA    NA    2
## 60               Lata Individual No Retornable     0      NA    NA     0   NA
## 61        Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 62     250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 63          400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 64         500 ml Ret Individual    Retornable     1      NA     1     2    2
## 65          600 ml NR Individual No Retornable    NA       1    NA     1    1
## 66               Lata Individual No Retornable     0      NA    NA     0   NA
## 67       1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 68          2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 69         500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 70          600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 71        Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 72       1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 73          2 Lts. NR   Familiar No Retornable    NA      NA     3    NA    3
## 74     250 ml. NR PET Individual No Retornable     0      NA    NA     1    0
## 75          400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 76         500 ml Ret Individual    Retornable     1      NA     1     2    4
## 77          600 ml NR Individual No Retornable     1       2     3     2    4
## 78               Lata Individual No Retornable     0      NA    NA     0   NA
## 79        Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 80      500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 81          600 ml NR Individual No Retornable     1       1     1     1    1
## 82          600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 83        1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 84          600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 85       1 Ltro. N.R. Individual No Retornable     2       8     4     8    4
## 86        1.5 Lts. NR Individual No Retornable     3      NA     3     6    6
## 87          5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 88          600 ml NR Individual No Retornable     5       3     3    NA    3
## 89          600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 90     300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 91      500 ml NR PET Individual No Retornable    NA      NA     1    NA   NA
## 92     250 ml. NR PET Individual No Retornable     2       3     3     3    4
## 93          400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 94       1 Ltro. N.R.   Familiar No Retornable     1      NA    NA     1    1
## 95      12 Oz. NR Pet Individual No Retornable     2      NA    NA     1    2
## 96          2 Lts. NR   Familiar No Retornable     3       3     6     3    3
## 97        Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 98        Lata 450 ml Individual No Retornable    NA      NA    NA    NA   NA
## 99      500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 100  500 ml NR Vidrio Individual No Retornable     2       4    NA     2    2
## 101       Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 102      1 Ltro. N.R.   Familiar No Retornable     2       2     2     2   NA
## 103         2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 104        2 Lts. Ret   Familiar    Retornable    NA      NA     3    NA   NA
## 105         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 106  500 ml NR Vidrio Individual No Retornable     2       2     2     2    4
## 107          8 Oz. NR Individual No Retornable     1      NA    NA    NA   NA
## 108       Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 109  500 ml NR Vidrio Individual No Retornable    NA      NA    NA     2   NA
## 110       Lata 235 ml Individual No Retornable     1      NA    NA    NA   NA
## 111      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 112      1.250 Lts NR   Familiar No Retornable     3      NA     3     8   NA
## 113       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 114      1.5 Lts. Ret   Familiar    Retornable     6       3     6     6    3
## 115     12 Oz. NR Pet Individual No Retornable     3       3     5     3    8
## 116         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 117        2 Lts. Ret   Familiar    Retornable     3       3     3     6    3
## 118       2.5 Lts. NR   Familiar No Retornable     7      NA     4    NA   NA
## 119  2.5 Lts. Ret Pet   Familiar    Retornable    46      39    35    32   53
## 120     500 ml NR PET Individual No Retornable     2       4     4     6    4
## 121  500 ml NR Vidrio Individual No Retornable     8      13    11     6   13
## 122        500 ml Ret Individual    Retornable    49      46    46    38   46
## 123          8 Oz. NR Individual No Retornable     5       3     3     5    3
## 124              Lata Individual No Retornable     2       2     2     2    2
## 125       Lata 235 ml Individual No Retornable     3       3     4     2    2
## 126      1 Ltro. N.R. Individual No Retornable     1       1    NA     1    3
## 127     500 ml NR PET Individual No Retornable    NA       1    NA     1   NA
## 128         600 ml NR Individual No Retornable     1       1    NA     2    4
## 129      250 ml Tetra Individual No Retornable     0       0     1     0    0
## 130     413 ml NR VId Individual No Retornable     3      NA     1     1    1
## 131     500 ml NR PET Individual No Retornable    NA       2    NA    NA   NA
## 132    250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 133      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 134    300 ML. NR PET Individual No Retornable     1       0    NA     0   NA
## 135     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 136      200 ml Tetra Individual No Retornable    NA       1    NA     0    0
## 137         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 138         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 139       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 140      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 141         2 Lts. NR   Familiar No Retornable     1      NA     1     1   NA
## 142         400 ml NR Individual No Retornable     0      NA    NA    NA    1
## 143        500 ml Ret Individual    Retornable     1      NA    NA     1    1
## 144         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 145       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 146      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 147         2 Lts. NR   Familiar No Retornable     1      NA     1     1   NA
## 148         400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 149        500 ml Ret Individual    Retornable     1      NA    NA     1    1
## 150         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 151       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 152       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 153         2 Lts. NR   Familiar No Retornable     1      NA     1     1   NA
## 154         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 155        500 ml Ret Individual    Retornable     1      NA    NA     1    1
## 156         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 157         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 158      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 159         2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 160         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 161        500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 162         600 ml NR Individual No Retornable    NA      NA     3    NA   NA
## 163       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 164       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 165      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 166         2 Lts. NR   Familiar No Retornable     1      NA     1     1    3
## 167         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 168        500 ml Ret Individual    Retornable     1      NA    NA     1    1
## 169         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 170       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 171     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 172         600 ml NR Individual No Retornable     1      NA     1    NA    3
## 173         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 174         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 175      1 Ltro. N.R. Individual No Retornable     2      27     6    15   17
## 176       1.5 Lts. NR Individual No Retornable     6      41    10    16   38
## 177    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 178     350 ML NR PET Individual No Retornable    NA      NA    NA    NA    1
## 179         600 ml NR Individual No Retornable    NA       5     8     5   15
## 180       1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 181    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 182       1.5 Lts. NR Individual No Retornable    NA      NA    NA     6   NA
## 183         600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 184         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 185    250 ml. NR PET Individual No Retornable     4       1     1     3    5
## 186         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 187      1 Ltro. N.R.   Familiar No Retornable     1       1    NA     3    4
## 188     12 Oz. NR Pet Individual No Retornable     2       2    NA     1    2
## 189         2 Lts. NR   Familiar No Retornable     6       6     6    17    6
## 190       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 191       Lata 450 ml Individual No Retornable    NA      NA    NA     1   NA
## 192     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 193      1 Ltro. N.R.   Familiar No Retornable    NA       6    NA    NA   NA
## 194        12 Oz. Ret Individual    Retornable    NA       2    NA    NA   NA
## 195  500 ml NR Vidrio Individual No Retornable     2       2    NA    NA   NA
## 196       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 197      1 Ltro. N.R.   Familiar No Retornable     6       6     8    11    8
## 198        12 Oz. Ret Individual    Retornable     2       3    NA    NA   NA
## 199         2 Lts. NR   Familiar No Retornable     3      11     3     6    6
## 200        2 Lts. Ret   Familiar    Retornable     8       8     6    11   11
## 201       2.5 Lts. NR   Familiar No Retornable     4       7     7     7   11
## 202         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 203  500 ml NR Vidrio Individual No Retornable    11      11    11    13   11
## 204          8 Oz. NR Individual No Retornable     2       3    NA     1    1
## 205              Lata Individual No Retornable    NA      NA    NA     2    3
## 206       Lata 235 ml Individual No Retornable    NA       1    NA     1   NA
## 207      1 Ltro. N.R.   Familiar No Retornable    NA       2     2    NA    2
## 208     12 Oz. NR Pet Individual No Retornable    NA      NA     0    NA   NA
## 209         2 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 210  500 ml NR Vidrio Individual No Retornable    NA       4     2     2    2
## 211      1 Ltro. N.R.   Familiar No Retornable    17      11    15    11   13
## 212      1.250 Lts NR   Familiar No Retornable     8      11    29     8   13
## 213       1.5 Lts. NR   Familiar No Retornable    NA       3     3    13    6
## 214      1.5 Lts. Ret   Familiar    Retornable    16      16    19    10   22
## 215     12 Oz. NR Pet Individual No Retornable     9       8     8     6    9
## 216        12 Oz. Ret Individual    Retornable     2       3     3     3    3
## 217         2 Lts. NR   Familiar No Retornable     6       6     6    14   17
## 218        2 Lts. Ret   Familiar    Retornable     6       8     6     8    8
## 219       2.5 Lts. NR   Familiar No Retornable    18      28    25    39   28
## 220  2.5 Lts. Ret Pet   Familiar    Retornable    56      53    32    56   56
## 221         400 ml NR Individual No Retornable    NA      NA    NA     5    2
## 222     500 ml NR PET Individual No Retornable     4       2     4     6    4
## 223  500 ml NR Vidrio Individual No Retornable    21      21    15    27   25
## 224        500 ml Ret Individual    Retornable    57      53    49    87   57
## 225          8 Oz. NR Individual No Retornable     3       7     6     9    8
## 226              Lata Individual No Retornable     5      11    NA     3    6
## 227       Lata 16 Oz. Individual No Retornable     2      10    NA    NA   NA
## 228       Lata 235 ml Individual No Retornable     1       5     4     4    3
## 229      1 Ltro. N.R. Individual No Retornable     1       1     2     2    2
## 230     500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 231         600 ml NR Individual No Retornable     3      NA     2     4    4
## 232     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 233   125 ml NR Tetra Individual No Retornable    NA       1    NA    NA   NA
## 234      250 ml Tetra Individual No Retornable     2       0    NA     0    0
## 235    250 ML. NR VID Individual No Retornable     1      NA    NA    NA    0
## 236     413 ml NR VId Individual No Retornable     6       5     3     3    4
## 237    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 238      1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 239     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 240     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 241      200 ml Tetra Individual No Retornable     0       0    NA     0    0
## 242         600 ml NR Individual No Retornable     1      NA    NA     1    1
## 243       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 244         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 245      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    2
## 246         2 Lts. NR   Familiar No Retornable     3       4     3     3    6
## 247       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2    4
## 248         400 ml NR Individual No Retornable    NA       1     1    NA    2
## 249        500 ml Ret Individual    Retornable     2       1     2     2    1
## 250         600 ml NR Individual No Retornable    NA       1     3     1    2
## 251       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 252         2 Lts. NR   Familiar No Retornable    NA       1    NA     6    3
## 253       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2    4
## 254         400 ml NR Individual No Retornable    NA       1    NA     1    1
## 255        500 ml Ret Individual    Retornable    NA       1    NA    NA    1
## 256         600 ml NR Individual No Retornable    NA       1     1     3    1
## 257       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 258         2 Lts. NR   Familiar No Retornable    NA       1    NA     3    3
## 259       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2    4
## 260         400 ml NR Individual No Retornable    NA       1     1    NA    4
## 261        500 ml Ret Individual    Retornable    NA       1     2    NA    1
## 262         600 ml NR Individual No Retornable    NA       1     2     2    1
## 263         600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 264         2 Lts. NR   Familiar No Retornable     3      11    NA     6    3
## 265       2.5 Lts. NR   Familiar No Retornable    NA       4    NA     4   NA
## 266        500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 267         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 268       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 269      1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 270         2 Lts. NR   Familiar No Retornable     6      10     8     8   11
## 271       2.5 Lts. NR   Familiar No Retornable    NA       4    NA     2    7
## 272         400 ml NR Individual No Retornable     0       1     2     0    8
## 273        500 ml Ret Individual    Retornable     2       3    NA     2    3
## 274         600 ml NR Individual No Retornable     2       2     4     3    2
## 275       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 276     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 277         600 ml NR Individual No Retornable     4       6     1     2    4
## 278       Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 279         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 280         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 281       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 282         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 283      1 Ltro. N.R. Individual No Retornable     4      11    66     2    2
## 284       1.5 Lts. NR Individual No Retornable     6       3    67     3    3
## 285    300 ML. NR PET Individual No Retornable    NA      NA    NA     0    0
## 286         5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 287         600 ml NR Individual No Retornable    NA      NA    51    NA   NA
## 288      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 289       1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 290         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 291    300 ML. NR PET Individual No Retornable    NA       0     2    NA    3
## 292      1 Ltro. N.R. Individual No Retornable    NA      NA     2     2    3
## 293       1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 294         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 295    250 ml. NR PET Individual No Retornable     1      NA    NA     1   NA
## 296         600 ml NR Individual No Retornable     3      NA     1     1   NA
## 297    250 ml. NR PET Individual No Retornable     4       1     6     5    5
## 298         400 ml NR Individual No Retornable     0      NA     1    NA   NA
## 299      1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 300      1 Ltro. N.R. Individual No Retornable    NA      NA     2    NA   NA
## 301     12 Oz. NR Pet Individual No Retornable    NA       2     4     1    1
## 302         2 Lts. NR   Familiar No Retornable    NA       6     8     6   NA
## 303         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 304       Lata 235 ml Individual No Retornable    NA      NA    NA     0    0
## 305       Lata 450 ml Individual No Retornable    NA      NA    NA     1    1
## 306     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 307      1 Ltro. N.R.   Familiar No Retornable     2       6    NA    NA   NA
## 308     237 ml NR Vid Individual No Retornable    NA      NA    NA    NA   NA
## 309  500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 310      1 Ltro. N.R.   Familiar No Retornable    NA      27    NA    27   NA
## 311         2 Lts. NR   Familiar No Retornable    48      NA    NA    70   NA
## 312       2.5 Lts. NR   Familiar No Retornable    14      18     4    56   NA
## 313  500 ml NR Vidrio Individual No Retornable    13      25    32    25   NA
## 314          8 Oz. NR Individual No Retornable     2       3     2    16   NA
## 315              Lata Individual No Retornable     2      NA    NA    NA    2
## 316      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 317          8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 318      1 Ltro. N.R.   Familiar No Retornable    36      27    NA    27   NA
## 319      1.250 Lts NR   Familiar No Retornable    NA      45    NA    34   NA
## 320       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 321      1.5 Lts. Ret   Familiar    Retornable    44       3    22    98   86
## 322     12 Oz. NR Pet Individual No Retornable     3      17    12    18   21
## 323        12 Oz. Ret Individual    Retornable    23      NA    NA    NA   NA
## 324         2 Lts. NR   Familiar No Retornable     8      42    NA    42   NA
## 325        2 Lts. Ret   Familiar    Retornable    NA       6    NA     8    6
## 326       2.5 Lts. NR   Familiar No Retornable    63      46   187     4   56
## 327  2.5 Lts. Ret Pet   Familiar    Retornable   240     222   278    42   95
## 328     500 ml NR PET Individual No Retornable     6       4     4     6    6
## 329  500 ml NR Vidrio Individual No Retornable    11      85    -4    25   53
## 330        500 ml Ret Individual    Retornable   192     129   205   499   11
## 331          8 Oz. NR Individual No Retornable    13      NA    15    13   NA
## 332              Lata Individual No Retornable    NA      NA     3    NA   NA
## 333       Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA    4
## 334       Lata 235 ml Individual No Retornable     1      15    NA    NA   NA
## 335         600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 336      1 Ltro. N.R. Individual No Retornable     1       2     1     5    1
## 337     500 ml NR PET Individual No Retornable    NA      NA     1     2    1
## 338         600 ml NR Individual No Retornable     1       3     3     5    2
## 339     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 340   125 ml NR Tetra Individual No Retornable    NA       1    NA    NA   NA
## 341      250 ml Tetra Individual No Retornable     2       2     0     1    1
## 342    250 ML. NR VID Individual No Retornable    NA      NA    NA    NA    0
## 343     413 ml NR VId Individual No Retornable     3       2    12     1    4
## 344     500 ml NR PET Individual No Retornable     3       1     1     4    2
## 345    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 346      1 Ltro. N.R.   Familiar No Retornable     4      NA     2     2    2
## 347    300 ML. NR PET Individual No Retornable     1      NA     1     1    1
## 348     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 349     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 350      200 ml Tetra Individual No Retornable    NA       1     1     0    0
## 351         600 ml NR Individual No Retornable     1       1     1     2    3
## 352       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 353         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 354       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 355      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 356        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 357         2 Lts. NR   Familiar No Retornable    NA      11    31     3    8
## 358        2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA    6
## 359    250 ml. NR PET Individual No Retornable     0       3    NA    NA   NA
## 360         400 ml NR Individual No Retornable    NA       2     1     1    2
## 361        500 ml Ret Individual    Retornable     2      NA     7     2    8
## 362         600 ml NR Individual No Retornable     1       1     3     1    1
## 363       Lata 235 ml Individual No Retornable    NA       2    NA    NA   NA
## 364      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 365         2 Lts. NR   Familiar No Retornable    NA       6    NA     3    6
## 366    250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 367         400 ml NR Individual No Retornable     1       1    NA     1    2
## 368        500 ml Ret Individual    Retornable     2      NA     3    NA    6
## 369         600 ml NR Individual No Retornable     1      NA     1     1    1
## 370       Lata 235 ml Individual No Retornable    NA       2    NA    NA   NA
## 371      1 Ltro. N.R.   Familiar No Retornable     2       2    NA     2    2
## 372        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 373         2 Lts. NR   Familiar No Retornable    NA      NA    NA    11    3
## 374    250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 375         400 ml NR Individual No Retornable    NA       2    NA     1    2
## 376     500 ml NR PET Individual No Retornable    NA      NA    NA     2   NA
## 377        500 ml Ret Individual    Retornable    NA      NA     7    NA    2
## 378         600 ml NR Individual No Retornable    NA       1     1     1   NA
## 379         600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 380      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 381         2 Lts. NR   Familiar No Retornable     8      11    28    NA   NA
## 382         400 ml NR Individual No Retornable    NA       1     0    NA    2
## 383        500 ml Ret Individual    Retornable    NA      NA     2    NA    6
## 384         600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 385       Lata 235 ml Individual No Retornable    NA       2    NA    NA   NA
## 386      1 Ltro. N.R.   Familiar No Retornable     4       2     4     2    2
## 387       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 388      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 389        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 390         2 Lts. NR   Familiar No Retornable    NA      11    42    11   NA
## 391        2 Lts. Ret   Familiar    Retornable    NA      NA     6     6    6
## 392    250 ml. NR PET Individual No Retornable     0       3    NA    NA   NA
## 393         400 ml NR Individual No Retornable    NA       1     1     1    0
## 394     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 395        500 ml Ret Individual    Retornable     2       2     7    NA    6
## 396         600 ml NR Individual No Retornable     3      NA     7     6    1
## 397       Lata 235 ml Individual No Retornable    NA       2    NA    NA   NA
## 398     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 399         600 ml NR Individual No Retornable     1       6    11     5   10
## 400       Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 401       Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 402         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 403       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 404         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 405      1 Ltro. N.R. Individual No Retornable     4       2     2     4    4
## 406       1.5 Lts. NR Individual No Retornable     6       3     3    10    3
## 407         600 ml NR Individual No Retornable     3      NA    NA    NA    3
## 408      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 409    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 410      1 Ltro. N.R. Individual No Retornable    NA       2    NA    NA   NA
## 411    250 ml. NR PET Individual No Retornable     0      NA     0     1   NA
## 412     500 ml NR PET Individual No Retornable    NA      NA     2    NA   NA
## 413         600 ml NR Individual No Retornable     1       1     1    NA    1
## 414    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 415         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 416      1 Ltro. N.R.   Familiar No Retornable    NA       2    NA     2    1
## 417      1 Ltro. N.R. Individual No Retornable     2      NA     2    NA   NA
## 418     12 Oz. NR Pet Individual No Retornable     2       1     1     1    2
## 419         2 Lts. NR   Familiar No Retornable     6       6     3     6    6
## 420         600 ml NR Individual No Retornable    NA      NA     3    NA    1
## 421       Lata 235 ml Individual No Retornable    NA       0     1     1    1
## 422       Lata 237 ml Individual No Retornable     1      NA    NA    NA   NA
## 423       Lata 450 ml Individual No Retornable     1       1     1     1    1
## 424     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 425  500 ml NR Vidrio Individual No Retornable     2      NA     2     2    2
## 426      1 Ltro. N.R.   Familiar No Retornable    11      11    17    11    8
## 427         2 Lts. NR   Familiar No Retornable     3       6     8    11   11
## 428       2.5 Lts. NR   Familiar No Retornable     4      NA    NA    NA   NA
## 429         400 ml NR Individual No Retornable     2       2     3     3    3
## 430  500 ml NR Vidrio Individual No Retornable    17      13    15     8   15
## 431          8 Oz. NR Individual No Retornable     1       1     2     1    1
## 432      1 Ltro. N.R.   Familiar No Retornable     2      NA     4     2    2
## 433         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 434  500 ml NR Vidrio Individual No Retornable     2       2     4     4    2
## 435          8 Oz. NR Individual No Retornable     1       1     1    NA   NA
## 436      1 Ltro. N.R.   Familiar No Retornable    21      NA    NA    NA    2
## 437      1.250 Lts NR   Familiar No Retornable    16      34    45    45   32
## 438       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 439      1.5 Lts. Ret   Familiar    Retornable    22      13    29    44   10
## 440     12 Oz. NR Pet Individual No Retornable     9       6    15    12   14
## 441        12 Oz. Ret Individual    Retornable     8       5     5     8    5
## 442         2 Lts. NR   Familiar No Retornable     3       3     6    13    3
## 443        2 Lts. Ret   Familiar    Retornable     6       3     3     8    3
## 444       2.5 Lts. NR   Familiar No Retornable    49      60    49    63   60
## 445  2.5 Lts. Ret Pet   Familiar    Retornable   102      70   116   134  130
## 446     500 ml NR PET Individual No Retornable     4       6     4     8    6
## 447  500 ml NR Vidrio Individual No Retornable    27      23    42    40   32
## 448        500 ml Ret Individual    Retornable    72      55    70    80   91
## 449         710 ml NR Individual No Retornable    NA       3    NA    NA   NA
## 450          8 Oz. NR Individual No Retornable    21      14    15    15   16
## 451              Lata Individual No Retornable     2       3     3     2    2
## 452       Lata 235 ml Individual No Retornable     3       3     3     3    2
## 453         600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 454      1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 455     500 ml NR PET Individual No Retornable     1       1    NA     2   NA
## 456         600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 457      250 ml Tetra Individual No Retornable     1       0     0     0    0
## 458    250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 459     413 ml NR VId Individual No Retornable     2      NA     3     1    1
## 460    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 461      1 Ltro. N.R.   Familiar No Retornable     2      NA     2    NA    2
## 462    300 ML. NR PET Individual No Retornable     1      NA    NA    NA    0
## 463     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 464     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 465      200 ml Tetra Individual No Retornable     1       0     0     0    0
## 466         600 ml NR Individual No Retornable     3       1     1     2    3
## 467         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 468       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 469      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 470         2 Lts. NR   Familiar No Retornable     3      NA     1    NA   NA
## 471       2.5 Lts. NR   Familiar No Retornable    NA      NA     7     4    4
## 472    250 ml. NR PET Individual No Retornable     0      NA     0    NA   NA
## 473         400 ml NR Individual No Retornable     1      NA     0     0    1
## 474     500 ml NR PET Individual No Retornable    NA       2    NA    NA    2
## 475        500 ml Ret Individual    Retornable    NA       2    NA     3    2
## 476         600 ml NR Individual No Retornable     1       1    NA     2    1
## 477       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 478      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 479         2 Lts. NR   Familiar No Retornable    NA      NA     1    NA    3
## 480       2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA   NA
## 481    250 ml. NR PET Individual No Retornable     0      NA     0    NA   NA
## 482         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 483     500 ml NR PET Individual No Retornable     2      NA    NA    NA   NA
## 484        500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 485         600 ml NR Individual No Retornable     1      NA     1     1    1
## 486       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 487         2 Lts. NR   Familiar No Retornable    NA      NA     1     3    3
## 488       2.5 Lts. NR   Familiar No Retornable    NA       4     4     7   NA
## 489    250 ml. NR PET Individual No Retornable     0      NA     0    NA   NA
## 490         400 ml NR Individual No Retornable    NA      NA     0    NA    0
## 491     500 ml NR PET Individual No Retornable    NA       2    NA    NA    2
## 492        500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 493         600 ml NR Individual No Retornable     1       2     1     3    1
## 494     500 ml NR PET Individual No Retornable    NA       2    NA    NA   NA
## 495         600 ml NR Individual No Retornable     1      NA     2    NA   NA
## 496      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 497         2 Lts. NR   Familiar No Retornable    NA       3    NA     3   NA
## 498       2.5 Lts. NR   Familiar No Retornable    NA       4    11     7    4
## 499    250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 500         400 ml NR Individual No Retornable    NA       0    NA    NA    0
## 501         600 ml NR Individual No Retornable     1      NA     1    NA    1
## 502       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 503      1 Ltro. N.R.   Familiar No Retornable     4      NA    NA     2   NA
## 504      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 505         2 Lts. NR   Familiar No Retornable     3      NA     1    NA   NA
## 506       2.5 Lts. NR   Familiar No Retornable     4      NA    11     4    7
## 507    250 ml. NR PET Individual No Retornable     0      NA     0    NA   NA
## 508         400 ml NR Individual No Retornable    NA      NA    NA     0    1
## 509     500 ml NR PET Individual No Retornable    NA       2    NA     2   NA
## 510        500 ml Ret Individual    Retornable     2       2     2     1   NA
## 511         600 ml NR Individual No Retornable     2       2     1     3    3
## 512       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 513         600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 514         600 ml NR Individual No Retornable     3       1     6     3    1
## 515         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 516         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 517         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 518      1 Ltro. N.R. Individual No Retornable     2       8   150     2    2
## 519       1.5 Lts. NR Individual No Retornable     3       6    10     3    3
## 520    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 521         5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 522         600 ml NR Individual No Retornable    NA      NA     3    NA   NA
## 523         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 524    300 ML. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 525      1 Ltro. N.R. Individual No Retornable    NA      NA     1    NA   NA
## 526    250 ml. NR PET Individual No Retornable     1       1     1     0    0
## 527         600 ml NR Individual No Retornable     2       1     3     1    1
## 528    250 ml. NR PET Individual No Retornable    NA      NA    NA     2    2
## 529         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 530      1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 531      1 Ltro. N.R. Individual No Retornable     2       2    NA    NA   NA
## 532     12 Oz. NR Pet Individual No Retornable    NA       1     1     1    1
## 533         2 Lts. NR   Familiar No Retornable    NA       8    11     8    6
## 534         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 535       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 536       Lata 450 ml Individual No Retornable    NA       1    NA    NA   NA
## 537     500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 538      1 Ltro. N.R.   Familiar No Retornable     2       2    NA    NA   NA
## 539     237 ml NR Vid Individual No Retornable    NA       1    NA    NA   NA
## 540  500 ml NR Vidrio Individual No Retornable     2       4    NA    NA    2
## 541      1 Ltro. N.R.   Familiar No Retornable    11      13    13    13   42
## 542        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 543         2 Lts. NR   Familiar No Retornable    14      17    11    11   11
## 544        2 Lts. Ret   Familiar    Retornable     8       8    14    14    8
## 545       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 546  500 ml NR Vidrio Individual No Retornable    15      17    17    21   17
## 547          8 Oz. NR Individual No Retornable     2       1     3     2    3
## 548              Lata Individual No Retornable     2       2     2    NA   NA
## 549      1 Ltro. N.R.   Familiar No Retornable     2       4     4     4    2
## 550         2 Lts. NR   Familiar No Retornable    11      14    14    17   14
## 551  500 ml NR Vidrio Individual No Retornable     2       4     6     4    4
## 552       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 553      1 Ltro. N.R.   Familiar No Retornable    13      17    17    19   51
## 554      1.250 Lts NR   Familiar No Retornable    16      16    11    11    8
## 555       1.5 Lts. NR   Familiar No Retornable    13      16    16    10    6
## 556      1.5 Lts. Ret   Familiar    Retornable    32      32    48    35  120
## 557     12 Oz. NR Pet Individual No Retornable     9       6    12    14   11
## 558        12 Oz. Ret Individual    Retornable     5      NA     5     5    5
## 559         2 Lts. NR   Familiar No Retornable    17      14    14    18   20
## 560        2 Lts. Ret   Familiar    Retornable    11      11    11     6   14
## 561       2.5 Lts. NR   Familiar No Retornable    25      60    74   116  190
## 562  2.5 Lts. Ret Pet   Familiar    Retornable   120     106   116   113  225
## 563  500 ml NR Vidrio Individual No Retornable    23      25    21    38   55
## 564        500 ml Ret Individual    Retornable    80      82    97    97  222
## 565       6.5 Oz. Ret Individual    Retornable    NA       1     1    NA   NA
## 566          8 Oz. NR Individual No Retornable     3       5     6     6   20
## 567              Lata Individual No Retornable     6       3     6     6   24
## 568       Lata 16 Oz. Individual No Retornable     4       6     4     8    2
## 569       Lata 235 ml Individual No Retornable     2       4     4     4    5
## 570      1 Ltro. N.R. Individual No Retornable    NA       1     1     1    2
## 571     500 ml NR PET Individual No Retornable    NA       1    NA    NA   NA
## 572         600 ml NR Individual No Retornable     1       1    NA     3    1
## 573      250 ml Tetra Individual No Retornable     1       0     0     0    0
## 574     413 ml NR VId Individual No Retornable    NA      NA     3    NA    1
## 575      1 Ltro. N.R.   Familiar No Retornable     2      NA    NA     2   NA
## 576    300 ML. NR PET Individual No Retornable     1       1     1    NA   NA
## 577     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 578      200 ml Tetra Individual No Retornable    NA       0     0     1    1
## 579         600 ml NR Individual No Retornable     1       1     1     2    1
## 580         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 581       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 582      1 Ltro. N.R.   Familiar No Retornable     2       2     2     2    4
## 583      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 584         2 Lts. NR   Familiar No Retornable    NA      NA     4     3    6
## 585       2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA   NA
## 586    250 ml. NR PET Individual No Retornable     1       1     1     0    0
## 587         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 588        500 ml Ret Individual    Retornable     1       2     1     1    1
## 589         600 ml NR Individual No Retornable     1       3     1     2    2
## 590       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 591      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 592         2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 593    250 ml. NR PET Individual No Retornable     1       0     1     0    0
## 594         400 ml NR Individual No Retornable     0      NA    NA    NA    0
## 595        500 ml Ret Individual    Retornable     1      NA     1     1    1
## 596         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 597       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 598      1 Ltro. N.R.   Familiar No Retornable    NA      NA     4    NA   NA
## 599         2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 600    250 ml. NR PET Individual No Retornable     1       1     1     0    0
## 601         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 602        500 ml Ret Individual    Retornable     1      NA     1     1    1
## 603         600 ml NR Individual No Retornable    NA      NA     2     1    1
## 604         600 ml NR Individual No Retornable     2       1    NA    NA    1
## 605      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 606         2 Lts. NR   Familiar No Retornable    NA       3    NA     3   NA
## 607       2.5 Lts. NR   Familiar No Retornable     4       7     7    NA   NA
## 608         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 609         600 ml NR Individual No Retornable     1      NA    NA    NA    3
## 610       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 611      1 Ltro. N.R.   Familiar No Retornable     8       6     8     8    4
## 612      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 613         2 Lts. NR   Familiar No Retornable     3      NA     4    NA    6
## 614       2.5 Lts. NR   Familiar No Retornable    NA       7     4     7   NA
## 615    250 ml. NR PET Individual No Retornable     1       1     1     0    0
## 616         400 ml NR Individual No Retornable     0       0     0     1    0
## 617        500 ml Ret Individual    Retornable     1      NA     1     1    1
## 618         600 ml NR Individual No Retornable     1       3     3     3    3
## 619       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 620     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 621         600 ml NR Individual No Retornable     3      18     2     1   11
## 622       Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 623       Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 624         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 625         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 626      1 Ltro. N.R. Individual No Retornable     6      15     2     2    8
## 627       1.5 Lts. NR Individual No Retornable    10      13     3     6   10
## 628    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 629         5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 630         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 631    300 ML. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 632     500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 633    250 ml. NR PET Individual No Retornable     7       6     5     7    4
## 634         400 ml NR Individual No Retornable     3       2     3     3    2
## 635      1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 636      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA    2
## 637     12 Oz. NR Pet Individual No Retornable    NA       1     1     2    1
## 638         2 Lts. NR   Familiar No Retornable     3       3    14    25   17
## 639         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 640       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 641       Lata 450 ml Individual No Retornable    NA      NA     1     1    3
## 642     500 ml NR PET Individual No Retornable     3      NA     2     1    3
## 643      1 Ltro. N.R.   Familiar No Retornable     2       6     6    NA   NA
## 644     237 ml NR Vid Individual No Retornable     2      NA    NA     1   NA
## 645  500 ml NR Vidrio Individual No Retornable     4      NA     4     6    2
## 646      1 Ltro. N.R.   Familiar No Retornable    44      66    40    46   72
## 647        12 Oz. Ret Individual    Retornable    14      11    11    14   15
## 648         2 Lts. NR   Familiar No Retornable    99     116    68    76  113
## 649        2 Lts. Ret   Familiar    Retornable    82      76    82    82  104
## 650       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 651  500 ml NR Vidrio Individual No Retornable    42      40    40    68   46
## 652          8 Oz. NR Individual No Retornable    15      16    16    18   17
## 653              Lata Individual No Retornable     8       8     9     8    9
## 654         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 655      1 Ltro. N.R.   Familiar No Retornable     6       8     8     4    4
## 656         2 Lts. NR   Familiar No Retornable    34      14    37    31   42
## 657  500 ml NR Vidrio Individual No Retornable     6       2     6     4    4
## 658          8 Oz. NR Individual No Retornable    NA      NA     1    NA   NA
## 659      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    8
## 660      1.250 Lts NR   Familiar No Retornable    98     114    69    87   74
## 661       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 662      1.5 Lts. Ret   Familiar    Retornable     3       6     3     3    3
## 663     12 Oz. NR Pet Individual No Retornable     9       6     6    14    9
## 664        12 Oz. Ret Individual    Retornable    17      14    14    17   12
## 665         2 Lts. NR   Familiar No Retornable    82      96    54    93   85
## 666        2 Lts. Ret   Familiar    Retornable    34      31    23    56   34
## 667       2.5 Lts. NR   Familiar No Retornable   109     180   127   106  169
## 668  2.5 Lts. Ret Pet   Familiar    Retornable   120     116   144   173  183
## 669         400 ml NR Individual No Retornable     2      NA    NA    NA    2
## 670  500 ml NR Vidrio Individual No Retornable    44      38    61    89   87
## 671        500 ml Ret Individual    Retornable    82      78    72   123   53
## 672          8 Oz. NR Individual No Retornable    30      20    21    30   29
## 673              Lata Individual No Retornable     6       5     9     6    8
## 674       Lata 16 Oz. Individual No Retornable     2      NA     4     4    2
## 675       Lata 235 ml Individual No Retornable    NA       2     2     4    1
## 676         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 677      1 Ltro. N.R. Individual No Retornable    NA       1     1     1    1
## 678     500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 679     1 Ltro. Tetra   Familiar No Retornable    23      19    15    20   13
## 680      250 ml Tetra Individual No Retornable     0       0     0     0    0
## 681    250 ML. NR VID Individual No Retornable     4       3     5     2    3
## 682     413 ml NR VId Individual No Retornable     5      20    19    NA   37
## 683    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 684      1 Ltro. N.R.   Familiar No Retornable     4       4     4     2    4
## 685     1 Ltro. Tetra   Familiar No Retornable     2       2     2     2   NA
## 686     1 Ltro. Tetra   Familiar No Retornable     2       1     3     3    2
## 687     1 Ltro. Tetra   Familiar No Retornable     4       2     1     3    2
## 688     1 Ltro. Tetra   Familiar No Retornable     2       2     3     3    1
## 689      200 ml Tetra Individual No Retornable     0       1     0     0    0
## 690         600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 691         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 692         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 693         600 ml NR Individual No Retornable     8       5     9    14    7
## 694         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 695        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 696         2 Lts. NR   Familiar No Retornable    NA       3     8     6   20
## 697        2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 698         400 ml NR Individual No Retornable    NA      NA     0    NA    1
## 699        500 ml Ret Individual    Retornable     1       2    NA     1   NA
## 700         600 ml NR Individual No Retornable     1       4     1     3    4
## 701       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 702         2 Lts. NR   Familiar No Retornable    NA       3     8     8    3
## 703         400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 704        500 ml Ret Individual    Retornable     1      NA    NA     1   NA
## 705         600 ml NR Individual No Retornable    NA       4     3     2    2
## 706       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 707         2 Lts. NR   Familiar No Retornable    NA      NA     6     3   NA
## 708         400 ml NR Individual No Retornable     0       0    NA    NA   NA
## 709        500 ml Ret Individual    Retornable     1      NA    NA     1   NA
## 710         600 ml NR Individual No Retornable     1       5     3     3    1
## 711         600 ml NR Individual No Retornable     1       2     4     4    1
## 712         2 Lts. NR   Familiar No Retornable     8      14     6    17   20
## 713         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 714        500 ml Ret Individual    Retornable    NA      NA    NA    NA    2
## 715         600 ml NR Individual No Retornable     1       3     3     3    4
## 716       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 717        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 718         2 Lts. NR   Familiar No Retornable     3      14    17    20   11
## 719    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 720         400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 721        500 ml Ret Individual    Retornable     1      NA     2     3   NA
## 722         600 ml NR Individual No Retornable     1       5     5     3    3
## 723       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 724         600 ml NR Individual No Retornable     5      NA     1     3   NA
## 725     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 726         600 ml NR Individual No Retornable    16      13    13    22   14
## 727         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 728         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 729      1 Ltro. N.R. Individual No Retornable     6      55    11    NA   25
## 730       1.5 Lts. NR Individual No Retornable    NA      38     6    NA   48
## 731     355 Ml NR Pet Individual No Retornable     2      20    NA    NA    8
## 732         5 Lts. NR   Familiar No Retornable    35     106    28    25   49
## 733         600 ml NR Individual No Retornable     8      33    NA    13   18
## 734      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 735         473 ml NR Individual No Retornable     2      NA    NA     1   NA
## 736    250 ml. NR PET Individual No Retornable     3      NA     3     1   NA
## 737         600 ml NR Individual No Retornable     3       5    NA    NA   NA
## 738    250 ml. NR PET Individual No Retornable     8       8     2     2    4
## 739         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 740      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 741      1 Ltro. N.R. Individual No Retornable    NA      NA     4     2   NA
## 742     12 Oz. NR Pet Individual No Retornable    NA       2     2    NA   NA
## 743         2 Lts. NR   Familiar No Retornable    11      17     6    17    6
## 744         600 ml NR Individual No Retornable     3       3     3    NA    3
## 745       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 746       Lata 450 ml Individual No Retornable    NA      NA    NA    NA   NA
## 747     500 ml NR PET Individual No Retornable     3      NA     3    NA    3
## 748      1 Ltro. N.R.   Familiar No Retornable     6      NA     6    NA   NA
## 749     237 ml NR Vid Individual No Retornable    NA      NA     1     1   NA
## 750  500 ml NR Vidrio Individual No Retornable     2       2     6     8    4
## 751         600 ml NR Individual No Retornable    NA      NA    NA     5   13
## 752              Lata Individual No Retornable    NA       2     2     2   NA
## 753      1 Ltro. N.R.   Familiar No Retornable    72      72    59   127   87
## 754         2 Lts. NR   Familiar No Retornable    37     155   189    NA  121
## 755  500 ml NR Vidrio Individual No Retornable    38      68    38    74   82
## 756         600 ml NR Individual No Retornable    NA       5     8     5   10
## 757          8 Oz. NR Individual No Retornable    15      11    21    NA   40
## 758              Lata Individual No Retornable     6       5    11     9   17
## 759         600 ml NR Individual No Retornable     8       5     5     8    5
## 760       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 761      1 Ltro. N.R.   Familiar No Retornable    11      15    13    15   17
## 762         2 Lts. NR   Familiar No Retornable    17      23    28    31   17
## 763  500 ml NR Vidrio Individual No Retornable     4       4     6     6    6
## 764         600 ml NR Individual No Retornable     5       8     5     8    8
## 765          8 Oz. NR Individual No Retornable     2       2     1     1    2
## 766              Lata Individual No Retornable    NA       2     2    NA    3
## 767      1 Ltro. N.R.   Familiar No Retornable    95     159    32   161  118
## 768      1.250 Lts NR   Familiar No Retornable    NA      NA    58    90   21
## 769       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 770      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA     3    3
## 771     12 Oz. NR Pet Individual No Retornable     3      NA    NA    NA   NA
## 772         2 Lts. NR   Familiar No Retornable   163     217   355   107  192
## 773       2.5 Lts. NR   Familiar No Retornable   123     240   335   183  243
## 774  2.5 Lts. Ret Pet   Familiar    Retornable    46     204   190   134  183
## 775         400 ml NR Individual No Retornable    27      24    41     8   71
## 776     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 777  500 ml NR Vidrio Individual No Retornable    68      76   135   120  116
## 778        500 ml Ret Individual    Retornable   154     139    95   224   87
## 779       6.5 Oz. Ret Individual    Retornable     2       1    NA    NA   NA
## 780         600 ml NR Individual No Retornable    28      10    20    20   20
## 781          8 Oz. NR Individual No Retornable    24      22    35    10   68
## 782              Lata Individual No Retornable    18      18    24    21   41
## 783       Lata 16 Oz. Individual No Retornable    10      NA    NA     4    6
## 784         600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 785      1 Ltro. N.R. Individual No Retornable    NA      NA     1     2    2
## 786     500 ml NR PET Individual No Retornable     2       2     2    NA    3
## 787         600 ml NR Individual No Retornable    NA      NA     3     3   NA
## 788     1 Ltro. Tetra   Familiar No Retornable    20      13     9    13   30
## 789      250 ml Tetra Individual No Retornable     8      NA     4    NA    2
## 790    250 ML. NR VID Individual No Retornable     3       1     2    NA    2
## 791     413 ml NR VId Individual No Retornable    20      24    19    NA   NA
## 792       Lata 335 ml Individual No Retornable    NA       1    NA    NA   NA
## 793      1 Ltro. N.R.   Familiar No Retornable     4       4    NA     2    4
## 794    300 ML. NR PET Individual No Retornable     2       1     1     1    0
## 795     1 Ltro. Tetra   Familiar No Retornable    13      10    14     8   10
## 796     1 Ltro. Tetra   Familiar No Retornable     6       3    10    11    8
## 797     1 Ltro. Tetra   Familiar No Retornable    10       6     7    12   10
## 798     1 Ltro. Tetra   Familiar No Retornable    11       5     4     7    6
## 799      200 ml Tetra Individual No Retornable     2       2     3     1    6
## 800         600 ml NR Individual No Retornable     5       3    NA    NA    8
## 801         600 ml NR Individual No Retornable    NA       5     3     3    3
## 802         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 803         600 ml NR Individual No Retornable     5       5     5    10    3
## 804         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 805         2 Lts. NR   Familiar No Retornable    NA       6     6    14   NA
## 806    250 ml. NR PET Individual No Retornable     1       3     3     1    1
## 807         400 ml NR Individual No Retornable     0      NA    NA    NA    1
## 808         600 ml NR Individual No Retornable     3      NA    NA     3    8
## 809         2 Lts. NR   Familiar No Retornable    NA       3    NA    NA    3
## 810    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 811         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 812         600 ml NR Individual No Retornable     3      NA    NA     3    5
## 813         2 Lts. NR   Familiar No Retornable    NA      11    NA    11    3
## 814    250 ml. NR PET Individual No Retornable     3      NA     1     3    3
## 815         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 816         600 ml NR Individual No Retornable     3      NA    NA     3    5
## 817         600 ml NR Individual No Retornable    NA       3    NA     3    5
## 818         2 Lts. NR   Familiar No Retornable    NA       8     3    11    3
## 819    250 ml. NR PET Individual No Retornable     3      NA     1    NA    1
## 820         400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 821        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 822         600 ml NR Individual No Retornable     3       5    NA     5    5
## 823      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 824         2 Lts. NR   Familiar No Retornable    NA      14     8    48    6
## 825       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 826    250 ml. NR PET Individual No Retornable     5       1     3     4    4
## 827         400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 828        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 829         600 ml NR Individual No Retornable     3      NA     3    NA   10
## 830         600 ml NR Individual No Retornable     5       6     3     7    4
## 831     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 832         600 ml NR Individual No Retornable    15      18    16     6   21
## 833       Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 834         600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 835         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 836      1 Ltro. N.R. Individual No Retornable    13      19    17    13   15
## 837       1.5 Lts. NR Individual No Retornable    10      19    19    19   29
## 838         600 ml NR Individual No Retornable     3       5     5     5    8
## 839      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 840    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 841    250 ml. NR PET Individual No Retornable     0       0     1     0   NA
## 842         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 843    250 ml. NR PET Individual No Retornable     1      NA    NA     0    0
## 844      1 Ltro. N.R.   Familiar No Retornable    NA       1    NA    NA    5
## 845      1 Ltro. N.R. Individual No Retornable    NA      NA     2     2    4
## 846     12 Oz. NR Pet Individual No Retornable    NA       2     2     1    1
## 847         2 Lts. NR   Familiar No Retornable     6       3     6     6   11
## 848         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 849       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 850       Lata 450 ml Individual No Retornable    NA       3    NA     1    1
## 851        12 Oz. Ret Individual    Retornable    NA      NA     2    NA    2
## 852     237 ml NR Vid Individual No Retornable    NA      NA    NA    NA   NA
## 853  500 ml NR Vidrio Individual No Retornable     2      NA     2    NA   NA
## 854       Lata 235 ml Individual No Retornable     1      NA    NA    NA   NA
## 855      1 Ltro. N.R.   Familiar No Retornable    23      25    21    21   27
## 856        12 Oz. Ret Individual    Retornable    15      17    18    15   23
## 857         2 Lts. NR   Familiar No Retornable    28      20    14    20   17
## 858        2 Lts. Ret   Familiar    Retornable    23      20    25    23   34
## 859         400 ml NR Individual No Retornable     7       8     5     7   10
## 860  500 ml NR Vidrio Individual No Retornable    19      19    23    23   23
## 861          8 Oz. NR Individual No Retornable     3       5     2     7    4
## 862              Lata Individual No Retornable     5       6     6     8    8
## 863      1 Ltro. N.R.   Familiar No Retornable     6      13     8     6    8
## 864         2 Lts. NR   Familiar No Retornable    NA      NA     3     6    3
## 865         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 866  500 ml NR Vidrio Individual No Retornable     4       4     6     8    8
## 867          8 Oz. NR Individual No Retornable     1       2    NA     1    2
## 868      1 Ltro. N.R.   Familiar No Retornable     4       2     2    NA   NA
## 869      1.250 Lts NR   Familiar No Retornable    45      61    40    53   55
## 870       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 871      1.5 Lts. Ret   Familiar    Retornable     3       3     3     6    3
## 872     12 Oz. NR Pet Individual No Retornable    14      14    11    11   14
## 873        12 Oz. Ret Individual    Retornable    11      12    11    11    9
## 874         2 Lts. NR   Familiar No Retornable    NA       6    NA     6   NA
## 875        2 Lts. Ret   Familiar    Retornable    23      14    11     8    8
## 876       2.5 Lts. NR   Familiar No Retornable    63      56    63    67   63
## 877  2.5 Lts. Ret Pet   Familiar    Retornable   190     208   116   201  240
## 878         400 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 879  500 ml NR Vidrio Individual No Retornable    36      32    38    34   38
## 880        500 ml Ret Individual    Retornable    80      80    59    85   87
## 881          8 Oz. NR Individual No Retornable    12      13     6    15   12
## 882              Lata Individual No Retornable     8       6     9     9   11
## 883       Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 884       Lata 235 ml Individual No Retornable    NA       2     1    NA   NA
## 885         600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 886      1 Ltro. N.R. Individual No Retornable    NA       1     1     1    7
## 887     500 ml NR PET Individual No Retornable    NA       1    NA     1   NA
## 888         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 889     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 890      250 ml Tetra Individual No Retornable     1       0     0     0    0
## 891    250 ML. NR VID Individual No Retornable    NA       0    NA    NA    1
## 892     413 ml NR VId Individual No Retornable     3       3     2     3    3
## 893    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 894      1 Ltro. N.R.   Familiar No Retornable     2       2     4     2    4
## 895     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 896     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 897      200 ml Tetra Individual No Retornable     0       0     0     0    1
## 898         600 ml NR Individual No Retornable     3       4     4     4    4
## 899         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 900       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 901      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 902         2 Lts. NR   Familiar No Retornable     3       3     1     4    4
## 903    250 ml. NR PET Individual No Retornable     0       0     1     0   NA
## 904         400 ml NR Individual No Retornable    NA       0     0    NA   NA
## 905        500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 906         600 ml NR Individual No Retornable     1       1     1     1    1
## 907       Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 908         2 Lts. NR   Familiar No Retornable     3      NA     1     4    9
## 909    250 ml. NR PET Individual No Retornable     0       0     0     0   NA
## 910         400 ml NR Individual No Retornable     0      NA    NA     0   NA
## 911        500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 912         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 913       Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 914         2 Lts. NR   Familiar No Retornable    NA      NA     1     1    1
## 915    250 ml. NR PET Individual No Retornable     0       0     1     0   NA
## 916         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 917        500 ml Ret Individual    Retornable    NA       2    NA     1    2
## 918         600 ml NR Individual No Retornable    NA       2     1     1    1
## 919         600 ml NR Individual No Retornable     1       4     1     1    3
## 920         2 Lts. NR   Familiar No Retornable    NA       6     8     3    6
## 921    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 922        500 ml Ret Individual    Retornable     2      NA     2    NA    2
## 923       Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 924      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 925         2 Lts. NR   Familiar No Retornable     6       8     4     9   18
## 926    250 ml. NR PET Individual No Retornable     0       0     1     0   NA
## 927         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 928        500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 929         600 ml NR Individual No Retornable     4       4     4     3    4
## 930       Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 931     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 932         600 ml NR Individual No Retornable    NA      NA    NA     1   10
## 933       Lata 453 ml Individual No Retornable    NA       0    NA    NA   NA
## 934         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 935       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 936         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 937      1 Ltro. N.R. Individual No Retornable     2       2     2     6    2
## 938       1.5 Lts. NR Individual No Retornable     3       3     3     3    3
## 939         5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 940      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 941    300 ML. NR PET Individual No Retornable    NA      NA     1     1    1
## 942    250 ml. NR PET Individual No Retornable     1       1     1     1    1
## 943         600 ml NR Individual No Retornable     1      NA     1     4    1
## 944    250 ml. NR PET Individual No Retornable     1      NA     2     1   NA
## 945         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 946      1 Ltro. N.R.   Familiar No Retornable     1       1     1    NA    1
## 947      1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2    4
## 948     12 Oz. NR Pet Individual No Retornable    NA       2     1     1    1
## 949         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 950      1 Ltro. N.R.   Familiar No Retornable     2       2     2    NA   NA
## 951  500 ml NR Vidrio Individual No Retornable     4       4     2     2   NA
## 952      1 Ltro. N.R.   Familiar No Retornable    25      30    27    27   36
## 953        12 Oz. Ret Individual    Retornable     8       6     5     3    6
## 954         2 Lts. NR   Familiar No Retornable    39      28    31    37   39
## 955        2 Lts. Ret   Familiar    Retornable    28      28    17    25   28
## 956  500 ml NR Vidrio Individual No Retornable    25      25    11    19   21
## 957         600 ml NR Individual No Retornable     5      10    10    10    8
## 958          8 Oz. NR Individual No Retornable     4       5     4     4    6
## 959              Lata Individual No Retornable     5       9     5     5    8
## 960       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 961      1 Ltro. N.R.   Familiar No Retornable     4       8     6     8    8
## 962         2 Lts. NR   Familiar No Retornable     6       6    14    11    8
## 963  500 ml NR Vidrio Individual No Retornable    NA      NA     2     4    4
## 964         600 ml NR Individual No Retornable     5       3     3     5    5
## 965          8 Oz. NR Individual No Retornable     1       1     3     1    3
## 966      1 Ltro. N.R.   Familiar No Retornable    34      34    34    42   42
## 967      1.250 Lts NR   Familiar No Retornable     3      NA    NA    NA   NA
## 968       1.5 Lts. NR   Familiar No Retornable    25      22    22    22   29
## 969      1.5 Lts. Ret   Familiar    Retornable     3       3     3     3    3
## 970     12 Oz. NR Pet Individual No Retornable     6       8    11     8   11
## 971        12 Oz. Ret Individual    Retornable    11       5     3     6    2
## 972         2 Lts. NR   Familiar No Retornable    NA      NA    NA    11   NA
## 973        2 Lts. Ret   Familiar    Retornable     3       3     3    NA    3
## 974       2.5 Lts. NR   Familiar No Retornable    49      88    77    95  130
## 975  2.5 Lts. Ret Pet   Familiar    Retornable    49      70    67    53   39
## 976         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 977     500 ml NR PET Individual No Retornable    13      13    11    15   17
## 978  500 ml NR Vidrio Individual No Retornable    27      44    59    19   36
## 979        500 ml Ret Individual    Retornable    36      42    38    55   30
## 980       6.5 Oz. Ret Individual    Retornable     2       2     2     2    2
## 981         710 ml NR Individual No Retornable    15      12     9    12   12
## 982          8 Oz. NR Individual No Retornable    15      17    17    23   22
## 983              Lata Individual No Retornable     3       6     3     9    3
## 984       Lata 16 Oz. Individual No Retornable     4       6     2     6    2
## 985       Lata 235 ml Individual No Retornable     3       4     2     3    2
## 986         600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 987      1 Ltro. N.R. Individual No Retornable     1       1     1     1    2
## 988     500 ml NR PET Individual No Retornable    NA       1    NA     1   NA
## 989         600 ml NR Individual No Retornable     4      NA     3     1    2
## 990     1 Ltro. Tetra   Familiar No Retornable     4       4     5     2    4
## 991   125 ml NR Tetra Individual No Retornable    NA       1    NA    NA   NA
## 992      250 ml Tetra Individual No Retornable     1       0     2     0    0
## 993    250 ML. NR VID Individual No Retornable     2       3     2     1    2
## 994     413 ml NR VId Individual No Retornable     6       1     4     3    8
## 995       Lata 335 ml Individual No Retornable    NA      NA    NA    NA   NA
## 996    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 997      1 Ltro. N.R.   Familiar No Retornable    NA       4     4     4    2
## 998    300 ML. NR PET Individual No Retornable     2      NA     1     1    1
## 999     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1000    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1001    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1002     200 ml Tetra Individual No Retornable     1       1     1     0    1
## 1003        600 ml NR Individual No Retornable     4       1     3     2    4
## 1004      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1005        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1006      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1007     1 Ltro. N.R.   Familiar No Retornable    NA       2    NA     2   NA
## 1008        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA    3
## 1009        400 ml NR Individual No Retornable    NA      NA     0     0    1
## 1010    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1011       500 ml Ret Individual    Retornable    NA      NA    NA     2   NA
## 1012        600 ml NR Individual No Retornable     1       2     2     1    3
## 1013      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1014     1 Ltro. N.R.   Familiar No Retornable     2      NA     2    NA   NA
## 1015      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1016     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1017        2 Lts. NR   Familiar No Retornable    NA       3     3     3    6
## 1018        400 ml NR Individual No Retornable     0      NA    NA    NA    1
## 1019       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1020        600 ml NR Individual No Retornable     1       1    NA     1    3
## 1021      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1022     1 Ltro. N.R.   Familiar No Retornable     4      NA    NA     2    2
## 1023        2 Lts. NR   Familiar No Retornable    NA       3     3     3    3
## 1024    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1025       500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 1026        600 ml NR Individual No Retornable     3      NA     2     1    1
## 1027        600 ml NR Individual No Retornable     3       1     3     1   NA
## 1028        2 Lts. NR   Familiar No Retornable     6       6    14    14   14
## 1029        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 1030       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1031        600 ml NR Individual No Retornable     3       1     5     1    3
## 1032      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1033     1 Ltro. N.R.   Familiar No Retornable     4      NA     2     4    4
## 1034        2 Lts. NR   Familiar No Retornable     3       6     8     3   14
## 1035   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1036        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1037       500 ml Ret Individual    Retornable    NA       2     2    NA    2
## 1038        600 ml NR Individual No Retornable     1       3     1     2    3
## 1039      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1040        600 ml NR Individual No Retornable     8      11     5     4    6
## 1041      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1042       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1043        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1044        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1045     1 Ltro. N.R. Individual No Retornable     4       4     2     2    2
## 1046      1.5 Lts. NR Individual No Retornable     3       3     3     3    3
## 1047     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1048   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1049   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1050        600 ml NR Individual No Retornable    NA      NA     2    NA   NA
## 1051   250 ml. NR PET Individual No Retornable     1       1     1     1    4
## 1052        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1053     1 Ltro. N.R.   Familiar No Retornable     1       1     1     2    1
## 1054     1 Ltro. N.R. Individual No Retornable    NA      NA     2    NA   NA
## 1055    12 Oz. NR Pet Individual No Retornable     2       1     2     2    1
## 1056        2 Lts. NR   Familiar No Retornable    NA      NA    11    NA   NA
## 1057        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1058      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1059    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1060        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1061      Lata 235 ml Individual No Retornable     1      NA     1     1   NA
## 1062     1 Ltro. N.R.   Familiar No Retornable    11       8    13    13   11
## 1063        2 Lts. NR   Familiar No Retornable     8       8     3     6    3
## 1064       2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1065 500 ml NR Vidrio Individual No Retornable    21      21    19    23   25
## 1066         8 Oz. NR Individual No Retornable    NA      NA    NA    NA    1
## 1067      Lata 235 ml Individual No Retornable    NA       1     1     1   NA
## 1068        600 ml NR Individual No Retornable     2       1     2     3    3
## 1069     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1070     1.250 Lts NR   Familiar No Retornable    21      24    29    37   29
## 1071      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1072     1.5 Lts. Ret   Familiar    Retornable     3       3     3    13    6
## 1073    12 Oz. NR Pet Individual No Retornable     5       6     8    11    5
## 1074       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1075        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 1076      2.5 Lts. NR   Familiar No Retornable    35      53    53    60   42
## 1077 2.5 Lts. Ret Pet   Familiar    Retornable    70      74    70    95   81
## 1078 500 ml NR Vidrio Individual No Retornable    23      25    30    38   27
## 1079       500 ml Ret Individual    Retornable    74      72    89    95   91
## 1080      6.5 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1081         8 Oz. NR Individual No Retornable     3       2     4     8    5
## 1082             Lata Individual No Retornable     3       2     5     5    3
## 1083      Lata 235 ml Individual No Retornable     2       2     2     2    2
## 1084     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 1085    500 ml NR PET Individual No Retornable     1       1    NA     1    1
## 1086        600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 1087     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 1088   250 ML. NR VID Individual No Retornable    NA       1    NA    NA    0
## 1089    413 ml NR VId Individual No Retornable     2       3     2     5    5
## 1090   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1091    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1092    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1093    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1094    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1095     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1096        600 ml NR Individual No Retornable     3       1     3     4    3
## 1097        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1098        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1099   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1100        400 ml NR Individual No Retornable    NA      NA     0    NA    0
## 1101       500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 1102        600 ml NR Individual No Retornable     1       2     3     4    3
## 1103      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 1104      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1105        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1106   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1107        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 1108       500 ml Ret Individual    Retornable    NA      NA    NA     2   NA
## 1109        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 1110      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 1111        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1112   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1113        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1114       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1115        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1116        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1117        2 Lts. NR   Familiar No Retornable    NA      NA     3     3    3
## 1118        400 ml NR Individual No Retornable     0      NA    NA     0   NA
## 1119       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 1120        600 ml NR Individual No Retornable     1      NA     3     3    3
## 1121      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 1122        2 Lts. NR   Familiar No Retornable     3       3     3    NA   NA
## 1123   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1124        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1125       500 ml Ret Individual    Retornable    NA      NA     2    NA    2
## 1126        600 ml NR Individual No Retornable     1       2     3     4    3
## 1127      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 1128        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1129    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1130        600 ml NR Individual No Retornable     3      NA     3    NA   NA
## 1131      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1132      Lata 453 ml Individual No Retornable    NA       0    NA    NA   NA
## 1133        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1134        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1135     1 Ltro. N.R. Individual No Retornable     2       2     2     2    4
## 1136      1.5 Lts. NR Individual No Retornable     3       3     3     3    6
## 1137        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1138        600 ml NR Individual No Retornable    NA       3    NA    NA    3
## 1139     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1140   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1141   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1142   250 ml. NR PET Individual No Retornable     2       3     3     5    3
## 1143        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1144     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     2    1
## 1145     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1146    12 Oz. NR Pet Individual No Retornable    NA       2     2     2    1
## 1147        2 Lts. NR   Familiar No Retornable     3      NA    NA     3   NA
## 1148      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1149      Lata 450 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1150    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1151      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1152     1 Ltro. N.R.   Familiar No Retornable     4      11    13     8   11
## 1153        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1154      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1155 500 ml NR Vidrio Individual No Retornable     2       8     6    11    8
## 1156         8 Oz. NR Individual No Retornable     2       1     2     1    2
## 1157             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1158     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1159     1.250 Lts NR   Familiar No Retornable    21      26    37    26   24
## 1160      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1161     1.5 Lts. Ret   Familiar    Retornable     6       6    16     6   25
## 1162    12 Oz. NR Pet Individual No Retornable    12       9     6    11   12
## 1163        2 Lts. NR   Familiar No Retornable    NA      NA     3     6   NA
## 1164      2.5 Lts. NR   Familiar No Retornable     7      11    18    32   35
## 1165 2.5 Lts. Ret Pet   Familiar    Retornable   155     113   159   169  180
## 1166    500 ml NR PET Individual No Retornable    NA       2    NA    NA   NA
## 1167 500 ml NR Vidrio Individual No Retornable    17      15    21    19   25
## 1168       500 ml Ret Individual    Retornable   106      74    95   114   95
## 1169         8 Oz. NR Individual No Retornable     4       1     4     4    4
## 1170             Lata Individual No Retornable     2       3     3     3    3
## 1171      Lata 16 Oz. Individual No Retornable    NA       2     4     4    2
## 1172      Lata 235 ml Individual No Retornable    NA       1    NA     1    2
## 1173     1 Ltro. N.R. Individual No Retornable     1       1     1     3    1
## 1174    500 ml NR PET Individual No Retornable     1      NA    NA     1   NA
## 1175        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1176    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1177     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 1178    413 ml NR VId Individual No Retornable     4       2     2     3    2
## 1179   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1180     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA     2    2
## 1181   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 1182    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1183    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1184    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1185     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1186        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1187        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1188        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1189        600 ml NR Individual No Retornable     2      NA    NA    NA   NA
## 1190        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1191        2 Lts. NR   Familiar No Retornable    NA       1     1     3    1
## 1192   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1193        400 ml NR Individual No Retornable    NA       0     0    NA   NA
## 1194       500 ml Ret Individual    Retornable    NA       1     1    NA    1
## 1195        600 ml NR Individual No Retornable     2       1     1     1    2
## 1196             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1197      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1198      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1199        2 Lts. NR   Familiar No Retornable    NA       1     1    NA    1
## 1200   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1201       500 ml Ret Individual    Retornable    NA       1     1    NA    1
## 1202        600 ml NR Individual No Retornable    NA       1     1     1    1
## 1203             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1204      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1205        2 Lts. NR   Familiar No Retornable    NA       1     4    NA    1
## 1206   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1207        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 1208       500 ml Ret Individual    Retornable    NA       1     1    NA    1
## 1209        600 ml NR Individual No Retornable     2       1     1     1    1
## 1210             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1211        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1212        400 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 1213      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1214      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1215        2 Lts. NR   Familiar No Retornable     3       1     4    NA    1
## 1216   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1217        400 ml NR Individual No Retornable     0      NA     0     0    0
## 1218       500 ml Ret Individual    Retornable     4       1     1    NA    1
## 1219        600 ml NR Individual No Retornable     2       1     1     1    2
## 1220             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1221      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1222        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1223        600 ml NR Individual No Retornable    NA       4     3     4   10
## 1224      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1225        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1226        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1227     1 Ltro. N.R. Individual No Retornable     2       2     6     2    2
## 1228      1.5 Lts. NR Individual No Retornable    NA       3     6     3   10
## 1229        600 ml NR Individual No Retornable    NA       3     3    NA    3
## 1230        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1231   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1232   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 1233        600 ml NR Individual No Retornable     1       1     1     1   NA
## 1234   250 ml. NR PET Individual No Retornable     0       1    NA    NA   NA
## 1235        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1236     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1237    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 1238     1 Ltro. N.R.   Familiar No Retornable     2      NA     2     2    2
## 1239       12 Oz. Ret Individual    Retornable    NA       2    NA    NA    2
## 1240        2 Lts. NR   Familiar No Retornable    NA       3     3     3    3
## 1241 500 ml NR Vidrio Individual No Retornable     6       4     2     4    6
## 1242         8 Oz. NR Individual No Retornable    NA       1     2     2    3
## 1243     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1244     1.250 Lts NR   Familiar No Retornable     5      11    13     8   11
## 1245      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1246     1.5 Lts. Ret   Familiar    Retornable     3       3     3     3    3
## 1247    12 Oz. NR Pet Individual No Retornable     5       3     6     3    6
## 1248      2.5 Lts. NR   Familiar No Retornable    NA       4    14    14   25
## 1249 2.5 Lts. Ret Pet   Familiar    Retornable    21      42    42    56   63
## 1250 500 ml NR Vidrio Individual No Retornable     8      13    13    11   13
## 1251       500 ml Ret Individual    Retornable    23      42    40    40   44
## 1252         8 Oz. NR Individual No Retornable     1       2     2     2    1
## 1253             Lata Individual No Retornable    NA      NA     2    NA    2
## 1254      Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 1255     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1256    1 Ltro. Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 1257     250 ml Tetra Individual No Retornable     0       0     0    NA   NA
## 1258   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA    0
## 1259    413 ml NR VId Individual No Retornable     3       6     1     5    4
## 1260      Lata 335 ml Individual No Retornable     1      NA    NA    NA   NA
## 1261     200 ml Tetra Individual No Retornable     0       0     0    NA   NA
## 1262        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1263      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1264       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1265        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1266   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 1267        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1268       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 1269        600 ml NR Individual No Retornable     1       2     1     1    1
## 1270      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 1271     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    2
## 1272   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 1273        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1274       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 1275      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 1276   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 1277        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 1278       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 1279        600 ml NR Individual No Retornable     2       1     1     1   NA
## 1280       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1281        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 1282      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 1283     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1284        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA    3
## 1285   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 1286        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 1287       500 ml Ret Individual    Retornable     1       2    NA    NA   NA
## 1288        600 ml NR Individual No Retornable     2       2     1     3    1
## 1289      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 1290        600 ml NR Individual No Retornable     1      NA     1    NA    1
## 1291        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1292        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1293     1 Ltro. N.R. Individual No Retornable     2      NA     4     2    4
## 1294      1.5 Lts. NR Individual No Retornable     3      NA     6     3    6
## 1295        600 ml NR Individual No Retornable    NA      NA     3    NA   NA
## 1296        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1297   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1298   250 ml. NR PET Individual No Retornable     0      NA    NA     0    0
## 1299        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1300   250 ml. NR PET Individual No Retornable     3       1     4     3    1
## 1301        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1302     1 Ltro. N.R.   Familiar No Retornable     1      NA     1     1    1
## 1303    12 Oz. NR Pet Individual No Retornable     2      NA     1     1    1
## 1304    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1305 500 ml NR Vidrio Individual No Retornable     2       2    NA     4    2
## 1306      Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 1307     1 Ltro. N.R.   Familiar No Retornable    11       8     8    13   15
## 1308       12 Oz. Ret Individual    Retornable    NA      NA     2    NA   NA
## 1309        2 Lts. NR   Familiar No Retornable    NA       6    NA     6    3
## 1310       2 Lts. Ret   Familiar    Retornable     6       8     6    11    8
## 1311      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1312        400 ml NR Individual No Retornable    NA      NA     2     3    3
## 1313 500 ml NR Vidrio Individual No Retornable     4       2     6     8   11
## 1314        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 1315         8 Oz. NR Individual No Retornable     1       1    NA     1    2
## 1316             Lata Individual No Retornable    NA       2    NA     2    2
## 1317     1 Ltro. N.R.   Familiar No Retornable     4      NA     2     2    2
## 1318 500 ml NR Vidrio Individual No Retornable    NA      NA     2     4    4
## 1319        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 1320     1 Ltro. N.R.   Familiar No Retornable    13      11    11     8   17
## 1321     1.250 Lts NR   Familiar No Retornable    13      11    16    18   11
## 1322      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1323     1.5 Lts. Ret   Familiar    Retornable     3       3     3     3    3
## 1324    12 Oz. NR Pet Individual No Retornable     5      11     9     8   11
## 1325        2 Lts. NR   Familiar No Retornable     6       3     3     6    3
## 1326       2 Lts. Ret   Familiar    Retornable    NA      NA    NA     6   NA
## 1327      2.5 Lts. NR   Familiar No Retornable    NA      18    21    21   25
## 1328 2.5 Lts. Ret Pet   Familiar    Retornable    92      88    81    99   81
## 1329 500 ml NR Vidrio Individual No Retornable    11       6     8    15   11
## 1330       500 ml Ret Individual    Retornable    34      49    59    59   44
## 1331         8 Oz. NR Individual No Retornable     9       7    11     8   14
## 1332             Lata Individual No Retornable     6       5     5     6    8
## 1333      Lata 235 ml Individual No Retornable     2      NA     1    NA   NA
## 1334     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 1335    500 ml NR PET Individual No Retornable     1      NA     2    NA   NA
## 1336        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1337     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 1338    413 ml NR VId Individual No Retornable    NA      NA     2    NA   NA
## 1339    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1340    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1341     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1342        600 ml NR Individual No Retornable     1       1     1     1    1
## 1343        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1344     1 Ltro. N.R.   Familiar No Retornable     2       2    NA     2   NA
## 1345        2 Lts. NR   Familiar No Retornable    NA       3     6     6    8
## 1346   250 ml. NR PET Individual No Retornable     0      NA    NA     0    0
## 1347        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1348       500 ml Ret Individual    Retornable    NA       2    NA     3    1
## 1349        600 ml NR Individual No Retornable     1       1     1     3    1
## 1350      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 1351      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1352        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1353   250 ml. NR PET Individual No Retornable     0      NA    NA     0    0
## 1354        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1355       500 ml Ret Individual    Retornable    NA      NA    NA     1    1
## 1356        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1357      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 1358   250 ml. NR PET Individual No Retornable     0      NA    NA     0    0
## 1359        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 1360       500 ml Ret Individual    Retornable    NA      NA    NA     1    1
## 1361        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1362        600 ml NR Individual No Retornable     1       1     1     1    2
## 1363        2 Lts. NR   Familiar No Retornable     3       3    11     6    8
## 1364        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 1365       500 ml Ret Individual    Retornable     2      NA     2    NA    2
## 1366        600 ml NR Individual No Retornable    NA       1     1     3    1
## 1367      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 1368     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA     2    2
## 1369        2 Lts. NR   Familiar No Retornable    NA      NA     6    NA    8
## 1370   250 ml. NR PET Individual No Retornable     0      NA    NA     0    0
## 1371        400 ml NR Individual No Retornable    NA      NA     0     0   NA
## 1372       500 ml Ret Individual    Retornable    NA      NA     2     3    1
## 1373        600 ml NR Individual No Retornable     2       2     1     1    1
## 1374      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 1375    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1376        600 ml NR Individual No Retornable     1       1    NA    NA    1
## 1377        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1378      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1379        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1380     1 Ltro. N.R. Individual No Retornable    19     108     2     2   13
## 1381      1.5 Lts. NR Individual No Retornable    16      73     3     3   16
## 1382    355 Ml NR Pet Individual No Retornable     3      18    NA    NA   NA
## 1383        5 Lts. NR   Familiar No Retornable     7      NA    NA    NA   NA
## 1384        600 ml NR Individual No Retornable     8      48    NA    NA   NA
## 1385     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1386   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1387   250 ml. NR PET Individual No Retornable     1       1     1     1    0
## 1388        600 ml NR Individual No Retornable     1       1     1     1   NA
## 1389   250 ml. NR PET Individual No Retornable     3       1    NA     2    2
## 1390        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1391     1 Ltro. N.R.   Familiar No Retornable     1      NA    NA     1    2
## 1392     1 Ltro. N.R. Individual No Retornable    NA       2     4    NA   NA
## 1393    12 Oz. NR Pet Individual No Retornable     2       2     3     1    2
## 1394        2 Lts. NR   Familiar No Retornable    NA       8     8     3    6
## 1395      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1396    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1397 500 ml NR Vidrio Individual No Retornable     4       4     2     2    6
## 1398     1 Ltro. N.R.   Familiar No Retornable    15       8    15    15   13
## 1399       12 Oz. Ret Individual    Retornable     2       2     2     2    2
## 1400      2.5 Lts. NR   Familiar No Retornable    11       7    11     4    7
## 1401        400 ml NR Individual No Retornable     3       3     5     3    2
## 1402 500 ml NR Vidrio Individual No Retornable    15      15    17    19   30
## 1403         8 Oz. NR Individual No Retornable     4       6     5     7    9
## 1404             Lata Individual No Retornable     3       2     5     5    3
## 1405      Lata 235 ml Individual No Retornable     1       2     2     1   NA
## 1406     1 Ltro. N.R.   Familiar No Retornable     2      NA     2     2    2
## 1407        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 1408 500 ml NR Vidrio Individual No Retornable     4       2     4     6    8
## 1409        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1410         8 Oz. NR Individual No Retornable     1      NA    NA    NA   NA
## 1411     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1412     1.250 Lts NR   Familiar No Retornable    40      26    40    45   21
## 1413      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1414     1.5 Lts. Ret   Familiar    Retornable    25      35    73    54   16
## 1415    12 Oz. NR Pet Individual No Retornable    17      15    21    39   12
## 1416       12 Oz. Ret Individual    Retornable    NA       2     3     3    3
## 1417        2 Lts. NR   Familiar No Retornable     3      NA    NA     6   NA
## 1418      2.5 Lts. NR   Familiar No Retornable    42      28    81     4   NA
## 1419 2.5 Lts. Ret Pet   Familiar    Retornable   151     127   151   134  229
## 1420    500 ml NR PET Individual No Retornable     4       4     4    NA   NA
## 1421 500 ml NR Vidrio Individual No Retornable    36      36    44    30   32
## 1422       500 ml Ret Individual    Retornable    82      68    85    91   97
## 1423      6.5 Oz. Ret Individual    Retornable     2       1     1     1    1
## 1424         8 Oz. NR Individual No Retornable     9       8    13     9   13
## 1425             Lata Individual No Retornable     9       6     6     8    9
## 1426      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 1427      Lata 235 ml Individual No Retornable     7       7     5     4    5
## 1428     1 Ltro. N.R. Individual No Retornable    NA       1     1     1    1
## 1429    500 ml NR PET Individual No Retornable    NA      NA    NA     1    1
## 1430        600 ml NR Individual No Retornable    NA      NA    NA    NA    3
## 1431    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1432     250 ml Tetra Individual No Retornable     3       0     0     0    0
## 1433   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 1434    413 ml NR VId Individual No Retornable     2      NA     2     1    1
## 1435   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1436     1 Ltro. N.R.   Familiar No Retornable    NA       2     4    NA    2
## 1437   300 ML. NR PET Individual No Retornable    NA       3     1     2   NA
## 1438    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1439     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1440        600 ml NR Individual No Retornable     5      NA    NA    NA    3
## 1441        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1442        2 Lts. NR   Familiar No Retornable    NA      NA     1     3    6
## 1443      2.5 Lts. NR   Familiar No Retornable     4       4     7    NA    4
## 1444   250 ml. NR PET Individual No Retornable     1       1     1     1    0
## 1445        400 ml NR Individual No Retornable     0       1     2     1    3
## 1446       500 ml Ret Individual    Retornable     2      NA     3     2    4
## 1447        600 ml NR Individual No Retornable     1       1     1     2    2
## 1448      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 1449      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1450        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA    1
## 1451   250 ml. NR PET Individual No Retornable     0       1     1     0    0
## 1452        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 1453       500 ml Ret Individual    Retornable    NA       2     1    NA   NA
## 1454        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1455      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 1456        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA    1
## 1457      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1458   250 ml. NR PET Individual No Retornable     1       1     1     1    0
## 1459        400 ml NR Individual No Retornable    NA      NA     0     1   NA
## 1460       500 ml Ret Individual    Retornable    NA      NA     1    NA   NA
## 1461        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1462        600 ml NR Individual No Retornable     3       1     1     3    2
## 1463     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1464        2 Lts. NR   Familiar No Retornable     3      NA     3    NA    3
## 1465      2.5 Lts. NR   Familiar No Retornable    11      NA    11    NA   NA
## 1466        400 ml NR Individual No Retornable    NA       1    NA     0    3
## 1467       500 ml Ret Individual    Retornable     4       2    11     4    6
## 1468        600 ml NR Individual No Retornable     3      NA    NA     1    3
## 1469      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 1470      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1471        2 Lts. NR   Familiar No Retornable    NA       6     1    NA    4
## 1472      2.5 Lts. NR   Familiar No Retornable    11       4     7     7    7
## 1473   250 ml. NR PET Individual No Retornable     1       1     1     1    0
## 1474        400 ml NR Individual No Retornable     1       2     2     2    1
## 1475       500 ml Ret Individual    Retornable     2      NA     1     2   11
## 1476        600 ml NR Individual No Retornable     3       1     1     3    1
## 1477      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 1478        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1479    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1480        600 ml NR Individual No Retornable     6      10     4     4    6
## 1481      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1482      Lata 453 ml Individual No Retornable    NA       0    NA    NA   NA
## 1483        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1484        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1485        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1486     1 Ltro. N.R. Individual No Retornable     6      27    11     4    2
## 1487      1.5 Lts. NR Individual No Retornable     3       3    10    13    3
## 1488        5 Lts. NR   Familiar No Retornable    18      28    14    14   28
## 1489        600 ml NR Individual No Retornable    NA      10    NA     8   NA
## 1490        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1491      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 1492        473 ml NR Individual No Retornable     1       1     1     2    3
## 1493        600 ml NR Individual No Retornable     4       3     3     3    4
## 1494   250 ml. NR PET Individual No Retornable     6       2    NA     2    6
## 1495        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1496     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 1497    12 Oz. NR Pet Individual No Retornable    NA       1     2     1    1
## 1498        2 Lts. NR   Familiar No Retornable    NA      37    NA    28   NA
## 1499        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1500      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 1501      Lata 450 ml Individual No Retornable    NA      NA    NA    NA    1
## 1502    500 ml NR PET Individual No Retornable    NA       3    NA     1    1
## 1503     1 Ltro. N.R.   Familiar No Retornable     6       8     8     8   13
## 1504        2 Lts. NR   Familiar No Retornable     6       6     3    14    8
## 1505       2 Lts. Ret   Familiar    Retornable     6      NA     3     3    6
## 1506        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1507 500 ml NR Vidrio Individual No Retornable    17      32    17    21   40
## 1508         8 Oz. NR Individual No Retornable     2       1     4     3    3
## 1509             Lata Individual No Retornable    NA       2    NA     2    2
## 1510     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1511 500 ml NR Vidrio Individual No Retornable     2      NA     2     2    2
## 1512        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1513     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1514     1.250 Lts NR   Familiar No Retornable    48      71    32    42   77
## 1515      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1516     1.5 Lts. Ret   Familiar    Retornable    22      19    25    25   29
## 1517    12 Oz. NR Pet Individual No Retornable    17      12    15    15   30
## 1518        2 Lts. NR   Familiar No Retornable    NA      NA    NA     6   NA
## 1519       2 Lts. Ret   Familiar    Retornable    11       6     8     8   14
## 1520      2.5 Lts. NR   Familiar No Retornable    49      88    49    88  102
## 1521 2.5 Lts. Ret Pet   Familiar    Retornable    74     232    42   144  236
## 1522 500 ml NR Vidrio Individual No Retornable    25      53    11    19   44
## 1523       500 ml Ret Individual    Retornable    23     101    25    80  118
## 1524         8 Oz. NR Individual No Retornable     6       4     8     7    6
## 1525             Lata Individual No Retornable     5       5     3     7    6
## 1526      Lata 16 Oz. Individual No Retornable     2      NA    NA    NA   NA
## 1527      Lata 235 ml Individual No Retornable     6       6     4     6    4
## 1528        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1529     1 Ltro. N.R. Individual No Retornable    NA       2     1     1    1
## 1530    500 ml NR PET Individual No Retornable    NA      NA    NA     1    1
## 1531        600 ml NR Individual No Retornable     8      NA    NA    NA    3
## 1532    1 Ltro. Tetra   Familiar No Retornable     4      NA     4     2    2
## 1533     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 1534   250 ML. NR VID Individual No Retornable     1       2    NA     3    2
## 1535    413 ml NR VId Individual No Retornable     3      22    NA     1   NA
## 1536   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1537     1 Ltro. N.R.   Familiar No Retornable     4       2     2     2    4
## 1538   300 ML. NR PET Individual No Retornable     1       1     0     1    0
## 1539    1 Ltro. Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 1540    1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1541    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1542    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1543     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1544        600 ml NR Individual No Retornable     6       1     3     3    4
## 1545        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1546      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1547        2 Lts. NR   Familiar No Retornable     6       6     6     8    6
## 1548        400 ml NR Individual No Retornable     0       0    NA    NA   NA
## 1549       500 ml Ret Individual    Retornable    NA      NA     1     2    1
## 1550        600 ml NR Individual No Retornable     4       3     3     4    4
## 1551      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1552      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1553        2 Lts. NR   Familiar No Retornable    NA       3     6     3    8
## 1554        400 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 1555       500 ml Ret Individual    Retornable    NA      NA     1    NA    1
## 1556        600 ml NR Individual No Retornable     4       1     3     3    2
## 1557      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1558      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1559   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1560        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1561       500 ml Ret Individual    Retornable     2      NA     1    NA    1
## 1562        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 1563        600 ml NR Individual No Retornable     2       1     3     3    4
## 1564       12 Oz. Ret Individual    Retornable    NA       2    NA    NA   NA
## 1565        2 Lts. NR   Familiar No Retornable     3      17     8    14   20
## 1566        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 1567       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 1568        600 ml NR Individual No Retornable     4       3     4     4    4
## 1569      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1570      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1571        2 Lts. NR   Familiar No Retornable    NA      23     3    14   23
## 1572        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 1573       500 ml Ret Individual    Retornable    NA      NA     1    NA    1
## 1574        600 ml NR Individual No Retornable     4       3     4     4    4
## 1575      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1576    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1577        600 ml NR Individual No Retornable     6       8     7    13   10
## 1578      Lata 222 ml Individual No Retornable    NA      NA     3    NA   NA
## 1579      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1580        2 Lts. NR   Familiar No Retornable    NA       3    11    NA    3
## 1581        600 ml NR Individual No Retornable     3      NA     5     5    3
## 1582        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1583     1 Ltro. N.R. Individual No Retornable     6      15    21     2    2
## 1584      1.5 Lts. NR Individual No Retornable    10       6    16    13    6
## 1585   300 ML. NR PET Individual No Retornable    NA      NA     2     1   NA
## 1586    355 Ml NR Pet Individual No Retornable     3       3     5    NA    3
## 1587        5 Lts. NR   Familiar No Retornable     4       4     4    NA    7
## 1588        600 ml NR Individual No Retornable     5       8    10     3    5
## 1589     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1590   300 ML. NR PET Individual No Retornable     4       5     4     3    2
## 1591      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 1592        473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1593   250 ml. NR PET Individual No Retornable     1       0     1    NA    0
## 1594    500 ml NR PET Individual No Retornable    NA      NA     2    NA   NA
## 1595        600 ml NR Individual No Retornable     3       3    NA    NA    1
## 1596   250 ml. NR PET Individual No Retornable     7       5     4     7   NA
## 1597        400 ml NR Individual No Retornable     1       1    NA    NA   NA
## 1598     1 Ltro. N.R.   Familiar No Retornable     1       3     1     1    1
## 1599     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 1600    12 Oz. NR Pet Individual No Retornable     3       3     1     1    2
## 1601        2 Lts. NR   Familiar No Retornable     8      17     3    20    6
## 1602        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1603      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 1604      Lata 450 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1605    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1606      Lata 235 ml Individual No Retornable     1       1    NA    NA   NA
## 1607 500 ml NR Vidrio Individual No Retornable     4       2     8    NA    8
## 1608      Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 1609 500 ml NR Vidrio Individual No Retornable     2      NA    NA     2   NA
## 1610     1 Ltro. N.R.   Familiar No Retornable    NA       4     2     6   NA
## 1611     1.250 Lts NR   Familiar No Retornable    21      11    29    NA   11
## 1612      1.5 Lts. NR   Familiar No Retornable    25      25    25     3   29
## 1613     1.5 Lts. Ret   Familiar    Retornable    25      32    16    38   29
## 1614     1.750 Lts NR   Familiar No Retornable    NA      NA    NA     2   NA
## 1615    12 Oz. NR Pet Individual No Retornable    15      17    27    30   26
## 1616       12 Oz. Ret Individual    Retornable    NA      NA    NA     3   NA
## 1617        2 Lts. NR   Familiar No Retornable    NA       3    NA     6   NA
## 1618       2 Lts. Ret   Familiar    Retornable    NA       6     3    NA   NA
## 1619      2.5 Lts. NR   Familiar No Retornable    70     116   102    77   67
## 1620 2.5 Lts. Ret Pet   Familiar    Retornable    56      88   106    42   74
## 1621    500 ml NR PET Individual No Retornable     2       2    15    NA   NA
## 1622 500 ml NR Vidrio Individual No Retornable    19       6    27    23    4
## 1623       500 ml Ret Individual    Retornable    72      85    82   139  104
## 1624         8 Oz. NR Individual No Retornable     4       4     4     3    4
## 1625             Lata Individual No Retornable     2       2     6     5   NA
## 1626      Lata 16 Oz. Individual No Retornable     6       4     6     2    6
## 1627      Lata 235 ml Individual No Retornable     8       7     8     3    8
## 1628        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1629     1 Ltro. N.R. Individual No Retornable     1       1     1     8    4
## 1630    500 ml NR PET Individual No Retornable     3      NA     1     5    2
## 1631        600 ml NR Individual No Retornable    10       4     5    15   13
## 1632    1 Ltro. Tetra   Familiar No Retornable    NA      NA     2     1    1
## 1633  125 ml NR Tetra Individual No Retornable     1       1     1    NA    1
## 1634     250 ml Tetra Individual No Retornable     4       2     2     1    0
## 1635   250 ML. NR VID Individual No Retornable     1       3    NA    NA    2
## 1636    413 ml NR VId Individual No Retornable    14      11     7    10   16
## 1637      Lata 335 ml Individual No Retornable    NA      NA     1    NA   NA
## 1638   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1639     1 Ltro. N.R.   Familiar No Retornable    NA       2     4     2    2
## 1640   300 ML. NR PET Individual No Retornable     1       0     1     1   NA
## 1641    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1642    1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1643     200 ml Tetra Individual No Retornable     0       0     1     0    0
## 1644        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1645      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1646      1.5 Lts. NR   Familiar No Retornable    NA       4    NA    NA   NA
## 1647     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1648        2 Lts. NR   Familiar No Retornable     3      NA    11     6    6
## 1649       2 Lts. Ret   Familiar    Retornable    NA      NA    NA     1   NA
## 1650      2.5 Lts. NR   Familiar No Retornable     7       7     7     8    7
## 1651   250 ml. NR PET Individual No Retornable     1       0     1    NA    0
## 1652        400 ml NR Individual No Retornable     3       5     5     3    8
## 1653       500 ml Ret Individual    Retornable    NA       1     2     2   NA
## 1654        600 ml NR Individual No Retornable     3       6    NA     2   NA
## 1655      Lata 235 ml Individual No Retornable    NA       1     1    NA    2
## 1656      1.5 Lts. NR   Familiar No Retornable     3       2    NA    NA   NA
## 1657     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1658        2 Lts. NR   Familiar No Retornable    NA       6     8     8   11
## 1659       2 Lts. Ret   Familiar    Retornable    NA      NA    NA     1   NA
## 1660      2.5 Lts. NR   Familiar No Retornable     7      25    18     1    4
## 1661   250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 1662        400 ml NR Individual No Retornable     5       2     9     5    8
## 1663    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1664       500 ml Ret Individual    Retornable    NA       3     2     2    2
## 1665        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1666      Lata 235 ml Individual No Retornable    NA       1     1    NA    2
## 1667      1.5 Lts. NR   Familiar No Retornable    NA       2    NA    NA   NA
## 1668        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 1669       2 Lts. Ret   Familiar    Retornable    NA      NA    NA     1   NA
## 1670      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA     1   NA
## 1671   250 ml. NR PET Individual No Retornable     1       0     1    NA    0
## 1672        400 ml NR Individual No Retornable     0      NA    NA    NA    1
## 1673       500 ml Ret Individual    Retornable    NA       1     2     2    2
## 1674        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1675        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 1676     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1677        2 Lts. NR   Familiar No Retornable    NA      NA     6    NA    8
## 1678      2.5 Lts. NR   Familiar No Retornable     7       4     4     4   NA
## 1679        400 ml NR Individual No Retornable    NA      NA     3     0    4
## 1680       500 ml Ret Individual    Retornable     2      NA    NA    NA    6
## 1681        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1682      Lata 235 ml Individual No Retornable    NA       1     1    NA    2
## 1683      1.5 Lts. NR   Familiar No Retornable    NA       2    NA    NA   NA
## 1684     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1685     1.750 Lts NR   Familiar No Retornable    NA      NA    NA     2   NA
## 1686        2 Lts. NR   Familiar No Retornable     3      NA     6     3    8
## 1687       2 Lts. Ret   Familiar    Retornable    NA      NA    NA     1   NA
## 1688      2.5 Lts. NR   Familiar No Retornable    NA      14     4     4    7
## 1689   250 ml. NR PET Individual No Retornable     1       0     1    NA    0
## 1690        400 ml NR Individual No Retornable     2       3     5     3    5
## 1691       500 ml Ret Individual    Retornable    NA       3     2     2    2
## 1692        600 ml NR Individual No Retornable    NA       2    NA    NA   NA
## 1693      Lata 235 ml Individual No Retornable    NA       1     1    NA    2
## 1694        600 ml NR Individual No Retornable     1      NA    NA     1    1
## 1695      Lata 222 ml Individual No Retornable    NA       0    NA    NA   NA
## 1696      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1697        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA    3
## 1698        600 ml NR Individual No Retornable     1       4    NA     5    5
## 1699        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1700     1 Ltro. N.R. Individual No Retornable     2      95     2     2   27
## 1701      1.5 Lts. NR Individual No Retornable     6     101     3    16   35
## 1702   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1703        5 Lts. NR   Familiar No Retornable     7      14    NA    18    7
## 1704        600 ml NR Individual No Retornable     5      36    NA     8   10
## 1705        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1706   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1707        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1708        473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1709   250 ml. NR PET Individual No Retornable     1       0     0     0    0
## 1710        600 ml NR Individual No Retornable     5       4    NA    NA   NA
## 1711   250 ml. NR PET Individual No Retornable    NA       2    NA     1   NA
## 1712        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1713     1 Ltro. N.R.   Familiar No Retornable    NA       1    NA     1   NA
## 1714     1 Ltro. N.R. Individual No Retornable     2       4     2     2    4
## 1715  100 ml NR Tetra Individual No Retornable    NA       4    NA    NA   NA
## 1716    12 Oz. NR Pet Individual No Retornable    NA       2     1     1   NA
## 1717        2 Lts. NR   Familiar No Retornable     3       8     3    11    3
## 1718        600 ml NR Individual No Retornable    NA      NA    NA     3    1
## 1719      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1720      Lata 450 ml Individual No Retornable     1      NA     1    NA   NA
## 1721    500 ml NR PET Individual No Retornable     3      NA    NA    NA   NA
## 1722     1 Ltro. N.R.   Familiar No Retornable     2       2    NA    NA   NA
## 1723    237 ml NR Vid Individual No Retornable     1      NA    NA    NA   NA
## 1724 500 ml NR Vidrio Individual No Retornable     4       2     2     2    4
## 1725      Lata 235 ml Individual No Retornable    NA       1    NA     1   NA
## 1726     1 Ltro. N.R.   Familiar No Retornable    23      23    30    40   42
## 1727       12 Oz. Ret Individual    Retornable     6       8     6     9   14
## 1728        2 Lts. NR   Familiar No Retornable    28      31    37    34   59
## 1729       2 Lts. Ret   Familiar    Retornable     6       6     8     8   11
## 1730        400 ml NR Individual No Retornable     3      14     5    19   14
## 1731 500 ml NR Vidrio Individual No Retornable    36      40    34    32   49
## 1732         8 Oz. NR Individual No Retornable     3       4     3     8    8
## 1733             Lata Individual No Retornable     3       3     3     5    5
## 1734      Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 1735     1 Ltro. N.R.   Familiar No Retornable     8       4     8     8   11
## 1736        2 Lts. NR   Familiar No Retornable     8       8    11    11    8
## 1737 500 ml NR Vidrio Individual No Retornable     6       6     6     2    6
## 1738         8 Oz. NR Individual No Retornable    NA       2    NA     1    1
## 1739             Lata Individual No Retornable    NA      NA    NA     2   NA
## 1740     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    4
## 1741     1.250 Lts NR   Familiar No Retornable    53      53    53    90   69
## 1742      1.5 Lts. NR   Familiar No Retornable    NA       6     6     6    6
## 1743     1.5 Lts. Ret   Familiar    Retornable     3       3     3    NA    3
## 1744    12 Oz. NR Pet Individual No Retornable    17      17    17    21   32
## 1745       12 Oz. Ret Individual    Retornable    17      17    20    27   29
## 1746        2 Lts. NR   Familiar No Retornable    28      28    25    62   73
## 1747       2 Lts. Ret   Familiar    Retornable     6       6     6     8   14
## 1748      2.5 Lts. NR   Familiar No Retornable    81      85    77    70   85
## 1749 2.5 Lts. Ret Pet   Familiar    Retornable    35      28    32    28   28
## 1750        400 ml NR Individual No Retornable     7       2     3    NA    5
## 1751    500 ml NR PET Individual No Retornable    21      15    13    25   15
## 1752 500 ml NR Vidrio Individual No Retornable    49      55    38    49   72
## 1753       500 ml Ret Individual    Retornable    55      53    38    57   80
## 1754      6.5 Oz. Ret Individual    Retornable     2       2     1     2    2
## 1755        710 ml NR Individual No Retornable     6       3     9    18   18
## 1756         8 Oz. NR Individual No Retornable    13      13    12    20   22
## 1757             Lata Individual No Retornable     5       6     6     8    8
## 1758      Lata 16 Oz. Individual No Retornable     2       2     4     6    8
## 1759      Lata 235 ml Individual No Retornable     4       6     4     5    6
## 1760        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1761     1 Ltro. N.R. Individual No Retornable     2       1     1     1    2
## 1762    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 1763        600 ml NR Individual No Retornable     1      NA     2     3    3
## 1764    1 Ltro. Tetra   Familiar No Retornable     2       1     1     5    2
## 1765     250 ml Tetra Individual No Retornable     2       1     2     1   NA
## 1766   250 ML. NR VID Individual No Retornable     1       1     1     2    2
## 1767    413 ml NR VId Individual No Retornable     3      13    NA     1    2
## 1768      Lata 335 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1769   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1770     1 Ltro. N.R.   Familiar No Retornable     2       2     2     6    2
## 1771   300 ML. NR PET Individual No Retornable     0       1    NA     1    1
## 1772    1 Ltro. Tetra   Familiar No Retornable     1       4     7    NA    3
## 1773    1 Ltro. Tetra   Familiar No Retornable     1       3     4     3   NA
## 1774    1 Ltro. Tetra   Familiar No Retornable     4       1     7    NA   NA
## 1775    1 Ltro. Tetra   Familiar No Retornable     5       2     6     5    5
## 1776     200 ml Tetra Individual No Retornable     1       1     0     1    1
## 1777        600 ml NR Individual No Retornable     3       4     5     8    9
## 1778        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1779      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1780     1 Ltro. N.R.   Familiar No Retornable     2       2     2     4    4
## 1781     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1782        2 Lts. NR   Familiar No Retornable    NA      NA     3     3   11
## 1783   250 ml. NR PET Individual No Retornable     1       0     0     0    0
## 1784        400 ml NR Individual No Retornable     2       2     4     3    6
## 1785       500 ml Ret Individual    Retornable     1       1     1     1    3
## 1786        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1787      Lata 235 ml Individual No Retornable    NA       1     1     0    0
## 1788     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1789        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1790   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 1791        400 ml NR Individual No Retornable     1      NA     1    NA   NA
## 1792       500 ml Ret Individual    Retornable     1       1     1     1    3
## 1793      Lata 235 ml Individual No Retornable    NA       1     1     0    0
## 1794     1 Ltro. N.R.   Familiar No Retornable     2       2     2    NA   NA
## 1795        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1796   250 ml. NR PET Individual No Retornable     1       0     0     0    0
## 1797        400 ml NR Individual No Retornable     1      NA     4    NA    2
## 1798    500 ml NR PET Individual No Retornable     2      NA    NA    NA   NA
## 1799       500 ml Ret Individual    Retornable     1       1     1     1    3
## 1800        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1801        600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 1802     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1803        2 Lts. NR   Familiar No Retornable     6       3     3     3    6
## 1804        400 ml NR Individual No Retornable    NA      NA     2     2    2
## 1805       500 ml Ret Individual    Retornable     2       2    NA     2    2
## 1806        600 ml NR Individual No Retornable    NA      NA     1     4    1
## 1807      Lata 235 ml Individual No Retornable    NA       1     1     0    0
## 1808     1 Ltro. N.R.   Familiar No Retornable     6       6     4     4    4
## 1809      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1810     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1811       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1812        2 Lts. NR   Familiar No Retornable     8       6     6     6    3
## 1813   250 ml. NR PET Individual No Retornable     1       0     0     0    0
## 1814        400 ml NR Individual No Retornable     4      NA     4     5    7
## 1815    500 ml NR PET Individual No Retornable     4      NA    NA    NA   NA
## 1816       500 ml Ret Individual    Retornable     1       1     1     1    3
## 1817        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1818      Lata 235 ml Individual No Retornable    NA       1     1     0    0
## 1819        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1820        600 ml NR Individual No Retornable     6       2     3    10    7
## 1821      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1822        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1823     1 Ltro. N.R. Individual No Retornable     2       8     6     6   13
## 1824      1.5 Lts. NR Individual No Retornable     6       6     3     6    6
## 1825        5 Lts. NR   Familiar No Retornable    11       7     4     7    7
## 1826        600 ml NR Individual No Retornable     3       3     3     3    5
## 1827   300 ML. NR PET Individual No Retornable     1       1     1     1    0
## 1828        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1829   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 1830        600 ml NR Individual No Retornable     1       2     1     1    3
## 1831   250 ml. NR PET Individual No Retornable     1       0     1     1    2
## 1832        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1833     1 Ltro. N.R.   Familiar No Retornable    NA       1     1    NA   NA
## 1834     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 1835    12 Oz. NR Pet Individual No Retornable    NA       2     1     1   NA
## 1836        2 Lts. NR   Familiar No Retornable     3       3    NA     3    3
## 1837 500 ml NR Vidrio Individual No Retornable     2      NA    NA    NA   NA
## 1838      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1839     1 Ltro. N.R.   Familiar No Retornable     6      13     8    13   11
## 1840       12 Oz. Ret Individual    Retornable     5       3     3     5    3
## 1841        2 Lts. NR   Familiar No Retornable     6       8     6     6   11
## 1842       2 Lts. Ret   Familiar    Retornable     6       3     3    11    6
## 1843      2.5 Lts. NR   Familiar No Retornable     7       4     4     4    7
## 1844        400 ml NR Individual No Retornable    12      12     8    17   15
## 1845 500 ml NR Vidrio Individual No Retornable     8       6     6    13   11
## 1846         8 Oz. NR Individual No Retornable     1       1     1    NA    1
## 1847             Lata Individual No Retornable     5       2     5     5    6
## 1848      Lata 235 ml Individual No Retornable     1      NA     1    NA    1
## 1849     1 Ltro. N.R.   Familiar No Retornable    NA      NA     2    NA    2
## 1850        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 1851 500 ml NR Vidrio Individual No Retornable     2      NA     4    NA    2
## 1852         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 1853     1 Ltro. N.R.   Familiar No Retornable     4       6     8     8   13
## 1854     1.250 Lts NR   Familiar No Retornable    11      11    16    11   18
## 1855      1.5 Lts. NR   Familiar No Retornable     6       6    10     6    6
## 1856     1.5 Lts. Ret   Familiar    Retornable     3       3     3    NA    3
## 1857    12 Oz. NR Pet Individual No Retornable     3       3     3     5    2
## 1858       12 Oz. Ret Individual    Retornable     6       6     6     6    9
## 1859        2 Lts. NR   Familiar No Retornable     8      23     8    17   23
## 1860       2 Lts. Ret   Familiar    Retornable     8       6     6    14    8
## 1861      2.5 Lts. NR   Familiar No Retornable     7      18    14    11   18
## 1862 2.5 Lts. Ret Pet   Familiar    Retornable    25      56    35    53   53
## 1863 500 ml NR Vidrio Individual No Retornable    21      25    19    23   23
## 1864       500 ml Ret Individual    Retornable    23      15    53     8   36
## 1865         8 Oz. NR Individual No Retornable     5       7     6     6    8
## 1866             Lata Individual No Retornable     2       5     2     5    2
## 1867      Lata 16 Oz. Individual No Retornable    NA      NA     2    NA    2
## 1868      Lata 235 ml Individual No Retornable     2       7     5     2    4
## 1869     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 1870    500 ml NR PET Individual No Retornable     1       2     1     2    2
## 1871        600 ml NR Individual No Retornable     1      NA     1     1    2
## 1872    1 Ltro. Tetra   Familiar No Retornable     5       2     3     2    3
## 1873     250 ml Tetra Individual No Retornable     2       0     0    NA   NA
## 1874   250 ML. NR VID Individual No Retornable     1       1     1     1    1
## 1875    413 ml NR VId Individual No Retornable     2       1     1     2    1
## 1876    500 ml NR PET Individual No Retornable     6       2     2     5    3
## 1877     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA     2   NA
## 1878   300 ML. NR PET Individual No Retornable    NA       1     0     1    1
## 1879    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1880     200 ml Tetra Individual No Retornable     0       0     0    NA   NA
## 1881        600 ml NR Individual No Retornable     4       4     2     4    3
## 1882        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1883      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1884     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1885       12 Oz. Ret Individual    Retornable     2      NA     2     2    2
## 1886        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA    6
## 1887   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 1888        400 ml NR Individual No Retornable     0      NA    NA     1   NA
## 1889       500 ml Ret Individual    Retornable     2      NA     2    NA   NA
## 1890        600 ml NR Individual No Retornable    NA       1     1     3    1
## 1891      Lata 235 ml Individual No Retornable    NA       1     0     0   NA
## 1892     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1893       12 Oz. Ret Individual    Retornable     0      NA    NA    NA   NA
## 1894        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1895   250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 1896       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1897        600 ml NR Individual No Retornable     1      NA    NA     1    1
## 1898      Lata 235 ml Individual No Retornable    NA       1     0     0   NA
## 1899       12 Oz. Ret Individual    Retornable     0       2    NA    NA   NA
## 1900   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 1901        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1902       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 1903        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1904        600 ml NR Individual No Retornable     1       1     3     1    2
## 1905     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1906       12 Oz. Ret Individual    Retornable    NA      NA    NA     2   NA
## 1907        2 Lts. NR   Familiar No Retornable     3       6     3     3    3
## 1908        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 1909       500 ml Ret Individual    Retornable     2       2     2    NA    2
## 1910        600 ml NR Individual No Retornable     1       1     1     3    1
## 1911      Lata 235 ml Individual No Retornable    NA       1     0     0   NA
## 1912     1 Ltro. N.R.   Familiar No Retornable     2       2    NA     4   NA
## 1913     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1914       12 Oz. Ret Individual    Retornable     2      NA     2     2    3
## 1915        2 Lts. NR   Familiar No Retornable    NA       3     6     3    3
## 1916   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 1917        400 ml NR Individual No Retornable    NA       0     2     1    1
## 1918       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1919        600 ml NR Individual No Retornable     1       4     3     3    3
## 1920      Lata 235 ml Individual No Retornable    NA       1     0     0   NA
## 1921        600 ml NR Individual No Retornable     4       3     6     3   10
## 1922      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1923        600 ml NR Individual No Retornable     2      NA     1     1    1
## 1924      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1925        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1926     1 Ltro. N.R. Individual No Retornable     4       2    NA     4   11
## 1927      1.5 Lts. NR Individual No Retornable     3       3    NA    10   13
## 1928   300 ML. NR PET Individual No Retornable    NA      NA     1     0   NA
## 1929        5 Lts. NR   Familiar No Retornable     4      NA    NA    NA   NA
## 1930        600 ml NR Individual No Retornable     8      NA    NA    NA   NA
## 1931   300 ML. NR PET Individual No Retornable    NA      NA    NA     1   NA
## 1932   250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 1933        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1934   250 ml. NR PET Individual No Retornable     1      NA    NA     2    1
## 1935        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1936     1 Ltro. N.R.   Familiar No Retornable    NA       1    NA     1   NA
## 1937     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA    2
## 1938    12 Oz. NR Pet Individual No Retornable    NA       1    NA     1    1
## 1939        2 Lts. NR   Familiar No Retornable    NA      NA     3     3    6
## 1940        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 1941      Lata 235 ml Individual No Retornable    NA       0    NA    NA    0
## 1942      Lata 450 ml Individual No Retornable     1      NA    NA    NA    1
## 1943    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 1944     1 Ltro. N.R.   Familiar No Retornable     2       2    NA    NA   NA
## 1945 500 ml NR Vidrio Individual No Retornable     2       2     4    NA   NA
## 1946      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1947     1 Ltro. N.R.   Familiar No Retornable    11      11    11     2   13
## 1948     1.250 Lts NR   Familiar No Retornable     8       8     8     8   13
## 1949      1.5 Lts. NR   Familiar No Retornable    16       3     6     6   13
## 1950     1.5 Lts. Ret   Familiar    Retornable    10       6     3     6    6
## 1951    12 Oz. NR Pet Individual No Retornable     2       2     3     2    2
## 1952        2 Lts. NR   Familiar No Retornable    NA      NA    NA     1   NA
## 1953      2.5 Lts. NR   Familiar No Retornable    63      39    35    11   95
## 1954 2.5 Lts. Ret Pet   Familiar    Retornable    25      21    14    11    4
## 1955    500 ml NR PET Individual No Retornable     4       6     6     2    4
## 1956 500 ml NR Vidrio Individual No Retornable    15      11    13     6   15
## 1957       500 ml Ret Individual    Retornable    40      27    25    25   19
## 1958         8 Oz. NR Individual No Retornable     1       1     1    NA   NA
## 1959             Lata Individual No Retornable     6       2     3    NA    3
## 1960      Lata 16 Oz. Individual No Retornable     2       4     4     2    6
## 1961      Lata 235 ml Individual No Retornable     5       3     3     2    4
## 1962        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1963     1 Ltro. N.R. Individual No Retornable    NA       1    NA     1    1
## 1964    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 1965        600 ml NR Individual No Retornable    NA      NA    NA     2   NA
## 1966     250 ml Tetra Individual No Retornable    NA       0     0     2    0
## 1967   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 1968    413 ml NR VId Individual No Retornable    NA      NA    NA     3    0
## 1969   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1970     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1971   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 1972    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 1973    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA     1    2
## 1974    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1975     200 ml Tetra Individual No Retornable    NA       0     0     0    0
## 1976        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1977      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1978      1.5 Lts. NR   Familiar No Retornable     2       2     2     2    2
## 1979     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1980        2 Lts. NR   Familiar No Retornable     4       1    NA     1   NA
## 1981      2.5 Lts. NR   Familiar No Retornable     2       3     1     2   NA
## 1982   250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 1983        400 ml NR Individual No Retornable    NA      NA     1    NA    0
## 1984       500 ml Ret Individual    Retornable     1       1    NA     1    3
## 1985        600 ml NR Individual No Retornable     1       1     1    NA    1
## 1986             Lata Individual No Retornable     0      NA    NA    NA   NA
## 1987      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 1988      1.5 Lts. NR   Familiar No Retornable     2       2     2     2    2
## 1989     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1990        2 Lts. NR   Familiar No Retornable     1       1     3     1    8
## 1991      2.5 Lts. NR   Familiar No Retornable     9       3     4     5    4
## 1992   250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 1993        400 ml NR Individual No Retornable     1       0     1     0    1
## 1994       500 ml Ret Individual    Retornable     3       3     2     1    5
## 1995        600 ml NR Individual No Retornable     2       3     1     1    1
## 1996             Lata Individual No Retornable     0      NA    NA    NA   NA
## 1997      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 1998      1.5 Lts. NR   Familiar No Retornable     2       2     2     2    2
## 1999        2 Lts. NR   Familiar No Retornable     1       1    NA     1   NA
## 2000      2.5 Lts. NR   Familiar No Retornable     2       3     3     2   NA
## 2001   250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 2002        400 ml NR Individual No Retornable     1      NA     0     0    0
## 2003       500 ml Ret Individual    Retornable     1       1    NA     1    3
## 2004        600 ml NR Individual No Retornable     1       1     1    NA    1
## 2005             Lata Individual No Retornable     0      NA    NA    NA   NA
## 2006        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2007     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2008   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2009       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2010      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 2011      1.5 Lts. NR   Familiar No Retornable     2       2     2     2    2
## 2012     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2013        2 Lts. NR   Familiar No Retornable     1       1    NA     1    6
## 2014      2.5 Lts. NR   Familiar No Retornable     2       3     3     2   NA
## 2015   250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 2016        400 ml NR Individual No Retornable     1       0     1     0    1
## 2017       500 ml Ret Individual    Retornable     1       1    NA     1    3
## 2018        600 ml NR Individual No Retornable     4       2     1    NA    1
## 2019             Lata Individual No Retornable     0      NA    NA    NA   NA
## 2020      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 2021    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2022        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2023      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2024      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2025        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 2026        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2027     1 Ltro. N.R. Individual No Retornable    15      49    40    25   59
## 2028      1.5 Lts. NR Individual No Retornable    10      13    NA    10   60
## 2029   300 ML. NR PET Individual No Retornable    NA      NA     0    NA    0
## 2030        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2031        600 ml NR Individual No Retornable    13      25    13    15   10
## 2032        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2033   300 ML. NR PET Individual No Retornable     1       3    NA    NA    2
## 2034     1 Ltro. N.R. Individual No Retornable     3       6     1     2    8
## 2035        600 ml NR Individual No Retornable     6       3     2    NA    8
## 2036        473 ml NR Individual No Retornable     1       3     1     1    2
## 2037   250 ml. NR PET Individual No Retornable     0       2    NA    NA   NA
## 2038        600 ml NR Individual No Retornable     8       5     3     3    5
## 2039   250 ml. NR PET Individual No Retornable     8       8     5     6   12
## 2040        400 ml NR Individual No Retornable     0       1     1     0    0
## 2041     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA     1    1
## 2042     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA    2
## 2043    12 Oz. NR Pet Individual No Retornable    NA      NA     1     1    1
## 2044        2 Lts. NR   Familiar No Retornable     8       6     8     6   14
## 2045        600 ml NR Individual No Retornable     3       1    NA    NA   NA
## 2046      Lata 235 ml Individual No Retornable     1       0     1     1    2
## 2047      Lata 450 ml Individual No Retornable     2       4     4     4   11
## 2048    500 ml NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2049     1 Ltro. N.R.   Familiar No Retornable    NA       4    NA    NA   NA
## 2050    237 ml NR Vid Individual No Retornable     1       2     1    NA    1
## 2051 500 ml NR Vidrio Individual No Retornable    NA       2    NA     2    2
## 2052     1 Ltro. N.R.   Familiar No Retornable     8       6    17    NA   15
## 2053       12 Oz. Ret Individual    Retornable     2       3     3     2    5
## 2054        2 Lts. NR   Familiar No Retornable    14      14    14    20   23
## 2055       2 Lts. Ret   Familiar    Retornable     3       8     6    14   11
## 2056 500 ml NR Vidrio Individual No Retornable     6      17    13    17   30
## 2057         8 Oz. NR Individual No Retornable     7       4     8     7    6
## 2058             Lata Individual No Retornable    NA      NA    NA     2    2
## 2059      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2060     1 Ltro. N.R.   Familiar No Retornable     4       6    11    NA    8
## 2061        2 Lts. NR   Familiar No Retornable     8       8     3     8    6
## 2062 500 ml NR Vidrio Individual No Retornable    NA       6    NA     4    4
## 2063         8 Oz. NR Individual No Retornable    NA       2    NA    NA   NA
## 2064     1 Ltro. N.R.   Familiar No Retornable    11      17    23    NA   38
## 2065     1.250 Lts NR   Familiar No Retornable    40      61    63    NA   66
## 2066      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2067     1.5 Lts. Ret   Familiar    Retornable    10       3     6     6    6
## 2068    12 Oz. NR Pet Individual No Retornable    27      20    30    15   27
## 2069       12 Oz. Ret Individual    Retornable     2      18    18    NA    3
## 2070        2 Lts. NR   Familiar No Retornable    42      59    34    42   28
## 2071       2 Lts. Ret   Familiar    Retornable    14      17    14     8   17
## 2072      2.5 Lts. NR   Familiar No Retornable    63     194    85    42   92
## 2073 2.5 Lts. Ret Pet   Familiar    Retornable    32      56    63    42   56
## 2074    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2075 500 ml NR Vidrio Individual No Retornable    46      95    51    25   78
## 2076       500 ml Ret Individual    Retornable    53      91    59   114   95
## 2077         8 Oz. NR Individual No Retornable    14      24    12     8   17
## 2078             Lata Individual No Retornable     3       5    14     2    8
## 2079      Lata 16 Oz. Individual No Retornable    NA       6    12     2    6
## 2080      Lata 235 ml Individual No Retornable     4       4    11     4    7
## 2081        600 ml NR Individual No Retornable    NA       3     2     3    3
## 2082     1 Ltro. N.R. Individual No Retornable     4       3     2     3    8
## 2083    500 ml NR PET Individual No Retornable     8       6     5     6    7
## 2084        600 ml NR Individual No Retornable     8       8     8    10   11
## 2085    1 Ltro. Tetra   Familiar No Retornable     6       2     2    NA    4
## 2086  125 ml NR Tetra Individual No Retornable     1       1     0     1    2
## 2087     250 ml Tetra Individual No Retornable     5       1     1     2    0
## 2088   250 ML. NR VID Individual No Retornable     7       6    NA     2    5
## 2089    413 ml NR VId Individual No Retornable    14      19    10    13   19
## 2090   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2091     1 Ltro. N.R.   Familiar No Retornable     2      NA     4     2    2
## 2092   300 ML. NR PET Individual No Retornable     2       3     0     1    2
## 2093    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2094    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2095    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2096    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2097     200 ml Tetra Individual No Retornable    NA      NA    NA     0    0
## 2098        600 ml NR Individual No Retornable     2       2    NA     3    1
## 2099      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2100        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2101      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2102      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 2103     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2104        2 Lts. NR   Familiar No Retornable    NA       6     3     6    1
## 2105      2.5 Lts. NR   Familiar No Retornable     4       4    NA    NA   14
## 2106   250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 2107        400 ml NR Individual No Retornable     0       0     1     1    1
## 2108       500 ml Ret Individual    Retornable     1       1     6     1    2
## 2109        600 ml NR Individual No Retornable     3       2     4     4    3
## 2110             Lata Individual No Retornable    NA      NA     0     0   NA
## 2111      Lata 235 ml Individual No Retornable    NA       1     0    NA   NA
## 2112      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 2113     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2114        2 Lts. NR   Familiar No Retornable     3      NA     6     3    1
## 2115      2.5 Lts. NR   Familiar No Retornable    NA       4    NA     4   18
## 2116   250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 2117        400 ml NR Individual No Retornable     0       0     0     1   NA
## 2118       500 ml Ret Individual    Retornable     1       1     2     5   NA
## 2119        600 ml NR Individual No Retornable     4       4     6     4    5
## 2120             Lata Individual No Retornable    NA      NA     0     0   NA
## 2121      Lata 235 ml Individual No Retornable    NA       1     0    NA   NA
## 2122      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 2123        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 2124      2.5 Lts. NR   Familiar No Retornable    NA       4    NA    NA   NA
## 2125   250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 2126        400 ml NR Individual No Retornable     0      NA     0     1   NA
## 2127       500 ml Ret Individual    Retornable     1       1    NA     1   NA
## 2128        600 ml NR Individual No Retornable     1       3     1     2    1
## 2129             Lata Individual No Retornable    NA      NA     0     0   NA
## 2130        600 ml NR Individual No Retornable     3       3     4     4    3
## 2131     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2132        2 Lts. NR   Familiar No Retornable    NA      11     8    NA    1
## 2133      2.5 Lts. NR   Familiar No Retornable     7       4    NA    NA   21
## 2134        400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2135       500 ml Ret Individual    Retornable    NA      NA     4    NA    2
## 2136        600 ml NR Individual No Retornable     4       5     3     5    4
## 2137      Lata 235 ml Individual No Retornable    NA       1     0    NA   NA
## 2138      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 2139     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2140       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2141        2 Lts. NR   Familiar No Retornable    NA      11     6    NA    1
## 2142      2.5 Lts. NR   Familiar No Retornable     7      11    NA     4   28
## 2143   250 ml. NR PET Individual No Retornable     0       0    NA    NA    3
## 2144        400 ml NR Individual No Retornable     1      NA     1     1   NA
## 2145       500 ml Ret Individual    Retornable     1       1    NA     3    6
## 2146        600 ml NR Individual No Retornable     4       8     6     5    8
## 2147             Lata Individual No Retornable    NA      NA     0     0   NA
## 2148      Lata 235 ml Individual No Retornable    NA       1     0    NA   NA
## 2149     1 Ltro. N.R. Individual No Retornable    NA       1     1    NA   NA
## 2150    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2151        600 ml NR Individual No Retornable    30      50    25    37   36
## 2152      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2153      Lata 453 ml Individual No Retornable    NA       1     1     3    7
## 2154        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2155        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2156        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2157     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2    2
## 2158      1.5 Lts. NR Individual No Retornable    NA      NA    NA     3    3
## 2159   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2160        600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 2161   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2162   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2163   250 ml. NR PET Individual No Retornable     1      NA     1     1   NA
## 2164     1 Ltro. N.R.   Familiar No Retornable    NA       1    NA     1   NA
## 2165    12 Oz. NR Pet Individual No Retornable    NA       1     1     1   NA
## 2166        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 2167      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2168     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA     4    2
## 2169        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 2170       2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2171 500 ml NR Vidrio Individual No Retornable   142      25    NA     6   66
## 2172     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2173     1.250 Lts NR   Familiar No Retornable   124      85    NA    26   95
## 2174      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2175     1.5 Lts. Ret   Familiar    Retornable   206     117    25    63   86
## 2176    12 Oz. NR Pet Individual No Retornable    11       8     2    23   15
## 2177       12 Oz. Ret Individual    Retornable    15      NA    NA    NA   32
## 2178        2 Lts. NR   Familiar No Retornable    NA      NA    NA     6   17
## 2179       2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2180      2.5 Lts. NR   Familiar No Retornable   310     113    NA    14   46
## 2181 2.5 Lts. Ret Pet   Familiar    Retornable   778     419    67   335  257
## 2182        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2183    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    2
## 2184 500 ml NR Vidrio Individual No Retornable   152      38    NA    70   82
## 2185       500 ml Ret Individual    Retornable   934     579   254   311  353
## 2186         8 Oz. NR Individual No Retornable     8       6     2    17    5
## 2187             Lata Individual No Retornable     2       2     2    NA    2
## 2188      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 2189      Lata 235 ml Individual No Retornable    NA       1    NA    NA    3
## 2190     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1   NA
## 2191    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 2192        600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 2193     250 ml Tetra Individual No Retornable     0       0    NA     0   NA
## 2194   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 2195    413 ml NR VId Individual No Retornable     1      NA    NA     5   NA
## 2196   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2197     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2198     200 ml Tetra Individual No Retornable    NA       0    NA     0   NA
## 2199        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2200      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2201      1.5 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2202     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2203       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2204        2 Lts. NR   Familiar No Retornable    NA       6     1     3   20
## 2205   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 2206        400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2207       500 ml Ret Individual    Retornable    10       7     2     3   16
## 2208        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2209      Lata 235 ml Individual No Retornable    NA      NA    NA     0    1
## 2210      1.5 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2211       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2212        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA    3
## 2213   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2214        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 2215       500 ml Ret Individual    Retornable   223      64    32    73   29
## 2216      Lata 235 ml Individual No Retornable    NA      NA    NA     0    1
## 2217      1.5 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2218       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2219        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 2220   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2221        400 ml NR Individual No Retornable    NA      NA    NA     0    1
## 2222       500 ml Ret Individual    Retornable   244       1    21    39   45
## 2223        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   11
## 2224       500 ml Ret Individual    Retornable     4      NA     4     4   NA
## 2225      Lata 235 ml Individual No Retornable    NA      NA    NA     0    1
## 2226      1.5 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2227     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2228       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2229        2 Lts. NR   Familiar No Retornable     3      NA     4    NA    8
## 2230   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2231        400 ml NR Individual No Retornable    NA      NA    NA     0    1
## 2232       500 ml Ret Individual    Retornable     1       5     4    22   20
## 2233      Lata 235 ml Individual No Retornable    NA      NA    NA     0    1
## 2234        600 ml NR Individual No Retornable    NA      NA    NA    NA    3
## 2235      Lata 222 ml Individual No Retornable    NA      NA     4    NA   NA
## 2236      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2237        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2238        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2239     1 Ltro. N.R. Individual No Retornable     2       4     4    NA    2
## 2240      1.5 Lts. NR Individual No Retornable     3      19     3    NA    3
## 2241        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2242   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2243     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1   NA
## 2244        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2245   250 ml. NR PET Individual No Retornable     2       3     1     4    3
## 2246        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2247     1 Ltro. N.R.   Familiar No Retornable    NA       3     1    NA    1
## 2248    12 Oz. NR Pet Individual No Retornable    NA       3     1    NA    1
## 2249        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 2250     1 Ltro. N.R.   Familiar No Retornable     8       2     2     6    2
## 2251 500 ml NR Vidrio Individual No Retornable     4       2     4     8    6
## 2252         8 Oz. NR Individual No Retornable    NA       1    NA     1    1
## 2253     1 Ltro. N.R.   Familiar No Retornable    13       4     6     4    8
## 2254     1.250 Lts NR   Familiar No Retornable     3       3    NA     3   NA
## 2255      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2256     1.5 Lts. Ret   Familiar    Retornable    22       3     6    48    3
## 2257    12 Oz. NR Pet Individual No Retornable     5       5     5    12    2
## 2258      2.5 Lts. NR   Familiar No Retornable    NA      NA     7    35   28
## 2259 2.5 Lts. Ret Pet   Familiar    Retornable    74      81    74    85   21
## 2260        400 ml NR Individual No Retornable     3       3     2     2   NA
## 2261    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2262 500 ml NR Vidrio Individual No Retornable     6       4     6    11   13
## 2263       500 ml Ret Individual    Retornable   116      93   118   123  110
## 2264         8 Oz. NR Individual No Retornable     2       3     2     4    4
## 2265      Lata 16 Oz. Individual No Retornable     2       2    NA     4   NA
## 2266      Lata 235 ml Individual No Retornable     2       2     2     1   NA
## 2267     1 Ltro. N.R. Individual No Retornable    NA       1     1    NA    1
## 2268    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 2269        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 2270  125 ml NR Tetra Individual No Retornable    NA       1    NA    NA   NA
## 2271     250 ml Tetra Individual No Retornable     0       4     0    NA    0
## 2272   250 ML. NR VID Individual No Retornable     1      NA    NA    NA   NA
## 2273    413 ml NR VId Individual No Retornable     5       5     5     4    7
## 2274   300 ML. NR PET Individual No Retornable    NA      NA    NA     0    1
## 2275    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2276     200 ml Tetra Individual No Retornable     0       0     0    NA    0
## 2277        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2278        2 Lts. NR   Familiar No Retornable    NA       1    NA    NA   NA
## 2279        400 ml NR Individual No Retornable     0       0     0     0    0
## 2280       500 ml Ret Individual    Retornable    NA       2     2    NA   NA
## 2281        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2282      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 2283        2 Lts. NR   Familiar No Retornable    NA       1    NA     3   NA
## 2284        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2285       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2286      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 2287        2 Lts. NR   Familiar No Retornable     3       6    NA    11    3
## 2288        400 ml NR Individual No Retornable     0      NA     0     0   NA
## 2289       500 ml Ret Individual    Retornable     2       2     2     6    6
## 2290        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2291     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2292        2 Lts. NR   Familiar No Retornable    NA       3     3     3   NA
## 2293        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 2294       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 2295      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 2296     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2297        2 Lts. NR   Familiar No Retornable     6       1     3     8   NA
## 2298        400 ml NR Individual No Retornable     0       0     0     0   NA
## 2299       500 ml Ret Individual    Retornable     4       4     2     6    8
## 2300        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2301      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 2302    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2303        600 ml NR Individual No Retornable     1       3     3    NA    1
## 2304      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2305        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2306     1 Ltro. N.R. Individual No Retornable    17       8    NA     2    2
## 2307      1.5 Lts. NR Individual No Retornable    22       3    NA     3    3
## 2308        600 ml NR Individual No Retornable     3       3    NA    NA   NA
## 2309     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2310     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2311        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2312        473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2313   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2314   250 ml. NR PET Individual No Retornable     3       4     1     2    3
## 2315        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2316     1 Ltro. N.R.   Familiar No Retornable    NA       1    NA     1   NA
## 2317     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2318    12 Oz. NR Pet Individual No Retornable    NA       1     1     1   NA
## 2319        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2320    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2321 500 ml NR Vidrio Individual No Retornable     2      NA     4    NA    2
## 2322     1 Ltro. N.R.   Familiar No Retornable    13      38    19    25   19
## 2323       12 Oz. Ret Individual    Retornable     3      NA     3     2    3
## 2324        2 Lts. NR   Familiar No Retornable    48      39    76     3   51
## 2325 500 ml NR Vidrio Individual No Retornable     8       4    32    NA   11
## 2326         8 Oz. NR Individual No Retornable     2       1     2     2    3
## 2327             Lata Individual No Retornable     2       3    NA     5    2
## 2328     1 Ltro. N.R.   Familiar No Retornable     6       4     6     2    8
## 2329 500 ml NR Vidrio Individual No Retornable     2       4     4    NA    6
## 2330        600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 2331         8 Oz. NR Individual No Retornable     2      NA     2     1   NA
## 2332     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2333     1.250 Lts NR   Familiar No Retornable    58      69    53    71   50
## 2334      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2335     1.5 Lts. Ret   Familiar    Retornable     3       3     6     3    3
## 2336     1.750 Lts NR   Familiar No Retornable    NA      NA    NA     5   NA
## 2337    12 Oz. NR Pet Individual No Retornable     9      23     5    23    5
## 2338        2 Lts. NR   Familiar No Retornable    NA      NA    34    34    6
## 2339      2.5 Lts. NR   Familiar No Retornable    NA     201   187    42  180
## 2340 2.5 Lts. Ret Pet   Familiar    Retornable    67      95   148   130   46
## 2341 500 ml NR Vidrio Individual No Retornable    36      25    27    NA   49
## 2342       500 ml Ret Individual    Retornable    53      59    34   125   34
## 2343         8 Oz. NR Individual No Retornable     6       6     5     7   10
## 2344             Lata Individual No Retornable     3      24    NA     4    5
## 2345      Lata 16 Oz. Individual No Retornable     2      NA    NA    NA   NA
## 2346     1 Ltro. N.R. Individual No Retornable    NA       1     1    NA   NA
## 2347    500 ml NR PET Individual No Retornable    NA      NA     1     1   NA
## 2348  125 ml NR Tetra Individual No Retornable     1      NA    NA    NA   NA
## 2349     250 ml Tetra Individual No Retornable     2       0     0     0   NA
## 2350   250 ML. NR VID Individual No Retornable     2       1     1    NA    2
## 2351    413 ml NR VId Individual No Retornable     6       5    18     4   11
## 2352   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2353     1 Ltro. N.R.   Familiar No Retornable     4       4     4     4    6
## 2354   300 ML. NR PET Individual No Retornable    NA       2    NA     1    1
## 2355     200 ml Tetra Individual No Retornable    NA       0     0    NA    0
## 2356        600 ml NR Individual No Retornable     3      NA    NA    NA    1
## 2357        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2358      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2359     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2360        2 Lts. NR   Familiar No Retornable     6       8     6    17   NA
## 2361   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2362        400 ml NR Individual No Retornable     0      NA     2     0    0
## 2363       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2364        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 2365     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2366        2 Lts. NR   Familiar No Retornable    NA      NA     6    NA    8
## 2367   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2368        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2369       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2370        2 Lts. NR   Familiar No Retornable    NA      NA     3     6   NA
## 2371   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2372        400 ml NR Individual No Retornable     0      NA     2    NA   NA
## 2373       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2374     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2375        2 Lts. NR   Familiar No Retornable    NA       8    11     8    6
## 2376       500 ml Ret Individual    Retornable     6       2    13     6    8
## 2377      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2378     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2379     1.750 Lts NR   Familiar No Retornable    NA      NA    NA     5   NA
## 2380        2 Lts. NR   Familiar No Retornable     3      14    14    14   31
## 2381   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2382        400 ml NR Individual No Retornable     0       0     2    NA   NA
## 2383       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2384        600 ml NR Individual No Retornable     3       1     1     1    1
## 2385    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2386        600 ml NR Individual No Retornable     2      16    NA    NA    9
## 2387      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2388        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2389        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2390        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2391     1 Ltro. N.R. Individual No Retornable     2       4     6    19    6
## 2392      1.5 Lts. NR Individual No Retornable     3      16    35    25   32
## 2393        600 ml NR Individual No Retornable    NA      NA     3    NA    3
## 2394        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2395   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2396     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2397      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 2398        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2399        600 ml NR Individual No Retornable     1      NA    NA     1    1
## 2400   250 ml. NR PET Individual No Retornable    11       1     8     6   16
## 2401        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2402     1 Ltro. N.R.   Familiar No Retornable     1       1     3     2    2
## 2403     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 2404    12 Oz. NR Pet Individual No Retornable    NA       1     2     1    1
## 2405        2 Lts. NR   Familiar No Retornable    23      14     8    17   11
## 2406        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2407      Lata 235 ml Individual No Retornable     0       0     0     0    0
## 2408      Lata 450 ml Individual No Retornable    NA       1     1     2    1
## 2409    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2410    237 ml NR Vid Individual No Retornable    NA      NA    NA     1   NA
## 2411 500 ml NR Vidrio Individual No Retornable    NA      NA    NA     4    4
## 2412      Lata 235 ml Individual No Retornable     1      NA    NA    NA    1
## 2413     1 Ltro. N.R.   Familiar No Retornable    21       2    23    13   32
## 2414        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2415      2.5 Lts. NR   Familiar No Retornable    32      25    53     7   92
## 2416 500 ml NR Vidrio Individual No Retornable    17      21    13    13   32
## 2417         8 Oz. NR Individual No Retornable     4       2    NA    NA    3
## 2418             Lata Individual No Retornable     2       2    NA    NA   NA
## 2419     1 Ltro. N.R.   Familiar No Retornable     6       2     2     8    8
## 2420        2 Lts. NR   Familiar No Retornable    11      23     3    14   NA
## 2421 500 ml NR Vidrio Individual No Retornable    13      15    13     4    8
## 2422         8 Oz. NR Individual No Retornable     2      NA    NA    NA    4
## 2423     1 Ltro. N.R.   Familiar No Retornable     2      NA    11     2   NA
## 2424     1.250 Lts NR   Familiar No Retornable    NA     161   172    11  198
## 2425      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2426     1.5 Lts. Ret   Familiar    Retornable    54      48    54   105   73
## 2427    12 Oz. NR Pet Individual No Retornable    12       5     2     5    2
## 2428        2 Lts. NR   Familiar No Retornable    NA      NA    NA     6   NA
## 2429      2.5 Lts. NR   Familiar No Retornable   190     229   204    NA  324
## 2430 2.5 Lts. Ret Pet   Familiar    Retornable   151     229   215   148  204
## 2431    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    2
## 2432 500 ml NR Vidrio Individual No Retornable    40      51    38    27   91
## 2433       500 ml Ret Individual    Retornable    34     116     2    87  144
## 2434         8 Oz. NR Individual No Retornable    21       9    10    11   22
## 2435             Lata Individual No Retornable     6      12    NA     9   12
## 2436      Lata 16 Oz. Individual No Retornable     6      12     6    NA   24
## 2437      Lata 235 ml Individual No Retornable     2       5    NA    NA    3
## 2438        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2439     1 Ltro. N.R. Individual No Retornable    NA       1     1     5    1
## 2440    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 2441        600 ml NR Individual No Retornable     3       1    NA     3    4
## 2442     250 ml Tetra Individual No Retornable     0       0     0     1    1
## 2443   250 ML. NR VID Individual No Retornable    NA       1    NA    NA    0
## 2444    413 ml NR VId Individual No Retornable     4       4     5     3    8
## 2445   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2446     1 Ltro. N.R.   Familiar No Retornable     2       2     2     4   NA
## 2447   300 ML. NR PET Individual No Retornable     1       1     0     1    1
## 2448    1 Ltro. Tetra   Familiar No Retornable     2       1     3     3    2
## 2449    1 Ltro. Tetra   Familiar No Retornable     2       1     2     3    2
## 2450    1 Ltro. Tetra   Familiar No Retornable     2       1     5     3    6
## 2451    1 Ltro. Tetra   Familiar No Retornable     2       1     3     3    2
## 2452     200 ml Tetra Individual No Retornable     0       2     2     2    3
## 2453        600 ml NR Individual No Retornable     1       3     3     3    1
## 2454        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2455      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2456     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2457      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2458     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2459        2 Lts. NR   Familiar No Retornable    NA      17    NA     3    1
## 2460      2.5 Lts. NR   Familiar No Retornable    NA      NA     4     3    5
## 2461        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 2462       500 ml Ret Individual    Retornable     2       2     1     5    2
## 2463        600 ml NR Individual No Retornable     3       2     3     3    3
## 2464      Lata 235 ml Individual No Retornable    NA       1    NA     0    0
## 2465     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2466      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2467     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2468        2 Lts. NR   Familiar No Retornable    NA      11    11     3    1
## 2469      2.5 Lts. NR   Familiar No Retornable    NA      NA     4     3    5
## 2470        400 ml NR Individual No Retornable     0      NA    NA     0   NA
## 2471       500 ml Ret Individual    Retornable     2       2     3     5    4
## 2472        600 ml NR Individual No Retornable     4       2    NA    NA    4
## 2473      Lata 235 ml Individual No Retornable    NA       1    NA     0    0
## 2474      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2475        2 Lts. NR   Familiar No Retornable    NA      11    11    NA    1
## 2476      2.5 Lts. NR   Familiar No Retornable    NA      NA     4     3    9
## 2477        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 2478       500 ml Ret Individual    Retornable     2      NA     1     5    2
## 2479        600 ml NR Individual No Retornable     1       2    NA     2    3
## 2480        600 ml NR Individual No Retornable     3       2     3     1    1
## 2481     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2482        2 Lts. NR   Familiar No Retornable    NA      17    NA     3    3
## 2483      2.5 Lts. NR   Familiar No Retornable     4      NA    NA    NA    4
## 2484       500 ml Ret Individual    Retornable    NA       4     2    NA   NA
## 2485        600 ml NR Individual No Retornable     3      NA    NA     1   NA
## 2486      Lata 235 ml Individual No Retornable    NA       1    NA     0    0
## 2487     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2488      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2489     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2490        2 Lts. NR   Familiar No Retornable     3      17    25    20    1
## 2491      2.5 Lts. NR   Familiar No Retornable    NA      NA     4     3    5
## 2492        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 2493    500 ml NR PET Individual No Retornable    NA      NA    NA     4   NA
## 2494       500 ml Ret Individual    Retornable     2      NA     1     5    2
## 2495        600 ml NR Individual No Retornable     2      NA    NA     2    3
## 2496      Lata 235 ml Individual No Retornable    NA       1    NA     0    0
## 2497    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2498        600 ml NR Individual No Retornable    13      12    12     7   11
## 2499      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2500        2 Lts. NR   Familiar No Retornable    NA      NA     3     3    3
## 2501        600 ml NR Individual No Retornable     5       5     5     8    5
## 2502      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2503        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2504     1 Ltro. N.R. Individual No Retornable    17      21    40    15   59
## 2505      1.5 Lts. NR Individual No Retornable     3      19    38    44   76
## 2506   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2507    355 Ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2508        5 Lts. NR   Familiar No Retornable    11      NA     4    14   21
## 2509        600 ml NR Individual No Retornable    20      23    23    15   20
## 2510     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2511        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2512   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2513     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2514      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 2515   250 ml. NR PET Individual No Retornable     2       2     2     2    2
## 2516    500 ml NR PET Individual No Retornable    NA      NA     2     2   NA
## 2517        600 ml NR Individual No Retornable     5       3     3     3    5
## 2518   250 ml. NR PET Individual No Retornable     4       1     0     8    5
## 2519        400 ml NR Individual No Retornable     2       2    NA     3   NA
## 2520     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1   NA
## 2521     1 Ltro. N.R. Individual No Retornable    NA       2     2     4    2
## 2522    12 Oz. NR Pet Individual No Retornable    NA       2     2     2    1
## 2523        2 Lts. NR   Familiar No Retornable     8       8     8     8    8
## 2524        600 ml NR Individual No Retornable     8       8     3     8    3
## 2525      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2526      Lata 450 ml Individual No Retornable    NA      NA    NA     1    1
## 2527    500 ml NR PET Individual No Retornable     2      NA    NA    NA   NA
## 2528 500 ml NR Vidrio Individual No Retornable    NA       2    NA     2    2
## 2529      Lata 235 ml Individual No Retornable     2       2     2     3    2
## 2530     1 Ltro. N.R.   Familiar No Retornable     2       2     4     2    6
## 2531        2 Lts. NR   Familiar No Retornable    11       6    14    NA    8
## 2532 500 ml NR Vidrio Individual No Retornable    11       4    19    11   21
## 2533        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 2534         8 Oz. NR Individual No Retornable     3      NA     1     3    2
## 2535             Lata Individual No Retornable    NA      NA    NA     2   NA
## 2536     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2537    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2538        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 2539        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2540 500 ml NR Vidrio Individual No Retornable    NA      NA     2     2    2
## 2541     1 Ltro. N.R.   Familiar No Retornable    80      87    85    80  156
## 2542     1.250 Lts NR   Familiar No Retornable     5       8    26     8   11
## 2543      1.5 Lts. NR   Familiar No Retornable     3       3    22     6   16
## 2544     1.5 Lts. Ret   Familiar    Retornable    22      22    22    22   32
## 2545    12 Oz. NR Pet Individual No Retornable    33      20    24    14   41
## 2546       12 Oz. Ret Individual    Retornable     3      NA     2     3    3
## 2547        2 Lts. NR   Familiar No Retornable    31      14    17    14   25
## 2548       2 Lts. Ret   Familiar    Retornable     8       6    20     3   23
## 2549      2.5 Lts. NR   Familiar No Retornable   183     240   137   275  303
## 2550 2.5 Lts. Ret Pet   Familiar    Retornable    21      32    63    39   42
## 2551    500 ml NR PET Individual No Retornable    49      44    51    55   53
## 2552 500 ml NR Vidrio Individual No Retornable    78      51   131    78  125
## 2553       500 ml Ret Individual    Retornable   129      74    89   120  201
## 2554      6.5 Oz. Ret Individual    Retornable    NA      NA    NA     1   NA
## 2555        710 ml NR Individual No Retornable     3       6     9    NA    3
## 2556         8 Oz. NR Individual No Retornable    14      15    17    12   16
## 2557             Lata Individual No Retornable    20      11    18    11   24
## 2558      Lata 16 Oz. Individual No Retornable     8      10    10     8   18
## 2559      Lata 235 ml Individual No Retornable     6       6     4     5    7
## 2560        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 2561     1 Ltro. N.R. Individual No Retornable     1       2     1     3    1
## 2562    500 ml NR PET Individual No Retornable    NA       1     2     2   NA
## 2563        600 ml NR Individual No Retornable     4       4     3     4    7
## 2564     250 ml Tetra Individual No Retornable     1       0     0     0    0
## 2565   250 ML. NR VID Individual No Retornable     1      NA    NA     1    1
## 2566   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2567    413 ml NR VId Individual No Retornable     8       3     2     3    6
## 2568    500 ml NR PET Individual No Retornable    NA      NA     2     2   NA
## 2569      Lata 335 ml Individual No Retornable    NA       1    NA    NA   NA
## 2570      Lata 453 ml Individual No Retornable     2       2     2    NA    1
## 2571   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2572     1 Ltro. N.R.   Familiar No Retornable     2       6    NA     6    2
## 2573   300 ML. NR PET Individual No Retornable     1       1     1     1    1
## 2574    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2575     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 2576        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2577        600 ml NR Individual No Retornable     3      NA     5     8   10
## 2578      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2579        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2580      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2581     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA    4
## 2582      1.5 Lts. NR   Familiar No Retornable     2       2     4     6    4
## 2583     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2584        2 Lts. NR   Familiar No Retornable     3       6     7     4   NA
## 2585      2.5 Lts. NR   Familiar No Retornable    11      NA    11     4    4
## 2586   250 ml. NR PET Individual No Retornable     5       2     3     2    2
## 2587        400 ml NR Individual No Retornable     3       8     4     9    6
## 2588       500 ml Ret Individual    Retornable     4       2     5     5   10
## 2589        600 ml NR Individual No Retornable    11       3    18    13   18
## 2590             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2591      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 2592     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 2593      1.5 Lts. NR   Familiar No Retornable     2       2     4     6    4
## 2594     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2595        2 Lts. NR   Familiar No Retornable    NA       6    15     4    3
## 2596      2.5 Lts. NR   Familiar No Retornable     4       4    14     7   14
## 2597   250 ml. NR PET Individual No Retornable     1       1     1     1    2
## 2598        400 ml NR Individual No Retornable     2       1     2     4    7
## 2599       500 ml Ret Individual    Retornable     2       2     9     5   12
## 2600        600 ml NR Individual No Retornable     4      NA    13    10   13
## 2601             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2602      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 2603     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 2604      1.5 Lts. NR   Familiar No Retornable     2       2     4     6    4
## 2605        2 Lts. NR   Familiar No Retornable     3       3     7     6   NA
## 2606      2.5 Lts. NR   Familiar No Retornable     4      NA    11     7   NA
## 2607   250 ml. NR PET Individual No Retornable     3       2     2     2    2
## 2608        400 ml NR Individual No Retornable     2       1     2     3    7
## 2609       500 ml Ret Individual    Retornable     4       2     7     5   10
## 2610        600 ml NR Individual No Retornable     8      NA     8     8    8
## 2611             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2612        600 ml NR Individual No Retornable    NA      NA     8     5   NA
## 2613     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2614        2 Lts. NR   Familiar No Retornable    NA       3    NA     6    6
## 2615      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    4
## 2616        400 ml NR Individual No Retornable     2       1    NA     2   NA
## 2617       500 ml Ret Individual    Retornable    NA      NA     2    NA    2
## 2618        600 ml NR Individual No Retornable    NA      NA    NA     4   NA
## 2619      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 2620     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA     2    2
## 2621      1.5 Lts. NR   Familiar No Retornable     2       2     4     6    4
## 2622     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2623        2 Lts. NR   Familiar No Retornable    NA       6     7     6    6
## 2624      2.5 Lts. NR   Familiar No Retornable     4       4    14     7    7
## 2625   250 ml. NR PET Individual No Retornable     3       2     4     2    3
## 2626        400 ml NR Individual No Retornable     2       3     3     6    5
## 2627       500 ml Ret Individual    Retornable     4       2     9     7   12
## 2628        600 ml NR Individual No Retornable     9      NA    15    10   20
## 2629             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2630      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 2631    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2632        600 ml NR Individual No Retornable     3      NA    NA    NA    3
## 2633       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2634        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2635      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2636        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2637     1 Ltro. N.R. Individual No Retornable     2       4     8     6    2
## 2638      1.5 Lts. NR Individual No Retornable     3       6    13    10   NA
## 2639   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2640        600 ml NR Individual No Retornable     3       8     5     3    3
## 2641     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2642        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2643        600 ml NR Individual No Retornable    NA       1    NA    NA    1
## 2644   250 ml. NR PET Individual No Retornable     0       0     1     0    0
## 2645        600 ml NR Individual No Retornable     1       1     1     3    3
## 2646   250 ml. NR PET Individual No Retornable     3       4     1     0    3
## 2647        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2648     1 Ltro. N.R.   Familiar No Retornable     1       2     3    NA   NA
## 2649     1 Ltro. N.R. Individual No Retornable     2      NA     2     4    2
## 2650    12 Oz. NR Pet Individual No Retornable     2       2     2     1   NA
## 2651        2 Lts. NR   Familiar No Retornable     3       8    11    20   14
## 2652        600 ml NR Individual No Retornable     3      NA    NA     4    3
## 2653      Lata 450 ml Individual No Retornable    NA      NA     1    NA    1
## 2654     1 Ltro. N.R.   Familiar No Retornable     4       4     2    NA   NA
## 2655    237 ml NR Vid Individual No Retornable     1      NA    NA     1   NA
## 2656 500 ml NR Vidrio Individual No Retornable     2      NA     6    NA   NA
## 2657             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2658      Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 2659     1 Ltro. N.R.   Familiar No Retornable    17      23    30    30   21
## 2660        2 Lts. NR   Familiar No Retornable    20      31    31    25   23
## 2661       2 Lts. Ret   Familiar    Retornable    NA       3     3     3    3
## 2662 500 ml NR Vidrio Individual No Retornable    13      17    17    17   19
## 2663         8 Oz. NR Individual No Retornable     4       3     2     4    5
## 2664             Lata Individual No Retornable    NA       3     2     2   NA
## 2665     1 Ltro. N.R.   Familiar No Retornable     4       6     8     2    6
## 2666        2 Lts. NR   Familiar No Retornable    11       8     6     6    8
## 2667 500 ml NR Vidrio Individual No Retornable     2       4     4     2    2
## 2668         8 Oz. NR Individual No Retornable    NA       1     1     1    2
## 2669     1 Ltro. N.R.   Familiar No Retornable    82      78    68    74   95
## 2670     1.250 Lts NR   Familiar No Retornable    34      26    24    29   26
## 2671      1.5 Lts. NR   Familiar No Retornable    16      16    25    25   19
## 2672     1.5 Lts. Ret   Familiar    Retornable    38      35    44    44   32
## 2673    12 Oz. NR Pet Individual No Retornable    26      20    20    27   24
## 2674        2 Lts. NR   Familiar No Retornable    45      54    54    37   68
## 2675       2 Lts. Ret   Familiar    Retornable    25      25    25    17   17
## 2676      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   11
## 2677 2.5 Lts. Ret Pet   Familiar    Retornable   261     208   151   208  271
## 2678    500 ml NR PET Individual No Retornable    17      17     8    11    6
## 2679 500 ml NR Vidrio Individual No Retornable    NA       2    NA    NA   30
## 2680       500 ml Ret Individual    Retornable   129      91    76    89  101
## 2681        710 ml NR Individual No Retornable    12       6    12     6   12
## 2682         8 Oz. NR Individual No Retornable    12      12     9    14   11
## 2683             Lata Individual No Retornable    11       9     8     9   11
## 2684      Lata 16 Oz. Individual No Retornable     8      10     8     8    8
## 2685      Lata 235 ml Individual No Retornable     7       8     6     5    8
## 2686        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 2687     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 2688    500 ml NR PET Individual No Retornable     1       4     2     3    2
## 2689        600 ml NR Individual No Retornable    NA       3     4     6    8
## 2690     250 ml Tetra Individual No Retornable     1      NA    NA    NA   NA
## 2691   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 2692    413 ml NR VId Individual No Retornable     3      NA     4     7    4
## 2693   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2694     1 Ltro. N.R.   Familiar No Retornable     2      NA     2     4    2
## 2695   300 ML. NR PET Individual No Retornable     0       1    NA     0    0
## 2696    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2697     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2698        600 ml NR Individual No Retornable     3       3     4     2    2
## 2699      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2700        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2701      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2702     1 Ltro. N.R.   Familiar No Retornable     4       2     4     2    2
## 2703      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2704        2 Lts. NR   Familiar No Retornable     1      NA     4     4    3
## 2705      2.5 Lts. NR   Familiar No Retornable     4       6     6     1    7
## 2706   250 ml. NR PET Individual No Retornable     0       0     1     0    0
## 2707        400 ml NR Individual No Retornable     0      NA     1    NA   NA
## 2708       500 ml Ret Individual    Retornable     2       3     2     3    2
## 2709        600 ml NR Individual No Retornable     3       4     3     4    4
## 2710             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2711      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2712      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2713        2 Lts. NR   Familiar No Retornable     1      NA     1     4    3
## 2714      2.5 Lts. NR   Familiar No Retornable     1       3     3     1   NA
## 2715   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 2716       500 ml Ret Individual    Retornable     2       3     2     3    2
## 2717        600 ml NR Individual No Retornable     1       3     1     1    3
## 2718             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2719      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2720     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2721      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2722        2 Lts. NR   Familiar No Retornable     1      NA     1     1   NA
## 2723      2.5 Lts. NR   Familiar No Retornable     4       3     3     1   NA
## 2724   250 ml. NR PET Individual No Retornable     0       0     1     0    0
## 2725        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2726       500 ml Ret Individual    Retornable     2       3     2     3    2
## 2727        600 ml NR Individual No Retornable     3       3     1     1    1
## 2728             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2729        600 ml NR Individual No Retornable     1       2     3     1    2
## 2730        2 Lts. NR   Familiar No Retornable    NA      NA     3     3   NA
## 2731      2.5 Lts. NR   Familiar No Retornable     4       4     4    NA    4
## 2732        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 2733       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2734        600 ml NR Individual No Retornable    NA       3    NA     3    3
## 2735      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2736     1 Ltro. N.R.   Familiar No Retornable     6       2     6     4    2
## 2737      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2738        2 Lts. NR   Familiar No Retornable     1      NA     4     6    3
## 2739      2.5 Lts. NR   Familiar No Retornable     8       8    10     3    7
## 2740   250 ml. NR PET Individual No Retornable     0       0     1     0    0
## 2741        400 ml NR Individual No Retornable     0      NA    NA    NA    3
## 2742       500 ml Ret Individual    Retornable     2       3     2     3    2
## 2743        600 ml NR Individual No Retornable     4       4     4     6    4
## 2744             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2745      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2746        600 ml NR Individual No Retornable     6      10     4    10   10
## 2747      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2748       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2749        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2750        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2751     1 Ltro. N.R. Individual No Retornable     4       6     8     2    6
## 2752      1.5 Lts. NR Individual No Retornable     3       6    10    10    3
## 2753   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2754        5 Lts. NR   Familiar No Retornable     4       7     4     4   NA
## 2755        600 ml NR Individual No Retornable     3       5     5    NA    3
## 2756        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2757   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2758   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 2759        600 ml NR Individual No Retornable     1       1     1     1    1
## 2760   250 ml. NR PET Individual No Retornable     2       4     3     3    4
## 2761        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2762     1 Ltro. N.R.   Familiar No Retornable    NA      NA     1     1    1
## 2763    12 Oz. NR Pet Individual No Retornable    NA       3     1     1    1
## 2764        2 Lts. NR   Familiar No Retornable     6       3     3    NA    3
## 2765      Lata 235 ml Individual No Retornable    NA      NA    NA     0    0
## 2766      Lata 450 ml Individual No Retornable     1      NA    NA     1   NA
## 2767    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2768     1 Ltro. N.R.   Familiar No Retornable    NA       2     2     2   NA
## 2769 500 ml NR Vidrio Individual No Retornable    NA       2    NA     2    2
## 2770     1 Ltro. N.R.   Familiar No Retornable    11       6    13     8   13
## 2771      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2772     1.5 Lts. Ret   Familiar    Retornable     3       3     3     3    3
## 2773    12 Oz. NR Pet Individual No Retornable     8       5     5     6    6
## 2774       12 Oz. Ret Individual    Retornable     3       3     3     5    5
## 2775        2 Lts. NR   Familiar No Retornable    11       8    11    14    8
## 2776      2.5 Lts. NR   Familiar No Retornable    28      35    46    49   39
## 2777 2.5 Lts. Ret Pet   Familiar    Retornable    21      18    18    11   14
## 2778 500 ml NR Vidrio Individual No Retornable    23      15    23    23   21
## 2779       500 ml Ret Individual    Retornable    23      21    32    42   42
## 2780         8 Oz. NR Individual No Retornable     1       2     2     3    3
## 2781             Lata Individual No Retornable     2       2     3     3    2
## 2782      Lata 235 ml Individual No Retornable     2       1     2     2    2
## 2783     1 Ltro. N.R. Individual No Retornable    NA      NA     1     1    1
## 2784    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 2785        600 ml NR Individual No Retornable     1       1     1    NA    1
## 2786     250 ml Tetra Individual No Retornable    NA      NA     0     0    0
## 2787   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 2788    413 ml NR VId Individual No Retornable     1       1     1     3    3
## 2789   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2790   300 ML. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 2791     200 ml Tetra Individual No Retornable    NA      NA     0     0    0
## 2792        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2793        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2794      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2795     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2796        2 Lts. NR   Familiar No Retornable     3       3    NA     3   NA
## 2797   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 2798        400 ml NR Individual No Retornable     1       0     0     0    3
## 2799       500 ml Ret Individual    Retornable     1       1     1     2   NA
## 2800        600 ml NR Individual No Retornable     4       2     3     3    4
## 2801      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2802     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2803        2 Lts. NR   Familiar No Retornable     6       6    NA     3    3
## 2804   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 2805        400 ml NR Individual No Retornable     1       0     0     1    1
## 2806       500 ml Ret Individual    Retornable     1       1     3     2    2
## 2807        600 ml NR Individual No Retornable     3       1     2     2    2
## 2808      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2809        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 2810   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 2811        400 ml NR Individual No Retornable     0      NA     0     0    1
## 2812       500 ml Ret Individual    Retornable     1       1     1     2   NA
## 2813        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 2814        600 ml NR Individual No Retornable    NA      NA     1    NA    1
## 2815     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2816        2 Lts. NR   Familiar No Retornable    NA      NA     3     3   NA
## 2817        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 2818      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2819     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2820        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 2821   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 2822        400 ml NR Individual No Retornable     1       1    NA     1    1
## 2823       500 ml Ret Individual    Retornable     3       1     1     2   NA
## 2824        600 ml NR Individual No Retornable     3       1     3     1    3
## 2825      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2826    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2827        600 ml NR Individual No Retornable     2       1     1     3    3
## 2828      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2829        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2830        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2831      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2832        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2833     1 Ltro. N.R. Individual No Retornable    NA       8     2     2   55
## 2834      1.5 Lts. NR Individual No Retornable    NA       3     3     3    3
## 2835        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2836        600 ml NR Individual No Retornable    10      20    NA    10   15
## 2837   300 ML. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 2838   250 ml. NR PET Individual No Retornable    NA       1     1     1    2
## 2839        600 ml NR Individual No Retornable    NA       3    NA     3    3
## 2840   250 ml. NR PET Individual No Retornable     4       6     2     3   10
## 2841        400 ml NR Individual No Retornable    NA       0     0     1    0
## 2842     1 Ltro. N.R.   Familiar No Retornable     2       1     1    NA    2
## 2843     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2   NA
## 2844    12 Oz. NR Pet Individual No Retornable    NA       2     1     2    1
## 2845        2 Lts. NR   Familiar No Retornable     8      14    NA     6   11
## 2846      Lata 235 ml Individual No Retornable     0       0     1     1    1
## 2847      Lata 450 ml Individual No Retornable    NA      NA     1     3    2
## 2848    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2849 500 ml NR Vidrio Individual No Retornable     4       2    NA     4    2
## 2850     1 Ltro. N.R.   Familiar No Retornable     6       4     2     6    6
## 2851        2 Lts. NR   Familiar No Retornable    11      14     8     8   17
## 2852        400 ml NR Individual No Retornable     2       2    NA     2    2
## 2853 500 ml NR Vidrio Individual No Retornable     8      21     4     8    6
## 2854         8 Oz. NR Individual No Retornable     1      NA    NA     1    1
## 2855             Lata Individual No Retornable    NA      NA     2    NA   NA
## 2856     1 Ltro. N.R.   Familiar No Retornable     2       2     6    NA    2
## 2857 500 ml NR Vidrio Individual No Retornable     4       2     6     2    2
## 2858         8 Oz. NR Individual No Retornable    NA       1    NA    NA   NA
## 2859             Lata Individual No Retornable    NA       2    NA    NA   NA
## 2860      Lata 235 ml Individual No Retornable     1       3    NA    NA   NA
## 2861     1 Ltro. N.R.   Familiar No Retornable    NA      25    42    42   70
## 2862     1.250 Lts NR   Familiar No Retornable    NA      NA    11     8   40
## 2863      1.5 Lts. NR   Familiar No Retornable    NA      NA    13    16   51
## 2864     1.5 Lts. Ret   Familiar    Retornable    98      48    41   288    3
## 2865    12 Oz. NR Pet Individual No Retornable     5      18     6    36    5
## 2866        2 Lts. NR   Familiar No Retornable    NA      NA    NA     8    3
## 2867       2 Lts. Ret   Familiar    Retornable     6       3     3     8    8
## 2868      2.5 Lts. NR   Familiar No Retornable    NA     144   120    NA  190
## 2869 2.5 Lts. Ret Pet   Familiar    Retornable   130     338   247   416   77
## 2870    500 ml NR PET Individual No Retornable     2       8     8    19   34
## 2871 500 ml NR Vidrio Individual No Retornable     6     167    NA    NA   97
## 2872       500 ml Ret Individual    Retornable   101     251   222   839   44
## 2873         8 Oz. NR Individual No Retornable    NA       2     4     4    7
## 2874             Lata Individual No Retornable    NA      NA     8    21   18
## 2875      Lata 16 Oz. Individual No Retornable    NA      NA     6    14   28
## 2876      Lata 235 ml Individual No Retornable     9       4     7     8    3
## 2877        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 2878     1 Ltro. N.R. Individual No Retornable     1       1     1     1    5
## 2879    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 2880        600 ml NR Individual No Retornable     1       3     2    NA    3
## 2881  125 ml NR Tetra Individual No Retornable     1      NA    NA    NA   NA
## 2882     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 2883   250 ML. NR VID Individual No Retornable     2       2     1    NA    1
## 2884    413 ml NR VId Individual No Retornable    10      21    NA     2   18
## 2885     1 Ltro. N.R.   Familiar No Retornable     2       2     2     2   NA
## 2886   300 ML. NR PET Individual No Retornable     0       1     1     1    1
## 2887    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2888     200 ml Tetra Individual No Retornable     0       1     2     0    1
## 2889        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2890      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2891      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2892     1 Ltro. N.R.   Familiar No Retornable    NA       2     2     2    2
## 2893      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2894     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2895        2 Lts. NR   Familiar No Retornable     3      14     6    14    6
## 2896   250 ml. NR PET Individual No Retornable     3       1     1     1    1
## 2897        400 ml NR Individual No Retornable    NA      NA     2    NA    2
## 2898       500 ml Ret Individual    Retornable     8       3    15    35   NA
## 2899        600 ml NR Individual No Retornable     5       3     3     3    5
## 2900      Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 2901     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2902      1.5 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 2903     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2904        2 Lts. NR   Familiar No Retornable    NA       6     6     8    3
## 2905   250 ml. NR PET Individual No Retornable     1       1     0     0    1
## 2906        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2907       500 ml Ret Individual    Retornable     4       5    13    31   NA
## 2908        600 ml NR Individual No Retornable     3       3    NA     3    3
## 2909      Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 2910      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2911        2 Lts. NR   Familiar No Retornable     3      NA    NA     3    3
## 2912   250 ml. NR PET Individual No Retornable     1       1     1     1    1
## 2913        400 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 2914       500 ml Ret Individual    Retornable     2       3     6    35   NA
## 2915        600 ml NR Individual No Retornable     3       3    NA    NA   NA
## 2916        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2917     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2918        2 Lts. NR   Familiar No Retornable     6       3     3    NA   NA
## 2919        400 ml NR Individual No Retornable    NA      NA     2    NA   NA
## 2920       500 ml Ret Individual    Retornable     8       4     4    11   NA
## 2921      Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 2922     1 Ltro. N.R.   Familiar No Retornable     6       4    NA     2    4
## 2923      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2924     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2925        2 Lts. NR   Familiar No Retornable    NA      14     8    20   20
## 2926   250 ml. NR PET Individual No Retornable     3       1     1     1    2
## 2927        400 ml NR Individual No Retornable     0       2     3     2    2
## 2928       500 ml Ret Individual    Retornable     4       9    15    45    2
## 2929        600 ml NR Individual No Retornable     8       3     3     5    8
## 2930      Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 2931    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2932        600 ml NR Individual No Retornable    NA       3    NA    NA    6
## 2933      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2934        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2935        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2936        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2937     1 Ltro. N.R. Individual No Retornable     6      11    15    11   13
## 2938      1.5 Lts. NR Individual No Retornable     6      13    25    22   19
## 2939   300 ML. NR PET Individual No Retornable    NA      NA    NA     0    0
## 2940        600 ml NR Individual No Retornable     5       3     3     8    5
## 2941     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2942      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 2943        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2944   300 ML. NR PET Individual No Retornable     1       1     2     1    1
## 2945     1 Ltro. N.R. Individual No Retornable    NA      NA     1     1    1
## 2946      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 2947   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 2948        600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 2949   250 ml. NR PET Individual No Retornable     5       5     1     5    3
## 2950        400 ml NR Individual No Retornable     0      NA    NA    NA    1
## 2951     1 Ltro. N.R.   Familiar No Retornable    NA       3     1     2    5
## 2952     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 2953    12 Oz. NR Pet Individual No Retornable    NA       1     1     2    2
## 2954        2 Lts. NR   Familiar No Retornable    NA      11    NA     8    6
## 2955        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 2956      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 2957      Lata 450 ml Individual No Retornable     1       1    NA     1    1
## 2958    500 ml NR PET Individual No Retornable     1      NA     1     1    2
## 2959 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 2960     1 Ltro. N.R.   Familiar No Retornable    19      15    19    17   21
## 2961        2 Lts. NR   Familiar No Retornable     6      NA     3     6    3
## 2962       2 Lts. Ret   Familiar    Retornable     6      NA    NA    NA   NA
## 2963      2.5 Lts. NR   Familiar No Retornable    25      21    21    28   28
## 2964        400 ml NR Individual No Retornable     3       3     3     2    2
## 2965 500 ml NR Vidrio Individual No Retornable    21      13    13    13   11
## 2966         8 Oz. NR Individual No Retornable    NA      NA     1     1   NA
## 2967             Lata Individual No Retornable     2      NA    NA    NA    2
## 2968      Lata 235 ml Individual No Retornable     1       1    NA    NA   NA
## 2969     1 Ltro. N.R.   Familiar No Retornable    11       6     6     4    6
## 2970        2 Lts. NR   Familiar No Retornable     3       6     6     6    6
## 2971 500 ml NR Vidrio Individual No Retornable     8       4     6     6    6
## 2972      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2973     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA     2    2
## 2974     1.250 Lts NR   Familiar No Retornable    71      69    77    87   61
## 2975      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2976     1.5 Lts. Ret   Familiar    Retornable    44      38    29    25   29
## 2977    12 Oz. NR Pet Individual No Retornable     3       5     6     9    9
## 2978        2 Lts. NR   Familiar No Retornable    31      23    31    46   31
## 2979       2 Lts. Ret   Familiar    Retornable     6      NA    NA     8    3
## 2980      2.5 Lts. NR   Familiar No Retornable    63     130    85   162  116
## 2981 2.5 Lts. Ret Pet   Familiar    Retornable    56     162    70   197  169
## 2982        400 ml NR Individual No Retornable     5      NA    NA    NA   NA
## 2983    500 ml NR PET Individual No Retornable     2       2     6    11    8
## 2984 500 ml NR Vidrio Individual No Retornable    25      53    61    59   49
## 2985       500 ml Ret Individual    Retornable   144     137   139   273   91
## 2986         8 Oz. NR Individual No Retornable     9       4     7     7    6
## 2987             Lata Individual No Retornable     3       5     2     5    3
## 2988      Lata 16 Oz. Individual No Retornable     2      NA     4     4    6
## 2989      Lata 235 ml Individual No Retornable     3       5     5     6    4
## 2990        600 ml NR Individual No Retornable    NA       1    NA     1   NA
## 2991     1 Ltro. N.R. Individual No Retornable    NA       1     1     1    4
## 2992    500 ml NR PET Individual No Retornable     1      NA     1     2    1
## 2993        600 ml NR Individual No Retornable     1      NA    NA     2    1
## 2994    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2995     250 ml Tetra Individual No Retornable     3       0     0     1    1
## 2996   250 ML. NR VID Individual No Retornable     1       1     0     1    2
## 2997    413 ml NR VId Individual No Retornable     5       5     7     5    9
## 2998   250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 2999     1 Ltro. N.R.   Familiar No Retornable    NA       2     2     2    2
## 3000   300 ML. NR PET Individual No Retornable     1       1     1     1    0
## 3001    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3002    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3003     200 ml Tetra Individual No Retornable     0       0     1     1    2
## 3004        600 ml NR Individual No Retornable     4       4     5     3    3
## 3005        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3006     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3007        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 3008      2.5 Lts. NR   Familiar No Retornable    11       4    11    14    7
## 3009   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 3010        400 ml NR Individual No Retornable    NA       0     0     1    1
## 3011       500 ml Ret Individual    Retornable    13       8    13    13   17
## 3012        600 ml NR Individual No Retornable     1       2     3     3    2
## 3013      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3014     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3015     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3016        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3017      2.5 Lts. NR   Familiar No Retornable     7       4     7    11    7
## 3018   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 3019        400 ml NR Individual No Retornable    NA      NA    NA     2    1
## 3020       500 ml Ret Individual    Retornable     1       6     2     8    4
## 3021        600 ml NR Individual No Retornable     1       1     3     1    3
## 3022      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3023      2.5 Lts. NR   Familiar No Retornable    NA       7     4    11    4
## 3024   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 3025        400 ml NR Individual No Retornable     2      NA    NA     1    1
## 3026       500 ml Ret Individual    Retornable     9       8     8     6    2
## 3027        600 ml NR Individual No Retornable     1       2     2     1    1
## 3028        600 ml NR Individual No Retornable     1       3    NA     2    3
## 3029     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3030        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 3031      2.5 Lts. NR   Familiar No Retornable    11      11     7     7   14
## 3032   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 3033        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 3034       500 ml Ret Individual    Retornable     8       4     4     8   13
## 3035        600 ml NR Individual No Retornable     3       4     3     4    3
## 3036      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3037     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3038        2 Lts. NR   Familiar No Retornable    NA      NA     3     6   NA
## 3039      2.5 Lts. NR   Familiar No Retornable    11      11     7    18   14
## 3040   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 3041        400 ml NR Individual No Retornable     2       0     1     2    2
## 3042       500 ml Ret Individual    Retornable    17      13    13    23   15
## 3043        600 ml NR Individual No Retornable     4       5     4     3    4
## 3044      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3045        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 3046    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3047        600 ml NR Individual No Retornable     3       6     1     3    8
## 3048      Lata 222 ml Individual No Retornable    NA      NA     0    NA   NA
## 3049      Lata 453 ml Individual No Retornable    NA      NA    NA    NA    1
## 3050        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3051     1 Ltro. N.R. Individual No Retornable     8      19    13     2   15
## 3052      1.5 Lts. NR Individual No Retornable     3       3    13     6    3
## 3053   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3054   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3055        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3056   250 ml. NR PET Individual No Retornable     2       3    NA     1    2
## 3057        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3058     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1    1
## 3059    12 Oz. NR Pet Individual No Retornable     2       1     2     1    1
## 3060      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3061       12 Oz. Ret Individual    Retornable    NA      NA     2     2   NA
## 3062      Lata 235 ml Individual No Retornable     1       1     1     1   NA
## 3063     1 Ltro. N.R.   Familiar No Retornable    17      19    15     8   17
## 3064        2 Lts. NR   Familiar No Retornable     6       8     3    NA    6
## 3065       2 Lts. Ret   Familiar    Retornable     6       6     3     8   11
## 3066 500 ml NR Vidrio Individual No Retornable    23      NA    23    13   11
## 3067         8 Oz. NR Individual No Retornable     1      NA    NA     1    2
## 3068 500 ml NR Vidrio Individual No Retornable     4      NA     4     2    2
## 3069     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3070     1.250 Lts NR   Familiar No Retornable    48      42    32    32   32
## 3071      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3072     1.5 Lts. Ret   Familiar    Retornable    22      32    22    38   19
## 3073    12 Oz. NR Pet Individual No Retornable     5       6     6     6    5
## 3074       12 Oz. Ret Individual    Retornable     6       3     6     6    5
## 3075        2 Lts. NR   Familiar No Retornable    17      17     8    11   NA
## 3076       2 Lts. Ret   Familiar    Retornable     6       8     8    23   NA
## 3077      2.5 Lts. NR   Familiar No Retornable    NA      28    70    NA   70
## 3078 2.5 Lts. Ret Pet   Familiar    Retornable    92      88    63    42  176
## 3079    500 ml NR PET Individual No Retornable    17      15    11    15   19
## 3080 500 ml NR Vidrio Individual No Retornable    36      13    19    NA   32
## 3081       500 ml Ret Individual    Retornable    46      36    21    49   17
## 3082         8 Oz. NR Individual No Retornable    11       5     6     6   10
## 3083             Lata Individual No Retornable    NA      NA     3     3    3
## 3084      Lata 235 ml Individual No Retornable     4       1     2     2    2
## 3085     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 3086        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3087    1 Ltro. Tetra   Familiar No Retornable     8      12    NA    NA    2
## 3088     250 ml Tetra Individual No Retornable     1       0     0     0    0
## 3089   250 ML. NR VID Individual No Retornable    NA       1     4    NA    3
## 3090    413 ml NR VId Individual No Retornable     7      21    NA    NA   NA
## 3091   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3092    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3093     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3094        600 ml NR Individual No Retornable     1       1     1     1   NA
## 3095        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3096     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3097        2 Lts. NR   Familiar No Retornable     8       3     8    11    6
## 3098   250 ml. NR PET Individual No Retornable     3      NA     1    NA    1
## 3099        400 ml NR Individual No Retornable    NA       2    NA     0    0
## 3100       500 ml Ret Individual    Retornable    NA      NA     1    NA   NA
## 3101        600 ml NR Individual No Retornable     3      NA     1     1    3
## 3102      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3103     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3104        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 3105       500 ml Ret Individual    Retornable    NA      NA     1    NA   NA
## 3106      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3107      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3108   250 ml. NR PET Individual No Retornable     1      NA     1    NA   NA
## 3109        400 ml NR Individual No Retornable    NA      NA     0     0   NA
## 3110       500 ml Ret Individual    Retornable    NA      NA     1    NA   NA
## 3111     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3112        2 Lts. NR   Familiar No Retornable    14       6    14     3    6
## 3113       500 ml Ret Individual    Retornable     2       2     2    NA    2
## 3114        600 ml NR Individual No Retornable     1       1     1     1    1
## 3115      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3116     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3117        2 Lts. NR   Familiar No Retornable    NA       6     6     6    6
## 3118   250 ml. NR PET Individual No Retornable     1      NA    NA     1    1
## 3119        400 ml NR Individual No Retornable     0      NA    NA     0   NA
## 3120       500 ml Ret Individual    Retornable    NA      NA     3    NA   NA
## 3121        600 ml NR Individual No Retornable     3       8    NA     1    1
## 3122      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3123    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3124        600 ml NR Individual No Retornable    NA      NA     4    NA    3
## 3125        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3126        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3127     1 Ltro. N.R. Individual No Retornable     2       2     2     2    2
## 3128      1.5 Lts. NR Individual No Retornable     3      NA     3     3    3
## 3129   300 ML. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3130        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3131     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3132   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3133     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3134      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3135   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3136        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3137   250 ml. NR PET Individual No Retornable    NA       0     1    NA    1
## 3138        400 ml NR Individual No Retornable     0      NA     0    NA    0
## 3139     1 Ltro. N.R.   Familiar No Retornable     1      NA     1     1    3
## 3140     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 3141    12 Oz. NR Pet Individual No Retornable     2      NA     2     1    1
## 3142        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3143        600 ml NR Individual No Retornable    NA       3    NA    NA   NA
## 3144 500 ml NR Vidrio Individual No Retornable    NA      NA    NA     2    2
## 3145      Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 3146     1 Ltro. N.R.   Familiar No Retornable     2       2     4     6    2
## 3147        2 Lts. NR   Familiar No Retornable     8       6     3     8    3
## 3148 500 ml NR Vidrio Individual No Retornable     6       6     6     6    4
## 3149         8 Oz. NR Individual No Retornable     1       2     1     1    2
## 3150             Lata Individual No Retornable     2      NA    NA     2   NA
## 3151      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3152     1 Ltro. N.R.   Familiar No Retornable    NA      NA     2    NA    2
## 3153 500 ml NR Vidrio Individual No Retornable     4       4     2     2    2
## 3154         8 Oz. NR Individual No Retornable     1      NA    NA    NA    1
## 3155      Lata 235 ml Individual No Retornable    NA       1    NA     1   NA
## 3156     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3157     1.250 Lts NR   Familiar No Retornable    18      21    29    29   29
## 3158      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3159     1.5 Lts. Ret   Familiar    Retornable    13       6    16    25   10
## 3160    12 Oz. NR Pet Individual No Retornable     9      12     6    18    6
## 3161        2 Lts. NR   Familiar No Retornable    23      17    11    14   20
## 3162       2 Lts. Ret   Familiar    Retornable    11       6    11     8   11
## 3163      2.5 Lts. NR   Familiar No Retornable    21      32     7    25   28
## 3164 2.5 Lts. Ret Pet   Familiar    Retornable    35      11     7    35   28
## 3165 500 ml NR Vidrio Individual No Retornable    NA      38    NA     6   42
## 3166       500 ml Ret Individual    Retornable    46      34    44    44   51
## 3167        600 ml NR Individual No Retornable    NA      13     3     8    8
## 3168        710 ml NR Individual No Retornable    NA       6     3     3   NA
## 3169         8 Oz. NR Individual No Retornable    NA       7     4     5    5
## 3170             Lata Individual No Retornable     2       2     6     3   NA
## 3171      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 3172      Lata 235 ml Individual No Retornable     4       2     2     2    2
## 3173        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3174     1 Ltro. N.R. Individual No Retornable    NA       1     1     1    1
## 3175    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3176        600 ml NR Individual No Retornable    NA       3    NA    NA    1
## 3177    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3178     250 ml Tetra Individual No Retornable     1      NA     0     0    0
## 3179    413 ml NR VId Individual No Retornable    NA       2     1    NA    2
## 3180   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3181     1 Ltro. N.R.   Familiar No Retornable    NA      NA     2    NA   NA
## 3182   300 ML. NR PET Individual No Retornable     1      NA     0    NA    1
## 3183     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3184        600 ml NR Individual No Retornable    NA       3     3    NA    2
## 3185        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3186     1 Ltro. N.R.   Familiar No Retornable    NA       2    NA    NA   NA
## 3187      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3188     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3189        2 Lts. NR   Familiar No Retornable     3       3     6    NA    3
## 3190   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3191        400 ml NR Individual No Retornable    NA       0     1     0    0
## 3192       500 ml Ret Individual    Retornable    NA      NA     1     1   NA
## 3193        600 ml NR Individual No Retornable    NA       1     1     1    1
## 3194      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3195      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3196        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3197   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3198        400 ml NR Individual No Retornable    NA      NA     0    NA    1
## 3199       500 ml Ret Individual    Retornable    NA      NA     1     1   NA
## 3200        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3201      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3202      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3203        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3204   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3205        400 ml NR Individual No Retornable    NA      NA     0     0   NA
## 3206       500 ml Ret Individual    Retornable    NA      NA     1     1   NA
## 3207        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3208        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3209        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA    3
## 3210        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3211        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 3212      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3213     1 Ltro. N.R.   Familiar No Retornable    NA       2    NA     2   NA
## 3214      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3215     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3216        2 Lts. NR   Familiar No Retornable     6       3    NA     6   NA
## 3217   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3218        400 ml NR Individual No Retornable     0       0     0     1    0
## 3219       500 ml Ret Individual    Retornable    NA      NA     1     1    4
## 3220        600 ml NR Individual No Retornable    NA       3     1     1    2
## 3221      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3222    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3223        600 ml NR Individual No Retornable     4       4    NA     1    3
## 3224       12 Oz. Ret Individual    Retornable    NA      NA    NA     2   NA
## 3225        2 Lts. NR   Familiar No Retornable    NA       3     3     3   NA
## 3226        600 ml NR Individual No Retornable     8       8     6    10   10
## 3227        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3228     1 Ltro. N.R. Individual No Retornable    13      17     2     6   19
## 3229      1.5 Lts. NR Individual No Retornable     3      44     3    10   22
## 3230   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3231    355 Ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3232        600 ml NR Individual No Retornable    NA      10    10    NA    5
## 3233     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3234      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3235     1 Ltro. N.R. Individual No Retornable    NA       3    NA     1    4
## 3236      1.5 Lts. NR Individual No Retornable     2       2     2     6    8
## 3237       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3238   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3239    500 ml NR PET Individual No Retornable     1       3     1     1    1
## 3240        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3241   250 ml. NR PET Individual No Retornable     6       0     1     2    4
## 3242        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3243     1 Ltro. N.R.   Familiar No Retornable    NA      NA     1     1    1
## 3244     1 Ltro. N.R. Individual No Retornable     2       2    NA    NA   NA
## 3245    12 Oz. NR Pet Individual No Retornable     2       1     1     1    1
## 3246        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3247      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3248      Lata 450 ml Individual No Retornable    NA       1     1     1   NA
## 3249    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3250       12 Oz. Ret Individual    Retornable    NA      NA     2     2   NA
## 3251      Lata 235 ml Individual No Retornable    NA      NA     1     1   NA
## 3252     1 Ltro. N.R.   Familiar No Retornable    NA       4     4     4    2
## 3253       12 Oz. Ret Individual    Retornable     3       2     3     8    6
## 3254        2 Lts. NR   Familiar No Retornable    NA       3     3     6   NA
## 3255       2 Lts. Ret   Familiar    Retornable     3       8     6     8   11
## 3256 500 ml NR Vidrio Individual No Retornable    17      15    15    17   34
## 3257         8 Oz. NR Individual No Retornable     2       1     2    NA    1
## 3258             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3259      Lata 235 ml Individual No Retornable     2       3     2     2    1
## 3260 500 ml NR Vidrio Individual No Retornable     2       2     2     2   11
## 3261        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3262             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3263     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3264     1.250 Lts NR   Familiar No Retornable    50      61     3    55   87
## 3265      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3266     1.5 Lts. Ret   Familiar    Retornable    98      79    44   124  181
## 3267    12 Oz. NR Pet Individual No Retornable    20      23    23    44   32
## 3268       12 Oz. Ret Individual    Retornable    41      38    60    38   99
## 3269        2 Lts. NR   Familiar No Retornable    11      NA    NA     3   NA
## 3270       2 Lts. Ret   Familiar    Retornable     3      11    NA     6    6
## 3271      2.5 Lts. NR   Familiar No Retornable    70      53    42    42   81
## 3272 2.5 Lts. Ret Pet   Familiar    Retornable   423     366   447   683  866
## 3273    500 ml NR PET Individual No Retornable    46      34    21    27   38
## 3274 500 ml NR Vidrio Individual No Retornable    55      42    34    57   82
## 3275       500 ml Ret Individual    Retornable   306     203   334   505  611
## 3276      6.5 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3277         8 Oz. NR Individual No Retornable    17      13    13    22   16
## 3278             Lata Individual No Retornable     6       6    12     9   15
## 3279      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 3280      Lata 235 ml Individual No Retornable     3       1     2     3    2
## 3281     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 3282    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3283        600 ml NR Individual No Retornable     6       4    NA     6    4
## 3284     250 ml Tetra Individual No Retornable     3       2     0     0    1
## 3285   250 ML. NR VID Individual No Retornable    NA       0    NA    NA    1
## 3286    413 ml NR VId Individual No Retornable     3       6     2     2    4
## 3287   250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 3288     1 Ltro. N.R.   Familiar No Retornable    NA       2     2     2    2
## 3289   300 ML. NR PET Individual No Retornable     1       1     1     1    1
## 3290    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3291    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3292    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3293     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3294        600 ml NR Individual No Retornable     3      NA     3     3   NA
## 3295        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3296      1.5 Lts. NR   Familiar No Retornable     3       3    NA     3   NA
## 3297     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3298       12 Oz. Ret Individual    Retornable     3       2     6     5   11
## 3299        2 Lts. NR   Familiar No Retornable    NA       8     8     8    3
## 3300      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   11
## 3301   250 ml. NR PET Individual No Retornable     1      NA     0     3   NA
## 3302        400 ml NR Individual No Retornable     3       2    NA     3    3
## 3303    500 ml NR PET Individual No Retornable    NA       2     2     2    2
## 3304       500 ml Ret Individual    Retornable     6       7     7     8    8
## 3305        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3306             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3307      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3308      1.5 Lts. NR   Familiar No Retornable     3      NA     3    NA    3
## 3309     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3310        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 3311      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    4
## 3312   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3313        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 3314    500 ml NR PET Individual No Retornable     2       2    NA     2    4
## 3315       500 ml Ret Individual    Retornable    NA       1     1    NA   13
## 3316      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 3317      1.5 Lts. NR   Familiar No Retornable     6       3     6     3    6
## 3318       12 Oz. Ret Individual    Retornable     3       3     2     3    6
## 3319        2 Lts. NR   Familiar No Retornable    NA       6     3    NA   NA
## 3320   250 ml. NR PET Individual No Retornable     1      NA     0     1   NA
## 3321        400 ml NR Individual No Retornable     2       2    NA     2    2
## 3322    500 ml NR PET Individual No Retornable    NA       2    NA     2   NA
## 3323       500 ml Ret Individual    Retornable    NA       1     1     2   NA
## 3324        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3325     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3326       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3327        2 Lts. NR   Familiar No Retornable     3       8    11    11   11
## 3328      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3329       500 ml Ret Individual    Retornable     6       6     4    11    6
## 3330      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3331      1.5 Lts. NR   Familiar No Retornable     3       6     6     3    6
## 3332     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3333       12 Oz. Ret Individual    Retornable     5       3     5     6   11
## 3334        2 Lts. NR   Familiar No Retornable     3      14    17    17   11
## 3335      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   11
## 3336   250 ml. NR PET Individual No Retornable     3      NA     0     1    1
## 3337        400 ml NR Individual No Retornable     3       2    NA     3    3
## 3338    500 ml NR PET Individual No Retornable     2       2     4     4    4
## 3339       500 ml Ret Individual    Retornable    11       9    12     6   13
## 3340      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3341    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3342        600 ml NR Individual No Retornable     6       4     5     6    4
## 3343      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3344     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2    2
## 3345      1.5 Lts. NR Individual No Retornable    NA      NA    NA     3    3
## 3346        600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 3347      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3348        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3349   250 ml. NR PET Individual No Retornable     0       0    NA     0    0
## 3350   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3351        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3352     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3353     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3354    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3355        2 Lts. NR   Familiar No Retornable     6       6    NA     3   NA
## 3356      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3357      Lata 450 ml Individual No Retornable    NA      NA     1     1    1
## 3358 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 3359     1 Ltro. N.R.   Familiar No Retornable     2       2     2    NA    2
## 3360 500 ml NR Vidrio Individual No Retornable     2       4     4     2    4
## 3361     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3362     1.250 Lts NR   Familiar No Retornable    NA      NA    NA    11   16
## 3363      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3364     1.5 Lts. Ret   Familiar    Retornable    10      13    16    22   16
## 3365    12 Oz. NR Pet Individual No Retornable     5       3     2     3    3
## 3366 2.5 Lts. Ret Pet   Familiar    Retornable    67      49    56    70   70
## 3367 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 3368       500 ml Ret Individual    Retornable    19      11    21    32   25
## 3369         8 Oz. NR Individual No Retornable    NA       2     1     1    1
## 3370      Lata 235 ml Individual No Retornable     1      NA    NA     1    1
## 3371        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 3372     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3373    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3374        600 ml NR Individual No Retornable    NA       3    NA    NA   NA
## 3375     250 ml Tetra Individual No Retornable    NA       1     2    NA    2
## 3376   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 3377    413 ml NR VId Individual No Retornable     4       2     4    NA    3
## 3378   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3379     1 Ltro. N.R.   Familiar No Retornable    NA       2    NA     2   NA
## 3380   300 ML. NR PET Individual No Retornable    NA      NA     0     0    1
## 3381     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3382      1.5 Lts. NR   Familiar No Retornable     3       5     3     3    2
## 3383     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3384        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 3385   250 ml. NR PET Individual No Retornable     0       0    NA     0    0
## 3386        400 ml NR Individual No Retornable     0       0     0    NA    0
## 3387       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3388      1.5 Lts. NR   Familiar No Retornable    NA      NA     2    NA   NA
## 3389     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3390   250 ml. NR PET Individual No Retornable     0       0    NA     0    0
## 3391        400 ml NR Individual No Retornable    NA       0    NA     0   NA
## 3392       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3393      1.5 Lts. NR   Familiar No Retornable     3       3     5     2    2
## 3394   250 ml. NR PET Individual No Retornable     0       0    NA     0    0
## 3395        400 ml NR Individual No Retornable     0       0    NA     0    1
## 3396       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3397     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3398        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 3399        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3400      1.5 Lts. NR   Familiar No Retornable     3       5     5     3    3
## 3401     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3402        2 Lts. NR   Familiar No Retornable     3       6     3     3    3
## 3403   250 ml. NR PET Individual No Retornable     0       0    NA     0    0
## 3404        400 ml NR Individual No Retornable     0       0     0     0    0
## 3405       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3406    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3407        600 ml NR Individual No Retornable     1       1     1     3    2
## 3408        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3409        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3410     1 Ltro. N.R. Individual No Retornable     4       2     6     2    6
## 3411      1.5 Lts. NR Individual No Retornable     3       3    16     3   10
## 3412   300 ML. NR PET Individual No Retornable    NA      NA    NA     0    1
## 3413        600 ml NR Individual No Retornable    NA       3    NA    NA    3
## 3414      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3415        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3416   300 ML. NR PET Individual No Retornable     1      NA     1     1    2
## 3417      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3418   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3419        600 ml NR Individual No Retornable     1      NA     1     2    1
## 3420   250 ml. NR PET Individual No Retornable     6       3     3     4    5
## 3421        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3422     1 Ltro. N.R.   Familiar No Retornable     1       1     2     5    5
## 3423     1 Ltro. N.R. Individual No Retornable    NA       2    NA    NA   NA
## 3424  100 ml NR Tetra Individual No Retornable     0      NA    NA    NA   NA
## 3425    12 Oz. NR Pet Individual No Retornable     2       2     2     2    2
## 3426        2 Lts. NR   Familiar No Retornable     3       6     6    14    6
## 3427        600 ml NR Individual No Retornable     3       1    NA     1   NA
## 3428      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 3429      Lata 450 ml Individual No Retornable    NA       1    NA    NA   NA
## 3430    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3431     1 Ltro. N.R.   Familiar No Retornable     2       2    NA    NA   NA
## 3432    237 ml NR Vid Individual No Retornable     1       1    NA    NA    1
## 3433 500 ml NR Vidrio Individual No Retornable     2      NA    NA     2    4
## 3434      Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 3435     1 Ltro. N.R.   Familiar No Retornable    32      32    30    32   44
## 3436        2 Lts. NR   Familiar No Retornable    37      39    59    48   65
## 3437 500 ml NR Vidrio Individual No Retornable    17      19    17    25   40
## 3438         8 Oz. NR Individual No Retornable     4       6     3     2    4
## 3439             Lata Individual No Retornable     3       2    NA     3    3
## 3440     1 Ltro. N.R.   Familiar No Retornable     4       6     8     6   11
## 3441        2 Lts. NR   Familiar No Retornable     8      17    11    14   14
## 3442 500 ml NR Vidrio Individual No Retornable     4       6     2     6    6
## 3443         8 Oz. NR Individual No Retornable     1       1     1     1    1
## 3444     1 Ltro. N.R.   Familiar No Retornable    38      34    34    40   57
## 3445     1.250 Lts NR   Familiar No Retornable    32      26    55    48   58
## 3446      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3447     1.5 Lts. Ret   Familiar    Retornable     6      13    10    16   16
## 3448    12 Oz. NR Pet Individual No Retornable     5       3     8     6   11
## 3449       12 Oz. Ret Individual    Retornable     8       6     5     6    2
## 3450        2 Lts. NR   Familiar No Retornable    56      65    93    93  110
## 3451       2 Lts. Ret   Familiar    Retornable     6      11     8     3   14
## 3452      2.5 Lts. NR   Familiar No Retornable    88      67   144    81  123
## 3453 2.5 Lts. Ret Pet   Familiar    Retornable    60      67   127    67   85
## 3454    500 ml NR PET Individual No Retornable    NA       2    NA     4    2
## 3455 500 ml NR Vidrio Individual No Retornable    25      21    27    32   46
## 3456       500 ml Ret Individual    Retornable    23      27    42    66   42
## 3457        710 ml NR Individual No Retornable     9       6     3     3   12
## 3458         8 Oz. NR Individual No Retornable     7       8    11     9   12
## 3459             Lata Individual No Retornable     6       5     5     6    8
## 3460      Lata 16 Oz. Individual No Retornable     2       2     4     4    8
## 3461      Lata 235 ml Individual No Retornable     1       1     3     4    2
## 3462        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3463     1 Ltro. N.R. Individual No Retornable     1       2     1     2    2
## 3464    500 ml NR PET Individual No Retornable     1      NA    NA     1    3
## 3465        600 ml NR Individual No Retornable     3       1     1     3    8
## 3466     250 ml Tetra Individual No Retornable     2       1     1     1    1
## 3467   250 ML. NR VID Individual No Retornable     1       1     1    NA    1
## 3468    413 ml NR VId Individual No Retornable     5       3     3     4    7
## 3469   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3470     1 Ltro. N.R.   Familiar No Retornable    NA       4    NA    NA    4
## 3471   300 ML. NR PET Individual No Retornable     1       1    NA    NA    1
## 3472    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3473    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3474    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3475     200 ml Tetra Individual No Retornable     0       0     0     1    0
## 3476        600 ml NR Individual No Retornable     1       2     2    10    2
## 3477      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3478        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3479      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3480     1 Ltro. N.R.   Familiar No Retornable     2       2    NA     4    2
## 3481     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3482       12 Oz. Ret Individual    Retornable     1       2     0    NA   NA
## 3483        2 Lts. NR   Familiar No Retornable     3       3     8    14   11
## 3484   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3485        400 ml NR Individual No Retornable    NA       0    NA    NA    0
## 3486       500 ml Ret Individual    Retornable     1       1     1     3    4
## 3487        600 ml NR Individual No Retornable     1       2     1     1    1
## 3488      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3489     1 Ltro. N.R.   Familiar No Retornable     4       2    NA    NA   NA
## 3490     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3491       12 Oz. Ret Individual    Retornable     1       2     0    NA   NA
## 3492        2 Lts. NR   Familiar No Retornable     3       3     8    NA    6
## 3493   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3494        400 ml NR Individual No Retornable     0       0    NA    NA    0
## 3495       500 ml Ret Individual    Retornable     1       1     1     3    2
## 3496        600 ml NR Individual No Retornable    NA       1    NA    NA    1
## 3497      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3498     1 Ltro. N.R.   Familiar No Retornable     4       2     2    NA    4
## 3499       12 Oz. Ret Individual    Retornable     1       2     0    NA   NA
## 3500        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3501   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3502        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 3503       500 ml Ret Individual    Retornable     1       1     1     3    4
## 3504        600 ml NR Individual No Retornable    NA       2    NA    NA    2
## 3505        600 ml NR Individual No Retornable     1       2     1     1    1
## 3506     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3507        2 Lts. NR   Familiar No Retornable    14       6    14    11   11
## 3508        400 ml NR Individual No Retornable    NA       0     0    NA    0
## 3509        600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 3510      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3511     1 Ltro. N.R.   Familiar No Retornable     6       2     2     6    2
## 3512     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3513       12 Oz. Ret Individual    Retornable     1       2     0    NA   NA
## 3514        2 Lts. NR   Familiar No Retornable     6      NA     6    14   11
## 3515   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3516        400 ml NR Individual No Retornable    NA       1    NA     0    0
## 3517       500 ml Ret Individual    Retornable     1       1     1     3    6
## 3518        600 ml NR Individual No Retornable     2       1     3     1    4
## 3519      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3520        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 3521    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3522        600 ml NR Individual No Retornable    12       7     4     6   10
## 3523      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3524      Lata 453 ml Individual No Retornable    NA       0    NA    NA   NA
## 3525      LATA 680 ML Individual No Retornable    NA      NA     1     1   NA
## 3526       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3527        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3528        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3529     1 Ltro. N.R. Individual No Retornable     2       2    NA     2    2
## 3530      1.5 Lts. NR Individual No Retornable     3       6    NA     3    3
## 3531   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3532   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3533   250 ml. NR PET Individual No Retornable     2       2     3     2    3
## 3534     1 Ltro. N.R.   Familiar No Retornable     1       1    NA     1    1
## 3535    12 Oz. NR Pet Individual No Retornable     2       1     1     1    1
## 3536        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3537     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 3538     1 Ltro. N.R.   Familiar No Retornable    11      11     8    11    8
## 3539        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 3540       2 Lts. Ret   Familiar    Retornable     8       8     8    11    6
## 3541        400 ml NR Individual No Retornable     2       3    NA     2   NA
## 3542 500 ml NR Vidrio Individual No Retornable     6       8     8    11    6
## 3543         8 Oz. NR Individual No Retornable     2      NA     1     1   NA
## 3544             Lata Individual No Retornable     2      NA     2     1   NA
## 3545     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    4
## 3546     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3547     1.250 Lts NR   Familiar No Retornable    50      42    45    45   32
## 3548      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3549     1.5 Lts. Ret   Familiar    Retornable    19      22    25    32   22
## 3550    12 Oz. NR Pet Individual No Retornable     2       2     2     2    2
## 3551       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA    2
## 3552       2 Lts. Ret   Familiar    Retornable    17      11    11    11   14
## 3553      2.5 Lts. NR   Familiar No Retornable    63      49    56    63   63
## 3554 2.5 Lts. Ret Pet   Familiar    Retornable   183     151   134   215  155
## 3555        400 ml NR Individual No Retornable     8       8     8     8   10
## 3556 500 ml NR Vidrio Individual No Retornable    13      13    13    19   17
## 3557       500 ml Ret Individual    Retornable    40      44    34    46   53
## 3558         8 Oz. NR Individual No Retornable     3       3     2     2    3
## 3559             Lata Individual No Retornable     5       3     3     3    5
## 3560      Lata 235 ml Individual No Retornable    NA      NA     1    NA    1
## 3561        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3562     1 Ltro. N.R. Individual No Retornable     1       1    NA     1    1
## 3563    500 ml NR PET Individual No Retornable    NA       1    NA    NA    1
## 3564        600 ml NR Individual No Retornable     1       1     1    NA    1
## 3565     250 ml Tetra Individual No Retornable     3       0     0     0    0
## 3566    413 ml NR VId Individual No Retornable     5       4     3     5    3
## 3567   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3568     1 Ltro. N.R.   Familiar No Retornable    NA      NA     2    NA   NA
## 3569   300 ML. NR PET Individual No Retornable     0       0    NA     0    0
## 3570     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3571        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3572      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3573     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3574        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3575   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3576        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 3577       500 ml Ret Individual    Retornable     1       1     1     2    1
## 3578      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3579      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3580     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3581        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3582   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3583        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3584       500 ml Ret Individual    Retornable     1       1     1     2    1
## 3585      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3586        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3587   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3588        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 3589       500 ml Ret Individual    Retornable     1       1     1     2    1
## 3590     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3591        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 3592        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 3593       500 ml Ret Individual    Retornable    NA      NA     2    NA   NA
## 3594      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3595     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3596        2 Lts. NR   Familiar No Retornable     3       3     3     6   NA
## 3597   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3598        400 ml NR Individual No Retornable     0      NA    NA     0    2
## 3599       500 ml Ret Individual    Retornable     1       1     1     2    1
## 3600      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3601    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3602        600 ml NR Individual No Retornable     3       1     1     3    5
## 3603       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3604        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3605      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3606        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3607     1 Ltro. N.R. Individual No Retornable     8       8    15     4    8
## 3608      1.5 Lts. NR Individual No Retornable    13       3    16     3   16
## 3609        600 ml NR Individual No Retornable    10      NA     3     5    8
## 3610        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3611   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3612      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3613        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3614   250 ml. NR PET Individual No Retornable     3       3     4     2    3
## 3615        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3616     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 3617     1 Ltro. N.R. Individual No Retornable    NA       2    NA    NA   NA
## 3618    12 Oz. NR Pet Individual No Retornable    NA       2     1     1    1
## 3619        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA    3
## 3620      Lata 235 ml Individual No Retornable    NA       0    NA    NA    0
## 3621      Lata 450 ml Individual No Retornable    NA      NA     1    NA   NA
## 3622    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3623 500 ml NR Vidrio Individual No Retornable     2      NA     2    NA   NA
## 3624      Lata 235 ml Individual No Retornable    NA       1     1    NA   NA
## 3625     1 Ltro. N.R.   Familiar No Retornable    11       6     8    11   17
## 3626        2 Lts. NR   Familiar No Retornable     6       8     6     3    8
## 3627        400 ml NR Individual No Retornable     5       3     3     2    2
## 3628 500 ml NR Vidrio Individual No Retornable    13       4    11    11    8
## 3629         8 Oz. NR Individual No Retornable     1       2     1     2    2
## 3630     1 Ltro. N.R.   Familiar No Retornable     2       2    NA     2    4
## 3631        2 Lts. NR   Familiar No Retornable    NA       3     6     6    3
## 3632 500 ml NR Vidrio Individual No Retornable     2       2     4     2    4
## 3633     1 Ltro. N.R.   Familiar No Retornable    42      25    25    42   30
## 3634     1.250 Lts NR   Familiar No Retornable    NA      NA    NA     3   NA
## 3635      1.5 Lts. NR   Familiar No Retornable    10       6    19    13   19
## 3636     1.5 Lts. Ret   Familiar    Retornable    16      13    22    22   19
## 3637    12 Oz. NR Pet Individual No Retornable     5       6     6     6    8
## 3638        2 Lts. NR   Familiar No Retornable    25      20    11    17   25
## 3639      2.5 Lts. NR   Familiar No Retornable    35      32    42    56   63
## 3640 2.5 Lts. Ret Pet   Familiar    Retornable    92     116   162   148  232
## 3641        400 ml NR Individual No Retornable     2      NA    NA    NA   NA
## 3642    500 ml NR PET Individual No Retornable     8       8     8     8   11
## 3643 500 ml NR Vidrio Individual No Retornable    25      15    19    23   32
## 3644       500 ml Ret Individual    Retornable    36      40    57    17   34
## 3645         8 Oz. NR Individual No Retornable     8       6     8     7    8
## 3646             Lata Individual No Retornable     2       3     3     5    3
## 3647      Lata 16 Oz. Individual No Retornable     2      NA     4     2    4
## 3648      Lata 235 ml Individual No Retornable     2       2     2     2    2
## 3649        600 ml NR Individual No Retornable    NA       1    NA    NA    1
## 3650     1 Ltro. N.R. Individual No Retornable    NA      NA     1     1    1
## 3651    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3652        600 ml NR Individual No Retornable     3       2    NA    NA    3
## 3653  125 ml NR Tetra Individual No Retornable    NA       1    NA    NA   NA
## 3654     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 3655   250 ML. NR VID Individual No Retornable    NA       0    NA    NA    1
## 3656    413 ml NR VId Individual No Retornable     5       3     7     3    8
## 3657   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3658     200 ml Tetra Individual No Retornable    NA       0     0     0    0
## 3659        600 ml NR Individual No Retornable     1       1     1     2    2
## 3660        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3661      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3662      1.5 Lts. NR   Familiar No Retornable     5       3     2     3    3
## 3663     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3664        2 Lts. NR   Familiar No Retornable     6      NA     6     3   NA
## 3665        400 ml NR Individual No Retornable    NA       0     0     0    1
## 3666       500 ml Ret Individual    Retornable     1      NA     1     1    3
## 3667        600 ml NR Individual No Retornable     1       1     2     1    1
## 3668      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3669      1.5 Lts. NR   Familiar No Retornable     5       2     2     2    2
## 3670     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3671        2 Lts. NR   Familiar No Retornable     4      NA     4    NA    6
## 3672        400 ml NR Individual No Retornable    NA      NA    NA     0    0
## 3673       500 ml Ret Individual    Retornable     1      NA     1     1    1
## 3674        600 ml NR Individual No Retornable     1       1     1     1    1
## 3675      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3676      1.5 Lts. NR   Familiar No Retornable     3       5     2     3    2
## 3677        2 Lts. NR   Familiar No Retornable     1      NA     1    NA    6
## 3678        400 ml NR Individual No Retornable    NA      NA    NA     1    1
## 3679       500 ml Ret Individual    Retornable     1      NA     1     1    1
## 3680        600 ml NR Individual No Retornable    NA       1    NA     2    1
## 3681        600 ml NR Individual No Retornable     1       1     1    NA   NA
## 3682     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3683        2 Lts. NR   Familiar No Retornable     6      NA     6    NA    3
## 3684        400 ml NR Individual No Retornable    NA       0     0     0    0
## 3685       500 ml Ret Individual    Retornable    NA       2    NA    NA    2
## 3686      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3687      1.5 Lts. NR   Familiar No Retornable     8       2     5     2    3
## 3688     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3689        2 Lts. NR   Familiar No Retornable     6       6     6     3    6
## 3690        400 ml NR Individual No Retornable     0       0     0     1    1
## 3691       500 ml Ret Individual    Retornable     1      NA     3     1    5
## 3692        600 ml NR Individual No Retornable     2       1     1     2    3
## 3693      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3694    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3695        600 ml NR Individual No Retornable    NA      NA     3     3    4
## 3696      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3697        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3698        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3699     1 Ltro. N.R. Individual No Retornable     2       8    15    11   13
## 3700      1.5 Lts. NR Individual No Retornable    10      16    19    10   13
## 3701   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3702        600 ml NR Individual No Retornable    10      15    13    15   15
## 3703     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3704   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3705        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3706        600 ml NR Individual No Retornable     3      NA     4    NA   NA
## 3707   250 ml. NR PET Individual No Retornable     5       4     6     4    3
## 3708        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3709     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     3    4
## 3710  100 ml NR Tetra Individual No Retornable    NA       0    NA    NA   NA
## 3711    12 Oz. NR Pet Individual No Retornable    NA       1     1     2    1
## 3712        2 Lts. NR   Familiar No Retornable     3       3     6    NA    3
## 3713        600 ml NR Individual No Retornable    NA       3    NA     1    1
## 3714      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3715      Lata 450 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3716    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3717    237 ml NR Vid Individual No Retornable     1      NA    NA    NA   NA
## 3718 500 ml NR Vidrio Individual No Retornable     2      NA     2    NA   NA
## 3719      Lata 235 ml Individual No Retornable     2       3     1     1   NA
## 3720     1 Ltro. N.R.   Familiar No Retornable    NA       2     4     2    4
## 3721 500 ml NR Vidrio Individual No Retornable     4       6     2     6    4
## 3722         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3723             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3724 500 ml NR Vidrio Individual No Retornable     2       2    NA     2   NA
## 3725         8 Oz. NR Individual No Retornable     1      NA    NA    NA   NA
## 3726     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3727     1.250 Lts NR   Familiar No Retornable    61      37    79    29   55
## 3728      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3729     1.5 Lts. Ret   Familiar    Retornable   130     101   149   133  193
## 3730    12 Oz. NR Pet Individual No Retornable     6      11    14    11   12
## 3731        2 Lts. NR   Familiar No Retornable     6      NA    NA     1   NA
## 3732       2 Lts. Ret   Familiar    Retornable    NA       3     3     6    3
## 3733      2.5 Lts. NR   Familiar No Retornable    NA      32    32    35   46
## 3734 2.5 Lts. Ret Pet   Familiar    Retornable   243     159   211   215  208
## 3735    500 ml NR PET Individual No Retornable    15       4    19    13   13
## 3736 500 ml NR Vidrio Individual No Retornable     8      17    17    13   23
## 3737       500 ml Ret Individual    Retornable   186     125   146   175  188
## 3738         8 Oz. NR Individual No Retornable     4       4     4     7    6
## 3739             Lata Individual No Retornable     5       2     5     3    3
## 3740      Lata 16 Oz. Individual No Retornable    NA      NA     4     6    4
## 3741      Lata 235 ml Individual No Retornable     9       7     7     3    4
## 3742     1 Ltro. N.R. Individual No Retornable    NA       1     1     1    1
## 3743        600 ml NR Individual No Retornable     1       1     3     1    2
## 3744     250 ml Tetra Individual No Retornable     2       0     0     0    1
## 3745   250 ML. NR VID Individual No Retornable    NA       0    NA    NA   NA
## 3746    413 ml NR VId Individual No Retornable     6       7     8     3    5
## 3747   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3748     1 Ltro. N.R.   Familiar No Retornable    NA       2    NA    NA    2
## 3749   300 ML. NR PET Individual No Retornable     1      NA     1    NA    1
## 3750     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3751        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3752      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3753      1.5 Lts. NR   Familiar No Retornable    10       3    11    10    4
## 3754     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3755        2 Lts. NR   Familiar No Retornable     1      NA     1    12   NA
## 3756        400 ml NR Individual No Retornable     1       4     2     0    2
## 3757       500 ml Ret Individual    Retornable     7       2     6     2    6
## 3758        600 ml NR Individual No Retornable     3       3     3    NA    3
## 3759             Lata Individual No Retornable    NA      NA    NA     0   NA
## 3760      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 3761      1.5 Lts. NR   Familiar No Retornable     3      NA     5     3    4
## 3762     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3763        2 Lts. NR   Familiar No Retornable     1      NA     1     6   NA
## 3764        400 ml NR Individual No Retornable     1       1     2    NA    1
## 3765       500 ml Ret Individual    Retornable     5       4     6     2    2
## 3766        600 ml NR Individual No Retornable    NA       3     3    NA    3
## 3767             Lata Individual No Retornable    NA      NA    NA     0   NA
## 3768      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 3769      1.5 Lts. NR   Familiar No Retornable     3       3     6     6    7
## 3770        2 Lts. NR   Familiar No Retornable     1      NA     1     4   NA
## 3771        400 ml NR Individual No Retornable     1       2    NA    NA   NA
## 3772       500 ml Ret Individual    Retornable     3       4    NA    NA    2
## 3773        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3774             Lata Individual No Retornable    NA      NA    NA     0   NA
## 3775     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3776        2 Lts. NR   Familiar No Retornable    NA      NA     3     8   NA
## 3777        400 ml NR Individual No Retornable    NA      NA     2    NA   NA
## 3778       500 ml Ret Individual    Retornable     4      NA     4     2    4
## 3779        600 ml NR Individual No Retornable    NA       1     3    NA    3
## 3780      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 3781      1.5 Lts. NR   Familiar No Retornable    10       3    10    10    7
## 3782     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3783        2 Lts. NR   Familiar No Retornable     1       3     1     9    6
## 3784        400 ml NR Individual No Retornable     3       3     2     0    5
## 3785       500 ml Ret Individual    Retornable     7       8     8     6    8
## 3786        600 ml NR Individual No Retornable     3       4     5     3    5
## 3787             Lata Individual No Retornable    NA      NA    NA     0   NA
## 3788      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 3789    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3790        600 ml NR Individual No Retornable     1      NA     1     3    6
## 3791      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3792        2 Lts. NR   Familiar No Retornable    NA      NA    NA     8   NA
## 3793        600 ml NR Individual No Retornable     5      NA     5     3    5
## 3794      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3795        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3796     1 Ltro. N.R. Individual No Retornable     6      51     4     2    2
## 3797      1.5 Lts. NR Individual No Retornable     6      10    10    16   19
## 3798   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3799        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3800        600 ml NR Individual No Retornable     5       3     3     5    3
## 3801        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3802   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3803     1 Ltro. N.R. Individual No Retornable    NA       2    NA    NA   NA
## 3804      1.5 Lts. NR Individual No Retornable    NA       3    NA     2   NA
## 3805        600 ml NR Individual No Retornable    NA      NA    NA    NA    4
## 3806   250 ml. NR PET Individual No Retornable     1      NA    NA    NA    1
## 3807        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3808   250 ml. NR PET Individual No Retornable     9       8    11    10    7
## 3809        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3810     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 3811  100 ml NR Tetra Individual No Retornable     0       0    NA    NA   NA
## 3812    12 Oz. NR Pet Individual No Retornable    NA       1     1     1    1
## 3813        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3814        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3815      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3816      Lata 450 ml Individual No Retornable     1      NA     1     1   NA
## 3817    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3818      Lata 235 ml Individual No Retornable     1       1    NA    NA   NA
## 3819     1 Ltro. N.R.   Familiar No Retornable     2       4     4     2    6
## 3820 500 ml NR Vidrio Individual No Retornable     6       2    11    13    6
## 3821             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3822     1 Ltro. N.R.   Familiar No Retornable     8       8    40    NA   42
## 3823      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3824     1.5 Lts. Ret   Familiar    Retornable    35     127    86   206   44
## 3825    12 Oz. NR Pet Individual No Retornable    21      26     9    11   44
## 3826        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 3827       2 Lts. Ret   Familiar    Retornable     6       3    NA    NA   NA
## 3828      2.5 Lts. NR   Familiar No Retornable    18      25    32    18   63
## 3829 2.5 Lts. Ret Pet   Familiar    Retornable   173     271   243   328  370
## 3830 500 ml NR Vidrio Individual No Retornable    25      13    23    15   72
## 3831       500 ml Ret Individual    Retornable   112     154   192   165  159
## 3832         8 Oz. NR Individual No Retornable     5       4     4     5    5
## 3833             Lata Individual No Retornable     2       3     6     6    3
## 3834      Lata 16 Oz. Individual No Retornable    12       8    14    10   16
## 3835      Lata 235 ml Individual No Retornable     4       3     5     4    8
## 3836        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3837     1 Ltro. N.R. Individual No Retornable    NA       2     3     1    1
## 3838    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3839        600 ml NR Individual No Retornable     3       1    NA     3    1
## 3840     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 3841   250 ML. NR VID Individual No Retornable    NA       1    NA    NA    1
## 3842    413 ml NR VId Individual No Retornable    10       5     8    NA    7
## 3843   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3844     1 Ltro. N.R.   Familiar No Retornable     2      NA     2     2   NA
## 3845   300 ML. NR PET Individual No Retornable    NA       1     1     2    1
## 3846    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3847     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3848        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3849      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3850      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3851     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3852        2 Lts. NR   Familiar No Retornable     3       6     3     6    6
## 3853       2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3854      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA   NA
## 3855   250 ml. NR PET Individual No Retornable     1      NA    NA    NA    1
## 3856        400 ml NR Individual No Retornable     1       1     3     1    3
## 3857       500 ml Ret Individual    Retornable    NA      NA     7     6   12
## 3858        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3859      Lata 235 ml Individual No Retornable    NA       0    NA     0    0
## 3860      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3861     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3862        2 Lts. NR   Familiar No Retornable    NA       6     8     3    6
## 3863      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA    4
## 3864   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    1
## 3865        400 ml NR Individual No Retornable    NA      NA     3     1    2
## 3866       500 ml Ret Individual    Retornable     2       2     5     2    7
## 3867        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3868             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3869      Lata 235 ml Individual No Retornable    NA       0    NA     0    0
## 3870      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3871        2 Lts. NR   Familiar No Retornable    NA       6    NA     3   NA
## 3872      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA   NA
## 3873   250 ml. NR PET Individual No Retornable     1      NA    NA    NA    1
## 3874        400 ml NR Individual No Retornable     2      NA    NA     1    1
## 3875       500 ml Ret Individual    Retornable    NA      NA     7     2   14
## 3876        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3877     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3878        2 Lts. NR   Familiar No Retornable    NA       8     3     6   14
## 3879      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA    7
## 3880        400 ml NR Individual No Retornable    NA      NA     0    NA    0
## 3881       500 ml Ret Individual    Retornable     6       4     4    NA    8
## 3882      Lata 235 ml Individual No Retornable    NA       0    NA     0    0
## 3883      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3884     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3885        2 Lts. NR   Familiar No Retornable    NA       6    17    20    8
## 3886      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    7
## 3887   250 ml. NR PET Individual No Retornable     1      NA    NA    NA    1
## 3888        400 ml NR Individual No Retornable    NA       1     3     1    2
## 3889       500 ml Ret Individual    Retornable    15       6    14    15    7
## 3890        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3891             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3892      Lata 235 ml Individual No Retornable    NA       0    NA     0    0
## 3893    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3894        600 ml NR Individual No Retornable    NA      NA     3    NA    3
## 3895        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3896        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3897     1 Ltro. N.R. Individual No Retornable     2       6     2     2    2
## 3898      1.5 Lts. NR Individual No Retornable     3       3     3     3    6
## 3899   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3900   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3901        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3902        473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3903        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3904   250 ml. NR PET Individual No Retornable     6       5     3    NA    6
## 3905        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3906     1 Ltro. N.R.   Familiar No Retornable     1       1    NA     1   NA
## 3907     1 Ltro. N.R. Individual No Retornable    NA       2     2    NA    2
## 3908  100 ml NR Tetra Individual No Retornable     3      NA    NA    NA   NA
## 3909    12 Oz. NR Pet Individual No Retornable     2       2     4     1    2
## 3910        2 Lts. NR   Familiar No Retornable    NA       6     8     8   11
## 3911        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3912      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 3913      Lata 450 ml Individual No Retornable    NA       1    NA    NA   NA
## 3914    500 ml NR PET Individual No Retornable     1      NA    NA    NA   NA
## 3915 500 ml NR Vidrio Individual No Retornable    NA      NA     4    NA   NA
## 3916      Lata 235 ml Individual No Retornable     1       1    NA    NA   NA
## 3917     1 Ltro. N.R.   Familiar No Retornable     4       8     6     6    8
## 3918        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 3919 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA    6
## 3920        600 ml NR Individual No Retornable     3      NA    NA    NA    3
## 3921         8 Oz. NR Individual No Retornable     1      NA    NA    NA    1
## 3922 500 ml NR Vidrio Individual No Retornable     2       6     4     2    8
## 3923     1 Ltro. N.R.   Familiar No Retornable     4       8    30    NA   34
## 3924     1.250 Lts NR   Familiar No Retornable    16       5    18     8    8
## 3925      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3926     1.5 Lts. Ret   Familiar    Retornable    54      32    32    51   32
## 3927    12 Oz. NR Pet Individual No Retornable     6       6     2    23    2
## 3928        2 Lts. NR   Familiar No Retornable    NA      NA    NA    17   NA
## 3929      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    53   95
## 3930 2.5 Lts. Ret Pet   Familiar    Retornable   123     159   211   162  144
## 3931    500 ml NR PET Individual No Retornable     6      21    NA    30   NA
## 3932 500 ml NR Vidrio Individual No Retornable     2       6     6    44   25
## 3933       500 ml Ret Individual    Retornable   110     118   120    76  142
## 3934        710 ml NR Individual No Retornable     3       6     3    NA    3
## 3935         8 Oz. NR Individual No Retornable     2       3     3     1   NA
## 3936      Lata 235 ml Individual No Retornable     1       3     3     6   NA
## 3937     1 Ltro. N.R. Individual No Retornable     1       1     1     2    1
## 3938    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3939        600 ml NR Individual No Retornable     1      NA     1     3    1
## 3940    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3941  100 ml NR Tetra Individual No Retornable    NA       2    NA    NA    1
## 3942     250 ml Tetra Individual No Retornable     6       0     7     0    4
## 3943   250 ML. NR VID Individual No Retornable    NA       0    NA     1    2
## 3944    413 ml NR VId Individual No Retornable     2       2    NA     2    9
## 3945   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3946     1 Ltro. N.R.   Familiar No Retornable     2       2    NA     2    2
## 3947   300 ML. NR PET Individual No Retornable     0       0    NA     0    1
## 3948     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3949      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3950      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3951     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3952        2 Lts. NR   Familiar No Retornable    NA       4     1     3   NA
## 3953      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    11   NA
## 3954        400 ml NR Individual No Retornable     0       0     1     0    0
## 3955       500 ml Ret Individual    Retornable     1      NA    NA    NA   10
## 3956        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3957      Lata 235 ml Individual No Retornable    NA       0     0     2   NA
## 3958      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3959     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3960        2 Lts. NR   Familiar No Retornable    NA       1     1     3   NA
## 3961      2.5 Lts. NR   Familiar No Retornable    NA       4     7     7    7
## 3962        400 ml NR Individual No Retornable     0       0     1    NA    0
## 3963       500 ml Ret Individual    Retornable     1      NA    NA    NA    3
## 3964        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3965      Lata 235 ml Individual No Retornable    NA       0     0     2   NA
## 3966      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3967        2 Lts. NR   Familiar No Retornable    NA       1     1     3   NA
## 3968      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3969        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 3970       500 ml Ret Individual    Retornable     1      NA    NA    NA    1
## 3971        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3972     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3973        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 3974      2.5 Lts. NR   Familiar No Retornable    NA      NA    11    18   11
## 3975        400 ml NR Individual No Retornable     0       0     1    NA    0
## 3976       500 ml Ret Individual    Retornable    NA       2    NA     2    2
## 3977      Lata 235 ml Individual No Retornable    NA       0     0     2   NA
## 3978      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3979     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3980        2 Lts. NR   Familiar No Retornable     3       6     1     8    3
## 3981      2.5 Lts. NR   Familiar No Retornable    NA       4     4    11    4
## 3982        400 ml NR Individual No Retornable     0       0     1    NA    0
## 3983       500 ml Ret Individual    Retornable     1      NA     2    NA    3
## 3984        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3985      Lata 235 ml Individual No Retornable    NA       0     0     2   NA
## 3986    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3987        600 ml NR Individual No Retornable     2      NA    NA     3    8
## 3988      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3989      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3990        2 Lts. NR   Familiar No Retornable     6       6     6     8   14
## 3991        600 ml NR Individual No Retornable     3       3     3     3    9
## 3992             Lata Individual No Retornable     2       2    NA     2    3
## 3993      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3994        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3995     1 Ltro. N.R. Individual No Retornable    15       8    13    11   19
## 3996      1.5 Lts. NR Individual No Retornable     6       3    13    29   25
## 3997   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3998        5 Lts. NR   Familiar No Retornable    11      11    11    11   18
## 3999        600 ml NR Individual No Retornable     8      13     8    10   13
##      Junio Julio Agosto Septiembre Octubre Noviembre DICIEMBRE
## 1       NA    NA     NA         NA      NA        NA         1
## 2        2     2      2          2       2         4         2
## 3        3     3      3          3       3         3         3
## 4       NA    NA     NA         NA      NA        NA         1
## 5       NA    NA     NA         NA      NA         0        NA
## 6       NA    NA     NA         NA      NA        NA        NA
## 7       NA     0     NA         NA       0        NA        NA
## 8        1    NA      1          1      NA        NA        NA
## 9        4     4      7          4       3         1         3
## 10       0    NA     NA         NA      NA        NA        NA
## 11       1     1      1          1       1         1         1
## 12      NA    NA     NA         NA      NA        NA        NA
## 13       1     1      1          2       1         1         1
## 14      NA     6      3          6      NA         3        17
## 15      NA    NA     NA          1      NA        NA        NA
## 16      NA    NA      2         NA      NA        NA         2
## 17      NA    NA     NA         NA       3        NA        NA
## 18       4     2      2         NA       4         2         4
## 19      NA    NA     NA          2      NA         4         2
## 20       8    NA     NA         NA      NA        NA        NA
## 21      10    25     32         19      32        10        38
## 22      67    86     60         67      76        67        89
## 23      14    15     15          8      21        26        11
## 24       2     2      3          2       2         2         2
## 25      NA     6     NA         NA      NA        NA        NA
## 26       8    17      6          3       3         6         8
## 27      14    25     35         18      28        14       278
## 28      95   127     81        102      92       120       109
## 29      23    30     25         21      42        32        25
## 30     108   127     95         93     139        93       101
## 31       2     3      3          2       5         2         2
## 32       2     2      5         NA       3        NA         3
## 33       2     4      4          6       4         2         2
## 34       1     3      2          4       2         2         2
## 35      NA    NA      1         NA      NA        NA        NA
## 36       1     1      1          1       1         1         1
## 37      NA    NA     NA         NA      NA        NA        NA
## 38      NA    NA     NA         NA      NA        NA        NA
## 39       0     0      0          0       0         0         0
## 40       1     2     NA          0       1        NA         3
## 41      NA    NA     NA         NA       0        NA        NA
## 42       1    NA     NA         NA      NA        NA        NA
## 43      NA    NA     NA         NA      NA        NA         1
## 44       0     0      0          0       0         0         0
## 45       1     1     NA         NA      NA        NA         1
## 46      NA    NA     NA         NA       1         1        NA
## 47       1    NA     NA         NA      NA        NA        NA
## 48       3     3     NA         NA      NA        NA         3
## 49      NA     0      1         NA       0        NA        NA
## 50       1     0      0          0      NA         0         0
## 51       2     1     NA          2       1         1         1
## 52       3     1      1          2       1         1         1
## 53      NA    NA     NA         NA      NA        NA        NA
## 54      NA    NA     NA         NA      NA        NA        NA
## 55       1    NA     NA         NA      NA        NA        NA
## 56      NA     0     NA         NA       0        NA        NA
## 57       1    NA     NA         NA      NA        NA        NA
## 58       2     1     NA         NA       1         1         1
## 59      NA     1      1         NA       2        NA         1
## 60      NA    NA     NA         NA      NA        NA        NA
## 61      NA    NA     NA         NA      NA        NA        NA
## 62      NA     0     NA         NA       0        NA        NA
## 63       1    NA     NA         NA      NA        NA        NA
## 64       2     1     NA         NA       1         1         1
## 65      NA    NA      1          1       3         1         1
## 66      NA    NA     NA         NA      NA        NA        NA
## 67       1    NA     NA         NA      NA        NA        NA
## 68      NA    NA      3         NA       3         3        NA
## 69      NA    NA     NA         NA      NA        NA        NA
## 70       3    NA      3          3       1        NA        NA
## 71      NA    NA     NA         NA      NA        NA        NA
## 72       1    NA     NA         NA      NA        NA        NA
## 73       3     3      3          3      NA        NA         6
## 74      NA     0     NA         NA       0        NA        NA
## 75       1    NA     NA         NA       0        NA        NA
## 76       2     1      2          4       1         1         1
## 77      NA     1      2          1       3         1         3
## 78      NA    NA     NA         NA      NA        NA        NA
## 79      NA    NA     NA         NA      NA        NA        NA
## 80      NA    NA     NA         NA      NA        NA         1
## 81       1    NA      1          1       1        NA         1
## 82      NA    NA     NA         NA       1        NA         1
## 83      NA    NA     NA         NA      NA        NA         3
## 84      NA    NA     NA         NA      NA         1        NA
## 85       4     4      4          8       6         2         2
## 86       6     6      6          3       3         3         3
## 87      NA    NA      4         NA      NA        NA        NA
## 88       3     3     NA          3       8        NA         3
## 89      NA    NA     NA         NA      NA        NA         1
## 90      NA    NA     NA         NA      NA         0        NA
## 91      NA    NA     NA         NA      NA        NA        NA
## 92       5     3      5          3       3         3         3
## 93       0    NA     NA         NA      NA        NA        NA
## 94       3     1      2          1       1         1         2
## 95       1     1      2          1       2         1         2
## 96       6    NA      3         NA      NA        NA         6
## 97      NA     0     NA         NA      NA         0         0
## 98       1    NA     NA          1      NA        NA        NA
## 99       1    NA     NA         NA      NA        NA        NA
## 100     NA     2      2         NA      NA        NA        NA
## 101     NA     1     NA          1       1        NA        NA
## 102      2     2      2          2       4         2         2
## 103      3    NA     NA         NA      NA        NA         3
## 104     NA    NA     NA         NA      NA        NA        NA
## 105      2    NA     NA         NA      NA        NA         2
## 106      2     6      4          6       4         4         4
## 107     NA    NA      1         NA       1        NA        NA
## 108     NA     1     NA          1      NA        NA         1
## 109     NA    NA     NA         NA      NA        NA        NA
## 110      1    NA     NA         NA       1        NA        NA
## 111     NA    NA      2          4       2         2         2
## 112     NA    NA     NA         NA      NA        NA        NA
## 113      3     3     NA          3       3         3         3
## 114     10    13      6         13      16        10         6
## 115      5     3      5          3       5         6         5
## 116     NA    NA     NA         NA      NA        NA         3
## 117     NA    NA     NA         NA      NA        NA        NA
## 118     NA    NA     NA         NA      NA         7        NA
## 119     39    42     39         60      28        25        25
## 120      4     4      2          4       2         6        NA
## 121     15    11      8         11      11        11         8
## 122     44    36     27         40      40        25        23
## 123      3     4      5          4       4         6         4
## 124      2     2     NA          3       3         3         5
## 125      1     3      2          1       3         1         2
## 126      1     2      1          1       1         1         1
## 127     NA    NA     NA         NA      NA        NA        NA
## 128      3     1     NA          1       2         2         2
## 129      0     0      0          1       0         1         0
## 130      1     2      2          2       1         2         3
## 131     NA    NA     NA         NA      NA        NA        NA
## 132     NA    NA     NA          1       0        NA        NA
## 133     NA    NA     NA         NA       2        NA        NA
## 134      0     0      0          0       1         0        NA
## 135     NA    NA     NA         NA      NA        NA         1
## 136      0     0      1          1       0         0         0
## 137     NA     1     NA         NA       1        NA        NA
## 138     NA    NA     NA         NA       1         1        NA
## 139     NA    NA     NA         NA      NA         2         2
## 140      2     1      1         NA      NA        NA        NA
## 141      3     1     NA         NA      NA         1         3
## 142      0     0     NA          0      NA        NA         0
## 143     NA    NA     NA         NA      NA        NA        NA
## 144     NA     1      1         NA       1        NA        NA
## 145     NA    NA     NA         NA      NA        NA        NA
## 146      2     1      1         NA      NA        NA        NA
## 147     NA     1     NA         NA      NA         1        NA
## 148      0    NA     NA         NA      NA        NA        NA
## 149      2    NA     NA         NA      NA        NA        NA
## 150     NA    NA     NA         NA       1        NA        NA
## 151     NA    NA     NA         NA      NA        NA        NA
## 152     NA    NA     NA         NA      NA        NA         2
## 153     NA     1     NA         NA       3         1        NA
## 154      1    NA     NA         NA      NA         0        NA
## 155     NA    NA     NA          2      NA         2         2
## 156     NA     1     NA         NA      NA        NA        NA
## 157     NA    NA     NA         NA      NA        NA        NA
## 158      2     1      1         NA      NA        NA        NA
## 159     NA    NA      3         NA      NA        NA        NA
## 160     NA    NA      0         NA      NA        NA        NA
## 161     NA     2      2          2       4        NA        NA
## 162     NA    NA      1         NA      NA        NA        NA
## 163     NA    NA     NA         NA      NA        NA        NA
## 164     NA    NA     NA         NA      NA         2         2
## 165      2     1      1         NA      NA        NA        NA
## 166     NA     1     NA          3      NA         1         6
## 167      0    NA     NA          0       0        NA        NA
## 168     NA    NA     NA         NA      NA        NA        NA
## 169     NA     1      1          1       1        NA        NA
## 170     NA    NA     NA         NA      NA        NA        NA
## 171     NA     3     NA         NA       1        NA        NA
## 172      1     1     NA          1      NA         1         3
## 173     NA    NA     NA         NA      NA        NA        NA
## 174     NA    NA     NA         NA      NA         3         1
## 175     13    21     15         13       4        11         8
## 176     32    38     13          6       6        13        22
## 177     NA    NA     NA          0      NA        NA        NA
## 178     NA    NA     NA         NA      NA        NA        NA
## 179     13     8     10          5       8         5         8
## 180     NA    NA     NA         NA      NA        NA         3
## 181     NA    NA     NA         NA      NA         0        NA
## 182      3    NA     NA         NA      NA        NA        NA
## 183     NA    NA     NA         NA      NA        NA        NA
## 184     NA     2     NA          1      NA         1         1
## 185      2     4     NA          1       1         2         1
## 186      0     1     NA         NA      NA         0         1
## 187      2     2      2         NA       2         1         1
## 188      1     1     NA          1      NA         1         2
## 189     17    11      3          3       3        NA        NA
## 190     NA    NA     NA         NA      NA        NA         0
## 191      1     1     NA         NA      NA        NA        NA
## 192      1    NA     NA         NA      NA        NA        NA
## 193     NA    NA     NA         NA      NA        NA        NA
## 194     NA    NA     NA         NA      NA        NA        NA
## 195      2    NA     NA         NA      NA        NA        NA
## 196     NA    NA     NA         NA      NA        NA        NA
## 197      8     6     11         13       8        13        11
## 198      2    NA      3         NA       2         2         2
## 199      6     8      3          8      11         6         3
## 200      6    11      6         17      11        11        20
## 201     14     7     NA         11       4        11         7
## 202     NA    NA     NA         NA      NA        NA         2
## 203      6    11     21         15      17        19        13
## 204      1     3      2          1       2         2         3
## 205     NA    NA     NA          1       1        NA        NA
## 206     NA     1      1          1      NA        NA        NA
## 207     NA     2      2          2       2         2         2
## 208     NA    NA     NA         NA      NA        NA        NA
## 209     NA    NA     NA          3      NA        NA         6
## 210      2     4      2          4       4         2         2
## 211     11    15     23         23      15        19        19
## 212      5    NA     NA         NA      NA        NA        NA
## 213     16    25     25         16      22        19        29
## 214      6    19     19         19      10        13        13
## 215      5    11     15         14      17        14        14
## 216      2     5      2          3       5         2         3
## 217     14    14     17         14      14        11        14
## 218      3     6     11          6       3        11         8
## 219     25    39     42         60      28        77        25
## 220     25    39     60         63      99        49       106
## 221     NA    NA     NA         NA      NA        NA        NA
## 222      4     6      2         NA      NA        NA        NA
## 223     13    44     57         32      34        38        32
## 224     42    78     72        108      93        66        82
## 225      8     9     11         12       9        12        16
## 226      2     2      2          3       2         5         3
## 227      4     2      4          4       4         4         4
## 228      3     3      3          3       3         2         4
## 229      1     4     NA          1       2         1         1
## 230     NA    NA     NA         NA      NA        NA         1
## 231      1     3     NA          3       3         1         2
## 232     NA     3     NA         NA      NA        NA        NA
## 233     NA    NA     NA         NA      NA        NA        NA
## 234      0     0     NA          0      NA         0         0
## 235     NA    NA     NA         NA      NA        NA        NA
## 236      4     6      1         NA      NA         2         7
## 237      1     1     NA         NA      NA         0        NA
## 238     NA    NA     NA         NA      NA         2        NA
## 239     NA    NA     NA          1      NA        NA        NA
## 240     NA    NA     NA         NA      NA        NA        NA
## 241      0     0     NA          0      NA         0         1
## 242      1     5      2          1       1         3         4
## 243     NA    NA     NA         NA      NA         3         3
## 244     NA    NA     NA         NA       1         2         7
## 245     NA    NA     NA         NA      NA        NA        NA
## 246      3     6      4          8       4         4         3
## 247     NA    NA     NA         NA      NA        NA        NA
## 248     NA     1      1          0      NA        NA         1
## 249      2     1      1         NA       2         2        NA
## 250      1     1      3          4       3         2         3
## 251     NA    NA     NA         NA      NA        NA         0
## 252     NA     3      4          3       7         6         8
## 253     NA    NA     NA         NA      NA        NA        NA
## 254     NA     0      0         NA      NA        NA        NA
## 255     NA     1      1         NA       2        NA        NA
## 256      3     2      2          1       2         3         1
## 257     NA    NA     NA         NA      NA        NA         0
## 258      3     6      4          3       1         4         6
## 259     NA    NA     NA         NA      NA        NA        NA
## 260      0     1      0          0      NA        NA        NA
## 261     NA     1      1         NA       2        NA         2
## 262      2     3      3          3       2         3         2
## 263      1     1     NA          1       1         2         3
## 264     NA    NA     NA         NA       3         3         6
## 265     NA    NA     NA         NA      NA        NA        NA
## 266     NA    NA     NA         NA      NA        NA        NA
## 267     NA    NA     NA         NA      NA        NA         3
## 268     NA    NA     NA         NA      NA        NA         0
## 269     NA    NA     NA         NA      NA        NA        NA
## 270      3     6     10          8      10        12         8
## 271     NA    NA     NA         NA      NA        NA        NA
## 272      1     1      1          1       0         0         0
## 273     NA     1      3          2       2         2        NA
## 274      3     2      4          4       4         3         3
## 275     NA    NA     NA         NA      NA        NA         0
## 276     NA     1     NA         NA      NA         1        NA
## 277      1     6      1          3       4         7         8
## 278     NA    NA      0         NA      NA        NA        NA
## 279     NA    NA     NA         NA      NA        NA        14
## 280     NA    NA     NA         NA       1        NA         3
## 281     NA    NA     NA         NA      NA        NA         3
## 282     NA    NA     NA         NA      NA        NA         4
## 283      2     2      2         51       2         2         2
## 284      3     3      3        165       3         3        19
## 285      0     0     NA         NA      NA        NA        NA
## 286     NA    NA     NA         35      NA        NA        NA
## 287     NA    NA     NA         NA      NA        NA        NA
## 288     NA    NA     NA         NA      NA        NA         1
## 289     NA    NA     NA         NA      NA        NA         3
## 290     NA    NA     NA         NA      NA        NA         1
## 291      2     1      1          2       2         0         2
## 292      2     1     NA          2      NA        NA         1
## 293     NA    NA     NA          2      NA        NA        NA
## 294     NA    NA     NA         NA      NA        NA        NA
## 295     NA     1      0         NA      NA        NA        NA
## 296      1     1      1          1       3         1         1
## 297     11     1     16         NA      NA        NA        NA
## 298      1    NA     NA          1       1        NA         0
## 299      1     1      1          1       1         1         1
## 300     NA    NA     NA         NA      NA        NA        NA
## 301      1     1      1          1       1         1         1
## 302     11    NA     NA         14      NA        NA        31
## 303     NA    NA      1         NA       1        NA        NA
## 304      0    NA      0          0       0         0         0
## 305      1     1     NA          1       1        NA         3
## 306      1    NA     NA         NA      NA        NA        NA
## 307     NA    NA     NA         NA      NA        NA        NA
## 308      1    NA     NA         NA      NA        NA        NA
## 309      2     6      2          4       2         2         4
## 310     NA    NA     NA          4       6         6         6
## 311     NA    NA     NA         NA      11         3         8
## 312     NA    NA     NA          7      11         7        18
## 313     25    25      4         44      NA         4        30
## 314     NA    NA     NA          1       3         2         1
## 315     NA    NA     NA         NA       1        NA        NA
## 316     NA    NA     NA         NA      NA        NA         2
## 317     NA    NA      1         NA      NA        NA        NA
## 318     27     4     NA          6      38         2        23
## 319     NA    NA     NA         NA      NA        NA        NA
## 320     41     3     38          3       3        13        55
## 321     44    79     51         10     120        35        44
## 322      6    17      6         20      33         3         8
## 323     NA     2      2         12      36        NA        41
## 324     37    NA      3         NA      37        NA        17
## 325     37    NA     NA         NA      NA        NA        NA
## 326     92    NA     99         NA      60         7        21
## 327    380   215    567          7     324         4       299
## 328     34    NA     NA         NA      NA         4        30
## 329     51    25     80          4      72        NA        57
## 330      2    11    220        251     142        72       118
## 331     13    13      4         18      13         1         1
## 332      2     3     NA          3       3         5         2
## 333      2     6      4          2       8         6         2
## 334      1     4      3          6       3         5         3
## 335     NA     1     NA         NA      NA        NA        NA
## 336      3     2      1          1       1         1         1
## 337      2     2     NA         NA       1        NA         2
## 338      6     6     NA         NA       3         1         3
## 339     NA    NA     NA          4      NA         1         1
## 340     NA    NA     NA         NA      NA        NA        NA
## 341      1     1      1          1       1         1         1
## 342     NA    NA     NA         NA      NA        NA        NA
## 343     26     2      1         NA      NA        NA        NA
## 344      3    NA      1          2       1        NA        NA
## 345      1    NA     NA          1      NA        NA        NA
## 346     NA     2     NA          2       2         2        NA
## 347      1     0      0          0       1        NA         1
## 348     NA    NA     NA         NA      NA        NA         1
## 349      1    NA     NA         NA      NA        NA        NA
## 350      1     1      1          2       1         1         2
## 351     NA     1      1          1       1        NA         2
## 352     NA    NA     NA         NA      NA         6        NA
## 353     NA    NA     NA         NA       3         8         1
## 354     NA    NA     NA         NA       2         2         2
## 355      2    NA     NA         NA      NA        NA        NA
## 356     NA    NA     NA          2      12        NA        NA
## 357     28    NA     NA         12      11        NA        17
## 358     NA     3     NA         NA       3        NA        NA
## 359     NA    NA      0         NA      NA        NA        NA
## 360      1     0      1          1       4         2        NA
## 361     NA    NA     NA          1      NA         1         3
## 362      1    NA      4          1       4        NA         5
## 363     NA    NA     NA         NA      NA        NA        NA
## 364      2    NA      3         NA      NA        NA        NA
## 365      6     3     NA          9       6        NA         8
## 366     NA    NA      0         NA      NA        NA        NA
## 367     NA    NA      1         NA      NA         2        NA
## 368     NA    NA     NA          1      NA         1         1
## 369     NA    NA     NA         NA       1        NA        NA
## 370     NA    NA     NA         NA      NA        NA        NA
## 371     NA    NA      4         NA       2        NA        NA
## 372     NA    NA     NA          2       9        NA        NA
## 373      6     3      3         12      NA        NA         8
## 374     NA    NA      0         NA      NA        NA        NA
## 375      1    NA     NA          1       4        NA        NA
## 376     NA    NA     NA         NA      NA        NA        NA
## 377     NA    NA     NA          5      NA         1         7
## 378      1     3     NA          1      NA        NA         3
## 379     NA    NA     NA         NA       2        NA        NA
## 380      2    NA     NA         NA      NA        NA        NA
## 381     31    NA     NA         NA      11         3         8
## 382     NA    NA     NA         NA      NA         2        NA
## 383     NA    NA     NA         NA      NA         2        NA
## 384     NA    NA     NA          3       1        NA        NA
## 385     NA    NA     NA         NA      NA        NA        NA
## 386      2     2      4          2       4         2        NA
## 387     NA    NA     NA         NA      NA        NA         2
## 388      2    NA     NA         NA      NA        NA        NA
## 389     NA    NA     NA          2       9        NA        NA
## 390     31    NA     NA          9      11         3         6
## 391      3     6      3          8       3         3         6
## 392     NA    NA      0         NA      NA        NA        NA
## 393      3    NA      1          0       4         3         0
## 394      2    NA     NA         NA      NA        NA        NA
## 395      2     6      2          1      11         1         5
## 396      9     3      4          3       4        NA         5
## 397     NA    NA     NA         NA      NA        NA        NA
## 398     NA     1      2          2      NA         3         2
## 399     13     8     11          5       9        10         4
## 400      1    NA     NA         NA      NA        NA        NA
## 401      0    NA      1         NA      NA        NA        NA
## 402     NA    NA     NA         NA       3         1         1
## 403     NA    NA     NA         NA      NA        NA         3
## 404     NA    NA     NA         NA      NA         1        NA
## 405      2     4      4          2       4         2         4
## 406      3     3      3          3       3         3         6
## 407     NA    NA     NA          3      NA         3        NA
## 408     NA    NA     NA         NA      NA        NA         3
## 409     NA    NA     NA         NA      NA         1        NA
## 410     NA    NA     NA         NA      NA        NA        NA
## 411     NA    NA     NA         NA       0        NA        NA
## 412      1    NA      1         NA      NA         1         1
## 413      1     1      3         NA       3         1         1
## 414      4    NA     NA         NA      NA        NA        NA
## 415     NA    NA     NA         NA       0        NA        NA
## 416      1     1      1          1       1         1         1
## 417     NA    NA     NA         NA      NA        NA        NA
## 418      1     1      1          1       1         1         1
## 419      6     6      6          8       6         3         3
## 420     NA     1      1         NA      NA         1        NA
## 421      1     0      0          1       1         1         1
## 422     NA    NA     NA         NA      NA        NA        NA
## 423      1    NA      1          1       1         1        NA
## 424      1    NA     NA         NA      NA        NA        NA
## 425      2     2      4         NA       2        NA         2
## 426     13    11     11          8       8         8        11
## 427     11     6      8          8       3        NA        11
## 428     NA    NA     NA         NA      NA        NA        NA
## 429      2     2      3          3       5         2        NA
## 430     15    15     15         17      21        11        17
## 431      2     1      2          1       1         2         3
## 432      2     2      2          2       2         2        NA
## 433     NA     0     NA         NA      NA        NA        NA
## 434      4     2     NA          4       2         4         2
## 435     NA    NA     NA         NA      NA        NA        NA
## 436     15    30     30         30      30        25        17
## 437     24    NA     NA         NA      NA        NA        NA
## 438      3    10     13         16      19        10        19
## 439     13    16      6         10      10        10        16
## 440     12    12     15         14      17        12        12
## 441      8     6      6          8       9         6         9
## 442      3    NA     NA          3       6         6         6
## 443      6     3      3          3      NA         3        NA
## 444     46    67     67         85      99        60       190
## 445     99   116    137        106     148        53        67
## 446      8     8      8         13      11         8         8
## 447     40    34     40         40      40        30        30
## 448     70    82     46         55      72        44        51
## 449     NA    NA     NA         NA      NA        NA        NA
## 450     18    20     16         19      16        17        20
## 451     NA     2     NA         NA      NA        NA        NA
## 452      1    NA     NA         NA      NA        NA        NA
## 453     NA    NA     NA         NA      NA        NA        NA
## 454      1     1      2          1       1         1         1
## 455     NA    NA     NA         NA      NA        NA        NA
## 456      1     1     NA         NA      NA         1        NA
## 457      0     0      0          0       0         0         0
## 458     NA    NA     NA         NA       0        NA         0
## 459      4     3      2          3      NA         1         3
## 460     NA    NA     NA         NA       0        NA        NA
## 461     NA     2     NA          2      NA         2        NA
## 462      0    NA     NA          1       1         0        NA
## 463      1    NA     NA         NA       1        NA        NA
## 464     NA    NA     NA         NA      NA         1        NA
## 465      0     0      0          0       1         1         0
## 466      3     3      3          2       1         1        NA
## 467     NA    NA     NA         NA      NA         1         2
## 468     NA    NA     NA         NA       1         1         1
## 469      1    NA     NA         NA      NA        NA        NA
## 470     NA    NA     NA         NA       4         3         3
## 471      4     4      7         NA       4         4         7
## 472     NA    NA     NA         NA       0        NA        NA
## 473      0    NA     NA         NA       0         0        NA
## 474      2    NA     NA         NA       2         2        NA
## 475      2     3     NA         NA       2        NA        NA
## 476      1     1      3          2       1         2         1
## 477     NA    NA     NA         NA      NA        NA        NA
## 478      1    NA     NA         NA      NA        NA        NA
## 479     NA    NA     NA         NA       1        NA        NA
## 480      4    NA      4          4       4        NA         4
## 481     NA    NA     NA         NA       0        NA        NA
## 482     NA    NA     NA         NA      NA         0        NA
## 483     NA    NA      4         NA      NA        NA        NA
## 484     NA     1     NA         NA       4         2         2
## 485      1     1      1          1       2        NA         1
## 486     NA    NA     NA         NA      NA        NA        NA
## 487     NA    NA     NA         NA       4        NA        NA
## 488      4     4      9          7       4        NA         7
## 489     NA    NA     NA         NA       0        NA        NA
## 490     NA    NA      0         NA      NA        NA        NA
## 491      2    NA      2          2      NA        NA        NA
## 492     NA     1     NA         NA      NA        NA        NA
## 493      1     1      1          1       2         1         1
## 494     NA    NA     NA         NA      NA        NA        NA
## 495      1     1      1          1       3         1         1
## 496      1    NA     NA         NA       3        NA        NA
## 497     NA    NA      3          3      NA        NA        NA
## 498      4     7      4          4       7         4         7
## 499     NA    NA     NA         NA      NA        NA        NA
## 500     NA     0     NA          0      NA        NA        NA
## 501      1     1      1          1       1         3         1
## 502     NA    NA     NA         NA      NA        NA        NA
## 503     NA     2     NA          2       2        NA        NA
## 504      1    NA     NA         NA      NA        NA        NA
## 505      3     3      3         NA       1        NA         3
## 506      7     7      7          4       9         7         7
## 507     NA    NA     NA         NA       0        NA        NA
## 508      0    NA     NA         NA       1        NA         0
## 509      2    NA     NA         NA       4        NA         2
## 510     NA     3      2          2      NA        NA        NA
## 511      1     1      3          2       1         2         1
## 512     NA    NA     NA         NA      NA        NA        NA
## 513     NA    NA     NA         NA      NA         1        NA
## 514      3     1      3          4       2         4         5
## 515     NA    NA     NA         NA       3        NA        NA
## 516     NA    NA     NA         NA       1         1        NA
## 517     NA    NA     NA         NA      NA         1         1
## 518      2     2      2          2       2         2        19
## 519      3    10      3          3      22         3         3
## 520     NA    NA     NA          0      NA        NA        NA
## 521     NA    NA     NA         NA      NA        NA         7
## 522     NA    NA     NA         NA      NA        NA        NA
## 523     NA    NA     NA         NA      NA        NA         1
## 524     NA    NA     NA         NA      NA         0        NA
## 525     NA     1      1         NA      NA        NA        NA
## 526     NA     1      0          1      NA         1         1
## 527      1     1      1         NA       1         1         1
## 528      4     2      5          2       2         2        NA
## 529      1     0     NA          1       0        NA        NA
## 530      3     1      1          1       1         1         1
## 531     NA    NA     NA         NA      NA        NA        NA
## 532      2     1      1          1       1         1         1
## 533      6     3      6          3       3         3        37
## 534     NA    NA      1         NA       1        NA        NA
## 535     NA    NA     NA          0      NA        NA         0
## 536      1    NA     NA          1      NA        NA        NA
## 537      2    NA     NA         NA      NA        NA        NA
## 538     NA    NA     NA         NA      NA        NA        NA
## 539     NA    NA     NA         NA      NA        NA        NA
## 540     NA    NA     NA         NA      NA        NA        NA
## 541      2    32      4         15      21        17        40
## 542      2     3     NA         NA      NA         2        NA
## 543      8     6     14         11       8         8        14
## 544     14     8     11         14       8         8        14
## 545     NA    NA     NA         NA      NA        NA         4
## 546     46    30      4         21      15        19        11
## 547      2     2      4          3       4         3         3
## 548     NA    NA     NA         NA      NA        NA        NA
## 549      4     6      4          6      13         6         2
## 550      8     6     14         11       6         8        14
## 551      4     2      4          8       4         4         4
## 552     NA    NA     NA         NA      NA        NA        NA
## 553     27    32      4         27      15        13        61
## 554     NA    NA     NA         NA      NA        NA        NA
## 555     51     3     10         25      29        10        54
## 556     10    25     44         32      51        41        76
## 557     24    12      8          9      20        14        12
## 558      5     3      6          6       3         3         2
## 559     17     8     17         31      28        20        14
## 560      3    14      3         14      17        11        17
## 561     88    NA     85         60      95        85       116
## 562    116    88    123        116     236        14       197
## 563     30    30      8         34      30        21        15
## 564    131    53     34         78     118       120       142
## 565      1     1     NA         NA      NA        NA         1
## 566      2     5      7          6       6         6         6
## 567     NA    NA     NA          2       6         3         6
## 568     30    NA     NA          6      12        12        34
## 569      3     3      3          2       5         4         4
## 570      2     2      1          1       1         1         1
## 571     NA    NA     NA         NA      NA        NA         1
## 572      3    NA      3         NA      NA         3        NA
## 573      1     1      0          0       0         0         0
## 574      3     2     NA         NA      NA        NA        NA
## 575      2     2      2         NA      NA        NA        NA
## 576      0     1      0          0       1         1         0
## 577      1    NA     NA         NA      NA        NA        NA
## 578      2     2      1          2       0         2         1
## 579      1     1      1          2       2         1         1
## 580     NA    NA     NA         NA       3         2         3
## 581     NA    NA     NA         NA       3         1        NA
## 582      4    NA      2          2       2         2         2
## 583      2    NA      1          1      NA        NA        NA
## 584      3    10      1          4      12         3        14
## 585     NA    NA     NA         NA      NA        NA        NA
## 586     NA     1      0          1      NA         1         1
## 587     NA    NA     NA          0      NA        NA        NA
## 588      1     2      1          1       2         1         5
## 589      3     1      1          2       1         1         2
## 590     NA    NA      0         NA      NA        NA        NA
## 591      2    NA      1          1      NA        NA        NA
## 592     NA     1      1          4       1        NA         6
## 593     NA     0      0          0      NA         0         0
## 594     NA    NA     NA         NA       0        NA         0
## 595      1    NA      1          1       2         1         1
## 596      1    NA      1         NA      NA         1         1
## 597     NA    NA      0         NA      NA        NA        NA
## 598     NA    NA      2          2       2         2         2
## 599     NA     1      1          4       4        NA        NA
## 600     NA     1      0          1      NA         1         1
## 601     NA    NA      0         NA      NA        NA        NA
## 602      1    NA      1          1       2         1         1
## 603      1     1      1         NA      NA         1         1
## 604      1     1      1          2       1         3         2
## 605      2    NA      1          1      NA        NA        NA
## 606      3     8     NA         NA       6         6         8
## 607     NA    NA     NA         NA      NA        NA        NA
## 608     NA    NA     NA         NA      NA        NA        NA
## 609     NA     3      1         NA       1         3        NA
## 610     NA    NA      0         NA      NA        NA        NA
## 611     34    NA     NA          2      11        11         8
## 612      2    NA      1          1      NA        NA        NA
## 613     NA    15      1          4      12         3        23
## 614     NA    NA     NA         NA      NA        NA        NA
## 615     NA     1      0          2      NA         1         1
## 616      0     0      1          1      NA         1        NA
## 617      3    NA      1          1       2         1         5
## 618      2     3      3          1       1         1         2
## 619     NA    NA      0         NA      NA        NA        NA
## 620     NA     1      1          2      NA         2         3
## 621     13     3      7          4       6        10        13
## 622      1    NA      0          0       1        NA        NA
## 623      0    NA      1          1      NA        NA        NA
## 624     NA    NA     NA         NA       1         1        NA
## 625     NA    NA     NA         NA      NA         1        NA
## 626      6     6      6          4       6         4         2
## 627      3     6      3          6       3         3         3
## 628     NA    NA     NA         NA       0        NA        NA
## 629     NA    NA     NA         NA      NA        NA         4
## 630     NA    NA     NA         NA      NA        NA         1
## 631     NA    NA     NA         NA      NA         0        NA
## 632     NA    NA     NA         NA      NA        NA        NA
## 633      9     7     13          0       3         3         4
## 634      1     3      2          4       3         2         1
## 635      1    NA      1          4      NA        NA         1
## 636     NA     6     NA         NA       2         2        NA
## 637      1     1      1          1       2         2         3
## 638     25    23     11         17      34        25        17
## 639     NA    NA      1         NA      NA        NA        NA
## 640     NA    NA     NA         NA      NA        NA         0
## 641     NA    NA      1         NA      NA        NA         1
## 642      7    NA     NA         NA      NA        NA        NA
## 643     NA    NA     NA         NA      NA        NA        NA
## 644     NA    NA     NA         NA      NA        NA        NA
## 645      4     4      8          6      NA        NA         2
## 646     44    72     49         49      53        53        57
## 647     15    12     15         11       9         6         6
## 648    101    93    116         76      96       101        96
## 649     96    54     99         54      51        73        45
## 650     NA    NA      4         NA      NA        NA        NA
## 651     55    61     70         51      78        51        66
## 652     16    18     11         19      14        12        20
## 653      6     5      5          6       6         8         6
## 654     NA    NA     NA          3       3        NA        NA
## 655      6    11      4          4       2         6         8
## 656     20    20     20         25      23        23        34
## 657      4     6      6          2       4         2         8
## 658      1     1      2         NA      NA         1        NA
## 659     NA    15     25         42      49        55        55
## 660     45    NA     NA         NA      NA        NA        NA
## 661     79    73    114         16       6         3        10
## 662      3     3      3          3       3         3         3
## 663     18     5      9          9       5         8        11
## 664     12    12     12         11       9         8         9
## 665     73    85     79         56      93       110       116
## 666     28    42     42         39      23        14        39
## 667    201   130    211         77     173       109       204
## 668    197   137    176        169     183       201       166
## 669     NA    NA     NA         NA      NA        NA        NA
## 670     74    49     59         49      66        66        87
## 671    125    78    101         85      70       116        74
## 672     33    36     27         26      14        22        25
## 673      3     9      5          9       8        11         9
## 674      8     4      2          4       2         4         6
## 675     NA     1      1         NA      NA        NA        NA
## 676     NA     1     NA         NA      NA        NA        NA
## 677      1     1      1          1       1         1         1
## 678     NA    NA     NA         NA      NA        NA         1
## 679      8    16     10         18      14         9        18
## 680      0     0      0          0       0         0         1
## 681      4     5      5          6       3         1         4
## 682      2    25     20          2      17        NA        21
## 683     NA     0     NA         NA      NA        NA        NA
## 684      2     6      4          4       2         2         6
## 685      2     3      2          3       5         4         3
## 686      2     5      4          1       5         1         2
## 687      3     4      3          5       5         2         4
## 688      3     1      2         NA       3         5         2
## 689      0     0      0          1       0         0         0
## 690      3     1     NA         NA      NA        NA        NA
## 691      3     1     NA         NA      NA        NA        NA
## 692     NA     1     NA         NA      NA        NA        NA
## 693      8     7      6          6       8         3         6
## 694     NA    NA     NA         NA       1         5         5
## 695      3    NA     NA         NA      NA        NA        NA
## 696     11     3     14         11      11        11        11
## 697     NA    NA     NA         NA      NA         3        NA
## 698      0    NA      0         NA       0        NA        NA
## 699      1     2     NA         NA      NA        NA         4
## 700      3     4      3          4       3         2         2
## 701     NA    NA     NA         NA      NA        NA        NA
## 702      8    NA     NA          6       6         3         8
## 703      0    NA      1          0      NA         0        NA
## 704      1    NA      2          2      NA        NA         2
## 705     NA    NA      1          1       3         2         1
## 706     NA    NA     NA         NA      NA        NA        NA
## 707     NA    NA      3          6       3         8        NA
## 708      0    NA      0         NA       1        NA        NA
## 709      1    NA     NA         NA      NA        NA         2
## 710      1    NA      3          3       4         1         3
## 711     NA     1     NA          4       1         1         4
## 712     23     6     14         17      11        11        11
## 713     NA    NA     NA         NA       0        NA        NA
## 714     NA    NA     NA         NA      NA        NA        NA
## 715      5     1      1          1       5         3         5
## 716     NA    NA     NA         NA      NA        NA        NA
## 717      2    NA     NA         NA      NA        NA        NA
## 718      8    14     11         17      17        20        17
## 719     NA    NA      3         NA      NA        NA        NA
## 720      0     0      0         NA      NA        NA         0
## 721      1    NA     NA         NA       2         2        NA
## 722      5     5      6          5       6         2         3
## 723     NA    NA     NA         NA      NA        NA        NA
## 724     NA     2     NA         NA      NA        NA         1
## 725     NA    NA      1         NA      NA         1        NA
## 726     11    17     10         22      12        13        17
## 727     NA    NA     NA         NA      NA        NA         1
## 728     NA    NA     NA         NA      NA         1        NA
## 729     51    NA     NA         57       2         2        53
## 730     25    NA     22         38       3         3        51
## 731      3     8      8          6       3         6         5
## 732     25    42      7         21      25        32        11
## 733     18     5      8         66       3        NA         5
## 734     NA    NA     NA         NA      NA        NA         1
## 735     NA    NA     NA         NA      NA        NA        NA
## 736      1     3     NA          2       2         1         1
## 737      3     5     NA         NA       5         4        NA
## 738      3    NA     NA          3       2         4        NA
## 739      0    NA     NA          1       1        NA         0
## 740     NA    NA     NA          1       1        NA         1
## 741      2    NA     NA         NA      NA         2        NA
## 742     NA    NA     NA          1       1        NA         1
## 743     31    14     NA         NA      NA        25        NA
## 744      3    NA      3          3      NA        NA        NA
## 745     NA    NA     NA         NA      NA        NA         0
## 746     NA    NA     NA         NA      NA        NA         1
## 747      1    NA     NA         NA      NA        NA         5
## 748     NA    NA     NA         NA      NA        NA        NA
## 749      2     1     NA          1       1         1         1
## 750      8     6      2         11       8         2         8
## 751      3     5     NA         NA      NA        NA        NA
## 752     NA    NA     NA         NA       2         2         2
## 753     30    72    108         42      93        57        55
## 754    251     6    158         62     124        93       194
## 755      8    27     95         15      27        49        30
## 756     13    18      8          5      13         8         8
## 757     10    NA      8         11      19        10        17
## 758      5    12      9          8      12         6         3
## 759     NA    NA      5         10      18         5        NA
## 760     NA    NA     NA         NA       1        NA        NA
## 761     17    17     21         19      17        13        17
## 762     17    31     17         14      11        11        20
## 763      8     2      4          6       6         2         6
## 764      3     3      5          5       5         3         8
## 765      2     2      1          1       3         1         2
## 766     NA     2      3          3       2         2         3
## 767      8    82    156         40     137        61        63
## 768     61    42     42         32      NA        NA        NA
## 769     NA    NA     NA         16      51        22        22
## 770      3     3      3          3       3         3         3
## 771      2    NA     21         29      36        14        35
## 772    211    42    304         82     186       271       113
## 773    275    39    370         99     204       155       345
## 774    144   166     53        243      85        53       176
## 775      7    NA     NA         NA      NA        NA        NA
## 776     NA    NA     NA         NA      NA        NA        42
## 777     49    34    188         59      72       108        51
## 778    169   142     82        182     133       148       251
## 779     NA    NA     NA         NA      NA        NA        NA
## 780     25    15     20         36      41        36        25
## 781     16     5     23         16      25        23        22
## 782     NA    18     14         17      17         6         6
## 783      6    12     NA          6       4         4         4
## 784     NA     1     NA         NA      NA        NA        NA
## 785     NA     1     NA          2       1        NA         3
## 786      3     1      2          2       3        NA         2
## 787      1     3      1          2       8        NA         1
## 788     13     6     14         17      23        15        18
## 789      5     2      3          5       2         4         2
## 790      4     2      2          1       4         1         3
## 791      7     4     23         NA       1         5         9
## 792     NA    NA     NA         NA      NA        NA        NA
## 793      4     2      2          6       2         2         4
## 794      1     2      1          1       1         1         1
## 795     NA     6      5         13      14         4         1
## 796      5     4     13          2       8         3         4
## 797      8     7      7         12      11         1         4
## 798      7     2      7          3       3         2        NA
## 799      3     4      4          4       0         1         4
## 800      8     3     NA          3       3         3        NA
## 801     NA    NA      5          8       5         5         3
## 802     NA    NA     NA         NA      NA         3        NA
## 803      3    15      6         10       4         5         3
## 804     NA    NA     NA         NA       1         3         3
## 805     NA     3     NA          8       3         3        NA
## 806      3     4      1          3       3         3        NA
## 807     NA    NA     NA          2       0        NA        NA
## 808     NA     5      3          3       3         3         3
## 809      8     3     NA          3      NA        NA        NA
## 810     NA    NA     NA          0       0        NA        NA
## 811     NA     0     NA          3      NA        NA        NA
## 812     NA     3     NA          3      NA        NA         1
## 813     NA    NA     NA         NA      NA        NA        NA
## 814      1    NA      1          2       2        NA         1
## 815     NA     0     NA          3      NA        NA        NA
## 816     NA     8     NA          3       3         5         3
## 817      3     5     NA          8       3        NA        NA
## 818      3     3      3          6       8         3         3
## 819     NA    NA     NA          1       1        NA         1
## 820     NA    NA     NA         NA      NA        NA        NA
## 821     NA    NA     NA         NA      NA         2        NA
## 822      3     3      3          3       3         1        NA
## 823      3     3     NA         NA      NA        NA        NA
## 824     NA     3      3          8       8        NA        NA
## 825     NA     7     NA         NA      NA        NA        NA
## 826      4     3      1          3       3         1         3
## 827     NA     1     NA          2      NA         0         0
## 828     NA    NA     NA          2       2        NA         2
## 829      3     8      8          3       8         3         3
## 830      6     3      1         NA      NA         4         3
## 831     NA    NA      4         NA      NA         5         3
## 832     21     5     16         16      16        18         7
## 833     NA    NA     NA          0      NA        NA        NA
## 834     NA    NA     NA         NA       1        NA        NA
## 835     NA    NA     NA         NA      NA         1        NA
## 836     17    15     27         27      25        17        17
## 837     22    25     19         16      16        13        16
## 838      3    10     10          5       8         5         5
## 839     NA    NA     NA         NA      NA        NA         1
## 840     NA    NA     NA         NA       0         0         1
## 841      0     1      1          1       1         1         1
## 842     NA    NA      1         NA      NA         1        NA
## 843     NA     1      2          2      NA        NA         1
## 844      1     1      1          1      NA         1        NA
## 845     NA    NA     NA         NA       2        NA         2
## 846      1     1      1          1       1         1         1
## 847      6     8     11          8       6         6        11
## 848     NA    NA      1         NA      NA        NA        NA
## 849     NA    NA     NA          0       0         0        NA
## 850     NA     2     NA          1      NA        NA         1
## 851     NA    NA     NA         NA      NA        NA        NA
## 852     NA    NA     NA         NA       1        NA        NA
## 853      2     2     NA         NA      NA        NA        NA
## 854     NA    NA     NA         NA      NA        NA        NA
## 855     25    32     38         27      44        30        59
## 856     17    17     17         17      15        18        11
## 857     23    25     23         17      23        17        14
## 858     17    34     28         17      28        20        25
## 859      8    15     12         10      12         8         8
## 860     17    21     19         19      19        25        25
## 861      4     6      5          4       5         7         6
## 862      8    11     11          8      11        11        11
## 863      8    13     15         15      11         6        11
## 864     NA     3      6          8       6         3         6
## 865     NA    NA      0         NA      NA        NA        NA
## 866      8    11     11          8       8         6         6
## 867     NA    NA     NA         NA      NA        NA        NA
## 868     NA    NA      4          2       2         2         2
## 869     40    NA     NA         NA      NA        NA        NA
## 870     25    89     86         95      63        48        95
## 871     22    22     25         25      16        19        22
## 872      9    18     20         30      27        17         9
## 873     17    17     15         14      12        12        14
## 874      3    NA     NA         NA      NA        NA        NA
## 875      3     6      6          3      NA        NA        NA
## 876     74    88    102        113      60        63       120
## 877    222   268    247        236     215        81       148
## 878     NA    NA     NA         NA      NA        NA        NA
## 879     34    46     57         59      34        46        23
## 880     82   116    118        127     104        57        89
## 881     12    16     15         11      16        11        10
## 882     11    14      9         11      11         9         9
## 883     NA    NA     NA         NA      NA         2        NA
## 884     NA    NA     NA         NA      NA        NA        NA
## 885     NA    NA     NA         NA      NA        NA        NA
## 886      1     1      1          1       1         3         1
## 887     NA    NA     NA         NA      NA        NA        NA
## 888     NA    NA     NA         NA      NA        NA        NA
## 889     NA    NA     NA         NA      NA        NA         7
## 890      0     0      0          0       0         0         0
## 891     NA    NA      0         NA      NA        NA        NA
## 892      3    19      3          3       3         5         4
## 893     NA    NA     NA         NA       0        NA        NA
## 894      2     4      2          6       2         4         2
## 895      1    NA     NA         NA      NA        NA        NA
## 896     NA    NA     NA         NA       1        NA         1
## 897      0     0      0          0       0         0         0
## 898      3     6      6          6       4         5         5
## 899     NA    NA     NA         NA      NA         1        NA
## 900     NA    NA     NA         NA       1        NA        NA
## 901     NA    NA     NA          2      NA        NA        NA
## 902      3     8      3          6      NA         3         6
## 903      0     1      1          1       1         1         1
## 904      0    NA     NA         NA      NA         1        NA
## 905      1     1     NA         NA       1         1         1
## 906      2     2      1          2       1         3         1
## 907     NA    NA     NA         NA      NA        NA        NA
## 908      3     3      6          3      NA        NA         8
## 909      0     1      1          0       0         0         0
## 910      0    NA     NA         NA      NA        NA        NA
## 911      1     1     NA         NA       1         1         1
## 912     NA    NA      1         NA      NA         1        NA
## 913     NA    NA     NA         NA      NA        NA        NA
## 914     NA    NA     NA         NA      NA        NA        NA
## 915      0     1      1          1       1         1         1
## 916      0    NA      0          0      NA        NA        NA
## 917      1     1      2          2       1         1         1
## 918      2     3      1          2       1         3         1
## 919      3     4      3          4       1         3         2
## 920      8    14      8         17       8         6         6
## 921     NA    NA     NA         NA      NA        NA        NA
## 922     NA    NA     NA          2       2        NA         2
## 923     NA    NA     NA         NA      NA        NA        NA
## 924     NA    NA     NA          2      NA        NA        NA
## 925     11    11      6         20      11        14        17
## 926      0     2      1          1       1         1         1
## 927      0     0     NA         NA       0        NA         0
## 928      1     1     NA         NA       1         1         1
## 929      4     6      4          5       4         5         4
## 930     NA    NA     NA         NA      NA        NA        NA
## 931     NA     5      2         NA       3         2         4
## 932      3     4     NA          4      NA        NA        NA
## 933     NA    NA     NA         NA      NA        NA        NA
## 934     NA    NA     NA         NA       1         1         1
## 935     NA    NA     NA         NA      NA        NA         2
## 936     NA    NA     NA         NA      NA         1         3
## 937      2     2      2          2       2         2         4
## 938      3     3      3          3       3         3         6
## 939      4    NA     NA         NA      NA        NA         4
## 940     NA    NA     NA         NA      NA        NA         2
## 941     NA    NA     NA          1      NA         1         2
## 942      1     1      1          1       1         1        NA
## 943      1     3      3          2       1         3         1
## 944      1     1      2          2       1         2         1
## 945     NA    NA     NA         NA      NA        NA         2
## 946      1    NA     NA          1       1         1         1
## 947     NA     2      4          2       2        NA        NA
## 948      2     1      1          1       1         1         1
## 949     NA    NA     NA         NA      NA        NA        NA
## 950     NA    NA     NA         NA      NA        NA        NA
## 951      2    NA     NA         NA      NA         2        NA
## 952     30    32     36         51      30        32        23
## 953      8     5      6         11       9         8         8
## 954     28    28     31         31      28        34        34
## 955     23    17     17         31      31        23        20
## 956     25    19     23         25      23        21        15
## 957      8     8      8          8      10         8        10
## 958      4     4      5          7       6         5         6
## 959      8     5      6          6       5         5         3
## 960      1    NA     NA         NA      NA        NA        NA
## 961      6     6      6          8       6         6         6
## 962      8     3      6         11      NA         6        11
## 963      4     4      4          4       4         8         6
## 964      5     3      8          3      NA        NA        NA
## 965      2     3      2          1       1         3         1
## 966     51    46     68         55      40        34        57
## 967     NA    NA     NA         NA      NA        NA        NA
## 968     25    29     32         25      29        38        35
## 969      3     3      3          3       3         3         6
## 970     11    11     11          9      20        11         6
## 971     NA     6      8          3       5         5         5
## 972     NA    NA     NA         NA      NA        NA        NA
## 973      6    NA     11          8      11         3         6
## 974     74   102    102         74      85       102        99
## 975    113    18     88         14      95       113        88
## 976      2    NA     NA         NA      NA        NA        NA
## 977     25    30     30         23      21        25        30
## 978     51    27     36         36      34        30        23
## 979     46    38     66         55      72        91        23
## 980      3     2      1          1       1         2         2
## 981     NA    NA     NA         NA      NA        NA        NA
## 982     24    23     23         18      16        17        16
## 983      3     5      5          6       3         6         3
## 984      6     4      4          6       4         2         4
## 985      4     2      3          4       3         4         2
## 986     NA    NA     NA         NA      NA        NA        NA
## 987      1     1      1          2       1         2         1
## 988     NA    NA     NA         NA      NA        NA        NA
## 989      1    NA      1         NA       5        NA         1
## 990      5     3      6          4       4        NA         2
## 991     NA    NA     NA          1      NA        NA        NA
## 992      1     0      2          1       0         2         0
## 993      1     2      1          2       1         2         3
## 994      6     7     10          5       3         8         5
## 995      1    NA      1          0      NA        NA         2
## 996      1    NA     NA         NA      NA        NA        NA
## 997     NA     4      4          6       4         4         4
## 998      1     1      2          2       3         1         2
## 999      1    NA     NA         NA      NA        NA        NA
## 1000    NA    NA     NA         NA      NA        NA         2
## 1001    NA    NA     NA         NA      NA        NA         1
## 1002     1     1      1          0       1         1         1
## 1003     1     4      3          5       7         8         9
## 1004    NA    NA     NA         NA       3        NA         3
## 1005    NA    NA     NA         NA       2         6         4
## 1006    NA    NA     NA         NA       1        NA        NA
## 1007     4     2     NA          4       4        NA         4
## 1008     3     6      3          3       8         8         3
## 1009     0    NA      0         NA       0        NA         1
## 1010    NA    NA     NA         NA       2        NA         2
## 1011     1     1      1          1      NA         1         2
## 1012     3     3      2          3       2         1         3
## 1013    NA    NA     NA         NA      NA        NA        NA
## 1014    NA    NA     NA         NA      NA        NA        NA
## 1015    NA    NA      0         NA      NA        NA        NA
## 1016    NA    NA     NA          3      NA        NA        NA
## 1017     6     6      3          6      NA        NA        NA
## 1018    NA    NA     NA         NA      NA         0        NA
## 1019     1     1      3          5      NA         1        NA
## 1020     2     1     NA          4       1        NA         3
## 1021    NA    NA     NA         NA      NA        NA        NA
## 1022     2     2      2          2       2         2        NA
## 1023    NA    NA     NA         NA      NA        NA        NA
## 1024    NA    NA     NA         NA      NA        NA         2
## 1025     1     1      1          1      NA         1        NA
## 1026     1     2      1          1       1        NA         3
## 1027     2     1      2          1       4         3         3
## 1028    14     8     14         14       6         3        14
## 1029    NA    NA     NA         NA      NA        NA        NA
## 1030    NA    NA     NA         NA       2         2        NA
## 1031     3     1      3          1       3         4         5
## 1032    NA    NA     NA         NA      NA        NA        NA
## 1033     6     2      2          6       4         4         8
## 1034     6     6      6          8       6         3         6
## 1035    NA    NA      1         NA      NA        NA         1
## 1036    NA     0     NA          0      NA        NA         0
## 1037     1     1      1          1      NA         1        NA
## 1038     3     3      3          3       2         4         6
## 1039    NA    NA     NA         NA      NA        NA        NA
## 1040     8     4      4          8       6        11        15
## 1041     0    NA     NA         NA      NA        NA        NA
## 1042    NA    NA     NA         NA      NA         2        NA
## 1043    NA    NA     NA         NA      NA        NA         1
## 1044    NA    NA     NA         NA      NA         1         1
## 1045     2     4      2          2       2         2         2
## 1046    13     6      3          3       3         3         3
## 1047    NA    NA     NA         NA      NA        NA         1
## 1048    NA    NA     NA         NA      NA         1        NA
## 1049    NA    NA     NA         NA      NA        NA        NA
## 1050     1    NA     NA         NA       1        NA        NA
## 1051     1     2      2          2       2         1         1
## 1052    NA    NA     NA         NA       0        NA        NA
## 1053     2     1      1          1       1         1         1
## 1054    NA    NA     NA         NA      NA        NA        NA
## 1055     1     1      1          2       1         1         1
## 1056     3    NA     14          6       6         6        NA
## 1057    NA     1     NA         NA      NA        NA        NA
## 1058    NA    NA     NA         NA      NA        NA        NA
## 1059     2    NA     NA         NA      NA        NA        NA
## 1060    NA    NA     NA         NA      NA        NA        NA
## 1061     1     1     NA         NA      NA        NA        NA
## 1062    13    13     15         13      13        11        11
## 1063     6     6      3          3       6         8        11
## 1064    NA    NA      3          3      NA        NA        NA
## 1065    34    30     25         25      25        25        17
## 1066     1     1     NA         NA       1         1        NA
## 1067     1     1     NA          2       1         1        NA
## 1068     3     3      4          6       4         4         4
## 1069    NA    NA      2         13      11         8        13
## 1070    24    24     32         NA      NA        NA        NA
## 1071     3     6      2         13      16        10        13
## 1072     3     3      3          3       3         3         3
## 1073     9    11     11         12      11         6        11
## 1074    NA     2      3         NA       2        NA        NA
## 1075    NA     3     NA          3      NA        NA        NA
## 1076    56    67     70         46      46        46        67
## 1077    92   102     67         85      77        56        81
## 1078    36    38     34         25      38        32        25
## 1079   116   101    108         89     101        70        70
## 1080     1     1     NA         NA      NA        NA        NA
## 1081     6     6      5          5       6         3         5
## 1082     6     5      6          5       5        NA         2
## 1083     2     2      1          1       1         1        NA
## 1084     1     1      1          1       1         2         1
## 1085    NA    NA     NA         NA      NA        NA        NA
## 1086     1    NA     NA          1       1        NA        NA
## 1087     0     0      0          0       0         0         0
## 1088    NA    NA      0         NA      NA        NA        NA
## 1089    NA     3      3         NA       3         1        NA
## 1090    NA     0     NA         NA      NA        NA        NA
## 1091    NA    NA     NA         NA      NA         1         1
## 1092     1    NA     NA         NA      NA        NA        NA
## 1093    NA     1     NA         NA      NA        NA        NA
## 1094    NA    NA     NA         NA      NA         1        NA
## 1095     0     0      0          0       0         0         0
## 1096     4     4      4          4       4         3         3
## 1097    NA    NA     NA         NA       1         1         1
## 1098     1     3      3         NA       3        NA        NA
## 1099    NA    NA     NA         NA      NA        NA        NA
## 1100    NA    NA     NA         NA       0        NA        NA
## 1101    NA    NA     NA         NA       1        NA        NA
## 1102     4     3      3          4       3         3         4
## 1103     0     0      0         NA       0         0        NA
## 1104    NA    NA      2         NA      NA        NA        NA
## 1105     1    NA     NA         NA      NA        NA         3
## 1106    NA    NA     NA         NA      NA        NA        NA
## 1107    NA    NA     NA         NA      NA        NA        NA
## 1108    NA    NA     NA         NA       1         2        NA
## 1109     1    NA     NA         NA      NA        NA        NA
## 1110     0     0      0         NA       0         0        NA
## 1111     1     3     NA         NA      NA        NA        NA
## 1112    NA    NA     NA         NA      NA        NA        NA
## 1113    NA     0     NA         NA      NA        NA        NA
## 1114    NA    NA     NA         NA       1        NA        NA
## 1115    NA    NA     NA          1      NA        NA        NA
## 1116    NA     3     NA          1      NA         1        NA
## 1117    NA    NA     NA         NA      NA         3        NA
## 1118    NA    NA     NA         NA      NA         0        NA
## 1119    NA     4      2          2      NA        NA        NA
## 1120     4     4      4          4       4         5         4
## 1121     0     0      0         NA       0         0        NA
## 1122     4     3      3          3      NA        NA        NA
## 1123    NA    NA     NA         NA      NA        NA        NA
## 1124     0    NA      0          0      NA        NA         0
## 1125     2    NA     NA         NA       1        NA         2
## 1126     4     4      3          4       3         4         4
## 1127     0     0      0         NA       0         0        NA
## 1128    NA    NA     NA         NA      NA        NA        NA
## 1129    NA     1     NA         NA      NA        NA        NA
## 1130     1    NA     NA          1       1         3         1
## 1131     0    NA     NA         NA      NA        NA        NA
## 1132     2    NA     NA         NA      NA        NA        NA
## 1133    NA    NA     NA         NA      NA         1        NA
## 1134    NA    NA     NA         NA      NA         1         1
## 1135     2     2      2          2       2         2         2
## 1136     3     3      3          6       6         3         3
## 1137    NA    NA      4         NA      NA        NA        NA
## 1138    NA    NA     NA         NA      NA        NA        NA
## 1139    NA    NA     NA         NA      NA        NA         1
## 1140    NA    NA     NA         NA      NA         0        NA
## 1141     0    NA      1         NA      NA        NA        NA
## 1142     4     5      4          5       3         3         1
## 1143    NA    NA     NA         NA       0        NA        NA
## 1144     1     1     NA          1       1         1         1
## 1145    NA    NA      2         NA      NA        NA        NA
## 1146     1     1      2          1       1         1         1
## 1147    NA    NA     NA         NA      NA        NA        NA
## 1148    NA    NA     NA         NA      NA        NA         0
## 1149    NA    NA     NA         NA      NA        NA         1
## 1150     1     1     NA         NA      NA        NA         1
## 1151    NA     1     NA         NA      NA        NA        NA
## 1152    11     6      4          8      11        11         6
## 1153     3    NA     NA         NA      NA        NA         6
## 1154     7    NA     NA         NA      NA        NA        NA
## 1155    11     6     13          6       8        15         6
## 1156     2     1      2          3       3         3         2
## 1157    NA    NA     NA          2      NA        NA        NA
## 1158    NA    NA     NA          2       2         2         2
## 1159    21    NA     NA         NA      NA        NA        NA
## 1160    19    22     50         32      35        35        38
## 1161    16    13     16         16      19        22        22
## 1162    12     9     12          9      12        11         8
## 1163    NA    NA     NA         NA       6         3        NA
## 1164    46    28     53         49      35        77        88
## 1165   218   130    187        159     173       116       201
## 1166    NA    NA     NA         NA      NA        NA        NA
## 1167    27    19     36         25      23        21        25
## 1168   135    53    114        120     131        99        89
## 1169     5     5      6          6       5         7         4
## 1170     5     3      5          2       5         5         6
## 1171     6     4      6          4       2         4         6
## 1172     4     2      1          2      NA         2         1
## 1173     1     1      1          1       1         1         1
## 1174    NA    NA     NA         NA      NA        NA        NA
## 1175    NA    NA     NA         NA      NA        NA        NA
## 1176    NA    NA     NA         NA      NA        NA         2
## 1177     0     0      0          0       0         0         0
## 1178     2     4      2          6       4         2         2
## 1179     0    NA     NA         NA      NA        NA        NA
## 1180    NA     2     NA          4      NA         4         6
## 1181    NA     0     NA         NA      NA        NA        NA
## 1182    NA     1     NA         NA      NA         1        NA
## 1183    NA    NA     NA         NA      NA        NA         1
## 1184     1    NA     NA         NA      NA        NA        NA
## 1185     0     0      0          0       0         0         0
## 1186     1    NA     NA         NA      NA        NA        NA
## 1187     1    NA     NA         NA      NA        NA        NA
## 1188     1    NA     NA         NA      NA        NA        NA
## 1189     1    NA     NA         NA      NA         1        NA
## 1190    NA    NA     NA         NA       2        NA         2
## 1191     1     1      1         NA      NA         1         1
## 1192     0    NA      1         NA      NA        NA        NA
## 1193    NA    NA      1          0       0         0         0
## 1194     2     1      1         NA       1         2         2
## 1195     1     1      1          1       1         1         2
## 1196     0    NA      0         NA      NA        NA         0
## 1197    NA    NA     NA         NA      NA         0        NA
## 1198    NA    NA      1         NA      NA        NA        NA
## 1199     1     4      1         NA      NA         1         6
## 1200     0    NA      0         NA      NA        NA        NA
## 1201     2     1      1         NA       1        NA        NA
## 1202     1     1      1          2       1         1        NA
## 1203     0    NA      0         NA      NA        NA         0
## 1204    NA    NA     NA         NA      NA         0        NA
## 1205     1     1      1         NA      NA         1         1
## 1206     0    NA      1         NA      NA        NA        NA
## 1207    NA    NA     NA         NA      NA        NA        NA
## 1208     2     1      1         NA       1        NA        NA
## 1209     1     1      1          2       1         1         2
## 1210     0    NA      0         NA      NA        NA         0
## 1211     1    NA     NA         NA      NA         1        NA
## 1212    NA    NA     NA         NA      NA        NA        NA
## 1213    NA    NA     NA         NA      NA         0        NA
## 1214    NA    NA      1         NA      NA        NA        NA
## 1215     4     1      1          3       3         1         6
## 1216     0    NA      1         NA      NA        NA        NA
## 1217     0     0     NA         NA      NA        NA        NA
## 1218     2     1      1          2       1        NA        NA
## 1219     1     2      1          2       1         1         1
## 1220     0    NA      0         NA      NA        NA         0
## 1221    NA    NA     NA         NA      NA         0        NA
## 1222    NA    NA     NA         NA      NA        NA        NA
## 1223     3    NA      5          1       3        NA        NA
## 1224    NA    NA      0         NA      NA        NA        NA
## 1225    NA    NA     NA         NA       1         1        NA
## 1226    NA    NA     NA         NA      NA         1        NA
## 1227     2     4      4          4       2         2        NA
## 1228    NA     6      6          3       3         3        NA
## 1229     3     3      3         NA       3        NA        NA
## 1230    NA    NA     NA         NA      NA        NA         1
## 1231    NA    NA     NA         NA      NA         0        NA
## 1232    NA    NA      1         NA      NA         0         0
## 1233     1     1      2          1       1         1         2
## 1234     0    NA      0         NA      NA        NA        NA
## 1235     0    NA     NA         NA      NA        NA         0
## 1236    NA    NA     NA         NA      NA         1        NA
## 1237    NA    NA     NA         NA      NA         1        NA
## 1238     2     2      4          2       2         4         2
## 1239     2    NA      2         NA       2         2         2
## 1240     3     3      3         NA       6        NA         6
## 1241     4     4      8          6       6         8         2
## 1242     2     3      2          2       1         3         2
## 1243    NA    NA     NA         NA      NA         2         6
## 1244     5    NA     NA         NA      NA        NA        NA
## 1245     6    22     29         16      25        22        16
## 1246     3     3      6          3       3         6         3
## 1247     5     5      5          3       8         6         5
## 1248    18    11     18          4      14        14        28
## 1249    46    56     49         70      70        53        70
## 1250    15    21     15         13      17        13        17
## 1251    57    61     59         49      55        51        53
## 1252     2     2      4          1       4         2         3
## 1253    NA     1      0          2       2         1         1
## 1254    NA     1      1          1      NA         1         1
## 1255    NA    NA     NA         NA      NA         1        NA
## 1256    NA    NA     NA         NA      NA        NA         1
## 1257    NA    NA     NA         NA      NA         0        NA
## 1258    NA    NA     NA         NA      NA        NA        NA
## 1259     5     7      3          3       4         5         2
## 1260    NA    NA     NA         NA      NA        NA        NA
## 1261    NA    NA     NA         NA      NA         0        NA
## 1262    NA    NA     NA         NA       1        NA        NA
## 1263    NA    NA     NA         NA       1        NA        NA
## 1264    NA    NA      2         NA      NA        NA        NA
## 1265    NA    NA     NA         NA       3        NA         3
## 1266    NA    NA      1         NA      NA         0         0
## 1267    NA    NA     NA          0      NA        NA        NA
## 1268    NA    NA     NA         NA      NA        NA        NA
## 1269     1     1      1          1       1         1         1
## 1270    NA     0     NA         NA      NA        NA        NA
## 1271    NA    NA     NA         NA      NA        NA        NA
## 1272    NA    NA      0         NA      NA         0         0
## 1273    NA    NA     NA         NA      NA        NA         0
## 1274    NA    NA     NA          2      NA         2        NA
## 1275    NA     0     NA         NA      NA        NA        NA
## 1276    NA    NA      1         NA      NA         0         0
## 1277    NA    NA     NA         NA      NA        NA        NA
## 1278    NA    NA     NA         NA      NA        NA        NA
## 1279     1     1      3         NA       1         1         1
## 1280    NA    NA      2         NA      NA        NA        NA
## 1281    NA    NA     NA         NA      NA        NA        NA
## 1282    NA     0     NA         NA      NA        NA        NA
## 1283     2     2     NA         NA      NA        NA        NA
## 1284     3    NA     NA          6       3         6         6
## 1285    NA    NA      1         NA      NA         0         0
## 1286    NA    NA     NA         NA      NA         0        NA
## 1287    NA    NA     NA         NA      NA        NA         2
## 1288     2     3      3          1       2         1         3
## 1289    NA     0     NA         NA      NA        NA        NA
## 1290     1    NA     NA          1      NA        NA         1
## 1291    NA    NA     NA         NA       1        NA         1
## 1292    NA    NA     NA         NA      NA        NA         1
## 1293     2     2      2          2       4         2         2
## 1294     3     3      3          3       3         3         3
## 1295    NA    NA     NA         NA      NA        NA        NA
## 1296    NA    NA     NA         NA      NA        NA         1
## 1297    NA    NA     NA         NA      NA         1        NA
## 1298     0    NA     NA         NA      NA        NA        NA
## 1299    NA     1     NA         NA      NA        NA        NA
## 1300     2     3      3          1       3         1         2
## 1301    NA    NA     NA         NA       0        NA        NA
## 1302     1     1      1          1       1         1         1
## 1303     1     1      1          1       1         1         1
## 1304     1    NA     NA         NA      NA        NA        NA
## 1305    NA     2      2          4       4         2         2
## 1306    NA    NA     NA         NA      NA        NA        NA
## 1307    13    17     15         17      19        15        15
## 1308    NA    NA     NA         NA      NA        NA        NA
## 1309     6     6      3          3       8         3         8
## 1310     6    11      6          8       6         6         8
## 1311     4    NA     NA         NA      NA        NA        NA
## 1312     3     3      2          3       3         3         2
## 1313     6     6      4          8       2         4         6
## 1314     3    NA     NA         NA      NA        NA        NA
## 1315     1     1      1         NA      NA        NA         1
## 1316    NA     2      2         NA      NA         2        NA
## 1317     4     2     NA          2       4         2         6
## 1318     4     2      2          2       2         4         2
## 1319    NA    NA     NA         NA      NA        NA        NA
## 1320    13    11     13         15      19        17        17
## 1321    16    21     16         NA      NA        NA        NA
## 1322    NA    NA      3         10       6        10        16
## 1323     3     3      3          3       3         6         3
## 1324     9     9     14          9      20        12        12
## 1325     3    NA     NA         NA      NA        NA        NA
## 1326    NA    NA      8         NA      NA        NA        NA
## 1327    25    28     32         18      25        25        77
## 1328    99    88    102         88      92        88       116
## 1329     8    15     13         13      15        15        25
## 1330    46    42     38         44      46        38        42
## 1331    13    13     11         10      11        12        12
## 1332     6     8      5          5       6         5         3
## 1333    NA    NA     NA         NA      NA        NA         1
## 1334     1     1      1          1       1         1         1
## 1335    NA    NA     NA         NA      NA        NA        NA
## 1336    NA     1      1          1       1        NA        NA
## 1337     0     0      0          0       0         0         0
## 1338    NA    NA     NA         NA       2         2         2
## 1339    NA    NA     NA         NA      NA        NA         1
## 1340     1     1     NA         NA      NA         1        NA
## 1341     0     0      0          0       0         0         0
## 1342     2    NA      2          2       3         3         3
## 1343    NA    NA     NA         NA       1        NA        NA
## 1344     2     2      2          2      NA        NA         2
## 1345     3     3      3          8      NA         6         6
## 1346     0    NA     NA         NA      NA        NA        NA
## 1347    NA    NA     NA          0      NA        NA         0
## 1348    NA     2     NA         NA       3         1         3
## 1349     2     3      3          1       3         3         3
## 1350    NA    NA     NA         NA      NA        NA        NA
## 1351    NA    NA      3         NA      NA        NA        NA
## 1352    NA     3     NA         NA      NA        NA        NA
## 1353     0    NA     NA         NA      NA        NA        NA
## 1354    NA    NA      0         NA      NA        NA        NA
## 1355    NA    NA      2         NA       1         1         1
## 1356    NA     1     NA          1       1        NA         1
## 1357    NA    NA     NA         NA      NA        NA        NA
## 1358     0    NA     NA         NA      NA        NA        NA
## 1359    NA    NA     NA         NA      NA        NA        NA
## 1360    NA    NA     NA         NA       1         1         1
## 1361    NA     1      1         NA      NA        NA        NA
## 1362     2     3      2          1       1         2         2
## 1363     3     3      3          6       3        NA        11
## 1364    NA     0     NA         NA      NA        NA        NA
## 1365     2    NA     NA         NA      NA        NA        NA
## 1366     1     1      1          1      NA         1         4
## 1367    NA    NA     NA         NA      NA        NA        NA
## 1368     2     2      2          2      NA        NA        NA
## 1369     6    NA      3          3       3        NA         8
## 1370     0    NA     NA         NA      NA        NA        NA
## 1371     0    NA     NA         NA       0         0        NA
## 1372     2     2     NA          2       1         1         1
## 1373     1     3      2          1       3         2         1
## 1374    NA    NA     NA         NA      NA        NA        NA
## 1375    NA     1     NA         NA      NA        NA         2
## 1376    NA    NA      1          1      NA        NA         2
## 1377    NA    NA     NA         NA       1         1         1
## 1378    NA    NA     NA         NA      NA        NA         3
## 1379    NA    NA     NA         NA      NA         1        NA
## 1380    15    11     17         25       4        19        13
## 1381    13    13     19         19       6        13         6
## 1382     3     3      3          6      NA         3         2
## 1383    NA     4      7         NA      NA        NA        NA
## 1384     5     3     NA          5      NA        NA        NA
## 1385    NA    NA     NA         NA      NA        NA         1
## 1386    NA    NA     NA          1      NA         0        NA
## 1387     1     1     NA          1       0         1         0
## 1388     1    NA      1          1       1        NA        NA
## 1389     4     4      5          3       2         1         3
## 1390     2    NA     NA         NA      NA        NA         0
## 1391     1     1     NA         NA       1         2         1
## 1392     2    NA      2          2      NA        NA         2
## 1393     1     1      2          2       1         1         1
## 1394     8     6      3          6       6        NA         6
## 1395    NA    NA     NA         NA      NA        NA        NA
## 1396     1    NA      1         NA      NA        NA        NA
## 1397     2     4      2          6       2         2         4
## 1398    15    19     13         19      17        15        15
## 1399     3     2      3          2       3         2         2
## 1400    11    14     11         11      11        14         4
## 1401     3     3      2          3       2         2         2
## 1402    19    32     13         30      19        19        17
## 1403     8     8      7          7       7         9         5
## 1404     5     5      3          3       3         2         3
## 1405    NA    NA     NA         NA      NA        NA        NA
## 1406     4     4      4          4       4         2        NA
## 1407    NA    NA     NA          3      NA         3        NA
## 1408     4     6      4         11       4         2         6
## 1409    NA    NA     NA         NA      NA         1        NA
## 1410     2    NA     NA         NA      NA        NA        NA
## 1411    NA    NA     NA          2       2         2         2
## 1412    26    NA     NA         NA      NA        NA        NA
## 1413    19    76     20         48      44        41        48
## 1414    32    44     41         51      35        19        67
## 1415    24    26     23         17      18        21        18
## 1416     3     3      2          2       3         3         2
## 1417    NA    NA     NA         NA      NA        NA        NA
## 1418    18    25     39         25      70        NA       137
## 1419   151   190    134        166     162       127       180
## 1420    NA    NA     NA         NA      NA        NA        NA
## 1421    19    44     30         19      17        23        49
## 1422    99   131     80         74     114       112        85
## 1423     2     2      2          2       1         2         1
## 1424    13    12     13         14      10        15         9
## 1425     8     9      8         NA      NA         2         6
## 1426    NA     2      4          4       6         2         4
## 1427     5     5      5          4       5         5         5
## 1428     1     1      1          1       1         2         1
## 1429    NA    NA     NA         NA      NA        NA        NA
## 1430    NA    NA     NA         NA      NA        NA        NA
## 1431    NA    NA     NA         NA      NA        NA         1
## 1432     0     0      0          0       0         0         0
## 1433    NA    NA     NA         NA      NA        NA         0
## 1434     0     2     NA         NA       0        NA         3
## 1435    NA    NA     NA         NA       0        NA        NA
## 1436     2    NA      2          2       2        NA         2
## 1437    NA     1      1          1       0         1         0
## 1438    NA    NA     NA         NA      NA        NA         1
## 1439     0     0      0          0       0         0         0
## 1440     1     5      3          5       3         4         2
## 1441    NA    NA     NA         NA       3         3         1
## 1442    NA    NA     NA          4       3        NA         8
## 1443    NA    NA     NA          5      NA        NA        NA
## 1444     1     1      1          1       0         1         0
## 1445     3     2     NA          1       3         1         3
## 1446    NA     2      4          3       2        NA        NA
## 1447     2     3      4          3       3         2         3
## 1448     0    NA     NA         NA      NA        NA        NA
## 1449    NA    NA      1         NA      NA        NA        NA
## 1450    NA    NA     NA          1      NA        NA        NA
## 1451     0     1     NA          1       0         0         0
## 1452    NA    NA     NA          0      NA        NA        NA
## 1453    NA    NA     NA          1      NA        NA        NA
## 1454    NA    NA     NA         NA      NA         1         1
## 1455     0    NA     NA         NA      NA        NA        NA
## 1456     3     3     NA          1      NA        NA        NA
## 1457    NA    NA     NA         NA      NA         2        NA
## 1458     1     1     NA          1       0         1         0
## 1459    NA    NA     NA         NA       1        NA        NA
## 1460    NA    NA     NA          1      NA        NA        NA
## 1461    NA    NA     NA         NA      NA        NA        NA
## 1462     3     3      3          3       1         3         1
## 1463     3     3     NA         NA      NA        NA        NA
## 1464    NA    NA      3         NA      NA         3        11
## 1465     4     4      7         NA       4        NA        NA
## 1466     6     5      2          3       5         1         3
## 1467     2     4      6          2       2        NA         2
## 1468    NA    NA     NA         NA      NA         3         3
## 1469     0    NA     NA         NA      NA        NA        NA
## 1470    NA    NA      3         NA      NA         2        NA
## 1471    NA     3     NA          1      NA        NA        NA
## 1472     4     4      4          9      NA         4        NA
## 1473     1     1      1          1       0         1         0
## 1474     3     3      1          3       3         3         3
## 1475     4     6      2         11       2         4         6
## 1476     4     6      3          4       3         6         3
## 1477     0    NA     NA         NA      NA        NA        NA
## 1478    NA    NA     NA         NA      NA         3        NA
## 1479    NA    NA      1         NA      NA         2        NA
## 1480     7     6      9          3       6        10         4
## 1481     0    NA     NA         NA      NA        NA        NA
## 1482    NA    NA      0         NA      NA        NA        NA
## 1483    NA    NA     NA          3      NA        NA        NA
## 1484    NA    NA     NA         NA      NA         1        NA
## 1485    NA    NA     NA         NA      NA         1         1
## 1486     2     2      2          2       2        21         2
## 1487     3     3      3         NA       3        32         3
## 1488    11    28     21         35       4        NA         7
## 1489    NA    NA     NA         NA      NA        13        NA
## 1490    NA    NA     NA         NA      NA        NA         1
## 1491    NA    NA     NA          2      NA        NA        NA
## 1492     2     3     NA          2       0         0         3
## 1493     1     5      1          3       3         3         3
## 1494    NA    NA     16         NA      NA         1        NA
## 1495    NA    NA     NA         NA       1        NA         0
## 1496     1     1      1          1       1         1        NA
## 1497     1     1      1          1       1         1        NA
## 1498    28    NA     NA         31      NA        NA        NA
## 1499    NA    NA      1         NA      NA        NA        NA
## 1500    NA    NA      1         NA      NA        NA         1
## 1501     1     1      3          2      NA        NA         3
## 1502     5    NA     NA         NA      NA        NA         1
## 1503     8     8     15         15      13        17        11
## 1504     8    11     11         11       6        11        NA
## 1505     6     6      3         NA       6         3        NA
## 1506    NA    NA     NA         NA      NA         2        NA
## 1507    NA    34     19         21      30        21        36
## 1508     3     3      3          4       2         3         2
## 1509     2     3     NA          2       2         2         1
## 1510    NA    NA     NA         NA      NA         2         4
## 1511     4     2     NA         NA       2         4        NA
## 1512    NA    NA      3         NA      NA        NA        NA
## 1513    NA    NA     NA         25      46        27        25
## 1514     5    NA     NA         NA      NA        NA        NA
## 1515    38    86     51          3      NA        57        38
## 1516    29    67     51         13      63        48         3
## 1517     2    15     15         36       9        18        20
## 1518    NA     3     NA         NA      NA         3        NA
## 1519     8    11     11          8       6         3        NA
## 1520    56   127     77         49     137        42        53
## 1521   127   243    148        225     166       201        88
## 1522    30    49     34         21      61        38        53
## 1523    59    66     82         85      66        36        95
## 1524     6     9      8         10      10         8         7
## 1525     6     6      8          8      11         3         3
## 1526    NA     2     NA         NA      NA         2        NA
## 1527     6     8      9          8       7         6         7
## 1528    NA     1      1         NA      NA        NA        NA
## 1529     1     1      1          1       1         1        NA
## 1530    NA    NA      1         NA      NA        NA        NA
## 1531     1     3      3         NA      NA        NA        NA
## 1532     2     9     NA          2       5         4         4
## 1533     0     0      0          0       0         0         1
## 1534     1     2      1          1       0         2         2
## 1535    NA     5      5          4       5         4         8
## 1536    NA    NA     NA         NA       0        NA        NA
## 1537     2     2      4          2       4         2         4
## 1538     1     2      1          2       1         2         1
## 1539    NA    NA     NA         NA      NA         1        NA
## 1540    NA    NA     NA         NA      NA        NA         1
## 1541     1    NA     NA         NA      NA        NA        NA
## 1542    NA     1     NA         NA      NA        NA        NA
## 1543     0     0      0          0       0         0        NA
## 1544     5     3      4          3       4         3         2
## 1545    NA    NA     NA         NA       1         4         4
## 1546    NA    NA     NA         NA      NA         2        NA
## 1547     8    11      6          6      14         6        11
## 1548     0    NA     NA         NA      NA         1         1
## 1549     1     1      1         NA       1         1         2
## 1550     3     4      4          6       4         3         4
## 1551    NA    NA     NA         NA      NA         0        NA
## 1552    NA    NA     NA         NA      NA         2        NA
## 1553    NA     3     NA         NA       3         3        NA
## 1554     0    NA     NA         NA      NA         1        NA
## 1555     1     1      1         NA       1         1        NA
## 1556     3     3      3          3       5         4         3
## 1557    NA    NA     NA         NA      NA         0        NA
## 1558    NA    NA     NA         NA      NA         2         2
## 1559     1    NA     NA         NA      NA        NA        NA
## 1560    NA    NA     NA         NA      NA         1        NA
## 1561     1     1      1         NA       1         1        NA
## 1562    NA    NA     NA         NA      NA         1         2
## 1563     4     3      3          4       3         2         3
## 1564    NA    NA     NA         NA      NA        NA        NA
## 1565    17    20     11         14      11         8        14
## 1566     0    NA     NA         NA       0        NA         3
## 1567    NA    NA     NA         NA      NA        NA        NA
## 1568     4     4      4          4       3         4         3
## 1569    NA    NA     NA         NA      NA         0        NA
## 1570    NA    NA     NA         NA      NA         2        NA
## 1571    NA    17     25         25      17        11        14
## 1572     1     0      0         NA      NA         1         2
## 1573     1     1      1          2       1         1        NA
## 1574     6     6      5          6       4         6         3
## 1575    NA    NA     NA         NA      NA         0        NA
## 1576    NA     2      1          2      NA         1        NA
## 1577     2    11      6         10       4         7         6
## 1578    NA    NA     NA         NA      NA        NA        NA
## 1579    NA    NA      0         NA      NA        NA        NA
## 1580    11     6      3          8       6         3        11
## 1581     9     5      5          5      10         6         1
## 1582    NA    NA     NA         NA      NA         1        NA
## 1583     8     2      2          6      11         2         6
## 1584    22    10     10         10      13         3        35
## 1585    NA    NA     NA         NA      NA        NA        NA
## 1586    14     2     NA          2       6        NA        11
## 1587     7    NA      7         NA       4        NA         7
## 1588    23     5      3          8      15        NA         8
## 1589    NA    NA     NA         NA      NA        NA         1
## 1590     3    NA      3         NA      NA         2        NA
## 1591    NA    NA     NA          3      NA        NA        NA
## 1592    NA    NA     NA         NA       1        NA        NA
## 1593     1     0     NA          0       1         0        NA
## 1594    NA    NA      1         NA      NA        NA        NA
## 1595     3    NA     NA         NA      NA        NA        NA
## 1596     8     8      3         NA      NA        NA         2
## 1597     0    NA     NA          0      NA        NA         1
## 1598     1     5      1          1       3         1         1
## 1599    NA    NA     NA         NA      NA        NA        NA
## 1600     1     6      1          2       2         1         1
## 1601     8    11      3          8      11        17         8
## 1602    NA    NA     NA         NA       1        NA        NA
## 1603    NA    NA     NA         NA      NA        NA        NA
## 1604    NA    NA     NA         NA      NA        NA         1
## 1605     1    NA     NA         NA      NA        NA        NA
## 1606    NA    NA     NA         NA      NA        NA        NA
## 1607     8     2      6          8       2         8         8
## 1608    NA    NA     NA         NA      NA        NA        NA
## 1609    NA    NA     NA         NA      NA        NA        NA
## 1610    NA    NA      4         11      15        13         2
## 1611    21    21     24         NA      NA        NA        NA
## 1612    35    35     20         16      48        35        29
## 1613    19    38     48         29      57        16        32
## 1614    NA    NA     NA         NA      NA        NA        NA
## 1615    14    33     29         18      20        24        23
## 1616    NA    NA     NA          2      NA        NA        NA
## 1617    NA    NA     NA         NA      NA        NA        NA
## 1618    NA    NA     NA         NA      NA        NA        NA
## 1619   127   106     35         53     137       109       180
## 1620    46    56     60         56      88        67        67
## 1621     2    NA     NA         NA       6        NA        NA
## 1622    15    55     36         27      23        21        49
## 1623    82    36     68         85     142        34        63
## 1624     5     4      3          3       4         2         4
## 1625     5     2      2          3       3         5         3
## 1626    10     6      6          8       6         6         4
## 1627    10     8      7          7      11         9        12
## 1628    NA    NA     NA         NA      NA        NA        NA
## 1629     4     6      1          5      11         1         1
## 1630     2     3     NA         NA      NA        NA        NA
## 1631    10    10     NA          6      13         8         2
## 1632     2     3      1          3       5         7         8
## 1633    NA    NA     NA         NA      NA        NA        NA
## 1634     0     0      0          0       0         0         1
## 1635    NA    NA      1         NA      NA        NA         1
## 1636     5    15      5          5      11        18         4
## 1637    NA    NA     NA         NA      NA        NA        NA
## 1638     1    NA     NA         NA       0        NA        NA
## 1639     2     2     NA         NA       4        NA         6
## 1640     1     0      2          1       3         1         2
## 1641    NA    NA     NA         NA      NA         1        NA
## 1642    NA    NA     NA         NA      NA        NA        NA
## 1643     0     0      1          0       0         1         1
## 1644    NA    NA     NA         NA       5        10         3
## 1645    NA    NA     NA         NA      NA         2         1
## 1646     2    NA      2          1      NA         2        NA
## 1647     1    NA     NA         NA      NA        NA        NA
## 1648    14     6     11          6       6        11         8
## 1649    NA    NA     NA         NA      NA        NA        NA
## 1650     7    NA     NA         NA      NA        NA        NA
## 1651     1     0     NA          0       1         0        NA
## 1652    10     6      5          8       5         5         8
## 1653     1     1      5          2       1         1         1
## 1654    NA    NA     NA         NA      NA        NA        NA
## 1655     2     2      1          2       2         2         3
## 1656     2    NA      2          2      NA         2        NA
## 1657     1    NA     NA         NA      NA        NA        NA
## 1658    17     8      6          6      28        37        20
## 1659    NA    NA     NA         NA      NA        NA        NA
## 1660     4    NA     NA         NA      NA        NA         2
## 1661     1     0     NA          0       0         0        NA
## 1662    10    NA      5          3       9         9         5
## 1663    NA    NA     NA         NA      NA         2        NA
## 1664     1     1      5          2       1         1         1
## 1665    NA    NA     NA         NA       1        NA        NA
## 1666     2     2      1          2       2         2         3
## 1667     2    NA      2          1      NA         2        NA
## 1668    NA    NA     NA         NA      NA        NA        NA
## 1669    NA    NA     NA         NA      NA        NA        NA
## 1670    NA    NA     NA         NA      NA        NA        NA
## 1671     1     0     NA          0       1         0        NA
## 1672     3    NA     NA         NA      NA        NA         2
## 1673     1     1      3         NA       1         1         1
## 1674    NA    NA     NA         NA       1        NA        NA
## 1675    NA    NA     NA         NA      NA        NA        NA
## 1676     1    NA     NA         NA      NA        NA        NA
## 1677     8     3      3          3       6         8         6
## 1678     4    NA     NA         NA      NA        NA        NA
## 1679     3     3      2          3       7         5         3
## 1680    NA    NA     NA         NA      NA        NA        NA
## 1681    NA    NA     NA         NA      NA        NA        NA
## 1682     2     2      1          2       2         2         3
## 1683     2    NA      2          1      NA         2        NA
## 1684     1    NA     NA         NA      NA        NA        NA
## 1685    NA    NA     NA         NA      NA        NA        NA
## 1686     8     3      3          3      11         8         8
## 1687    NA    NA     NA         NA      NA        NA        NA
## 1688     4    NA     NA         NA      NA        NA        NA
## 1689     1     0     NA          0       1         0        NA
## 1690    14    NA      4          3       9         7         7
## 1691     1     1      3          2       1         1         1
## 1692    NA    NA     NA         NA      NA        NA        NA
## 1693     2     2      1          2       2         2         3
## 1694    NA    NA     NA         NA      NA         1        NA
## 1695    NA    NA     NA         NA      NA        NA        NA
## 1696    NA    NA      0         NA      NA        NA        NA
## 1697     3     3      3          6      NA        NA        NA
## 1698     5     1      4          4       2        NA        NA
## 1699    NA    NA     NA         NA      NA         1        NA
## 1700    27    19     17         17       4         8         2
## 1701    41    19     29          6       3        13         3
## 1702    NA    NA      0         NA      NA        NA        NA
## 1703     4    11     60         NA      NA        NA         7
## 1704    10     3     15          3      10        NA        NA
## 1705    NA    NA     NA         NA      NA        NA         1
## 1706    NA    NA      1         NA      NA         0        NA
## 1707    NA    NA     NA         NA      NA         1        NA
## 1708    NA    NA     NA          0      NA        NA        NA
## 1709     1     0     NA          0      NA        NA        NA
## 1710     1     2      2          2       1         1         3
## 1711     1     1      1         NA       1        NA        NA
## 1712    NA    NA     NA         NA      NA        NA         0
## 1713    NA     1     NA          1       1         1         1
## 1714     2    NA      2         NA      NA        NA        NA
## 1715    NA    NA     NA         NA      NA        NA        NA
## 1716    NA     1      1          1       1         1         1
## 1717     8     3      6          8       3         6         6
## 1718     3     3      1         NA      NA        NA        NA
## 1719    NA    NA      0          0      NA        NA        NA
## 1720    NA     1      1         NA      NA        NA        NA
## 1721    NA    NA      1         NA      NA        NA        NA
## 1722    NA    NA     NA         NA      NA        NA        NA
## 1723    NA    NA     NA         NA      NA        NA        NA
## 1724     6     2      2          6      NA         4         2
## 1725    NA    NA     NA         NA      NA        NA        NA
## 1726    40    42     40         38      46        42        40
## 1727     6    14      9         11      12        12        12
## 1728    39    45     51         42      54        54        51
## 1729    11     6      8          8       8        NA         6
## 1730    12    10     10         12      10         7         3
## 1731    40    57     38         44      55        38        42
## 1732     8     8      7          8       7         6        11
## 1733     6     3      3          6       6        NA         6
## 1734    NA     1     NA         NA      NA         2        NA
## 1735    11    15     13          8       8         4        11
## 1736    17    17     14          6      14        11        14
## 1737     4     6      6          8       6         6         8
## 1738     1     2     NA          2       1         2         1
## 1739    NA    NA     NA         NA      NA        NA        NA
## 1740     4     8     27         42      34        34        38
## 1741    45    NA     NA         NA      NA        NA        NA
## 1742    29    70     51         48      57        44        29
## 1743     3     3      3          3       3         3         3
## 1744    23    24     33         33      24        29        23
## 1745    29    29     29         27      35        26        32
## 1746    73    54     68         48      59        45        62
## 1747     8     8      6          6       8         6         3
## 1748    92    77     99         60      63        85        56
## 1749    28    49     32         32      42        46        46
## 1750    NA    NA     NA         NA      NA        NA        NA
## 1751    19    17     21         13      23        15        23
## 1752    76    74     74         70      93        53        70
## 1753    80    66     82         85      93        59        74
## 1754     2     1      1          2       1        NA         1
## 1755    NA    NA     NA         NA      NA        NA        NA
## 1756    23    20     20         18      19        18        21
## 1757    11    12     14          6       8         8        11
## 1758    10     6      6          4       8         6         8
## 1759     6     7      5          8       6         7         7
## 1760    NA    NA     NA         NA      NA        NA        NA
## 1761     2     2      1          2       1         1         2
## 1762    NA     1     NA         NA      NA        NA        NA
## 1763     3     1      4          1      NA        NA        NA
## 1764     1     4      4          6       2         4         3
## 1765     1     1      1          1       0         0         0
## 1766     5    NA      2         NA       1        NA         2
## 1767     2     3      4          1       3         2         3
## 1768    NA    NA     NA         NA      NA        NA         2
## 1769    NA    NA     NA         NA       0        NA        NA
## 1770    NA    NA      4          2       2         2         2
## 1771     1    NA      0          1       1        NA         0
## 1772     2     1      1          4       6         2         3
## 1773     3     2      4          4       4         3         2
## 1774     2     2      4          5       2         3         1
## 1775     5     4     NA          1       3         3        NA
## 1776     1     2      0          3       1         1         2
## 1777     8     6      8          9       9         8         6
## 1778    NA    NA     NA         NA       3         8         4
## 1779    NA    NA     NA         NA       1         1        NA
## 1780     4     4      2          4       4         2         2
## 1781     2    NA     NA         NA      NA        NA        NA
## 1782    NA    NA      3          3       6        NA         4
## 1783     1     0     NA          0      NA        NA        NA
## 1784     3     5      7          2       2         2         5
## 1785     3     2      3          1       1         1         3
## 1786    NA    NA     NA          1      NA        NA         1
## 1787     0     0      0          0      NA         0        NA
## 1788     2    NA     NA         NA      NA        NA        NA
## 1789    NA    NA     NA          3      NA        NA         1
## 1790     1     0     NA          0      NA        NA        NA
## 1791    NA    NA     NA         NA      NA         2        NA
## 1792     3     2      1          1       1         1         1
## 1793     0     0      0          0      NA         0        NA
## 1794     2     2     NA          4       2         2         2
## 1795    NA    NA     NA         NA      NA        NA         1
## 1796     1     0     NA          0      NA        NA        NA
## 1797     3    NA      2          2      NA        NA        NA
## 1798    NA    NA     NA         NA      NA        NA        NA
## 1799     3     2      1          1       1         1         1
## 1800    NA    NA     NA         NA      NA        NA        NA
## 1801    NA    NA     NA         NA      NA        NA        NA
## 1802     2    NA     NA         NA      NA        NA        NA
## 1803     6     3      6          3       6        14         6
## 1804     3     2      3          2       2         5         3
## 1805     4    NA     NA          6      NA         2         2
## 1806     5     3     NA          1       1        NA        NA
## 1807     0     0      0          0      NA         0        NA
## 1808     8     8      2          8       4         8         4
## 1809    NA    NA     NA         NA      NA        NA         0
## 1810     2    NA     NA         NA      NA        NA        NA
## 1811    NA    NA     NA         NA      NA        NA         2
## 1812     6     3      8          3       3         6         9
## 1813     1     0      1          0      NA        NA        NA
## 1814     7     5      7          5       2         5         3
## 1815    NA    NA     NA         NA      NA        NA        NA
## 1816     3     2      1          1       1         1         1
## 1817    NA    NA      5          3      NA         3         4
## 1818     0     0      0          0      NA         0        NA
## 1819    NA    NA     NA         NA      NA        NA        NA
## 1820     8     1      4          2       3         5         4
## 1821    NA    NA      0         NA      NA        NA        NA
## 1822    NA    NA     NA         NA      NA         1        NA
## 1823     8    11      8          4       4         6         6
## 1824     6    10      3          3       3        13         3
## 1825     7    11     14         NA       7         7        11
## 1826     3     3      5          3       5         3         5
## 1827     3     1      1          1       2         1         1
## 1828    NA    NA     NA         NA      NA         1        NA
## 1829    NA    NA     NA         NA      NA        NA        NA
## 1830     3     3      1          1       2         2         1
## 1831     1     1     NA          1       2        NA         1
## 1832    NA    NA     NA         NA      NA        NA         0
## 1833    NA     1      1         NA       1         1         1
## 1834    NA    NA     NA          2      NA        NA        NA
## 1835    NA     1      1          1       1         1         1
## 1836     3     6     NA          8       3         3         6
## 1837    NA    NA     NA         NA      NA        NA        NA
## 1838    NA     1     NA         NA      NA        NA        NA
## 1839    11    11     17         11      15        13        15
## 1840     6     6      5          6       6         6         3
## 1841     6     6      8          3       8        11         6
## 1842     6     6      8          3       6         8         8
## 1843    11     4     11         NA       4         4         4
## 1844    12    12     12         12      14        14        12
## 1845     8     4     11          8      11         6         8
## 1846     3     1      2          2       1         1         4
## 1847     6     5      5          3       2         2         2
## 1848    NA    NA      1         NA       1        NA         1
## 1849    NA    NA      2          2      NA         2         2
## 1850     3    NA     NA         NA       3        NA         6
## 1851     4     2     NA          2       2        NA         2
## 1852     1    NA     NA          1      NA         1         1
## 1853    15    13      6          8      13         6         8
## 1854     5    NA     NA         NA      NA        NA        NA
## 1855     6    22     29         25      25        25        22
## 1856     3     3      3          6       3         3         6
## 1857     2     5      2          2       3         3         3
## 1858     9     6      8          9       6         8         9
## 1859    17    20     23         31      23        17        42
## 1860     6     8     14         11      11        11        11
## 1861    14    11     14         21      18        18       162
## 1862    49    28     35         60      35        42        53
## 1863    23    25     23         30      27        21        32
## 1864    11    17     11         32      42         6        15
## 1865     4     4      4          3       6         4         4
## 1866     5     2      3          2       3         3         3
## 1867     2     2      2          2       2         2         2
## 1868     4     3      3          3       2         3         3
## 1869     3     1      1          1       1         1         1
## 1870     2     2     NA          1       1         1         1
## 1871     3     2      1          1       1         1         1
## 1872     1     1      1          2       4         2         2
## 1873    NA     0      0          0       0         0         0
## 1874     1     1      0          2       0         0         1
## 1875     3     3      2          3       1         2         3
## 1876     4     2      2          4       2         1         4
## 1877    NA     2     NA         NA       2        NA        NA
## 1878     1    NA      0          1      NA         0         0
## 1879     1    NA     NA         NA       1        NA         1
## 1880    NA     0      0          0       0         0         0
## 1881     6     4      2          4       4         3         6
## 1882    NA    NA     NA         NA       1        NA        NA
## 1883    NA    NA     NA         NA      NA        NA         1
## 1884     1    NA     NA         NA      NA        NA        NA
## 1885    NA     2      3          2       2        NA         3
## 1886    NA     6      3          3      NA         3        NA
## 1887    NA    NA     NA         NA      NA        NA        NA
## 1888     1     0     NA          1       0         1         1
## 1889     2    NA     NA         NA      NA         1        NA
## 1890     1     1      1          2       1        NA         4
## 1891     0     0      0          0       0         0         0
## 1892     1    NA     NA         NA      NA        NA        NA
## 1893    NA    NA     NA         NA      NA        NA        NA
## 1894     3    NA      3          3      NA        NA        NA
## 1895    NA    NA     NA         NA      NA        NA        NA
## 1896    NA    NA     NA         NA      NA         1        NA
## 1897    NA     1     NA          1       1        NA         1
## 1898     0     0      0          0       0         0         0
## 1899    NA    NA     NA          2      NA        NA        NA
## 1900    NA    NA     NA         NA      NA        NA        NA
## 1901    NA    NA     NA         NA       0        NA        NA
## 1902    NA    NA     NA         NA      NA         1         2
## 1903     1    NA     NA         NA      NA        NA        NA
## 1904     2     1      1          5       2         1         1
## 1905     1    NA     NA         NA      NA        NA        NA
## 1906     2    NA     NA         NA      NA        NA        NA
## 1907     3     3      6          6       3        NA        NA
## 1908     0     0     NA         NA       0         0         0
## 1909     2    NA      4         NA      NA        NA        NA
## 1910     1    NA      1          1       1        NA        NA
## 1911     0     0      0          0       0         0         0
## 1912    NA     2      2         NA       2        NA         2
## 1913     1    NA     NA         NA      NA        NA        NA
## 1914    NA     3      2          2      NA         3         2
## 1915    NA     3     NA          6       3        NA         3
## 1916    NA    NA      1         NA      NA        NA        NA
## 1917     3     1      2          3       1         3         2
## 1918    NA     2     NA          2       2         1        NA
## 1919     1     3      2          3       3         2         5
## 1920     0     0      0          0       0         0         0
## 1921     7     5      3          7       3         5         6
## 1922    NA    NA      0         NA      NA        NA        NA
## 1923     1     1     NA          1       1         1         2
## 1924    NA    NA     NA         NA      NA        NA         3
## 1925    NA    NA     NA         NA      NA         1         1
## 1926    11     8      2          6       4         8         4
## 1927    19    13      3          3       6        16        13
## 1928    NA    NA     NA          1      NA        NA        NA
## 1929    NA    NA     NA         NA      NA        NA        NA
## 1930     5     3      3          3      NA         3         3
## 1931    NA    NA     NA         NA      NA         0        NA
## 1932     0     0      0          0       0        NA         0
## 1933     2    NA      1          1       2         3         1
## 1934     4     2      2          3       3         4         3
## 1935     0     0      0          0       1         0         1
## 1936     1     1      1          1       1         1         1
## 1937    NA    NA     NA         NA      NA        NA        NA
## 1938     1     1      1          2       1         1         1
## 1939     3     6      3          6      NA         8         3
## 1940     1    NA     NA         NA      NA        NA        NA
## 1941    NA    NA     NA         NA      NA        NA         0
## 1942     1     1     NA         NA      NA         1         1
## 1943    NA    NA     NA         NA      NA        NA         2
## 1944    NA    NA      2          2      NA        NA         2
## 1945     2    NA      2         NA      NA        NA        NA
## 1946    NA     1     NA         NA      NA        NA        NA
## 1947    11    11     13          6       4         6         6
## 1948     5    NA     NA         NA      NA        NA        NA
## 1949    10    13      6          6      10        32        19
## 1950     6    10      6          3       6        10         6
## 1951     3     2      2          2       2         3         6
## 1952    NA    NA     NA         NA      NA        NA        NA
## 1953    74   106     60         11      11        70        60
## 1954    14    14      7          7       7        21         7
## 1955     4     8      4          2      NA         6         2
## 1956    21     8     11          6       4        21        13
## 1957    34    19     17         15       6        32        25
## 1958     2     1      2          1       1         2         1
## 1959    NA     2      2         NA       2         5         2
## 1960     4     2     NA          4      NA         8         2
## 1961     4     1      2          1      NA         3         2
## 1962    NA    NA     NA         NA      NA        NA        NA
## 1963     1     1      1          1       1         1         1
## 1964    NA    NA     NA         NA      NA        NA        NA
## 1965    NA     5     NA          4       3         2         1
## 1966     0     2      0          1       1         0         2
## 1967    NA     1     NA          1       1         1         1
## 1968     1     3     NA          0       3         1        NA
## 1969    NA    NA     NA         NA       0        NA         1
## 1970    NA     2      2         NA      NA         2         2
## 1971     1    NA      0          1       1         0         0
## 1972    NA    NA     NA         NA       1         1        NA
## 1973     1    NA      1         NA      NA         1        NA
## 1974    NA    NA     NA         NA      NA         1        NA
## 1975     0     1      0          1       1         0         1
## 1976    NA    NA     NA         NA      NA        NA         3
## 1977    NA    NA     NA         NA       1        NA        NA
## 1978    NA    NA      2         NA      NA         2         2
## 1979     1    NA     NA         NA      NA        NA        NA
## 1980     3     3      2         NA       3         1         1
## 1981     1     2      1         NA      NA         1         1
## 1982     0     0      0          0       0        NA         0
## 1983     2     2      0          0       0        NA        NA
## 1984    NA     1     NA          2      NA         1         1
## 1985     2    NA     NA          1       1        NA         1
## 1986     1    NA      0         NA      NA        NA        NA
## 1987     0     0      0          0       0         0         0
## 1988    NA    NA      2         NA      NA         2         1
## 1989     1    NA     NA         NA      NA        NA        NA
## 1990    NA     3      2         14      NA         1         1
## 1991     1     2      1          4      NA         1        11
## 1992     0     0      0          0       0        NA         0
## 1993     1     1      0         NA      NA        NA        NA
## 1994    NA     1     NA         NA      NA         1         1
## 1995     3     1     NA         NA      NA        NA         2
## 1996     1    NA      0         NA      NA        NA        NA
## 1997     0     0      0          0       0         0         0
## 1998    NA    NA      2         NA      NA         2         1
## 1999    NA     3      2         NA      NA         1         1
## 2000     1     2      1         NA      NA         1         4
## 2001     0     0      0          0       0        NA         0
## 2002     1     0      0         NA      NA         0        NA
## 2003    NA     1     NA         NA      NA         1         1
## 2004     1    NA     NA         NA      NA        NA         2
## 2005     1    NA      0         NA      NA        NA        NA
## 2006     1    NA     NA         NA      NA        NA         1
## 2007     1    NA     NA         NA      NA        NA        NA
## 2008    NA    NA      1         NA      NA        NA        NA
## 2009    NA    NA     NA         NA       2        NA        NA
## 2010     0     0      0          0       0         0         0
## 2011    NA    NA      2         NA      NA         2         1
## 2012     1    NA     NA         NA      NA        NA        NA
## 2013    NA     6      2         NA      NA         1         1
## 2014     1     2      1         NA      NA         1         4
## 2015     0     0      0          0       0        NA         0
## 2016     2     2      0         NA      NA        NA         0
## 2017     2     1      2         NA      NA         1         1
## 2018     3     1     NA          1       1         1         5
## 2019     1    NA      0         NA      NA        NA        NA
## 2020     0     0      0          0       0         0         0
## 2021    NA     1     NA         NA       1         1        NA
## 2022     2     2      1          2       1         1         3
## 2023     0    NA     NA         NA      NA        NA        NA
## 2024    NA    NA      0         NA      NA        NA        NA
## 2025    NA    NA     NA         NA       1        NA        NA
## 2026    NA    NA     NA         NA      NA         1        NA
## 2027    53    27     42         55      19         4        23
## 2028    57    29     57         29       3         6        13
## 2029     0    NA     NA          1      NA         0         1
## 2030    NA    NA     NA         NA      NA        NA        18
## 2031    20    13     15          8      15        13        13
## 2032    NA    NA     NA         NA      NA        NA         3
## 2033    NA    NA     NA         NA      NA         1        NA
## 2034    12     2      5          6       2         1        NA
## 2035     1     1      2          3       3         1        NA
## 2036     1     1      1         NA      NA        NA        NA
## 2037    NA    NA     NA         NA      NA        NA        NA
## 2038     2     4      3          3       3         4         4
## 2039     4     5      4          4       3         3         2
## 2040    NA    NA      0         NA       0         1        NA
## 2041    NA    NA      1          1       1         1        NA
## 2042    NA     2     NA         NA      NA        NA        NA
## 2043    NA     1      1          2       1         1        NA
## 2044     6    14      6         NA      NA        14        NA
## 2045    NA    NA      1         NA      NA         3        NA
## 2046     2     2      1          0       1         1         4
## 2047     3     8     NA          4      NA        NA        NA
## 2048    NA    NA     NA         NA      NA        NA        NA
## 2049    NA    NA     NA         NA      NA        NA        NA
## 2050     1     1      1          1      NA         2        NA
## 2051     4    NA      4          6       4         4         4
## 2052    11    21     13          6       6        13         4
## 2053     2     5      2          2       3         5         2
## 2054    17    17     17          6      14        14         3
## 2055     6    14     17         20      11        11        11
## 2056    32    23     27         25      23        27        27
## 2057     9     6      8          6       9         8         4
## 2058     3    NA      3         NA       2         2         2
## 2059     1    NA     NA         NA      NA        NA        NA
## 2060     4     4      4          8       6        11         2
## 2061     3     3      6          6       8         3         6
## 2062     4     2      6          4       4         2         6
## 2063     1    NA      1          1       1         2        NA
## 2064    NA    42     46         44      13        23        51
## 2065    18    NA     NA         NA      NA        NA        NA
## 2066    51     3     54         NA      51         6        32
## 2067    13    13     16         25      19        16         3
## 2068    27    21     23         21      17        17        12
## 2069     6     3     NA          3       3        NA         3
## 2070    62    34     65         45      59        54        73
## 2071    20    23     28         28      17         6        NA
## 2072   120   130    120         85     109        42       130
## 2073    88    56     99        109      67         4        46
## 2074    NA    NA     NA          4      NA        NA        NA
## 2075    32    87     68        106      61       110        23
## 2076    61    61    108         70     112       120        19
## 2077    21    10     23         32      16        26        25
## 2078    15     3     17          0       8         9        12
## 2079    18    NA     12         NA      NA         8        12
## 2080    17    NA     14         NA       5         6        10
## 2081     3     2      1         NA       1         3        NA
## 2082     2     2      3          2       1         1        NA
## 2083     6     3      2          3       5         4         1
## 2084    11    11      6          7       8         9         5
## 2085    NA     3      1          3      NA         1        NA
## 2086     2    NA     NA         NA      NA        NA        NA
## 2087    NA     0      3          2       0         2         0
## 2088     2     1      3         NA      NA        NA        NA
## 2089    32     2     NA         NA      NA        23         2
## 2090     3    NA     NA         NA       0        NA        NA
## 2091     2     2      2          2      NA         4         4
## 2092     3    NA      2         NA       1         2         0
## 2093    NA    NA     NA          4      NA         1         1
## 2094    NA    NA     NA          2       3         1         1
## 2095    NA     1     NA          6       1         2        NA
## 2096    NA    NA     NA          5      12         1        NA
## 2097    NA     1      0          2       1         2         3
## 2098     3     1      2          2       3         1         2
## 2099    NA    NA     NA         NA       6         3        10
## 2100    NA    NA     NA         NA       5         8         5
## 2101    NA    NA     NA         NA       3         1         2
## 2102     3     3      2         NA       5         2         2
## 2103     1     1      1         NA      NA        NA        NA
## 2104    NA     3      3         NA      NA        NA         6
## 2105    11    NA     18         NA      NA        NA        NA
## 2106    NA    NA     NA         NA      NA        NA        NA
## 2107     1    NA      2          3      NA         1         4
## 2108    NA     2     NA          8       2        NA        NA
## 2109     6     5      3          3       1         3         4
## 2110    NA    NA     NA         NA      NA        NA        NA
## 2111     0    NA     NA         NA      NA        NA        NA
## 2112     2     3      2         NA       5         2         2
## 2113     1     1      1         NA      NA        NA        NA
## 2114     6    NA     NA         NA       3        NA        NA
## 2115    NA     7     NA         NA       7         7         7
## 2116    NA    NA     NA         NA      NA        NA        NA
## 2117     1     0     NA          1      NA         2         3
## 2118     6     2     NA          4       2        NA         4
## 2119     3     3      3          2       3         3         2
## 2120    NA    NA     NA         NA      NA        NA        NA
## 2121     0    NA     NA         NA      NA        NA        NA
## 2122     2     3      2         NA       5         2         2
## 2123    NA     3     NA         NA      NA        NA        NA
## 2124    NA    NA     NA         NA      NA        NA        NA
## 2125    NA    NA     NA         NA      NA        NA        NA
## 2126     1     0      0          0       2         0         3
## 2127    NA    NA     NA         NA      NA        NA        NA
## 2128     2     2      2          3       1         3         3
## 2129    NA    NA     NA         NA      NA        NA        NA
## 2130     5     5      4          3       6         1         3
## 2131     1     1      1         NA      NA        NA        NA
## 2132    NA    NA     NA          3      NA         3        11
## 2133     4    11      7         NA       7         4         7
## 2134    NA    NA     NA          1       5        NA         4
## 2135     2     2     NA          6       2         6        NA
## 2136     3     5      4          3       5         5         5
## 2137     0    NA     NA         NA      NA        NA        NA
## 2138     2     3      2         NA       5         2         2
## 2139     1     1      1         NA      NA        NA        NA
## 2140    NA     2     NA         NA      NA        NA        NA
## 2141     3     3      3          3      NA        NA        NA
## 2142    14    NA     18         NA      11        NA         7
## 2143    NA    NA     NA         NA      NA        NA        NA
## 2144     4     3      3          2       7         1         7
## 2145     2     2      2         13       4        NA        NA
## 2146     8     1      3          8       7         8         3
## 2147    NA    NA     NA         NA      NA        NA        NA
## 2148     0    NA     NA         NA      NA        NA        NA
## 2149    NA    NA     NA         NA      NA        NA        NA
## 2150    NA     1      1         NA      NA         1        NA
## 2151    43    13     30         22      33        26        25
## 2152     2    NA      0         NA       0        NA        NA
## 2153     7     5      3          2       1         2         2
## 2154    NA    NA     NA         11      NA        NA        14
## 2155    NA    NA      3         NA      NA        NA        NA
## 2156    NA    NA     NA         NA      NA         1        NA
## 2157     2     2      2          2       2         2         2
## 2158     3     3      3         13       3         3         3
## 2159     0    NA     NA         NA      NA        NA        NA
## 2160     3    NA     NA         NA      NA        NA        NA
## 2161     0    NA     NA         NA      NA        NA        NA
## 2162    NA    NA      0         NA      NA        NA        NA
## 2163     1     2      7         NA      NA         0         4
## 2164     1     1      1          1       1         1         1
## 2165     1     1      1          1       1         1         1
## 2166    NA     6     NA         NA      NA        NA        17
## 2167    NA    NA     NA         NA      NA        NA         0
## 2168     4     2     NA         NA       2        NA         2
## 2169    NA    NA     NA         NA      NA        NA        NA
## 2170    NA    NA     NA          3      NA        NA        NA
## 2171    32    11     36        108     101       171       108
## 2172     2     2     NA          4      57         2         6
## 2173    26    NA     NA         NA      NA        NA         3
## 2174    60    57    387        260     539        44        51
## 2175    63   127     79        171     143       143       260
## 2176    29    15     17         24      44         8        15
## 2177    NA     3      8          8      NA        NA        NA
## 2178     3    NA     NA         NA      NA         3         3
## 2179    NA    NA     NA          6      NA        NA         3
## 2180    99    95     60        194     102       159       335
## 2181   278   271    310        514     391       232       662
## 2182     7    NA     NA         NA      NA        NA        NA
## 2183    NA    NA     NA          2      NA        NA         4
## 2184   101    57     42        133     249       197       146
## 2185   486   714    530        562     719       746        NA
## 2186    43    10      3          9       5         8         7
## 2187     2    NA      2         NA      NA         3         3
## 2188    NA    NA      2          2       4         8         2
## 2189     4    NA      4          2       2         3         2
## 2190     1     1      1          1       1         1         1
## 2191    NA    NA     NA         NA      NA        NA        NA
## 2192    NA    NA     NA         NA       1        NA        NA
## 2193     0     0      0          0       0         0         1
## 2194    NA    NA     NA         NA      NA         0        NA
## 2195     3    10     NA         NA      NA        NA        NA
## 2196     0    NA     NA         NA      NA        NA        NA
## 2197    NA    NA      2         NA      NA        NA        NA
## 2198     0     0      0          0       0         0         0
## 2199    NA    NA     NA         NA       1         1        NA
## 2200    NA    NA     NA         NA       1        NA        NA
## 2201    NA    NA      1         NA      NA        NA         1
## 2202    NA     3     NA         NA      NA        NA         3
## 2203    NA     0      1          1      NA        NA        NA
## 2204     6     9     10         NA       4         3         1
## 2205    NA    NA      0         NA      NA        NA        NA
## 2206     3     1      0          1       3         0         0
## 2207     3    22      3          9       5         4        12
## 2208    NA    NA     NA          3      NA        NA        NA
## 2209     1    NA     NA          0      NA        NA         0
## 2210    NA    NA      4         NA      NA        NA         1
## 2211    NA     0      1          1      NA        NA        NA
## 2212     8     1      1         14       1        NA         9
## 2213    NA    NA      0         NA      NA        NA        NA
## 2214     1     1     NA          2       1        NA        NA
## 2215   126   119    100         55      60        88       126
## 2216     1    NA     NA          0      NA        NA         0
## 2217    NA    NA      1         NA      NA        NA         1
## 2218    NA     0      1          1      NA        NA        NA
## 2219    NA     4      1          6       1        NA         1
## 2220    NA    NA      0         NA      NA        NA        NA
## 2221     2     1     NA          2       1        NA        NA
## 2222   128   132    100         60      83       107       126
## 2223     3     6      3         11      NA        NA         3
## 2224    NA    19      2         NA       8        NA        11
## 2225     1    NA     NA          0      NA        NA         0
## 2226    NA    NA      1         NA      NA         3         1
## 2227    NA    NA     NA         NA      NA        NA         3
## 2228    NA     0      1          1      NA        NA        NA
## 2229     3    20     13          6       9        NA        23
## 2230    NA    NA      0         NA      NA        NA         1
## 2231     3     1      0          0       0         1        NA
## 2232     7    24      9          3      11         2        10
## 2233     1    NA     NA          0      NA        NA         0
## 2234    NA     1     NA         NA      NA        NA        NA
## 2235    NA    NA     NA         NA      NA        NA        NA
## 2236     1    NA      1         NA      NA        NA        NA
## 2237    NA    NA     NA         NA       1         1        NA
## 2238    NA    NA     NA         NA      NA         1        NA
## 2239     4     2      2          2       2         2         6
## 2240    10     6     10          3       3         3        10
## 2241    NA    NA     28         NA      NA        NA         4
## 2242    NA    NA     NA         NA      NA         0        NA
## 2243    NA    NA     NA         NA      NA        NA        NA
## 2244     1    NA     NA         NA      NA        NA        NA
## 2245     3     3      1          2       1         3        NA
## 2246     1    NA     NA          0       0        NA         1
## 2247     1     1      1          1       1         1         1
## 2248     2     2      1          1       1         1         1
## 2249    NA     3     NA         NA       6        NA        14
## 2250     4     2      6         NA       4         4        NA
## 2251     4     8      6          6       6         6         2
## 2252     1     2     NA          2      NA        NA         1
## 2253     6    13      8          2       6         8         4
## 2254    NA    NA     NA         NA      NA        NA        NA
## 2255     3     3      6          3       3         6         3
## 2256    NA     3     13          6       6        13        19
## 2257     5     8      8          2       2         5         6
## 2258    21    77      4         NA       7        25        42
## 2259    42   106     60         39      63        35        63
## 2260    NA    NA     NA         NA      NA        NA        NA
## 2261    NA    NA     NA         NA      NA        NA         2
## 2262    11    13     13         11      30        42        27
## 2263   106   118    125        142     110        36       101
## 2264     3     5      3          5       1         2         5
## 2265     2     2      2         NA       2         2         2
## 2266     1    NA      2         NA       1         1        NA
## 2267     1     1      1          1       1         1         1
## 2268    NA    NA     NA         NA      NA        NA        NA
## 2269    NA    NA     NA         NA       1        NA        NA
## 2270    NA    NA     NA         NA      NA        NA        NA
## 2271     2     0      0          0       0         0         0
## 2272    NA    NA     NA         NA      NA        NA        NA
## 2273     3     5      3          5       6         4         7
## 2274    NA     0     NA         NA      NA        NA        NA
## 2275    NA    NA     NA         NA      NA        NA         1
## 2276     0     0      0          0       0         0         0
## 2277    NA    NA     NA         NA       5        NA        NA
## 2278    NA     3     NA         NA       3        NA        NA
## 2279     0    NA     NA          0       2         0        NA
## 2280     2     2     NA         NA      NA         1        NA
## 2281    NA    NA     NA         NA      NA        NA        NA
## 2282    NA    NA     NA         NA      NA        NA        NA
## 2283    NA    NA     NA         NA      NA        NA        NA
## 2284    NA     0     NA         NA      NA        NA        NA
## 2285    NA    NA     NA         NA      NA         1        NA
## 2286    NA    NA     NA         NA      NA        NA        NA
## 2287     8     8      6          3       6         6         6
## 2288    NA    NA     NA         NA      NA        NA        NA
## 2289     8     4      2         NA      NA         1        NA
## 2290    NA    NA     NA         NA      NA        NA        NA
## 2291     3    NA     NA         NA      NA        NA        NA
## 2292    NA    NA     NA         NA      NA         3         3
## 2293    NA    NA     NA         NA      NA        NA        NA
## 2294    NA    NA     NA         NA      NA        NA        NA
## 2295    NA    NA     NA         NA      NA        NA        NA
## 2296     3    NA     NA         NA      NA        NA        NA
## 2297    NA     3      6          6      NA        NA         8
## 2298    NA     0      0         NA       0        NA         0
## 2299     8     4     NA          2       2         1         2
## 2300    NA    NA     NA         NA      NA        NA        NA
## 2301    NA    NA     NA         NA      NA        NA        NA
## 2302    NA    NA     NA         NA      NA        NA         1
## 2303     1    NA     NA         NA      NA         1        NA
## 2304     1    NA     NA         NA      NA        NA        NA
## 2305    NA    NA     NA         NA      NA         1        NA
## 2306    23    NA      2          2       4         2         2
## 2307     3    NA     10          3       6         3         3
## 2308    NA    NA     NA         NA      NA        13        NA
## 2309    NA    NA     NA         NA      NA        NA         1
## 2310    NA    NA      1         NA      NA        NA        NA
## 2311    NA    NA     NA         NA      NA        NA        NA
## 2312    NA    NA     NA         NA       0        NA        NA
## 2313    NA    NA      0         NA      NA        NA        NA
## 2314     3    NA     NA          1      NA        NA         1
## 2315     1    NA     NA         NA       0        NA         0
## 2316    NA    NA      1          1       1         1         1
## 2317     2    NA     NA         NA      NA        NA        NA
## 2318     1    NA      1          1       1         1         1
## 2319    11    NA     NA         NA      NA        11        14
## 2320     3    NA     NA         NA      NA        NA        NA
## 2321     2     4     NA          4       2        NA        NA
## 2322    36    NA     25         NA      13        17        13
## 2323     3     2      2          3       3         2         2
## 2324    76    65     42         34      70        48        34
## 2325    23     2      6         17      19        13        17
## 2326     2     1      1          3       2         2         4
## 2327     5     2      2          2       3         2         2
## 2328     6     6      6          6       4         6         4
## 2329     6     2      4          6       6         2         6
## 2330    NA    NA     NA         NA      NA        NA        NA
## 2331     2     2      1          1       1         1         2
## 2332    NA    NA     NA          2       2        NA        NA
## 2333    NA    NA     NA         NA      NA        NA        NA
## 2334    38   114    155         76     120        86        63
## 2335     3     3      3          3       3         3        16
## 2336    NA    NA     NA         NA      NA        NA        NA
## 2337    18     8     17         17      18        20        12
## 2338     6    34     42         34      34        39        34
## 2339   137   127    148         53     208       166       116
## 2340   123    NA    166         85     144       215       109
## 2341    36    13     55         34      59        30        30
## 2342    70     2     66         93      36        82        68
## 2343    16     6     13          9      11         6        12
## 2344    26    NA     12          9      14         5        18
## 2345    NA    NA     NA         NA      NA        NA        NA
## 2346     2    NA      1          1       1         1         1
## 2347    NA    NA     NA         NA      NA        NA         1
## 2348    NA    NA     NA         NA      NA        NA        NA
## 2349     0     0      0          0       0         0         0
## 2350    NA    NA     NA         NA      NA         1        NA
## 2351    NA     0      2         NA       4         5         5
## 2352    NA    NA     NA         NA       0        NA        NA
## 2353     6     2      4          8       2         4         6
## 2354     1     1     NA          1       3         1         1
## 2355     0    NA      0          0       0         0         0
## 2356     3    NA      1          1       1        NA         1
## 2357    NA    NA     NA         NA      NA         1        NA
## 2358    NA    NA     NA         NA       1        NA        NA
## 2359     2    NA     NA         NA      NA        NA        NA
## 2360     8    NA     11          6       8         6        11
## 2361    NA    NA      2         NA      NA        NA        NA
## 2362    NA    NA      0         NA      NA         0        NA
## 2363    NA    NA     NA         NA      NA         1         2
## 2364    NA    NA      1          1      NA         1        NA
## 2365     2    NA     NA         NA      NA        NA        NA
## 2366     6    NA      3          3       3        NA        11
## 2367    NA    NA      0         NA      NA        NA        NA
## 2368    NA    NA     NA         NA       0        NA        NA
## 2369    NA    NA     NA         NA      NA         1        NA
## 2370     3    NA      6          3      NA        NA        NA
## 2371    NA    NA      0         NA      NA        NA        NA
## 2372     2    NA     NA         NA      NA        NA        NA
## 2373    NA    NA     NA         NA      NA         1        NA
## 2374     2    NA     NA         NA      NA        NA        NA
## 2375     6     8      8          3       6         6        NA
## 2376    23     4      6          6      13         8        NA
## 2377    NA    NA     NA         NA      NA         2        NA
## 2378     2    NA     NA         NA      NA        NA        NA
## 2379    NA    NA     NA         NA      NA        NA        NA
## 2380    17    14      8         14       8         8        28
## 2381    NA    NA      2         NA      NA        NA        NA
## 2382     2    NA     NA          0      NA        NA         0
## 2383    NA    NA     NA         NA      NA         1        NA
## 2384     3    NA     NA          1      NA         3         1
## 2385    NA    NA     NA         NA       1         1        NA
## 2386     9    NA     NA         NA      NA         4         9
## 2387     0    NA     NA         NA      NA        NA        NA
## 2388    NA    NA     NA         39      NA        NA        NA
## 2389    NA    NA     NA         NA       1         1        NA
## 2390    NA    NA     NA         NA      NA         1        NA
## 2391    11     2      2          2       4         6         2
## 2392    25     6     38         29      25        19         3
## 2393     3    NA      3          3       5         3        NA
## 2394    NA    NA     NA         NA      NA        NA         1
## 2395    NA    NA     NA         NA      NA         0        NA
## 2396    NA    NA      1         NA      NA        NA        NA
## 2397    NA    NA     NA          2      NA        NA        NA
## 2398    NA     1     NA         NA      NA        NA        NA
## 2399     3    NA      2         NA       3         1         1
## 2400    12     6     16         NA       4         6         7
## 2401     1     0     NA         NA      NA        NA         0
## 2402     3     1      2          1       1         1         2
## 2403    NA    NA     NA         NA      NA        NA        NA
## 2404     1     1      1          1       1         1         1
## 2405    23    11     28         NA      14        11        NA
## 2406    NA    NA     NA         NA      NA        NA        NA
## 2407    NA     0     NA          0       0        NA        NA
## 2408    NA    NA      1          1      NA        NA        NA
## 2409     1    NA      1         NA      NA        NA        NA
## 2410    NA    NA     NA         NA      NA        NA        NA
## 2411    NA    NA      2          2      NA         2         4
## 2412    NA    NA     NA         NA      NA        NA        NA
## 2413    11    25     34         21      19        21        36
## 2414    NA    NA      6         NA      NA         3        NA
## 2415    14     4     25         49      NA        32        14
## 2416    17    13     17         30      11        17        NA
## 2417     1     1     NA          2       2         1         6
## 2418    NA     2     NA         NA      NA        NA        NA
## 2419    11     6      6          6       2         8        11
## 2420     6     8      3         11      NA         6        14
## 2421    13     8     13         17      17        15        17
## 2422    NA    NA     NA         NA      NA        NA         2
## 2423    NA    NA      4          2      NA         2         4
## 2424    45   106    106        148      79        50        NA
## 2425    NA    NA     NA         13      NA        13       108
## 2426    29    57     79        105      89        16        98
## 2427     2     3      3          3       2         9        17
## 2428    NA    NA     NA         NA      NA        NA        NA
## 2429    88   215    187        282      70       254       141
## 2430    99   352     53        285     106       243       159
## 2431    NA    NA     NA         NA      NA        NA        NA
## 2432    13    42     46         42      38        34        59
## 2433    27    40     63         93      70        95        51
## 2434     8    16     16         16      25         7        19
## 2435     9     9     12          9       8         8        21
## 2436     6    12     10         10      10        12        28
## 2437     5     3      4          2       4         1        13
## 2438    NA     1     NA         NA      NA        NA        NA
## 2439     3     1      2          1       1         1         1
## 2440    NA    NA      1         NA      NA        NA        NA
## 2441     3     3      4          3       3         3        NA
## 2442     0     0      0          0       1         0         0
## 2443    NA    NA      1         NA      NA        NA         1
## 2444     2     4     13         NA       8         7         7
## 2445     1    NA     NA         NA       1        NA        NA
## 2446     2    NA      4         NA       2        NA        NA
## 2447     0    NA      1          0      NA         0        NA
## 2448     4     6      1          1       7        NA         5
## 2449     1     2      5          2       7         2         4
## 2450     5     7      7         NA       5         4         6
## 2451     4     3      3         NA       5         2        NA
## 2452     2     2      5          3       5         2         4
## 2453     1     1      1          2      NA         1         1
## 2454    NA    NA     NA         NA       1        NA         3
## 2455    NA    NA     NA         NA      NA         1        NA
## 2456    NA    NA      2         NA      NA        NA        NA
## 2457    NA    NA     NA          1      NA         1         2
## 2458     1    NA     NA         NA      NA        NA        NA
## 2459     4     5      1         14      NA         3        NA
## 2460     9    13      3          3      NA         2        10
## 2461    NA     1      1         NA      NA        NA        NA
## 2462     1     2      4          2       2         4         7
## 2463     4     1      3          4       1         2         2
## 2464    NA    NA     NA         NA      NA        NA        NA
## 2465    NA    NA      2         NA      NA        NA        NA
## 2466    NA    NA     NA          1      NA         1         2
## 2467     1    NA     NA         NA      NA        NA        NA
## 2468     4     5      1         14      NA        NA         6
## 2469     5     6      3          3      NA         2         3
## 2470    NA     0      0         NA      NA        NA        NA
## 2471     1     2      2          2       2         4         5
## 2472     4     2      1          3       2         1         1
## 2473    NA    NA     NA         NA      NA        NA        NA
## 2474    NA    NA     NA          1      NA         1         2
## 2475     1     2      1         NA      NA        NA        NA
## 2476     9     6      3         10      NA         5         3
## 2477    NA     0     NA          0       0         0         0
## 2478     3     2      2          2       2         4         5
## 2479     3     1      1          3       2         1         1
## 2480    NA    NA     NA         NA      NA        NA        NA
## 2481     1    NA     NA         NA      NA        NA        NA
## 2482     6     6     NA         23      NA        NA         3
## 2483    NA    NA      7         NA      NA         4         4
## 2484    NA    NA     NA         NA      NA        NA         2
## 2485     3     1     NA         NA      NA         1        NA
## 2486    NA    NA     NA         NA      NA        NA        NA
## 2487    NA    NA      4         NA      NA        NA        NA
## 2488    NA    NA     NA          1      NA         1         2
## 2489     1    NA     NA         NA      NA        NA        NA
## 2490     1     5      1         20       3        NA        NA
## 2491     9    10      6          3      NA         2         3
## 2492     0     0      0         NA      NA        NA        NA
## 2493    NA    NA     NA         NA      NA        NA        NA
## 2494     3     2      2          2       2         4         3
## 2495     4     3      3          3       2         3         1
## 2496    NA    NA     NA         NA      NA        NA        NA
## 2497    NA     2      3         NA       1         1        NA
## 2498    12     9     15          8      16         6         4
## 2499     0    NA     NA         NA      NA        NA        NA
## 2500    NA    NA     NA          6      NA        NA         8
## 2501     5     8      3          3       3        NA         4
## 2502    NA    NA     NA         NA      NA        NA         3
## 2503    NA    NA     NA         NA      NA         1         4
## 2504    27    19     23         36      25        15         6
## 2505    44    32     35         44      32        13        25
## 2506    NA    NA     NA          1      NA        NA        NA
## 2507     2    NA      2         NA       3         8        NA
## 2508    NA    14     14         11      28        11         7
## 2509    20    13     18         10      28        15        NA
## 2510    NA    NA     NA         NA      NA        NA         2
## 2511    NA    NA     NA         NA      NA        NA         1
## 2512    NA     1     NA         NA      NA        NA        NA
## 2513     2    NA     NA         NA       2         2        NA
## 2514    NA    NA     NA          2      NA        NA        NA
## 2515     1     2      3          1       3         1         1
## 2516    NA    NA     NA          3       2         3        NA
## 2517     3     3     NA          5       3         8         3
## 2518     3     5      5          9       4         7         3
## 2519     2     5      0          2       1         7         3
## 2520     1     4      2          1       1         1         1
## 2521    NA    NA     NA         NA      NA        NA        NA
## 2522     1     1      1          1       1         1         1
## 2523     8     3     14          6      11         8        20
## 2524    10     6      6         NA       4         3         3
## 2525    NA    NA      0          0      NA        NA         0
## 2526    NA    NA      1          2      NA        NA         1
## 2527     1    NA      2          1      NA         1         2
## 2528     2     2     NA          2       2        NA        NA
## 2529     2     1      1          2       1        NA         2
## 2530     2     6      4         NA       2         2         6
## 2531    14     8     11         NA      11        11        14
## 2532    21    11     13         17      19        13        19
## 2533    NA    10     NA         NA      NA        NA        NA
## 2534     2     1      1          2       1         2         1
## 2535    NA    NA      2         NA       2        NA        NA
## 2536     2    NA     NA         NA      NA        NA        NA
## 2537    NA    NA     NA         NA      NA         2        NA
## 2538    NA    NA      3         NA       6        NA        NA
## 2539    NA    NA      2         NA      NA        NA        NA
## 2540     4     2      2          4       2         4        NA
## 2541    95   104     93        123      66        59        44
## 2542    29     3      5         NA      NA        NA        NA
## 2543    10    32     32         44      57        44        35
## 2544    41    29     48         25      51        19        16
## 2545    60    66     32         36      29        35        27
## 2546    NA    NA     NA         NA      NA        NA        NA
## 2547    25    17     31         14       6        14        25
## 2548    20     6     14         25      17        17         6
## 2549   229   232    236        282     275       148       257
## 2550    70    67     74        102      85        28        21
## 2551    66    36     42         40      59        34        51
## 2552   112   135    133        148     116        93       159
## 2553   239   184    161        161     150        87        78
## 2554    NA    NA     NA         NA      NA        NA        NA
## 2555     3     9      3          6       3         6        NA
## 2556    14    13      8          7       3         8        19
## 2557    21    15     21         14      17        14        12
## 2558    18     8     12         10       8        10         6
## 2559     6     6      3          4       4         1         4
## 2560    NA    NA     NA         NA      NA        NA        NA
## 2561     1     2      3          2       1         1         2
## 2562    NA    NA     NA         NA      NA         2        NA
## 2563     7     8      6          7       6         5         6
## 2564     0     0      0          0       1         0         2
## 2565     1    NA      1         NA      NA        NA         1
## 2566    NA    NA      0         NA      NA        NA        NA
## 2567     9     2      7         10       7         7         8
## 2568     2     2     NA         NA       2         4         2
## 2569    NA    NA     NA         NA      NA        NA        NA
## 2570    NA     4      2          2       1        NA        NA
## 2571    NA    NA     NA          1       0        NA        NA
## 2572     4     4     13          4       4        NA        NA
## 2573     3     2      1          2       1         1         1
## 2574    NA    NA      1         NA      NA        NA        NA
## 2575     0     0      1          1       1         0         1
## 2576    NA    NA      3         NA      NA        NA        NA
## 2577    10     5      8         10       5         8         5
## 2578    NA    NA     NA         NA       6        NA         3
## 2579    NA    NA     NA         NA       6        11        NA
## 2580    NA    NA     NA         NA       1        NA         1
## 2581    NA    NA     NA          2      NA        NA        NA
## 2582     2     2      2          4       1         2         4
## 2583     1     2     NA         NA      NA        NA        NA
## 2584     3     3     NA          6       1        NA        11
## 2585     7     7      5          7       7         7         7
## 2586     2     2      2          1       3         1         1
## 2587     6     7      1          6       3         2         4
## 2588    11    10      7          3       7        NA         2
## 2589    16     8     13          5      13        13         6
## 2590    NA     0     NA          0      NA        NA         1
## 2591    NA     0      0          0      NA         1         0
## 2592    NA    NA     NA          2      NA        NA        NA
## 2593     5     2      4          4       1         2         6
## 2594     1     2     NA         NA      NA        NA        NA
## 2595     3     8     NA         11       1        NA         6
## 2596     7    18      9          7       7        14        21
## 2597     1     1      1          1       2         1         1
## 2598     6     5      1          4       5         2         5
## 2599    13     3     10          3       7        NA         2
## 2600     8    10      8         10      13        15        16
## 2601    NA     0     NA          0      NA        NA         1
## 2602    NA     0      0          0      NA         1         0
## 2603    NA    NA     NA          2      NA        NA        NA
## 2604     2     2      2          4       1         5         4
## 2605    NA    NA     NA          3       1         3         6
## 2606    NA    11      5         NA       7         7        NA
## 2607     1     2      2          1       3         1         1
## 2608     5     3      0          3       4         2         5
## 2609     5     3      7          5       5        NA         2
## 2610     6     5      5          5       6         1         8
## 2611    NA     0     NA          0      NA        NA         1
## 2612     5     5      8          5      10         5         5
## 2613     1     2     NA         NA      NA        NA        NA
## 2614    NA     8     NA          3      NA         6        NA
## 2615     4     4     NA         NA      NA         4        NA
## 2616    NA    NA     NA         NA      NA        NA        NA
## 2617    NA     4      2         NA      NA        NA        NA
## 2618     5    NA     NA         NA       3         3        NA
## 2619    NA     0      0          0      NA         1         0
## 2620     2    NA      2          2      NA        NA         2
## 2621     2     2      2          4       1         5         6
## 2622     1     2     NA         NA      NA        NA        NA
## 2623     3    11      3          6       6         3        11
## 2624    11    11      5          7       7        14        14
## 2625     3     3      2          1       4         1         1
## 2626     8     5      1          4       4         3         6
## 2627    15     7      7          3       9         2         2
## 2628    15    15     15         10      17        10        19
## 2629    NA     0     NA          0      NA        NA         1
## 2630    NA     0      0          0      NA         1         0
## 2631    NA     2      1         NA      NA        NA         1
## 2632     6     6      7         NA       6         1         6
## 2633    NA    NA     NA         NA      NA         2        NA
## 2634    NA    NA     NA         NA       1        NA         1
## 2635    NA    NA     NA         NA      NA         2         5
## 2636    NA    NA     NA         NA      NA         1         4
## 2637     8    11     11          8       4         4         2
## 2638    13    19     19         10      16        10         6
## 2639    NA    NA     NA          1      NA        NA        NA
## 2640     5     5      3          8       3         3         5
## 2641    NA    NA     NA         NA      NA        NA         1
## 2642    NA    NA     NA         NA      NA        NA         1
## 2643    NA    NA     NA         NA      NA        NA        NA
## 2644     1     0      0         NA       1         1        NA
## 2645     2     3      4          4       3         3         2
## 2646     2     5      4          6       4         4         4
## 2647    NA    NA     NA          1      NA        NA        NA
## 2648    NA     2      4          2       2         2         4
## 2649     6     6      2          6       2        NA         2
## 2650    NA     1      1          2       1         1         1
## 2651    17    17     20         25      17        23        25
## 2652     3     4      4          4       1         4         4
## 2653     1     1      1          1      NA         1         1
## 2654    NA    NA     NA         NA      NA        NA        NA
## 2655     1    NA     NA         NA      NA        NA        NA
## 2656     2    NA      2         NA       4         2        NA
## 2657     1    NA     NA         NA      NA        NA        NA
## 2658    NA    NA     NA         NA      NA        NA        NA
## 2659    21    30     25         34      23        27        34
## 2660    28    37     45         34      48        42        54
## 2661    11     3      3         NA       6        NA         6
## 2662    21    21     17         21      21        19        30
## 2663     5     7      7          5       4         6         5
## 2664     3     3      3          3       3         2         3
## 2665     6    11      8          8       8         4         2
## 2666     6     8     11          8       6         8         8
## 2667     4     4      4          2       4         4         2
## 2668     1    NA      1          1       1         2         1
## 2669    59   101     78         72      85        59        87
## 2670    18    NA     NA         NA      NA        NA        NA
## 2671    25    41     51         48      41        57        60
## 2672    29    38     38         38      51        38        54
## 2673    15    15     15          8      14        17        18
## 2674    23    54     48         45      56        65        73
## 2675    17    31     34         37      31        20        37
## 2676    NA     7      7         NA      74       162        60
## 2677   141   240    169        240     197       176       144
## 2678    11    13     11         17      17        13        17
## 2679    NA    NA      4         NA      19        40        61
## 2680    70    91     97         91      91        70        34
## 2681     9    12     12          9      15         9         6
## 2682    14    14     14         14       9        12        13
## 2683    11     8      7         12       9         6         6
## 2684    10     8     12         12       8         6         8
## 2685     6     8      5          7       6         7         4
## 2686    NA    NA      1         NA      NA        NA        NA
## 2687     3     2      2          3       1         1         2
## 2688     1     2     NA         NA      NA        NA        NA
## 2689     7     4      5          6       4         6         5
## 2690    NA     0      0          0       0         0         0
## 2691    NA    NA     NA         NA      NA        NA         1
## 2692     6     3      8          9       7         7         8
## 2693    NA    NA     NA         NA       0        NA        NA
## 2694    NA     2      2          4       4         2        NA
## 2695     1     1      1          1       1         1         1
## 2696    NA    NA     NA         NA      NA        NA         1
## 2697    NA     0      0          0       0         0         0
## 2698     3     5      4          4       3         4         4
## 2699    NA    NA     NA         NA      10        13        NA
## 2700    NA    NA     NA         NA       3         3         1
## 2701    NA    NA     NA         NA       1         1        NA
## 2702    NA     2      2          6       4         6         2
## 2703    NA     1     NA         NA      NA         2         1
## 2704     1     5      9          5      18         4        12
## 2705     8     4     NA         NA      NA         4        NA
## 2706     1     0      0         NA       1         1        NA
## 2707    NA    NA     NA         NA      NA        NA        NA
## 2708     2     2      1          1       1         3         1
## 2709     3     6      6          4       6         4         6
## 2710     0     1      0          1       1         0         1
## 2711     1     1     NA         NA       0        NA         1
## 2712    NA     1     NA         NA      NA         2         1
## 2713     1     5      4          5       4         4         6
## 2714     1    NA     NA         NA      NA        NA        NA
## 2715     0     0      0         NA       0         0        NA
## 2716     2     2      1          1       1         1         1
## 2717     3     3      3          3       3         2         4
## 2718     0     1      0          1       1         0         1
## 2719     1     1     NA         NA       0        NA         1
## 2720     2    NA     NA         NA      NA        NA        NA
## 2721    NA     1     NA         NA      NA         2         1
## 2722     1     4      4          5       4         4         4
## 2723     1    NA     NA         NA      NA        NA        NA
## 2724     1     0      0         NA       1         1        NA
## 2725    NA    NA     NA          0      NA        NA        NA
## 2726     2     2      1          1       1         1         1
## 2727     3     3      4          4       4         3         3
## 2728     0     1      0          1       1         0         1
## 2729     2     4      3          2       3         2         3
## 2730     3     9      6          3      11         6         3
## 2731    NA     7     NA         NA      NA        NA        NA
## 2732    NA    NA     NA         NA      NA        NA        NA
## 2733     2    NA     NA         NA      NA        NA        NA
## 2734     1     4      1          1       3         3         1
## 2735     1     1     NA         NA       0        NA         1
## 2736     4     6      4          6       6         6         6
## 2737    NA     1     NA         NA      NA         2         1
## 2738     4     5     12          5      20         4        12
## 2739     8     4     NA         NA      NA         4        NA
## 2740     1     0      0         NA       1         1        NA
## 2741     0     0      0         NA       0         0         0
## 2742     2     2      1          1       1         1         1
## 2743     4     8      7          4       8         6         5
## 2744     0     1      0          1       1         0         1
## 2745     1     1     NA         NA       0        NA         1
## 2746    10    11      8         14      11        12        11
## 2747     0    NA     NA         NA      NA        NA        NA
## 2748    NA    NA     NA         NA       2        NA         2
## 2749    NA    NA     NA         NA      NA         1        NA
## 2750    NA    NA     NA         NA      NA         1         1
## 2751     6     4      2          6       6         2         2
## 2752     3     6     10          3      10         3         6
## 2753    NA    NA     NA          0      NA        NA        NA
## 2754    NA    NA      4         NA       4        NA        18
## 2755     3    NA      3         NA      NA        NA        NA
## 2756    NA    NA     NA         NA      NA        NA         1
## 2757    NA    NA     NA         NA      NA         0        NA
## 2758    NA    NA     NA         NA      NA        NA        NA
## 2759     1     1      1         NA       1         1         1
## 2760     2     3      6          3       4         4         2
## 2761     0    NA     NA          0      NA        NA        NA
## 2762     1     1      1          1       2         1         1
## 2763     1     1      2          1       2         1         1
## 2764     3    NA      3          3      NA         3         3
## 2765    NA     0      0         NA      NA         0         0
## 2766    NA    NA     NA          1       1         1        NA
## 2767     1    NA      1         NA      NA         1        NA
## 2768     2    NA     NA          2       2         2        NA
## 2769     4     2      2          2       2         4        NA
## 2770    15     8      6         11      15        13        13
## 2771    NA    NA     NA          3       3         3         3
## 2772     3     3      3          3       3         3         3
## 2773     8     5      8          5       6         6         6
## 2774     5     5      3          2       2         2         2
## 2775     8     6      8          6       6         8         8
## 2776    35    42     46         42      21        35        11
## 2777    11    21      7          7      14         7        25
## 2778    21    23     23         23      25        19        25
## 2779    76    34     61         53      40        32        40
## 2780     3     1      3          1       3         1         1
## 2781     2     3      2          2       3         2         2
## 2782     1     1      1          1       2         1        NA
## 2783     1     1      1          1       1         1         1
## 2784    NA    NA      1         NA      NA        NA        NA
## 2785    NA     1      1         NA      NA        NA        NA
## 2786     0     0      0          0       0         0         0
## 2787    NA    NA      0         NA      NA        NA         0
## 2788     4     3      3          3       1         0         2
## 2789     1    NA     NA         NA      NA        NA        NA
## 2790     0    NA     NA          0       0         0        NA
## 2791     0     1      0          0       0         0         0
## 2792    NA    NA     NA         NA      NA        NA        NA
## 2793    NA    NA     NA         NA      NA         1         1
## 2794    NA    NA     NA         NA       1        NA        NA
## 2795     1    NA     NA         NA      NA        NA        NA
## 2796     6    NA      3          1       3         3         3
## 2797    NA    NA     NA         NA      NA        NA        NA
## 2798     1     1      1          1       0        NA        NA
## 2799     1     2      1          1       1        NA        NA
## 2800     4     2      2          1       3         1         1
## 2801    NA    NA     NA         NA      NA        NA        NA
## 2802     1    NA     NA         NA      NA        NA        NA
## 2803     3     3     NA          4       3        NA         3
## 2804    NA    NA     NA         NA      NA        NA        NA
## 2805     1     1      1          1       1         1        NA
## 2806     3     2      1          1       1        NA        NA
## 2807     2     1      2          1       2         1         1
## 2808    NA    NA     NA         NA      NA        NA        NA
## 2809    NA    NA      3          1      NA        NA        NA
## 2810    NA    NA     NA         NA      NA        NA        NA
## 2811    NA     1     NA         NA       0         0        NA
## 2812     1     2      1          1       1         2        NA
## 2813    NA    NA     NA         NA       1        NA        NA
## 2814     1     1      1          1       1        NA        NA
## 2815     1    NA     NA         NA      NA        NA        NA
## 2816     3    NA     NA         NA      NA        NA        NA
## 2817    NA    NA     NA         NA      NA        NA        NA
## 2818    NA    NA     NA         NA      NA        NA        NA
## 2819     1    NA     NA         NA      NA        NA        NA
## 2820     3     3      6          1       3         3        NA
## 2821    NA    NA     NA         NA      NA        NA        NA
## 2822     1     1      1          0       1         1         0
## 2823     1     2      1          1       1        NA         2
## 2824     3     2      2          1       1         1         1
## 2825    NA    NA     NA         NA      NA        NA        NA
## 2826    NA     1     NA          2      NA        NA        NA
## 2827     2     3      2         NA       3         3         3
## 2828     0    NA     NA         NA      NA        NA        NA
## 2829    NA    NA     NA         17      NA        NA        NA
## 2830    NA    NA     NA         NA       1        NA        NA
## 2831    NA    NA     NA         NA      NA         3        NA
## 2832    NA    NA     NA         NA      NA         1         1
## 2833    19    15      6          2      34         2        23
## 2834    16    22     22          3      98         3        35
## 2835    NA    NA     NA         NA      NA        NA        18
## 2836    18    NA     10          5      23        NA         5
## 2837    NA    NA     NA         NA      NA         1        NA
## 2838     1     1      0          1       1         1         1
## 2839     3    NA      3         NA       3         3         3
## 2840     5     3     13          2       8         4         1
## 2841     3    NA     NA         NA       0        NA        NA
## 2842     1     1      1         NA      NA         2         1
## 2843    NA    NA     NA          2       2        NA        NA
## 2844     1     1      1          1       1         2         1
## 2845    28    NA     NA         NA      14        NA        NA
## 2846     2     1      1          1       1         0         2
## 2847     1     1      4          2      NA        NA         2
## 2848     3    NA     NA         NA      NA        NA        NA
## 2849     2     2     NA          2       2         2        NA
## 2850    11     4      2          6      11         8         2
## 2851     6     6      8          8       6        11         6
## 2852     2    NA      2          2       2         2        NA
## 2853     8     8     11          6       4         8         4
## 2854    NA    NA     NA          1       1        NA        NA
## 2855    NA    NA     NA         NA      NA        NA        NA
## 2856     2     4      6          4      NA         2         4
## 2857     4     6      4          6       4         6         2
## 2858    NA    NA     NA         NA      NA        NA        NA
## 2859    NA    NA     NA          2      NA         2        NA
## 2860     1    NA      1         NA       1        NA         1
## 2861    NA    80     NA         70      25         6        89
## 2862    NA    NA     NA         NA      NA        NA        NA
## 2863     3    44     38         79      38        10        92
## 2864     3     6      3         79      41        41       187
## 2865     2    11      3         15      20         2        20
## 2866    NA     3      6         NA       3         3         8
## 2867    NA     3      3          6       3         3         6
## 2868    42   176     85         35      NA        60        18
## 2869     4   306    162        169     130       623       169
## 2870    NA    21      4         34      25        NA        25
## 2871    25    68     51         51      51         8       150
## 2872    15    49    277        139     199        91       395
## 2873     8     3      4          7       4         7         2
## 2874    NA    14     12         27       1        NA         9
## 2875    NA    NA     12         28      NA         2        14
## 2876     5     6      4          4       5         3         4
## 2877    NA    NA     NA         NA      NA        NA        NA
## 2878     1     4      2          1       1         5         3
## 2879    NA    NA     NA         NA      NA        NA        NA
## 2880    NA     3     NA         NA       3         2         2
## 2881    NA    NA     NA         NA      NA        NA        NA
## 2882     0     0      0          0       0         1         0
## 2883     2    NA      2          1      NA         2         1
## 2884     3    NA     12         NA      NA         2         1
## 2885     2     2     NA          2       2         2         2
## 2886     1    NA     NA          1      NA        NA         0
## 2887    NA    NA     NA         NA      NA        NA         1
## 2888     2     1      1          0       2         1         1
## 2889    NA    NA     NA          1       1        NA        NA
## 2890    NA    NA     NA         NA       6        NA        NA
## 2891    NA    NA     NA         NA       1         1        NA
## 2892    NA     2      4         NA       2         2        NA
## 2893    NA    NA     NA          1      NA        NA         3
## 2894     3     1     NA          1      NA         1        NA
## 2895     6    17      3         11      NA         3        10
## 2896     1     1      0          1       1         1         1
## 2897     0     2      3         NA      NA         1         1
## 2898     3     8     15          8       9         1        14
## 2899     8     5      3          5       5         5         8
## 2900     0     1      1         NA       1         0         1
## 2901    NA    NA     NA         NA      11        NA        NA
## 2902    NA    NA     NA          1      NA        NA        NA
## 2903    NA     4     NA          1      NA         1        NA
## 2904     3     8     NA          6       8        NA        10
## 2905     0     1      0          0       1         0         1
## 2906    NA     0     NA          2      NA         1         1
## 2907     3    15     15          4      13         5        18
## 2908     3    NA      3          3       3        NA         3
## 2909     0     1      1         NA       1         0         1
## 2910    NA    NA     NA          1      NA        NA        NA
## 2911     3     8     NA         NA      NA        NA        13
## 2912     1     1      0          1       1         1         1
## 2913    NA     2     NA         NA       1         1         1
## 2914     1    11     11          4       9         3         5
## 2915     5     3     NA          3      NA         1         5
## 2916     1     1      3         NA      NA        NA        NA
## 2917    NA     1     NA          1      NA         1        NA
## 2918    NA     3      6         NA      NA        NA        NA
## 2919    NA    NA     NA          0      NA        NA        NA
## 2920    NA    NA      2          2      NA        NA        NA
## 2921     0     1      1         NA       1         0         1
## 2922     4     4      4          2       2         2         2
## 2923    NA    NA     NA          1      NA         2         3
## 2924     3     4      3          1      NA         1        NA
## 2925    14    23     NA         11      NA         3        13
## 2926     1     2      0          1       1         1         1
## 2927     2     2      0         NA       1         1         1
## 2928     7     6     19          8      11         5        12
## 2929     8     5      5          8       5         5        10
## 2930     0     1      1         NA       1         0         1
## 2931    NA     3     NA         NA      NA         1        NA
## 2932     1    NA      2          2      NA         6        NA
## 2933    NA    NA      0         NA      NA        NA        NA
## 2934    NA    NA     NA          6       3         3        NA
## 2935    NA    NA      2          3       8        NA        NA
## 2936    NA    NA     NA         NA      NA         1         3
## 2937    13     8      6         17       8         4         2
## 2938    22    16     22         19      13        10         6
## 2939    NA     0     NA          1      NA        NA        NA
## 2940     3     3      3          5       3        NA        NA
## 2941    NA    NA     NA         NA      NA        NA         1
## 2942    NA    NA     NA         NA      NA        NA         2
## 2943    NA    NA     NA         NA      NA        NA         1
## 2944     0     1     NA          2      NA        NA         1
## 2945     1     1     NA         NA       2        NA        NA
## 2946    NA    NA     NA          5      NA        NA        NA
## 2947     0    NA      0         NA       1        NA        NA
## 2948     1     1      1          1       3         1         1
## 2949     6     2      4          5      NA         1         2
## 2950     1     0     NA          1       0         0         0
## 2951     2     1      4          2       2         1         1
## 2952    NA    NA     NA         NA      NA        NA        NA
## 2953     1     1      1          2       1         1         1
## 2954     3     3      3          8      17        NA         3
## 2955    NA    NA     NA         NA      NA        NA        NA
## 2956     0     0      0          0      NA         0         0
## 2957     1    NA      1          1       1         1         1
## 2958     1    NA      2         NA      NA         1         1
## 2959    NA    NA     NA         NA      NA         4        NA
## 2960    17    19     15         21      17        15        23
## 2961     8     6     NA          3      NA        NA        NA
## 2962    NA    NA     NA         NA      NA         3        NA
## 2963    14    14     21         11      14        11        21
## 2964    NA    NA     NA         NA      NA        NA        NA
## 2965    13    19     15         17      15        11        19
## 2966     1     1      2          1       2         1         1
## 2967     2     2      2          2       2         3        NA
## 2968    NA    NA     NA         NA      NA        NA        NA
## 2969     8     8      6          8       8         4         8
## 2970     6     3      6          8       8         3         6
## 2971     4     6      6          4       4         8         6
## 2972    NA    NA     NA         NA       1        NA        NA
## 2973    NA    NA      2         NA      NA         2         2
## 2974    50    74     69         77      53        58        98
## 2975    19    NA     NA          6       3         3        NA
## 2976    48    48     48         41      38        51        48
## 2977     9     5      8          5      11         2         8
## 2978    39    25     31         34      39        39        31
## 2979     3    NA     NA          6       6         3        NA
## 2980   141   102    155        159      95        81       377
## 2981   113   102    148        169     151        95       197
## 2982    NA    NA     NA         NA      NA        NA        NA
## 2983    11     8     15          8      11        11        13
## 2984    61    57     46         55      59        38        76
## 2985   148   129    175        139     118        97       165
## 2986     6     6      6          7       6         7         6
## 2987     6     5      5          8       5         3         3
## 2988     6     6      6          4       6         6         4
## 2989     4     5      5          3       4         1         4
## 2990    NA    NA      1         NA      NA        NA        NA
## 2991     3     1      2          2       1         1         1
## 2992     1     2      2          1      NA        NA         1
## 2993     1     3      2          3       4        NA         2
## 2994    NA    NA     NA         NA      NA         1         1
## 2995     1     1      1          1       0         1         1
## 2996    NA     1      1         NA       1         1         1
## 2997     6     6      7          6      10         5         9
## 2998     1    NA     NA          1       0         0        NA
## 2999     2     2      2          2       4         4         2
## 3000     2     1      1          1       2        NA         1
## 3001    NA    NA     NA         NA       1         1         1
## 3002    NA    NA     NA          1      NA        NA        NA
## 3003     1     1      1          1       1         2         2
## 3004     3     3      4          6       1         3         4
## 3005    NA    NA     NA         NA       4         4         4
## 3006     1    NA     NA         NA      NA        NA        NA
## 3007    NA     3     NA          6      NA        NA         3
## 3008    14    18     11          7       7        11        18
## 3009     0    NA      0         NA       1        NA        NA
## 3010     1     1     NA         NA       0        NA         0
## 3011    13    12     23         10      13        13        11
## 3012     3     2      3          2       4         4         3
## 3013     0    NA     NA         NA      NA        NA        NA
## 3014    NA    NA     NA         NA       2        NA        NA
## 3015     1    NA     NA         NA      NA        NA        NA
## 3016    NA    NA     NA          3       6         3        NA
## 3017     7     7      7          7       4         4        18
## 3018     0    NA      0         NA       0        NA        NA
## 3019     1     1      0          0      NA        NA        NA
## 3020    NA     3     NA          3       5        NA         4
## 3021     2     2      2          3       1         1         3
## 3022     0    NA     NA         NA      NA        NA        NA
## 3023    11     4      7          4      NA         7         7
## 3024     0    NA      0         NA       1        NA        NA
## 3025     1     2     NA         NA      NA        NA        NA
## 3026     2     1      6          3       5         2         2
## 3027     3     2      3          3       3         1         1
## 3028     2     1      1          1       4         3         1
## 3029     1    NA     NA         NA      NA        NA        NA
## 3030    NA     3     NA          3      NA        NA        NA
## 3031    11     7     18         NA       4        11        25
## 3032    NA    NA     NA         NA      NA        NA        NA
## 3033    NA    NA      1         NA      NA        NA        NA
## 3034    17    11     17          2       6        13         6
## 3035     3     4      3          1       4         3         3
## 3036     0    NA     NA         NA      NA        NA        NA
## 3037     1     3     NA         NA      NA        NA        NA
## 3038     3     8      3          8       3        NA        NA
## 3039    21    18     14          4       7        14        18
## 3040     0    NA      0         NA       1        NA        NA
## 3041     0     1      1         NA       0         0        NA
## 3042    23    20     21         16       9        11         2
## 3043     4     4      3          3       6         4         5
## 3044     0    NA     NA         NA      NA        NA        NA
## 3045    NA    NA     NA         NA      NA        NA        NA
## 3046    NA     1      1         NA      NA        NA         1
## 3047    10     4      8          6       3         3         5
## 3048     1    NA     NA         NA      NA        NA        NA
## 3049     0     0      0         NA       0        NA        NA
## 3050    NA    NA     NA         NA      NA         1        NA
## 3051    19    11     13         13       2        15         4
## 3052     3     3      3         13       3         6         6
## 3053    NA    NA     NA          1      NA        NA        NA
## 3054    NA    NA     NA         NA       1        NA        NA
## 3055     1    NA     NA         NA      NA        NA        NA
## 3056     3     3     NA          6       2         2         3
## 3057    NA    NA     NA         NA       1        NA        NA
## 3058     1     1      1          1       2         1         1
## 3059     1     1      1          1       1         1         1
## 3060    NA    NA     NA         NA      NA        NA         0
## 3061    NA    NA     NA         NA      NA        NA        NA
## 3062    NA    NA     NA         NA      NA        NA        NA
## 3063    13    15     23         13      17        13         8
## 3064     8     3      3          6       3        NA         8
## 3065    11    11     17          8       8         6         8
## 3066    23    13     25         21      21        13        13
## 3067     1     2      1          4      NA         2         3
## 3068     2     4      2          2       2        NA         2
## 3069    NA    NA     NA         NA       2        NA        NA
## 3070    26    NA     NA         NA      NA        NA        NA
## 3071    38    38     70         41      60        35        76
## 3072    22    29     22         29      32        32        29
## 3073     6     6      6          3       6         8         6
## 3074     3     5      9          5       8         6         5
## 3075     8    17     NA         17       8        14        11
## 3076     8    14      6          6       8        NA        11
## 3077    42    42     70         42      NA        56        85
## 3078    99   127     85        127      63        81        88
## 3079    19    21     13         17      19        13        17
## 3080    13    30     23         25      34        13        38
## 3081    32    17     32         42      44        38        25
## 3082     6    15     NA         15      NA         6         6
## 3083     3     3      3          3       3         3        NA
## 3084     2     4      2          2       2         2         2
## 3085     1     1      1          1       1         1         1
## 3086    NA    NA     NA         NA       1        NA        NA
## 3087     4     6      4          4       6         2         6
## 3088     0     0      0          0       0         0         0
## 3089    NA    NA      4         NA      NA        NA        NA
## 3090     5     0     NA         NA       7        17        NA
## 3091     1    NA     NA         NA      NA        NA        NA
## 3092    NA    NA     NA         NA      NA         1        NA
## 3093     0     0      0          0       0         0         0
## 3094     3     3      3          3       1         1        NA
## 3095    NA    NA     NA         NA       8         9        10
## 3096    NA     1     NA          3       6        NA        NA
## 3097     8    11     14          8       8         6        14
## 3098     3     1     NA         NA      NA         1         1
## 3099    NA    NA      0         NA       0        NA        NA
## 3100    NA    NA     NA         NA       1         2         1
## 3101     3     3      4          1       1         1         1
## 3102    NA    NA     NA         NA      NA        NA        NA
## 3103    NA     1     NA         NA      NA        NA        NA
## 3104    NA    NA     NA         NA      NA        NA        NA
## 3105    NA    NA     NA         NA       1        NA         1
## 3106    NA    NA     NA         NA      NA        NA        NA
## 3107    NA    NA     NA         NA       3        NA        NA
## 3108     1     1     NA         NA       1        NA         1
## 3109    NA    NA      1         NA      NA        NA        NA
## 3110    NA    NA     NA         NA       1        NA         1
## 3111     3     1     NA         NA      NA        NA        NA
## 3112     3     8      6          6       6         8         3
## 3113    NA    NA      2         NA      NA        NA        NA
## 3114     3     3      4          1       4         1        NA
## 3115    NA    NA     NA         NA      NA        NA        NA
## 3116     3     4     NA          3      NA         3        NA
## 3117     6     8     14          3       3         8        11
## 3118     1     1     NA          1       1         1         1
## 3119     0     0     NA          0      NA         0         0
## 3120     2     2     NA          2       1        NA         3
## 3121     3    NA      3          1       1         1         1
## 3122    NA    NA     NA         NA      NA        NA        NA
## 3123    NA    NA     NA         NA       2        NA        NA
## 3124     3    NA     NA         NA       3        NA        NA
## 3125    NA    NA     NA         NA       5        NA        NA
## 3126    NA    NA     NA         NA      NA         1        NA
## 3127     2     2      2         76     114         2         2
## 3128     3     3      3         73     155        10         3
## 3129    NA    NA     NA         NA      NA        NA        NA
## 3130    NA     3     NA         25      NA        NA        NA
## 3131    NA    NA     NA         NA      NA        NA         2
## 3132    NA    NA     NA         NA      NA         0        NA
## 3133    NA    NA     NA         NA       6        NA        NA
## 3134    NA    NA     NA          2      NA        NA        NA
## 3135    NA    NA      0         NA      NA        NA        NA
## 3136    NA    NA     NA         NA       1        NA        NA
## 3137     1    NA     NA          0       4        NA         1
## 3138    NA     0      0          0       2        NA         1
## 3139     1     1      1          4       4         1         2
## 3140    NA    NA     NA         NA      NA        NA        NA
## 3141     1     1      1          2       1         1         1
## 3142    NA    NA      3          6      NA        NA        NA
## 3143    NA    NA      1         NA      NA        NA        NA
## 3144     2     2     NA         NA       4        NA         2
## 3145    NA    NA     NA         NA      NA        NA        NA
## 3146     2     2      4          4      17        NA        11
## 3147     3    NA      6          3       8         3         3
## 3148     6     6      4          8      36         4        13
## 3149     1     2      1          2       8        NA         2
## 3150    NA     2      2          3       6         2        NA
## 3151    NA    NA     NA         NA       2        NA        NA
## 3152    NA     2      4          2       8        NA         6
## 3153     2     2     NA          4      11        NA         2
## 3154    NA    NA      1          1       2         1         1
## 3155    NA    NA     NA         NA      NA        NA        NA
## 3156    NA    NA     NA         NA      17        NA         2
## 3157    18    NA     NA         NA      NA        NA        NA
## 3158    13    35     41         54     298        51        41
## 3159    19    13     16         25      29        13        19
## 3160     6     5      8         21      66        11        14
## 3161    17    11     17         20      68        11        11
## 3162     3     8     14         23      17         6         6
## 3163    25    28     14         53     461        70        63
## 3164    35    14     39         53      60        25        46
## 3165     6     8     32         59     366        25        80
## 3166    59    40     49         55     123        87        23
## 3167     3     5      5         10      86        18        13
## 3168     3    NA      6         15      51         6        15
## 3169     4     2      4         12      17         2         4
## 3170     2     3      8          6      47         6         6
## 3171    NA    NA     NA         NA      30         4         2
## 3172     5     1      3          4      13        NA         2
## 3173    NA     1     NA         NA      NA        NA        NA
## 3174     2     1      1          2       4         1         1
## 3175    NA    NA     NA         NA       3        NA        NA
## 3176    NA    NA      1         NA      10        NA        NA
## 3177    NA    NA     NA         NA       4        NA        NA
## 3178     0     0      0          0       0         1         0
## 3179     1     2      2          6      13        NA         6
## 3180    NA    NA     NA         NA       1        NA        NA
## 3181     4     2     NA         NA       2         2         4
## 3182     0     0     NA          0       2        NA         1
## 3183     0     0      0          0       0         0         0
## 3184     1     2      3          4       5         1         1
## 3185    NA    NA     NA         NA      15         1         8
## 3186    NA    NA     NA         NA       4         4        NA
## 3187    NA    NA     NA         NA      NA        NA         2
## 3188     3    NA     NA         NA      NA        NA        NA
## 3189    NA     3      3          6      28        NA        NA
## 3190    NA    NA      0         NA      NA        NA        NA
## 3191     0     1      1          0       6         0         1
## 3192    NA    NA     NA          1       1         2         1
## 3193     1     1      1          1      13        NA         5
## 3194     0     0      0          0       1        NA        NA
## 3195    NA    NA     NA         NA       3        NA         2
## 3196    NA    NA     NA         NA      25        NA        NA
## 3197    NA    NA      0         NA      NA        NA        NA
## 3198    NA    NA     NA         NA       5        NA        NA
## 3199    NA    NA     NA          1       1        NA         1
## 3200    NA    NA     NA         NA       3        NA        NA
## 3201     0     0      0          0       1        NA        NA
## 3202    NA    NA     NA         NA      NA        NA         2
## 3203    NA    NA     NA         NA      11        NA        NA
## 3204    NA    NA      0         NA      NA        NA        NA
## 3205    NA    NA     NA         NA      NA         0         1
## 3206    NA    NA     NA          1       1        NA         1
## 3207    NA    NA     NA         NA       3        NA        NA
## 3208     1     1     NA          3      13         3         3
## 3209     3    NA      3          6       8        NA         3
## 3210    NA    NA     NA         NA       3        NA        NA
## 3211    NA    NA     NA         NA       1        NA        NA
## 3212     0     0      0          0       1        NA        NA
## 3213    NA     2      2         NA      11         4        NA
## 3214    NA    NA     NA         NA       3        NA         2
## 3215     3    NA     NA         NA      NA        NA        NA
## 3216     6     3     NA          8      28         3         6
## 3217    NA    NA      0         NA      NA        NA        NA
## 3218     1     0      1          0      11         0         2
## 3219     2     2      2          1       3        NA         1
## 3220     2     2      3          4      20         1         6
## 3221     0     0      0          0       1        NA        NA
## 3222    NA     1      1         NA       4        NA        NA
## 3223     1     1      1         NA      18        NA         4
## 3224    NA     2     NA         NA      NA         2        NA
## 3225    NA     3      3         NA       3        17        NA
## 3226     8    10     10          9      10        NA         1
## 3227    NA    NA     NA         NA      NA         1        NA
## 3228    44     4      2         85      17         2         8
## 3229    19     6      3        130      29        19        13
## 3230    NA    NA     NA          2      NA        NA        NA
## 3231    NA    NA     NA         NA       6        NA        NA
## 3232     5     8      3         18      38        NA        NA
## 3233    NA    NA     NA         NA      NA        NA        -1
## 3234    NA    NA     NA         NA      NA        NA         2
## 3235     3    NA     NA         NA      NA        NA         1
## 3236     6     5      3          5       3        NA        NA
## 3237    NA    NA     NA         NA      NA         2        NA
## 3238     0     0      1          1       1         0         1
## 3239     1    NA     NA          1       5         1         2
## 3240     1     1     NA         NA      NA        NA        NA
## 3241     1     4      2          1       1        NA         2
## 3242     0    NA     NA         NA      NA        NA         0
## 3243     1     1      1          1       1         1         1
## 3244    NA    NA     NA         NA      NA        NA        NA
## 3245     1     1      1          1       2         2         1
## 3246    NA    NA     NA          3      NA        NA        NA
## 3247    NA    NA     NA         NA      NA         0        NA
## 3248     1     1     NA         NA      NA         1        NA
## 3249     1    NA      1         NA       1         1         1
## 3250    NA    NA     NA         NA      NA        NA        NA
## 3251    NA    NA     NA         NA      NA        NA        NA
## 3252     4     2      4          4      11         4         2
## 3253     6     9     11          9      14        11        15
## 3254    NA    NA     NA         NA      NA        NA        NA
## 3255     8    11     14         11       8         6         3
## 3256    21    27     38         38      49        27        21
## 3257     1     1      1          1       1         1         1
## 3258     2     3      3         NA      NA        NA        NA
## 3259     1    NA      1          1       1         1        NA
## 3260     2     4      2          4      NA         2         2
## 3261    NA    NA     NA         NA       3        NA        NA
## 3262    NA    NA     NA         NA       0        NA        NA
## 3263    NA    NA     NA         11      25        15        NA
## 3264    61    NA     NA         NA      NA        NA        NA
## 3265    60    86    113         92      86        86        70
## 3266   111   301     44        143     133       130       101
## 3267    44    23     27         63      26        35        29
## 3268   114    78    114        105     132        78       126
## 3269    NA    NA     NA         NA      NA        NA        NA
## 3270     8     6      3          6       8        NA         3
## 3271    81    77     95        113     120        88       127
## 3272   359   771    317        578     511       352       412
## 3273    11    36     34         61      38        32        38
## 3274    80    66     97        131     230        97       106
## 3275   249   499    273        355     562       260       256
## 3276    NA    NA     NA          1       1         1         2
## 3277    13     6     13         11      21         9        13
## 3278    17    12     15         17      27        15        12
## 3279    NA    NA      2         NA      NA        NA        NA
## 3280    NA     3      4          6       2         2         1
## 3281     1     2      1          1       1         2         2
## 3282    NA     1     NA         NA       2        NA        NA
## 3283     3     6      5          6       4         3        NA
## 3284     0     0      0          0       1         0         0
## 3285    NA     0     NA         NA      NA        NA         1
## 3286     3     1      3         NA       3         2         2
## 3287     1    NA     NA         NA       1        NA        NA
## 3288     2     2     NA          2       2         2        NA
## 3289     1     1      0          1       2         1         0
## 3290    NA    NA     NA         NA       2         1        NA
## 3291     1    NA     NA         NA       2        NA        NA
## 3292    NA    NA     NA         NA       1        NA        NA
## 3293     0     0      0          1       0         0         0
## 3294     5     5      5          5       6        NA        NA
## 3295    NA    NA     NA         NA      11        10         6
## 3296     3     3      2          3       3         3         3
## 3297     3    NA     NA         NA      NA        NA        NA
## 3298     9     9      9          9      14        11        11
## 3299     6     3      6          8       6        11        11
## 3300    NA    NA     NA         NA      NA        NA        NA
## 3301     2     0      1          1       1         0         1
## 3302     2    NA     NA          2      NA        NA         0
## 3303     2     4      4          8       5         2         2
## 3304    11    15      1          8      11         5         7
## 3305    NA    NA     NA         NA      NA        33        NA
## 3306    NA     2     NA         NA      NA        NA        NA
## 3307    NA    NA     NA         NA      NA        NA        NA
## 3308     6    NA      8         NA       6        NA         6
## 3309     3    NA     NA         NA      NA        NA        NA
## 3310     6     8     NA          6      12         6         3
## 3311    NA    NA     NA         NA      NA        NA        NA
## 3312     0     0      1          0       0         0         0
## 3313    NA    NA     NA          0      NA        NA        NA
## 3314     4     2     NA          6       3         4        NA
## 3315     2     1      1         12       1         1         1
## 3316    NA    NA     NA         NA      NA        NA        NA
## 3317     3     6      3          6      NA         6        NA
## 3318     3     3      3          6       8         9         3
## 3319    NA    NA     NA         NA       6        NA        NA
## 3320     2     0      1          2       1         0         1
## 3321     2    NA     NA          2      NA        NA        NA
## 3322    NA     4      2          2       3         8         2
## 3323     2     7      1          2       5         1        -2
## 3324    NA    NA     NA         NA       2        NA        NA
## 3325     3    NA     NA         NA      NA        NA        NA
## 3326    NA     5      3          5       3         2         5
## 3327    11    11      3         17      11        11         8
## 3328    NA    NA     NA         NA      NA        NA         4
## 3329     6     4     NA         NA       6         4         6
## 3330    NA    NA     NA         NA      NA        NA        NA
## 3331    10     6      3          6      10        10        10
## 3332     3    NA     NA         NA      NA        NA        NA
## 3333     8     9     11          9      15        12         8
## 3334    23    17     NA         14      15        23        11
## 3335    NA    NA     NA         NA      NA        NA        NA
## 3336     2     0      1          1       1         0         1
## 3337     2     0      0          3       0         0         0
## 3338     6     8     11          6       7         8         6
## 3339    15    17     11         12       9         9         9
## 3340    NA    NA     NA         NA      NA        NA        NA
## 3341    NA     2      2         NA      NA        NA         1
## 3342     3     1      5          5      10         3         1
## 3343     0    NA     NA         NA      NA        NA        NA
## 3344    NA    NA      2          2       2         2         2
## 3345    NA    NA      3          3       3         3         3
## 3346    NA    NA     NA          3      NA        NA        NA
## 3347    NA    NA     NA          2      NA        NA        NA
## 3348     3    NA     NA          3      NA        NA        NA
## 3349    NA     0     NA          0       0         0         0
## 3350    NA    NA     21         NA      NA        NA        NA
## 3351    NA     0     NA          0      NA        NA        NA
## 3352     2    NA      1         NA       1         1         1
## 3353    NA    NA     NA          4      NA        NA        NA
## 3354     1    NA      1          1       1         1         1
## 3355     8     3     11          3      NA         3         6
## 3356    NA     0     NA         NA      NA         0         0
## 3357    NA    NA     NA          1       1         1        NA
## 3358     2    NA     NA         NA      NA        NA        NA
## 3359     2    NA      2          2       2         2         2
## 3360     4     4      4          6       6         2         4
## 3361    NA    NA     NA          2       2        NA        NA
## 3362    16    NA     NA         NA      NA        NA        NA
## 3363     3    22     29         38      38        32        16
## 3364    22    16     22         16      22        16        16
## 3365     3     3      3          2       3         3         2
## 3366    56    46     56         53      46        32        32
## 3367    NA    NA     NA          2      NA        NA         2
## 3368    27    23     25         25      19        21        21
## 3369     1     1      1          1       1         1         1
## 3370     1     1      2          1       2         1        NA
## 3371    NA    NA      1         NA      NA        NA        NA
## 3372    NA    NA      1          1       1         1         1
## 3373    NA     1     NA         NA      NA        NA        NA
## 3374     3    NA     NA         NA       4        NA         3
## 3375     2    NA      1          3       0         2         2
## 3376    NA    NA     NA         NA      NA         0         0
## 3377     2    NA      3          2       1         3         3
## 3378     1    NA     NA         NA      NA        NA        NA
## 3379     4    NA     NA         NA      NA         4        NA
## 3380     0    NA     NA         NA      NA        NA        NA
## 3381    NA    NA      0          0       0         0         0
## 3382     2     2      2         NA       3         2        NA
## 3383     2    NA     NA         NA      NA        NA        NA
## 3384    NA     3     NA         NA       3         3        NA
## 3385    NA     0     NA          0       0         0         0
## 3386     0    NA     NA         NA       1         0         1
## 3387    NA    NA      1         NA       1         1         1
## 3388     2     2     NA         NA      NA        NA        NA
## 3389     2    NA     NA         NA      NA        NA        NA
## 3390    NA     0     NA          0       0         0         0
## 3391     0     0     NA          0      NA        NA         0
## 3392    NA    NA      1         NA       1         1         1
## 3393     2     2      2          2       3         2         3
## 3394    NA     0     NA          0       0         0         0
## 3395     0    NA     NA         NA      NA        NA        NA
## 3396    NA    NA      1         NA       1         1         1
## 3397     2    NA     NA         NA      NA        NA        NA
## 3398    NA     3      3          3       3         3        NA
## 3399    NA    NA     NA          0      NA        NA        NA
## 3400     2     2      2          3       3         2         2
## 3401     2    NA     NA         NA      NA        NA        NA
## 3402     3     3     NA          3       3        NA         3
## 3403    NA     0     NA          0       0         0         0
## 3404     1     1      0          0      NA         0         1
## 3405    NA    NA      1          2       1         1         1
## 3406    NA    NA      1         NA      NA         1        NA
## 3407     1    NA      3         NA      NA         3         3
## 3408    NA    NA     NA         11      NA        NA        NA
## 3409    NA    NA     NA         NA      NA         1         1
## 3410     6     4     15         11       4         6         2
## 3411     6    13     22          3      10        13         6
## 3412     0    NA     NA          0       1         0         0
## 3413     5    NA      5          3      NA         3        NA
## 3414    NA    NA     NA         NA      NA        NA         2
## 3415    NA    NA     NA         NA      NA        NA         1
## 3416    NA     1      1          2       1         2         1
## 3417    NA    NA     NA          2      NA        NA        NA
## 3418    NA    NA     NA         NA      NA        NA        NA
## 3419    NA     1     NA         NA       1         1         2
## 3420     5     7     11          2       7         3         2
## 3421     0     1      0         NA       1        NA         0
## 3422     2     5      2          2       3         3         3
## 3423    NA    NA     NA         NA      NA        NA        NA
## 3424    NA    NA     NA         NA      NA        NA        NA
## 3425     1     2      2          1       1         1         2
## 3426    14     8     17         NA       8        11        17
## 3427     1    NA      1          4       1        NA        NA
## 3428     0     0     NA          0      NA         0         0
## 3429    NA     1     NA         NA      NA         1         1
## 3430     1     2     NA          1      NA         1         2
## 3431    NA    NA     NA         NA      NA        NA        NA
## 3432     1    NA     NA         NA      NA        NA        NA
## 3433     2     2      2          2       2         2        NA
## 3434    NA    NA     NA         NA      NA        NA        NA
## 3435    17    32     27         30      51        17        44
## 3436    54    65     48         54      70        59        68
## 3437     2    27     19         23      23        27        25
## 3438     3     3      3          3       4         4         1
## 3439     3     2     NA          3       3         2         3
## 3440     8     8      8         11      15         8        13
## 3441    17    23     25         20      23        20        31
## 3442     6     6      4          8       4         4         4
## 3443     1     1      1          1       1         1         1
## 3444    23    46     46         49      72        17        53
## 3445     5    NA     NA         NA      NA        NA        NA
## 3446    29    48     44         35      67        73        35
## 3447    10     3     13         16      10        16        NA
## 3448     5    12      9          9      17         8         9
## 3449     6     8      5          5      NA        NA        NA
## 3450    99    87     76         73     101        62       104
## 3451     6     8      6         14       6         3        NA
## 3452   109   116    159        102     120       102        63
## 3453    60    99    120        106     148        85       123
## 3454     4     2     NA         NA      NA        NA        NA
## 3455    49    19     40         36      36        38        42
## 3456    59    30     40         19      15        42         8
## 3457     6     9      6         12      12         6         3
## 3458     9    11     13         11       9         9        11
## 3459     9     5      8          8       8         5         8
## 3460     2     8      2          6       6         6         4
## 3461     5     3      4          3       5         2         3
## 3462    NA    NA     NA         NA      NA        NA        NA
## 3463     2     2      1          2       1         2         1
## 3464     3     3      3          1      NA        NA        NA
## 3465     4     5      8          4       3         2         2
## 3466     0     1      0          0       0         1         1
## 3467    NA    NA      0         NA      NA        NA         1
## 3468     8     6     10          3       7         6         9
## 3469     0    NA     NA          1      NA        NA        NA
## 3470     2     4     NA          2       4        NA         4
## 3471     0     1      0          0       0         0         0
## 3472    NA    NA     NA         NA      NA        NA         1
## 3473    NA    NA     NA         NA      NA        NA         1
## 3474    NA    NA     NA         NA      NA        NA         2
## 3475     0     0      0          0       0         0         1
## 3476     6     5      4          2       4         3         4
## 3477    NA    NA     NA         NA      NA        NA         3
## 3478    NA    NA     NA         NA      NA        NA         1
## 3479    NA    NA     NA         NA       1        NA         1
## 3480     4    11     NA          4       4         2         2
## 3481    NA     1     NA         NA      NA        NA        NA
## 3482     0    NA     NA         NA      NA        NA        NA
## 3483     8     8      6          6      14         6         6
## 3484    NA    NA     NA         NA      NA        NA        NA
## 3485     1    NA     NA         NA      NA        NA        NA
## 3486     2     1      1          1      NA        NA        NA
## 3487     2     1      1          3       1         3         1
## 3488    NA    NA     NA         NA      NA        NA        NA
## 3489    NA     2     NA         NA      NA        NA        NA
## 3490    NA     1     NA         NA      NA        NA        NA
## 3491     0    NA     NA         NA      NA        NA        NA
## 3492     6     3      3         20      NA        NA         6
## 3493    NA    NA     NA         NA      NA        NA        NA
## 3494    NA     0     NA         NA      NA        NA        NA
## 3495     2     1      1          1      NA        NA        NA
## 3496     1     1      1          1       1         1        NA
## 3497    NA    NA     NA         NA      NA        NA        NA
## 3498     4    NA     NA         NA      NA        NA        NA
## 3499     0    NA     NA         NA      NA        NA        NA
## 3500    NA    NA     NA         NA      NA        NA         3
## 3501    NA    NA     NA         NA      NA        NA        NA
## 3502    NA     0     NA         NA      NA        NA        NA
## 3503     2     1      1          1      NA        NA        NA
## 3504     1    NA     NA          1      NA         1         1
## 3505     1     2      1          2      NA         1         1
## 3506    NA     1     NA         NA      NA        NA        NA
## 3507    20    17     17          8      23         8         3
## 3508    NA    NA     NA         NA      NA        NA         0
## 3509    NA     1     NA          1       3         1        NA
## 3510    NA    NA     NA         NA      NA        NA        NA
## 3511     4     4      2          6       4         4         2
## 3512    NA     1     NA         NA      NA        NA        NA
## 3513     0    NA     NA         NA      NA        NA        NA
## 3514    11    14      8          8      14         6         8
## 3515    NA    NA     NA         NA      NA        NA        NA
## 3516     1     1      0          0      NA        NA        NA
## 3517     2     3      1          1       2        NA        NA
## 3518     3     3      3         15       3         3         1
## 3519    NA    NA     NA         NA      NA        NA        NA
## 3520    NA    NA     NA         NA      NA        NA         2
## 3521    NA     2      2          2       4         1         3
## 3522     8    10     15          6      10         6        10
## 3523     0    NA     NA         NA      NA        NA        NA
## 3524    NA    NA     NA         NA      NA        NA        NA
## 3525    NA    NA     NA         NA      NA        NA        NA
## 3526    NA    NA     NA         NA       2        NA         2
## 3527    NA    NA     NA         NA      NA         1        NA
## 3528    NA    NA     NA         NA      NA         1        NA
## 3529     4     2      2          2       2         2         4
## 3530     6     3      3          3       3         3         6
## 3531    NA    NA     NA         NA      NA         0        NA
## 3532    NA    NA      0         NA      NA        NA        NA
## 3533     4     2      4          2       3         1         3
## 3534     2     1      1          1       1         1         1
## 3535     2     1      1          2       2         2         1
## 3536    NA    NA     NA          3      NA        NA        NA
## 3537    NA    NA     NA         NA      NA        NA        NA
## 3538     6     8      8         13       6         6         6
## 3539     8     3      3          3       3         3         6
## 3540    11    11     11         11      14        14        14
## 3541    NA     3     NA          2       2         2         2
## 3542     8    13     11         11       8         8         6
## 3543     2    NA     NA          1       1         1         1
## 3544     2     2     NA          2      NA        NA         2
## 3545     2     2      4         NA       4         2         2
## 3546    NA    NA      2          2       4         2        NA
## 3547    32    NA     NA         NA      NA        NA        NA
## 3548    19    54     48         48      63        38        64
## 3549    35    38     41         32      54        35        38
## 3550     3     8      6          5       6         8         8
## 3551    NA    NA     NA         NA      NA        NA        NA
## 3552    11    14     11         11      17        14        17
## 3553    63    60     46         63      53        35       162
## 3554   201   187    169        127     159       229       162
## 3555     3    NA     NA         NA      NA        NA        NA
## 3556    17    17     21         21      27        17        17
## 3557    44    40     40         55      42        72        38
## 3558     3     2      3          4       4         4         4
## 3559     3     5      5          5       3         3         5
## 3560    NA    NA     NA         NA      NA        NA        NA
## 3561    NA     1     NA         NA      NA        NA        NA
## 3562     1     1      1          2       1         1         1
## 3563    NA     1     NA         NA      NA        NA        NA
## 3564    NA    NA      1         NA       1         1        NA
## 3565     0     0      0          0       0         0         0
## 3566     6     5      6          7       7         5         2
## 3567     0    NA     NA         NA      NA        NA        NA
## 3568    NA    NA      2         NA      NA         2        NA
## 3569    NA    NA     NA          0       0         0         0
## 3570     0     0      0          0       0         0         0
## 3571    NA    NA     NA         NA       3         1         3
## 3572    NA    NA     NA         NA       1         1         1
## 3573    NA     1     NA         NA      NA        NA        NA
## 3574     1    NA     NA          1      NA        NA         4
## 3575    NA    NA      0         NA      NA        NA        NA
## 3576    NA     0     NA          0      NA         0        NA
## 3577     1     1      1         NA       1         2         1
## 3578    NA    NA     NA         NA      NA        NA        NA
## 3579    NA    NA     NA         NA      NA        NA         0
## 3580    NA     1     NA         NA      NA        NA        NA
## 3581     1    NA     NA          1      NA         3         1
## 3582    NA    NA      0         NA      NA        NA        NA
## 3583    NA     0     NA          0      NA        NA        NA
## 3584     1     1      1         NA       1        NA         1
## 3585    NA    NA     NA         NA      NA        NA        NA
## 3586     1    NA     NA          1      NA        NA         1
## 3587    NA    NA      0         NA      NA        NA        NA
## 3588    NA     0     NA         NA      NA        NA        NA
## 3589     1     1      1         NA       1        NA         1
## 3590    NA     1     NA          3      NA        NA        NA
## 3591     3     6     11          6      11        NA         6
## 3592     0    NA     NA          0       0        NA        NA
## 3593    NA     2      2         NA      NA        NA        NA
## 3594    NA    NA     NA         NA      NA        NA        NA
## 3595    NA     1     NA         NA      NA        NA        NA
## 3596     4    NA     NA          1      NA        NA         1
## 3597    NA    NA      0         NA      NA        NA        NA
## 3598    NA     0      0          1      NA         1         0
## 3599     1     1      1          2       1        NA         1
## 3600    NA    NA     NA         NA      NA        NA        NA
## 3601    NA     1     NA         NA      NA        NA        NA
## 3602     6     3      6          6       4         4         5
## 3603    NA    NA     NA         NA       2         2         2
## 3604    NA    NA     NA         17      NA        NA        NA
## 3605    NA    NA     NA         NA      NA        NA         2
## 3606    NA    NA     NA         NA      NA         1        NA
## 3607     8     8      8         11       6        15         2
## 3608    13    13     13         10       6         6         6
## 3609     3     8      3          3       5         3        NA
## 3610    NA    NA     NA         NA      NA        NA         1
## 3611    NA    NA     NA         NA      NA         1        NA
## 3612    NA    NA     NA          3      NA        NA        NA
## 3613     1    NA     NA         NA      NA        NA        NA
## 3614     2     3      2          1       2         2         1
## 3615    NA    NA      1          1      NA        NA        NA
## 3616     1     1      4          1       1         3         1
## 3617    NA    NA     NA         NA      NA        NA        NA
## 3618     1     1      1          1       1         1         1
## 3619    NA     6      3          3      NA         3         6
## 3620    NA    NA     NA         NA      NA        NA         0
## 3621    NA    NA     NA         NA      NA        NA        NA
## 3622     1     1     NA         NA      NA        NA        NA
## 3623     2     2      2          2      NA        NA        NA
## 3624    NA    NA     NA         NA      NA        NA        NA
## 3625     8    11     15         11      17         6        13
## 3626     8    11     14          6      11        11        14
## 3627     3     2      3          2       3         3        NA
## 3628    13     8     11          8      13         8         8
## 3629     2     2      2          1       3         3         3
## 3630     2     2      4          2       2         4         4
## 3631     3     8      8          6       3        NA         8
## 3632     6     4      2          4       2         4        NA
## 3633    25    25     34         34      34        21        25
## 3634    NA    NA     NA         NA      NA        NA        NA
## 3635    16    13     16         19      13        19        13
## 3636    16    32     32         19      32        22        25
## 3637     5     6      9         14       6         3         8
## 3638    23    23     31         45      31        23        11
## 3639    46    49     63         60      25        42        35
## 3640     4    99    137        123     208        35       130
## 3641    NA    NA     NA         NA      NA        NA        NA
## 3642     8    11     13          8       8         8        11
## 3643    13    15     30         32      27        27        17
## 3644    15    25     36         21      25         8        21
## 3645     8     8     10          6      10         4         6
## 3646     2     2      3          3       3         3         2
## 3647     2     2      2          2       2         6        NA
## 3648     2     2      2          2       3         1        NA
## 3649    NA    NA     NA         NA      NA        NA        NA
## 3650     2     2      1          1       1         1         1
## 3651     1    NA      1          1      NA        NA         1
## 3652    NA     1     NA         NA       2        NA         1
## 3653    NA    NA     NA         NA      NA        NA        NA
## 3654     0     0      2          0       0         0         0
## 3655    NA    NA     NA         NA      NA        NA         0
## 3656     2     4      5          4       4         3        NA
## 3657     0    NA     NA         NA       1        NA        NA
## 3658     0     0      0          0       0         0         0
## 3659     1     1      1          1       1         1         1
## 3660    NA    NA     NA         NA      NA         1         1
## 3661    NA    NA     NA         NA       1        NA        NA
## 3662    NA     2      3          1       1         2         1
## 3663     2     1     NA         NA       1        NA        NA
## 3664     3     1     NA          1       3         1         1
## 3665     1     0      1          0       1         0         0
## 3666    NA     1      1          1       1         1         1
## 3667     1     1      1          1       1         3         1
## 3668     0    NA     NA         NA       0        NA        NA
## 3669    NA    NA     NA          1       1         1         1
## 3670     2     1     NA         NA       1        NA        NA
## 3671    NA     1     NA          7       3         1         1
## 3672     1     0      0          0       1        NA         0
## 3673    NA     1      1          1       1         1         1
## 3674    NA     1      1          1       1         1         1
## 3675     0    NA     NA         NA       0        NA        NA
## 3676    NA     2      2          1       2         1         1
## 3677    NA     1     NA          1       3         1         1
## 3678     1     0      0          0       1        NA         0
## 3679    NA     1      1          1       1         1         1
## 3680     1     1      1          1       1         1        NA
## 3681     1    NA     NA          1      NA         1        NA
## 3682     2     1     NA         NA       1        NA        NA
## 3683    NA    NA      3          3       3         6        NA
## 3684    NA    NA      0         NA      NA        NA        NA
## 3685    NA    NA     NA         NA      NA        NA        NA
## 3686     0    NA     NA         NA       0        NA        NA
## 3687    NA     2     NA          1       2         1         4
## 3688     2     1     NA         NA       1        NA        NA
## 3689     6     1      3          4       3         1         4
## 3690     1     1      0          0       1         1         0
## 3691     2     1      1          1       1         1         1
## 3692     1     1      1          1       1         1         1
## 3693     0    NA     NA         NA       0        NA        NA
## 3694    NA    NA     NA         NA       1        NA        NA
## 3695     4     6      5          3       4         3         4
## 3696     0     0     NA         NA      NA        NA        NA
## 3697    NA    NA     NA         NA       1        NA        NA
## 3698    NA    NA     NA         NA      NA         1        NA
## 3699    13     6     15          2       6         4         2
## 3700    16    13     10          6      13         6         3
## 3701    NA    NA     NA          1      NA        NA        NA
## 3702    15    10      8          5      15        13         8
## 3703    NA    NA     NA         NA      NA        NA         1
## 3704    NA    NA     NA         NA      NA         0        NA
## 3705    NA    NA     NA         NA      NA        NA        NA
## 3706    NA     3     NA         NA       3         3         1
## 3707     3     4      2          3       6         4         5
## 3708    NA     0     NA          0       0        NA         1
## 3709     1     3      1          3       3         3         1
## 3710    NA    NA     NA         NA      NA        NA        NA
## 3711     2     1      1          2       2         1         2
## 3712     6    NA      3         NA      NA         8        NA
## 3713     1     1      1         NA       2         1         1
## 3714    NA     0     NA         NA      NA        NA        NA
## 3715     1     1     NA         NA       1         1        NA
## 3716     1    NA     NA         NA      NA         1         1
## 3717    NA    NA     NA         NA      NA        NA        NA
## 3718    NA    NA     NA         NA      NA        NA        NA
## 3719    NA    NA     NA         NA      NA        NA        NA
## 3720     2     2     NA          4       2         2         2
## 3721     4     4      4          4       2         4         6
## 3722    NA    NA     NA         NA      NA         1        NA
## 3723    NA    NA     NA          2      NA        NA        NA
## 3724    NA    NA     NA         NA      NA        NA        NA
## 3725    NA    NA     NA         NA      NA        NA        NA
## 3726    NA    NA     NA          2       2         2         2
## 3727     8    NA     NA         NA      NA        NA        NA
## 3728    10    48     44         38      29        16        52
## 3729   171   159    165        120     105       111       146
## 3730    11     9     11         20      18        21        15
## 3731    NA    NA     NA         NA      NA        NA        NA
## 3732     3     6      6          6       3         3         6
## 3733     7    42     35         32      21        35         7
## 3734   229   218    162        208     247       155       166
## 3735    17     8     13         13      17        17        21
## 3736    19    17     13         15      21        27        19
## 3737   186   123    118        154     171       156       129
## 3738    12     6      7          4       5         6         6
## 3739     3     2      3          3       2         5         2
## 3740     4     2      6         NA       4         6         2
## 3741     4     2      3          1       3         3         3
## 3742     1     1      1          1       1         1         1
## 3743     1     2      1          1       2         1        NA
## 3744     0     2      0          0       1         0         0
## 3745    NA    NA      1         NA      NA        NA        NA
## 3746     7     7      3          3       7         6         4
## 3747    NA    NA     NA         NA       0        NA        NA
## 3748     2    NA     NA         NA      NA         2         2
## 3749     1    NA     NA          0       1         2         0
## 3750     0     0      0          0       0         0         0
## 3751    NA    NA      1         NA      NA        NA        NA
## 3752    NA    NA     NA         NA       1        NA         1
## 3753    10    10      6         10      10        NA         6
## 3754     5     1     NA         NA      NA        NA        NA
## 3755     1     2      2          4       3         1         4
## 3756     0     2      2          2       3         1         3
## 3757     4     2      5          1       2         2         5
## 3758     5     1      3          5       3         3         3
## 3759    NA    NA     NA         NA      NA        NA        NA
## 3760    NA    NA     NA         NA       0        NA        NA
## 3761     3     3     NA          3       4         6         2
## 3762     2     4     NA         NA      NA        NA        NA
## 3763     1     2      2          1       3         1         1
## 3764     2     2     NA          4       2         2        NA
## 3765     4     2      3          5       2         2         3
## 3766     3     1      3          3      NA         3        NA
## 3767    NA    NA     NA         NA      NA        NA        NA
## 3768    NA    NA     NA         NA       0        NA        NA
## 3769     3     3      6          6       7        10        10
## 3770     1     2      2          1       3         1         1
## 3771    NA    NA     NA          2      NA         2         2
## 3772    NA    NA      3          1       2         2         1
## 3773    NA    NA     NA          3      NA         3         3
## 3774    NA    NA     NA         NA      NA        NA        NA
## 3775     2     1     NA         NA      NA        NA        NA
## 3776    NA    NA     NA         NA      NA        NA        NA
## 3777     2    NA      2          1      NA         2        NA
## 3778     2     4      2         NA       2        NA         2
## 3779     3     1      3         NA       3        NA        NA
## 3780    NA    NA     NA         NA       0        NA        NA
## 3781    10    10     10         10      10        10         9
## 3782     2     1     NA         NA      NA        NA        NA
## 3783     4     2      2          1       3         1         1
## 3784     3     1      2          5       2         3         2
## 3785     8     2      7          3       4         2         5
## 3786     5     4      5          5       3         5         3
## 3787    NA    NA     NA         NA      NA        NA        NA
## 3788    NA    NA     NA         NA       0        NA        NA
## 3789    NA     2     NA         NA      NA        NA        NA
## 3790     1     1      1         NA       1         1         3
## 3791    NA    NA      0         NA      NA        NA        NA
## 3792    NA    NA     NA          6      NA        NA        NA
## 3793     8     3      8          5      NA         3        NA
## 3794    NA    NA     NA         NA      NA        NA         3
## 3795    NA    NA     NA         NA      NA         1        NA
## 3796     6    15      2          6      13        11         2
## 3797    13    13      3          3      16        22        10
## 3798    NA    NA     NA          0      NA        NA        NA
## 3799    NA    NA      7         NA      NA        NA        NA
## 3800     8     3      5         NA      NA        NA         5
## 3801    NA    NA     NA         NA      NA        NA         1
## 3802    NA    NA     NA         NA      NA         0        NA
## 3803    NA     1     NA         NA      NA        NA        NA
## 3804    NA    NA     NA         NA      NA        NA        NA
## 3805    NA    NA     NA         NA      NA        NA        NA
## 3806     2    NA      1         NA      NA        NA        NA
## 3807     1    NA     NA         NA      NA        NA        NA
## 3808    15     8     NA         13       6        11        10
## 3809     1    NA     NA         NA       0        NA         0
## 3810     1     2      2          1       3         1         2
## 3811    NA    NA     NA         NA      NA        NA        NA
## 3812     1     1      1          1       1         1         1
## 3813     3     3     NA          3      48        NA         3
## 3814    NA    NA      1         NA      NA        NA        NA
## 3815    NA     0      0         NA      NA        NA         0
## 3816     1     1      1         NA      NA        NA         1
## 3817     1    NA      2         NA      NA         1         1
## 3818    NA    NA     NA         NA      NA        NA        NA
## 3819     6     6      6         NA       2         4         2
## 3820     8     8      8          6       6         4         6
## 3821    NA    NA     NA          3      NA        NA        NA
## 3822    30    NA     19         42       2        11         8
## 3823    NA    NA     NA          3       3         3         7
## 3824   136    86     92        155     114        79       120
## 3825     2    14     11         33      36         2        21
## 3826    NA    NA     NA         NA      NA        NA        NA
## 3827    NA    NA     NA         NA      NA        NA        NA
## 3828    42    NA     14         56       7        28        42
## 3829   250   271    468        377     402        11       380
## 3830    NA    11     11         40      25        13        27
## 3831   467    32    213        395     404        13       207
## 3832     4     5      4          4       4         4         7
## 3833    12    NA      2          9       5         3         5
## 3834    20    NA      8         14      10         6         6
## 3835    NA     1      4          3       2         2         1
## 3836    NA    NA      1         NA      NA        NA        NA
## 3837     1     1      1          1       1         1         1
## 3838    NA    NA     NA         NA      NA        NA        NA
## 3839    NA    NA     NA         NA       7         1        NA
## 3840     0     0      0          0       1         0         1
## 3841    NA    NA     NA         NA      NA         1        NA
## 3842     3     8      4         NA      10        10        10
## 3843     0    NA     NA         NA       1        NA        NA
## 3844     2     2      2         NA       2        NA         2
## 3845    NA     1      1          0       1        NA         1
## 3846    NA     1     NA         NA      NA        NA        NA
## 3847     0     0      0          0       0         0         0
## 3848    NA    NA      1         NA      NA        NA        NA
## 3849    NA    NA     NA         NA       1        NA        NA
## 3850    NA    NA     NA         NA      NA         1        NA
## 3851     1     1     NA         NA      NA        NA        NA
## 3852    NA     6     NA          6      14        NA         6
## 3853    NA    NA     NA         NA      NA        NA         6
## 3854    NA    NA     NA         NA      NA        NA         4
## 3855     2    NA      1         NA      NA        NA        NA
## 3856     2     0     NA          3       5        NA         3
## 3857    NA    NA     21          3      NA         2         6
## 3858    NA    NA     NA         NA      NA        NA        NA
## 3859    NA    NA     NA         NA      NA        NA        NA
## 3860    NA    NA     NA         NA      NA         1        NA
## 3861     1     1     NA         NA      NA        NA         3
## 3862    NA     8      3          8      14        NA         1
## 3863    NA    NA     NA         NA      NA        NA        NA
## 3864     1    NA      1         NA      NA        NA        NA
## 3865     4     0     NA          3       4        NA         3
## 3866     2     4      6         14      NA        NA         6
## 3867    NA    NA     NA         NA      NA        NA        NA
## 3868    NA    NA     NA          5      NA        NA        NA
## 3869    NA    NA     NA         NA      NA        NA        NA
## 3870    NA    NA     NA         NA      NA         1        NA
## 3871    NA    NA      3          3      14         3         4
## 3872    NA    NA     NA         NA      NA        NA        NA
## 3873     2    NA      1         NA      NA        NA        NA
## 3874     2     0      1          2       4         2         2
## 3875    NA     2      4          3      NA         2        NA
## 3876    NA    NA     NA         NA      NA        NA        NA
## 3877     1     4     NA         NA      NA        NA        NA
## 3878    NA    NA      3          3       8        NA        NA
## 3879    NA    NA     NA         NA      NA        NA         4
## 3880     0     0     NA          2       2        NA        NA
## 3881    NA    NA      4         NA       2        NA         2
## 3882    NA    NA     NA         NA      NA        NA        NA
## 3883    NA    NA      3         NA      NA         1         1
## 3884     1     1     NA         NA      NA        NA        NA
## 3885     3    11     NA          8      17        NA        12
## 3886    NA    NA     NA         NA      NA        NA         4
## 3887     3    NA      1         NA      NA        NA         1
## 3888     3     3     NA          3       4         2         3
## 3889    11    NA     12         14      NA         2         8
## 3890    NA    NA     NA         NA      NA        NA        NA
## 3891    NA    NA     NA          2      NA        NA        NA
## 3892    NA    NA     NA         NA      NA        NA        NA
## 3893    NA     2      1         NA       2        NA         1
## 3894    NA    NA     NA         NA      NA        NA        NA
## 3895    NA    NA     NA         NA       1        NA        NA
## 3896    NA    NA     NA         NA      NA         1        NA
## 3897     2     2      2          2       2         2         2
## 3898     3     3      3          3       3         3         3
## 3899    NA    NA     NA          1      NA        NA        NA
## 3900    NA    NA     NA         NA      NA         0        NA
## 3901    NA     1     NA         NA      NA        NA        NA
## 3902    NA    NA     NA          1      NA        NA        NA
## 3903    NA     1     NA         NA      NA        NA         1
## 3904     3     6      5          7       7         1         4
## 3905    NA     0     NA          1      NA        NA        NA
## 3906    NA     3      1          3       2         3         3
## 3907     2    NA     NA         NA      NA        NA        NA
## 3908     0    NA     NA         NA      NA        NA        NA
## 3909     2     2      2          2       2         1         2
## 3910     6     6      8         14       6         3        14
## 3911    NA    NA      1         NA      NA        NA        NA
## 3912    NA    NA     NA          0      NA        NA         0
## 3913    NA    NA     NA          1      NA         1         1
## 3914    NA    NA     NA         NA      NA        NA        NA
## 3915    NA    NA     NA          2      NA        NA         2
## 3916    NA    NA     NA         NA      NA        NA        NA
## 3917     4     2      8          2       2        NA        NA
## 3918    NA     6     NA         NA       6        NA        NA
## 3919     6     2      6          2      NA        NA        NA
## 3920    NA    NA     NA         NA      NA        NA        NA
## 3921    NA    NA     NA         NA      NA        NA        NA
## 3922     6    NA      4          8      NA         2        NA
## 3923    NA     4     NA         11       2         2        NA
## 3924    NA    NA     NA         NA      NA        NA        NA
## 3925    NA    NA     NA          3       3         3        NA
## 3926    44    51     25         70      44        29        41
## 3927     2     8      5         14      11         2        23
## 3928    NA    NA     NA         NA      NA        NA        NA
## 3929    NA    NA     49         NA      NA        NA        NA
## 3930    95   151    144        137      85       173       106
## 3931    NA     6      8          8       4         8         4
## 3932    17    13     53         34      NA        NA        NA
## 3933    63    91     91         72     137       114        82
## 3934    NA    NA     NA         NA      NA        NA        NA
## 3935    NA     1      1          2       1        NA        NA
## 3936    NA     1     NA         NA      NA        NA        NA
## 3937     1     2      1          1       1         1         1
## 3938    NA    NA     NA          1      NA        NA        NA
## 3939     3     3      2         NA       1        NA         1
## 3940    NA     1     NA         NA      NA        NA        NA
## 3941     3     1      2          2       1         2         2
## 3942     4     0      2          5       2         2         4
## 3943    NA    NA      0         NA      NA        NA        NA
## 3944     4     6      6          8       8         2        NA
## 3945    NA    NA     NA          1       0        NA         1
## 3946     2     2     NA          4       2        NA         2
## 3947     1     1      1         NA       1        NA         1
## 3948     1     0      0          1       0         0         1
## 3949    NA    NA     NA         NA       1         1        NA
## 3950    NA    NA     NA         NA      NA         1        NA
## 3951     1    NA     NA         NA      NA        NA        NA
## 3952     3     1      3         NA       1        NA         1
## 3953     4     4      4          4       7        NA         4
## 3954     2     0     NA          0       0        NA        NA
## 3955     2    NA     NA          2       1        NA         1
## 3956    NA    NA     NA         NA      NA        NA         1
## 3957    NA    NA     NA         NA      NA        NA        NA
## 3958    NA    NA     NA         NA      NA         1        NA
## 3959     1    NA     NA         NA      NA        NA        NA
## 3960    NA     6     NA         NA       1        NA         1
## 3961    NA    NA     18          4       4         4        NA
## 3962     2    NA     NA         NA       0        NA        NA
## 3963     2    NA     NA         NA       1        NA         1
## 3964    NA    NA     NA         NA      NA        NA         1
## 3965    NA    NA     NA         NA      NA        NA        NA
## 3966    NA    NA     NA         NA      NA         1        NA
## 3967    NA     1     NA          3       1        NA         1
## 3968    NA    NA     NA          4      NA        NA         4
## 3969     0    NA     NA         NA       1        NA        NA
## 3970     2    NA     NA         NA       1        NA         1
## 3971    NA    NA     NA         NA      NA        NA         1
## 3972     1    NA     NA         NA      NA        NA        NA
## 3973    NA    NA     NA         NA      NA        NA        NA
## 3974     4    NA      4          4       4        NA        NA
## 3975     0    NA     NA         NA      NA        NA         0
## 3976    NA    NA     NA         NA      NA        NA        NA
## 3977    NA    NA     NA         NA      NA        NA        NA
## 3978    NA    NA     NA         NA      NA         1        NA
## 3979     1    NA     NA         NA      NA        NA        NA
## 3980    NA     6     NA         NA       1         3         1
## 3981     4    NA     NA          4      NA        NA         7
## 3982     3    NA      0         NA       1         0         0
## 3983     2     4      2         NA       1         2         1
## 3984    NA    NA     NA         NA      NA        NA         1
## 3985    NA    NA     NA         NA      NA        NA        NA
## 3986    NA    NA      1         NA      NA        NA        NA
## 3987     4     3      3         NA       6        NA         3
## 3988     0     0     NA         NA      NA        NA        NA
## 3989    NA    NA      0         NA      NA        NA        NA
## 3990     8     8      8         NA       8         3        NA
## 3991     5     4      5          1       5         4         1
## 3992    NA    NA      3         NA      NA         2         2
## 3993    NA    NA     NA         NA      NA        NA         5
## 3994    NA    NA     NA         NA      NA         1         4
## 3995    11    11     17         17      15         6         4
## 3996    16    13     29         25      19        10         6
## 3997    NA    NA     NA          1      NA        NA        NA
## 3998    25    14     25          7      11        11        11
## 3999    18     8     10         13       5         8         5
##  [ reached 'max' / getOption("max.print") -- omitted 462510 rows ]

Marcas y Mutate

por_marca <- group_by(base_de_datos, Marca)
marcasyventas <- summarize(por_marca, Ventas_Primer_Semestre_Por_Marca=sum(Enero, Febrero, Marzo, Abril, Mayo, Junio, na.rm=TRUE))
print(marcasyventas, n=56)
## # A tibble: 56 × 2
##    Marca                Ventas_Primer_Semestre_Por_Marca
##    <chr>                                           <int>
##  1 AdeS Frutal                                      8126
##  2 AdeS Lácteo                                      4413
##  3 Barista Bros                                      334
##  4 Bebere                                           1034
##  5 Burn                                             5070
##  6 Café Blak                                          79
##  7 Ciel Agua Purificada                           863355
##  8 Ciel Exprim                                     33959
##  9 Ciel Mineralizada                               18043
## 10 Ciel Mini                                        4942
## 11 Ciel Saborizada                                  6545
## 12 Coca-Cola                                    10916376
## 13 Coca-Cola Life                                   6958
## 14 Coca-Cola Light                                641160
## 15 Coca-Cola Light Sin                               257
## 16 Coca-Cola Sin Azúcar                           119168
## 17 Coca-Cola Zero                                  54630
## 18 Del Valle                                      198545
## 19 Del Valle Bits                                      0
## 20 Del Valle Blends                                  207
## 21 Del Valle Nutridefen                              581
## 22 Del Valle NutriForte                              105
## 23 Del Valle NutriVeget                                0
## 24 Del Valle Reserva                               39939
## 25 Del Valle y Nada                                84066
## 26 Delaware Punch                                  29829
## 27 Fanta                                          355534
## 28 Fanta Zero                                        163
## 29 Fresca                                         205936
## 30 Fresca Zero                                        63
## 31 Frutsi                                          47832
## 32 Fuze Tea                                        78075
## 33 Fuze Tea Light                                    474
## 34 Glacéau                                          5891
## 35 Joya                                             2696
## 36 Manzana Lift                                   202237
## 37 Manzana Lift Zero                                 129
## 38 Marca                                               0
## 39 Mixtos                                             86
## 40 Monster Energy                                  10966
## 41 Powerade                                        98485
## 42 Powerade Zero                                    1410
## 43 Pulpy                                            4603
## 44 Santa Clara Deslacto                            21868
## 45 Santa Clara Entera                              17124
## 46 Santa Clara Light                                5392
## 47 Santa Clara Saboriza                            21086
## 48 Senzao                                          25702
## 49 Sidral Mundet                                  144758
## 50 Sidral Mundet Light                                 0
## 51 Sprite                                         480446
## 52 Sprite Zero                                     30283
## 53 Topo Chico A.M.                                 55201
## 54 Topo Chico Sangría                                  0
## 55 Topo Chico Sangría L                                0
## 56 Valle Frut                                     171008